diff --git a/docs/source/api/reference.rst b/docs/source/api/reference.rst index 6637bfb3..b4b2b1d0 100644 --- a/docs/source/api/reference.rst +++ b/docs/source/api/reference.rst @@ -24,12 +24,19 @@ members :caption: constructor: reference reference(lua_State* L, int index = -1); + reference(lua_State* L, lua_nil_t); + reference(lua_State* L, absolute_index index); + reference(lua_State* L, raw_index index); reference(lua_State* L, ref_index index); template reference(Object&& o); + template + reference(lua_State* L, Object&& o); The first constructor creates a reference from the Lua stack at the specified index, saving it into the metatable registry. The second attemtps to register something that already exists in the registry. The third attempts to reference a pre-existing object and create a reference to it. These constructors are exposed on all types that derive from ``sol::reference``, meaning that you can grab tables, functions, and coroutines from the registry, stack, or from other objects easily. +Note that the last constructor, and the copy/move assignment operations, also have ``lua_xmove`` safety built into it. You can pin an object to a certain thread (or the main thread) by initializing it with ``sol::reference pinned(state, sol::lua_nil);``, or any ``sol::reference`` derived type. + .. code-block:: cpp :caption: function: push referred-to element from the stack diff --git a/docs/source/api/simple_usertype.rst b/docs/source/api/simple_usertype.rst index 643fdcb0..a0d09781 100644 --- a/docs/source/api/simple_usertype.rst +++ b/docs/source/api/simple_usertype.rst @@ -18,21 +18,21 @@ Some developers used ``simple_usertype`` in older versions to have variables aut The performance `seems to be good enough`_ (see below graphs as well) to not warn about any implications of having to serialize things at runtime. You do run the risk of using (slightly?) more memory, since variables and functions need to be stored differently and separately from the metatable data itself like with a regular ``usertype``. The goal here was to avoid compiler complaints about too-large usertypes (some individuals needed to register 190+ functions, and the compiler choked from the templated implementation of ``usertype``). As of Sol 2.14, this implementation has been heavily refactored to allow for all the same syntax and uses of usertype to apply here, with no caveats/exceptions. -.. image:: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua%20bench%20graph%20-%20member%20function%20calls%20(simple).png - :target: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua%20bench%20graph%20-%20member%20function%20calls%20(simple).png +.. image:: /media/bench/lua_bench_graph_member_function_calls_(simple).png + :target: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua_bench_graph_member_function_calls_(simple).png :alt: bind several member functions to an object and call them in Lua code -.. image:: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua%20bench%20graph%20-%20userdata%20variable%20access%20(simple).png - :target: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua%20bench%20graph%20-%20userdata%20variable%20access%20(simple).png +.. image:: /media/bench/lua_bench_graph_userdata_variable_access_(simple).png + :target: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua_bench_graph_userdata_variable_access_(simple).png :alt: bind a member variable to an object and modify it with Lua code -.. image:: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua%20bench%20graph%20-%20many%20userdata%20variables%20access%2C%20last%20registered%20(simple).png - :target: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua%20bench%20graph%20-%20many%20userdata%20variables%20access%2C%20last%20registered%20(simple).png +.. image:: /media/bench/lua_bench_graph_many_userdata_variables_access_last_registered_(simple).png + :target: https://raw.githubusercontent.com/ThePhD/lua-bench/master/lua%20-%20results/lua_bench_graph_many_userdata_variables_access_last_registered_(simple).png :alt: bind MANY member variables to an object and modify it with Lua code .. _seems to be good enough: https://github.com/ThePhD/sol2/issues/202#issuecomment-246767629 -.. _this example: https://github.com/ThePhD/sol2/blob/develop/examples/usertype_simple.cpp \ No newline at end of file +.. _this example: https://github.com/ThePhD/sol2/blob/develop/examples/usertype_simple.cpp diff --git a/docs/source/api/state.rst b/docs/source/api/state.rst index 0d22ce96..84c3995e 100644 --- a/docs/source/api/state.rst +++ b/docs/source/api/state.rst @@ -15,9 +15,18 @@ The majority of the members between ``state_view`` and :doc:`sol::table` ``state_view`` is cheap to construct and creates 2 references to things in the ``lua_State*`` while it is alive: the global Lua table, and the Lua C Registry. +.. _state-automatic-handlers: + +One last thing you should understand: constructing a ``sol::state`` does a few things behind-the-scenes for you, mostly to ensure compatibility. They are as follows: + +* set a default panic handler with ``state_view::set_panic`` +* set a default ``sol::protected_function`` handler with ``sol::protected_function::set_default_handler``, using a ``sol::reference`` to ``&sol::detail::default_traceback_error_handler`` as the default handler function +* register the state as the main thread (only does something for Lua 5.1, which does not have a way to get the main thread) using ``sol::stack::register_main_thread(L)`` +* register the LuaJIT C function exception handler with ``stack::luajit_exception_handler(L)`` + .. warning:: - It is your responsibility to make sure ``sol::state_view`` goes out of scope before you call ``lua_close`` on a pre-existing state, or before ``sol::state`` goes out of scope and its destructor gets called. Failure to do so can result in intermittent crashes because the ``sol::state_view`` has outstanding references to an already-dead ``lua_State*``, and thusly will try to decrement the reference counts for the Lua Registry and the Global Table on a dead state. Please use ``{`` and ``}`` to create a new scope when you know you are going to call ``lua_close`` to specifically control the lifetime of an object. + It is your responsibility to make sure ``sol::state_view`` goes out of scope before you call ``lua_close`` on a pre-existing state, or before ``sol::state`` goes out of scope and its destructor gets called. Failure to do so can result in intermittent crashes because the ``sol::state_view`` has outstanding references to an already-dead ``lua_State*``, and thusly will try to decrement the reference counts for the Lua Registry and the Global Table on a dead state. Please use ``{`` and ``}`` to create a new scope, or other lifetime techniques, when you know you are going to call ``lua_close`` so that you have a chance to specifically control the lifetime of a ``sol::state_view`` object. enumerations ------------ diff --git a/docs/source/benchmarks.rst b/docs/source/benchmarks.rst index be311bc0..cb082811 100644 --- a/docs/source/benchmarks.rst +++ b/docs/source/benchmarks.rst @@ -17,72 +17,72 @@ Note that Sol here makes use of its more performant variants (see :doc:`c_call`. +.. _OrfeasZ in this issue: https://github.com/ThePhD/sol2/issues/329#issuecomment-276824983 .. _this issue for fixes to this behavior: https://github.com/ThePhD/sol2/issues/414#issuecomment-306839439 .. _this __stdcall issue report: https://github.com/ThePhD/sol2/issues/463 .. _the simple usertype example here: https://github.com/ThePhD/sol2/blob/develop/examples/usertype_simple.cpp#L45 diff --git a/docs/source/index.rst b/docs/source/index.rst index 5d62a025..bf304079 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -.. image:: sol.png +.. image:: media/sol.png :target: https://github.com/ThePhD/sol2 :alt: sol2 repository @@ -14,15 +14,6 @@ Sol |version| When you need to hit the ground running with Lua and C++, `Sol`_ is the go-to framework for high-performance binding with an easy to use API. -.. image:: https://travis-ci.org/ThePhD/sol2.svg?branch=develop - :target: https://travis-ci.org/ThePhD/sol2 - :alt: build status - -.. image:: https://badges.gitter.im/chat-sol2/Lobby.svg - :target: https://gitter.im/chat-sol2/Lobby - :alt: chat about sol2 on gitter - - get going: ---------- diff --git a/docs/source/media/bench/lua bench tests kaguya.csv b/docs/source/media/bench/lua bench tests kaguya.csv new file mode 100644 index 00000000..e1cd0fba --- /dev/null +++ b/docs/source/media/bench/lua bench tests kaguya.csv @@ -0,0 +1,2001 @@ +"kaguya - global get","kaguya - c function","kaguya - global set","kaguya - table chained get","kaguya - table get","kaguya - c function through lua","kaguya - table chained set","kaguya - table set","kaguya - lua function","kaguya - member function calls","kaguya - get optional","kaguya - member function calls (simple)","kaguya - multi return","kaguya - stateful c function","kaguya - base from derived","kaguya - return userdata","kaguya - base call on derived" +0.000030785000000,0.000035526000000,0.000019145500000,0.000069896000000,0.000034736000000,0.000065550000000,0.000061204000000,0.000020726000000,0.000061995000000,0.000175772000000,0.000044217000000,0.000189204000000,0.000099131000000,0.000063970000000,0.000630092000000,0.000197501000000,0.000588217000000 +0.000030785000000,0.000049748000000,0.000019738000000,0.000069500000000,0.000036316000000,0.000064760000000,0.000062785000000,0.000021911000000,0.000061205000000,0.000155229000000,0.000043427000000,0.000174192000000,0.000063179000000,0.000062390000000,0.000632463000000,0.000183674000000,0.000521451000000 +0.000029994000000,0.000033155000000,0.000019541000000,0.000069106000000,0.000035920000000,0.000064760000000,0.000060415000000,0.000025269000000,0.000061994000000,0.000154439000000,0.000060415000000,0.000217254000000,0.000060414000000,0.000065945000000,0.000595328000000,0.000241747000000,0.000488266000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000071871000000,0.000034736000000,0.000064365000000,0.000059229000000,0.000020725500000,0.000063970000000,0.000190389000000,0.000043822000000,0.000158389000000,0.000060415000000,0.000063575000000,0.000636809000000,0.000186834000000,0.000521451000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000067920000000,0.000033550000000,0.000065156000000,0.000060019000000,0.000020725500000,0.000061995000000,0.000155624000000,0.000043822000000,0.000160365000000,0.000060414000000,0.000062785000000,0.000628907000000,0.000178933000000,0.000487080000000 +0.000029995000000,0.000033155000000,0.000019145500000,0.000102290000000,0.000033945000000,0.000065945000000,0.000060810000000,0.000021516000000,0.000098340000000,0.000160760000000,0.000058440000000,0.000177352000000,0.000062785000000,0.000062785000000,0.000595328000000,0.000216859000000,0.000521847000000 +0.000029995000000,0.000033155000000,0.000030602500000,0.000068316000000,0.000032760000000,0.000065945000000,0.000060019000000,0.000021911000000,0.000065156000000,0.000175772000000,0.000044217000000,0.000173402000000,0.000060020000000,0.000104661000000,0.000631278000000,0.000179722000000,0.000521451000000 +0.000031970000000,0.000033945000000,0.000061812500000,0.000113353000000,0.000033945000000,0.000064365000000,0.000059624000000,0.000020330500000,0.000064760000000,0.000202637000000,0.000044217000000,0.000187624000000,0.000060019000000,0.000063180000000,0.000627722000000,0.000183674000000,0.000485501000000 +0.000031180000000,0.000034341000000,0.000021318500000,0.000070290000000,0.000033550000000,0.000084513000000,0.000060415000000,0.000020330500000,0.000061205000000,0.000157995000000,0.000043822000000,0.000212513000000,0.000078982000000,0.000065155000000,0.000596908000000,0.000253204000000,0.000560957000000 +0.000031970000000,0.000034340000000,0.000020923000000,0.000069896000000,0.000034735000000,0.000065945000000,0.000060019000000,0.000022108000000,0.000061994000000,0.000159970000000,0.000045007000000,0.000161551000000,0.000061995000000,0.000064760000000,0.000596118000000,0.000178933000000,0.000485895000000 +0.000032760000000,0.000033945000000,0.000019145500000,0.000068710000000,0.000032760000000,0.000065946000000,0.000060414000000,0.000020331000000,0.000064365000000,0.000155624000000,0.000046192000000,0.000159575000000,0.000060020000000,0.000063575000000,0.000641945000000,0.000180513000000,0.000485105000000 +0.000030785000000,0.000033945000000,0.000020330500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000059229000000,0.000021516000000,0.000064365000000,0.000261106000000,0.000043822000000,0.000244908000000,0.000062390000000,0.000064365000000,0.000629698000000,0.000219229000000,0.000629697000000 +0.000030389000000,0.000034341000000,0.000018948000000,0.000107032000000,0.000071081000000,0.000066736000000,0.000060809000000,0.000024281500000,0.000064760000000,0.000157995000000,0.000043426000000,0.000167872000000,0.000061995000000,0.000062390000000,0.000597698000000,0.000180908000000,0.000485501000000 +0.000030390000000,0.000033550000000,0.000019738500000,0.000068315000000,0.000036711000000,0.000064365000000,0.000060019000000,0.000048972500000,0.000078587000000,0.000174192000000,0.000044217000000,0.000162340000000,0.000060020000000,0.000063575000000,0.000731228000000,0.000184464000000,0.000518291000000 +0.000033155000000,0.000034340000000,0.000019540500000,0.000068710000000,0.000032760000000,0.000065155000000,0.000060020000000,0.000031392500000,0.000061995000000,0.000173401000000,0.000043032000000,0.000158390000000,0.000062390000000,0.000132711000000,0.000641550000000,0.000255969000000,0.000530932000000 +0.000031575000000,0.000033550000000,0.000018750500000,0.000068711000000,0.000033550000000,0.000063575000000,0.000059230000000,0.000029417000000,0.000064365000000,0.000157994000000,0.000044612000000,0.000173797000000,0.000061600000000,0.000063180000000,0.000598093000000,0.000180118000000,0.000484710000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000069105000000,0.000035131000000,0.000132711000000,0.000060810000000,0.000025466500000,0.000061994000000,0.000156019000000,0.000043426000000,0.000160760000000,0.000060019000000,0.000065155000000,0.000642735000000,0.000179328000000,0.000555822000000 +0.000030785000000,0.000033550000000,0.000019738000000,0.000068711000000,0.000033155000000,0.000063575000000,0.000060019000000,0.000021911000000,0.000061599000000,0.000155229000000,0.000043427000000,0.000164316000000,0.000062389000000,0.000065550000000,0.000632463000000,0.000214884000000,0.000487081000000 +0.000030390000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033946000000,0.000064365000000,0.000056858000000,0.000021713500000,0.000064365000000,0.000154044000000,0.000045402000000,0.000171427000000,0.000062389000000,0.000065550000000,0.000627722000000,0.000182489000000,0.000488266000000 +0.000031180000000,0.000034341000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000063970000000,0.000055673000000,0.000023491000000,0.000061995000000,0.000165896000000,0.000044612000000,0.000175772000000,0.000061599000000,0.000062390000000,0.000594932000000,0.000182093000000,0.000521056000000 +0.000031180000000,0.000033945000000,0.000019540500000,0.000068315000000,0.000033550000000,0.000065946000000,0.000056464000000,0.000020726000000,0.000080957000000,0.000153254000000,0.000044216000000,0.000179723000000,0.000061994000000,0.000061995000000,0.000630093000000,0.000260315000000,0.000486290000000 +0.000029995000000,0.000034736000000,0.000019738000000,0.000067921000000,0.000033550000000,0.000063574000000,0.000056464000000,0.000031985000000,0.000202637000000,0.000175378000000,0.000045007000000,0.000174982000000,0.000062390000000,0.000066736000000,0.000627722000000,0.000180908000000,0.000555427000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000036711000000,0.000064760000000,0.000056464000000,0.000022108500000,0.000076217000000,0.000152858000000,0.000043427000000,0.000159970000000,0.000061995000000,0.000077402000000,0.000597303000000,0.000180118000000,0.000575970000000 +0.000030389000000,0.000033155000000,0.000025861500000,0.000069105000000,0.000033155000000,0.000063970000000,0.000056069000000,0.000022306000000,0.000061995000000,0.000208167000000,0.000077402000000,0.000174588000000,0.000061995000000,0.000065155000000,0.000643130000000,0.000215279000000,0.000484710000000 +0.000031970000000,0.000033946000000,0.000020133000000,0.000069501000000,0.000034341000000,0.000064365000000,0.000056859000000,0.000020330500000,0.000061995000000,0.000174982000000,0.000043427000000,0.000152859000000,0.000063970000000,0.000064365000000,0.000634833000000,0.000186439000000,0.000518686000000 +0.000031575000000,0.000034340000000,0.000020133000000,0.000069106000000,0.000032760000000,0.000065155000000,0.000056463000000,0.000021911000000,0.000065155000000,0.000155624000000,0.000043427000000,0.000179328000000,0.000061599000000,0.000063180000000,0.000594538000000,0.000182883000000,0.000486291000000 +0.000030784000000,0.000033156000000,0.000019738000000,0.000069895000000,0.000032760000000,0.000063970000000,0.000056464000000,0.000024479000000,0.000075822000000,0.000174192000000,0.000043426000000,0.000212513000000,0.000061995000000,0.000065945000000,0.000628908000000,0.000217254000000,0.000569254000000 +0.000029995000000,0.000034735000000,0.000018948000000,0.000137846000000,0.000033551000000,0.000064365000000,0.000056464000000,0.000021516000000,0.000063970000000,0.000160365000000,0.000043427000000,0.000158390000000,0.000060019000000,0.000062785000000,0.000754142000000,0.000179723000000,0.000521451000000 +0.000031575000000,0.000034340000000,0.000020133000000,0.000068315000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000022503500000,0.000061995000000,0.000157599000000,0.000043427000000,0.000177353000000,0.000063575000000,0.000061995000000,0.000631278000000,0.000183673000000,0.000485501000000 +0.000029994000000,0.000033551000000,0.000019738000000,0.000068316000000,0.000033155000000,0.000065945000000,0.000057254000000,0.000020528500000,0.000063575000000,0.000173797000000,0.000043822000000,0.000178537000000,0.000060414000000,0.000098736000000,0.000594538000000,0.000216858000000,0.000535278000000 +0.000033945000000,0.000033550000000,0.000018750500000,0.000069501000000,0.000033155000000,0.000063575000000,0.000056464000000,0.000022306000000,0.000097550000000,0.000175377000000,0.000045402000000,0.000191575000000,0.000062785000000,0.000063575000000,0.000666044000000,0.000187229000000,0.000483921000000 +0.000030389000000,0.000033945000000,0.000019738000000,0.000068711000000,0.000089254000000,0.000064365000000,0.000055674000000,0.000028429000000,0.000061600000000,0.000244117000000,0.000043427000000,0.000179328000000,0.000060810000000,0.000064760000000,0.000628908000000,0.000180118000000,0.000821698000000 +0.000030390000000,0.000033155000000,0.000020133000000,0.000069501000000,0.000033550000000,0.000067131000000,0.000056859000000,0.000021515500000,0.000061994000000,0.000175377000000,0.000043427000000,0.000153254000000,0.000099920000000,0.000065155000000,0.000631278000000,0.000205402000000,0.000545550000000 +0.000030390000000,0.000034340000000,0.000019540500000,0.000069106000000,0.000033155000000,0.000065945000000,0.000164316000000,0.000022503500000,0.000097945000000,0.000155229000000,0.000043426000000,0.000174192000000,0.000063575000000,0.000066340000000,0.000627327000000,0.000180908000000,0.000555427000000 +0.000031575000000,0.000033945000000,0.000019935500000,0.000103081000000,0.000034341000000,0.000066340000000,0.000105451000000,0.000023886000000,0.000063180000000,0.000224760000000,0.000045007000000,0.000211722000000,0.000063180000000,0.000062785000000,0.000643130000000,0.000180118000000,0.000487871000000 +0.000071476000000,0.000032760000000,0.000019343000000,0.000069106000000,0.000033156000000,0.000063970000000,0.000058834000000,0.000022108500000,0.000061600000000,0.000155624000000,0.000043822000000,0.000157599000000,0.000062390000000,0.000064365000000,0.000664068000000,0.000216068000000,0.000558192000000 +0.000030390000000,0.000033550000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000066735000000,0.000056859000000,0.000021713500000,0.000064365000000,0.000155624000000,0.000044217000000,0.000160365000000,0.000061600000000,0.000065155000000,0.000594933000000,0.000182093000000,0.000555822000000 +0.000029995000000,0.000033550000000,0.000019343000000,0.000069106000000,0.000034340000000,0.000066341000000,0.000056859000000,0.000025071500000,0.000064365000000,0.000159970000000,0.000043822000000,0.000176957000000,0.000062784000000,0.000064760000000,0.000629698000000,0.000180908000000,0.000487870000000 +0.000031180000000,0.000033155000000,0.000020133500000,0.000068316000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000022306000000,0.000062390000000,0.000208167000000,0.000045007000000,0.000255180000000,0.000061599000000,0.000064365000000,0.000681846000000,0.000317204000000,0.000555426000000 +0.000030785000000,0.000033156000000,0.000019738500000,0.000069106000000,0.000034340000000,0.000116513000000,0.000056069000000,0.000021121000000,0.000064760000000,0.000179723000000,0.000044217000000,0.000166686000000,0.000062785000000,0.000062390000000,0.000594143000000,0.000252809000000,0.000486686000000 +0.000031180000000,0.000054094000000,0.000019540500000,0.000069106000000,0.000034340000000,0.000066341000000,0.000056859000000,0.000020331000000,0.000064365000000,0.000162735000000,0.000043822000000,0.000177352000000,0.000070291000000,0.000065155000000,0.000611526000000,0.000230290000000,0.000519081000000 +0.000031970000000,0.000034341000000,0.000020133000000,0.000069106000000,0.000053304000000,0.000063970000000,0.000056464000000,0.000020528500000,0.000061995000000,0.000152069000000,0.000045797000000,0.000162736000000,0.000061995000000,0.000063180000000,0.000629303000000,0.000184858000000,0.000575575000000 +0.000031180000000,0.000033155000000,0.000019541000000,0.000152463000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000021911000000,0.000061995000000,0.000207377000000,0.000078192000000,0.000159180000000,0.000060414000000,0.000064365000000,0.000595722000000,0.000180513000000,0.000484711000000 +0.000029995000000,0.000033155000000,0.000020133000000,0.000069106000000,0.000033550000000,0.000064760000000,0.000056464000000,0.000022306000000,0.000064365000000,0.000206192000000,0.000045402000000,0.000175377000000,0.000062785000000,0.000064761000000,0.000660512000000,0.000214489000000,0.000640365000000 +0.000030389000000,0.000033155000000,0.000019343000000,0.000067920000000,0.000034340000000,0.000065550000000,0.000056464000000,0.000021318000000,0.000063575000000,0.000187229000000,0.000043427000000,0.000167081000000,0.000062389000000,0.000064760000000,0.000631673000000,0.000180909000000,0.000554241000000 +0.000030785000000,0.000033551000000,0.000020528000000,0.000069105000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000021910500000,0.000065155000000,0.000155624000000,0.000043821000000,0.000161550000000,0.000061599000000,0.000077402000000,0.000744265000000,0.000180513000000,0.000483525000000 +0.000029995000000,0.000035130000000,0.000020528500000,0.000068316000000,0.000033155000000,0.000082933000000,0.000057649000000,0.000020725500000,0.000061994000000,0.000170241000000,0.000043822000000,0.000157995000000,0.000060415000000,0.000064760000000,0.000616266000000,0.000218044000000,0.000553451000000 +0.000030389000000,0.000033945000000,0.000020331000000,0.000069501000000,0.000034341000000,0.000065550000000,0.000055674000000,0.000020331000000,0.000061995000000,0.000174983000000,0.000044217000000,0.000173797000000,0.000061994000000,0.000064760000000,0.000598488000000,0.000181698000000,0.000553056000000 +0.000031180000000,0.000033155000000,0.000019343000000,0.000069105000000,0.000033155000000,0.000065155000000,0.000071081000000,0.000022108000000,0.000085303000000,0.000160365000000,0.000043427000000,0.000161550000000,0.000061204000000,0.000064760000000,0.000627723000000,0.000180513000000,0.000486685000000 +0.000029995000000,0.000033946000000,0.000020330500000,0.000102686000000,0.000033550000000,0.000063970000000,0.000058044000000,0.000030207500000,0.000061994000000,0.000173007000000,0.000045402000000,0.000164710000000,0.000060414000000,0.000082143000000,0.000648265000000,0.000213699000000,0.000555822000000 +0.000029994000000,0.000092415000000,0.000020528000000,0.000069106000000,0.000037105000000,0.000064365000000,0.000056463000000,0.000021713500000,0.000061995000000,0.000187624000000,0.000043822000000,0.000173007000000,0.000062389000000,0.000065155000000,0.000594537000000,0.000201847000000,0.000487871000000 +0.000029995000000,0.000033156000000,0.000019540500000,0.000069896000000,0.000033551000000,0.000064365000000,0.000056069000000,0.000020133000000,0.000061995000000,0.000173797000000,0.000043822000000,0.000175773000000,0.000060415000000,0.000062390000000,0.000694883000000,0.000183674000000,0.000487476000000 +0.000031180000000,0.000034340000000,0.000019541000000,0.000068316000000,0.000047377000000,0.000063575000000,0.000056859000000,0.000024084000000,0.000065945000000,0.000156020000000,0.000057254000000,0.000178933000000,0.000060415000000,0.000158390000000,0.000629302000000,0.000226340000000,0.000555821000000 +0.000030784000000,0.000033945000000,0.000019145500000,0.000067921000000,0.000032760000000,0.000063970000000,0.000056069000000,0.000020725500000,0.000063180000000,0.000178933000000,0.000044217000000,0.000317599000000,0.000061995000000,0.000129155000000,0.000594142000000,0.000201847000000,0.000487871000000 +0.000030389000000,0.000033551000000,0.000019145500000,0.000069106000000,0.000033551000000,0.000099525000000,0.000056859000000,0.000021713500000,0.000064760000000,0.000174192000000,0.000043427000000,0.000226340000000,0.000060414000000,0.000069500000000,0.000609945000000,0.000185254000000,0.000945747000000 +0.000030390000000,0.000033155000000,0.000019738500000,0.000068710000000,0.000033945000000,0.000065945000000,0.000055674000000,0.000022306000000,0.000061994000000,0.000156020000000,0.000043822000000,0.000175377000000,0.000061600000000,0.000064760000000,0.000631278000000,0.000266636000000,0.000570438000000 +0.000031180000000,0.000034340000000,0.000019935500000,0.000070291000000,0.000032761000000,0.000063970000000,0.000077402000000,0.000020528000000,0.000097550000000,0.000174192000000,0.000045007000000,0.000186439000000,0.000061600000000,0.000062390000000,0.000614686000000,0.000184859000000,0.000556217000000 +0.000069105000000,0.000034736000000,0.000020133000000,0.000115328000000,0.000033550000000,0.000065945000000,0.000056464000000,0.000020725500000,0.000061995000000,0.000173402000000,0.000043822000000,0.000178933000000,0.000062390000000,0.000065155000000,0.000594538000000,0.000181304000000,0.000485500000000 +0.000030785000000,0.000033945000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000066341000000,0.000056464000000,0.000022701000000,0.000064365000000,0.000156415000000,0.000043822000000,0.000177748000000,0.000063180000000,0.000064760000000,0.000629303000000,0.000214094000000,0.000534094000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000069106000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000027639500000,0.000067130000000,0.000175377000000,0.000043032000000,0.000157995000000,0.000061995000000,0.000064760000000,0.000641154000000,0.000199476000000,0.000487080000000 +0.000030389000000,0.000033550000000,0.000018948000000,0.000068711000000,0.000033551000000,0.000065551000000,0.000056464000000,0.000022108500000,0.000065155000000,0.000173007000000,0.000044612000000,0.000247278000000,0.000062389000000,0.000063575000000,0.000598093000000,0.000181698000000,0.000485500000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000068710000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000061995000000,0.000156019000000,0.000057649000000,0.000178538000000,0.000061599000000,0.000062785000000,0.000628118000000,0.000214093000000,0.000517896000000 +0.000030390000000,0.000033946000000,0.000020133000000,0.000068710000000,0.000035921000000,0.000135081000000,0.000057254000000,0.000022503500000,0.000061995000000,0.000173797000000,0.000043426000000,0.000157995000000,0.000060414000000,0.000065550000000,0.000629302000000,0.000185649000000,0.000483525000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000068711000000,0.000033550000000,0.000063970000000,0.000055674000000,0.000022108500000,0.000064365000000,0.000173007000000,0.000043427000000,0.000180513000000,0.000062390000000,0.000065155000000,0.000594933000000,0.000179723000000,0.000615080000000 +0.000030390000000,0.000033551000000,0.000020133000000,0.000102291000000,0.000034736000000,0.000064365000000,0.000057254000000,0.000020528500000,0.000076216000000,0.000174983000000,0.000043822000000,0.000200266000000,0.000061995000000,0.000062785000000,0.000629303000000,0.000213699000000,0.000527772000000 +0.000030785000000,0.000033945000000,0.000019145500000,0.000069105000000,0.000033155000000,0.000063970000000,0.000070686000000,0.000022306000000,0.000064760000000,0.000207773000000,0.000045007000000,0.000174192000000,0.000137847000000,0.000061994000000,0.000665648000000,0.000180908000000,0.000487081000000 +0.000030390000000,0.000033550000000,0.000020133500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000022306000000,0.000062390000000,0.000158390000000,0.000043821000000,0.000164316000000,0.000126785000000,0.000063180000000,0.000636414000000,0.000186044000000,0.000522636000000 +0.000029994000000,0.000034341000000,0.000020133500000,0.000068711000000,0.000032761000000,0.000083723000000,0.000055674000000,0.000022503500000,0.000063970000000,0.000159575000000,0.000044217000000,0.000157600000000,0.000092810000000,0.000066340000000,0.000597698000000,0.000260711000000,0.000486686000000 +0.000033155000000,0.000033945000000,0.000020133500000,0.000068711000000,0.000032760000000,0.000080168000000,0.000056859000000,0.000030009500000,0.000061995000000,0.000159575000000,0.000043427000000,0.000228710000000,0.000060414000000,0.000064760000000,0.000671969000000,0.000180908000000,0.000500908000000 +0.000031180000000,0.000053698000000,0.000019738000000,0.000067920000000,0.000033945000000,0.000097155000000,0.000057253000000,0.000020923500000,0.000064365000000,0.000230686000000,0.000043822000000,0.000178142000000,0.000060415000000,0.000064365000000,0.000628513000000,0.000200266000000,0.000522241000000 +0.000029995000000,0.000033946000000,0.000018948000000,0.000068711000000,0.000035526000000,0.000064365000000,0.000056463000000,0.000020528500000,0.000061995000000,0.000195920000000,0.000043822000000,0.000174587000000,0.000061995000000,0.000063575000000,0.000612710000000,0.000552266000000,0.000486686000000 +0.000031575000000,0.000033945000000,0.000020133500000,0.000070291000000,0.000034340000000,0.000065945000000,0.000055673000000,0.000021516000000,0.000075821000000,0.000180118000000,0.000045007000000,0.000168661000000,0.000073847000000,0.000065945000000,0.000733994000000,0.000216463000000,0.000519871000000 +0.000031575000000,0.000034736000000,0.000019738000000,0.000204217000000,0.000088463000000,0.000064365000000,0.000057649000000,0.000020528000000,0.000062390000000,0.000162736000000,0.000043821000000,0.000177747000000,0.000060415000000,0.000063179000000,0.000630488000000,0.000268612000000,0.000485105000000 +0.000031970000000,0.000033550000000,0.000019540500000,0.000140217000000,0.000033550000000,0.000066340000000,0.000056859000000,0.000020528500000,0.000064365000000,0.000167476000000,0.000043427000000,0.000161946000000,0.000062390000000,0.000099526000000,0.000629303000000,0.000182488000000,0.000500513000000 +0.000031575000000,0.000034736000000,0.000019738000000,0.000084908000000,0.000035920000000,0.000063575000000,0.000056859000000,0.000022108500000,0.000061600000000,0.000173797000000,0.000043426000000,0.000159575000000,0.000061995000000,0.000063575000000,0.000595723000000,0.000183278000000,0.000518291000000 +0.000030390000000,0.000033550000000,0.000018750500000,0.000069501000000,0.000034736000000,0.000063575000000,0.000056464000000,0.000020330500000,0.000064365000000,0.000174192000000,0.000043427000000,0.000175772000000,0.000060414000000,0.000065550000000,0.000631673000000,0.000216858000000,0.000487081000000 +0.000030390000000,0.000033550000000,0.000019343000000,0.000101896000000,0.000036710000000,0.000064365000000,0.000056463000000,0.000020528000000,0.000064365000000,0.000173007000000,0.000043427000000,0.000182094000000,0.000061995000000,0.000064760000000,0.000647476000000,0.000184859000000,0.000519475000000 +0.000030390000000,0.000033946000000,0.000019343000000,0.000067921000000,0.000033155000000,0.000081353000000,0.000056464000000,0.000021911000000,0.000061600000000,0.000200661000000,0.000044217000000,0.000162735000000,0.000061599000000,0.000065550000000,0.000595723000000,0.000183278000000,0.000483920000000 +0.000030785000000,0.000033945000000,0.000020133000000,0.000068316000000,0.000032760000000,0.000063575000000,0.000057254000000,0.000020923500000,0.000064365000000,0.000156415000000,0.000043426000000,0.000157994000000,0.000061600000000,0.000063575000000,0.000644711000000,0.000265846000000,0.000483525000000 +0.000030390000000,0.000067526000000,0.000018948000000,0.000068710000000,0.000033155000000,0.000063575000000,0.000058439000000,0.000022108500000,0.000065155000000,0.000174587000000,0.000043427000000,0.000229105000000,0.000061600000000,0.000063575000000,0.000631673000000,0.000180908000000,0.000537649000000 +0.000098340000000,0.000033155000000,0.000019738000000,0.000069106000000,0.000032760000000,0.000067131000000,0.000056463000000,0.000021713500000,0.000061995000000,0.000159180000000,0.000077402000000,0.000161155000000,0.000061600000000,0.000063970000000,0.000594142000000,0.000194735000000,0.000486686000000 +0.000064365000000,0.000033550000000,0.000019935500000,0.000069106000000,0.000033946000000,0.000063970000000,0.000090834000000,0.000020725500000,0.000061994000000,0.000173401000000,0.000043822000000,0.000165106000000,0.000060809000000,0.000098340000000,0.000598488000000,0.000223180000000,0.000521451000000 +0.000031970000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000033946000000,0.000063970000000,0.000056859000000,0.000021911000000,0.000061600000000,0.000174587000000,0.000043822000000,0.000171822000000,0.000062389000000,0.000065156000000,0.000662884000000,0.000181303000000,0.000488266000000 +0.000030785000000,0.000034340000000,0.000019935500000,0.000068711000000,0.000033945000000,0.000063180000000,0.000056069000000,0.000022898500000,0.000063970000000,0.000174588000000,0.000043427000000,0.000238982000000,0.000061994000000,0.000064365000000,0.000628118000000,0.000204217000000,0.000584661000000 +0.000031575000000,0.000033550000000,0.000019540500000,0.000068316000000,0.000033946000000,0.000067921000000,0.000056464000000,0.000022306000000,0.000064760000000,0.000156414000000,0.000045007000000,0.000178933000000,0.000066341000000,0.000063970000000,0.000594142000000,0.000230686000000,0.000554636000000 +0.000030390000000,0.000034735000000,0.000019935500000,0.000067920000000,0.000033945000000,0.000189600000000,0.000058044000000,0.000021120500000,0.000064365000000,0.000173402000000,0.000043427000000,0.000174587000000,0.000061204000000,0.000063575000000,0.000627328000000,0.000199476000000,0.000521451000000 +0.000031575000000,0.000033551000000,0.000019145500000,0.000068710000000,0.000033155000000,0.000082933000000,0.000056859000000,0.000020331000000,0.000095970000000,0.000174587000000,0.000045007000000,0.000160364000000,0.000061994000000,0.000065550000000,0.000691723000000,0.000200266000000,0.000486686000000 +0.000031970000000,0.000034340000000,0.000019738000000,0.000069501000000,0.000033946000000,0.000080563000000,0.000055673000000,0.000031985000000,0.000065155000000,0.000156415000000,0.000043822000000,0.000208168000000,0.000062784000000,0.000065155000000,0.000596908000000,0.000195130000000,0.000571624000000 +0.000031575000000,0.000034340000000,0.000019738000000,0.000069896000000,0.000033945000000,0.000063970000000,0.000057254000000,0.000022108500000,0.000061994000000,0.000242538000000,0.000043822000000,0.000152859000000,0.000066735000000,0.000062390000000,0.000961550000000,0.000183673000000,0.000485500000000 +0.000033945000000,0.000048562000000,0.000019145500000,0.000068710000000,0.000036316000000,0.000064760000000,0.000056069000000,0.000020330500000,0.000061600000000,0.000174192000000,0.000043427000000,0.000179723000000,0.000060020000000,0.000098341000000,0.000608364000000,0.000181698000000,0.000485896000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033550000000,0.000097945000000,0.000056859000000,0.000020725500000,0.000063575000000,0.000156414000000,0.000044217000000,0.000178933000000,0.000061995000000,0.000065945000000,0.000647476000000,0.000432958000000,0.000537253000000 +0.000031575000000,0.000033550000000,0.000020133000000,0.000102685000000,0.000035525000000,0.000066735000000,0.000056069000000,0.000020726000000,0.000061995000000,0.000175773000000,0.000043821000000,0.000208957000000,0.000061995000000,0.000064365000000,0.000641155000000,0.000184859000000,0.000487080000000 +0.000029994000000,0.000033945000000,0.000019540500000,0.000067920000000,0.000110587000000,0.000064365000000,0.000058834000000,0.000020528000000,0.000064760000000,0.000255970000000,0.000043427000000,0.000177748000000,0.000060414000000,0.000063180000000,0.000598092000000,0.000219624000000,0.000519081000000 +0.000029995000000,0.000034340000000,0.000018948000000,0.000068711000000,0.000102686000000,0.000063969000000,0.000056464000000,0.000022108500000,0.000061599000000,0.000156414000000,0.000045402000000,0.000179328000000,0.000061600000000,0.000063180000000,0.000662883000000,0.000202241000000,0.000517500000000 +0.000033945000000,0.000033946000000,0.000018948000000,0.000068711000000,0.000036710000000,0.000065155000000,0.000056859000000,0.000024874000000,0.000062389000000,0.000193945000000,0.000043427000000,0.000157600000000,0.000060415000000,0.000065550000000,0.000632069000000,0.000186834000000,0.000483525000000 +0.000031180000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000065550000000,0.000056069000000,0.000022503500000,0.000062389000000,0.000186438000000,0.000045402000000,0.000179723000000,0.000072661000000,0.000064761000000,0.000597698000000,0.000218044000000,0.000518685000000 +0.000030389000000,0.000033550000000,0.000020133500000,0.000069106000000,0.000033945000000,0.000065550000000,0.000056858000000,0.000020726000000,0.000065155000000,0.000175377000000,0.000043427000000,0.000152859000000,0.000063575000000,0.000063179000000,0.000679476000000,0.000180908000000,0.000487081000000 +0.000030785000000,0.000032760000000,0.000020133000000,0.000071476000000,0.000032761000000,0.000065155000000,0.000056463000000,0.000020528500000,0.000063180000000,0.000174193000000,0.000044217000000,0.000174192000000,0.000062390000000,0.000063575000000,0.000632859000000,0.000184859000000,0.000521056000000 +0.000051328000000,0.000033945000000,0.000018750000000,0.000069106000000,0.000033946000000,0.000097945000000,0.000071476000000,0.000021911000000,0.000061995000000,0.000157599000000,0.000043427000000,0.000165896000000,0.000062785000000,0.000065155000000,0.000596118000000,0.000235032000000,0.000557007000000 +0.000029994000000,0.000034735000000,0.000019145500000,0.000082933000000,0.000034340000000,0.000064365000000,0.000055674000000,0.000020330500000,0.000064760000000,0.000199081000000,0.000078587000000,0.000170637000000,0.000062390000000,0.000062390000000,0.000610340000000,0.000180513000000,0.000487476000000 +0.000031180000000,0.000033155000000,0.000019738000000,0.000067921000000,0.000033155000000,0.000066340000000,0.000056859000000,0.000020528000000,0.000063574000000,0.000159575000000,0.000060414000000,0.000160760000000,0.000060414000000,0.000063575000000,0.000629698000000,0.000199871000000,0.000520661000000 +0.000030390000000,0.000033156000000,0.000020133500000,0.000068315000000,0.000032760000000,0.000064760000000,0.000056858000000,0.000021911000000,0.000080167000000,0.000175378000000,0.000073846000000,0.000176563000000,0.000060414000000,0.000062390000000,0.000679080000000,0.000230686000000,0.000487871000000 +0.000029995000000,0.000033550000000,0.000018750000000,0.000068711000000,0.000032760000000,0.000066735000000,0.000056858000000,0.000021516000000,0.000065551000000,0.000176167000000,0.000043427000000,0.000207377000000,0.000061599000000,0.000062785000000,0.000597303000000,0.000195130000000,0.000520661000000 +0.000030785000000,0.000033550000000,0.000019936000000,0.000113748000000,0.000033945000000,0.000063970000000,0.000056068000000,0.000022306000000,0.000061994000000,0.000213303000000,0.000043822000000,0.000183674000000,0.000061994000000,0.000063574000000,0.000628513000000,0.000179723000000,0.000519871000000 +0.000031575000000,0.000049748000000,0.000019540500000,0.000069501000000,0.000035526000000,0.000065156000000,0.000056464000000,0.000020528500000,0.000061995000000,0.000163130000000,0.000043822000000,0.000176168000000,0.000061995000000,0.000062785000000,0.000664068000000,0.000248069000000,0.000484710000000 +0.000031180000000,0.000034341000000,0.000019738000000,0.000068710000000,0.000034340000000,0.000065945000000,0.000056463000000,0.000022306000000,0.000064365000000,0.000152464000000,0.000043426000000,0.000162340000000,0.000063180000000,0.000063180000000,0.000596908000000,0.000202242000000,0.000519870000000 +0.000031180000000,0.000036711000000,0.000019738000000,0.000101895000000,0.000033156000000,0.000063970000000,0.000106242000000,0.000050355000000,0.000063970000000,0.000173797000000,0.000044217000000,0.000333402000000,0.000061995000000,0.000065550000000,0.000595328000000,0.000184463000000,0.000534093000000 +0.000030390000000,0.000047772000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000065551000000,0.000055674000000,0.000023096500000,0.000061995000000,0.000241352000000,0.000043822000000,0.000193945000000,0.000061600000000,0.000064365000000,0.000716611000000,0.000214488000000,0.000487081000000 +0.000030390000000,0.000033551000000,0.000019145500000,0.000068315000000,0.000034340000000,0.000066340000000,0.000056464000000,0.000020528000000,0.000063970000000,0.000173402000000,0.000043031000000,0.000167871000000,0.000061994000000,0.000064365000000,0.000653401000000,0.000180513000000,0.000519476000000 +0.000032760000000,0.000033155000000,0.000019540500000,0.000067921000000,0.000033550000000,0.000065550000000,0.000057649000000,0.000021911000000,0.000143378000000,0.000156415000000,0.000043427000000,0.000211723000000,0.000060414000000,0.000063180000000,0.000596513000000,0.000180118000000,0.000483920000000 +0.000030390000000,0.000033155000000,0.000019343000000,0.000068711000000,0.000047773000000,0.000063575000000,0.000056859000000,0.000022701000000,0.000064760000000,0.000155624000000,0.000091229000000,0.000158390000000,0.000063180000000,0.000063575000000,0.000867920000000,0.000225945000000,0.000517501000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000068711000000,0.000033945000000,0.000066340000000,0.000055674000000,0.000024281000000,0.000064365000000,0.000220809000000,0.000043427000000,0.000174192000000,0.000095179000000,0.000062785000000,0.000669204000000,0.000232266000000,0.000484710000000 +0.000031575000000,0.000035130000000,0.000019145500000,0.000069106000000,0.000033551000000,0.000063970000000,0.000058044000000,0.000022108000000,0.000064760000000,0.000159575000000,0.000044612000000,0.000161155000000,0.000062389000000,0.000062389000000,0.000662488000000,0.000180909000000,0.000486686000000 +0.000030390000000,0.000033551000000,0.000018947500000,0.000068711000000,0.000035130000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000061994000000,0.000173007000000,0.000043427000000,0.000198291000000,0.000079377000000,0.000065550000000,0.000598093000000,0.000218439000000,0.000528957000000 +0.000031575000000,0.000033550000000,0.000020726000000,0.000084513000000,0.000033550000000,0.000066735000000,0.000120069000000,0.000021713500000,0.000064760000000,0.000174587000000,0.000043822000000,0.000175377000000,0.000061600000000,0.000065156000000,0.000594537000000,0.000178538000000,0.000488266000000 +0.000030390000000,0.000033551000000,0.000018948000000,0.000069106000000,0.000033550000000,0.000065550000000,0.000055674000000,0.000043639500000,0.000061995000000,0.000206193000000,0.000043822000000,0.000175378000000,0.000060414000000,0.000064760000000,0.000629303000000,0.000182093000000,0.001029105000000 +0.000031179000000,0.000033155000000,0.000020528000000,0.000068711000000,0.000033551000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000095970000000,0.000156809000000,0.000043821000000,0.000180118000000,0.000061600000000,0.000062389000000,0.000628117000000,0.000215278000000,0.000822488000000 +0.000030390000000,0.000064760000000,0.000019540500000,0.000068316000000,0.000034341000000,0.000064760000000,0.000057254000000,0.000020528000000,0.000063970000000,0.000179723000000,0.000044216000000,0.000208167000000,0.000062390000000,0.000063180000000,0.000594142000000,0.000181303000000,0.000725303000000 +0.000030390000000,0.000033945000000,0.000018750000000,0.000069501000000,0.000033155000000,0.000065945000000,0.000056859000000,0.000020331000000,0.000061995000000,0.000174192000000,0.000045007000000,0.000159970000000,0.000061995000000,0.000063180000000,0.000629698000000,0.000180118000000,0.000531328000000 +0.000029994000000,0.000034736000000,0.000018948000000,0.000069500000000,0.000033551000000,0.000064760000000,0.000056069000000,0.000021516000000,0.000062390000000,0.000184859000000,0.000043822000000,0.000174587000000,0.000061600000000,0.000065155000000,0.000630488000000,0.000250439000000,0.000549501000000 +0.000031970000000,0.000033550000000,0.000018948000000,0.000069106000000,0.000053303000000,0.000064760000000,0.000058044000000,0.000020923000000,0.000064365000000,0.000174193000000,0.000043427000000,0.000153254000000,0.000061995000000,0.000062785000000,0.000594538000000,0.000182488000000,0.000549895000000 +0.000031180000000,0.000033155000000,0.000019935500000,0.000115723000000,0.000033550000000,0.000097945000000,0.000056464000000,0.000020331000000,0.000064365000000,0.000173797000000,0.000044612000000,0.000212513000000,0.000062389000000,0.000063575000000,0.000630093000000,0.000180908000000,0.000515130000000 +0.000030390000000,0.000033946000000,0.000020133000000,0.000069896000000,0.000033946000000,0.000063970000000,0.000077402000000,0.000020528000000,0.000064365000000,0.000155624000000,0.000043426000000,0.000178538000000,0.000061599000000,0.000063970000000,0.000644711000000,0.000255970000000,0.000549501000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000065550000000,0.000056069000000,0.000021318500000,0.000062389000000,0.000175377000000,0.000043822000000,0.000157995000000,0.000060414000000,0.000062785000000,0.000594933000000,0.000182488000000,0.000553056000000 +0.000029994000000,0.000033945000000,0.000018948000000,0.000068710000000,0.000033945000000,0.000063575000000,0.000057649000000,0.000020528000000,0.000061994000000,0.000173402000000,0.000043822000000,0.000177353000000,0.000060415000000,0.000063575000000,0.001031080000000,0.000184464000000,0.000515526000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000067921000000,0.000033551000000,0.000063575000000,0.000057649000000,0.000022108500000,0.000065155000000,0.000156019000000,0.000063575000000,0.000225550000000,0.000060415000000,0.000066341000000,0.000594538000000,0.000259130000000,0.000643130000000 +0.000030390000000,0.000053698000000,0.000019738000000,0.000069106000000,0.000034735000000,0.000064760000000,0.000056859000000,0.000020528000000,0.000061995000000,0.000227526000000,0.000046982000000,0.000158389000000,0.000061599000000,0.000064760000000,0.000629303000000,0.000184859000000,0.000728068000000 +0.000030785000000,0.000033155000000,0.000018750500000,0.000068711000000,0.000032760000000,0.000063970000000,0.000055674000000,0.000020331000000,0.000064365000000,0.000361056000000,0.000058834000000,0.000180908000000,0.000075032000000,0.000061995000000,0.000632068000000,0.000184464000000,0.000514340000000 +0.000029995000000,0.000032760000000,0.000018750500000,0.000069106000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000020923000000,0.000062390000000,0.000189600000000,0.000043822000000,0.000152859000000,0.000062390000000,0.000101501000000,0.000596117000000,0.000240563000000,0.000550685000000 +0.000030785000000,0.000033946000000,0.000020133000000,0.000069106000000,0.000034340000000,0.000135476000000,0.000057254000000,0.000021516000000,0.000064365000000,0.000173402000000,0.000044217000000,0.000174587000000,0.000062390000000,0.000063575000000,0.000652611000000,0.000180513000000,0.000552661000000 +0.000030785000000,0.000034340000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000065946000000,0.000056464000000,0.000022898500000,0.000081352000000,0.000157995000000,0.000043821000000,0.000165106000000,0.000061995000000,0.000065155000000,0.000645896000000,0.000183279000000,0.000517501000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000034735000000,0.000065550000000,0.000055279000000,0.000021515500000,0.000111772000000,0.000159575000000,0.000043822000000,0.000157205000000,0.000066735000000,0.000065156000000,0.000596513000000,0.000214094000000,0.000552266000000 +0.000032760000000,0.000034340000000,0.000018750000000,0.000067920000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000020331000000,0.000062785000000,0.000161155000000,0.000043427000000,0.000159970000000,0.000060414000000,0.000065550000000,0.000629698000000,0.000181303000000,0.000550686000000 +0.000030390000000,0.000033945000000,0.000018948000000,0.000067921000000,0.000034340000000,0.000066341000000,0.000056464000000,0.000020330500000,0.000064365000000,0.000175378000000,0.000044217000000,0.000191180000000,0.000061994000000,0.000065945000000,0.000629303000000,0.000182884000000,0.000517895000000 +0.000030785000000,0.000033946000000,0.000019738000000,0.000068316000000,0.000032760000000,0.000065945000000,0.000057254000000,0.000038701000000,0.000063180000000,0.000174982000000,0.000043032000000,0.000174587000000,0.000061995000000,0.000063575000000,0.000597698000000,0.000211723000000,0.000563327000000 +0.000029995000000,0.000033550000000,0.000021911000000,0.000068710000000,0.000033945000000,0.000063970000000,0.000056069000000,0.000020528500000,0.000061994000000,0.000180513000000,0.000057253000000,0.000168661000000,0.000060809000000,0.000063180000000,0.000594933000000,0.000182489000000,0.000550686000000 +0.000031575000000,0.000033156000000,0.000019738000000,0.000103476000000,0.000033550000000,0.000063575000000,0.000056464000000,0.000020528000000,0.000061600000000,0.000163131000000,0.000043427000000,0.000176957000000,0.000063970000000,0.000063575000000,0.000664464000000,0.000180513000000,0.000513550000000 +0.000031970000000,0.000033155000000,0.000019935500000,0.000068711000000,0.000034735000000,0.000063575000000,0.000056464000000,0.000021713500000,0.000061600000000,0.000151673000000,0.000043822000000,0.000161945000000,0.000061600000000,0.000065155000000,0.000704365000000,0.000216069000000,0.000550686000000 +0.000031180000000,0.000034341000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000020330500000,0.000064365000000,0.000173402000000,0.000046192000000,0.000159575000000,0.000061995000000,0.000064365000000,0.000609550000000,0.000178538000000,0.000513550000000 +0.000029995000000,0.000033155000000,0.000019935500000,0.000069501000000,0.000033155000000,0.000064365000000,0.000089649000000,0.000022108500000,0.000063970000000,0.000174192000000,0.000043032000000,0.000176168000000,0.000060019000000,0.000063180000000,0.000631278000000,0.000184464000000,0.000517896000000 +0.000030389000000,0.000033551000000,0.000019145500000,0.000067920000000,0.000033550000000,0.000064365000000,0.000057649000000,0.000022108000000,0.000064365000000,0.000214093000000,0.000043427000000,0.000168266000000,0.000061995000000,0.000064365000000,0.000631279000000,0.000203032000000,0.000550290000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000067921000000,0.000067921000000,0.000065550000000,0.000056859000000,0.000021515500000,0.000064365000000,0.000156415000000,0.000043427000000,0.000161946000000,0.000062785000000,0.000064365000000,0.000595723000000,0.000184859000000,0.000513550000000 +0.000029994000000,0.000033156000000,0.000019935500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000021911000000,0.000064760000000,0.000156415000000,0.000044217000000,0.000157599000000,0.000060415000000,0.000061995000000,0.000595328000000,0.000189205000000,0.000574390000000 +0.000030390000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000034340000000,0.000064365000000,0.000055674000000,0.000021911000000,0.000063970000000,0.000175377000000,0.000043426000000,0.000174192000000,0.000112168000000,0.000062390000000,0.000666834000000,0.000181304000000,0.000573599000000 +0.000031180000000,0.000033945000000,0.000018553000000,0.000120859000000,0.000032760000000,0.000086094000000,0.000056859000000,0.000022503500000,0.000064365000000,0.000232661000000,0.000044612000000,0.000162340000000,0.000062785000000,0.000065156000000,0.000644711000000,0.000181303000000,0.000514735000000 +0.000029995000000,0.000033945000000,0.000019738000000,0.000069106000000,0.000033156000000,0.000064365000000,0.000058044000000,0.000022306000000,0.000065550000000,0.000173797000000,0.000043427000000,0.000179328000000,0.000061995000000,0.000061995000000,0.000597303000000,0.000181698000000,0.000631673000000 +0.000030785000000,0.000098340000000,0.000018750500000,0.000069106000000,0.000034340000000,0.000065945000000,0.000056464000000,0.000022306000000,0.000097945000000,0.000174587000000,0.000045402000000,0.000175377000000,0.000062390000000,0.000065155000000,0.000643525000000,0.000187230000000,0.000745056000000 +0.000030389000000,0.000036315000000,0.000020133000000,0.000068711000000,0.000033155000000,0.000065946000000,0.000075822000000,0.000022306000000,0.000064365000000,0.000174587000000,0.000044612000000,0.000176562000000,0.000062785000000,0.000063575000000,0.000628908000000,0.000182489000000,0.000587821000000 +0.000031180000000,0.000034340000000,0.000019145500000,0.000069105000000,0.000035526000000,0.000064365000000,0.000056464000000,0.000020923000000,0.000061995000000,0.000241747000000,0.000043822000000,0.000511180000000,0.000062389000000,0.000062390000000,0.000594537000000,0.000180513000000,0.000515526000000 +0.000030785000000,0.000033551000000,0.000019540500000,0.000067920000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000022108500000,0.000061994000000,0.000180118000000,0.000044612000000,0.000175772000000,0.000060020000000,0.000062785000000,0.000608365000000,0.000185254000000,0.000552661000000 +0.000030390000000,0.000034340000000,0.000018750500000,0.000069501000000,0.000037106000000,0.000064365000000,0.000057649000000,0.000022503500000,0.000061995000000,0.000174587000000,0.000044217000000,0.000160365000000,0.000061204000000,0.000097155000000,0.000636414000000,0.000234242000000,0.000516316000000 +0.000029994000000,0.000033946000000,0.000018750500000,0.000102291000000,0.000033155000000,0.000063970000000,0.000056069000000,0.000023293500000,0.000064760000000,0.000156810000000,0.000043032000000,0.000289155000000,0.000060414000000,0.000114538000000,0.000616661000000,0.000237007000000,0.000514735000000 +0.000031180000000,0.000033155000000,0.000020133000000,0.000069896000000,0.000034341000000,0.000112958000000,0.000057254000000,0.000020726000000,0.000063180000000,0.000174192000000,0.000043426000000,0.000153254000000,0.000062785000000,0.000064760000000,0.000632068000000,0.000214094000000,0.000549105000000 +0.000032365000000,0.000033550000000,0.000019738000000,0.000068710000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000038898500000,0.000061995000000,0.000173797000000,0.000063575000000,0.000179328000000,0.000062389000000,0.000064760000000,0.000645895000000,0.000180908000000,0.000515525000000 +0.000031970000000,0.000075427000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000065946000000,0.000056859000000,0.000022503500000,0.000171032000000,0.000156809000000,0.000043426000000,0.000212513000000,0.000060810000000,0.000065155000000,0.000677105000000,0.000191575000000,0.000513945000000 +0.000030390000000,0.000033550000000,0.000018750500000,0.000069105000000,0.000033946000000,0.000064365000000,0.000056069000000,0.000022503500000,0.000176167000000,0.000175773000000,0.000043821000000,0.000158390000000,0.000062390000000,0.000064365000000,0.000594932000000,0.000253994000000,0.000553451000000 +0.000030785000000,0.000036316000000,0.000020133000000,0.000068316000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000022503500000,0.000081352000000,0.000173402000000,0.000044217000000,0.000178538000000,0.000062390000000,0.000064365000000,0.000598093000000,0.000189204000000,0.000514340000000 +0.000032760000000,0.000033945000000,0.000020331000000,0.000067921000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020726000000,0.000064365000000,0.000156415000000,0.000044217000000,0.000178933000000,0.000061600000000,0.000062389000000,0.000662883000000,0.000182489000000,0.000711475000000 +0.000046982000000,0.000033550000000,0.000018750000000,0.000069501000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000024084000000,0.000061600000000,0.000174192000000,0.000045402000000,0.000193550000000,0.000059624000000,0.000099526000000,0.000641550000000,0.000219624000000,0.000634834000000 +0.000030390000000,0.000033155000000,0.000020331000000,0.000082142000000,0.000035131000000,0.000065550000000,0.000056068000000,0.000020923000000,0.000065946000000,0.000191180000000,0.000043822000000,0.000178538000000,0.000136661000000,0.000062390000000,0.000595327000000,0.000182094000000,0.000574784000000 +0.000030785000000,0.000034341000000,0.000019935500000,0.000069106000000,0.000033550000000,0.000077797000000,0.000056859000000,0.000022701000000,0.000065155000000,0.000174587000000,0.000043426000000,0.000152858000000,0.000159575000000,0.000062390000000,0.000664858000000,0.000192365000000,0.000566489000000 +0.000029995000000,0.000034341000000,0.000020133000000,0.000068710000000,0.000033155000000,0.000064760000000,0.000056464000000,0.000022503500000,0.000061994000000,0.000173402000000,0.000044612000000,0.000174982000000,0.000066340000000,0.000065551000000,0.000632068000000,0.000230685000000,0.000552661000000 +0.000029994000000,0.000033945000000,0.000020133500000,0.000068710000000,0.000035920000000,0.000064365000000,0.000056463000000,0.000032577500000,0.000063970000000,0.000157995000000,0.000045007000000,0.000206192000000,0.000063180000000,0.000064760000000,0.000645895000000,0.000180513000000,0.000553056000000 +0.000031180000000,0.000033155000000,0.000019145500000,0.000069500000000,0.000033155000000,0.000063970000000,0.000055673000000,0.000021120500000,0.000064365000000,0.000228711000000,0.000043426000000,0.000158785000000,0.000062390000000,0.000064365000000,0.000596907000000,0.000184859000000,0.000516710000000 +0.000030785000000,0.000048957000000,0.000019738000000,0.000068316000000,0.000033946000000,0.000065550000000,0.000090834000000,0.000021911000000,0.000061994000000,0.000159179000000,0.000043426000000,0.000160365000000,0.000063180000000,0.000065550000000,0.000628908000000,0.000221994000000,0.000551871000000 +0.000068315000000,0.000034341000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000063970000000,0.000056463000000,0.000022306000000,0.000061995000000,0.000176563000000,0.000043427000000,0.000178538000000,0.000061995000000,0.000065155000000,0.000677501000000,0.000179723000000,0.000669994000000 +0.000030390000000,0.000033550000000,0.000020133500000,0.000088464000000,0.000033155000000,0.000066340000000,0.000056859000000,0.000022306000000,0.000131130000000,0.000175377000000,0.000045007000000,0.000207377000000,0.000060810000000,0.000094390000000,0.000597303000000,0.000180118000000,0.000579920000000 +0.000030785000000,0.000033945000000,0.000020133000000,0.000068711000000,0.000034735000000,0.000065156000000,0.000056463000000,0.000020331000000,0.000061600000000,0.000214093000000,0.000043822000000,0.000167081000000,0.000061995000000,0.000065550000000,0.000628117000000,0.000262290000000,0.000551081000000 +0.000031970000000,0.000033156000000,0.000019935500000,0.000068711000000,0.000033945000000,0.000081748000000,0.000057648000000,0.000020330500000,0.000065945000000,0.000163130000000,0.000043821000000,0.000178143000000,0.000061994000000,0.000064760000000,0.000680266000000,0.000182489000000,0.000549895000000 +0.000031180000000,0.000033155000000,0.000019738000000,0.000069896000000,0.000033155000000,0.000066341000000,0.000056464000000,0.000020528000000,0.000061205000000,0.000152464000000,0.000045797000000,0.000162340000000,0.000061995000000,0.000062389000000,0.000596118000000,0.000179723000000,0.000528563000000 +0.000031970000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000066340000000,0.000056069000000,0.000022108500000,0.000063970000000,0.000173797000000,0.000043427000000,0.000194341000000,0.000066341000000,0.000065945000000,0.000596513000000,0.000223574000000,0.000547130000000 +0.000030785000000,0.000033550000000,0.000019540500000,0.000069106000000,0.000033946000000,0.000065946000000,0.000055673000000,0.000021713500000,0.000061599000000,0.000243327000000,0.000045797000000,0.000176562000000,0.000062389000000,0.000064760000000,0.000672364000000,0.000184464000000,0.000550291000000 +0.000030785000000,0.000033551000000,0.000019541000000,0.000068711000000,0.000067920000000,0.000065945000000,0.000056859000000,0.000027244500000,0.000061995000000,0.000173797000000,0.000111378000000,0.000167476000000,0.000061204000000,0.000064760000000,0.000631278000000,0.000180909000000,0.000514735000000 +0.000030389000000,0.000033945000000,0.000020133000000,0.000068315000000,0.000033155000000,0.000064365000000,0.000057648000000,0.000022108500000,0.000063575000000,0.000155624000000,0.000115723000000,0.000161946000000,0.000061995000000,0.000064365000000,0.000596118000000,0.000253600000000,0.000547920000000 +0.000029995000000,0.000046982000000,0.000020133000000,0.000137452000000,0.000033945000000,0.000063970000000,0.000056858000000,0.000021121000000,0.000064365000000,0.000156415000000,0.000107821000000,0.000191969000000,0.000061995000000,0.000062784000000,0.000923624000000,0.000185649000000,0.000512760000000 +0.000030785000000,0.000035526000000,0.000019738000000,0.000068711000000,0.000034340000000,0.000124809000000,0.000056068000000,0.000020330500000,0.000061599000000,0.000189599000000,0.000060810000000,0.000173797000000,0.000063180000000,0.000064760000000,0.000631278000000,0.000184859000000,0.000514735000000 +0.000033155000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000032761000000,0.000065945000000,0.000056464000000,0.000021911000000,0.000061994000000,0.000159574000000,0.000058439000000,0.000160365000000,0.000061995000000,0.000063180000000,0.000626932000000,0.000217649000000,0.000547920000000 +0.000029994000000,0.000033945000000,0.000020133500000,0.000069106000000,0.000033945000000,0.000063575000000,0.000056858000000,0.000022108000000,0.000061599000000,0.000173402000000,0.000045403000000,0.000165106000000,0.000060414000000,0.000063970000000,0.000599278000000,0.000180118000000,0.000516316000000 +0.000030390000000,0.000033550000000,0.000019738000000,0.000069896000000,0.000035526000000,0.000066340000000,0.000056859000000,0.000022701000000,0.000063575000000,0.000174192000000,0.000043822000000,0.000223180000000,0.000061599000000,0.000065945000000,0.000627722000000,0.000187229000000,0.000532907000000 +0.000030390000000,0.000033551000000,0.000019541000000,0.000069106000000,0.000033945000000,0.000065550000000,0.000055674000000,0.000021318500000,0.000061994000000,0.000173797000000,0.000043426000000,0.000176167000000,0.000060809000000,0.000064760000000,0.000628908000000,0.000254785000000,0.000563328000000 +0.000031180000000,0.000033550000000,0.000018553000000,0.000067920000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000022503500000,0.000064365000000,0.000156019000000,0.000043822000000,0.000178932000000,0.000060415000000,0.000064365000000,0.000594537000000,0.000257550000000,0.000515920000000 +0.000029600000000,0.000034736000000,0.000019343000000,0.000088069000000,0.000032760000000,0.000063970000000,0.000106241000000,0.000020726000000,0.000097945000000,0.000179723000000,0.000043427000000,0.000174587000000,0.000062390000000,0.000063575000000,0.000687377000000,0.000214884000000,0.000550291000000 +0.000031180000000,0.000033550000000,0.000019343000000,0.000068711000000,0.000033550000000,0.000063575000000,0.000056859000000,0.000021713500000,0.000061995000000,0.000174192000000,0.000043427000000,0.000250439000000,0.000060414000000,0.000063575000000,0.000674340000000,0.000181698000000,0.000550290000000 +0.000031575000000,0.000034340000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056068000000,0.000023491000000,0.000061995000000,0.000156019000000,0.000043426000000,0.000174587000000,0.000061994000000,0.000065550000000,0.000629698000000,0.000185649000000,0.000514735000000 +0.000031180000000,0.000034735000000,0.000019935500000,0.000069896000000,0.000033155000000,0.000066340000000,0.000056858000000,0.000020726000000,0.000064760000000,0.000173402000000,0.000043427000000,0.000151674000000,0.000060019000000,0.000065550000000,0.000594933000000,0.000199081000000,0.000548316000000 +0.000031970000000,0.000033550000000,0.000020133000000,0.000069106000000,0.000034736000000,0.000063970000000,0.000056859000000,0.000020725500000,0.000064760000000,0.000173797000000,0.000043427000000,0.000212908000000,0.000060414000000,0.000064760000000,0.000642340000000,0.000186834000000,0.000632858000000 +0.000030390000000,0.000033155000000,0.000020133500000,0.000068711000000,0.000034340000000,0.000066340000000,0.000056464000000,0.000021713500000,0.000061994000000,0.000191180000000,0.000043821000000,0.000178933000000,0.000060020000000,0.000065155000000,0.000629698000000,0.000181303000000,0.000688957000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000069106000000,0.000034340000000,0.000066340000000,0.000055673000000,0.000020330500000,0.000064760000000,0.000176167000000,0.000077402000000,0.000157995000000,0.000060415000000,0.000063575000000,0.000594933000000,0.000180908000000,0.000691328000000 +0.000030389000000,0.000033156000000,0.000019343000000,0.000069106000000,0.000033156000000,0.000063970000000,0.000056464000000,0.000021713500000,0.000064760000000,0.000173797000000,0.000043821000000,0.000178143000000,0.000061995000000,0.000064760000000,0.000631673000000,0.000179723000000,0.000550291000000 +0.000030390000000,0.000033155000000,0.000019540500000,0.000101896000000,0.000032760000000,0.000067525000000,0.000090834000000,0.000020331000000,0.000061600000000,0.000156019000000,0.000043822000000,0.000229105000000,0.000076612000000,0.000082538000000,0.000677105000000,0.000180908000000,0.000548710000000 +0.000030390000000,0.000036710000000,0.000020133000000,0.000068711000000,0.000033155000000,0.000098341000000,0.000057649000000,0.000038306000000,0.000063180000000,0.000221205000000,0.000044217000000,0.000157600000000,0.000062389000000,0.000065155000000,0.000594933000000,0.000204612000000,0.000512759000000 +0.000031575000000,0.000034341000000,0.000019738000000,0.000069105000000,0.000034341000000,0.000064760000000,0.000056068000000,0.000022306000000,0.000064365000000,0.000173007000000,0.000043427000000,0.000180118000000,0.000061995000000,0.000063574000000,0.000594538000000,0.000192365000000,0.000549501000000 +0.000030785000000,0.000033550000000,0.000019540500000,0.000069896000000,0.000033945000000,0.000065945000000,0.000056463000000,0.000020331000000,0.000061995000000,0.000174192000000,0.000043427000000,0.000152859000000,0.000060415000000,0.000063179000000,0.000635229000000,0.000201056000000,0.000514735000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000069105000000,0.000053303000000,0.000065155000000,0.000056463000000,0.000021713500000,0.000064365000000,0.000173797000000,0.000044217000000,0.000208562000000,0.000062784000000,0.000062785000000,0.000647081000000,0.000218834000000,0.000516711000000 +0.000030784000000,0.000033550000000,0.000019738000000,0.000069106000000,0.000033945000000,0.000064760000000,0.000056859000000,0.000021516000000,0.000064760000000,0.000353945000000,0.000043822000000,0.000165896000000,0.000061994000000,0.000065155000000,0.000595328000000,0.000182884000000,0.000553056000000 +0.000030785000000,0.000033551000000,0.000020133500000,0.000069501000000,0.000033155000000,0.000065945000000,0.000056858000000,0.000022306000000,0.000063970000000,0.000196710000000,0.000043821000000,0.000157599000000,0.000062785000000,0.000062785000000,0.000630092000000,0.000183279000000,0.000515525000000 +0.000030389000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056858000000,0.000020331000000,0.000081352000000,0.000159970000000,0.000044612000000,0.000159970000000,0.000061600000000,0.000065156000000,0.000628908000000,0.000199080000000,0.000666834000000 +0.000029995000000,0.000033550000000,0.000020133000000,0.000068315000000,0.000033550000000,0.000064365000000,0.000090835000000,0.000020725500000,0.000079377000000,0.000215674000000,0.000057254000000,0.000209748000000,0.000061995000000,0.000098340000000,0.000595723000000,0.000181698000000,0.000552661000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000034340000000,0.000100315000000,0.000075822000000,0.000020528500000,0.000064365000000,0.000174983000000,0.000043427000000,0.000174192000000,0.000060809000000,0.000062785000000,0.000631673000000,0.000181303000000,0.000518291000000 +0.000029995000000,0.000033551000000,0.000020133000000,0.000068711000000,0.000033551000000,0.000064761000000,0.000069106000000,0.000021911000000,0.000061600000000,0.000180513000000,0.000043427000000,0.000167081000000,0.000062389000000,0.000063180000000,0.000749797000000,0.000179327000000,0.000514340000000 +0.000031970000000,0.000033945000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000031985000000,0.000061994000000,0.000163526000000,0.000043426000000,0.000178143000000,0.000061995000000,0.000065550000000,0.000629303000000,0.000182093000000,0.000548711000000 +0.000030785000000,0.000033946000000,0.000019343000000,0.000069501000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000022701000000,0.000061995000000,0.000166291000000,0.000043427000000,0.000211723000000,0.000060414000000,0.000065550000000,0.000596117000000,0.000185254000000,0.000515130000000 +0.000031574000000,0.000033945000000,0.000019935500000,0.000068711000000,0.000035921000000,0.000065945000000,0.000056464000000,0.000021911000000,0.000064365000000,0.000174588000000,0.000043427000000,0.000159180000000,0.000061994000000,0.000063180000000,0.000644711000000,0.000186439000000,0.000558587000000 +0.000030389000000,0.000033945000000,0.000018750000000,0.000113353000000,0.000034340000000,0.000064365000000,0.000055673000000,0.000021120500000,0.000061994000000,0.000174192000000,0.000043822000000,0.000195130000000,0.000063970000000,0.000065155000000,0.000631674000000,0.000181698000000,0.000550686000000 +0.000030785000000,0.000034341000000,0.000019145500000,0.000081353000000,0.000035130000000,0.000065550000000,0.000056464000000,0.000020923500000,0.000075822000000,0.000174192000000,0.000044612000000,0.000187229000000,0.000061994000000,0.000065155000000,0.000596908000000,0.000180908000000,0.000514735000000 +0.000031179000000,0.000034340000000,0.000019343000000,0.000069896000000,0.000033155000000,0.000064365000000,0.000070291000000,0.000021713500000,0.000064365000000,0.000156020000000,0.000043426000000,0.000162341000000,0.000060809000000,0.000150883000000,0.000677501000000,0.000184859000000,0.000597698000000 +0.000029995000000,0.000033551000000,0.000019738000000,0.000068711000000,0.000033156000000,0.000078192000000,0.000056464000000,0.000020923000000,0.000061600000000,0.000156414000000,0.000043427000000,0.000158389000000,0.000062390000000,0.000066341000000,0.000643920000000,0.000179723000000,0.000531327000000 +0.000030785000000,0.000033550000000,0.000037120500000,0.000068711000000,0.000032761000000,0.000063970000000,0.000057254000000,0.000022305500000,0.000061994000000,0.000174587000000,0.000043427000000,0.000174587000000,0.000061600000000,0.000064365000000,0.000632068000000,0.000184464000000,0.000514735000000 +0.000031970000000,0.000033155000000,0.000021713500000,0.000069106000000,0.000032760000000,0.000063970000000,0.000056858000000,0.000029219500000,0.000063970000000,0.000159574000000,0.000043427000000,0.000179723000000,0.000062785000000,0.000064365000000,0.000594142000000,0.000185254000000,0.000551476000000 +0.000030785000000,0.000034340000000,0.000020331000000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056858000000,0.000020923000000,0.000061600000000,0.000186439000000,0.000043426000000,0.000165106000000,0.000077402000000,0.000063575000000,0.000632068000000,0.000193155000000,0.000553846000000 +0.000029995000000,0.000033946000000,0.000019145500000,0.000069106000000,0.000033551000000,0.000066340000000,0.000056464000000,0.000022305500000,0.000061995000000,0.000173402000000,0.000043427000000,0.000174192000000,0.000077797000000,0.000065550000000,0.000662883000000,0.000187624000000,0.000517501000000 +0.000029995000000,0.000033550000000,0.000019936000000,0.000088464000000,0.000036316000000,0.000066736000000,0.000056069000000,0.000022108000000,0.000061995000000,0.000173402000000,0.000043822000000,0.000176168000000,0.000060019000000,0.000062390000000,0.000596908000000,0.000182094000000,0.000517896000000 +0.000031180000000,0.000033550000000,0.000019738000000,0.000067921000000,0.000033945000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000065945000000,0.000156809000000,0.000043822000000,0.000212118000000,0.000060415000000,0.000099131000000,0.000640760000000,0.000187624000000,0.000515920000000 +0.000029995000000,0.000033946000000,0.000019935500000,0.000067920000000,0.000034735000000,0.000063970000000,0.000111377000000,0.000020725500000,0.000064365000000,0.000173402000000,0.000043822000000,0.000174982000000,0.000060810000000,0.000063180000000,0.000669994000000,0.000180908000000,0.000516710000000 +0.000030785000000,0.000033550000000,0.000019935500000,0.000068316000000,0.000033550000000,0.000063970000000,0.000056858000000,0.000020331000000,0.000065155000000,0.000174192000000,0.000045007000000,0.000159970000000,0.000060019000000,0.000063180000000,0.000598488000000,0.000180513000000,0.000549106000000 +0.000030390000000,0.000033155000000,0.000019935500000,0.000069896000000,0.000033945000000,0.000063970000000,0.000073451000000,0.000021713500000,0.000065550000000,0.000156414000000,0.000043427000000,0.000176563000000,0.000062389000000,0.000063180000000,0.000675130000000,0.000181699000000,0.000513549000000 +0.000031575000000,0.000033945000000,0.000019935500000,0.000069106000000,0.000034735000000,0.000064365000000,0.000070291000000,0.000022503500000,0.000061995000000,0.000174192000000,0.000057649000000,0.000186044000000,0.000061599000000,0.000064760000000,0.000643920000000,0.000182093000000,0.000568464000000 +0.000031180000000,0.000034341000000,0.000019343000000,0.000069106000000,0.000033156000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000062389000000,0.000174192000000,0.000043427000000,0.000178933000000,0.000078588000000,0.000063575000000,0.000628118000000,0.000188020000000,0.000519476000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000070686000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000061600000000,0.000156019000000,0.000043427000000,0.000178933000000,0.000075032000000,0.000063180000000,0.000658933000000,0.000216859000000,0.000484710000000 +0.000029994000000,0.000033946000000,0.000019936000000,0.000176958000000,0.000033550000000,0.000065156000000,0.000056069000000,0.000020331000000,0.000102290000000,0.000175378000000,0.000043822000000,0.000157994000000,0.000061600000000,0.000064365000000,0.000791278000000,0.000178538000000,0.000570438000000 +0.000031180000000,0.000033946000000,0.000019738000000,0.000122834000000,0.000033945000000,0.000065945000000,0.000056858000000,0.000020330500000,0.000061599000000,0.000173402000000,0.000043427000000,0.000266636000000,0.000062785000000,0.000093204000000,0.000631673000000,0.000186044000000,0.000485501000000 +0.000031970000000,0.000034340000000,0.000018750500000,0.000143378000000,0.000033551000000,0.000064365000000,0.000070290000000,0.000022503500000,0.000061995000000,0.000157205000000,0.000045403000000,0.000177747000000,0.000061994000000,0.000065156000000,0.000628117000000,0.000215673000000,0.000483921000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000140611000000,0.000033550000000,0.000167871000000,0.000056858000000,0.000020923000000,0.000063575000000,0.000174587000000,0.000043822000000,0.000157995000000,0.000060415000000,0.000065155000000,0.000597698000000,0.000181303000000,0.000517105000000 +0.000030785000000,0.000033156000000,0.000018948000000,0.000141797000000,0.000035130000000,0.000069896000000,0.000056068000000,0.000022108500000,0.000061995000000,0.000172612000000,0.000044611000000,0.000179723000000,0.000061995000000,0.000063575000000,0.000629698000000,0.000180908000000,0.000484711000000 +0.000029995000000,0.000033945000000,0.000019738000000,0.000092415000000,0.000034340000000,0.000077007000000,0.000056463000000,0.000020330500000,0.000061994000000,0.000230686000000,0.000043427000000,0.000186834000000,0.000061995000000,0.000065551000000,0.000629303000000,0.000216859000000,0.000647475000000 +0.000030785000000,0.000033155000000,0.000019935500000,0.000143377000000,0.000032760000000,0.000065945000000,0.000056463000000,0.000020528000000,0.000061600000000,0.000173007000000,0.000043427000000,0.000173797000000,0.000062390000000,0.000063970000000,0.000597302000000,0.000180118000000,0.000529353000000 +0.000030389000000,0.000033155000000,0.000019540500000,0.000109007000000,0.000033551000000,0.000064365000000,0.000057648000000,0.000022108500000,0.000061995000000,0.000157994000000,0.000043822000000,0.000164711000000,0.000060414000000,0.000065155000000,0.000664463000000,0.000186834000000,0.000571229000000 +0.000030390000000,0.000034736000000,0.000018948000000,0.000089649000000,0.000033945000000,0.000113353000000,0.000057649000000,0.000020528500000,0.000109797000000,0.000160760000000,0.000044612000000,0.000158389000000,0.000060414000000,0.000101106000000,0.000781797000000,0.000257550000000,0.000521451000000 +0.000030785000000,0.000033156000000,0.000019936000000,0.000090834000000,0.000032760000000,0.000065550000000,0.000057254000000,0.000020923000000,0.000082143000000,0.000194340000000,0.000044217000000,0.000193945000000,0.000060414000000,0.000062390000000,0.000629303000000,0.000181303000000,0.000486686000000 +0.000030390000000,0.000052118000000,0.000019540500000,0.000071871000000,0.000033155000000,0.000063970000000,0.000111773000000,0.000020331000000,0.000061995000000,0.000174983000000,0.000045797000000,0.000176562000000,0.000061599000000,0.000063180000000,0.000596117000000,0.000180118000000,0.000487081000000 +0.000030390000000,0.000048957000000,0.000019145000000,0.000127180000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000065551000000,0.000176167000000,0.000045007000000,0.000174192000000,0.000061994000000,0.000062390000000,0.000681451000000,0.000214093000000,0.000533303000000 +0.000030784000000,0.000033945000000,0.000019541000000,0.000155229000000,0.000034735000000,0.000064365000000,0.000055674000000,0.000023491000000,0.000063179000000,0.000180513000000,0.000043427000000,0.000167081000000,0.000060019000000,0.000065551000000,0.000627723000000,0.000206982000000,0.000485501000000 +0.000031970000000,0.000067525000000,0.000019540500000,0.000224365000000,0.000035525000000,0.000065550000000,0.000056859000000,0.000020528500000,0.000063180000000,0.000246884000000,0.000043427000000,0.000191575000000,0.000061995000000,0.000064760000000,0.000616265000000,0.000182884000000,0.000519080000000 +0.000031180000000,0.000033551000000,0.000019540500000,0.000113353000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000021516000000,0.000063574000000,0.000152859000000,0.000043822000000,0.000161945000000,0.000061995000000,0.000063575000000,0.000596117000000,0.000213303000000,0.000525006000000 +0.000031179000000,0.000033550000000,0.000019738000000,0.000084909000000,0.000048168000000,0.000064365000000,0.000057649000000,0.000021911000000,0.000154044000000,0.000173402000000,0.000043822000000,0.000158784000000,0.000061995000000,0.000065551000000,0.000636414000000,0.000182883000000,0.000484315000000 +0.000029994000000,0.000033550000000,0.000020330500000,0.000069106000000,0.000033155000000,0.000129946000000,0.000056069000000,0.000021911000000,0.000067920000000,0.000174587000000,0.000078192000000,0.000175773000000,0.000060415000000,0.000108217000000,0.000647476000000,0.000178933000000,0.000521451000000 +0.000031180000000,0.000033945000000,0.000019343000000,0.000114538000000,0.000033550000000,0.000063970000000,0.000056858000000,0.000045417000000,0.000065946000000,0.000206587000000,0.000043426000000,0.000167476000000,0.000061994000000,0.000062390000000,0.000597698000000,0.000254785000000,0.000485896000000 +0.000030784000000,0.000033945000000,0.000020923000000,0.000068711000000,0.000033156000000,0.000064365000000,0.000097155000000,0.000022306000000,0.000067921000000,0.000156415000000,0.000044217000000,0.000161946000000,0.000145352000000,0.000065550000000,0.000681056000000,0.000180908000000,0.000519476000000 +0.000030390000000,0.000033551000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000021911000000,0.000065550000000,0.000155624000000,0.000043427000000,0.000158390000000,0.000060019000000,0.000065156000000,0.000971821000000,0.000178933000000,0.000517500000000 +0.000029995000000,0.000033155000000,0.000019936000000,0.000069105000000,0.000034735000000,0.000064365000000,0.000055674000000,0.000023886500000,0.000065550000000,0.000176168000000,0.000043426000000,0.000173797000000,0.000062389000000,0.000063179000000,0.000632068000000,0.000315624000000,0.000579921000000 +0.000031575000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033946000000,0.000065550000000,0.000056464000000,0.000022108500000,0.000069106000000,0.000193155000000,0.000043822000000,0.000161155000000,0.000062785000000,0.000065155000000,0.000627722000000,0.000185253000000,0.000589796000000 +0.000030785000000,0.000033156000000,0.000019343000000,0.000069106000000,0.000034735000000,0.000065550000000,0.000056464000000,0.000020330500000,0.000065550000000,0.000173007000000,0.000043822000000,0.000164711000000,0.000061599000000,0.000065550000000,0.000598488000000,0.000188019000000,0.000553846000000 +0.000030785000000,0.000107822000000,0.000019738000000,0.000069106000000,0.000033551000000,0.000097550000000,0.000057254000000,0.000021911000000,0.000069500000000,0.000174192000000,0.000043822000000,0.000171032000000,0.000061995000000,0.000085304000000,0.000627722000000,0.000185648000000,0.000695278000000 +0.000029994000000,0.000036316000000,0.000018948000000,0.000097156000000,0.000032760000000,0.000064365000000,0.000055674000000,0.000020331000000,0.000067526000000,0.000174192000000,0.000043821000000,0.000176167000000,0.000061995000000,0.000077402000000,0.000664068000000,0.000181698000000,0.000517500000000 +0.000031179000000,0.000033551000000,0.000020133000000,0.000067525000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020528000000,0.000068711000000,0.000171821000000,0.000044217000000,0.000179328000000,0.000061995000000,0.000063180000000,0.000594933000000,0.000181698000000,0.000519871000000 +0.000030390000000,0.000034735000000,0.000020528000000,0.000068316000000,0.000034340000000,0.000064365000000,0.000057254000000,0.000037121000000,0.000066340000000,0.000179328000000,0.000043822000000,0.000175377000000,0.000061994000000,0.000062784000000,0.000628118000000,0.000197500000000,0.000487081000000 +0.000029995000000,0.000033946000000,0.000019145500000,0.000068316000000,0.000033155000000,0.000064760000000,0.000057254000000,0.000020330500000,0.000068315000000,0.000237006000000,0.000044612000000,0.000160760000000,0.000061994000000,0.000084908000000,0.000630093000000,0.000181303000000,0.000519871000000 +0.000029994000000,0.000033945000000,0.000018948000000,0.000069501000000,0.000033155000000,0.000065946000000,0.000055673000000,0.000021713500000,0.000065550000000,0.000190389000000,0.000078193000000,0.000194340000000,0.000062390000000,0.000090439000000,0.000684612000000,0.000189599000000,0.000602044000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000070291000000,0.000033155000000,0.000066340000000,0.000057649000000,0.000020528500000,0.000069105000000,0.000173797000000,0.000058439000000,0.000152859000000,0.000060415000000,0.000062390000000,0.000594538000000,0.000214093000000,0.000484710000000 +0.000031180000000,0.000034735000000,0.000020133000000,0.000069106000000,0.000033945000000,0.000064365000000,0.000056463000000,0.000020528000000,0.000098340000000,0.000173797000000,0.000043822000000,0.000180118000000,0.000062389000000,0.000062785000000,0.000675129000000,0.000182488000000,0.000542784000000 +0.000030390000000,0.000034735000000,0.000020331000000,0.000070291000000,0.000033550000000,0.000134686000000,0.000057253000000,0.000020923000000,0.000065945000000,0.000156414000000,0.000045007000000,0.000177748000000,0.000060414000000,0.000063575000000,0.000630093000000,0.000182094000000,0.000485106000000 +0.000029994000000,0.000046982000000,0.000019343000000,0.000102291000000,0.000033155000000,0.000065946000000,0.000056069000000,0.000022108500000,0.000065945000000,0.000207773000000,0.000043426000000,0.000205007000000,0.000062389000000,0.000065550000000,0.000594932000000,0.000212908000000,0.000536858000000 +0.000029995000000,0.000033156000000,0.000018948000000,0.000068316000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000079772000000,0.000173007000000,0.000043822000000,0.000176958000000,0.000061599000000,0.000062785000000,0.000666833000000,0.000179723000000,0.000634834000000 +0.000030389000000,0.000033945000000,0.000020133500000,0.000068711000000,0.000035131000000,0.000064760000000,0.000057254000000,0.000021318500000,0.000111772000000,0.000156809000000,0.000044217000000,0.000178142000000,0.000062785000000,0.000062390000000,0.000628118000000,0.000180118000000,0.000528167000000 +0.000033946000000,0.000034340000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000063970000000,0.000056463000000,0.000020528000000,0.000102686000000,0.000174192000000,0.000043427000000,0.000158390000000,0.000061995000000,0.000064365000000,0.000597698000000,0.000212118000000,0.000484315000000 +0.000033155000000,0.000033550000000,0.000018948000000,0.000069106000000,0.000048168000000,0.000063970000000,0.000055673000000,0.000027837000000,0.000063970000000,0.000212908000000,0.000045007000000,0.000257945000000,0.000062389000000,0.000116513000000,0.000734784000000,0.000186439000000,0.000568463000000 +0.000030784000000,0.000033945000000,0.000018948000000,0.000069105000000,0.000033156000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000061599000000,0.000175378000000,0.000043427000000,0.000152463000000,0.000060414000000,0.000062784000000,0.000629698000000,0.000184069000000,0.000486291000000 +0.000031575000000,0.000034340000000,0.000020133000000,0.000069105000000,0.000033945000000,0.000064760000000,0.000057254000000,0.000021911000000,0.000061600000000,0.000173797000000,0.000044216000000,0.000174588000000,0.000062390000000,0.000062389000000,0.000647081000000,0.000215279000000,0.000617451000000 +0.000029995000000,0.000033155000000,0.000020133000000,0.000069106000000,0.000033550000000,0.000063970000000,0.000056464000000,0.000022306000000,0.000061599000000,0.000158390000000,0.000043822000000,0.000164710000000,0.000060019000000,0.000065155000000,0.000595722000000,0.000185254000000,0.000557006000000 +0.000030389000000,0.000033155000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000063970000000,0.000056069000000,0.000020923500000,0.000064760000000,0.000195130000000,0.000043427000000,0.000299427000000,0.000060415000000,0.000063575000000,0.000629698000000,0.000188414000000,0.000487871000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000068711000000,0.000035130000000,0.000063575000000,0.000056069000000,0.000021318500000,0.000061599000000,0.000160365000000,0.000043426000000,0.000174192000000,0.000060414000000,0.000064365000000,0.000896759000000,0.000219229000000,0.000521056000000 +0.000029994000000,0.000064365000000,0.000019145500000,0.000068710000000,0.000034736000000,0.000066340000000,0.000056463000000,0.000020528000000,0.000083328000000,0.000175773000000,0.000043822000000,0.000177748000000,0.000062785000000,0.000063180000000,0.000656562000000,0.000182093000000,0.000487080000000 +0.000030390000000,0.000033155000000,0.000020331000000,0.000068711000000,0.000033155000000,0.000065551000000,0.000139031000000,0.000021516000000,0.000064365000000,0.000174982000000,0.000044612000000,0.000207377000000,0.000060414000000,0.000082933000000,0.000597698000000,0.000180513000000,0.000515525000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000113747000000,0.000020528000000,0.000063575000000,0.000227130000000,0.000063179000000,0.000166686000000,0.000060415000000,0.000076612000000,0.000627722000000,0.000217649000000,0.000569254000000 +0.000031180000000,0.000033155000000,0.000019541000000,0.000069896000000,0.000033155000000,0.000063970000000,0.000061994000000,0.000027244500000,0.000062389000000,0.000162735000000,0.000043032000000,0.000178537000000,0.000062390000000,0.000065155000000,0.000630488000000,0.000187624000000,0.000485105000000 +0.000031970000000,0.000034340000000,0.000020133500000,0.000068711000000,0.000033550000000,0.000120859000000,0.000073451000000,0.000022108500000,0.000061995000000,0.000152069000000,0.000043822000000,0.000161946000000,0.000061995000000,0.000064365000000,0.000596512000000,0.000178538000000,0.000570439000000 +0.000031179000000,0.000033945000000,0.000019145500000,0.000156810000000,0.000033550000000,0.000065945000000,0.000107822000000,0.000020528000000,0.000065155000000,0.000173007000000,0.000046193000000,0.000214883000000,0.000060019000000,0.000063575000000,0.000595723000000,0.000199476000000,0.000517896000000 +0.000030785000000,0.000033945000000,0.000020528500000,0.000069106000000,0.000033155000000,0.000096365000000,0.000076217000000,0.000021713000000,0.000064366000000,0.000207377000000,0.000044217000000,0.000174982000000,0.000062785000000,0.000064365000000,0.000631279000000,0.000182488000000,0.000487476000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000068316000000,0.000033945000000,0.000082142000000,0.000070686000000,0.000023688500000,0.000065946000000,0.000173797000000,0.000044217000000,0.000165896000000,0.000061600000000,0.000061995000000,0.000632859000000,0.000180908000000,0.000610340000000 +0.000030785000000,0.000033551000000,0.000019738000000,0.000067920000000,0.000033945000000,0.000063970000000,0.000057254000000,0.000022306000000,0.000097550000000,0.000156415000000,0.000044217000000,0.000161550000000,0.000060810000000,0.000062785000000,0.000595723000000,0.000184464000000,0.000483130000000 +0.000029994000000,0.000053303000000,0.000019540500000,0.000068711000000,0.000034340000000,0.000065155000000,0.000056859000000,0.000021516000000,0.000061995000000,0.000156020000000,0.000043032000000,0.000192365000000,0.000062390000000,0.000063180000000,0.000628513000000,0.000203031000000,0.000482735000000 +0.000030390000000,0.000033946000000,0.000019145500000,0.000069896000000,0.000033550000000,0.000064365000000,0.000055674000000,0.000024084000000,0.000064760000000,0.000303377000000,0.000043427000000,0.000174192000000,0.000062785000000,0.000063574000000,0.000632068000000,0.000229896000000,0.000807476000000 +0.000031180000000,0.000034340000000,0.000018948000000,0.000069896000000,0.000033155000000,0.000084908000000,0.000056859000000,0.000021515500000,0.000061600000000,0.000159970000000,0.000043427000000,0.000161550000000,0.000060019000000,0.000064365000000,0.000594537000000,0.000250439000000,0.000526192000000 +0.000030389000000,0.000033155000000,0.000019738000000,0.000101896000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000031787500000,0.000061994000000,0.000173007000000,0.000043426000000,0.000165105000000,0.000062390000000,0.000065550000000,0.000666438000000,0.000198686000000,0.000486686000000 +0.000030785000000,0.000034340000000,0.000018948000000,0.000073451000000,0.000033945000000,0.000063575000000,0.000056859000000,0.000032972500000,0.000065155000000,0.000207377000000,0.000045402000000,0.000249254000000,0.000061995000000,0.000064761000000,0.000678291000000,0.000182093000000,0.000534883000000 +0.000029995000000,0.000034341000000,0.000020133000000,0.000069896000000,0.000033155000000,0.000063970000000,0.000055674000000,0.000041664000000,0.000061995000000,0.000174587000000,0.000045402000000,0.000175773000000,0.000061600000000,0.000063970000000,0.000613501000000,0.000283624000000,0.000487081000000 +0.000031179000000,0.000033945000000,0.000019540500000,0.000067920000000,0.000088068000000,0.000065945000000,0.000056464000000,0.000022503500000,0.000061995000000,0.000156415000000,0.000043427000000,0.000178933000000,0.000062390000000,0.000063180000000,0.000594933000000,0.000181698000000,0.000486686000000 +0.000030390000000,0.000033945000000,0.000020528000000,0.000072267000000,0.000067526000000,0.000064365000000,0.000056464000000,0.000021516000000,0.000064365000000,0.000174192000000,0.000044612000000,0.000174587000000,0.000061994000000,0.000066735000000,0.000627723000000,0.000185254000000,0.000520661000000 +0.000032760000000,0.000033945000000,0.000019343000000,0.000067920000000,0.000038686000000,0.000063970000000,0.000056859000000,0.000023491500000,0.000061599000000,0.000276908000000,0.000043427000000,0.000182488000000,0.000061600000000,0.000164710000000,0.000629697000000,0.000215673000000,0.000486290000000 +0.000029995000000,0.000033156000000,0.000019145500000,0.000069106000000,0.000045797000000,0.000063970000000,0.000056068000000,0.000022306000000,0.000061600000000,0.000156020000000,0.000043821000000,0.000175773000000,0.000062390000000,0.000082933000000,0.000596908000000,0.000180908000000,0.000519476000000 +0.000031180000000,0.000064365000000,0.000019936000000,0.000069105000000,0.000034340000000,0.000098340000000,0.000056464000000,0.000037318000000,0.000062389000000,0.000174192000000,0.000045007000000,0.000152464000000,0.000062390000000,0.000078587000000,0.000628512000000,0.000186044000000,0.000485106000000 +0.000031970000000,0.000033550000000,0.000020133000000,0.000068710000000,0.000033155000000,0.000065945000000,0.000056463000000,0.000021713000000,0.000064760000000,0.000174587000000,0.000044217000000,0.000179328000000,0.000061995000000,0.000062390000000,0.000628908000000,0.000216068000000,0.000485501000000 +0.000030390000000,0.000033155000000,0.000020133000000,0.000069896000000,0.000033551000000,0.000063575000000,0.000056464000000,0.000021121000000,0.000061600000000,0.000189994000000,0.000077402000000,0.000207377000000,0.000061995000000,0.000065156000000,0.000595327000000,0.000182488000000,0.000517896000000 +0.000030390000000,0.000034735000000,0.000019343000000,0.000068710000000,0.000034340000000,0.000064365000000,0.000055674000000,0.000021516000000,0.000063575000000,0.000175377000000,0.000043427000000,0.000157600000000,0.000060809000000,0.000131525000000,0.000628117000000,0.000179328000000,0.000487871000000 +0.000029994000000,0.000034340000000,0.000019935500000,0.000068316000000,0.000066736000000,0.000063970000000,0.000090834000000,0.000022503500000,0.000082142000000,0.000173007000000,0.000043427000000,0.000176562000000,0.000062390000000,0.000062785000000,0.000631278000000,0.000253204000000,0.000518685000000 +0.000029995000000,0.000033551000000,0.000019935500000,0.000067921000000,0.000036316000000,0.000065155000000,0.000056859000000,0.000020923500000,0.000064365000000,0.000156414000000,0.000043427000000,0.000212513000000,0.000060415000000,0.000065551000000,0.000594933000000,0.000182488000000,0.000483525000000 +0.000033550000000,0.000033155000000,0.000018948000000,0.000068316000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000021713500000,0.000061995000000,0.000257945000000,0.000045402000000,0.000157995000000,0.000061995000000,0.000062389000000,0.000647081000000,0.000188415000000,0.000483920000000 +0.000030785000000,0.000033155000000,0.000019540500000,0.000069105000000,0.000037106000000,0.000063970000000,0.000055674000000,0.000021713500000,0.000061600000000,0.000173402000000,0.000043427000000,0.000180513000000,0.000060810000000,0.000064365000000,0.000628907000000,0.000214093000000,0.000568858000000 +0.000030390000000,0.000033155000000,0.000026849000000,0.000115723000000,0.000033945000000,0.000112958000000,0.000056464000000,0.000021120500000,0.000061995000000,0.000174982000000,0.000043427000000,0.000152464000000,0.000062389000000,0.000065550000000,0.000614291000000,0.000185649000000,0.000486291000000 +0.000030390000000,0.000052908000000,0.000020133000000,0.000136266000000,0.000034736000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000063575000000,0.000193945000000,0.000043427000000,0.000251229000000,0.000061994000000,0.000065156000000,0.001011722000000,0.000180513000000,0.000520661000000 +0.000030390000000,0.000033550000000,0.000020133500000,0.000084118000000,0.000033945000000,0.000066340000000,0.000056464000000,0.000022503500000,0.000063574000000,0.000157995000000,0.000045402000000,0.000263081000000,0.000063575000000,0.000063970000000,0.000596513000000,0.000267032000000,0.000535278000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000069501000000,0.000032760000000,0.000064761000000,0.000055673000000,0.000020923000000,0.000062389000000,0.000160365000000,0.000043822000000,0.000157599000000,0.000062389000000,0.000064760000000,0.000664859000000,0.000182488000000,0.000487081000000 +0.000030390000000,0.000033946000000,0.000019540500000,0.000108217000000,0.000034341000000,0.000065945000000,0.000076217000000,0.000021911000000,0.000097945000000,0.000159970000000,0.000043427000000,0.000193946000000,0.000061994000000,0.000065155000000,0.000869501000000,0.000181698000000,0.000520661000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000088463000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000053515500000,0.000063180000000,0.000195130000000,0.000043427000000,0.000177353000000,0.000061995000000,0.000064760000000,0.000678686000000,0.000214884000000,0.000487871000000 +0.000030785000000,0.000033155000000,0.000019540500000,0.000068710000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000028627000000,0.000061995000000,0.000175773000000,0.000045402000000,0.000174587000000,0.000063180000000,0.000064365000000,0.000639179000000,0.000179723000000,0.000520661000000 +0.000030390000000,0.000033550000000,0.000019738000000,0.000069105000000,0.000035525000000,0.000065945000000,0.000056069000000,0.000020726000000,0.000064365000000,0.000180908000000,0.000044217000000,0.000167476000000,0.000061995000000,0.000062389000000,0.000594933000000,0.000181303000000,0.000555426000000 +0.000031970000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000036316000000,0.000190390000000,0.000056859000000,0.000020330500000,0.000063575000000,0.000163130000000,0.000043426000000,0.000246094000000,0.000062390000000,0.000064365000000,0.000680661000000,0.000250044000000,0.000485105000000 +0.000031575000000,0.000034735000000,0.000020133000000,0.000068711000000,0.000035526000000,0.000064365000000,0.000060414000000,0.000021318000000,0.000061599000000,0.000203031000000,0.000045797000000,0.000162340000000,0.000061995000000,0.000062389000000,0.000679871000000,0.000184464000000,0.000541994000000 +0.000031575000000,0.000033155000000,0.000019145500000,0.000068710000000,0.000035131000000,0.000065550000000,0.000056859000000,0.000038701500000,0.000061995000000,0.000173402000000,0.000043821000000,0.000159970000000,0.000060414000000,0.000085303000000,0.000596513000000,0.000180118000000,0.000484315000000 +0.000029994000000,0.000060020000000,0.000019540500000,0.000069896000000,0.000036316000000,0.000064365000000,0.000055674000000,0.000022306000000,0.000064760000000,0.000173797000000,0.000045007000000,0.000175377000000,0.000062389000000,0.000065155000000,0.000642340000000,0.000215279000000,0.000487871000000 +0.000030390000000,0.000033946000000,0.000019540500000,0.000067920000000,0.000033945000000,0.000066341000000,0.000075427000000,0.000020923000000,0.000114142000000,0.000173007000000,0.000044612000000,0.000182093000000,0.000062784000000,0.000064760000000,0.000665648000000,0.000180514000000,0.000569648000000 +0.000065945000000,0.000033550000000,0.000019540500000,0.000161550000000,0.000051723000000,0.000064365000000,0.000056464000000,0.000023096000000,0.000093600000000,0.000266242000000,0.000090439000000,0.000161550000000,0.000061995000000,0.000063970000000,0.000679475000000,0.000180118000000,0.000483921000000 +0.000032760000000,0.000034736000000,0.000019541000000,0.000103081000000,0.000033945000000,0.000082143000000,0.000057649000000,0.000020528000000,0.000062389000000,0.000156020000000,0.000044612000000,0.000157995000000,0.000061205000000,0.000065155000000,0.000595723000000,0.000252810000000,0.000517895000000 +0.000045007000000,0.000033550000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000079772000000,0.000056069000000,0.000020330500000,0.000061995000000,0.000175377000000,0.000080958000000,0.000174587000000,0.000061600000000,0.000064760000000,0.000991969000000,0.000180513000000,0.000484710000000 +0.000031970000000,0.000033550000000,0.000018750500000,0.000069106000000,0.000032761000000,0.000065551000000,0.000056859000000,0.000021910500000,0.000066340000000,0.000159575000000,0.000043822000000,0.000174982000000,0.000060415000000,0.000063970000000,0.000627722000000,0.000180513000000,0.000523031000000 +0.000029994000000,0.000034340000000,0.000020133500000,0.000069501000000,0.000033550000000,0.000063970000000,0.000057649000000,0.000020528500000,0.000061995000000,0.000173007000000,0.000045402000000,0.000228711000000,0.000060414000000,0.000064365000000,0.000631673000000,0.000221204000000,0.000533303000000 +0.000032760000000,0.000033155000000,0.000019738000000,0.000070686000000,0.000037106000000,0.000064365000000,0.000056859000000,0.000021713500000,0.000130735000000,0.000174192000000,0.000043822000000,0.000175377000000,0.000061994000000,0.000098340000000,0.000594932000000,0.000182094000000,0.000487871000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000102290000000,0.000033155000000,0.000063970000000,0.000055674000000,0.000021318000000,0.000062390000000,0.000173797000000,0.000043821000000,0.000196711000000,0.000060414000000,0.000063180000000,0.000596908000000,0.000183674000000,0.000487476000000 +0.000031575000000,0.000033945000000,0.000026256500000,0.000068315000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000030602500000,0.000065550000000,0.000156415000000,0.000043427000000,0.000179328000000,0.000060415000000,0.000065156000000,0.000630488000000,0.000234637000000,0.000520661000000 +0.000029995000000,0.000088464000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000063970000000,0.000071081000000,0.000020528000000,0.000063970000000,0.000419130000000,0.000043427000000,0.000175378000000,0.000062785000000,0.000064760000000,0.000701599000000,0.000185253000000,0.000487476000000 +0.000038686000000,0.000033551000000,0.000019343000000,0.000068316000000,0.000033550000000,0.000135476000000,0.000056859000000,0.000022306000000,0.000065550000000,0.000203821000000,0.000043427000000,0.000160365000000,0.000060809000000,0.000064365000000,0.000922833000000,0.000185254000000,0.000570044000000 +0.000030390000000,0.000033155000000,0.000020133000000,0.000069106000000,0.000034341000000,0.000065946000000,0.000056859000000,0.000022108500000,0.000061600000000,0.000196711000000,0.000043822000000,0.000208563000000,0.000062785000000,0.000065551000000,0.000645896000000,0.000229106000000,0.000571624000000 +0.000031575000000,0.000033550000000,0.000019540500000,0.000069106000000,0.000046982000000,0.000063970000000,0.000056464000000,0.000020331000000,0.000064365000000,0.000174192000000,0.000044217000000,0.000152859000000,0.000061599000000,0.000062390000000,0.000607574000000,0.000180908000000,0.000485105000000 +0.000031575000000,0.000033945000000,0.000019540500000,0.000068316000000,0.000033946000000,0.000067130000000,0.000057254000000,0.000020725500000,0.000081352000000,0.000173797000000,0.000043822000000,0.000178538000000,0.000062784000000,0.000064760000000,0.000633253000000,0.000181698000000,0.000519476000000 +0.000031180000000,0.000034736000000,0.000019541000000,0.000068710000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000063970000000,0.000156809000000,0.000043427000000,0.000178933000000,0.000062784000000,0.000098736000000,0.000641945000000,0.000291525000000,0.000484315000000 +0.000030390000000,0.000033550000000,0.000019935500000,0.000158390000000,0.000033945000000,0.000063970000000,0.000056068000000,0.000020330500000,0.000065550000000,0.000208958000000,0.000044217000000,0.000192365000000,0.000062390000000,0.000065155000000,0.000630883000000,0.000324710000000,0.000521452000000 +0.000029994000000,0.000033155000000,0.000018948000000,0.000068710000000,0.000032760000000,0.000066340000000,0.000057254000000,0.000021713500000,0.000065155000000,0.000172612000000,0.000043427000000,0.000177748000000,0.000062390000000,0.000062784000000,0.000671179000000,0.000250044000000,0.000554242000000 +0.000030390000000,0.000033946000000,0.000020133000000,0.000068315000000,0.000033155000000,0.000064365000000,0.000090834000000,0.000020330500000,0.000061995000000,0.000156809000000,0.000044612000000,0.000178933000000,0.000062390000000,0.000062389000000,0.000631673000000,0.000180118000000,0.000483920000000 +0.000031180000000,0.000034340000000,0.000019935500000,0.000068711000000,0.000033155000000,0.000066340000000,0.000056463000000,0.000021713500000,0.000061600000000,0.000174587000000,0.000043822000000,0.000157599000000,0.000060414000000,0.000064761000000,0.000631673000000,0.000185254000000,0.000554241000000 +0.000031180000000,0.000033156000000,0.000019738000000,0.000069501000000,0.000033550000000,0.000063970000000,0.000056068000000,0.000022503500000,0.000064760000000,0.000186439000000,0.000058044000000,0.000213303000000,0.000133501000000,0.000064760000000,0.000632069000000,0.000213303000000,0.000485500000000 +0.000029995000000,0.000033550000000,0.000019738500000,0.000070291000000,0.000034340000000,0.000065155000000,0.000056859000000,0.000020923000000,0.000062785000000,0.000174983000000,0.000043822000000,0.000152859000000,0.000078982000000,0.000063575000000,0.000669204000000,0.000179723000000,0.000500513000000 +0.000030389000000,0.000033946000000,0.000019541000000,0.000114933000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000022306000000,0.000063970000000,0.000173797000000,0.000043426000000,0.000174192000000,0.000061995000000,0.000063180000000,0.000637204000000,0.000180908000000,0.000528167000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000069501000000,0.000034341000000,0.000063970000000,0.000060414000000,0.000022701000000,0.000061600000000,0.000158389000000,0.000043427000000,0.000165105000000,0.000060414000000,0.000096760000000,0.000631673000000,0.000214489000000,0.000487871000000 +0.000029995000000,0.000034735000000,0.000020133000000,0.000069500000000,0.000033945000000,0.000065155000000,0.000056069000000,0.000022306000000,0.000064760000000,0.000175377000000,0.000043821000000,0.000192365000000,0.000059624000000,0.000064760000000,0.000634834000000,0.000182488000000,0.000834735000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000068315000000,0.000032760000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000096760000000,0.000159180000000,0.000043427000000,0.000160760000000,0.000060414000000,0.000064760000000,0.000632858000000,0.000181303000000,0.000520661000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000068316000000,0.000034341000000,0.000083723000000,0.000112167000000,0.000020528000000,0.000078192000000,0.000175772000000,0.000043427000000,0.000178143000000,0.000080563000000,0.000065550000000,0.000632068000000,0.000236216000000,0.000487871000000 +0.000030784000000,0.000035131000000,0.000018948000000,0.000068711000000,0.000033945000000,0.000069896000000,0.000056464000000,0.000037318500000,0.000061995000000,0.000208958000000,0.000043822000000,0.000174192000000,0.000061995000000,0.000063575000000,0.000634439000000,0.000182093000000,0.000502093000000 +0.000029995000000,0.000033945000000,0.000019936000000,0.000068710000000,0.000034341000000,0.000097550000000,0.000055674000000,0.000022108500000,0.000061995000000,0.000180118000000,0.000044217000000,0.000250834000000,0.000060415000000,0.000065155000000,0.000704760000000,0.000182488000000,0.000519871000000 +0.000031575000000,0.000053698000000,0.000030207500000,0.000069501000000,0.000034735000000,0.000064365000000,0.000056463000000,0.000020528500000,0.000141402000000,0.000162340000000,0.000043427000000,0.000177747000000,0.000060414000000,0.000062785000000,0.000646685000000,0.000217254000000,0.000484710000000 +0.000031575000000,0.000046588000000,0.000045022000000,0.000082537000000,0.000033155000000,0.000066340000000,0.000056859000000,0.000020330500000,0.000064760000000,0.000151673000000,0.000045007000000,0.000161550000000,0.000061994000000,0.000065155000000,0.000595722000000,0.000182489000000,0.000569254000000 +0.000031575000000,0.000033945000000,0.000026454000000,0.000069106000000,0.000037106000000,0.000063970000000,0.000056859000000,0.000021713500000,0.000062389000000,0.000206982000000,0.000044217000000,0.000159179000000,0.000061995000000,0.000062785000000,0.001224661000000,0.000181699000000,0.000518291000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000069501000000,0.000033550000000,0.000063575000000,0.000056068000000,0.000021713500000,0.000064365000000,0.000174192000000,0.000043822000000,0.000189994000000,0.000060020000000,0.000065945000000,0.000597303000000,0.000203822000000,0.000487476000000 +0.000030785000000,0.000034341000000,0.000019343000000,0.000068316000000,0.000035131000000,0.000104266000000,0.000057649000000,0.000020330500000,0.000064365000000,0.000173402000000,0.000043822000000,0.000167081000000,0.000061599000000,0.000064365000000,0.000643525000000,0.000185254000000,0.000581105000000 +0.000030390000000,0.000033945000000,0.000019145500000,0.000068315000000,0.000033155000000,0.000067130000000,0.000090834000000,0.000021713500000,0.000061599000000,0.000156019000000,0.000043426000000,0.000161945000000,0.000061994000000,0.000065945000000,0.000664068000000,0.000180908000000,0.000483920000000 +0.000029994000000,0.000033155000000,0.000019738000000,0.000068710000000,0.000033155000000,0.000064760000000,0.000056858000000,0.000020725500000,0.000064365000000,0.000191180000000,0.000043427000000,0.000158390000000,0.000062784000000,0.000063574000000,0.000636018000000,0.000180118000000,0.000483525000000 +0.000030390000000,0.000033156000000,0.000019145500000,0.000069106000000,0.000032760000000,0.000064365000000,0.000075426000000,0.000021713000000,0.000098341000000,0.000174982000000,0.000043426000000,0.000190785000000,0.000061994000000,0.000062389000000,0.000598488000000,0.000181698000000,0.000569253000000 +0.000031180000000,0.000033156000000,0.000019738500000,0.000105451000000,0.000033550000000,0.000067525000000,0.000130736000000,0.000029219500000,0.000061994000000,0.000159574000000,0.000043427000000,0.000161550000000,0.000062389000000,0.000061994000000,0.000628908000000,0.000193155000000,0.000485501000000 +0.000030785000000,0.000033155000000,0.000019540500000,0.000068711000000,0.000034341000000,0.000064365000000,0.000056859000000,0.000020528500000,0.000061994000000,0.000173798000000,0.000043427000000,0.000165895000000,0.000060414000000,0.000066341000000,0.000679081000000,0.000181699000000,0.000520266000000 +0.000030390000000,0.000034340000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000023886000000,0.000061995000000,0.000208167000000,0.000058834000000,0.000175377000000,0.000062390000000,0.000065945000000,0.000594538000000,0.000180513000000,0.000488266000000 +0.000029995000000,0.000033945000000,0.000019935500000,0.000069106000000,0.000033946000000,0.000064760000000,0.000056464000000,0.000022108500000,0.000064365000000,0.000174192000000,0.000043822000000,0.000176168000000,0.000062390000000,0.000063575000000,0.000630488000000,0.000183673000000,0.000487476000000 +0.000031180000000,0.000033155000000,0.000019738000000,0.000068316000000,0.000033550000000,0.000083328000000,0.000076612000000,0.000022306000000,0.000063179000000,0.000156414000000,0.000044612000000,0.000179723000000,0.000067525000000,0.000063179000000,0.000628908000000,0.000184069000000,0.000520266000000 +0.000030785000000,0.000033945000000,0.000019738000000,0.000067920000000,0.000034736000000,0.000065945000000,0.000056463000000,0.000020923500000,0.000063970000000,0.000179328000000,0.000044217000000,0.000174982000000,0.000061994000000,0.000063179000000,0.000594538000000,0.000182884000000,0.000487476000000 +0.000030389000000,0.000033155000000,0.000019343000000,0.000068316000000,0.000033155000000,0.000063575000000,0.000057649000000,0.000020528000000,0.000061600000000,0.000207377000000,0.000045402000000,0.000194735000000,0.000083723000000,0.000064760000000,0.000683822000000,0.000182884000000,0.000555426000000 +0.000067921000000,0.000033945000000,0.000020133500000,0.000070686000000,0.000048562000000,0.000066736000000,0.000055673000000,0.000022108000000,0.000116118000000,0.000156020000000,0.000043821000000,0.000175773000000,0.000062785000000,0.000064760000000,0.000630488000000,0.000179328000000,0.000521846000000 +0.000044612000000,0.000033945000000,0.000019935500000,0.000069106000000,0.000033550000000,0.000064760000000,0.000057254000000,0.000021911000000,0.000061995000000,0.000173797000000,0.000043822000000,0.000152859000000,0.000066735000000,0.000063180000000,0.000662488000000,0.000184068000000,0.000485105000000 +0.000031970000000,0.000034735000000,0.000018552500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056858000000,0.000020726000000,0.000061599000000,0.000173797000000,0.000044217000000,0.000178932000000,0.000060415000000,0.000103871000000,0.000673944000000,0.000186439000000,0.000868710000000 +0.000029995000000,0.000033946000000,0.000018750500000,0.000069896000000,0.000033550000000,0.000063970000000,0.000057253000000,0.000020528000000,0.000063970000000,0.000224365000000,0.000043427000000,0.000212513000000,0.000062785000000,0.000065155000000,0.000609155000000,0.000180118000000,0.000518686000000 +0.000029995000000,0.000033945000000,0.000020725500000,0.000069106000000,0.000033946000000,0.000066735000000,0.000056069000000,0.000020923000000,0.000062390000000,0.000190785000000,0.000043427000000,0.000157994000000,0.000062390000000,0.000063970000000,0.001125500000000,0.000184859000000,0.000489451000000 +0.000029994000000,0.000048168000000,0.000019935500000,0.000067920000000,0.000033945000000,0.000063575000000,0.000056859000000,0.000020331000000,0.000064365000000,0.000173007000000,0.000043032000000,0.000177747000000,0.000060415000000,0.000063970000000,0.000670785000000,0.000185649000000,0.000519081000000 +0.000030785000000,0.000034340000000,0.000019343000000,0.000067525000000,0.000033550000000,0.000063575000000,0.000056859000000,0.000022108500000,0.000060810000000,0.000156414000000,0.000045007000000,0.000178143000000,0.000061599000000,0.000078982000000,0.000628118000000,0.000188810000000,0.000517500000000 +0.000030390000000,0.000033946000000,0.000018948000000,0.000068316000000,0.000036711000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000095179000000,0.000204216000000,0.000043427000000,0.000191970000000,0.000061204000000,0.000065156000000,0.000595723000000,0.000273748000000,0.000484711000000 +0.000030785000000,0.000033945000000,0.000018750500000,0.000102291000000,0.000033945000000,0.000065945000000,0.000055674000000,0.000021911000000,0.000061995000000,0.000172611000000,0.000045797000000,0.000180513000000,0.000060414000000,0.000064760000000,0.000594143000000,0.000182094000000,0.000554241000000 +0.000029995000000,0.000033550000000,0.000020133000000,0.000070291000000,0.000033945000000,0.000065945000000,0.000056859000000,0.000020331000000,0.000065155000000,0.000174587000000,0.000044612000000,0.000152859000000,0.000063969000000,0.000062785000000,0.000664464000000,0.000214489000000,0.000485106000000 +0.000030390000000,0.000033155000000,0.000019935500000,0.000068711000000,0.000033155000000,0.000066341000000,0.000056859000000,0.000020330500000,0.000063180000000,0.000194340000000,0.000043822000000,0.000174982000000,0.000061599000000,0.000079377000000,0.000666834000000,0.000186834000000,0.000551080000000 +0.000031575000000,0.000033945000000,0.000019343000000,0.000068711000000,0.000034341000000,0.000063970000000,0.000056464000000,0.000030800000000,0.000062390000000,0.000157995000000,0.000043427000000,0.000234242000000,0.000062389000000,0.000064365000000,0.000632069000000,0.000185254000000,0.000582686000000 +0.000030390000000,0.000033946000000,0.000019343000000,0.000069106000000,0.000033550000000,0.000083723000000,0.000055674000000,0.000020725500000,0.000065155000000,0.000159575000000,0.000044217000000,0.000157995000000,0.000061599000000,0.000061995000000,0.000677105000000,0.000214093000000,0.000487475000000 +0.000031180000000,0.000033550000000,0.000019738500000,0.000068710000000,0.000033551000000,0.000066736000000,0.000056464000000,0.000020528000000,0.000063970000000,0.000160365000000,0.000043427000000,0.000179723000000,0.000060415000000,0.000062784000000,0.000669204000000,0.000182489000000,0.000520661000000 +0.000031180000000,0.000067130000000,0.000019540500000,0.000067920000000,0.000033550000000,0.000064365000000,0.000089649000000,0.000020330500000,0.000062390000000,0.000195525000000,0.000074241000000,0.000176562000000,0.000060019000000,0.000061994000000,0.000669204000000,0.000179723000000,0.000521846000000 +0.000029995000000,0.000067130000000,0.000018948000000,0.000067921000000,0.000033155000000,0.000065945000000,0.000056463000000,0.000021911000000,0.000178538000000,0.000175378000000,0.000043427000000,0.000206983000000,0.000062785000000,0.000062390000000,0.000633649000000,0.000200266000000,0.000485896000000 +0.000030784000000,0.000034340000000,0.000019738000000,0.000136266000000,0.000033550000000,0.000064761000000,0.000055673000000,0.000021911000000,0.000079772000000,0.000180118000000,0.000043427000000,0.000168266000000,0.000061994000000,0.000063575000000,0.000668414000000,0.000179723000000,0.000520661000000 +0.000031970000000,0.000033946000000,0.000019738000000,0.000073847000000,0.000035525000000,0.000065945000000,0.000056859000000,0.000020923500000,0.000061995000000,0.000162340000000,0.000043821000000,0.000177353000000,0.000061995000000,0.000062785000000,0.000669994000000,0.000183279000000,0.000484316000000 +0.000031970000000,0.000033946000000,0.000019540500000,0.000073056000000,0.000034736000000,0.000065550000000,0.000056858000000,0.000021713000000,0.000064760000000,0.000186439000000,0.000044217000000,0.000161945000000,0.000062785000000,0.000077007000000,0.000669994000000,0.000184859000000,0.000555031000000 +0.000031575000000,0.000033946000000,0.000020133500000,0.000074242000000,0.000033550000000,0.000063970000000,0.000059624000000,0.000022108500000,0.000064365000000,0.000174192000000,0.000044217000000,0.000173006000000,0.000061600000000,0.000064365000000,0.000632463000000,0.000259525000000,0.000518291000000 +0.000029995000000,0.000033945000000,0.000019540500000,0.000073056000000,0.000033551000000,0.000112563000000,0.000056069000000,0.000022108500000,0.000061995000000,0.000174192000000,0.000043821000000,0.000176167000000,0.000061600000000,0.000064760000000,0.000750587000000,0.000180118000000,0.000487871000000 +0.000030785000000,0.000033550000000,0.000019343500000,0.000123625000000,0.000033945000000,0.000065945000000,0.000056859000000,0.000045812000000,0.000064365000000,0.000173006000000,0.000043427000000,0.000167476000000,0.000061600000000,0.000062390000000,0.000635229000000,0.000249648000000,0.000519475000000 +0.000030390000000,0.000033156000000,0.000020133000000,0.000208958000000,0.000032760000000,0.000064365000000,0.000057254000000,0.000021911000000,0.000064760000000,0.000190784000000,0.000043426000000,0.000161550000000,0.000060414000000,0.000063180000000,0.000653797000000,0.000180513000000,0.000483920000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000208563000000,0.000032760000000,0.000063969000000,0.000056859000000,0.000022701000000,0.000064760000000,0.000156019000000,0.000043822000000,0.000248068000000,0.000061994000000,0.000062390000000,0.000820908000000,0.000189599000000,0.000482735000000 +0.000030390000000,0.000033551000000,0.000019738000000,0.000124810000000,0.000034340000000,0.000066340000000,0.000055674000000,0.000022108500000,0.000064761000000,0.000174587000000,0.000066340000000,0.000173797000000,0.000060809000000,0.000063970000000,0.000636019000000,0.000214883000000,0.000518291000000 +0.000031970000000,0.000035130000000,0.000026059000000,0.000099920000000,0.000034735000000,0.000110587000000,0.000057649000000,0.000023096000000,0.000063575000000,0.000159970000000,0.000047377000000,0.000160365000000,0.000062390000000,0.000082933000000,0.000632069000000,0.000181303000000,0.000485501000000 +0.000029994000000,0.000033550000000,0.000019343000000,0.000073452000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000021121000000,0.000061994000000,0.000214094000000,0.000043427000000,0.000198686000000,0.000061995000000,0.000064365000000,0.000636414000000,0.000184858000000,0.000562932000000 +0.000029995000000,0.000033155000000,0.000019738000000,0.000073057000000,0.000035130000000,0.000100315000000,0.000057254000000,0.000021713000000,0.000064365000000,0.000174192000000,0.000043427000000,0.000173402000000,0.000062785000000,0.000064760000000,0.000631278000000,0.000212513000000,0.000488266000000 +0.000029994000000,0.000033550000000,0.000018750500000,0.000074242000000,0.000033155000000,0.000065550000000,0.000055674000000,0.000020330500000,0.000095575000000,0.000173797000000,0.000058439000000,0.000175377000000,0.000060019000000,0.000064760000000,0.000632068000000,0.000185254000000,0.000487476000000 +0.000031179000000,0.000033551000000,0.000019540500000,0.000084118000000,0.000033550000000,0.000063970000000,0.000056858000000,0.000020330500000,0.000061600000000,0.000156020000000,0.000043822000000,0.000178142000000,0.000061205000000,0.000062785000000,0.000633253000000,0.000185254000000,0.000520661000000 +0.000030390000000,0.000033945000000,0.000020330500000,0.000097945000000,0.000088859000000,0.000064365000000,0.000090439000000,0.000027639000000,0.000064760000000,0.000208562000000,0.000043822000000,0.000205007000000,0.000062785000000,0.000063575000000,0.000630883000000,0.000214883000000,0.000487081000000 +0.000030785000000,0.000033155000000,0.000018948000000,0.000068316000000,0.000033945000000,0.000065550000000,0.000056464000000,0.000020330500000,0.000061994000000,0.000174192000000,0.000063575000000,0.000159575000000,0.000062785000000,0.000063180000000,0.000632463000000,0.000180908000000,0.000520661000000 +0.000030389000000,0.000033945000000,0.000018750500000,0.000069896000000,0.000033155000000,0.000063575000000,0.000055673000000,0.000021713000000,0.000062390000000,0.000156414000000,0.000043822000000,0.000175772000000,0.000063180000000,0.000065945000000,0.000672760000000,0.000180908000000,0.000735574000000 +0.000031575000000,0.000035526000000,0.000019343000000,0.000130735000000,0.000033155000000,0.000063970000000,0.000056463000000,0.000020528000000,0.000063970000000,0.000174192000000,0.000043427000000,0.000152464000000,0.000061995000000,0.000096760000000,0.000634043000000,0.000251229000000,0.000484710000000 +0.000033550000000,0.000033155000000,0.000020725500000,0.000122834000000,0.000035131000000,0.000063180000000,0.000056463000000,0.000020330500000,0.000064365000000,0.000242142000000,0.000043821000000,0.000212513000000,0.000061600000000,0.000064760000000,0.000630884000000,0.000180909000000,0.000648266000000 +0.000029994000000,0.000033946000000,0.000019935500000,0.000073056000000,0.000034735000000,0.000097946000000,0.000056463000000,0.000020726000000,0.000064365000000,0.000156414000000,0.000043427000000,0.000178933000000,0.000062390000000,0.000065945000000,0.000632858000000,0.000186044000000,0.000518290000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000087673000000,0.000033155000000,0.000065945000000,0.000056069000000,0.000022108500000,0.000061994000000,0.000175377000000,0.000043427000000,0.000158785000000,0.000060019000000,0.000063574000000,0.000664859000000,0.000232661000000,0.000487476000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000195920000000,0.000033945000000,0.000064365000000,0.000057254000000,0.000020528500000,0.000061599000000,0.000173402000000,0.000043426000000,0.000177748000000,0.000060414000000,0.000062390000000,0.000659723000000,0.000184069000000,0.000519476000000 +0.000030390000000,0.000033946000000,0.000019738000000,0.000068316000000,0.000034735000000,0.000063970000000,0.000056069000000,0.000022701000000,0.000064365000000,0.000190785000000,0.000043822000000,0.000223970000000,0.000060415000000,0.000065550000000,0.000646686000000,0.000182488000000,0.000484316000000 +0.000030390000000,0.000033550000000,0.000020133000000,0.000068711000000,0.000034736000000,0.000065155000000,0.000056464000000,0.000020725500000,0.000061995000000,0.000174192000000,0.000044217000000,0.000158390000000,0.000062390000000,0.000065155000000,0.000632068000000,0.000233846000000,0.000483525000000 +0.000031179000000,0.000033945000000,0.000018948000000,0.000084118000000,0.000054093000000,0.000064365000000,0.000056464000000,0.000020923000000,0.000063574000000,0.000173007000000,0.000045402000000,0.000178143000000,0.000214093000000,0.000062785000000,0.000630093000000,0.000184859000000,0.000519081000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000069896000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000061599000000,0.000175772000000,0.000058044000000,0.000152859000000,0.000062785000000,0.000096760000000,0.000595722000000,0.000190784000000,0.000485105000000 +0.000030390000000,0.000033945000000,0.000019540500000,0.000069106000000,0.000034735000000,0.000065945000000,0.000056464000000,0.000023491000000,0.000064760000000,0.000280859000000,0.000043427000000,0.000207377000000,0.000061995000000,0.000062389000000,0.000628513000000,0.000217254000000,0.000520661000000 +0.000029994000000,0.000036711000000,0.000019935500000,0.000070686000000,0.000033155000000,0.000080168000000,0.000056464000000,0.000022306000000,0.000081353000000,0.000158784000000,0.000043031000000,0.000175377000000,0.000061994000000,0.000065550000000,0.000664464000000,0.000183279000000,0.000505649000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000069105000000,0.000034340000000,0.000065551000000,0.000056069000000,0.000020528000000,0.000063970000000,0.000161155000000,0.000043822000000,0.000158390000000,0.000066340000000,0.000064760000000,0.000663674000000,0.000180513000000,0.000487476000000 +0.000030390000000,0.000033945000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000064365000000,0.000194341000000,0.000043426000000,0.000160365000000,0.000060020000000,0.000064761000000,0.000596513000000,0.000215278000000,0.000520265000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000067921000000,0.000033946000000,0.000065945000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000175377000000,0.000043822000000,0.000208957000000,0.000062785000000,0.000064365000000,0.000629303000000,0.000201847000000,0.000487871000000 +0.000030390000000,0.000033551000000,0.000019738000000,0.000108217000000,0.000033155000000,0.000065945000000,0.000149698000000,0.000022108500000,0.000063179000000,0.000176563000000,0.000044217000000,0.000173797000000,0.000063575000000,0.000062785000000,0.000632068000000,0.000182884000000,0.000520266000000 +0.000030389000000,0.000033155000000,0.000020528000000,0.000069106000000,0.000033550000000,0.000063969000000,0.000141797000000,0.000020528000000,0.000061995000000,0.000180118000000,0.000044217000000,0.000167081000000,0.000060414000000,0.000063970000000,0.000594932000000,0.000216463000000,0.000506834000000 +0.000031179000000,0.000033155000000,0.000019935500000,0.000069500000000,0.000033155000000,0.000063970000000,0.000073451000000,0.000037318500000,0.000061994000000,0.000196315000000,0.000044217000000,0.000176563000000,0.000062389000000,0.000099131000000,0.000631278000000,0.000181303000000,0.000484711000000 +0.000031575000000,0.000033550000000,0.000019935500000,0.000068316000000,0.000034736000000,0.000063970000000,0.000056464000000,0.000021713500000,0.000061995000000,0.000152464000000,0.000044217000000,0.000176958000000,0.000062389000000,0.000064365000000,0.000782587000000,0.000181698000000,0.000574389000000 +0.000031575000000,0.000033156000000,0.000019145500000,0.000069106000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000020923000000,0.000077797000000,0.000173402000000,0.000043427000000,0.000159575000000,0.000062390000000,0.000065155000000,0.000630883000000,0.000219624000000,0.000483920000000 +0.000029995000000,0.000067130000000,0.000019738000000,0.000068711000000,0.000033551000000,0.000063970000000,0.000056069000000,0.000021516000000,0.000063575000000,0.000173797000000,0.000043821000000,0.000174982000000,0.000060020000000,0.000061994000000,0.000597698000000,0.000184464000000,0.000522241000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000068315000000,0.000035130000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000064365000000,0.000206982000000,0.000043427000000,0.000188019000000,0.000061995000000,0.000063970000000,0.000638390000000,0.000181699000000,0.000571623000000 +0.000030785000000,0.000033550000000,0.000020133000000,0.000067920000000,0.000033551000000,0.000065550000000,0.000057649000000,0.000022503500000,0.000064365000000,0.000156415000000,0.000043426000000,0.000162340000000,0.000062784000000,0.000062389000000,0.000629698000000,0.000220414000000,0.000483130000000 +0.000030390000000,0.000033550000000,0.000019935500000,0.000162340000000,0.000032760000000,0.000063970000000,0.000056464000000,0.000022306000000,0.000064760000000,0.000195920000000,0.000043822000000,0.000158390000000,0.000087278000000,0.000063574000000,0.000595328000000,0.000190784000000,0.000517895000000 +0.000030784000000,0.000033945000000,0.000019145500000,0.000194340000000,0.000033550000000,0.000065550000000,0.000056069000000,0.000022306000000,0.000064365000000,0.000175772000000,0.000044217000000,0.000174587000000,0.000062785000000,0.000062784000000,0.000666834000000,0.000181303000000,0.000484711000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000073056000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000064365000000,0.000244118000000,0.000044217000000,0.000180513000000,0.000061600000000,0.000064365000000,0.000628117000000,0.000215673000000,0.000515131000000 +0.000030784000000,0.000033155000000,0.000020528500000,0.000069106000000,0.000034341000000,0.000063970000000,0.000056464000000,0.000022306000000,0.000085303000000,0.000173402000000,0.000043821000000,0.000164710000000,0.000061600000000,0.000063180000000,0.000633253000000,0.000182883000000,0.000521451000000 +0.000030390000000,0.000033155000000,0.000018947500000,0.000069105000000,0.000033551000000,0.000065946000000,0.000056464000000,0.000023491500000,0.000063575000000,0.000175377000000,0.000045007000000,0.000171426000000,0.000062785000000,0.000065551000000,0.000594537000000,0.000186439000000,0.000487870000000 +0.000030785000000,0.000034341000000,0.000019738000000,0.000129550000000,0.000033155000000,0.000063970000000,0.000055674000000,0.000023688500000,0.000063970000000,0.000173797000000,0.000078983000000,0.000175773000000,0.000062784000000,0.000063575000000,0.000629303000000,0.000216859000000,0.000538044000000 +0.000031575000000,0.000033945000000,0.000018750500000,0.000067921000000,0.000053698000000,0.000064760000000,0.000126389000000,0.000020923000000,0.000061995000000,0.000156809000000,0.000043822000000,0.000269797000000,0.000062389000000,0.000061995000000,0.000628907000000,0.000180514000000,0.000506438000000 +0.000029995000000,0.000048958000000,0.000019738000000,0.000068315000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000021713000000,0.000062390000000,0.000180118000000,0.000045007000000,0.000187229000000,0.000060019000000,0.000063180000000,0.000594142000000,0.000185254000000,0.000487871000000 +0.000029995000000,0.000034340000000,0.000018948000000,0.000068711000000,0.000036316000000,0.000063970000000,0.000056464000000,0.000022503500000,0.000061995000000,0.000173797000000,0.000043426000000,0.000159970000000,0.000064760000000,0.000063180000000,0.000630093000000,0.000184463000000,0.000520661000000 +0.000030784000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033550000000,0.000063180000000,0.000056069000000,0.000022701000000,0.000064760000000,0.000156414000000,0.000043427000000,0.000193550000000,0.000060414000000,0.000064365000000,0.000666043000000,0.000186044000000,0.000485105000000 +0.000031180000000,0.000033156000000,0.000020330500000,0.000069501000000,0.000033550000000,0.000065946000000,0.000056859000000,0.000020330500000,0.000063180000000,0.000174192000000,0.000043426000000,0.000167476000000,0.000062785000000,0.000065550000000,0.000594537000000,0.000180909000000,0.000517896000000 +0.000031970000000,0.000033155000000,0.000027046500000,0.000068711000000,0.000032365000000,0.000132316000000,0.000056859000000,0.000022305500000,0.000095574000000,0.000173402000000,0.000043822000000,0.000178538000000,0.000062390000000,0.000063970000000,0.000628118000000,0.000180513000000,0.000540019000000 +0.000029995000000,0.000034735000000,0.000019738000000,0.000083328000000,0.000033156000000,0.000065550000000,0.000057649000000,0.000021120500000,0.000061995000000,0.000156415000000,0.000044217000000,0.000290735000000,0.000060414000000,0.000065155000000,0.000677105000000,0.000192760000000,0.000635229000000 +0.000051328000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000063970000000,0.000056069000000,0.000029022000000,0.000061995000000,0.000209352000000,0.000043427000000,0.000228316000000,0.000061599000000,0.000065550000000,0.000628118000000,0.000182883000000,0.000487870000000 +0.000030390000000,0.000036316000000,0.000019935500000,0.000068316000000,0.000032760000000,0.000065550000000,0.000090834000000,0.000021910500000,0.000064760000000,0.000173797000000,0.000043427000000,0.000177352000000,0.000062389000000,0.000065155000000,0.000598093000000,0.000189204000000,0.000536069000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000077402000000,0.000033551000000,0.000063575000000,0.000057254000000,0.000020923000000,0.000064365000000,0.000156414000000,0.000043427000000,0.000177352000000,0.000061599000000,0.000063180000000,0.000628512000000,0.000182883000000,0.000483525000000 +0.000034341000000,0.000033156000000,0.000018948000000,0.000073452000000,0.000033550000000,0.000063575000000,0.000059229000000,0.000022306000000,0.000062389000000,0.000174192000000,0.000045402000000,0.000157599000000,0.000060020000000,0.000065945000000,0.000643920000000,0.000183673000000,0.000483920000000 +0.000030390000000,0.000109007000000,0.000020133000000,0.000073452000000,0.000033945000000,0.000065550000000,0.000055674000000,0.000020330500000,0.000061995000000,0.000247278000000,0.000043427000000,0.000212908000000,0.000060415000000,0.000063970000000,0.000596512000000,0.000182884000000,0.000553451000000 +0.000030390000000,0.000102291000000,0.000020330500000,0.000073451000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000023491000000,0.000065945000000,0.000174982000000,0.000044612000000,0.000152859000000,0.000062390000000,0.000063575000000,0.000628908000000,0.000262685000000,0.000485501000000 +0.000030784000000,0.000101896000000,0.000020133000000,0.000072661000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000022306000000,0.000090044000000,0.000173402000000,0.000043427000000,0.000174192000000,0.000061599000000,0.000064760000000,0.000639180000000,0.000180513000000,0.000579130000000 +0.000029995000000,0.000035526000000,0.000019738000000,0.000073056000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000022305500000,0.000063574000000,0.000157600000000,0.000045402000000,0.000166290000000,0.000062389000000,0.000064365000000,0.000617056000000,0.000263081000000,0.000557007000000 +0.000031180000000,0.000033155000000,0.000019738500000,0.000074242000000,0.000033155000000,0.000064365000000,0.000056069000000,0.000020330500000,0.000063575000000,0.000193945000000,0.000043821000000,0.000242143000000,0.000062389000000,0.000064365000000,0.000615476000000,0.000185254000000,0.000486686000000 +0.000030785000000,0.000033550000000,0.000019738000000,0.000072267000000,0.000033550000000,0.000066736000000,0.000162340000000,0.000031985000000,0.000061995000000,0.000159970000000,0.000043822000000,0.000159575000000,0.000061599000000,0.000064365000000,0.000628907000000,0.000188019000000,0.000519871000000 +0.000030390000000,0.000054884000000,0.000018948000000,0.000072661000000,0.000034735000000,0.000063970000000,0.000070686000000,0.000022108500000,0.000062390000000,0.000176167000000,0.000043822000000,0.000177352000000,0.000061995000000,0.000063970000000,0.000613895000000,0.000287180000000,0.000487081000000 +0.000032365000000,0.000033155000000,0.000020133000000,0.000072266000000,0.000033155000000,0.000066340000000,0.000056859000000,0.000022108500000,0.000097155000000,0.000175377000000,0.000086093000000,0.000173797000000,0.000060019000000,0.000063180000000,0.000636414000000,0.000180118000000,0.000967475000000 +0.000030784000000,0.000033945000000,0.000020133000000,0.000072661000000,0.000034341000000,0.000066340000000,0.000055278000000,0.000021120500000,0.000061600000000,0.000214093000000,0.000043822000000,0.000168661000000,0.000062390000000,0.000084118000000,0.000628117000000,0.000183673000000,0.000484710000000 +0.000031970000000,0.000033551000000,0.000020330500000,0.000073847000000,0.000033945000000,0.000065156000000,0.000092019000000,0.000020726000000,0.000065945000000,0.000162341000000,0.000043821000000,0.000176562000000,0.000061599000000,0.000065945000000,0.000678291000000,0.000182093000000,0.000519476000000 +0.000031574000000,0.000033551000000,0.000019540500000,0.000073452000000,0.000052908000000,0.000065945000000,0.000070686000000,0.000020528500000,0.000061995000000,0.000152464000000,0.000045402000000,0.000162340000000,0.000062390000000,0.000063180000000,0.000595723000000,0.000180513000000,0.000486291000000 +0.000031575000000,0.000033550000000,0.000018948000000,0.000072662000000,0.000033155000000,0.000065550000000,0.000057649000000,0.000021911000000,0.000063970000000,0.000174193000000,0.000044217000000,0.000159969000000,0.000065945000000,0.000064760000000,0.000609550000000,0.000182488000000,0.000517895000000 +0.000029995000000,0.000033550000000,0.000020133000000,0.000073452000000,0.000033945000000,0.000066340000000,0.000055674000000,0.000022898500000,0.000061995000000,0.000214488000000,0.000045402000000,0.000176167000000,0.000062785000000,0.000065945000000,0.000681056000000,0.000268217000000,0.000506834000000 +0.000030785000000,0.000033155000000,0.000019540500000,0.000071872000000,0.000035130000000,0.000065945000000,0.000056464000000,0.000020528500000,0.000061995000000,0.000172611000000,0.000044217000000,0.000167476000000,0.000060415000000,0.000065155000000,0.000630883000000,0.000180513000000,0.000485105000000 +0.000030785000000,0.000033550000000,0.000030207000000,0.000072266000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000021713500000,0.000064760000000,0.000156414000000,0.000043427000000,0.000161550000000,0.000062390000000,0.000064760000000,0.000596513000000,0.000233847000000,0.000519081000000 +0.000029600000000,0.000033155000000,0.000019540500000,0.000072661000000,0.000033945000000,0.000063574000000,0.000056464000000,0.000027244000000,0.000064761000000,0.000156020000000,0.000043426000000,0.000205401000000,0.000061599000000,0.000062390000000,0.000664464000000,0.000193551000000,0.000483525000000 +0.000030389000000,0.000068316000000,0.000019935500000,0.000072661000000,0.000033945000000,0.000064760000000,0.000056068000000,0.000020133000000,0.000099921000000,0.000435327000000,0.000064365000000,0.000174587000000,0.000064365000000,0.000120069000000,0.000667229000000,0.000184859000000,0.000518686000000 +0.000031180000000,0.000035526000000,0.000019343000000,0.000073452000000,0.000033550000000,0.000099525000000,0.000056463000000,0.000021713500000,0.000061600000000,0.000173797000000,0.000043031000000,0.000160365000000,0.000094785000000,0.000080958000000,0.000594143000000,0.000184069000000,0.000505649000000 +0.000029995000000,0.000036316000000,0.000020330500000,0.000073057000000,0.000034341000000,0.000064365000000,0.000056464000000,0.000020726000000,0.000061995000000,0.000172612000000,0.000045402000000,0.000165895000000,0.000077006000000,0.000077402000000,0.000968660000000,0.000181303000000,0.000486686000000 +0.000029995000000,0.000035921000000,0.000019540500000,0.000073057000000,0.000035525000000,0.000065550000000,0.000056859000000,0.000022503500000,0.000063179000000,0.000188415000000,0.000043427000000,0.000244513000000,0.000062785000000,0.000064760000000,0.000610735000000,0.000188809000000,0.000521846000000 +0.000030389000000,0.000068711000000,0.000019738000000,0.000073846000000,0.000033156000000,0.000066340000000,0.000055673000000,0.000020726000000,0.000061995000000,0.000173797000000,0.000043822000000,0.000175772000000,0.000060019000000,0.000064365000000,0.000630488000000,0.000181303000000,0.000486686000000 +0.000032760000000,0.000033550000000,0.000019738000000,0.000072661000000,0.000033550000000,0.000063970000000,0.000071081000000,0.000022503500000,0.000063970000000,0.000155624000000,0.000044216000000,0.000179723000000,0.000060414000000,0.000064760000000,0.000630093000000,0.000180909000000,0.000533302000000 +0.000030390000000,0.000034341000000,0.000019343000000,0.000072266000000,0.000033155000000,0.000063970000000,0.000056463000000,0.000020528000000,0.000063574000000,0.000229105000000,0.000044217000000,0.000174587000000,0.000061600000000,0.000062390000000,0.000768364000000,0.000197501000000,0.000543180000000 +0.000030390000000,0.000033945000000,0.000019145500000,0.000073846000000,0.000033550000000,0.000064365000000,0.000056858000000,0.000023491000000,0.000061995000000,0.000174192000000,0.000043822000000,0.000193946000000,0.000060019000000,0.000096365000000,0.000637204000000,0.000195131000000,0.000538834000000 +0.000029995000000,0.000033945000000,0.000020133000000,0.000073056000000,0.000033945000000,0.000064365000000,0.000056068000000,0.000041269000000,0.000075822000000,0.000156809000000,0.000044612000000,0.000174193000000,0.000061994000000,0.000064760000000,0.000630883000000,0.000186439000000,0.000520266000000 +0.000031180000000,0.000034735000000,0.000019738000000,0.000073056000000,0.000033550000000,0.000132316000000,0.000056859000000,0.000020330500000,0.000065155000000,0.000174192000000,0.000045007000000,0.000152068000000,0.000060414000000,0.000063970000000,0.000594537000000,0.000180908000000,0.000484711000000 +0.000031575000000,0.000033156000000,0.000019738000000,0.000073452000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000021120500000,0.000064760000000,0.000208167000000,0.000046982000000,0.000179723000000,0.000060810000000,0.000064761000000,0.000594933000000,0.000183674000000,0.000485896000000 +0.000031970000000,0.000033551000000,0.000020133000000,0.000073451000000,0.000033550000000,0.000065155000000,0.000056859000000,0.000021911000000,0.000061995000000,0.000156019000000,0.000043427000000,0.000262291000000,0.000060414000000,0.000064760000000,0.000644315000000,0.000199081000000,0.000518686000000 +0.000029995000000,0.000033155000000,0.000019936000000,0.000073452000000,0.000033946000000,0.000065550000000,0.000055674000000,0.000020725500000,0.000064760000000,0.000174983000000,0.000044612000000,0.000157994000000,0.000060414000000,0.000063970000000,0.000628118000000,0.000197105000000,0.000487081000000 +0.000030785000000,0.000033946000000,0.000019145500000,0.000071872000000,0.000032760000000,0.000063575000000,0.000077007000000,0.000021515500000,0.000063970000000,0.000173402000000,0.000044217000000,0.000176958000000,0.000062389000000,0.000064760000000,0.000598488000000,0.000250439000000,0.000519080000000 +0.000032365000000,0.000033551000000,0.000020528500000,0.000072266000000,0.000033550000000,0.000066341000000,0.000056464000000,0.000020726000000,0.000062390000000,0.000240958000000,0.000044612000000,0.000177747000000,0.000061599000000,0.000062785000000,0.000628117000000,0.000180514000000,0.000484315000000 +0.000033945000000,0.000036710000000,0.000019738500000,0.000073451000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000021713500000,0.000093205000000,0.000174587000000,0.000043426000000,0.000157994000000,0.000061994000000,0.000098340000000,0.000664463000000,0.000186834000000,0.000483526000000 +0.000030389000000,0.000033946000000,0.000020133500000,0.000073846000000,0.000034735000000,0.000063970000000,0.000056464000000,0.000022306000000,0.000063969000000,0.000172612000000,0.000043822000000,0.000178143000000,0.000062785000000,0.000063970000000,0.000594932000000,0.000214884000000,0.000517895000000 +0.000029995000000,0.000033945000000,0.000020133500000,0.000073451000000,0.000033946000000,0.000066341000000,0.000056859000000,0.000020331000000,0.000062390000000,0.000239377000000,0.000043822000000,0.000153254000000,0.000060810000000,0.000063575000000,0.000629303000000,0.000187229000000,0.000484711000000 +0.000030785000000,0.000033155000000,0.000047589500000,0.000073451000000,0.000033155000000,0.000065155000000,0.000056859000000,0.000024281000000,0.000065945000000,0.000173402000000,0.000043032000000,0.000174587000000,0.000061994000000,0.000062784000000,0.000632463000000,0.000184464000000,0.000520661000000 +0.000030785000000,0.000034341000000,0.000019738500000,0.000073057000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000022503500000,0.000064760000000,0.000157599000000,0.000083328000000,0.000165896000000,0.000061205000000,0.000065155000000,0.000596512000000,0.000253599000000,0.000488661000000 +0.000029995000000,0.000032760000000,0.000019936000000,0.000073451000000,0.000032760000000,0.000065550000000,0.000055674000000,0.000022503500000,0.000064365000000,0.000160365000000,0.000044612000000,0.000157994000000,0.000061600000000,0.000063575000000,0.000595328000000,0.000182883000000,0.000486686000000 +0.000030390000000,0.000033551000000,0.000019540500000,0.000072266000000,0.000033551000000,0.000063575000000,0.000056463000000,0.000020331000000,0.000061600000000,0.000178142000000,0.000043427000000,0.000160365000000,0.000062390000000,0.000099921000000,0.000629698000000,0.000180118000000,0.000533303000000 +0.000029995000000,0.000033550000000,0.000019541000000,0.000072266000000,0.000033945000000,0.000063970000000,0.000071871000000,0.000020528000000,0.000097945000000,0.000175377000000,0.000043427000000,0.000210142000000,0.000061994000000,0.000084118000000,0.000640759000000,0.000290736000000,0.000487476000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000072661000000,0.000033550000000,0.000066340000000,0.000056464000000,0.000020726000000,0.000064365000000,0.000175772000000,0.000043032000000,0.000174192000000,0.000060414000000,0.000077007000000,0.000598093000000,0.000250044000000,0.000649451000000 +0.000032760000000,0.000033551000000,0.000020331000000,0.000072661000000,0.000033946000000,0.000097550000000,0.000056069000000,0.000022306000000,0.000061994000000,0.000179723000000,0.000043426000000,0.000167476000000,0.000063180000000,0.000063575000000,0.000628117000000,0.000213698000000,0.000555427000000 +0.000031970000000,0.000034340000000,0.000019935500000,0.000073846000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000020726000000,0.000062390000000,0.000196315000000,0.000043821000000,0.000178143000000,0.000061995000000,0.000065156000000,0.000646291000000,0.000181698000000,0.000484710000000 +0.000031970000000,0.000033946000000,0.000018948000000,0.000073451000000,0.000046982000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000061599000000,0.000152464000000,0.000043427000000,0.000230291000000,0.000060019000000,0.000065155000000,0.000595723000000,0.000186834000000,0.000519081000000 +0.000031180000000,0.000033551000000,0.000019540500000,0.000074241000000,0.000035920000000,0.000065550000000,0.000057649000000,0.000070701000000,0.000064365000000,0.000173797000000,0.000044612000000,0.000189205000000,0.000061994000000,0.000063180000000,0.000666438000000,0.000233451000000,0.000484315000000 +0.000030390000000,0.000034341000000,0.000018948000000,0.000073057000000,0.000033550000000,0.000063970000000,0.000056464000000,0.000022305500000,0.000061600000000,0.000174192000000,0.000043031000000,0.000175377000000,0.000061994000000,0.000064365000000,0.000638389000000,0.000182094000000,0.000487870000000 +0.000030390000000,0.000033945000000,0.000019145500000,0.000072267000000,0.000034735000000,0.000065945000000,0.000056859000000,0.000027047000000,0.000061204000000,0.000241353000000,0.000044216000000,0.000167871000000,0.000061995000000,0.000064760000000,0.000598488000000,0.000180908000000,0.000606389000000 +0.000030785000000,0.000033550000000,0.000018948000000,0.000072266000000,0.000033155000000,0.000063970000000,0.000090439000000,0.000021318000000,0.000064760000000,0.000156414000000,0.000043427000000,0.000231871000000,0.000060414000000,0.000103477000000,0.000666044000000,0.000219624000000,0.000483525000000 +0.000029995000000,0.000033155000000,0.000019540500000,0.000073451000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000020528500000,0.000061600000000,0.000155624000000,0.000043427000000,0.000158390000000,0.000062390000000,0.000063180000000,0.000628513000000,0.000179723000000,0.000517105000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000073847000000,0.000033155000000,0.000097550000000,0.000056069000000,0.000024676000000,0.000061995000000,0.000175772000000,0.000043822000000,0.000173797000000,0.000062390000000,0.000064365000000,0.000631674000000,0.000184069000000,0.000518686000000 +0.000032365000000,0.000033156000000,0.000020133000000,0.000073846000000,0.000032760000000,0.000063575000000,0.000056464000000,0.000021713500000,0.000064760000000,0.000193946000000,0.000043427000000,0.000160760000000,0.000061995000000,0.000064365000000,0.000595328000000,0.000253994000000,0.000485501000000 +0.000030785000000,0.000033551000000,0.000019540500000,0.000073056000000,0.000033551000000,0.000063575000000,0.000056464000000,0.000020923000000,0.000062389000000,0.000173402000000,0.000043822000000,0.000431772000000,0.000060020000000,0.000063574000000,0.000649055000000,0.000178933000000,0.000527772000000 +0.000030785000000,0.000034340000000,0.000018750500000,0.000073451000000,0.000033945000000,0.000065946000000,0.000056859000000,0.000045417000000,0.000061995000000,0.000174588000000,0.000043821000000,0.000205402000000,0.000062390000000,0.000065155000000,0.000640365000000,0.000182488000000,0.000487871000000 +0.000052118000000,0.000033550000000,0.000019738000000,0.000073451000000,0.000033946000000,0.000066340000000,0.000055674000000,0.000022306000000,0.000061600000000,0.000174192000000,0.000043427000000,0.000208563000000,0.000060019000000,0.000063180000000,0.000614291000000,0.000260315000000,0.000521451000000 +0.000031574000000,0.000033155000000,0.000019738000000,0.000102291000000,0.000034735000000,0.000066340000000,0.000057254000000,0.000022503500000,0.000099921000000,0.000260315000000,0.000043427000000,0.000179723000000,0.000060415000000,0.000063180000000,0.000594537000000,0.000187625000000,0.000520266000000 +0.000029995000000,0.000034340000000,0.000033565500000,0.000122834000000,0.000033550000000,0.000063970000000,0.000129945000000,0.000020528500000,0.000064365000000,0.000179723000000,0.000077402000000,0.000174587000000,0.000060810000000,0.000096365000000,0.000628117000000,0.000180514000000,0.000487871000000 +0.000030785000000,0.000034340000000,0.000027441500000,0.000249253000000,0.000033155000000,0.000084908000000,0.000056464000000,0.000020725500000,0.000065155000000,0.000174192000000,0.000045797000000,0.000159575000000,0.000060414000000,0.000063970000000,0.000630488000000,0.000216068000000,0.000650241000000 +0.000029994000000,0.000032761000000,0.000033565500000,0.000089254000000,0.000033946000000,0.000064760000000,0.000057649000000,0.000021515500000,0.000065155000000,0.000156809000000,0.000043822000000,0.000208562000000,0.000062390000000,0.000063180000000,0.000597302000000,0.000181303000000,0.000486291000000 +0.000031970000000,0.000033945000000,0.000019738000000,0.000073847000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000022701000000,0.000061600000000,0.000187229000000,0.000043822000000,0.000151673000000,0.000097550000000,0.000065155000000,0.000627723000000,0.000181304000000,0.000484711000000 +0.000031180000000,0.000033945000000,0.000019145500000,0.000073056000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020923500000,0.000062390000000,0.000174193000000,0.000043427000000,0.000180118000000,0.000060020000000,0.000061995000000,0.000628908000000,0.000224760000000,0.000554241000000 +0.000029995000000,0.000033156000000,0.000019145500000,0.000073451000000,0.000033946000000,0.000063970000000,0.000056859000000,0.000020726000000,0.000061600000000,0.000155624000000,0.000043426000000,0.000178142000000,0.000060019000000,0.000063180000000,0.000632858000000,0.000184464000000,0.000483921000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000073057000000,0.000033945000000,0.000064365000000,0.000055674000000,0.000020528000000,0.000061600000000,0.000209747000000,0.000044217000000,0.000207772000000,0.000061600000000,0.000065156000000,0.000716612000000,0.000181303000000,0.000521451000000 +0.000030390000000,0.000034340000000,0.000019935500000,0.000072267000000,0.000034340000000,0.000065550000000,0.000096760000000,0.000020726000000,0.000159970000000,0.000173007000000,0.000043032000000,0.000178143000000,0.000062390000000,0.000063180000000,0.000643920000000,0.000220414000000,0.000520661000000 +0.000030390000000,0.000033945000000,0.000019738000000,0.000072267000000,0.000035526000000,0.000063970000000,0.000056463000000,0.000021516000000,0.000064760000000,0.000156415000000,0.000045007000000,0.000179723000000,0.000061994000000,0.000114537000000,0.000631673000000,0.000205402000000,0.000483526000000 +0.000040661000000,0.000033550000000,0.000019540500000,0.000073057000000,0.000104266000000,0.000104267000000,0.000071476000000,0.000021121000000,0.000063970000000,0.000173797000000,0.000043822000000,0.000157204000000,0.000060414000000,0.000064760000000,0.000600464000000,0.000263080000000,0.000533698000000 +0.000031180000000,0.000052908000000,0.000018948000000,0.000073057000000,0.000055279000000,0.000086093000000,0.000056464000000,0.000021910500000,0.000062390000000,0.000206587000000,0.000080168000000,0.000192760000000,0.000062390000000,0.000063575000000,0.000646685000000,0.000196316000000,0.000485500000000 +0.000031180000000,0.000033551000000,0.000019738000000,0.000073846000000,0.000050143000000,0.000080563000000,0.000056859000000,0.000020528000000,0.000061995000000,0.000174982000000,0.000060810000000,0.000153649000000,0.000137847000000,0.000065155000000,0.000687377000000,0.000183279000000,0.000572414000000 +0.000030389000000,0.000033550000000,0.000019540500000,0.000073452000000,0.000033550000000,0.000065155000000,0.000056859000000,0.000020331000000,0.000061995000000,0.000173797000000,0.000046192000000,0.000174587000000,0.000143772000000,0.000062785000000,0.000597698000000,0.000179723000000,0.000556217000000 +0.000029995000000,0.000033945000000,0.000018947500000,0.000073056000000,0.000033945000000,0.000064760000000,0.000056464000000,0.000021910500000,0.000062390000000,0.000157205000000,0.000043427000000,0.000183279000000,0.000180513000000,0.000064365000000,0.000608760000000,0.000249253000000,0.000487871000000 +0.000030784000000,0.000052908000000,0.000019343000000,0.000073452000000,0.000033946000000,0.000065550000000,0.000055674000000,0.000020725500000,0.000061600000000,0.000331426000000,0.000043427000000,0.000157994000000,0.000196316000000,0.000063574000000,0.000679080000000,0.000187624000000,0.000555426000000 +0.000030390000000,0.000047772000000,0.000020133000000,0.000068316000000,0.000034735000000,0.000066340000000,0.000092414000000,0.000020331000000,0.000065155000000,0.000251230000000,0.000043822000000,0.000160365000000,0.000119673000000,0.000062784000000,0.000668414000000,0.000198686000000,0.000520266000000 +0.000031180000000,0.000033155000000,0.000019541000000,0.000068315000000,0.000032760000000,0.000099921000000,0.000056464000000,0.000036923000000,0.000061994000000,0.000175377000000,0.000046192000000,0.000176957000000,0.000080957000000,0.000063970000000,0.000596908000000,0.000180118000000,0.000487476000000 +0.000030389000000,0.000032761000000,0.000018948000000,0.000068711000000,0.000033551000000,0.000063575000000,0.000056859000000,0.000021713000000,0.000065550000000,0.000176563000000,0.000043822000000,0.000195525000000,0.000067921000000,0.000063575000000,0.000672365000000,0.000180909000000,0.000555822000000 +0.000029995000000,0.000033155000000,0.000019738000000,0.000069106000000,0.000046982000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000061600000000,0.000180118000000,0.000043822000000,0.000167871000000,0.000065945000000,0.000065155000000,0.000627327000000,0.000178932000000,0.000485105000000 +0.000031970000000,0.000033550000000,0.000019738000000,0.000069106000000,0.000035526000000,0.000065945000000,0.000056859000000,0.000020923500000,0.000063969000000,0.000162340000000,0.000043821000000,0.000177352000000,0.000069896000000,0.000063970000000,0.000594933000000,0.000199476000000,0.000534883000000 +0.000031575000000,0.000033155000000,0.000019540500000,0.000082933000000,0.000033945000000,0.000064365000000,0.000057649000000,0.000022503500000,0.000063575000000,0.000152069000000,0.000043427000000,0.000161551000000,0.000067921000000,0.000063970000000,0.000679871000000,0.000179328000000,0.000560957000000 +0.000031970000000,0.000033155000000,0.000019935500000,0.000069501000000,0.000033155000000,0.000063575000000,0.000057649000000,0.000021911000000,0.000081748000000,0.000173402000000,0.000043822000000,0.000194340000000,0.000068315000000,0.000064760000000,0.000628907000000,0.000182883000000,0.000484316000000 +0.000030785000000,0.000033550000000,0.000019540500000,0.000069106000000,0.000033551000000,0.000063575000000,0.000055674000000,0.000022306000000,0.000061995000000,0.000174192000000,0.000044217000000,0.000176167000000,0.000065945000000,0.000063575000000,0.000664464000000,0.000179328000000,0.000521451000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000067921000000,0.000033945000000,0.000064760000000,0.000076217000000,0.000022108500000,0.000061599000000,0.000173797000000,0.000043427000000,0.000167476000000,0.000068711000000,0.000096760000000,0.000599673000000,0.000182489000000,0.000485895000000 +0.000030785000000,0.000034340000000,0.000019935500000,0.000067525000000,0.000033155000000,0.000063575000000,0.000056859000000,0.000022306000000,0.000065155000000,0.000176167000000,0.000043426000000,0.000161550000000,0.000067526000000,0.000065155000000,0.000679871000000,0.000180908000000,0.000498142000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000023689000000,0.000061600000000,0.000156414000000,0.000043427000000,0.000211328000000,0.000065550000000,0.000065155000000,0.000679080000000,0.000212908000000,0.000517500000000 +0.000030390000000,0.000033551000000,0.000019540500000,0.000068711000000,0.000033550000000,0.000064365000000,0.000055674000000,0.000022503500000,0.000061994000000,0.000216859000000,0.000045797000000,0.000173797000000,0.000069501000000,0.000062390000000,0.000598093000000,0.000188020000000,0.000485106000000 +0.000031179000000,0.000033156000000,0.000018750000000,0.000069501000000,0.000034341000000,0.000065945000000,0.000056464000000,0.000022306000000,0.000064760000000,0.000174982000000,0.000045402000000,0.000159970000000,0.000069106000000,0.000065550000000,0.000594538000000,0.000184464000000,0.000945352000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000081748000000,0.000046982000000,0.000065550000000,0.000056859000000,0.000022306000000,0.000061995000000,0.000244908000000,0.000043822000000,0.000164710000000,0.000067920000000,0.000064761000000,0.000884117000000,0.000272957000000,0.000521056000000 +0.000029994000000,0.000034340000000,0.000019738000000,0.000069500000000,0.000033551000000,0.000063970000000,0.000056464000000,0.000021911000000,0.000097945000000,0.000174192000000,0.000043821000000,0.000220020000000,0.000067921000000,0.000062389000000,0.000628117000000,0.000199476000000,0.000521847000000 +0.000029995000000,0.000048562000000,0.000019540500000,0.000069106000000,0.000033550000000,0.000064760000000,0.000056068000000,0.000020331000000,0.000064365000000,0.000174587000000,0.000044217000000,0.000176957000000,0.000067920000000,0.000062389000000,0.000595722000000,0.000181303000000,0.000487476000000 +0.000031575000000,0.000033155000000,0.000019738000000,0.000068315000000,0.000033155000000,0.000063970000000,0.000056463000000,0.000020528000000,0.000064365000000,0.000156414000000,0.000044217000000,0.000178537000000,0.000068711000000,0.000131526000000,0.000595327000000,0.000195130000000,0.000520661000000 +0.000029995000000,0.000034735000000,0.000019738000000,0.000068316000000,0.000033946000000,0.000064365000000,0.000070290000000,0.000021911000000,0.000061204000000,0.000174982000000,0.000043821000000,0.000174587000000,0.000068315000000,0.000063970000000,0.000688562000000,0.000184068000000,0.000487475000000 +0.000030390000000,0.000034340000000,0.000019540500000,0.000069501000000,0.000032760000000,0.000065155000000,0.000056068000000,0.000020726000000,0.000063970000000,0.000174192000000,0.000043822000000,0.000194341000000,0.000068316000000,0.000065550000000,0.000630488000000,0.000181698000000,0.000618242000000 +0.000029994000000,0.000034340000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000065945000000,0.000056858000000,0.000022306000000,0.000061995000000,0.000156415000000,0.000043822000000,0.000174192000000,0.000080958000000,0.000065155000000,0.000596907000000,0.000240957000000,0.000535673000000 +0.000031575000000,0.000033945000000,0.000018947500000,0.000102686000000,0.000032760000000,0.000065946000000,0.000057649000000,0.000037121000000,0.000064760000000,0.000174587000000,0.000043821000000,0.000152463000000,0.000060020000000,0.000062390000000,0.000692513000000,0.000195921000000,0.000484711000000 +0.000031970000000,0.000034340000000,0.000019738000000,0.000069106000000,0.000034340000000,0.000063575000000,0.000056464000000,0.000020528000000,0.000061599000000,0.000173401000000,0.000043426000000,0.000179328000000,0.000062389000000,0.000063180000000,0.000664068000000,0.000181303000000,0.000535278000000 +0.000030785000000,0.000034735000000,0.000019738500000,0.000068710000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000061599000000,0.000156019000000,0.000043822000000,0.000219230000000,0.000060019000000,0.000062784000000,0.000615475000000,0.000216859000000,0.000485105000000 +0.000030389000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000065945000000,0.000056858000000,0.000022108500000,0.000061600000000,0.000175772000000,0.000043427000000,0.000157995000000,0.000061994000000,0.000065155000000,0.000594537000000,0.000208957000000,0.000488266000000 +0.000030785000000,0.000052908000000,0.000018947500000,0.000068710000000,0.000033155000000,0.000103081000000,0.000056068000000,0.000020528500000,0.000061994000000,0.000220415000000,0.000043426000000,0.000207773000000,0.000061995000000,0.000062390000000,0.000647871000000,0.000179328000000,0.000570043000000 +0.000029995000000,0.000033946000000,0.000019738000000,0.000068316000000,0.000034736000000,0.000064760000000,0.000112168000000,0.000022108500000,0.000062390000000,0.000156809000000,0.000043822000000,0.000180118000000,0.000061995000000,0.000062390000000,0.000645105000000,0.000194340000000,0.000485501000000 +0.000034340000000,0.000034340000000,0.000019738500000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000020923000000,0.000063575000000,0.000174192000000,0.000043821000000,0.000170636000000,0.000061995000000,0.000065550000000,0.000594537000000,0.000195526000000,0.000518686000000 +0.000031575000000,0.000033945000000,0.000019145500000,0.000069501000000,0.000032760000000,0.000064365000000,0.000055674000000,0.000020330500000,0.000063574000000,0.000172611000000,0.000045007000000,0.000180118000000,0.000069106000000,0.000065155000000,0.000679476000000,0.000186044000000,0.000519080000000 +0.000032761000000,0.000034341000000,0.000019540500000,0.000085698000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000061600000000,0.000208562000000,0.000044612000000,0.000154044000000,0.000060415000000,0.000062390000000,0.000663674000000,0.000470093000000,0.000486685000000 +0.000030389000000,0.000033946000000,0.000019738500000,0.000069106000000,0.000033945000000,0.000064365000000,0.000057254000000,0.000021516000000,0.000082538000000,0.000173797000000,0.000044612000000,0.000244513000000,0.000061205000000,0.000063180000000,0.000598093000000,0.000571624000000,0.000541599000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000029615000000,0.000061599000000,0.000157205000000,0.000043822000000,0.000182883000000,0.000060414000000,0.000065946000000,0.000595723000000,0.000209748000000,0.000488266000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069896000000,0.000033946000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000063970000000,0.000159970000000,0.000046193000000,0.000158389000000,0.000060414000000,0.000082142000000,0.000630092000000,0.000229106000000,0.000539228000000 +0.000030785000000,0.000033550000000,0.000018750500000,0.000067921000000,0.000035525000000,0.000097550000000,0.000056464000000,0.000020331000000,0.000061995000000,0.000229500000000,0.000043426000000,0.000160760000000,0.000060020000000,0.000063180000000,0.000628513000000,0.000188810000000,0.000521056000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000069501000000,0.000109007000000,0.000066736000000,0.000090834000000,0.000020330500000,0.000064760000000,0.000176167000000,0.000043822000000,0.000211723000000,0.000062389000000,0.000063180000000,0.000595328000000,0.000193550000000,0.000488266000000 +0.000030784000000,0.000033155000000,0.000020133000000,0.000068315000000,0.000033551000000,0.000065550000000,0.000056464000000,0.000022503500000,0.000065155000000,0.000176167000000,0.000043822000000,0.000173797000000,0.000060809000000,0.000063180000000,0.000986438000000,0.000192760000000,0.000521056000000 +0.000031575000000,0.000034340000000,0.000019738000000,0.000082537000000,0.000034340000000,0.000064365000000,0.000057649000000,0.000020528500000,0.000063180000000,0.000179723000000,0.000043426000000,0.000167476000000,0.000060810000000,0.000063180000000,0.000628512000000,0.000212513000000,0.000485500000000 +0.000031180000000,0.000033155000000,0.000020528000000,0.000069501000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000061600000000,0.000247674000000,0.000043427000000,0.000178143000000,0.000061994000000,0.000065945000000,0.000645105000000,0.000255575000000,0.000498537000000 +0.000031180000000,0.000034735000000,0.000019738500000,0.000069106000000,0.000033946000000,0.000067525000000,0.000056464000000,0.000021910500000,0.000115723000000,0.000152464000000,0.000043032000000,0.000176563000000,0.000061599000000,0.000064760000000,0.000596908000000,0.000192760000000,0.000680265000000 +0.000031970000000,0.000034736000000,0.000018948000000,0.000068710000000,0.000033550000000,0.000065945000000,0.000058044000000,0.000020923500000,0.000077007000000,0.000173797000000,0.000046192000000,0.000159575000000,0.000060019000000,0.000062785000000,0.000695673000000,0.000197896000000,0.000502883000000 +0.000029994000000,0.000033550000000,0.000019935500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056069000000,0.000038701000000,0.000063575000000,0.000174192000000,0.000043821000000,0.000176168000000,0.000061995000000,0.000103081000000,0.000631673000000,0.000233846000000,0.000488266000000 +0.000064365000000,0.000034735000000,0.000019145500000,0.000067921000000,0.000034736000000,0.000065551000000,0.000057649000000,0.000022306000000,0.000064365000000,0.000173402000000,0.000057254000000,0.000166686000000,0.000061995000000,0.000165895000000,0.000681451000000,0.000180513000000,0.000570043000000 +0.000032760000000,0.000033550000000,0.000020133000000,0.000067921000000,0.000033550000000,0.000064365000000,0.000057649000000,0.000021713000000,0.000063970000000,0.000156019000000,0.000043427000000,0.000272958000000,0.000060415000000,0.000082538000000,0.000595723000000,0.000184069000000,0.000483525000000 +0.000029995000000,0.000033155000000,0.000019738500000,0.000087673000000,0.000033155000000,0.000064760000000,0.000071476000000,0.000022503500000,0.000061995000000,0.000156020000000,0.000043031000000,0.000157994000000,0.000061599000000,0.000061995000000,0.000629698000000,0.000220020000000,0.000519081000000 +0.000030785000000,0.000033550000000,0.000018948000000,0.000070291000000,0.000048168000000,0.000063575000000,0.000055673000000,0.000022306000000,0.000065155000000,0.000175377000000,0.000043427000000,0.000174193000000,0.000061600000000,0.000063180000000,0.000667623000000,0.000180513000000,0.000540809000000 +0.000031180000000,0.000033946000000,0.000018750500000,0.000069501000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000022503500000,0.000095970000000,0.000159179000000,0.000043426000000,0.000194735000000,0.000063970000000,0.000064365000000,0.000613895000000,0.000194736000000,0.000485105000000 +0.000030389000000,0.000033156000000,0.000019738000000,0.000068711000000,0.000033156000000,0.000063969000000,0.000057253000000,0.000023096000000,0.000061994000000,0.000173797000000,0.000043822000000,0.000165500000000,0.000068316000000,0.000114933000000,0.000635624000000,0.000272167000000,0.000555426000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000068710000000,0.000033946000000,0.000063970000000,0.000056858000000,0.000022108500000,0.000064365000000,0.000173797000000,0.000045402000000,0.000173797000000,0.000065945000000,0.000065155000000,0.000628513000000,0.000198291000000,0.000487870000000 +0.000030390000000,0.000034735000000,0.000019738000000,0.000069105000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000022306000000,0.000061995000000,0.000175377000000,0.000044612000000,0.000175772000000,0.000066340000000,0.000062390000000,0.000678291000000,0.000182093000000,0.000500908000000 +0.000032365000000,0.000034736000000,0.000019145500000,0.000067921000000,0.000034340000000,0.000066340000000,0.000056464000000,0.000020528000000,0.000061995000000,0.000156019000000,0.000043427000000,0.000212513000000,0.000066735000000,0.000061994000000,0.000594932000000,0.000215673000000,0.000520266000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000068316000000,0.000033551000000,0.000063575000000,0.000058044000000,0.000021515500000,0.000065156000000,0.000180118000000,0.000045402000000,0.000175378000000,0.000065946000000,0.000065945000000,0.000627723000000,0.000182093000000,0.000487871000000 +0.000030784000000,0.000033550000000,0.000018948000000,0.000103081000000,0.000036711000000,0.000064365000000,0.000105452000000,0.000022701500000,0.000061599000000,0.000175378000000,0.000043426000000,0.000160760000000,0.000077007000000,0.000062390000000,0.000630093000000,0.000180908000000,0.000520266000000 +0.000030785000000,0.000033550000000,0.000018750500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000085699000000,0.000021713000000,0.000061600000000,0.000156414000000,0.000044612000000,0.000175773000000,0.000166290000000,0.000065155000000,0.000596908000000,0.000232662000000,0.000485501000000 +0.000031180000000,0.000033946000000,0.000019936000000,0.000070291000000,0.000034340000000,0.000064365000000,0.000056464000000,0.000021120500000,0.000110982000000,0.000174587000000,0.000045797000000,0.000202636000000,0.000197896000000,0.000084118000000,0.000595327000000,0.000202637000000,0.000498538000000 +0.000031970000000,0.000033945000000,0.000019540500000,0.000069501000000,0.000033155000000,0.000065945000000,0.000056464000000,0.000021910500000,0.000065155000000,0.000174192000000,0.000043822000000,0.000178538000000,0.000180513000000,0.000063970000000,0.000645105000000,0.000182489000000,0.000562537000000 +0.000029994000000,0.000046982000000,0.000019540500000,0.000068710000000,0.000046588000000,0.000064365000000,0.000056464000000,0.000021318000000,0.000061995000000,0.000156019000000,0.000043822000000,0.000178538000000,0.000075822000000,0.000064760000000,0.000651031000000,0.000252809000000,0.000484315000000 +0.000030390000000,0.000034736000000,0.000019145500000,0.000070291000000,0.000033945000000,0.000084118000000,0.000056068000000,0.000021516000000,0.000063969000000,0.000221600000000,0.000043427000000,0.000157995000000,0.000060414000000,0.000061994000000,0.000594537000000,0.000178538000000,0.000521451000000 +0.000029995000000,0.000034736000000,0.000020528000000,0.000067920000000,0.000033551000000,0.000079773000000,0.000056858000000,0.000022503500000,0.000061995000000,0.000173797000000,0.000044612000000,0.000210538000000,0.000061994000000,0.000062389000000,0.000631674000000,0.000183674000000,0.000519080000000 +0.000030390000000,0.000033550000000,0.000019935500000,0.000067921000000,0.000032760000000,0.000065550000000,0.000056859000000,0.000020331000000,0.000063180000000,0.000156810000000,0.000043427000000,0.000177747000000,0.000060810000000,0.000065156000000,0.000628118000000,0.000216859000000,0.000483526000000 +0.000033945000000,0.000033946000000,0.000019145500000,0.000140216000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000038503500000,0.000062389000000,0.000174192000000,0.000045402000000,0.000158390000000,0.000062785000000,0.000063970000000,0.000597303000000,0.000185253000000,0.000517500000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000085698000000,0.000033550000000,0.000063970000000,0.000055673000000,0.000021121000000,0.000095574000000,0.000207378000000,0.000044612000000,0.000178933000000,0.000060414000000,0.000065550000000,0.000636414000000,0.000237402000000,0.000484711000000 +0.000030785000000,0.000033551000000,0.000019540500000,0.000069500000000,0.000037106000000,0.000066735000000,0.000056859000000,0.000022503500000,0.000062390000000,0.000175377000000,0.000043427000000,0.000152464000000,0.000062784000000,0.000096760000000,0.000629303000000,0.000218834000000,0.000519871000000 +0.000046982000000,0.000034340000000,0.000019738000000,0.000068711000000,0.000033155000000,0.000065551000000,0.000057254000000,0.000021713500000,0.000063970000000,0.000174192000000,0.000043426000000,0.000174192000000,0.000063180000000,0.000064365000000,0.000598488000000,0.000180513000000,0.000528957000000 +0.000030390000000,0.000033550000000,0.000019540500000,0.000069501000000,0.000034736000000,0.000066736000000,0.000056859000000,0.000022306000000,0.000062390000000,0.000157995000000,0.000045007000000,0.000165106000000,0.000062389000000,0.000061994000000,0.000739130000000,0.000179723000000,0.000487871000000 +0.000030389000000,0.000052908000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000064760000000,0.000056069000000,0.000020528000000,0.000061600000000,0.000193945000000,0.000043427000000,0.000157994000000,0.000061599000000,0.000065945000000,0.000629698000000,0.000335772000000,0.000522241000000 +0.000029995000000,0.000033945000000,0.000020133000000,0.000101106000000,0.000034736000000,0.000065946000000,0.000057254000000,0.000022306000000,0.000064760000000,0.000179328000000,0.000043427000000,0.000173007000000,0.000061205000000,0.000065550000000,0.000704365000000,0.000396611000000,0.000486686000000 +0.000029994000000,0.000033550000000,0.000019145500000,0.000067920000000,0.000034735000000,0.000066340000000,0.000057254000000,0.000022108500000,0.000064365000000,0.000190784000000,0.000043426000000,0.000178538000000,0.000063180000000,0.000065156000000,0.000596513000000,0.000231476000000,0.000521056000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000069501000000,0.000033155000000,0.000065156000000,0.000110192000000,0.000022306000000,0.000061600000000,0.000175377000000,0.000044612000000,0.000174587000000,0.000062390000000,0.000064365000000,0.000681055000000,0.000179723000000,0.000520661000000 +0.000030389000000,0.000033946000000,0.000020330500000,0.000068711000000,0.000034341000000,0.000065550000000,0.000059229000000,0.000022701000000,0.000133896000000,0.000213698000000,0.000044217000000,0.000167476000000,0.000062390000000,0.000063180000000,0.000628118000000,0.000180118000000,0.000486290000000 +0.000031575000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000065550000000,0.000057254000000,0.000038306000000,0.000064365000000,0.000246489000000,0.000077797000000,0.000176562000000,0.000062389000000,0.000082143000000,0.000651427000000,0.000231871000000,0.000531723000000 +0.000031970000000,0.000033945000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000028232000000,0.000061994000000,0.000152859000000,0.000060809000000,0.000161945000000,0.000061599000000,0.000063970000000,0.000596118000000,0.000184463000000,0.000485896000000 +0.000031575000000,0.000033155000000,0.000018750500000,0.000069501000000,0.000032365000000,0.000065550000000,0.000056464000000,0.000021911000000,0.000061995000000,0.000208563000000,0.000043427000000,0.000161155000000,0.000060019000000,0.000065550000000,0.000629303000000,0.000180908000000,0.000647080000000 +0.000030785000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000034736000000,0.000064760000000,0.000056068000000,0.000022306000000,0.000064365000000,0.000173797000000,0.000045007000000,0.000175772000000,0.000061995000000,0.000065550000000,0.000666044000000,0.000248859000000,0.000556216000000 +0.000030390000000,0.000033550000000,0.000019935500000,0.000101106000000,0.000034340000000,0.000065155000000,0.000056463000000,0.000020725500000,0.000063970000000,0.000173402000000,0.000043427000000,0.000167476000000,0.000061995000000,0.000063970000000,0.000598884000000,0.000184068000000,0.000485896000000 +0.000030785000000,0.000053303000000,0.000019343000000,0.000069105000000,0.000033550000000,0.000064365000000,0.000125600000000,0.000022306000000,0.000064365000000,0.000155625000000,0.000043427000000,0.000161945000000,0.000061599000000,0.000062390000000,0.000642340000000,0.000179723000000,0.000553451000000 +0.000029995000000,0.000035130000000,0.000018948000000,0.000068710000000,0.000074241000000,0.000063970000000,0.000056464000000,0.000020726000000,0.000095180000000,0.000195525000000,0.000043822000000,0.000158389000000,0.000060019000000,0.000065155000000,0.000664068000000,0.000183673000000,0.000552266000000 +0.000030389000000,0.000033155000000,0.000018750000000,0.000069106000000,0.000103871000000,0.000065946000000,0.000055674000000,0.000020330500000,0.000061995000000,0.000218044000000,0.000044217000000,0.000238192000000,0.000062389000000,0.000079773000000,0.000598093000000,0.000180118000000,0.000484710000000 +0.000031575000000,0.000033155000000,0.000019540500000,0.000069500000000,0.000056464000000,0.000065550000000,0.000056859000000,0.000029219500000,0.000065155000000,0.000159575000000,0.000044217000000,0.000160760000000,0.000060414000000,0.000064365000000,0.000596512000000,0.000180118000000,0.000594933000000 +0.000029995000000,0.000033946000000,0.000019343000000,0.000069106000000,0.000084118000000,0.000063970000000,0.000056859000000,0.000020923500000,0.000061995000000,0.000173797000000,0.000045007000000,0.000165106000000,0.000059625000000,0.000064760000000,0.001048068000000,0.000225155000000,0.000541994000000 +0.000031179000000,0.000033551000000,0.000019343000000,0.000068711000000,0.000037896000000,0.000139032000000,0.000056464000000,0.000021713500000,0.000061994000000,0.000208562000000,0.000043427000000,0.000175377000000,0.000063970000000,0.000064760000000,0.000628117000000,0.000192365000000,0.000488266000000 +0.000030784000000,0.000033155000000,0.000020133000000,0.000069106000000,0.000066736000000,0.000064761000000,0.000056069000000,0.000020923000000,0.000061995000000,0.000174588000000,0.000044217000000,0.000265847000000,0.000060415000000,0.000062785000000,0.000637599000000,0.000195130000000,0.000555031000000 +0.000031180000000,0.000033946000000,0.000020133500000,0.000102291000000,0.000033946000000,0.000063970000000,0.000056463000000,0.000022108500000,0.000066341000000,0.000156414000000,0.000044612000000,0.000178538000000,0.000060414000000,0.000064760000000,0.000594538000000,0.000191970000000,0.000486686000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000081747000000,0.000032760000000,0.000064365000000,0.000110983000000,0.000020528500000,0.000064365000000,0.000178933000000,0.000043427000000,0.000174982000000,0.000061599000000,0.000065155000000,0.000627723000000,0.000198291000000,0.000521451000000 +0.000030785000000,0.000033550000000,0.000019343000000,0.000068710000000,0.000033551000000,0.000065550000000,0.000057649000000,0.000021910500000,0.000064760000000,0.000189995000000,0.000043426000000,0.000159575000000,0.000060415000000,0.000099920000000,0.000666044000000,0.000196316000000,0.000555821000000 +0.000032761000000,0.000067130000000,0.000019540500000,0.000069106000000,0.000033945000000,0.000065945000000,0.000056464000000,0.000024479000000,0.000061599000000,0.000156019000000,0.000043427000000,0.000209353000000,0.000061995000000,0.000064760000000,0.000630488000000,0.000191575000000,0.000517106000000 +0.000031575000000,0.000033946000000,0.000019936000000,0.000069500000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000064760000000,0.000174192000000,0.000043427000000,0.000152859000000,0.000061994000000,0.000061995000000,0.000594932000000,0.000191575000000,0.000569253000000 +0.000031575000000,0.000033550000000,0.000018750500000,0.000069105000000,0.000033550000000,0.000086488000000,0.000056859000000,0.000022305500000,0.000061995000000,0.000174193000000,0.000043821000000,0.000178538000000,0.000062785000000,0.000064760000000,0.000644710000000,0.000193155000000,0.000699624000000 +0.000029995000000,0.000033945000000,0.000019145500000,0.000103081000000,0.000033155000000,0.000205007000000,0.000057649000000,0.000029219500000,0.000063970000000,0.000171822000000,0.000043822000000,0.000178538000000,0.000063180000000,0.000065155000000,0.000664463000000,0.000191575000000,0.000548315000000 +0.000030389000000,0.000034736000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000068316000000,0.000056464000000,0.000021121000000,0.000065550000000,0.000176167000000,0.000099525000000,0.000173007000000,0.000062390000000,0.000065156000000,0.000594537000000,0.000192365000000,0.000487476000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000067920000000,0.000033946000000,0.000065946000000,0.000057254000000,0.000021516000000,0.000063575000000,0.000173006000000,0.000043822000000,0.000176958000000,0.000061995000000,0.000062390000000,0.000632069000000,0.000226735000000,0.000519871000000 +0.000030785000000,0.000033945000000,0.000019145500000,0.000067526000000,0.000032760000000,0.000063970000000,0.000092019000000,0.000020528000000,0.000082143000000,0.000156415000000,0.000043427000000,0.000178538000000,0.000061995000000,0.000063180000000,0.000626933000000,0.000191970000000,0.000483920000000 +0.000033945000000,0.000033946000000,0.000020133500000,0.000068711000000,0.000034340000000,0.000066735000000,0.000056859000000,0.000021713500000,0.000061995000000,0.000174587000000,0.000043427000000,0.000157995000000,0.000060809000000,0.000171822000000,0.000595723000000,0.000195920000000,0.000497748000000 +0.000030784000000,0.000033550000000,0.000019343000000,0.000069501000000,0.000033550000000,0.000115723000000,0.000056463000000,0.000021713500000,0.000064365000000,0.000173007000000,0.000044612000000,0.000192365000000,0.000065945000000,0.000064760000000,0.000681451000000,0.000224365000000,0.000518290000000 +0.000030785000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000035131000000,0.000064365000000,0.000056858000000,0.000020528000000,0.000062784000000,0.000174587000000,0.000043032000000,0.000153254000000,0.000066735000000,0.000063575000000,0.000630093000000,0.000189995000000,0.000485500000000 +0.000030390000000,0.000061600000000,0.000019343000000,0.000068710000000,0.000033155000000,0.000063970000000,0.000056463000000,0.000024479000000,0.000063970000000,0.000194340000000,0.000043426000000,0.000174587000000,0.000066340000000,0.000062390000000,0.000632068000000,0.000191574000000,0.000520661000000 +0.000035130000000,0.000033155000000,0.000018750500000,0.000159574000000,0.000033550000000,0.000064760000000,0.000056858000000,0.000022306000000,0.000061599000000,0.000157995000000,0.000044612000000,0.000165500000000,0.000065550000000,0.000062784000000,0.000596118000000,0.000225155000000,0.000487871000000 +0.000030390000000,0.000035131000000,0.000018750500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000055674000000,0.000022701000000,0.000064365000000,0.000160760000000,0.000043822000000,0.000157205000000,0.000063970000000,0.000065945000000,0.000630093000000,0.000193550000000,0.000501698000000 +0.000030389000000,0.000033946000000,0.000018750500000,0.000068315000000,0.000033155000000,0.000066340000000,0.000056464000000,0.000020528500000,0.000062389000000,0.000159575000000,0.000063180000000,0.000159970000000,0.000064365000000,0.000065550000000,0.000629303000000,0.000191575000000,0.000555031000000 +0.000030390000000,0.000033945000000,0.000020133000000,0.000068316000000,0.000033945000000,0.000063575000000,0.000076217000000,0.000020330500000,0.000098341000000,0.000195920000000,0.000043427000000,0.000176562000000,0.000064365000000,0.000098736000000,0.000596513000000,0.000227921000000,0.000487871000000 +0.000029995000000,0.000033945000000,0.000019935500000,0.000068711000000,0.000033550000000,0.000102686000000,0.000056464000000,0.000020726000000,0.000061994000000,0.000174982000000,0.000043427000000,0.000174192000000,0.000065550000000,0.000063574000000,0.000631278000000,0.000191180000000,0.000520661000000 +0.000029994000000,0.000034736000000,0.000019935500000,0.000068711000000,0.000033945000000,0.000081748000000,0.000056069000000,0.000021318500000,0.000062390000000,0.000180513000000,0.000043427000000,0.000167476000000,0.000064365000000,0.000064760000000,0.000627723000000,0.000194735000000,0.000485895000000 +0.000031970000000,0.000034340000000,0.000020133000000,0.000103081000000,0.000067131000000,0.000064365000000,0.000056859000000,0.000020330500000,0.000063969000000,0.000162341000000,0.000043822000000,0.000177353000000,0.000063970000000,0.000062785000000,0.000595723000000,0.000228316000000,0.000485106000000 +0.000031970000000,0.000034341000000,0.000019343000000,0.000068711000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000020528000000,0.000064365000000,0.000191575000000,0.000043822000000,0.000161945000000,0.000066340000000,0.000064760000000,0.000673549000000,0.000193550000000,0.000532513000000 +0.000031575000000,0.000034340000000,0.000019738000000,0.000069106000000,0.000035920000000,0.000063970000000,0.000056859000000,0.000021713500000,0.000062390000000,0.000173402000000,0.000043822000000,0.000193155000000,0.000066340000000,0.000062785000000,0.000642735000000,0.000193155000000,0.000483920000000 +0.000030390000000,0.000033155000000,0.000019343000000,0.000068711000000,0.000033551000000,0.000063969000000,0.000056069000000,0.000020528500000,0.000064760000000,0.000173797000000,0.000043427000000,0.000175772000000,0.000063575000000,0.000065155000000,0.000631278000000,0.000299821000000,0.000521056000000 +0.000030784000000,0.000034735000000,0.000019145500000,0.000067921000000,0.000034340000000,0.000064761000000,0.000056464000000,0.000037911000000,0.000063969000000,0.000171821000000,0.000044612000000,0.000167871000000,0.000066735000000,0.000066341000000,0.000598093000000,0.000196711000000,0.000568464000000 +0.000030390000000,0.000033551000000,0.000018948000000,0.000069105000000,0.000033550000000,0.000066735000000,0.000077007000000,0.000021713500000,0.000061994000000,0.000190785000000,0.000043822000000,0.000162735000000,0.000065945000000,0.000134686000000,0.001451030000000,0.000282043000000,0.000483920000000 +0.000031969000000,0.000033550000000,0.000019935500000,0.000068710000000,0.000033155000000,0.000063575000000,0.000056464000000,0.000020726000000,0.000064365000000,0.000156414000000,0.000116118000000,0.000191970000000,0.000065155000000,0.000063970000000,0.001261402000000,0.000179723000000,0.000517106000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000069896000000,0.000033550000000,0.000063970000000,0.000055673000000,0.000023096000000,0.000064365000000,0.000175772000000,0.000149303000000,0.000174192000000,0.000065550000000,0.000062389000000,0.001072956000000,0.000180908000000,0.000484710000000 +0.000031970000000,0.000033155000000,0.000029417000000,0.000068710000000,0.000033155000000,0.000067130000000,0.000057254000000,0.000021318500000,0.000062390000000,0.000159969000000,0.000146538000000,0.000160365000000,0.000065945000000,0.000063180000000,0.000656562000000,0.000200266000000,0.000568463000000 +0.000030785000000,0.000033155000000,0.000026059000000,0.000068710000000,0.000034340000000,0.000063575000000,0.000056464000000,0.000020923500000,0.000061600000000,0.000207772000000,0.000074636000000,0.000165106000000,0.000064365000000,0.000065945000000,0.000627327000000,0.000181304000000,0.000521056000000 +0.000030784000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000063970000000,0.000057254000000,0.000022503500000,0.000061994000000,0.000174982000000,0.000061205000000,0.000218834000000,0.000065945000000,0.000065155000000,0.000649451000000,0.000181303000000,0.000487871000000 +0.000030390000000,0.000033945000000,0.000019145500000,0.000068711000000,0.000047377000000,0.000064365000000,0.000055673000000,0.000022108500000,0.000063970000000,0.000174192000000,0.000043427000000,0.000175772000000,0.000065945000000,0.000063575000000,0.000594537000000,0.000183278000000,0.000521846000000 +0.000031575000000,0.000033550000000,0.000018948000000,0.000068316000000,0.000033551000000,0.000067525000000,0.000056463000000,0.000022108500000,0.000097945000000,0.000157205000000,0.000044217000000,0.000180118000000,0.000070291000000,0.000062390000000,0.000651031000000,0.000182093000000,0.000487081000000 +0.000030784000000,0.000033945000000,0.000019738000000,0.000067920000000,0.000034735000000,0.000065550000000,0.000111773000000,0.000020528000000,0.000064365000000,0.000217254000000,0.000043427000000,0.000175378000000,0.000065156000000,0.000062785000000,0.000730438000000,0.000182883000000,0.000488266000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000068711000000,0.000033156000000,0.000063970000000,0.000056859000000,0.000026849500000,0.000062390000000,0.000174982000000,0.000045007000000,0.000194340000000,0.000065550000000,0.000065155000000,0.000596908000000,0.000183278000000,0.000520266000000 +0.000029995000000,0.000034341000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000066341000000,0.000056069000000,0.000021713500000,0.000064365000000,0.000156019000000,0.000043426000000,0.000174982000000,0.000066736000000,0.000065550000000,0.000611525000000,0.000179723000000,0.000485501000000 +0.000031179000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000021713000000,0.000061995000000,0.000189995000000,0.000043822000000,0.000152859000000,0.000070686000000,0.000063575000000,0.000628118000000,0.000182093000000,0.000554241000000 +0.000031575000000,0.000034735000000,0.000019343000000,0.000069106000000,0.000033156000000,0.000063970000000,0.000056859000000,0.000020923000000,0.000061995000000,0.000187624000000,0.000043427000000,0.000179723000000,0.000064365000000,0.000065946000000,0.000796809000000,0.000182093000000,0.000506044000000 +0.000032760000000,0.000034341000000,0.000029219500000,0.000068711000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020726000000,0.000063970000000,0.000156809000000,0.000043427000000,0.000343279000000,0.000065945000000,0.000065155000000,0.000762439000000,0.000180908000000,0.000484710000000 +0.000043822000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000033550000000,0.000067525000000,0.000056069000000,0.000020133000000,0.000062390000000,0.000176562000000,0.000043427000000,0.000175772000000,0.000065550000000,0.000063575000000,0.000594932000000,0.000185253000000,0.000763623000000 +0.000030785000000,0.000034735000000,0.000018948000000,0.000067920000000,0.000034340000000,0.000063970000000,0.000057649000000,0.000020923500000,0.000093599000000,0.000173401000000,0.000043822000000,0.000177748000000,0.000063970000000,0.000131921000000,0.000866340000000,0.000185254000000,0.000519081000000 +0.000031180000000,0.000034340000000,0.000019738000000,0.000068316000000,0.000033945000000,0.000099525000000,0.000077402000000,0.000021911000000,0.000061995000000,0.000156810000000,0.000045007000000,0.000261500000000,0.000066341000000,0.000063575000000,0.000628513000000,0.000190390000000,0.000483525000000 +0.000030389000000,0.000089254000000,0.000019145500000,0.000069106000000,0.000035526000000,0.000078192000000,0.000070686000000,0.000020331000000,0.000061599000000,0.000174192000000,0.000043822000000,0.000157995000000,0.000064365000000,0.000066340000000,0.000664069000000,0.000186439000000,0.000532908000000 +0.000030785000000,0.000048958000000,0.000020133000000,0.000109797000000,0.000034735000000,0.000065550000000,0.000055674000000,0.000036923000000,0.000061599000000,0.000173007000000,0.000045402000000,0.000179723000000,0.000063970000000,0.000065550000000,0.000594933000000,0.000182488000000,0.000485105000000 +0.000030785000000,0.000033551000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000020331000000,0.000065155000000,0.000208563000000,0.000044612000000,0.000152859000000,0.000067525000000,0.000062784000000,0.000629303000000,0.000181699000000,0.000560168000000 +0.000029994000000,0.000033945000000,0.000018948000000,0.000068710000000,0.000033550000000,0.000066340000000,0.000056464000000,0.000020528000000,0.000062785000000,0.000174587000000,0.000043822000000,0.000276118000000,0.000067921000000,0.000061994000000,0.000666834000000,0.000185254000000,0.000570834000000 +0.000029995000000,0.000033550000000,0.000020133000000,0.000070686000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000021910500000,0.000062390000000,0.000157995000000,0.000043427000000,0.000165106000000,0.000066736000000,0.000064760000000,0.000596512000000,0.000187229000000,0.000487871000000 +0.000065550000000,0.000034340000000,0.000018750500000,0.000068710000000,0.000035921000000,0.000063575000000,0.000055673000000,0.000021120500000,0.000065155000000,0.000159970000000,0.000043427000000,0.000158785000000,0.000066340000000,0.000063575000000,0.000598093000000,0.000180513000000,0.000536069000000 +0.000081747000000,0.000035525000000,0.000019540500000,0.000067920000000,0.000033550000000,0.000065550000000,0.000056464000000,0.000020528500000,0.000063180000000,0.000198686000000,0.000082538000000,0.000159970000000,0.000063575000000,0.000106636000000,0.000662488000000,0.000182093000000,0.000525402000000 +0.000061205000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000032760000000,0.000068315000000,0.000095575000000,0.000020528000000,0.000061995000000,0.000229501000000,0.000080563000000,0.000191180000000,0.000063575000000,0.000063180000000,0.000628907000000,0.000180908000000,0.000487476000000 +0.000029994000000,0.000067525000000,0.000018750000000,0.000068316000000,0.000032760000000,0.000066735000000,0.000069896000000,0.000021713500000,0.000065551000000,0.000176167000000,0.000043822000000,0.000174192000000,0.000065945000000,0.000062390000000,0.000637204000000,0.000197896000000,0.000520661000000 +0.000030390000000,0.000034341000000,0.000019145500000,0.000138241000000,0.000033551000000,0.000064365000000,0.000055674000000,0.000022306000000,0.000061994000000,0.000214094000000,0.000043822000000,0.000166686000000,0.000065550000000,0.000063575000000,0.000666439000000,0.000180118000000,0.000486291000000 +0.000030785000000,0.000034340000000,0.000018750000000,0.000084513000000,0.000035525000000,0.000065945000000,0.000092414000000,0.000037121000000,0.000061995000000,0.000163130000000,0.000044217000000,0.000258735000000,0.000065945000000,0.000062390000000,0.000669599000000,0.000182489000000,0.000554241000000 +0.000031575000000,0.000035130000000,0.000019145500000,0.000068710000000,0.000035131000000,0.000065945000000,0.000056859000000,0.000021713500000,0.000064760000000,0.000152859000000,0.000043031000000,0.000162341000000,0.000067525000000,0.000063575000000,0.000632068000000,0.000248464000000,0.000569648000000 +0.000031970000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000063575000000,0.000056464000000,0.000023491000000,0.000063180000000,0.000173797000000,0.000044217000000,0.000159180000000,0.000065945000000,0.000066340000000,0.000632068000000,0.000183278000000,0.000483921000000 +0.000030785000000,0.000034340000000,0.000020133000000,0.000069106000000,0.000033550000000,0.000065550000000,0.000056069000000,0.000023294000000,0.000143377000000,0.000244118000000,0.000044612000000,0.000176167000000,0.000065550000000,0.000104266000000,0.000681056000000,0.000182883000000,0.000521846000000 +0.000030785000000,0.000033155000000,0.000018750500000,0.000067921000000,0.000033946000000,0.000086884000000,0.000056859000000,0.000021120500000,0.000064760000000,0.000173007000000,0.000043821000000,0.000244118000000,0.000065155000000,0.000076216000000,0.000847772000000,0.000215674000000,0.000485105000000 +0.000031180000000,0.000033550000000,0.000020528000000,0.000101896000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000022306000000,0.000098735000000,0.000156414000000,0.000043427000000,0.000161945000000,0.000063970000000,0.000062784000000,0.000666439000000,0.000181303000000,0.000483130000000 +0.000029995000000,0.000033551000000,0.000018948000000,0.000068711000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000022108500000,0.000063575000000,0.000156414000000,0.000043427000000,0.000157600000000,0.000065550000000,0.000063575000000,0.000631674000000,0.000189204000000,0.000782191000000 +0.000030785000000,0.000033551000000,0.000023293500000,0.000068710000000,0.000034340000000,0.000065946000000,0.000056069000000,0.000022306000000,0.000063575000000,0.000207772000000,0.000043427000000,0.000174192000000,0.000063970000000,0.000062785000000,0.000644710000000,0.000181303000000,0.000534883000000 +0.000031970000000,0.000068316000000,0.000019145500000,0.000069896000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000022306000000,0.000064365000000,0.000159970000000,0.000043426000000,0.000210143000000,0.000065946000000,0.000062390000000,0.000987228000000,0.000181698000000,0.000485501000000 +0.000030390000000,0.000033946000000,0.000018948000000,0.000068710000000,0.000073452000000,0.000064760000000,0.000057649000000,0.000021121000000,0.000062389000000,0.000173007000000,0.000043032000000,0.000165105000000,0.000074637000000,0.000065550000000,0.000636019000000,0.000184464000000,0.000554636000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000073452000000,0.000034735000000,0.000067526000000,0.000057254000000,0.000021911000000,0.000133501000000,0.000173797000000,0.000044612000000,0.000171032000000,0.000065550000000,0.000065550000000,0.000631673000000,0.000178538000000,0.000487871000000 +0.000029994000000,0.000032760000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000066340000000,0.000056069000000,0.000020528000000,0.000086883000000,0.000242933000000,0.000043822000000,0.000176563000000,0.000063970000000,0.000123229000000,0.000632464000000,0.000181698000000,0.000501303000000 +0.000031180000000,0.000033155000000,0.000019935500000,0.000068315000000,0.000033946000000,0.000133106000000,0.000107822000000,0.000020528500000,0.000077007000000,0.000157205000000,0.000043426000000,0.000180118000000,0.000065155000000,0.000112563000000,0.000632859000000,0.000181698000000,0.000537254000000 +0.000030390000000,0.000033945000000,0.000020331000000,0.000117303000000,0.000033945000000,0.000063575000000,0.000056069000000,0.000020528000000,0.000064760000000,0.000173797000000,0.000043427000000,0.000175773000000,0.000065550000000,0.000078587000000,0.000631278000000,0.000227131000000,0.000487871000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000068315000000,0.000033156000000,0.000066341000000,0.000057649000000,0.000020331000000,0.000061204000000,0.000173797000000,0.000063180000000,0.000160760000000,0.000065945000000,0.000062390000000,0.000632859000000,0.000180118000000,0.000605204000000 +0.000029995000000,0.000034340000000,0.000018750500000,0.000069105000000,0.000034735000000,0.000063575000000,0.000055674000000,0.000021713000000,0.000061600000000,0.000189995000000,0.000044612000000,0.000257550000000,0.000066735000000,0.000064761000000,0.000633254000000,0.000180908000000,0.000560167000000 +0.000031575000000,0.000033156000000,0.000019343000000,0.000068710000000,0.000034340000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000119278000000,0.000174588000000,0.000043031000000,0.000152859000000,0.000065155000000,0.000062784000000,0.000664463000000,0.000214883000000,0.000485106000000 +0.000030785000000,0.000033550000000,0.000020528000000,0.000069500000000,0.000034340000000,0.000064365000000,0.000056464000000,0.000020528000000,0.000064365000000,0.000173797000000,0.000044611000000,0.000178538000000,0.000065155000000,0.000063575000000,0.000631673000000,0.000180908000000,0.000569253000000 +0.000031575000000,0.000047377000000,0.000020133500000,0.000068711000000,0.000034736000000,0.000063970000000,0.000056464000000,0.000020528000000,0.000063575000000,0.000156809000000,0.000043427000000,0.000178538000000,0.000065550000000,0.000065155000000,0.000631278000000,0.000186044000000,0.000483920000000 +0.000030785000000,0.000033155000000,0.000019540500000,0.000069105000000,0.000071871000000,0.000066340000000,0.000056069000000,0.000021713500000,0.000061994000000,0.000260315000000,0.000043427000000,0.000240562000000,0.000064365000000,0.000063575000000,0.000631673000000,0.000217649000000,0.000501698000000 +0.000029994000000,0.000033550000000,0.000018948000000,0.000101501000000,0.000033550000000,0.000064365000000,0.000139032000000,0.000020528000000,0.000061599000000,0.000173007000000,0.000043031000000,0.000178143000000,0.000064365000000,0.000062785000000,0.000667624000000,0.000183674000000,0.000572019000000 +0.000029995000000,0.000034340000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000064365000000,0.000064760000000,0.000023096000000,0.000063970000000,0.000156414000000,0.000043822000000,0.000178933000000,0.000064365000000,0.000064365000000,0.000682241000000,0.000186834000000,0.000483130000000 +0.000029995000000,0.000033155000000,0.000018947500000,0.000068711000000,0.000034735000000,0.000064760000000,0.000092019000000,0.000020726000000,0.000061994000000,0.000174587000000,0.000043822000000,0.000157995000000,0.000066341000000,0.000065550000000,0.000630883000000,0.000217649000000,0.000570439000000 +0.000030785000000,0.000033945000000,0.000019343000000,0.000068711000000,0.000033155000000,0.000063180000000,0.000055674000000,0.000020726000000,0.000064760000000,0.000173402000000,0.000045007000000,0.000520660000000,0.000065550000000,0.000061995000000,0.000634044000000,0.000185648000000,0.000577945000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069501000000,0.000032760000000,0.000064760000000,0.000056464000000,0.000020528000000,0.000075032000000,0.000174982000000,0.000059625000000,0.000171821000000,0.000068316000000,0.000061995000000,0.000742685000000,0.000189599000000,0.000486686000000 +0.000072267000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000066736000000,0.000057254000000,0.000021911000000,0.000065155000000,0.000173797000000,0.000043426000000,0.000208168000000,0.000065945000000,0.000063180000000,0.000797994000000,0.000214883000000,0.000574389000000 +0.000029995000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000033156000000,0.000065945000000,0.000056859000000,0.000022108500000,0.000061994000000,0.000212513000000,0.000043822000000,0.000164711000000,0.000065945000000,0.000064761000000,0.001162635000000,0.000183673000000,0.000558982000000 +0.000030785000000,0.000033550000000,0.000018552500000,0.000070686000000,0.000033945000000,0.000065945000000,0.000056069000000,0.000020726000000,0.000064365000000,0.000160365000000,0.000043427000000,0.000157600000000,0.000069896000000,0.000065155000000,0.000702784000000,0.000180513000000,0.000487081000000 +0.000030785000000,0.000034735000000,0.000032577500000,0.000114933000000,0.000033550000000,0.000068315000000,0.000056069000000,0.000039096000000,0.000064760000000,0.000160365000000,0.000043427000000,0.000159575000000,0.000063969000000,0.000065155000000,0.000595328000000,0.000227920000000,0.000520661000000 +0.000030390000000,0.000034340000000,0.000019145500000,0.000068316000000,0.000054093000000,0.000066341000000,0.000056859000000,0.000027442000000,0.000063970000000,0.000174982000000,0.000043031000000,0.000210933000000,0.000066341000000,0.000065550000000,0.000595723000000,0.000182488000000,0.000487476000000 +0.000030390000000,0.000033550000000,0.000019738000000,0.000068711000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000022108500000,0.000063179000000,0.000209353000000,0.000043427000000,0.000174192000000,0.000065550000000,0.000063180000000,0.000625352000000,0.000179328000000,0.000851327000000 +0.000029995000000,0.000033550000000,0.000020331000000,0.000070291000000,0.000034341000000,0.000063970000000,0.000056069000000,0.000020528500000,0.000124415000000,0.000180513000000,0.000043822000000,0.000166290000000,0.000063574000000,0.000063575000000,0.000641944000000,0.000286785000000,0.000486291000000 +0.000031970000000,0.000033155000000,0.000019540500000,0.000069501000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000060809000000,0.000162736000000,0.000044216000000,0.000177747000000,0.000067131000000,0.000062785000000,0.000631278000000,0.000198685000000,0.000519476000000 +0.000031180000000,0.000032760000000,0.000019738000000,0.000068711000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000021713500000,0.000061599000000,0.000152859000000,0.000043821000000,0.000161945000000,0.000065945000000,0.000064365000000,0.000657747000000,0.000182093000000,0.000486291000000 +0.000031180000000,0.000033156000000,0.000020528500000,0.000069895000000,0.000033155000000,0.000065946000000,0.000056464000000,0.000020923000000,0.000064365000000,0.000267032000000,0.000043427000000,0.000159575000000,0.000065945000000,0.000064365000000,0.000679871000000,0.000179328000000,0.000517500000000 +0.000029994000000,0.000033155000000,0.000019145500000,0.000102686000000,0.000033156000000,0.000097945000000,0.000069501000000,0.000022108500000,0.000064365000000,0.000174192000000,0.000043822000000,0.000174587000000,0.000063970000000,0.000084118000000,0.000596908000000,0.000184463000000,0.000538043000000 +0.000030784000000,0.000033946000000,0.000019145500000,0.000067921000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000063575000000,0.000173402000000,0.000044217000000,0.000167476000000,0.000078982000000,0.000062785000000,0.000597698000000,0.000181303000000,0.000485106000000 +0.000030785000000,0.000033550000000,0.000018750500000,0.000068710000000,0.000034736000000,0.000065155000000,0.000056858000000,0.000031590000000,0.000064365000000,0.000156020000000,0.000043427000000,0.000162736000000,0.000061600000000,0.000062390000000,0.000648660000000,0.000185649000000,0.000530142000000 +0.000030785000000,0.000033155000000,0.000026849000000,0.000069501000000,0.000033550000000,0.000065155000000,0.000056858000000,0.000023293500000,0.000133501000000,0.000197501000000,0.000043032000000,0.000158784000000,0.000060809000000,0.000062390000000,0.000736759000000,0.000190389000000,0.000483525000000 +0.000029994000000,0.000034340000000,0.000019540500000,0.000069501000000,0.000033550000000,0.000063575000000,0.000055673000000,0.000037911000000,0.000063970000000,0.000174192000000,0.000043427000000,0.000173797000000,0.000062784000000,0.000063180000000,0.000707525000000,0.000185649000000,0.000525796000000 +0.000031970000000,0.000033155000000,0.000018750500000,0.000069500000000,0.000032760000000,0.000065945000000,0.000056463000000,0.000022306000000,0.000064365000000,0.000160365000000,0.000043427000000,0.000161551000000,0.000063179000000,0.000133896000000,0.000630488000000,0.000228315000000,0.000520266000000 +0.000030390000000,0.000033945000000,0.000019145000000,0.000068710000000,0.000033156000000,0.000065155000000,0.000056859000000,0.000022108500000,0.000065155000000,0.000173797000000,0.000043426000000,0.000165105000000,0.000061599000000,0.000062390000000,0.000635624000000,0.000182093000000,0.000487081000000 +0.000029994000000,0.000033155000000,0.000018553000000,0.000068711000000,0.000033945000000,0.000065551000000,0.000056463000000,0.000022306000000,0.000064365000000,0.000224760000000,0.000064760000000,0.000226735000000,0.000062390000000,0.000066340000000,0.000665254000000,0.000187230000000,0.000521846000000 +0.000030389000000,0.000033946000000,0.000019540500000,0.000084908000000,0.000033155000000,0.000095575000000,0.000089649000000,0.000022701000000,0.000063179000000,0.000173797000000,0.000044612000000,0.000175377000000,0.000061994000000,0.000063970000000,0.000633648000000,0.000182094000000,0.000487081000000 +0.000032365000000,0.000034340000000,0.000018948000000,0.000068316000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000027047000000,0.000061600000000,0.000156414000000,0.000044612000000,0.000226340000000,0.000062784000000,0.000063575000000,0.000664463000000,0.000231871000000,0.000520265000000 +0.000030390000000,0.000033945000000,0.000019540500000,0.000173797000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000021713000000,0.000061599000000,0.000179328000000,0.000045007000000,0.000176167000000,0.000060415000000,0.000062785000000,0.000677105000000,0.000184859000000,0.000525402000000 +0.000029994000000,0.000034341000000,0.000018750000000,0.000069501000000,0.000036711000000,0.000064365000000,0.000056859000000,0.000022305500000,0.000061599000000,0.000342093000000,0.000044217000000,0.000160365000000,0.000062390000000,0.000062785000000,0.000641945000000,0.000184464000000,0.000486290000000 +0.000031970000000,0.000033155000000,0.000018750000000,0.000069501000000,0.000033945000000,0.000064760000000,0.000056069000000,0.000021713000000,0.000064365000000,0.000156415000000,0.000043427000000,0.000174192000000,0.000060019000000,0.000065155000000,0.000633253000000,0.000185649000000,0.000554636000000 +0.000031180000000,0.000033155000000,0.000020133500000,0.000069105000000,0.000033945000000,0.000065155000000,0.000056859000000,0.000020528000000,0.000063970000000,0.000207377000000,0.000043427000000,0.000186834000000,0.000063575000000,0.000065155000000,0.000631279000000,0.000180513000000,0.000485501000000 +0.000031970000000,0.000033551000000,0.000019738000000,0.000102291000000,0.000033946000000,0.000063970000000,0.000056859000000,0.000022503500000,0.000061600000000,0.000173797000000,0.000043822000000,0.000179723000000,0.000061600000000,0.000065155000000,0.000632463000000,0.000180513000000,0.000486291000000 +0.000030390000000,0.000034340000000,0.000020133000000,0.000069106000000,0.000077797000000,0.000099525000000,0.000056464000000,0.000020331000000,0.000061995000000,0.000156019000000,0.000043427000000,0.000178538000000,0.000060020000000,0.000065155000000,0.000632463000000,0.000193155000000,0.000536858000000 +0.000030785000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000033945000000,0.000078587000000,0.000056068000000,0.000021911000000,0.000061599000000,0.000176168000000,0.000043427000000,0.000157995000000,0.000062785000000,0.000064365000000,0.000621007000000,0.000182094000000,0.000487080000000 +0.000030389000000,0.000035921000000,0.000018948000000,0.000068711000000,0.000033946000000,0.000066340000000,0.000056859000000,0.000022306000000,0.000065155000000,0.000206587000000,0.000043427000000,0.000211328000000,0.000061205000000,0.000065550000000,0.000647476000000,0.000205797000000,0.000519871000000 +0.000030785000000,0.000033155000000,0.000019936000000,0.000068316000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000021121000000,0.000093599000000,0.000156810000000,0.000043427000000,0.000177353000000,0.000061600000000,0.000062785000000,0.000613105000000,0.000182883000000,0.000483921000000 +0.000033550000000,0.000033551000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000099130000000,0.000056859000000,0.000022701000000,0.000061995000000,0.000173797000000,0.000045007000000,0.000158389000000,0.000060019000000,0.000065155000000,0.000594933000000,0.000183674000000,0.000483920000000 +0.000030785000000,0.000033155000000,0.000018948000000,0.000068710000000,0.000033946000000,0.000078587000000,0.000056068000000,0.000020528500000,0.000061994000000,0.000172217000000,0.000043427000000,0.000178933000000,0.000060020000000,0.000062390000000,0.000629698000000,0.000184069000000,0.000558587000000 +0.000030785000000,0.000034340000000,0.000019936000000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000022306000000,0.000064760000000,0.000208168000000,0.000043032000000,0.000167871000000,0.000062390000000,0.000063970000000,0.000664858000000,0.000187229000000,0.000506834000000 +0.000030390000000,0.000034735000000,0.000018948000000,0.000097550000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000022701000000,0.000061205000000,0.000174192000000,0.000044216000000,0.000174192000000,0.000062785000000,0.000065155000000,0.000868315000000,0.000181303000000,0.000609945000000 +0.000030785000000,0.000033550000000,0.000018750500000,0.000069106000000,0.000034340000000,0.000169451000000,0.000056859000000,0.000022108500000,0.000063970000000,0.000157600000000,0.000045007000000,0.000165501000000,0.000062785000000,0.000064760000000,0.000646291000000,0.000181304000000,0.000521056000000 +0.000029995000000,0.000033156000000,0.000029812000000,0.000069106000000,0.000032760000000,0.000121254000000,0.000055673000000,0.000020726000000,0.000064365000000,0.000160365000000,0.000043822000000,0.000157995000000,0.000062390000000,0.000064760000000,0.000757302000000,0.000184859000000,0.000487475000000 +0.000030785000000,0.000033155000000,0.000027046500000,0.000067921000000,0.000053698000000,0.000070291000000,0.000090440000000,0.000021713000000,0.000164316000000,0.000193550000000,0.000043427000000,0.000252809000000,0.000062390000000,0.000065155000000,0.000641944000000,0.000189204000000,0.000520266000000 +0.000029995000000,0.000034736000000,0.000019343000000,0.000067920000000,0.000033945000000,0.000064365000000,0.000056463000000,0.000023688500000,0.000062784000000,0.000176167000000,0.000044217000000,0.000177747000000,0.000062390000000,0.000064760000000,0.000645500000000,0.000251229000000,0.000487871000000 +0.000030390000000,0.000033550000000,0.000019540500000,0.000069105000000,0.000033155000000,0.000138241000000,0.000056859000000,0.000046405000000,0.000061995000000,0.000174982000000,0.000045007000000,0.000174192000000,0.000060414000000,0.000062389000000,0.000597698000000,0.000186439000000,0.000557402000000 +0.000030784000000,0.000033945000000,0.000019738000000,0.000069106000000,0.000034736000000,0.000066340000000,0.000056463000000,0.000020528000000,0.000061995000000,0.000180513000000,0.000043427000000,0.000186834000000,0.000062389000000,0.000097945000000,0.000640365000000,0.000183278000000,0.000526192000000 +0.000031969000000,0.000033156000000,0.000019738000000,0.000102686000000,0.000033945000000,0.000063970000000,0.000056464000000,0.000020528500000,0.000065945000000,0.000196711000000,0.000043427000000,0.000177352000000,0.000062390000000,0.000065155000000,0.000671574000000,0.000197106000000,0.000484711000000 +0.000031969000000,0.000033155000000,0.000020133000000,0.000069106000000,0.000033155000000,0.000065945000000,0.000056463000000,0.000021516000000,0.000062390000000,0.000152859000000,0.000045797000000,0.000162340000000,0.000062785000000,0.000063575000000,0.000596117000000,0.000179723000000,0.000485896000000 +0.000031180000000,0.000033945000000,0.000019738000000,0.000069105000000,0.000033551000000,0.000065550000000,0.000056858000000,0.000021713500000,0.000063970000000,0.000173007000000,0.000043822000000,0.000159970000000,0.000067131000000,0.000064760000000,0.000611525000000,0.000182488000000,0.000530932000000 +0.000030390000000,0.000046982000000,0.000018948000000,0.000070291000000,0.000033551000000,0.000065945000000,0.000055674000000,0.000022305500000,0.000143378000000,0.000173797000000,0.000045007000000,0.000209352000000,0.000062389000000,0.000063575000000,0.000843821000000,0.000218044000000,0.000487475000000 +0.000030785000000,0.000033550000000,0.000019738000000,0.000068710000000,0.000033945000000,0.000065946000000,0.000057254000000,0.000020528000000,0.000061600000000,0.000206982000000,0.000044612000000,0.000167476000000,0.000060414000000,0.000065155000000,0.000648660000000,0.000180513000000,0.000518686000000 +0.000030785000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000032760000000,0.000064365000000,0.000057649000000,0.000021713500000,0.000063970000000,0.000156019000000,0.000043822000000,0.000161945000000,0.000061995000000,0.000065155000000,0.000596118000000,0.000183674000000,0.000483525000000 +0.000030785000000,0.000033155000000,0.000018750500000,0.000069501000000,0.000054489000000,0.000067526000000,0.000057649000000,0.000020923500000,0.000063970000000,0.000156415000000,0.000078587000000,0.000158389000000,0.000061599000000,0.000062785000000,0.000821302000000,0.000214093000000,0.000483525000000 +0.000029995000000,0.000035130000000,0.000018947500000,0.000069501000000,0.000033945000000,0.000064365000000,0.000055674000000,0.000037318000000,0.000061995000000,0.000174587000000,0.000044217000000,0.000229106000000,0.000062785000000,0.000078982000000,0.000598488000000,0.000184464000000,0.000557007000000 +0.000031575000000,0.000033550000000,0.000020133500000,0.000084908000000,0.000033946000000,0.000065551000000,0.000058834000000,0.000021713500000,0.000061204000000,0.000193155000000,0.000043427000000,0.000160760000000,0.000061994000000,0.000063179000000,0.000627723000000,0.000182884000000,0.000487081000000 +0.000031180000000,0.000034341000000,0.000019343000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020725500000,0.000061995000000,0.000174192000000,0.000045007000000,0.000165106000000,0.000080958000000,0.000063179000000,0.000630488000000,0.000215278000000,0.000556611000000 +0.000030785000000,0.000033551000000,0.000018750500000,0.000069896000000,0.000036711000000,0.000065550000000,0.000056464000000,0.000021911000000,0.000064365000000,0.000174982000000,0.000043427000000,0.000171427000000,0.000163920000000,0.000064760000000,0.000694883000000,0.000184068000000,0.000522242000000 +0.000030785000000,0.000033945000000,0.000020330500000,0.000069896000000,0.000033155000000,0.000065946000000,0.000055673000000,0.000021121000000,0.000075821000000,0.000174983000000,0.000043427000000,0.000209747000000,0.000063970000000,0.000065155000000,0.000629303000000,0.000186439000000,0.000487871000000 +0.000031574000000,0.000033550000000,0.000020133500000,0.000068711000000,0.000033550000000,0.000063970000000,0.000056463000000,0.000021911000000,0.000063970000000,0.000190390000000,0.000043822000000,0.000178933000000,0.000060414000000,0.000065946000000,0.000626537000000,0.000214093000000,0.000520266000000 +0.000029995000000,0.000034340000000,0.000019145500000,0.000067920000000,0.000033551000000,0.000083723000000,0.000059229000000,0.000020725500000,0.000064365000000,0.000174192000000,0.000043427000000,0.000174588000000,0.000062389000000,0.000062389000000,0.000594932000000,0.000181303000000,0.000487871000000 +0.000030785000000,0.000033550000000,0.000036133500000,0.000068710000000,0.000033155000000,0.000063970000000,0.000057649000000,0.000021713500000,0.000062390000000,0.000174192000000,0.000043427000000,0.000160365000000,0.000060020000000,0.000082933000000,0.000642735000000,0.000179328000000,0.000577155000000 +0.000030389000000,0.000034341000000,0.000019935500000,0.000082933000000,0.000034341000000,0.000063970000000,0.000056069000000,0.000022108500000,0.000061995000000,0.000155625000000,0.000043427000000,0.000209353000000,0.000061995000000,0.000064760000000,0.000631278000000,0.000217253000000,0.000554637000000 +0.000031180000000,0.000033945000000,0.000019738000000,0.000069500000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000021713500000,0.000064365000000,0.000208167000000,0.000075821000000,0.000152859000000,0.000060810000000,0.000065155000000,0.000594142000000,0.000181303000000,0.000485105000000 +0.000065550000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000047773000000,0.000063970000000,0.000056859000000,0.000061219500000,0.000064760000000,0.000173797000000,0.000043427000000,0.000179328000000,0.000060020000000,0.000064760000000,0.000595327000000,0.000184069000000,0.000554636000000 +0.000030785000000,0.000033550000000,0.000018948000000,0.000069501000000,0.000033550000000,0.000065550000000,0.000056859000000,0.000029417000000,0.000077402000000,0.000156414000000,0.000043822000000,0.000178538000000,0.000060809000000,0.000065155000000,0.000628908000000,0.000222389000000,0.000484315000000 +0.000030784000000,0.000032760000000,0.000018947500000,0.000069501000000,0.000033945000000,0.000065155000000,0.000055673000000,0.000027441500000,0.000063575000000,0.000175378000000,0.000043427000000,0.000192760000000,0.000060414000000,0.000062784000000,0.000661303000000,0.000180513000000,0.000487476000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000068316000000,0.000033551000000,0.000063575000000,0.000056463000000,0.000022306000000,0.000063970000000,0.000240958000000,0.000043427000000,0.000177748000000,0.000061994000000,0.000065551000000,0.000597698000000,0.000179723000000,0.000570043000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000032760000000,0.000100316000000,0.000090834000000,0.000021120500000,0.000061994000000,0.000170637000000,0.000043427000000,0.000179328000000,0.000062390000000,0.000061994000000,0.000628513000000,0.000246093000000,0.000483525000000 +0.000030784000000,0.000036316000000,0.000019935500000,0.000087673000000,0.000032760000000,0.000064365000000,0.000056463000000,0.000021911000000,0.000063180000000,0.000174192000000,0.000043822000000,0.000158390000000,0.000062389000000,0.000099130000000,0.000644315000000,0.000186439000000,0.000517895000000 +0.000031180000000,0.000049748000000,0.000019145500000,0.000083328000000,0.000033550000000,0.000063575000000,0.000055673000000,0.000022701500000,0.000064760000000,0.000206587000000,0.000043822000000,0.000211723000000,0.000061995000000,0.000063180000000,0.000594538000000,0.000180513000000,0.000560958000000 +0.000030785000000,0.000049748000000,0.000018750500000,0.000069106000000,0.000034735000000,0.000065946000000,0.000057253000000,0.000022701000000,0.000061995000000,0.000175377000000,0.000043822000000,0.000152859000000,0.000061205000000,0.000063970000000,0.000672760000000,0.000207772000000,0.000485896000000 +0.000030390000000,0.000035130000000,0.000019343000000,0.000068711000000,0.000033550000000,0.000064365000000,0.000057254000000,0.000023293500000,0.000178932000000,0.000174982000000,0.000057649000000,0.000174192000000,0.000063180000000,0.000061995000000,0.000632068000000,0.000184858000000,0.000521451000000 +0.000030390000000,0.000033945000000,0.000018948000000,0.000069501000000,0.000032760000000,0.000064761000000,0.000056463000000,0.000022898500000,0.000199081000000,0.000157600000000,0.000044612000000,0.000165896000000,0.000061994000000,0.000065155000000,0.000596908000000,0.000182883000000,0.000487871000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000069501000000,0.000052119000000,0.000066340000000,0.000055278000000,0.000022306000000,0.000081352000000,0.000206982000000,0.000044612000000,0.000204612000000,0.000061994000000,0.000063970000000,0.000595722000000,0.000182488000000,0.000557797000000 +0.000046983000000,0.000033155000000,0.000018750500000,0.000067920000000,0.000033550000000,0.000065155000000,0.000056859000000,0.000020331000000,0.000075032000000,0.000159575000000,0.000043822000000,0.000159574000000,0.000061995000000,0.000065155000000,0.000629698000000,0.000199476000000,0.000520266000000 +0.000029994000000,0.000033945000000,0.000019738000000,0.000067921000000,0.000034736000000,0.000135081000000,0.000083723000000,0.000020725500000,0.000098341000000,0.000175377000000,0.000043822000000,0.000197500000000,0.000061995000000,0.000065156000000,0.000713056000000,0.000182488000000,0.000487475000000 +0.000029995000000,0.000033551000000,0.000019540500000,0.000072266000000,0.000034340000000,0.000066735000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000174983000000,0.000043427000000,0.000174192000000,0.000060809000000,0.000098735000000,0.000597698000000,0.000214883000000,0.000555821000000 +0.000029995000000,0.000033155000000,0.000019738000000,0.000069105000000,0.000033946000000,0.000063970000000,0.000055673000000,0.000021911000000,0.000061205000000,0.000220809000000,0.000043426000000,0.000168266000000,0.000062390000000,0.000062784000000,0.000627327000000,0.000180118000000,0.000484711000000 +0.000031179000000,0.000033946000000,0.000020133000000,0.000069501000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000062390000000,0.000162735000000,0.000043427000000,0.000177748000000,0.000061600000000,0.000065155000000,0.000628908000000,0.000182093000000,0.000485105000000 +0.000031179000000,0.000033945000000,0.000018948000000,0.000069500000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020133000000,0.000061599000000,0.000152464000000,0.000043427000000,0.000162735000000,0.000073847000000,0.000065550000000,0.000596118000000,0.000261501000000,0.000568069000000 +0.000031180000000,0.000033550000000,0.000020528000000,0.000069106000000,0.000035920000000,0.000065551000000,0.000056859000000,0.000064775000000,0.000100711000000,0.000173007000000,0.000043427000000,0.000201057000000,0.000061599000000,0.000063180000000,0.000741106000000,0.000190785000000,0.000484710000000 +0.000031575000000,0.000033945000000,0.000018947500000,0.000071081000000,0.000034341000000,0.000064760000000,0.000055673000000,0.000035935500000,0.000061600000000,0.000207377000000,0.000043427000000,0.000513550000000,0.000061994000000,0.000065156000000,0.000631278000000,0.000182489000000,0.000557797000000 +0.000030389000000,0.000033550000000,0.000018948000000,0.000067920000000,0.000033550000000,0.000085303000000,0.000056069000000,0.000020330500000,0.000081352000000,0.000173402000000,0.000043822000000,0.000498537000000,0.000062390000000,0.000065550000000,0.000630488000000,0.000214488000000,0.000553846000000 +0.000030390000000,0.000034341000000,0.000019343000000,0.000143378000000,0.000033550000000,0.000065155000000,0.000056464000000,0.000021516000000,0.000063969000000,0.000156019000000,0.000043821000000,0.000204217000000,0.000060019000000,0.000063575000000,0.000596117000000,0.000182489000000,0.000483525000000 +0.000030390000000,0.000033550000000,0.000019540500000,0.000068316000000,0.000088068000000,0.000064365000000,0.000071476000000,0.000020528000000,0.000075032000000,0.000156019000000,0.000044217000000,0.000191970000000,0.000061994000000,0.000090835000000,0.000628908000000,0.000182488000000,0.000518291000000 +0.000030785000000,0.000033551000000,0.000019738000000,0.000071081000000,0.000084908000000,0.000064365000000,0.000055674000000,0.000021713500000,0.000061204000000,0.000207377000000,0.000043427000000,0.000190389000000,0.000061600000000,0.000065155000000,0.000632068000000,0.000268217000000,0.000484710000000 +0.000031180000000,0.000033550000000,0.000019343000000,0.000069500000000,0.000036316000000,0.000063180000000,0.000056859000000,0.000022108000000,0.000064760000000,0.000160760000000,0.000043822000000,0.000175377000000,0.000082933000000,0.000064760000000,0.000595722000000,0.000184859000000,0.000934685000000 +0.000029995000000,0.000034341000000,0.000019145500000,0.000068710000000,0.000048563000000,0.000064365000000,0.000056859000000,0.000020528500000,0.000061995000000,0.000173797000000,0.000043426000000,0.000180513000000,0.000060414000000,0.000063970000000,0.000643920000000,0.000178538000000,0.000487475000000 +0.000030390000000,0.000034340000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000067130000000,0.000057254000000,0.000021911000000,0.000061600000000,0.000173797000000,0.000044612000000,0.000252019000000,0.000062785000000,0.000065156000000,0.000629303000000,0.000220809000000,0.000521056000000 +0.000029994000000,0.000033550000000,0.000018750000000,0.000070686000000,0.000033945000000,0.000065945000000,0.000056069000000,0.000029417000000,0.000081747000000,0.000206982000000,0.000043032000000,0.000192365000000,0.000060414000000,0.000063575000000,0.000595723000000,0.000182488000000,0.000487476000000 +0.000031575000000,0.000033945000000,0.000018948000000,0.000088464000000,0.000033155000000,0.000099131000000,0.000056859000000,0.000021713500000,0.000067920000000,0.000156415000000,0.000099130000000,0.000195526000000,0.000060810000000,0.000063180000000,0.000594932000000,0.000186834000000,0.000520661000000 +0.000030390000000,0.000033945000000,0.000020133000000,0.000067921000000,0.000048562000000,0.000063575000000,0.000056858000000,0.000020528500000,0.000063970000000,0.000179723000000,0.000043426000000,0.000256760000000,0.000060810000000,0.000096760000000,0.000634043000000,0.000250439000000,0.000487081000000 +0.000029995000000,0.000033945000000,0.000019343000000,0.000068316000000,0.000033155000000,0.000065155000000,0.000072266000000,0.000020330500000,0.000065155000000,0.000173402000000,0.000045402000000,0.000159970000000,0.000060414000000,0.000063180000000,0.000629698000000,0.000180908000000,0.000487080000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000069105000000,0.000033946000000,0.000063970000000,0.000055279000000,0.000021911000000,0.000064760000000,0.000189995000000,0.000043427000000,0.000175772000000,0.000062390000000,0.000063575000000,0.000597698000000,0.000181303000000,0.000526587000000 +0.000033155000000,0.000034341000000,0.000019343000000,0.000069106000000,0.000035130000000,0.000064365000000,0.000056464000000,0.000021910500000,0.000061994000000,0.000173402000000,0.000043822000000,0.000151674000000,0.000082538000000,0.000064760000000,0.000684216000000,0.000216069000000,0.000484315000000 +0.000031575000000,0.000034735000000,0.000019145500000,0.000068710000000,0.000033946000000,0.000064365000000,0.000056859000000,0.000020331000000,0.000062390000000,0.000173797000000,0.000044217000000,0.000220019000000,0.000060019000000,0.000062390000000,0.000628512000000,0.000188810000000,0.000519871000000 +0.000032760000000,0.000047377000000,0.000019935500000,0.000069106000000,0.000033155000000,0.000064760000000,0.000056464000000,0.000020725500000,0.000061994000000,0.000156019000000,0.000043822000000,0.000178143000000,0.000060415000000,0.000062390000000,0.000596513000000,0.000182488000000,0.000484710000000 +0.000030390000000,0.000033551000000,0.000019343000000,0.000069501000000,0.000034736000000,0.000064760000000,0.000056068000000,0.000020528000000,0.000095180000000,0.000244118000000,0.000043426000000,0.000157994000000,0.000061995000000,0.000065550000000,0.000644710000000,0.000293500000000,0.000487081000000 +0.000029994000000,0.000033945000000,0.000019145500000,0.000191575000000,0.000033946000000,0.000099130000000,0.000056463000000,0.000020331000000,0.000061599000000,0.000173402000000,0.000043822000000,0.000176562000000,0.000062785000000,0.000061994000000,0.000647081000000,0.000310883000000,0.000519475000000 +0.000029995000000,0.000033945000000,0.000019936000000,0.000203032000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000022108500000,0.000061205000000,0.000156019000000,0.000065155000000,0.000263081000000,0.000062390000000,0.000098341000000,0.000595327000000,0.000214489000000,0.000484316000000 +0.000030390000000,0.000033551000000,0.000019145500000,0.000134686000000,0.000034736000000,0.000066340000000,0.000076612000000,0.000020330500000,0.000063179000000,0.000174587000000,0.000046192000000,0.000157995000000,0.000060414000000,0.000065155000000,0.000595328000000,0.000181698000000,0.000517500000000 +0.000031180000000,0.000033155000000,0.000020330500000,0.000097155000000,0.000052118000000,0.000065551000000,0.000056068000000,0.000022108500000,0.000061995000000,0.000173007000000,0.000048168000000,0.000179723000000,0.000061994000000,0.000062785000000,0.000627723000000,0.000182093000000,0.000485501000000 +0.000030785000000,0.000033945000000,0.000019145500000,0.000104662000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000020923500000,0.000062389000000,0.000175377000000,0.000046193000000,0.000153254000000,0.000082933000000,0.000065155000000,0.000629698000000,0.000220019000000,0.000485500000000 +0.000030784000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000032760000000,0.000066340000000,0.000056069000000,0.000020528000000,0.000062390000000,0.000174588000000,0.000046192000000,0.000188809000000,0.000078588000000,0.000063574000000,0.000599673000000,0.000180513000000,0.000537648000000 +0.000030785000000,0.000033945000000,0.000019738000000,0.000069105000000,0.000033945000000,0.000063575000000,0.000056464000000,0.000021911000000,0.000061995000000,0.000157995000000,0.000046192000000,0.000164711000000,0.000060809000000,0.000065155000000,0.000665253000000,0.000186439000000,0.000487871000000 +0.000030390000000,0.000033551000000,0.000019145500000,0.000069105000000,0.000033946000000,0.000065550000000,0.000056464000000,0.000020528500000,0.000075426000000,0.000208958000000,0.000047377000000,0.000157995000000,0.000060809000000,0.000063180000000,0.000645895000000,0.000240957000000,0.000522636000000 +0.000030390000000,0.000061995000000,0.000019738000000,0.000069105000000,0.000033155000000,0.000099525000000,0.000056859000000,0.000020330500000,0.000065155000000,0.000159179000000,0.000080167000000,0.000159575000000,0.000060414000000,0.000063180000000,0.000595723000000,0.000183278000000,0.000536069000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000067921000000,0.000033155000000,0.000064760000000,0.000056464000000,0.000030405000000,0.000061995000000,0.000176167000000,0.000081747000000,0.000190785000000,0.000061599000000,0.000095970000000,0.000628908000000,0.000180118000000,0.000487080000000 +0.000030389000000,0.000033156000000,0.000018750500000,0.000069501000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000022108500000,0.000065945000000,0.000207773000000,0.000046587000000,0.000174587000000,0.000061994000000,0.000062785000000,0.000631279000000,0.000216859000000,0.000520661000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000064365000000,0.000071081000000,0.000021911000000,0.000061995000000,0.000180513000000,0.000047377000000,0.000167872000000,0.000060810000000,0.000065156000000,0.000594933000000,0.000179328000000,0.000484710000000 +0.000031180000000,0.000033550000000,0.000018750500000,0.000069106000000,0.000035526000000,0.000065945000000,0.000056858000000,0.000020726000000,0.000063180000000,0.000162340000000,0.000046192000000,0.000177352000000,0.000069106000000,0.000064365000000,0.000594932000000,0.000181699000000,0.000554637000000 +0.000031970000000,0.000033155000000,0.000018947500000,0.000069106000000,0.000048563000000,0.000064365000000,0.000056463000000,0.000021713500000,0.000063970000000,0.000151674000000,0.000046192000000,0.000161550000000,0.000061599000000,0.000063180000000,0.000629698000000,0.000213698000000,0.000519476000000 +0.000065155000000,0.000033156000000,0.000019540500000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056463000000,0.000022898500000,0.000061995000000,0.000223970000000,0.000046587000000,0.000160365000000,0.000061995000000,0.000065550000000,0.000691722000000,0.000182488000000,0.000484315000000 +0.000030785000000,0.000033155000000,0.000019936000000,0.000069106000000,0.000033155000000,0.000063575000000,0.000056069000000,0.000022898500000,0.000061994000000,0.000174192000000,0.000046587000000,0.000175772000000,0.000060414000000,0.000063180000000,0.000621007000000,0.000179328000000,0.000520661000000 +0.000030389000000,0.000033156000000,0.000019343000000,0.000068315000000,0.000033946000000,0.000077797000000,0.000056859000000,0.000021516000000,0.000062390000000,0.000174192000000,0.000046192000000,0.000214489000000,0.000062390000000,0.000062390000000,0.000630883000000,0.000216464000000,0.000485105000000 +0.000030785000000,0.000033946000000,0.000020133500000,0.000068316000000,0.000032760000000,0.000064365000000,0.000060020000000,0.000021713500000,0.000063970000000,0.000156415000000,0.000046587000000,0.000161945000000,0.000062390000000,0.000078588000000,0.000666439000000,0.000181303000000,0.000483525000000 +0.000029994000000,0.000033945000000,0.000019343000000,0.000068316000000,0.000032760000000,0.000063970000000,0.000075031000000,0.000022306000000,0.000061994000000,0.000170242000000,0.000084118000000,0.000157995000000,0.000060810000000,0.000064760000000,0.000595723000000,0.000180118000000,0.000518290000000 +0.000030785000000,0.000032760000000,0.000020133500000,0.000102291000000,0.000033945000000,0.000063970000000,0.000084908000000,0.000029022000000,0.000061995000000,0.000175377000000,0.000065550000000,0.000173402000000,0.000061994000000,0.000063575000000,0.000599278000000,0.000221205000000,0.000484711000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000033946000000,0.000066340000000,0.000056464000000,0.000022306000000,0.000064365000000,0.000211723000000,0.000128365000000,0.000216464000000,0.000063575000000,0.000065550000000,0.000949698000000,0.000183278000000,0.000656562000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000034735000000,0.000065550000000,0.000056859000000,0.000021318000000,0.000062389000000,0.000173402000000,0.000047772000000,0.000176168000000,0.000062390000000,0.000064761000000,0.000665648000000,0.000191575000000,0.000521056000000 +0.000030389000000,0.000034340000000,0.000019541000000,0.000069106000000,0.000033945000000,0.000065156000000,0.000056859000000,0.000022306000000,0.000097550000000,0.000174982000000,0.000046192000000,0.000181698000000,0.000062390000000,0.000099131000000,0.000627722000000,0.000220414000000,0.000487870000000 +0.000030785000000,0.000034736000000,0.000020133500000,0.000069106000000,0.000032760000000,0.000084118000000,0.000057649000000,0.000022503500000,0.000063970000000,0.000173797000000,0.000045797000000,0.000192365000000,0.000061994000000,0.000063970000000,0.000594932000000,0.000181304000000,0.000521846000000 +0.000031970000000,0.000033155000000,0.000020133000000,0.000146933000000,0.000047378000000,0.000067920000000,0.000056859000000,0.000020330500000,0.000064365000000,0.000156414000000,0.000062785000000,0.000208957000000,0.000062785000000,0.000082933000000,0.000641550000000,0.000180118000000,0.000486686000000 +0.000030785000000,0.000035130000000,0.000019935500000,0.000068711000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020528500000,0.000061600000000,0.000212513000000,0.000047773000000,0.000174192000000,0.000062390000000,0.000062389000000,0.000683426000000,0.000237402000000,0.000497748000000 +0.000030390000000,0.000083328000000,0.000019738000000,0.000137452000000,0.000033551000000,0.000063970000000,0.000090439000000,0.000020528000000,0.000064365000000,0.000173007000000,0.000046193000000,0.000159574000000,0.000062785000000,0.000064761000000,0.000596117000000,0.000181698000000,0.000689352000000 +0.000030785000000,0.000034736000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000065550000000,0.000056069000000,0.000021713500000,0.000061599000000,0.000156415000000,0.000046192000000,0.000208958000000,0.000061994000000,0.000065945000000,0.000610735000000,0.000190785000000,0.000483920000000 +0.000031180000000,0.000033550000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000085698000000,0.000056464000000,0.000020331000000,0.000064760000000,0.000174192000000,0.000045797000000,0.000448365000000,0.000060809000000,0.000133896000000,0.000643130000000,0.000216069000000,0.000534488000000 +0.000031970000000,0.000034736000000,0.000020331000000,0.000069501000000,0.000033946000000,0.000064760000000,0.000056464000000,0.000021318000000,0.000061995000000,0.000207377000000,0.000046192000000,0.000316809000000,0.000062390000000,0.000075427000000,0.000629698000000,0.000182489000000,0.000554636000000 +0.000029994000000,0.000034341000000,0.000019145500000,0.000068710000000,0.000034735000000,0.000063970000000,0.000056464000000,0.000020725500000,0.000061205000000,0.000156414000000,0.000045797000000,0.000178538000000,0.000060414000000,0.000063970000000,0.000595723000000,0.000181698000000,0.000484315000000 +0.000032760000000,0.000033550000000,0.000019935500000,0.000069501000000,0.000033156000000,0.000065550000000,0.000055674000000,0.000022108500000,0.000061994000000,0.000175772000000,0.000047377000000,0.000157995000000,0.000062390000000,0.000190390000000,0.000678290000000,0.000214094000000,0.000520661000000 +0.000029994000000,0.000033155000000,0.000019343000000,0.000068710000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000061995000000,0.000173402000000,0.000046193000000,0.000196711000000,0.000061995000000,0.000080957000000,0.000632859000000,0.000180118000000,0.000485105000000 +0.000030785000000,0.000033550000000,0.000019145500000,0.000087278000000,0.000033945000000,0.000064760000000,0.000057649000000,0.000022108500000,0.000061994000000,0.000206192000000,0.000095970000000,0.000179722000000,0.000062390000000,0.000061995000000,0.000657748000000,0.000181303000000,0.000483921000000 +0.000033550000000,0.000034340000000,0.000019540500000,0.000068315000000,0.000033946000000,0.000064760000000,0.000056464000000,0.000020528000000,0.000063970000000,0.000174192000000,0.000046192000000,0.000157994000000,0.000062390000000,0.000064760000000,0.000595328000000,0.000178538000000,0.000519080000000 +0.000030390000000,0.000053698000000,0.000018553000000,0.000069501000000,0.000033155000000,0.000080957000000,0.000056069000000,0.000020330500000,0.000062390000000,0.000173402000000,0.000047772000000,0.000178933000000,0.000061599000000,0.000065945000000,0.000635623000000,0.000188809000000,0.000483526000000 +0.000030784000000,0.000034340000000,0.000018948000000,0.000069500000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000020330500000,0.000061994000000,0.000175377000000,0.000046192000000,0.000235822000000,0.000060414000000,0.000063180000000,0.000664859000000,0.000183673000000,0.000517501000000 +0.000029995000000,0.000034340000000,0.000019738000000,0.000068710000000,0.000034735000000,0.000064365000000,0.000057649000000,0.000034355500000,0.000080563000000,0.000214094000000,0.000046192000000,0.000174587000000,0.000061995000000,0.000132316000000,0.000597303000000,0.000180908000000,0.000487081000000 +0.000030390000000,0.000034340000000,0.000019145500000,0.000069501000000,0.000033155000000,0.000063970000000,0.000057254000000,0.000021713500000,0.000061600000000,0.000157995000000,0.000046192000000,0.000165500000000,0.000060414000000,0.000065945000000,0.000645105000000,0.000185254000000,0.000485105000000 +0.000030390000000,0.000033550000000,0.000018750000000,0.000068711000000,0.000033946000000,0.000063970000000,0.000055674000000,0.000020330500000,0.000064365000000,0.000160365000000,0.000045007000000,0.000157995000000,0.000060415000000,0.000062390000000,0.000629303000000,0.000185649000000,0.000678685000000 +0.000030785000000,0.000032760000000,0.000019145500000,0.000067921000000,0.000033945000000,0.000063575000000,0.000056463000000,0.000021318500000,0.000061994000000,0.000159575000000,0.000043821000000,0.000244513000000,0.000060414000000,0.000063180000000,0.000596118000000,0.000178538000000,0.000487080000000 +0.000030389000000,0.000033155000000,0.000019343000000,0.000101501000000,0.000034736000000,0.000067130000000,0.000057253000000,0.000020330500000,0.000065155000000,0.000209353000000,0.000043427000000,0.000176563000000,0.000062390000000,0.000062390000000,0.000629302000000,0.000181304000000,0.000484711000000 +0.000029995000000,0.000033155000000,0.000019738500000,0.000068711000000,0.000032760000000,0.000065155000000,0.000056463000000,0.000022108500000,0.000064365000000,0.000175377000000,0.000043427000000,0.000174192000000,0.000060020000000,0.000063180000000,0.000855673000000,0.000180908000000,0.000569648000000 +0.000075822000000,0.000034340000000,0.000021713500000,0.000069105000000,0.000033945000000,0.000063970000000,0.000089649000000,0.000020331000000,0.000063970000000,0.000181698000000,0.000043426000000,0.000167476000000,0.000059624000000,0.000063575000000,0.000627723000000,0.000182488000000,0.000485105000000 +0.000067130000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033550000000,0.000063575000000,0.000057649000000,0.000020923000000,0.000061995000000,0.000163130000000,0.000044612000000,0.000212118000000,0.000062390000000,0.000065550000000,0.000596117000000,0.000183673000000,0.000560167000000 +0.000094785000000,0.000089649000000,0.000040478500000,0.000069501000000,0.000069106000000,0.000065946000000,0.000056464000000,0.000021713500000,0.000130736000000,0.000221600000000,0.000043427000000,0.000171426000000,0.000062785000000,0.000064365000000,0.000629303000000,0.000257155000000,0.000554636000000 +0.000034735000000,0.000034340000000,0.000020133000000,0.000071082000000,0.000034736000000,0.000065945000000,0.000056859000000,0.000020725500000,0.000064365000000,0.000174982000000,0.000046192000000,0.000169057000000,0.000060414000000,0.000063575000000,0.000628907000000,0.000179723000000,0.000484711000000 +0.000043427000000,0.000034736000000,0.000019145000000,0.000069896000000,0.000033155000000,0.000064365000000,0.000055674000000,0.000028824500000,0.000064760000000,0.000174982000000,0.000043426000000,0.000186835000000,0.000061995000000,0.000064760000000,0.000598488000000,0.000182093000000,0.000538833000000 +0.000031179000000,0.000033945000000,0.000018750500000,0.000067920000000,0.000033550000000,0.000065945000000,0.000056463000000,0.000022108500000,0.000065155000000,0.000173007000000,0.000043427000000,0.000177747000000,0.000061995000000,0.000063179000000,0.000597698000000,0.000181698000000,0.000484711000000 +0.000030390000000,0.000033945000000,0.000019343000000,0.000067920000000,0.000033551000000,0.000064365000000,0.000056858000000,0.000024479000000,0.000064365000000,0.000156020000000,0.000043822000000,0.000171822000000,0.000060415000000,0.000063575000000,0.000629697000000,0.000205402000000,0.000535673000000 +0.000030390000000,0.000033155000000,0.000020330500000,0.000069106000000,0.000033155000000,0.000065155000000,0.000056859000000,0.000023491000000,0.000062390000000,0.000156019000000,0.000043032000000,0.000167872000000,0.000061994000000,0.000062784000000,0.000652216000000,0.000185649000000,0.000518686000000 +0.000030785000000,0.000033945000000,0.000020133000000,0.000068711000000,0.000033550000000,0.000109798000000,0.000075821000000,0.000022108500000,0.000064365000000,0.000175773000000,0.000063180000000,0.000226735000000,0.000061994000000,0.000063180000000,0.000598488000000,0.000180514000000,0.000484315000000 +0.000031970000000,0.000034340000000,0.000018948000000,0.000069106000000,0.000032760000000,0.000065155000000,0.000056859000000,0.000022306000000,0.000081352000000,0.000160365000000,0.000044612000000,0.000169846000000,0.000060414000000,0.000065945000000,0.000643130000000,0.000180118000000,0.000551871000000 +0.000030390000000,0.000033156000000,0.000018948000000,0.000069501000000,0.000032760000000,0.000064760000000,0.000056859000000,0.000022305500000,0.000061600000000,0.000174192000000,0.000043426000000,0.000174982000000,0.000082933000000,0.000065946000000,0.000681056000000,0.000182489000000,0.000519871000000 +0.000030785000000,0.000034340000000,0.000018750500000,0.000069106000000,0.000033551000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000064760000000,0.000173797000000,0.000045007000000,0.000182093000000,0.000112958000000,0.000064760000000,0.000594933000000,0.000182094000000,0.000484710000000 +0.000029994000000,0.000036316000000,0.000020726000000,0.000069106000000,0.000033156000000,0.000064365000000,0.000056464000000,0.000023293500000,0.000062390000000,0.000173797000000,0.000044612000000,0.000221205000000,0.000065550000000,0.000062390000000,0.000594933000000,0.000180513000000,0.000552661000000 +0.000031970000000,0.000033945000000,0.000019145500000,0.000101106000000,0.000033945000000,0.000066340000000,0.000056859000000,0.000021121000000,0.000062390000000,0.000156415000000,0.000044217000000,0.000189599000000,0.000061600000000,0.000063180000000,0.000628908000000,0.000182883000000,0.000487476000000 +0.000029995000000,0.000033945000000,0.000019738000000,0.000068315000000,0.000033156000000,0.000063575000000,0.000056463000000,0.000023491000000,0.000064760000000,0.000174587000000,0.000044612000000,0.000185254000000,0.000062390000000,0.000065946000000,0.000628118000000,0.000181698000000,0.000518685000000 +0.000029994000000,0.000033946000000,0.000018750000000,0.000068710000000,0.000036710000000,0.000063180000000,0.000057253000000,0.000022898500000,0.000061995000000,0.000174588000000,0.000046193000000,0.000170242000000,0.000062390000000,0.000063970000000,0.000596908000000,0.000181303000000,0.000556611000000 +0.000030785000000,0.000033155000000,0.000018750500000,0.000068711000000,0.000033156000000,0.000077402000000,0.000055673000000,0.000022108500000,0.000061600000000,0.000155624000000,0.000046587000000,0.000185254000000,0.000061205000000,0.000065550000000,0.000647081000000,0.000234241000000,0.000484710000000 +0.000069501000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000064365000000,0.000058044000000,0.000020330500000,0.000095575000000,0.000192760000000,0.000046192000000,0.000161945000000,0.000061599000000,0.000099526000000,0.000641155000000,0.000182488000000,0.000518685000000 +0.000031180000000,0.000033550000000,0.000020330500000,0.000069896000000,0.000033155000000,0.000066340000000,0.000056859000000,0.000022503500000,0.000064760000000,0.000174192000000,0.000046193000000,0.000189994000000,0.000061600000000,0.000063575000000,0.000594932000000,0.000202636000000,0.000485895000000 +0.000030784000000,0.000033550000000,0.000020133500000,0.000068711000000,0.000033550000000,0.000063575000000,0.000057254000000,0.000020330500000,0.000061600000000,0.000156415000000,0.000046192000000,0.000223575000000,0.000061600000000,0.000064365000000,0.000630883000000,0.000182883000000,0.000888463000000 +0.000029995000000,0.000033945000000,0.000019343000000,0.000069896000000,0.000033550000000,0.000064365000000,0.000055674000000,0.000022108000000,0.000063970000000,0.000175377000000,0.000046192000000,0.000167871000000,0.000060415000000,0.000063180000000,0.000628118000000,0.000178538000000,0.000498143000000 +0.000030785000000,0.000033945000000,0.000018750500000,0.000101501000000,0.000033155000000,0.000063575000000,0.000058044000000,0.000022108000000,0.000062784000000,0.000228316000000,0.000046982000000,0.000187229000000,0.000062390000000,0.000061995000000,0.000684217000000,0.000183278000000,0.000518290000000 +0.000029994000000,0.000033945000000,0.000020330500000,0.000068315000000,0.000033946000000,0.000065945000000,0.000057254000000,0.000027639000000,0.000063970000000,0.000156809000000,0.000047377000000,0.000189995000000,0.000060019000000,0.000066736000000,0.000608759000000,0.000182883000000,0.000483130000000 +0.000030390000000,0.000033155000000,0.000019343000000,0.000069500000000,0.000046982000000,0.000064760000000,0.000056463000000,0.000021515500000,0.000061995000000,0.000174587000000,0.000047772000000,0.000202637000000,0.000061995000000,0.000063970000000,0.000649056000000,0.000183674000000,0.000568859000000 +0.000031180000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000033945000000,0.000064365000000,0.000056463000000,0.000020923000000,0.000061994000000,0.000172612000000,0.000045797000000,0.000189994000000,0.000060809000000,0.000064365000000,0.000705154000000,0.000181303000000,0.000482735000000 +0.000030390000000,0.000033551000000,0.000019738500000,0.000069500000000,0.000033550000000,0.000066340000000,0.000152858000000,0.000021713500000,0.000077007000000,0.000208563000000,0.000046983000000,0.000161945000000,0.000097155000000,0.000105451000000,0.000611920000000,0.000185648000000,0.000521451000000 +0.000029995000000,0.000034735000000,0.000018947500000,0.000068711000000,0.000033155000000,0.000066341000000,0.000089254000000,0.000024084000000,0.000064760000000,0.000173797000000,0.000046192000000,0.000185254000000,0.000061995000000,0.000063970000000,0.000681846000000,0.000180908000000,0.000520266000000 +0.000031179000000,0.000033550000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000066735000000,0.000058439000000,0.000022306000000,0.000062390000000,0.000158390000000,0.000048167000000,0.000185649000000,0.000062785000000,0.000063575000000,0.000678685000000,0.000180513000000,0.000485106000000 +0.000039081000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000032760000000,0.000064365000000,0.000056069000000,0.000020923000000,0.000061599000000,0.000159970000000,0.000045797000000,0.000167081000000,0.000061600000000,0.000064760000000,0.000665254000000,0.000185253000000,0.000570044000000 +0.000030785000000,0.000033945000000,0.000020133000000,0.000070291000000,0.000034340000000,0.000066340000000,0.000057254000000,0.000022306000000,0.000063970000000,0.000210143000000,0.000046192000000,0.000169451000000,0.000062785000000,0.000065155000000,0.000596513000000,0.000183673000000,0.000573599000000 +0.000029995000000,0.000033550000000,0.000018750500000,0.000067921000000,0.000033945000000,0.000065945000000,0.000057254000000,0.000022305500000,0.000063970000000,0.000176167000000,0.000046983000000,0.000188414000000,0.000062389000000,0.000064760000000,0.000677896000000,0.000180513000000,0.000485105000000 +0.000029995000000,0.000085698000000,0.000019343000000,0.000068316000000,0.000033155000000,0.000064365000000,0.000057254000000,0.000031985000000,0.000062390000000,0.000174982000000,0.000048168000000,0.000184464000000,0.000062390000000,0.000064760000000,0.000667229000000,0.000182093000000,0.000520661000000 +0.000030785000000,0.000033550000000,0.000020133000000,0.000068710000000,0.000034341000000,0.000066340000000,0.000071476000000,0.000020528500000,0.000079773000000,0.000180118000000,0.000046193000000,0.000177748000000,0.000061995000000,0.000062785000000,0.000655772000000,0.000180908000000,0.000483920000000 +0.000031575000000,0.000033945000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000065945000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000197106000000,0.000046192000000,0.000188809000000,0.000063180000000,0.000080563000000,0.000594932000000,0.000180908000000,0.000485500000000 +0.000031180000000,0.000034736000000,0.000020331000000,0.000068710000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000061995000000,0.000152463000000,0.000048562000000,0.000294291000000,0.000061995000000,0.000062785000000,0.000677895000000,0.000184464000000,0.000519475000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033155000000,0.000066340000000,0.000056858000000,0.000021911000000,0.000061995000000,0.000173402000000,0.000046587000000,0.000273748000000,0.000060415000000,0.000065155000000,0.000645501000000,0.000180513000000,0.000483525000000 +0.000031575000000,0.000033945000000,0.000018948000000,0.000168662000000,0.000034340000000,0.000063575000000,0.000055674000000,0.000021515500000,0.000064365000000,0.000174192000000,0.000048563000000,0.000186834000000,0.000062389000000,0.000065155000000,0.000598488000000,0.000181304000000,0.000518685000000 +0.000030784000000,0.000033155000000,0.000019738000000,0.000081748000000,0.000034735000000,0.000065550000000,0.000056859000000,0.000020923500000,0.000063575000000,0.000184858000000,0.000046587000000,0.000178537000000,0.000061599000000,0.000064365000000,0.000648661000000,0.000212908000000,0.000540019000000 +0.000029995000000,0.000033551000000,0.000019145500000,0.000067526000000,0.000033155000000,0.000063575000000,0.000056859000000,0.000021713500000,0.000064760000000,0.000156809000000,0.000046192000000,0.000171032000000,0.000061599000000,0.000063180000000,0.000664464000000,0.000179723000000,0.000483525000000 +0.000032365000000,0.000035130000000,0.000018948000000,0.000070291000000,0.000033550000000,0.000097550000000,0.000056464000000,0.000020725500000,0.000116908000000,0.000156020000000,0.000046192000000,0.000167476000000,0.000060415000000,0.000064760000000,0.000664463000000,0.000183673000000,0.000518290000000 +0.000030390000000,0.000053303000000,0.000018947500000,0.000069501000000,0.000033945000000,0.000066341000000,0.000077007000000,0.000021120500000,0.000061995000000,0.000174587000000,0.000046588000000,0.000185649000000,0.000062390000000,0.000065156000000,0.000598488000000,0.000195921000000,0.000484315000000 +0.000031575000000,0.000045797000000,0.000020726000000,0.000069501000000,0.000033550000000,0.000066340000000,0.000056859000000,0.000021713500000,0.000065550000000,0.000298637000000,0.000045797000000,0.000170637000000,0.000060810000000,0.000065550000000,0.001076513000000,0.000180908000000,0.000517896000000 +0.000030390000000,0.000034341000000,0.000018750500000,0.000069106000000,0.000035130000000,0.000063970000000,0.000056464000000,0.000020330500000,0.000062390000000,0.000173402000000,0.000048562000000,0.000174587000000,0.000060019000000,0.000065155000000,0.000610735000000,0.000183673000000,0.000555031000000 +0.000029995000000,0.000033551000000,0.000018948000000,0.000084118000000,0.000035526000000,0.000063970000000,0.000056859000000,0.000023886000000,0.000061994000000,0.000174587000000,0.000045798000000,0.000181698000000,0.000061995000000,0.000064760000000,0.000627723000000,0.000282439000000,0.000484710000000 +0.000029994000000,0.000033155000000,0.000020528500000,0.000069106000000,0.000088859000000,0.000063970000000,0.000056464000000,0.000020726000000,0.000061600000000,0.000208167000000,0.000047772000000,0.000186439000000,0.000060415000000,0.000063575000000,0.000614686000000,0.000184464000000,0.000518291000000 +0.000033156000000,0.000033945000000,0.000020133000000,0.000067920000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000022306000000,0.000066736000000,0.000156809000000,0.000045797000000,0.000191180000000,0.000060414000000,0.000065551000000,0.000657748000000,0.000211328000000,0.000510785000000 +0.000030390000000,0.000033551000000,0.000019738000000,0.000067921000000,0.000032760000000,0.000063575000000,0.000058834000000,0.000021516000000,0.000062785000000,0.000179723000000,0.000045797000000,0.000184858000000,0.000061994000000,0.000064760000000,0.000628118000000,0.000218834000000,0.000485106000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000156809000000,0.000056464000000,0.000021713500000,0.000078587000000,0.000174193000000,0.000046192000000,0.000169452000000,0.000060415000000,0.000065155000000,0.000668414000000,0.000184858000000,0.000853303000000 +0.000030785000000,0.000033155000000,0.000019935500000,0.000069500000000,0.000033550000000,0.000069501000000,0.000056069000000,0.000022306000000,0.000061600000000,0.000225550000000,0.000045797000000,0.000186044000000,0.000062785000000,0.000064761000000,0.000598488000000,0.000217649000000,0.000559377000000 +0.000031575000000,0.000034340000000,0.000020133000000,0.000070291000000,0.000033155000000,0.000064365000000,0.000071476000000,0.000024479000000,0.000064365000000,0.000174587000000,0.000046193000000,0.000161945000000,0.000061599000000,0.000062785000000,0.000677105000000,0.000180909000000,0.000483525000000 +0.000031180000000,0.000033946000000,0.000018750500000,0.000069106000000,0.000033945000000,0.000067131000000,0.000056463000000,0.000027837000000,0.000061994000000,0.000173797000000,0.000046982000000,0.000190785000000,0.000061994000000,0.000064760000000,0.000628512000000,0.000181698000000,0.000519476000000 +0.000030390000000,0.000033945000000,0.000019343000000,0.000069106000000,0.000032760000000,0.000065945000000,0.000056463000000,0.000022898500000,0.000064760000000,0.000156415000000,0.000046192000000,0.000188809000000,0.000061994000000,0.000064760000000,0.000595722000000,0.000184463000000,0.000484711000000 +0.000030390000000,0.000034340000000,0.000019145500000,0.000069501000000,0.000035131000000,0.000065155000000,0.000056464000000,0.000021120500000,0.000064760000000,0.000215673000000,0.000047772000000,0.000167871000000,0.000061995000000,0.000065550000000,0.000594143000000,0.000197501000000,0.000484710000000 +0.000030784000000,0.000032760000000,0.000018948000000,0.000068316000000,0.000034340000000,0.000065550000000,0.000056464000000,0.000021713000000,0.000063970000000,0.000172612000000,0.000046983000000,0.000186834000000,0.000063180000000,0.000063970000000,0.000637994000000,0.000181698000000,0.000518291000000 +0.000029995000000,0.000034736000000,0.000019738000000,0.000068711000000,0.000088069000000,0.000077797000000,0.000057649000000,0.000020330500000,0.000061995000000,0.000156809000000,0.000045797000000,0.000187624000000,0.000061995000000,0.000062390000000,0.000666044000000,0.000213698000000,0.000483525000000 +0.000033550000000,0.000034340000000,0.000019738000000,0.000068316000000,0.000032760000000,0.000065156000000,0.000056464000000,0.000026454500000,0.000061994000000,0.000174192000000,0.000046982000000,0.000167477000000,0.000060414000000,0.000064760000000,0.000594933000000,0.000184859000000,0.000518685000000 +0.000030390000000,0.000033550000000,0.000019343000000,0.000069105000000,0.000034341000000,0.000063970000000,0.000056069000000,0.000022503500000,0.000064365000000,0.000186439000000,0.000045797000000,0.000223970000000,0.000062390000000,0.000065155000000,0.000628513000000,0.000178933000000,0.000483920000000 +0.000030784000000,0.000033155000000,0.000019343000000,0.000088859000000,0.000033945000000,0.000063575000000,0.000072267000000,0.000020330500000,0.000062390000000,0.000175378000000,0.000046192000000,0.000162735000000,0.000062390000000,0.000077007000000,0.000629698000000,0.000178538000000,0.000483920000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033946000000,0.000064365000000,0.000056859000000,0.000022108500000,0.000064365000000,0.000173797000000,0.000045797000000,0.000186044000000,0.000075031000000,0.000062785000000,0.000598488000000,0.000180908000000,0.000519871000000 +0.000029994000000,0.000033155000000,0.000018750500000,0.000068710000000,0.000033550000000,0.000063575000000,0.000057649000000,0.000041664000000,0.000061995000000,0.000192365000000,0.000047377000000,0.000174982000000,0.000060019000000,0.000063180000000,0.000642735000000,0.000180908000000,0.000485500000000 +0.000029995000000,0.000105846000000,0.000019145500000,0.000068710000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000076034500000,0.000065155000000,0.000159970000000,0.000046587000000,0.000243723000000,0.000060020000000,0.000065156000000,0.000633648000000,0.000208563000000,0.000517895000000 +0.000030389000000,0.000087279000000,0.000018750500000,0.000068710000000,0.000033155000000,0.000065945000000,0.000057254000000,0.000054503500000,0.000061600000000,0.000159575000000,0.000045402000000,0.000170637000000,0.000060809000000,0.000065155000000,0.000596908000000,0.000180908000000,0.000487871000000 +0.000032365000000,0.000101896000000,0.000020528000000,0.000067526000000,0.000033550000000,0.000064760000000,0.000056859000000,0.000021713500000,0.000098340000000,0.000175773000000,0.000045797000000,0.000186834000000,0.000060415000000,0.000064760000000,0.000595722000000,0.000199476000000,0.000484711000000 +0.000029994000000,0.000053303000000,0.000019540500000,0.000068711000000,0.000034341000000,0.000064365000000,0.000056858000000,0.000020528000000,0.000061995000000,0.000267031000000,0.000045797000000,0.000184859000000,0.000061994000000,0.000063575000000,0.000632068000000,0.000199081000000,0.000606389000000 +0.000029995000000,0.000037896000000,0.000020331000000,0.000068710000000,0.000068710000000,0.000066340000000,0.000055673000000,0.000021713500000,0.000061599000000,0.000316414000000,0.000046587000000,0.000177352000000,0.000060414000000,0.000120464000000,0.000678290000000,0.000182488000000,0.000483920000000 +0.000031575000000,0.000036316000000,0.000019935500000,0.000105451000000,0.000033155000000,0.000064365000000,0.000090834000000,0.000023096500000,0.000063180000000,0.000162340000000,0.000046587000000,0.000188809000000,0.000060415000000,0.000063180000000,0.000596118000000,0.000182489000000,0.000518686000000 +0.000031575000000,0.000095574000000,0.000018948000000,0.000069106000000,0.000034340000000,0.000065550000000,0.000056464000000,0.000020923000000,0.000064365000000,0.000230291000000,0.000045798000000,0.000170636000000,0.000062390000000,0.000064760000000,0.000644710000000,0.000201847000000,0.000519476000000 +0.000031180000000,0.000034736000000,0.000020330500000,0.000070291000000,0.000035525000000,0.000063970000000,0.000076612000000,0.000022503500000,0.000062389000000,0.000173007000000,0.000046982000000,0.000172612000000,0.000061600000000,0.000063970000000,0.000628908000000,0.000181699000000,0.000484315000000 +0.000031179000000,0.000033550000000,0.000019343000000,0.000068711000000,0.000033946000000,0.000063575000000,0.000071081000000,0.000020330500000,0.000064365000000,0.000174192000000,0.000045798000000,0.000185254000000,0.000060414000000,0.000065156000000,0.000598488000000,0.000182884000000,0.000580710000000 +0.000030390000000,0.000034736000000,0.000018750500000,0.000068316000000,0.000034735000000,0.000063575000000,0.000056859000000,0.000020330500000,0.000064760000000,0.000173402000000,0.000045797000000,0.000176957000000,0.000078982000000,0.000065155000000,0.000732809000000,0.000185649000000,0.000484315000000 +0.000030390000000,0.000033945000000,0.000018947500000,0.000068315000000,0.000033155000000,0.000066735000000,0.000056859000000,0.000022503500000,0.000075032000000,0.000156020000000,0.000046982000000,0.000171822000000,0.000061599000000,0.000064760000000,0.000628513000000,0.000181303000000,0.000498143000000 +0.000030389000000,0.000033550000000,0.000019738500000,0.000068710000000,0.000033155000000,0.000064365000000,0.000058044000000,0.000020726000000,0.000064760000000,0.000156414000000,0.000047378000000,0.000205402000000,0.000061600000000,0.000064365000000,0.000641945000000,0.000196710000000,0.000518685000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000069501000000,0.000032760000000,0.000063970000000,0.000055673000000,0.000021516000000,0.000064365000000,0.000175378000000,0.000047377000000,0.000184859000000,0.000061600000000,0.000062784000000,0.000598883000000,0.000181699000000,0.000483920000000 +0.000031575000000,0.000033550000000,0.000019738000000,0.000082933000000,0.000033550000000,0.000067526000000,0.000070291000000,0.000022108500000,0.000061994000000,0.000160760000000,0.000046192000000,0.000170637000000,0.000061205000000,0.000063180000000,0.000715426000000,0.000196710000000,0.000559772000000 +0.000030785000000,0.000033155000000,0.000019936000000,0.000068711000000,0.000034736000000,0.000063970000000,0.000056859000000,0.000027639500000,0.000061995000000,0.000173402000000,0.000046982000000,0.000174587000000,0.000059625000000,0.000065155000000,0.000657747000000,0.000181303000000,0.000485896000000 +0.000030389000000,0.000032761000000,0.000018947500000,0.000068710000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000023688500000,0.000061994000000,0.000173797000000,0.000046587000000,0.000173007000000,0.000061994000000,0.000065156000000,0.000594537000000,0.000181303000000,0.000485106000000 +0.000030785000000,0.000034735000000,0.000018948000000,0.000069106000000,0.000033946000000,0.000064365000000,0.000056859000000,0.000022306000000,0.000065155000000,0.000173797000000,0.000046192000000,0.000175772000000,0.000061994000000,0.000062785000000,0.000595723000000,0.000201451000000,0.000534093000000 +0.000032365000000,0.000033550000000,0.000019343000000,0.000069105000000,0.000034735000000,0.000114142000000,0.000056859000000,0.000022503500000,0.000083328000000,0.000195130000000,0.000046192000000,0.000214884000000,0.000066341000000,0.000063179000000,0.000677895000000,0.000182094000000,0.000508414000000 +0.000029599000000,0.000034735000000,0.000019738000000,0.000067921000000,0.000034735000000,0.000066340000000,0.000056859000000,0.000020923000000,0.000166685000000,0.000208168000000,0.000046192000000,0.000208957000000,0.000061599000000,0.000063574000000,0.000628513000000,0.000233847000000,0.000518290000000 +0.000029994000000,0.000033156000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000063970000000,0.000057254000000,0.000020331000000,0.000065945000000,0.000174587000000,0.000047772000000,0.000159574000000,0.000062785000000,0.000098341000000,0.000598488000000,0.000197501000000,0.000524612000000 +0.000030390000000,0.000034340000000,0.000019145500000,0.000070291000000,0.000034340000000,0.000066340000000,0.000055673000000,0.000023688500000,0.000064365000000,0.000156415000000,0.000046193000000,0.000174982000000,0.000062389000000,0.000079772000000,0.000630488000000,0.000179723000000,0.000502884000000 +0.000031970000000,0.000033155000000,0.000019343000000,0.000069500000000,0.000033945000000,0.000064365000000,0.000074637000000,0.000022306000000,0.000061995000000,0.000219624000000,0.000046982000000,0.000152068000000,0.000066340000000,0.000062390000000,0.000682636000000,0.000202241000000,0.000534489000000 +0.000031575000000,0.000034735000000,0.000018948000000,0.000069105000000,0.000033551000000,0.000063970000000,0.000071477000000,0.000020923000000,0.000061995000000,0.000174192000000,0.000046587000000,0.000215673000000,0.000060414000000,0.000065945000000,0.000596512000000,0.000184069000000,0.000485105000000 +0.000029994000000,0.000034341000000,0.000018750500000,0.000069896000000,0.000033155000000,0.000063970000000,0.000057254000000,0.000020923500000,0.000083328000000,0.000156414000000,0.000046193000000,0.000178143000000,0.000061205000000,0.000065550000000,0.000652216000000,0.000180513000000,0.000484315000000 +0.000030390000000,0.000053303000000,0.000019145500000,0.000070290000000,0.000035131000000,0.000065945000000,0.000055673000000,0.000020528000000,0.000061994000000,0.000175378000000,0.000045797000000,0.000158785000000,0.000061600000000,0.000063180000000,0.000628907000000,0.000254784000000,0.000517501000000 +0.000029995000000,0.000047772000000,0.000020133000000,0.000068315000000,0.000080958000000,0.000098341000000,0.000056859000000,0.000020923500000,0.000065155000000,0.000187229000000,0.000047377000000,0.000176958000000,0.000060019000000,0.000062785000000,0.000710685000000,0.000186044000000,0.000484710000000 +0.000030390000000,0.000035131000000,0.000019540500000,0.000068316000000,0.000034735000000,0.000064365000000,0.000059230000000,0.000021713500000,0.000061994000000,0.000156415000000,0.000047773000000,0.000212513000000,0.000061599000000,0.000062785000000,0.000594142000000,0.000199476000000,0.000567673000000 +0.000030389000000,0.000033945000000,0.000019145500000,0.000101896000000,0.000034341000000,0.000064760000000,0.000057254000000,0.000022306000000,0.000061600000000,0.000174192000000,0.000046192000000,0.000157994000000,0.000060415000000,0.000098340000000,0.000664858000000,0.000275327000000,0.000518291000000 +0.000031575000000,0.000033155000000,0.000019936000000,0.000069106000000,0.000033550000000,0.000065945000000,0.000055673000000,0.000021713500000,0.000061995000000,0.000173797000000,0.000047773000000,0.000179328000000,0.000060414000000,0.000063970000000,0.000663673000000,0.000182488000000,0.000483920000000 +0.000029995000000,0.000033946000000,0.000019145500000,0.000069896000000,0.000034340000000,0.000065550000000,0.000056859000000,0.000020923000000,0.000065155000000,0.000175772000000,0.000045797000000,0.000152859000000,0.000063575000000,0.000063179000000,0.000665253000000,0.000181699000000,0.000567278000000 +0.000030784000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000033155000000,0.000066341000000,0.000056464000000,0.000020528000000,0.000062785000000,0.000174192000000,0.000046587000000,0.000208167000000,0.000061600000000,0.000063574000000,0.000598093000000,0.000253600000000,0.000536464000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000068711000000,0.000033550000000,0.000064760000000,0.000056464000000,0.000021911000000,0.000095574000000,0.000156810000000,0.000046193000000,0.000165500000000,0.000062390000000,0.000065155000000,0.000645895000000,0.000202637000000,0.000484315000000 +0.000030785000000,0.000033945000000,0.000019145500000,0.000069896000000,0.000033550000000,0.000064365000000,0.000056068000000,0.000020923500000,0.000064365000000,0.000160760000000,0.000046982000000,0.000157599000000,0.000062389000000,0.000063180000000,0.000649846000000,0.000180118000000,0.000619427000000 +0.000031180000000,0.000033155000000,0.000019541000000,0.000068315000000,0.000033155000000,0.000086093000000,0.000056463000000,0.000021516000000,0.000063180000000,0.000159574000000,0.000046587000000,0.000160365000000,0.000060019000000,0.000063575000000,0.000596118000000,0.000477994000000,0.000519081000000 +0.000029995000000,0.000033946000000,0.000019343000000,0.000067920000000,0.000033155000000,0.000077402000000,0.000057254000000,0.000020330500000,0.000061995000000,0.000175378000000,0.000048957000000,0.000210932000000,0.000060415000000,0.000062784000000,0.001153549000000,0.000214488000000,0.000516315000000 +0.000030785000000,0.000033550000000,0.000019343000000,0.000083328000000,0.000033550000000,0.000067131000000,0.000056464000000,0.000021713000000,0.000064760000000,0.000175377000000,0.000046587000000,0.000177352000000,0.000061994000000,0.000097550000000,0.000598488000000,0.000194735000000,0.000518685000000 +0.000051723000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000033945000000,0.000063970000000,0.000055674000000,0.000021515500000,0.000061599000000,0.000214093000000,0.000045797000000,0.000167871000000,0.000061994000000,0.000062389000000,0.000751772000000,0.000182093000000,0.000551871000000 +0.000031180000000,0.000033946000000,0.000019145500000,0.000069106000000,0.000035526000000,0.000065945000000,0.000142982000000,0.000020923500000,0.000062390000000,0.000162735000000,0.000046192000000,0.000177748000000,0.000062390000000,0.000062784000000,0.000681846000000,0.000197105000000,0.000668809000000 +0.000031970000000,0.000033946000000,0.000019145000000,0.000069501000000,0.000035130000000,0.000065550000000,0.000057254000000,0.000022108500000,0.000064760000000,0.000152859000000,0.000045797000000,0.000195525000000,0.000061995000000,0.000062784000000,0.000665649000000,0.000197500000000,0.000520266000000 +0.000031575000000,0.000034341000000,0.000018948000000,0.000069106000000,0.000033156000000,0.000063970000000,0.000056464000000,0.000024874000000,0.000077007000000,0.000173797000000,0.000046588000000,0.000159180000000,0.000063970000000,0.000064761000000,0.000595328000000,0.000183278000000,0.000484710000000 +0.000029995000000,0.000034735000000,0.000020330500000,0.000069106000000,0.000033155000000,0.000099526000000,0.000055673000000,0.000023491000000,0.000061599000000,0.000208957000000,0.000046587000000,0.000175378000000,0.000061994000000,0.000063970000000,0.000734390000000,0.000180908000000,0.000533698000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000067920000000,0.000034340000000,0.000065550000000,0.000056464000000,0.000021121000000,0.000065155000000,0.000173402000000,0.000046982000000,0.000167871000000,0.000061995000000,0.000063970000000,0.000674340000000,0.000196315000000,0.000504859000000 +0.000030390000000,0.000033550000000,0.000019935500000,0.000067921000000,0.000033155000000,0.000063970000000,0.000057649000000,0.000039096000000,0.000064365000000,0.000156019000000,0.000046982000000,0.000195525000000,0.000060415000000,0.000062785000000,0.000630488000000,0.000195921000000,0.000483130000000 +0.000029994000000,0.000033155000000,0.000019145500000,0.000121254000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000022701000000,0.000063970000000,0.000156019000000,0.000045797000000,0.000157600000000,0.000061995000000,0.000096365000000,0.000609550000000,0.000205402000000,0.000519476000000 +0.000030390000000,0.000033550000000,0.000019738000000,0.000085303000000,0.000033946000000,0.000065945000000,0.000056464000000,0.000022306000000,0.000064365000000,0.000208562000000,0.000046982000000,0.000174587000000,0.000059624000000,0.000062785000000,0.000651426000000,0.000181303000000,0.000484316000000 +0.000031575000000,0.000035131000000,0.000038701000000,0.000069501000000,0.000034340000000,0.000064365000000,0.000090834000000,0.000022306000000,0.000064365000000,0.000160365000000,0.000046192000000,0.000161155000000,0.000062785000000,0.000062785000000,0.000793253000000,0.000183278000000,0.000554241000000 +0.000031180000000,0.000033945000000,0.000020923500000,0.000069501000000,0.000048168000000,0.000063970000000,0.000056858000000,0.000021121000000,0.000102291000000,0.000174192000000,0.000046588000000,0.000198686000000,0.000075426000000,0.000065550000000,0.000649451000000,0.000201451000000,0.000532908000000 +0.000068316000000,0.000032760000000,0.000026059000000,0.000068710000000,0.000033550000000,0.000066736000000,0.000057253000000,0.000021910500000,0.000064365000000,0.000174587000000,0.000047378000000,0.000175377000000,0.000061994000000,0.000064365000000,0.000594142000000,0.000193945000000,0.000485105000000 +0.000029995000000,0.000033155000000,0.000019738000000,0.000069105000000,0.000046982000000,0.000098736000000,0.000056069000000,0.000020923500000,0.000062390000000,0.000266242000000,0.000043031000000,0.000176168000000,0.000060414000000,0.000064760000000,0.000642340000000,0.000181698000000,0.000518685000000 +0.000031970000000,0.000033155000000,0.000019540500000,0.000101896000000,0.000033156000000,0.000063970000000,0.000057254000000,0.000020331000000,0.000061205000000,0.000156809000000,0.000043427000000,0.000178933000000,0.000061600000000,0.000063180000000,0.000628512000000,0.000181698000000,0.000511180000000 +0.000030389000000,0.000054093000000,0.000019540500000,0.000069896000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000063970000000,0.000178933000000,0.000043822000000,0.000366982000000,0.000061994000000,0.000062784000000,0.000594933000000,0.000200661000000,0.000519081000000 +0.000029599000000,0.000046983000000,0.000019540500000,0.000069501000000,0.000033550000000,0.000065945000000,0.000056859000000,0.000022306000000,0.000061995000000,0.000174588000000,0.000043426000000,0.000159575000000,0.000061994000000,0.000077797000000,0.000630093000000,0.000196710000000,0.000584661000000 +0.000029995000000,0.000033550000000,0.000019343000000,0.000070686000000,0.000032760000000,0.000065155000000,0.000056069000000,0.000022503500000,0.000061994000000,0.000189994000000,0.000043822000000,0.000175378000000,0.000061995000000,0.000064365000000,0.000630093000000,0.000231081000000,0.000483131000000 +0.000031574000000,0.000033550000000,0.000019540500000,0.000069105000000,0.000033945000000,0.000063970000000,0.000077007000000,0.000021121000000,0.000064760000000,0.000173797000000,0.000043032000000,0.000152859000000,0.000062390000000,0.000063575000000,0.000594537000000,0.000181698000000,0.000552266000000 +0.000031574000000,0.000033945000000,0.000020725500000,0.000068711000000,0.000034341000000,0.000063575000000,0.000057649000000,0.000020330500000,0.000064761000000,0.000173402000000,0.000043821000000,0.000179328000000,0.000061600000000,0.000062390000000,0.000628117000000,0.000180909000000,0.000485895000000 +0.000032365000000,0.000035131000000,0.000019145500000,0.000068711000000,0.000034340000000,0.000065155000000,0.000056859000000,0.000020725500000,0.000064760000000,0.000155624000000,0.000043427000000,0.000178933000000,0.000061600000000,0.000065155000000,0.000636019000000,0.000219229000000,0.000484316000000 +0.000044217000000,0.000033550000000,0.000020133000000,0.000069106000000,0.000048167000000,0.000079773000000,0.000055673000000,0.000022108500000,0.000061995000000,0.000208562000000,0.000045007000000,0.000158785000000,0.000060415000000,0.000062389000000,0.000594932000000,0.000183278000000,0.000533698000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000067921000000,0.000033550000000,0.000064365000000,0.000056858000000,0.000020725500000,0.000061600000000,0.000173402000000,0.000043032000000,0.000176562000000,0.000060809000000,0.000063970000000,0.000598093000000,0.000199081000000,0.000484711000000 +0.000029995000000,0.000033946000000,0.000019343000000,0.000067921000000,0.000033550000000,0.000064365000000,0.000058044000000,0.000021911000000,0.000063970000000,0.000156414000000,0.000044612000000,0.000178538000000,0.000060414000000,0.000065550000000,0.000628117000000,0.000243328000000,0.000517501000000 +0.000033945000000,0.000033155000000,0.000019738000000,0.000068710000000,0.000033946000000,0.000063970000000,0.000056858000000,0.000020923500000,0.000061599000000,0.000174192000000,0.000044217000000,0.000157599000000,0.000063180000000,0.000079378000000,0.000715821000000,0.000184463000000,0.000504858000000 +0.000030785000000,0.000033946000000,0.000018948000000,0.000068710000000,0.000033155000000,0.000063575000000,0.000055673000000,0.000020528000000,0.000064760000000,0.000172612000000,0.000088464000000,0.000199871000000,0.000062785000000,0.000063575000000,0.000594932000000,0.000183673000000,0.000483920000000 +0.000030785000000,0.000033550000000,0.000018948000000,0.000069500000000,0.000033946000000,0.000063970000000,0.000056464000000,0.000039294000000,0.000116513000000,0.000175377000000,0.000043822000000,0.000152859000000,0.000061995000000,0.000063970000000,0.000642735000000,0.000236217000000,0.000526191000000 +0.000029994000000,0.000033550000000,0.000019738000000,0.000069896000000,0.000033550000000,0.000066341000000,0.000176958000000,0.000022306000000,0.000064365000000,0.000173798000000,0.000043821000000,0.000174192000000,0.000139427000000,0.000063575000000,0.000631673000000,0.000232661000000,0.000486290000000 +0.000030785000000,0.000034341000000,0.000018750500000,0.000068710000000,0.000033155000000,0.000065945000000,0.000128365000000,0.000021713500000,0.000061995000000,0.000157599000000,0.000043427000000,0.000165896000000,0.000151674000000,0.000064760000000,0.000596117000000,0.000183278000000,0.000519081000000 +0.000029995000000,0.000033551000000,0.000019145500000,0.000102291000000,0.000034340000000,0.000065945000000,0.000059624000000,0.000021120500000,0.000063575000000,0.000350390000000,0.000043426000000,0.000191574000000,0.000084118000000,0.000065550000000,0.000596513000000,0.000227525000000,0.000503674000000 +0.000030785000000,0.000033945000000,0.000025664000000,0.000067921000000,0.000034736000000,0.000064365000000,0.000056463000000,0.000020528500000,0.000063970000000,0.000174192000000,0.000043427000000,0.000160364000000,0.000075822000000,0.000065155000000,0.000629697000000,0.000180908000000,0.000487871000000 +0.000029995000000,0.000033550000000,0.000019343000000,0.000067920000000,0.000034340000000,0.000065550000000,0.000057253000000,0.000020528000000,0.000065155000000,0.000175377000000,0.000043821000000,0.000177747000000,0.000062785000000,0.000084908000000,0.000641945000000,0.000197895000000,0.000517896000000 +0.000029994000000,0.000033550000000,0.000020330500000,0.000068315000000,0.000033550000000,0.000066341000000,0.000071081000000,0.000021911000000,0.000064365000000,0.000174588000000,0.000043427000000,0.000173797000000,0.000063180000000,0.000076217000000,0.000597698000000,0.000264266000000,0.000486686000000 +0.000030785000000,0.000033945000000,0.000020330500000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056858000000,0.000020528000000,0.000061995000000,0.000218043000000,0.000043032000000,0.000217649000000,0.000060415000000,0.000063180000000,0.000647476000000,0.000182093000000,0.000518290000000 +0.000032366000000,0.000052513000000,0.000019738000000,0.000069501000000,0.000033156000000,0.000064760000000,0.000056858000000,0.000020331000000,0.000061995000000,0.000163130000000,0.000043427000000,0.000176958000000,0.000061600000000,0.000061995000000,0.000628908000000,0.000180118000000,0.000518291000000 +0.000031179000000,0.000033551000000,0.000020330500000,0.000069106000000,0.000033946000000,0.000064365000000,0.000056464000000,0.000021713500000,0.000061994000000,0.000202242000000,0.000043426000000,0.000162340000000,0.000061995000000,0.000065550000000,0.000597303000000,0.000250834000000,0.000517105000000 +0.000031180000000,0.000033550000000,0.000020133500000,0.000069106000000,0.000033155000000,0.000112168000000,0.000056464000000,0.000020725500000,0.000063970000000,0.000173402000000,0.000043427000000,0.000160760000000,0.000061994000000,0.000064365000000,0.000629302000000,0.000195525000000,0.000518686000000 +0.000030390000000,0.000033155000000,0.000019343000000,0.000084118000000,0.000033155000000,0.000063575000000,0.000055673000000,0.000021911000000,0.000063970000000,0.000174192000000,0.000045007000000,0.000259525000000,0.000060415000000,0.000063179000000,0.000630883000000,0.000184858000000,0.000485105000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000033946000000,0.000064365000000,0.000056464000000,0.000022701000000,0.000063970000000,0.000173007000000,0.000043031000000,0.000167081000000,0.000062390000000,0.000064365000000,0.000597698000000,0.000230291000000,0.000514735000000 +0.000029995000000,0.000033550000000,0.000019540500000,0.000067921000000,0.000033550000000,0.000065155000000,0.000057254000000,0.000022306000000,0.000064760000000,0.000190785000000,0.000043822000000,0.000162340000000,0.000061599000000,0.000109402000000,0.000629303000000,0.000185254000000,0.000517106000000 +0.000030390000000,0.000033550000000,0.000020133500000,0.000068315000000,0.000033945000000,0.000064365000000,0.000070686000000,0.000022503500000,0.000064760000000,0.000156019000000,0.000043426000000,0.000157600000000,0.000061204000000,0.000062390000000,0.000629303000000,0.000189599000000,0.000485500000000 +0.000029994000000,0.000034735000000,0.000020133500000,0.000068711000000,0.000034736000000,0.000063575000000,0.000056859000000,0.000022306000000,0.000111377000000,0.000175378000000,0.000043822000000,0.000173797000000,0.000061994000000,0.000063575000000,0.000598488000000,0.000398982000000,0.000552266000000 +0.000031575000000,0.000033550000000,0.000018948000000,0.000069501000000,0.000088068000000,0.000067130000000,0.000056859000000,0.000022306000000,0.000064365000000,0.000159970000000,0.000043427000000,0.000161550000000,0.000061994000000,0.000065155000000,0.000608364000000,0.000199872000000,0.000552661000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000069106000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000022306000000,0.000080167000000,0.000206982000000,0.000043821000000,0.000159180000000,0.000061995000000,0.000063575000000,0.000772315000000,0.000215278000000,0.000486685000000 +0.000030389000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000034340000000,0.000079377000000,0.000056859000000,0.000023491000000,0.000063180000000,0.000173797000000,0.000059229000000,0.000173797000000,0.000062390000000,0.000065155000000,0.000627722000000,0.000188414000000,0.000519081000000 +0.000032365000000,0.000033946000000,0.000019935500000,0.000069106000000,0.000033155000000,0.000065550000000,0.000056068000000,0.000029417500000,0.000064365000000,0.000174192000000,0.000044612000000,0.000175378000000,0.000063179000000,0.000062785000000,0.000594142000000,0.000182093000000,0.000485106000000 +0.000031970000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000034340000000,0.000063575000000,0.000056464000000,0.000020330500000,0.000061600000000,0.000156414000000,0.000043427000000,0.000179723000000,0.000062784000000,0.000062785000000,0.000611130000000,0.000215278000000,0.000522241000000 +0.000030785000000,0.000033550000000,0.000019738000000,0.000067921000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000021713500000,0.000061205000000,0.000208957000000,0.000045402000000,0.000175377000000,0.000060020000000,0.000137451000000,0.000628118000000,0.000184464000000,0.000566884000000 +0.000029995000000,0.000034341000000,0.000018947500000,0.000068316000000,0.000037105000000,0.000063970000000,0.000105451000000,0.000022701000000,0.000117303000000,0.000174193000000,0.000044612000000,0.000159970000000,0.000062390000000,0.000092809000000,0.000615871000000,0.000184859000000,0.000486290000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000069105000000,0.000033550000000,0.000063970000000,0.000056068000000,0.000022306000000,0.000064365000000,0.000156019000000,0.000043427000000,0.000174587000000,0.000060414000000,0.000066341000000,0.000596118000000,0.000226340000000,0.000518686000000 +0.000031180000000,0.000032760000000,0.000026652000000,0.000069501000000,0.000033550000000,0.000065550000000,0.000057254000000,0.000020528000000,0.000064365000000,0.000174192000000,0.000044217000000,0.000152858000000,0.000061995000000,0.000065550000000,0.000628118000000,0.000182093000000,0.000483920000000 +0.000031180000000,0.000033155000000,0.000020330500000,0.000069896000000,0.000032760000000,0.000064760000000,0.000056859000000,0.000022108000000,0.000061995000000,0.000248464000000,0.000043426000000,0.000178933000000,0.000061995000000,0.000064760000000,0.000663673000000,0.000186834000000,0.000486291000000 +0.000030390000000,0.000033945000000,0.000019738000000,0.000102686000000,0.000071476000000,0.000066341000000,0.000056858000000,0.000020726000000,0.000061995000000,0.000156414000000,0.000043822000000,0.000212513000000,0.000060020000000,0.000065550000000,0.000596513000000,0.000231871000000,0.000518290000000 +0.000030389000000,0.000033551000000,0.000019343000000,0.000069106000000,0.000050933000000,0.000064365000000,0.000056069000000,0.000021516000000,0.000061599000000,0.000174982000000,0.000063180000000,0.000158390000000,0.000062785000000,0.000064760000000,0.000627722000000,0.000182883000000,0.000483921000000 +0.000030390000000,0.000049748000000,0.000018750500000,0.000068315000000,0.000035131000000,0.000065945000000,0.000056464000000,0.000022306000000,0.000065155000000,0.000174192000000,0.000043427000000,0.000177353000000,0.000061995000000,0.000065551000000,0.000630883000000,0.000186834000000,0.000844216000000 +0.000029995000000,0.000033550000000,0.000019541000000,0.000068316000000,0.000034735000000,0.000063970000000,0.000057649000000,0.000027244000000,0.000064760000000,0.000156020000000,0.000043426000000,0.000177748000000,0.000061995000000,0.000062389000000,0.000594933000000,0.000218439000000,0.000517500000000 +0.000030389000000,0.000033551000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000063970000000,0.000107032000000,0.000021910500000,0.000061995000000,0.000174192000000,0.000045402000000,0.000191970000000,0.000060414000000,0.000065155000000,0.000631279000000,0.000183674000000,0.000484315000000 +0.000030785000000,0.000033156000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000066341000000,0.000056859000000,0.000022503500000,0.000061995000000,0.000172217000000,0.000044612000000,0.000178933000000,0.000095970000000,0.000061994000000,0.000743476000000,0.000182093000000,0.000568463000000 +0.000030785000000,0.000033550000000,0.000019936000000,0.000069106000000,0.000033550000000,0.000064760000000,0.000056464000000,0.000021713500000,0.000065551000000,0.000194340000000,0.000043427000000,0.000152859000000,0.000061995000000,0.000062389000000,0.000629698000000,0.000234241000000,0.000517896000000 +0.000030389000000,0.000034735000000,0.000018947500000,0.000068711000000,0.000032761000000,0.000064365000000,0.000056464000000,0.000022306000000,0.000061599000000,0.000173006000000,0.000043426000000,0.000175377000000,0.000061599000000,0.000065550000000,0.000598093000000,0.000181698000000,0.000536858000000 +0.000029995000000,0.000033155000000,0.000022701000000,0.000083328000000,0.000033945000000,0.000077402000000,0.000056859000000,0.000022306000000,0.000063970000000,0.000158389000000,0.000045402000000,0.000293106000000,0.000062784000000,0.000064760000000,0.000676315000000,0.000186044000000,0.000554241000000 +0.000030390000000,0.000033551000000,0.000018947500000,0.000069501000000,0.000051723000000,0.000064760000000,0.000055673000000,0.000020923000000,0.000063575000000,0.000160760000000,0.000043427000000,0.000191970000000,0.000062389000000,0.000084513000000,0.000651822000000,0.000218439000000,0.000504068000000 +0.000030785000000,0.000033155000000,0.000019145500000,0.000068316000000,0.000033945000000,0.000065946000000,0.000056464000000,0.000021911000000,0.000062390000000,0.000179723000000,0.000043427000000,0.000159970000000,0.000062784000000,0.000065550000000,0.000596118000000,0.000189599000000,0.000487871000000 +0.000030390000000,0.000034341000000,0.000019145500000,0.000067921000000,0.000034340000000,0.000063970000000,0.000056464000000,0.000022503500000,0.000095575000000,0.000175377000000,0.000127970000000,0.000211328000000,0.000062390000000,0.000065945000000,0.000624562000000,0.000179723000000,0.000551870000000 +0.000030785000000,0.000033155000000,0.000018948000000,0.000068315000000,0.000033156000000,0.000066736000000,0.000125995000000,0.000022306000000,0.000061994000000,0.000174983000000,0.000047772000000,0.000174192000000,0.000060414000000,0.000063180000000,0.000630883000000,0.000214488000000,0.000486686000000 +0.000029600000000,0.000033946000000,0.000019738500000,0.000069106000000,0.000033946000000,0.000066340000000,0.000055674000000,0.000021121000000,0.000061599000000,0.000181303000000,0.000043427000000,0.000167871000000,0.000063180000000,0.000064365000000,0.000628118000000,0.000182883000000,0.000532118000000 +0.000031180000000,0.000033550000000,0.000019343000000,0.000068710000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000020528000000,0.000065945000000,0.000197896000000,0.000043821000000,0.000176957000000,0.000063180000000,0.000064760000000,0.000596513000000,0.000316414000000,0.000570833000000 +0.000031180000000,0.000033155000000,0.000019738000000,0.000152463000000,0.000033155000000,0.000080562000000,0.000056464000000,0.000020528500000,0.000061995000000,0.000152464000000,0.000045402000000,0.000246093000000,0.000062390000000,0.000063180000000,0.000674340000000,0.000229896000000,0.000485895000000 +0.000033155000000,0.000033550000000,0.000018948000000,0.000068710000000,0.000032760000000,0.000065550000000,0.000056464000000,0.000022108500000,0.000063575000000,0.000173402000000,0.000043822000000,0.000159575000000,0.000066340000000,0.000065155000000,0.000665648000000,0.000183279000000,0.000517896000000 +0.000030785000000,0.000033550000000,0.000018948000000,0.000071871000000,0.000033946000000,0.000065945000000,0.000055673000000,0.000022306000000,0.000061599000000,0.000174192000000,0.000045402000000,0.000175772000000,0.000062785000000,0.000100316000000,0.000596908000000,0.000184068000000,0.000484710000000 +0.000030785000000,0.000033946000000,0.000019540500000,0.000068711000000,0.000034340000000,0.000065945000000,0.000057254000000,0.000020923500000,0.000061995000000,0.000213303000000,0.000043427000000,0.000167871000000,0.000060415000000,0.000064365000000,0.000656957000000,0.000248464000000,0.000514735000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000067525000000,0.000032760000000,0.000063970000000,0.000056464000000,0.000022108500000,0.000171031000000,0.000156019000000,0.000077797000000,0.000195921000000,0.000062784000000,0.000065551000000,0.000629303000000,0.000184464000000,0.000565303000000 +0.000031180000000,0.000032760000000,0.000019343000000,0.000068711000000,0.000033550000000,0.000063575000000,0.000092019000000,0.000021121000000,0.000151279000000,0.000155624000000,0.000043822000000,0.000157995000000,0.000061994000000,0.000062784000000,0.000664068000000,0.000179723000000,0.000484315000000 +0.000030389000000,0.000035130000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000037120500000,0.000065550000000,0.000174587000000,0.000043427000000,0.000174192000000,0.000063969000000,0.000064760000000,0.000598488000000,0.000221599000000,0.000567674000000 +0.000031179000000,0.000035130000000,0.000020133000000,0.000102290000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000021911000000,0.000065155000000,0.000193550000000,0.000043427000000,0.000161155000000,0.000061600000000,0.000062785000000,0.000627723000000,0.000183674000000,0.000525401000000 +0.000030785000000,0.000034341000000,0.000018948000000,0.000069105000000,0.000036315000000,0.000063575000000,0.000056464000000,0.000020528000000,0.000116908000000,0.000173797000000,0.000045402000000,0.000234241000000,0.000060414000000,0.000062390000000,0.000681846000000,0.000181698000000,0.000486685000000 +0.000030785000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000035525000000,0.000066341000000,0.000056859000000,0.000022108000000,0.000064365000000,0.000174587000000,0.000043427000000,0.000171822000000,0.000061995000000,0.000065550000000,0.000594933000000,0.000217649000000,0.000707920000000 +0.000029994000000,0.000033945000000,0.000020133000000,0.000069105000000,0.000033155000000,0.000065945000000,0.000056069000000,0.000020330500000,0.000061995000000,0.000174192000000,0.000044612000000,0.000176168000000,0.000060809000000,0.000110587000000,0.000628908000000,0.000186044000000,0.000518291000000 +0.000031575000000,0.000033551000000,0.000019936000000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000021713500000,0.000063179000000,0.000190389000000,0.000043426000000,0.000178142000000,0.000060810000000,0.000064760000000,0.000947722000000,0.000185254000000,0.000508809000000 +0.000029995000000,0.000034735000000,0.000018948000000,0.000068316000000,0.000032760000000,0.000064365000000,0.000057649000000,0.000020725500000,0.000063970000000,0.000179328000000,0.000043822000000,0.000174587000000,0.000076612000000,0.000062390000000,0.000669994000000,0.000214883000000,0.000518686000000 +0.000030390000000,0.000033550000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000064365000000,0.000101106000000,0.000021516000000,0.000061600000000,0.000174192000000,0.000043427000000,0.000159574000000,0.000060415000000,0.000063180000000,0.000692907000000,0.000179328000000,0.000538834000000 +0.000030785000000,0.000033946000000,0.000019540500000,0.000068711000000,0.000033550000000,0.000063180000000,0.000055674000000,0.000028824500000,0.000062389000000,0.000156414000000,0.000071871000000,0.000174192000000,0.000063180000000,0.000065946000000,0.000596908000000,0.000182883000000,0.000484710000000 +0.000031180000000,0.000034735000000,0.000019935500000,0.000117303000000,0.000046983000000,0.000084513000000,0.000056859000000,0.000020528000000,0.000065156000000,0.000208168000000,0.000043427000000,0.000173401000000,0.000060414000000,0.000064365000000,0.000645105000000,0.000250439000000,0.000530143000000 +0.000031575000000,0.000048168000000,0.000019145500000,0.000113353000000,0.000033550000000,0.000062785000000,0.000056464000000,0.000020725500000,0.000064760000000,0.000173797000000,0.000043427000000,0.000209748000000,0.000060415000000,0.000065155000000,0.000637599000000,0.000183674000000,0.000485896000000 +0.000030390000000,0.000033551000000,0.000019343000000,0.000070686000000,0.000033155000000,0.000066340000000,0.000056464000000,0.000022306000000,0.000061995000000,0.000156809000000,0.000043426000000,0.000178142000000,0.000060414000000,0.000098735000000,0.000596117000000,0.000180908000000,0.000518685000000 +0.000030390000000,0.000033551000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000066340000000,0.000055673000000,0.000020331000000,0.000064760000000,0.000227526000000,0.000043426000000,0.000158784000000,0.000060414000000,0.000063575000000,0.000594538000000,0.000215279000000,0.000483920000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000069896000000,0.000033156000000,0.000063970000000,0.000056858000000,0.000021910500000,0.000064365000000,0.000188810000000,0.000044612000000,0.000210932000000,0.000061994000000,0.000082143000000,0.000630883000000,0.000180908000000,0.000484710000000 +0.000029995000000,0.000033155000000,0.000019738500000,0.000067921000000,0.000033550000000,0.000066735000000,0.000056464000000,0.000020330500000,0.000061995000000,0.000156019000000,0.000043427000000,0.000179328000000,0.000062390000000,0.000063575000000,0.000629303000000,0.000180908000000,0.000517105000000 +0.000029995000000,0.000036711000000,0.000019936000000,0.000068711000000,0.000033155000000,0.000064365000000,0.000076217000000,0.000021911000000,0.000064365000000,0.000173402000000,0.000043822000000,0.000157995000000,0.000062784000000,0.000064760000000,0.000596512000000,0.000255180000000,0.000484711000000 +0.000031180000000,0.000033945000000,0.000019145500000,0.000099130000000,0.000033551000000,0.000064365000000,0.000056069000000,0.000021911000000,0.000064760000000,0.000173007000000,0.000043427000000,0.000179723000000,0.000062390000000,0.000063575000000,0.000628118000000,0.000181304000000,0.000533303000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000100315000000,0.000056859000000,0.000020528500000,0.000095574000000,0.000174587000000,0.000043427000000,0.000169451000000,0.000060809000000,0.000062785000000,0.000628908000000,0.000185649000000,0.000483921000000 +0.000030390000000,0.000033550000000,0.000058059000000,0.000069106000000,0.000033550000000,0.000065155000000,0.000073057000000,0.000021713000000,0.000064760000000,0.000173798000000,0.000043031000000,0.000174588000000,0.000062785000000,0.000062785000000,0.000598488000000,0.000218834000000,0.000499722000000 +0.000031575000000,0.000033551000000,0.000060824000000,0.000069105000000,0.000103081000000,0.000064761000000,0.000056859000000,0.000038503500000,0.000064365000000,0.000157994000000,0.000043427000000,0.000171031000000,0.000061600000000,0.000078983000000,0.000688562000000,0.000182488000000,0.000553451000000 +0.000030390000000,0.000033945000000,0.000026256500000,0.000068710000000,0.000032760000000,0.000066340000000,0.000056069000000,0.000022108500000,0.000064365000000,0.000160760000000,0.000044612000000,0.000157994000000,0.000061994000000,0.000063180000000,0.000631278000000,0.000181698000000,0.000483525000000 +0.000030389000000,0.000033550000000,0.000019738500000,0.000068316000000,0.000033945000000,0.000063970000000,0.000056463000000,0.000021121000000,0.000061994000000,0.000159970000000,0.000043031000000,0.000159970000000,0.000062390000000,0.000065155000000,0.000595723000000,0.000270587000000,0.000521846000000 +0.000030390000000,0.000033550000000,0.000019738500000,0.000067921000000,0.000033945000000,0.000064365000000,0.000056463000000,0.000020726000000,0.000063970000000,0.000175772000000,0.000043426000000,0.000177352000000,0.000062390000000,0.000065155000000,0.000628908000000,0.000181699000000,0.000518291000000 +0.000029995000000,0.000033155000000,0.000019936000000,0.000101896000000,0.000033550000000,0.000065550000000,0.000125995000000,0.000020528000000,0.000064365000000,0.000175378000000,0.000043427000000,0.000173797000000,0.000060809000000,0.000062389000000,0.000631278000000,0.000180908000000,0.000487081000000 +0.000030784000000,0.000033550000000,0.000020528000000,0.000069106000000,0.000035131000000,0.000064760000000,0.000056069000000,0.000022306000000,0.000131920000000,0.000213699000000,0.000043427000000,0.000167871000000,0.000062390000000,0.000062785000000,0.000612710000000,0.000217253000000,0.000518290000000 +0.000031575000000,0.000034735000000,0.000019935500000,0.000069500000000,0.000033155000000,0.000098341000000,0.000056464000000,0.000021120500000,0.000061600000000,0.000162735000000,0.000044217000000,0.000193155000000,0.000061600000000,0.000065551000000,0.000595722000000,0.000182093000000,0.000686982000000 +0.000031180000000,0.000033945000000,0.000019343000000,0.000069500000000,0.000032760000000,0.000064760000000,0.000056859000000,0.000020528500000,0.000062389000000,0.000152068000000,0.000043031000000,0.000162340000000,0.000060020000000,0.000064760000000,0.000683031000000,0.000186439000000,0.000485500000000 +0.000031970000000,0.000033550000000,0.000019935500000,0.000069106000000,0.000035920000000,0.000065945000000,0.000056464000000,0.000021713000000,0.000064365000000,0.000173797000000,0.000057649000000,0.000159575000000,0.000061994000000,0.000076612000000,0.000629698000000,0.000266241000000,0.000517895000000 +0.000030785000000,0.000034735000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000099130000000,0.000056069000000,0.000020528000000,0.000061995000000,0.000208958000000,0.000043426000000,0.000208958000000,0.000061994000000,0.000064760000000,0.000596908000000,0.000276908000000,0.000484711000000 +0.000039081000000,0.000033945000000,0.000019738000000,0.000068711000000,0.000062390000000,0.000078587000000,0.000056859000000,0.000027639500000,0.000061994000000,0.000173007000000,0.000044612000000,0.000166291000000,0.000062390000000,0.000064760000000,0.000631278000000,0.000215674000000,0.000551476000000 +0.000030390000000,0.000048562000000,0.000041466500000,0.000067525000000,0.000033155000000,0.000063970000000,0.000056068000000,0.000021516000000,0.000063970000000,0.000156414000000,0.000043822000000,0.000161945000000,0.000060020000000,0.000062785000000,0.000629697000000,0.000199871000000,0.000517896000000 +0.000029994000000,0.000033155000000,0.000020528000000,0.000082143000000,0.000032760000000,0.000063574000000,0.000092020000000,0.000020528000000,0.000100711000000,0.000156414000000,0.000043426000000,0.000157994000000,0.000061599000000,0.000063575000000,0.000595723000000,0.000183673000000,0.000484710000000 +0.000030390000000,0.000033156000000,0.000019145500000,0.000068710000000,0.000033155000000,0.000084513000000,0.000056069000000,0.000022503500000,0.000062390000000,0.000266241000000,0.000043427000000,0.000242933000000,0.000062389000000,0.000064365000000,0.000638389000000,0.000295081000000,0.000517896000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000116118000000,0.000056859000000,0.000021713500000,0.000064365000000,0.000182093000000,0.000044612000000,0.000160365000000,0.000076612000000,0.000064760000000,0.000743476000000,0.000289155000000,0.000483920000000 +0.000029994000000,0.000034340000000,0.000019936000000,0.000069106000000,0.000035130000000,0.000067921000000,0.000056464000000,0.000020726000000,0.000062389000000,0.000173007000000,0.000043427000000,0.000164711000000,0.000060809000000,0.000083723000000,0.000632463000000,0.000180118000000,0.000500908000000 +0.000030390000000,0.000033945000000,0.000018947500000,0.000068711000000,0.000033946000000,0.000067130000000,0.000056859000000,0.000021911000000,0.000061995000000,0.000174587000000,0.000043821000000,0.000174587000000,0.000062785000000,0.000065550000000,0.000594933000000,0.000195525000000,0.000628117000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000033550000000,0.000065945000000,0.000056069000000,0.000021713500000,0.000061600000000,0.000188415000000,0.000097155000000,0.000210142000000,0.000060019000000,0.000063970000000,0.000655377000000,0.000199476000000,0.000483920000000 +0.000031970000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000034736000000,0.000065551000000,0.000056859000000,0.000022108500000,0.000065946000000,0.000156019000000,0.000058834000000,0.000180513000000,0.000060415000000,0.000062390000000,0.000628513000000,0.000187624000000,0.000551081000000 +0.000030390000000,0.000034340000000,0.000020133000000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056463000000,0.000037120500000,0.000064365000000,0.000173402000000,0.000043427000000,0.000175772000000,0.000061205000000,0.000062785000000,0.000595722000000,0.000180513000000,0.000518685000000 +0.000029995000000,0.000054488000000,0.000018750500000,0.000069896000000,0.000033550000000,0.000097550000000,0.000076611000000,0.000020528000000,0.000079377000000,0.000193550000000,0.000045007000000,0.000161155000000,0.000060414000000,0.000062390000000,0.000632463000000,0.000180513000000,0.000486291000000 +0.000030390000000,0.000033551000000,0.000019343000000,0.000068711000000,0.000033551000000,0.000065551000000,0.000056464000000,0.000023886500000,0.000064761000000,0.000156414000000,0.000043032000000,0.000244513000000,0.000062785000000,0.000063575000000,0.000673945000000,0.000182884000000,0.000517105000000 +0.000031970000000,0.000034340000000,0.000018948000000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000023689000000,0.000061995000000,0.000174982000000,0.000044612000000,0.000153254000000,0.000062390000000,0.000065550000000,0.000613500000000,0.000186834000000,0.000483920000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000021120500000,0.000061599000000,0.000173402000000,0.000043426000000,0.000178933000000,0.000060414000000,0.000153649000000,0.000594932000000,0.000188809000000,0.000554636000000 +0.000030389000000,0.000033550000000,0.000018947500000,0.000070686000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020923500000,0.000061995000000,0.000230686000000,0.000044217000000,0.000178143000000,0.000060414000000,0.000149698000000,0.000629698000000,0.000182488000000,0.000518686000000 +0.000030390000000,0.000033550000000,0.000019343000000,0.000069106000000,0.000034735000000,0.000063970000000,0.000056068000000,0.000020330500000,0.000061600000000,0.000176168000000,0.000043032000000,0.000158785000000,0.000062785000000,0.000069896000000,0.000647871000000,0.000196315000000,0.000484316000000 +0.000030390000000,0.000067921000000,0.000018750500000,0.000070686000000,0.000034340000000,0.000065550000000,0.000057254000000,0.000020330500000,0.000061205000000,0.000173402000000,0.000092809000000,0.000178933000000,0.000061995000000,0.000063575000000,0.000598093000000,0.000202241000000,0.000518291000000 +0.000030389000000,0.000033945000000,0.000019540500000,0.000082933000000,0.000033946000000,0.000063970000000,0.000056464000000,0.000021713500000,0.000107032000000,0.000156415000000,0.000045007000000,0.000178538000000,0.000061995000000,0.000065550000000,0.000627327000000,0.000181303000000,0.000484315000000 +0.000033550000000,0.000033550000000,0.000018552500000,0.000068711000000,0.000035130000000,0.000144563000000,0.000110587000000,0.000020528000000,0.000063180000000,0.000242932000000,0.000043427000000,0.000157995000000,0.000060020000000,0.000064760000000,0.000690537000000,0.000197896000000,0.000511970000000 +0.000030390000000,0.000033155000000,0.000019935500000,0.000068711000000,0.000033945000000,0.000065945000000,0.000056464000000,0.000022306000000,0.000061995000000,0.000172612000000,0.000045402000000,0.000447969000000,0.000062389000000,0.000075822000000,0.000596513000000,0.000182094000000,0.000517896000000 +0.000030390000000,0.000034341000000,0.000018948000000,0.000069501000000,0.000037501000000,0.000064365000000,0.000057254000000,0.000020923500000,0.000061600000000,0.000174982000000,0.000043427000000,0.000166686000000,0.000111772000000,0.000064760000000,0.000595723000000,0.000188414000000,0.000485105000000 +0.000030784000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000065946000000,0.000056859000000,0.000020330500000,0.000061994000000,0.000173402000000,0.000043426000000,0.000208958000000,0.000061995000000,0.000062785000000,0.000648661000000,0.000180908000000,0.000627327000000 +0.000030785000000,0.000033155000000,0.000020133000000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000021910500000,0.000062389000000,0.000211328000000,0.000043427000000,0.000174587000000,0.000060414000000,0.000064760000000,0.000629698000000,0.000202241000000,0.000776661000000 +0.000066341000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000065550000000,0.000056464000000,0.000020330500000,0.000061995000000,0.000159970000000,0.000043427000000,0.000157994000000,0.000060810000000,0.000063575000000,0.000595722000000,0.000187229000000,0.000526982000000 +0.000032365000000,0.000033155000000,0.000019738000000,0.000087674000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000020133000000,0.000122834000000,0.000160760000000,0.000044216000000,0.000159970000000,0.000060414000000,0.000063574000000,0.000683426000000,0.000197106000000,0.000487081000000 +0.000044217000000,0.000033155000000,0.000019343000000,0.000068711000000,0.000033155000000,0.000097155000000,0.000056859000000,0.000020528000000,0.000061600000000,0.000175377000000,0.000079378000000,0.000210142000000,0.000062389000000,0.000063179000000,0.000629698000000,0.000180118000000,0.000553451000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000064760000000,0.000091229000000,0.000021713500000,0.000065156000000,0.000174982000000,0.000043427000000,0.000173797000000,0.000062390000000,0.000061994000000,0.000598093000000,0.000214094000000,0.000486686000000 +0.000030389000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000062389000000,0.000180118000000,0.000043426000000,0.000167476000000,0.000060810000000,0.000065550000000,0.000678291000000,0.000178932000000,0.000519080000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000035526000000,0.000066340000000,0.000056859000000,0.000041071500000,0.000063575000000,0.000162735000000,0.000043822000000,0.000178143000000,0.000063180000000,0.000065155000000,0.000629697000000,0.000181303000000,0.000554637000000 +0.000031180000000,0.000033155000000,0.000018948000000,0.000069105000000,0.000034735000000,0.000063970000000,0.000057649000000,0.000023491000000,0.000064365000000,0.000498932000000,0.000043822000000,0.000195920000000,0.000061600000000,0.000062389000000,0.000651426000000,0.000179723000000,0.000485896000000 +0.000031575000000,0.000101106000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000057254000000,0.000023491000000,0.000061599000000,0.000188019000000,0.000043822000000,0.000159574000000,0.000061995000000,0.000064760000000,0.000595722000000,0.000307723000000,0.000517895000000 +0.000029995000000,0.000054489000000,0.000020133500000,0.000068711000000,0.000033156000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000080563000000,0.000192365000000,0.000044217000000,0.000227130000000,0.000060810000000,0.000063575000000,0.000630883000000,0.000189599000000,0.000484316000000 +0.000031179000000,0.000105057000000,0.000018750000000,0.000103081000000,0.000033550000000,0.000063970000000,0.000057254000000,0.000020528500000,0.000075427000000,0.000173797000000,0.000043822000000,0.000222784000000,0.000062390000000,0.000062785000000,0.000681056000000,0.000193550000000,0.000548315000000 +0.000029995000000,0.000065551000000,0.000019738500000,0.000067921000000,0.000033155000000,0.000133501000000,0.000056464000000,0.000021911000000,0.000064365000000,0.000156019000000,0.000043426000000,0.000172217000000,0.000061995000000,0.000064760000000,0.000596118000000,0.000191970000000,0.000517105000000 +0.000030785000000,0.000035526000000,0.000019343000000,0.000068711000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000021713500000,0.000061204000000,0.000156019000000,0.000043822000000,0.000167871000000,0.000060019000000,0.000063575000000,0.000679476000000,0.000189599000000,0.000484710000000 +0.000031180000000,0.000033156000000,0.000019738000000,0.000068711000000,0.000033550000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000096365000000,0.000213303000000,0.000058834000000,0.000184464000000,0.000062390000000,0.000061995000000,0.000682241000000,0.000199871000000,0.000553452000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000065550000000,0.000056859000000,0.000022108500000,0.000064760000000,0.000160365000000,0.000043426000000,0.000170241000000,0.000063970000000,0.000065155000000,0.000628118000000,0.000193945000000,0.000484711000000 +0.000030389000000,0.000033156000000,0.000018948000000,0.000068711000000,0.000034340000000,0.000066341000000,0.000056859000000,0.000020330500000,0.000061600000000,0.000173797000000,0.000043427000000,0.000174587000000,0.000062389000000,0.000064760000000,0.000597698000000,0.000203426000000,0.000487476000000 +0.000030785000000,0.000033945000000,0.000019935500000,0.000069106000000,0.000034340000000,0.000063970000000,0.000058044000000,0.000021713500000,0.000103081000000,0.000173797000000,0.000043822000000,0.000185254000000,0.000062390000000,0.000062389000000,0.000672759000000,0.000199081000000,0.000575574000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000069500000000,0.000033155000000,0.000064365000000,0.000055674000000,0.000020528500000,0.000064365000000,0.000256365000000,0.000043426000000,0.000221600000000,0.000061600000000,0.000062390000000,0.000628513000000,0.000192365000000,0.000483526000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000068315000000,0.000033155000000,0.000083723000000,0.000057649000000,0.000020331000000,0.000064760000000,0.000156415000000,0.000043427000000,0.000189599000000,0.000061994000000,0.000063180000000,0.000594537000000,0.000191179000000,0.000521451000000 +0.000030785000000,0.000034736000000,0.000019935500000,0.000067921000000,0.000033551000000,0.000064760000000,0.000056464000000,0.000020528000000,0.000061600000000,0.000180513000000,0.000043426000000,0.000185254000000,0.000062390000000,0.000062785000000,0.001026340000000,0.000233056000000,0.000553056000000 +0.000031574000000,0.000033550000000,0.000020133000000,0.000068711000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020725500000,0.000063575000000,0.000173402000000,0.000043032000000,0.000170636000000,0.000061995000000,0.000065156000000,0.000596513000000,0.000212118000000,0.000664858000000 +0.000030785000000,0.000033946000000,0.000018948000000,0.000069501000000,0.000033550000000,0.000065945000000,0.000169847000000,0.000021515500000,0.000061995000000,0.000337748000000,0.000043822000000,0.000217649000000,0.000061994000000,0.000065945000000,0.000631279000000,0.000201847000000,0.000605599000000 +0.000048563000000,0.000067525000000,0.000019145500000,0.000069501000000,0.000049352000000,0.000066340000000,0.000153648000000,0.000020528500000,0.000064760000000,0.000174192000000,0.000043822000000,0.000160760000000,0.000060414000000,0.000063179000000,0.000701994000000,0.000190785000000,0.000592167000000 +0.000029994000000,0.000034735000000,0.000020330500000,0.000070291000000,0.000033945000000,0.000063970000000,0.000074241000000,0.000020528000000,0.000061994000000,0.000174587000000,0.000043426000000,0.000190390000000,0.000061600000000,0.000062784000000,0.000595723000000,0.000193550000000,0.000485895000000 +0.000030785000000,0.000034340000000,0.000018948000000,0.000068711000000,0.000033551000000,0.000064760000000,0.000056858000000,0.000020330500000,0.000075822000000,0.000190785000000,0.000043427000000,0.000188809000000,0.000060415000000,0.000064365000000,0.000630093000000,0.000193945000000,0.000518685000000 +0.000031970000000,0.000033155000000,0.000020528000000,0.000102291000000,0.000033155000000,0.000065945000000,0.000090044000000,0.000050552500000,0.000061600000000,0.000175772000000,0.000043822000000,0.000167871000000,0.000061995000000,0.000065155000000,0.000627722000000,0.000191180000000,0.000593353000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000068316000000,0.000033550000000,0.000097551000000,0.000056463000000,0.000066750500000,0.000061994000000,0.000172612000000,0.000043821000000,0.000187624000000,0.000061600000000,0.000063575000000,0.000598093000000,0.000190390000000,0.000559772000000 +0.000031970000000,0.000033945000000,0.000019145500000,0.000068315000000,0.000069501000000,0.000064365000000,0.000057648000000,0.000023688500000,0.000062390000000,0.000156810000000,0.000043822000000,0.000190390000000,0.000062785000000,0.000063180000000,0.000664859000000,0.000190784000000,0.000483130000000 +0.000033946000000,0.000034340000000,0.000019145500000,0.000068710000000,0.000033945000000,0.000063970000000,0.000056463000000,0.000022306000000,0.000063970000000,0.000220809000000,0.000043822000000,0.000222784000000,0.000061995000000,0.000098736000000,0.000628118000000,0.000189599000000,0.000518290000000 +0.000031179000000,0.000034736000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000064760000000,0.000055673000000,0.000020725500000,0.000062389000000,0.000172217000000,0.000045007000000,0.000190389000000,0.000061600000000,0.000065550000000,0.000613895000000,0.000198291000000,0.000483920000000 +0.000030785000000,0.000033945000000,0.000018750500000,0.000069105000000,0.000032760000000,0.000063575000000,0.000057254000000,0.000020725500000,0.000061600000000,0.000174982000000,0.000043427000000,0.000162341000000,0.000060414000000,0.000063180000000,0.000615871000000,0.000196711000000,0.000534488000000 +0.000031180000000,0.000033945000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000064365000000,0.000056463000000,0.000022108500000,0.000091624000000,0.000173797000000,0.000063180000000,0.000185254000000,0.000160760000000,0.000062785000000,0.000760463000000,0.000191575000000,0.000487081000000 +0.000031970000000,0.000046983000000,0.000018947500000,0.000068711000000,0.000033155000000,0.000064760000000,0.000057649000000,0.000028626500000,0.000061995000000,0.000191575000000,0.000130340000000,0.000248463000000,0.000077797000000,0.000065155000000,0.000664858000000,0.000195526000000,0.000485105000000 +0.000031180000000,0.000033155000000,0.000019145500000,0.000160365000000,0.000033550000000,0.000065550000000,0.000074241000000,0.000020330500000,0.000063970000000,0.000159970000000,0.000065945000000,0.000167871000000,0.000060809000000,0.000063970000000,0.000630884000000,0.000196711000000,0.000517500000000 +0.000030785000000,0.000033155000000,0.000018948000000,0.000072266000000,0.000033945000000,0.000189599000000,0.000056859000000,0.000021911000000,0.000061600000000,0.000160760000000,0.000047377000000,0.000169451000000,0.000060414000000,0.000063179000000,0.000595723000000,0.000191180000000,0.000487475000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000084118000000,0.000033945000000,0.000154044000000,0.000056858000000,0.000020330500000,0.000064760000000,0.000175772000000,0.000043822000000,0.000187624000000,0.000062389000000,0.000062390000000,0.000646291000000,0.000192365000000,0.000517895000000 +0.000030389000000,0.000033155000000,0.000019540500000,0.000069105000000,0.000033155000000,0.000084118000000,0.000056858000000,0.000022108500000,0.000064365000000,0.000209352000000,0.000043032000000,0.000184463000000,0.000060414000000,0.000103476000000,0.000680661000000,0.000191969000000,0.000486290000000 +0.000029995000000,0.000033946000000,0.000021120500000,0.000069895000000,0.000033550000000,0.000078192000000,0.000056068000000,0.000021318500000,0.000064365000000,0.000180513000000,0.000044217000000,0.000178142000000,0.000061205000000,0.000063180000000,0.000611525000000,0.000205402000000,0.000485106000000 +0.000031575000000,0.000033155000000,0.000019738000000,0.000069106000000,0.000106636000000,0.000064365000000,0.000056859000000,0.000022898500000,0.000132316000000,0.000163130000000,0.000083723000000,0.000187624000000,0.000061995000000,0.000064760000000,0.000756907000000,0.000181303000000,0.000517895000000 +0.000030390000000,0.000034340000000,0.000020133000000,0.000087674000000,0.000084118000000,0.000066340000000,0.000056858000000,0.000021713500000,0.000062390000000,0.000151279000000,0.000044217000000,0.000230291000000,0.000061995000000,0.000065550000000,0.000629303000000,0.000193945000000,0.000485501000000 +0.000029600000000,0.000033945000000,0.000019935500000,0.000068316000000,0.000047377000000,0.000065550000000,0.000057254000000,0.000020528000000,0.000064760000000,0.000206587000000,0.000046192000000,0.000168662000000,0.000060414000000,0.000063575000000,0.000789303000000,0.000180118000000,0.000517895000000 +0.000031575000000,0.000033550000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000063575000000,0.000056069000000,0.000032182500000,0.000064760000000,0.000174192000000,0.000043427000000,0.000187229000000,0.000061994000000,0.000065550000000,0.000703970000000,0.000182093000000,0.000632069000000 +0.000071476000000,0.000047772000000,0.000018948000000,0.000067920000000,0.000033945000000,0.000066340000000,0.000069896000000,0.000028626500000,0.000063970000000,0.000173402000000,0.000043426000000,0.000176958000000,0.000061994000000,0.000063179000000,0.000598093000000,0.000211723000000,0.000702784000000 +0.000031970000000,0.000033551000000,0.000018948000000,0.000069106000000,0.000034735000000,0.000063970000000,0.000056464000000,0.000021911000000,0.000064760000000,0.000156020000000,0.000043427000000,0.000206192000000,0.000060414000000,0.000062389000000,0.000822883000000,0.000185648000000,0.000499327000000 +0.000031180000000,0.000033155000000,0.000019936000000,0.000068316000000,0.000032760000000,0.000065155000000,0.000058044000000,0.000022108000000,0.000061995000000,0.000205402000000,0.000045007000000,0.000168661000000,0.000062390000000,0.000127575000000,0.000630488000000,0.000186044000000,0.000518291000000 +0.000030389000000,0.000033551000000,0.000019935500000,0.000069501000000,0.000033945000000,0.000064365000000,0.000055674000000,0.000022898500000,0.000104267000000,0.000175377000000,0.000044217000000,0.000184858000000,0.000062785000000,0.000063180000000,0.000633253000000,0.000180514000000,0.000483525000000 +0.000029995000000,0.000034340000000,0.000019343000000,0.000069106000000,0.000034340000000,0.000097551000000,0.000057254000000,0.000024281000000,0.000082143000000,0.000159970000000,0.000044612000000,0.000170242000000,0.000060415000000,0.000065155000000,0.000594537000000,0.000179723000000,0.000577550000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000137057000000,0.000033156000000,0.000064760000000,0.000056464000000,0.000022306000000,0.000061600000000,0.000174588000000,0.000043822000000,0.000174982000000,0.000062390000000,0.000063970000000,0.000645896000000,0.000181698000000,0.000520265000000 +0.000029994000000,0.000033945000000,0.000018750500000,0.000069105000000,0.000033550000000,0.000064760000000,0.000056464000000,0.000023293500000,0.000064760000000,0.000188809000000,0.000045797000000,0.000182093000000,0.000061599000000,0.000064760000000,0.000731624000000,0.000216858000000,0.000484711000000 +0.000029995000000,0.000034341000000,0.000019936000000,0.000069105000000,0.000033155000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000061599000000,0.000174192000000,0.000045402000000,0.000187229000000,0.000061994000000,0.000063180000000,0.000905846000000,0.000180513000000,0.000517896000000 +0.000029995000000,0.000033945000000,0.000019343000000,0.000068315000000,0.000034340000000,0.000066340000000,0.000090439000000,0.000020330500000,0.000062390000000,0.000156809000000,0.000043822000000,0.000259921000000,0.000061600000000,0.000063180000000,0.000633648000000,0.000182488000000,0.000487476000000 +0.000029994000000,0.000034735000000,0.000019541000000,0.000067526000000,0.000033550000000,0.000064365000000,0.000058044000000,0.000021910500000,0.000064365000000,0.000199081000000,0.000045007000000,0.000184859000000,0.000062785000000,0.000100710000000,0.000630488000000,0.000227920000000,0.000534093000000 +0.000031180000000,0.000033155000000,0.000018553000000,0.000068316000000,0.000036711000000,0.000063970000000,0.000056859000000,0.000022898500000,0.000075822000000,0.000173402000000,0.000044612000000,0.000170242000000,0.000062389000000,0.000062389000000,0.000634833000000,0.000181303000000,0.000520266000000 +0.000029995000000,0.000033155000000,0.000018553000000,0.000069896000000,0.000033550000000,0.000065155000000,0.000055674000000,0.000021318000000,0.000062390000000,0.000156019000000,0.000044217000000,0.000186044000000,0.000062390000000,0.000064760000000,0.000671574000000,0.000180513000000,0.000485105000000 +0.000031970000000,0.000034340000000,0.000018948000000,0.000096365000000,0.000054489000000,0.000097945000000,0.000056859000000,0.000021713000000,0.000061600000000,0.000174587000000,0.000043427000000,0.000177748000000,0.000062389000000,0.000064760000000,0.000630883000000,0.000216463000000,0.000517500000000 +0.000031575000000,0.000033155000000,0.000020133000000,0.000069500000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000021910500000,0.000065945000000,0.000207772000000,0.000043822000000,0.000191179000000,0.000061599000000,0.000062785000000,0.000632068000000,0.000182093000000,0.000485500000000 +0.000031575000000,0.000033946000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000020726000000,0.000061995000000,0.000156414000000,0.000043427000000,0.000189204000000,0.000061994000000,0.000065155000000,0.000632464000000,0.000182489000000,0.000518291000000 +0.000031180000000,0.000035130000000,0.000018750500000,0.000068711000000,0.000034736000000,0.000064761000000,0.000055673000000,0.000021713500000,0.000063970000000,0.000175378000000,0.000099130000000,0.000203427000000,0.000060020000000,0.000063180000000,0.000651031000000,0.000259920000000,0.000607969000000 +0.000031180000000,0.000033945000000,0.000018750500000,0.000067921000000,0.000032760000000,0.000064760000000,0.000056859000000,0.000022306000000,0.000061994000000,0.000173402000000,0.000043427000000,0.000188020000000,0.000062390000000,0.000063575000000,0.000634834000000,0.000231476000000,0.000500908000000 +0.000030389000000,0.000033946000000,0.000019738500000,0.000067921000000,0.000033945000000,0.000065945000000,0.000058834000000,0.000021121000000,0.000064365000000,0.000231871000000,0.000043822000000,0.000191180000000,0.000060414000000,0.000099131000000,0.000631278000000,0.000197500000000,0.000517501000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000048775000000,0.000061995000000,0.000193550000000,0.000045402000000,0.000167871000000,0.000062390000000,0.000063180000000,0.000632858000000,0.000542784000000,0.000518290000000 +0.000030785000000,0.000033155000000,0.000019145500000,0.000069501000000,0.000034340000000,0.000063970000000,0.000056069000000,0.000020528500000,0.000061995000000,0.000172611000000,0.000043427000000,0.000225155000000,0.000060415000000,0.000065155000000,0.000622191000000,0.000677105000000,0.000484316000000 +0.000030390000000,0.000033946000000,0.000020133500000,0.000084513000000,0.000033945000000,0.000118488000000,0.000056464000000,0.000023689000000,0.000061599000000,0.000175377000000,0.000044612000000,0.000162735000000,0.000066736000000,0.000065155000000,0.000628908000000,0.000327476000000,0.000602833000000 +0.000031575000000,0.000034341000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000065946000000,0.000056859000000,0.000022305500000,0.000063970000000,0.000207772000000,0.000043031000000,0.000185254000000,0.000062785000000,0.000084513000000,0.000640759000000,0.000192760000000,0.000502488000000 +0.000068316000000,0.000033945000000,0.000018947500000,0.000069105000000,0.000034341000000,0.000065550000000,0.000057649000000,0.000022306000000,0.000062389000000,0.000157994000000,0.000045402000000,0.000175772000000,0.000172612000000,0.000076217000000,0.000596118000000,0.000420710000000,0.000485105000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000033550000000,0.000064760000000,0.000055673000000,0.000020528000000,0.000062389000000,0.000159179000000,0.000043427000000,0.000167476000000,0.000062390000000,0.000065155000000,0.000596907000000,0.000276908000000,0.000518291000000 +0.000033551000000,0.000033551000000,0.000018948000000,0.000067920000000,0.000033945000000,0.000066341000000,0.000056463000000,0.000021713500000,0.000064365000000,0.000159970000000,0.000063575000000,0.000169451000000,0.000061600000000,0.000065155000000,0.000731624000000,0.000227130000000,0.000487476000000 +0.000030784000000,0.000033550000000,0.000019343000000,0.000067921000000,0.000034340000000,0.000065550000000,0.000090440000000,0.000022306000000,0.000097550000000,0.000208167000000,0.000043822000000,0.000188810000000,0.000062785000000,0.000065551000000,0.000826439000000,0.000191575000000,0.000534488000000 +0.000029995000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000022306000000,0.000061995000000,0.000175377000000,0.000045402000000,0.000217253000000,0.000061994000000,0.000065550000000,0.000694488000000,0.000189600000000,0.000485896000000 +0.000031575000000,0.000033550000000,0.000019935500000,0.000102291000000,0.000033945000000,0.000099526000000,0.000056068000000,0.000038306000000,0.000064365000000,0.000180513000000,0.000044217000000,0.000224365000000,0.000061994000000,0.000062785000000,0.000594932000000,0.000192365000000,0.000485105000000 +0.000029994000000,0.000034340000000,0.000018750500000,0.000069896000000,0.000033946000000,0.000065550000000,0.000056463000000,0.000020331000000,0.000063970000000,0.000162736000000,0.000044217000000,0.000187624000000,0.000062784000000,0.000064760000000,0.000678290000000,0.000208563000000,0.000574784000000 +0.000030390000000,0.000034341000000,0.000020331000000,0.000069106000000,0.000034735000000,0.000064365000000,0.000058044000000,0.000020528000000,0.000061995000000,0.000152464000000,0.000046192000000,0.000172217000000,0.000061995000000,0.000063970000000,0.000630488000000,0.000195526000000,0.000485501000000 +0.000031970000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000065945000000,0.000077007000000,0.000022108500000,0.000061995000000,0.000173007000000,0.000043822000000,0.000168661000000,0.000060020000000,0.000064760000000,0.000595723000000,0.000191575000000,0.000517895000000 +0.000030785000000,0.000033945000000,0.000019343000000,0.000068711000000,0.000034340000000,0.000064365000000,0.000070686000000,0.000021911000000,0.000064760000000,0.000173797000000,0.000045007000000,0.000186834000000,0.000062390000000,0.000064760000000,0.000627327000000,0.000192760000000,0.000523032000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000067921000000,0.000033550000000,0.000066340000000,0.000056858000000,0.000021121000000,0.000063575000000,0.000173007000000,0.000043427000000,0.000177748000000,0.000062785000000,0.000098736000000,0.000630883000000,0.000209352000000,0.000484315000000 +0.000031970000000,0.000033551000000,0.000019343000000,0.000068315000000,0.000052908000000,0.000080562000000,0.000099921000000,0.000021713500000,0.000064365000000,0.000155624000000,0.000044217000000,0.000191180000000,0.000062784000000,0.000063970000000,0.000679476000000,0.000191575000000,0.000517501000000 +0.000030784000000,0.000035130000000,0.000018948000000,0.000069501000000,0.000033946000000,0.000063970000000,0.000057254000000,0.000021516000000,0.000062390000000,0.000156414000000,0.000044217000000,0.000167872000000,0.000060415000000,0.000065550000000,0.000595723000000,0.000194340000000,0.000484710000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000209352000000,0.000035131000000,0.000065945000000,0.000056069000000,0.000021318000000,0.000061994000000,0.000174982000000,0.000043822000000,0.000184859000000,0.000062389000000,0.000064365000000,0.000632464000000,0.000191969000000,0.000533698000000 +0.000029994000000,0.000033551000000,0.000019738000000,0.000120069000000,0.000033155000000,0.000065945000000,0.000057254000000,0.000023294000000,0.000065550000000,0.000159969000000,0.000043822000000,0.000170637000000,0.000060415000000,0.000064365000000,0.000662883000000,0.000191179000000,0.000517500000000 +0.000030390000000,0.000033551000000,0.000019343000000,0.000083723000000,0.000033945000000,0.000064760000000,0.000056859000000,0.000032577500000,0.000061994000000,0.000173007000000,0.000045797000000,0.000220019000000,0.000060020000000,0.000065155000000,0.000632069000000,0.000191575000000,0.000487081000000 +0.000029995000000,0.000033946000000,0.000019343000000,0.000068710000000,0.000035526000000,0.000064365000000,0.000056859000000,0.000023096000000,0.000061600000000,0.000174192000000,0.000043426000000,0.000181698000000,0.000062390000000,0.000065155000000,0.000594142000000,0.000212118000000,0.000519081000000 +0.000030389000000,0.000088464000000,0.000020330500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056069000000,0.000020528500000,0.000061995000000,0.000173797000000,0.000043032000000,0.000186044000000,0.000060414000000,0.000062784000000,0.000737154000000,0.000195525000000,0.000483920000000 +0.000030390000000,0.000034341000000,0.000020133500000,0.000083327000000,0.000033156000000,0.000063575000000,0.000056464000000,0.000023491000000,0.000085698000000,0.000155624000000,0.000043427000000,0.000190785000000,0.000060414000000,0.000099131000000,0.000628512000000,0.000190785000000,0.000522241000000 +0.000030389000000,0.000033550000000,0.000019343000000,0.000068315000000,0.000033155000000,0.000064760000000,0.000090834000000,0.000020528500000,0.000063970000000,0.000179722000000,0.000043426000000,0.000220020000000,0.000061600000000,0.000064760000000,0.000594537000000,0.000214489000000,0.000518686000000 +0.000030390000000,0.000033945000000,0.000019145500000,0.000068316000000,0.000033551000000,0.000065945000000,0.000056464000000,0.000022108500000,0.000065945000000,0.000174192000000,0.000044612000000,0.000169057000000,0.000060414000000,0.000065155000000,0.000757302000000,0.000196711000000,0.000573599000000 +0.000031575000000,0.000033551000000,0.000019738000000,0.000068711000000,0.000034340000000,0.000065550000000,0.000056464000000,0.000022108000000,0.000062390000000,0.000156019000000,0.000058439000000,0.000185254000000,0.000063180000000,0.000064760000000,0.000630883000000,0.000208957000000,0.000518686000000 +0.000029994000000,0.000034341000000,0.000019540500000,0.000069106000000,0.000066341000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000065155000000,0.000193945000000,0.000043427000000,0.000161945000000,0.000061995000000,0.000061995000000,0.000628512000000,0.000192760000000,0.000485896000000 +0.000031575000000,0.000033945000000,0.000019343500000,0.000068711000000,0.000033550000000,0.000066736000000,0.000056464000000,0.000020923500000,0.000061994000000,0.000173402000000,0.000043031000000,0.000189204000000,0.000062390000000,0.000064365000000,0.000594537000000,0.000192760000000,0.000498932000000 +0.000030389000000,0.000033945000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000066340000000,0.000056464000000,0.000029022000000,0.000063180000000,0.000156019000000,0.000043822000000,0.000189600000000,0.000062785000000,0.000064760000000,0.000629698000000,0.000196711000000,0.000518291000000 +0.000030785000000,0.000033946000000,0.000019145500000,0.000082933000000,0.000033946000000,0.000065156000000,0.000056069000000,0.000020331000000,0.000065155000000,0.000175772000000,0.000043822000000,0.000167871000000,0.000062390000000,0.000065945000000,0.000644710000000,0.000244908000000,0.000484315000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000069896000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000021120500000,0.000098340000000,0.000207378000000,0.000044217000000,0.000221994000000,0.000061994000000,0.000076216000000,0.000597698000000,0.000192365000000,0.000731624000000 +0.000031180000000,0.000033946000000,0.000019145500000,0.000067921000000,0.000033155000000,0.000064365000000,0.000056463000000,0.000020923000000,0.000061600000000,0.000156809000000,0.000044217000000,0.000188414000000,0.000063179000000,0.000062784000000,0.000627722000000,0.000191574000000,0.000517105000000 +0.000031574000000,0.000033945000000,0.000019540500000,0.000068315000000,0.000033945000000,0.000099526000000,0.000056463000000,0.000022306000000,0.000061600000000,0.000173797000000,0.000043821000000,0.000167871000000,0.000060019000000,0.000065155000000,0.000630883000000,0.000235821000000,0.000484711000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033551000000,0.000065155000000,0.000055673000000,0.000023491500000,0.000064365000000,0.000173402000000,0.000043822000000,0.000190389000000,0.000063180000000,0.000065155000000,0.000594932000000,0.000258340000000,0.000552661000000 +0.000029995000000,0.000033551000000,0.000018948000000,0.000069896000000,0.000034735000000,0.000064761000000,0.000057254000000,0.000020726000000,0.000062785000000,0.000208562000000,0.000043426000000,0.000162341000000,0.000061995000000,0.000062389000000,0.000611130000000,0.000190390000000,0.000524611000000 +0.000031179000000,0.000033550000000,0.000019145500000,0.000069896000000,0.000033155000000,0.000063970000000,0.000056463000000,0.000022305500000,0.000063970000000,0.000173797000000,0.000044612000000,0.000184858000000,0.000061995000000,0.000063970000000,0.000631279000000,0.000206192000000,0.000486291000000 +0.000033551000000,0.000033155000000,0.000019145500000,0.000088464000000,0.000067526000000,0.000063970000000,0.000056464000000,0.000022898500000,0.000062390000000,0.000157994000000,0.000043031000000,0.000186044000000,0.000060414000000,0.000062389000000,0.000629303000000,0.000192365000000,0.000553056000000 +0.000030389000000,0.000033550000000,0.000019343000000,0.000068711000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000056873500000,0.000064366000000,0.000159970000000,0.000044217000000,0.000187229000000,0.000060414000000,0.000064760000000,0.000596118000000,0.000201846000000,0.000484711000000 +0.000029995000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000065551000000,0.000056464000000,0.000020726000000,0.000076612000000,0.000264266000000,0.000043427000000,0.000169451000000,0.000060414000000,0.000064365000000,0.000664068000000,0.000198291000000,0.000557797000000 +0.000029995000000,0.000033155000000,0.000019738500000,0.000067921000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000020923500000,0.000064365000000,0.000211722000000,0.000043427000000,0.000188020000000,0.000060415000000,0.000064365000000,0.000628908000000,0.000210933000000,0.000681451000000 +0.000031180000000,0.000052514000000,0.000020133500000,0.000068710000000,0.000034735000000,0.000097945000000,0.000106241000000,0.000020528000000,0.000061995000000,0.000174587000000,0.000045007000000,0.000184858000000,0.000062389000000,0.000062784000000,0.000598488000000,0.000191180000000,0.000551081000000 +0.000031180000000,0.000033945000000,0.000019935500000,0.000069106000000,0.000033550000000,0.000066340000000,0.000055673000000,0.000021910500000,0.000061995000000,0.000214488000000,0.000043822000000,0.000212908000000,0.000060809000000,0.000065156000000,0.000641155000000,0.000446390000000,0.000484315000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000069105000000,0.000033550000000,0.000065155000000,0.000056463000000,0.000020330500000,0.000062785000000,0.000162735000000,0.000043031000000,0.000188415000000,0.000060414000000,0.000063180000000,0.000629698000000,0.000194735000000,0.000554241000000 +0.000029995000000,0.000033550000000,0.000018750000000,0.000069501000000,0.000033156000000,0.000066340000000,0.000056858000000,0.000020330500000,0.000064760000000,0.000152464000000,0.000043822000000,0.000171821000000,0.000061994000000,0.000064365000000,0.000708710000000,0.000193945000000,0.000486291000000 +0.000031180000000,0.000033946000000,0.000020133000000,0.000138242000000,0.000035921000000,0.000064365000000,0.000056858000000,0.000021713000000,0.000061995000000,0.000173797000000,0.000057254000000,0.000169451000000,0.000061600000000,0.000064760000000,0.000595722000000,0.000191970000000,0.000484315000000 +0.000030389000000,0.000033155000000,0.000018948000000,0.000069501000000,0.000034340000000,0.000063970000000,0.000055674000000,0.000022108500000,0.000085303000000,0.000207772000000,0.000043426000000,0.000299821000000,0.000060414000000,0.000064760000000,0.000638389000000,0.000194340000000,0.000655377000000 +0.000031180000000,0.000033945000000,0.000019343000000,0.000068316000000,0.000052513000000,0.000063970000000,0.000056859000000,0.000027639000000,0.000064365000000,0.000173007000000,0.000043822000000,0.000177353000000,0.000062390000000,0.000064760000000,0.000824463000000,0.000238192000000,0.000484711000000 +0.000029995000000,0.000033551000000,0.000018948000000,0.000067920000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000022306000000,0.000061599000000,0.000156415000000,0.000065155000000,0.000171821000000,0.000061599000000,0.000065155000000,0.000645500000000,0.000192365000000,0.000565303000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000068710000000,0.000033156000000,0.000113748000000,0.000103081000000,0.000020726000000,0.000064365000000,0.000156810000000,0.000043426000000,0.000203032000000,0.000061995000000,0.000063970000000,0.000596118000000,0.000206588000000,0.000569649000000 +0.000048563000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056069000000,0.000022503500000,0.000063970000000,0.000259921000000,0.000043427000000,0.000184068000000,0.000061995000000,0.000063180000000,0.000632068000000,0.000227130000000,0.000484316000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000067526000000,0.000056859000000,0.000021713000000,0.000062390000000,0.000159970000000,0.000043822000000,0.000170637000000,0.000103871000000,0.000062389000000,0.000627723000000,0.000207773000000,0.000518290000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000101501000000,0.000034340000000,0.000063970000000,0.000056859000000,0.000020528500000,0.000096365000000,0.000194341000000,0.000043032000000,0.000174982000000,0.000060414000000,0.000065551000000,0.000597698000000,0.000195526000000,0.000506439000000 +0.000029994000000,0.000033550000000,0.000019145500000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000021516000000,0.000109797000000,0.000173797000000,0.000043821000000,0.000220020000000,0.000062390000000,0.000064365000000,0.000662883000000,0.000191575000000,0.000485105000000 +0.000030785000000,0.000034736000000,0.000019540500000,0.000069896000000,0.000035525000000,0.000063970000000,0.000056464000000,0.000021515500000,0.000063970000000,0.000173797000000,0.000043822000000,0.000186044000000,0.000061995000000,0.000063180000000,0.000640759000000,0.000212513000000,0.000517895000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000035130000000,0.000069105000000,0.000056464000000,0.000023491500000,0.000064365000000,0.000156020000000,0.000043427000000,0.000191179000000,0.000066736000000,0.000063575000000,0.000594538000000,0.000193155000000,0.000488266000000 +0.000030785000000,0.000034735000000,0.000019738000000,0.000068315000000,0.000033946000000,0.000086093000000,0.000056859000000,0.000058651500000,0.000064760000000,0.000179328000000,0.000043032000000,0.000187229000000,0.000061994000000,0.000063575000000,0.000594143000000,0.000212118000000,0.000531723000000 +0.000031575000000,0.000033156000000,0.000018750500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000077007000000,0.000020331000000,0.000061995000000,0.000174192000000,0.000045007000000,0.000169847000000,0.000061994000000,0.000064760000000,0.000629698000000,0.000211328000000,0.000520266000000 +0.000030390000000,0.000033946000000,0.000019145500000,0.000069106000000,0.000046982000000,0.000066341000000,0.000055674000000,0.000022503500000,0.000063970000000,0.000155624000000,0.000043427000000,0.000186439000000,0.000062785000000,0.000064760000000,0.000665254000000,0.000190785000000,0.000484315000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000069896000000,0.000034341000000,0.000064365000000,0.000057254000000,0.000022108500000,0.000061204000000,0.000174982000000,0.000043822000000,0.000161945000000,0.000067131000000,0.000063180000000,0.000595328000000,0.000193155000000,0.000575574000000 +0.000030390000000,0.000070291000000,0.000019738000000,0.000102291000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000020725500000,0.000061995000000,0.000173797000000,0.000043822000000,0.000226340000000,0.000060415000000,0.000065155000000,0.000628908000000,0.000193155000000,0.000485895000000 +0.000030390000000,0.000034736000000,0.000019343000000,0.000070291000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020528500000,0.000077402000000,0.000225550000000,0.000043427000000,0.000189204000000,0.000061600000000,0.000065550000000,0.000642735000000,0.000192365000000,0.000484315000000 +0.000031575000000,0.000033945000000,0.000018948000000,0.000070290000000,0.000033945000000,0.000067526000000,0.000055674000000,0.000020330500000,0.000061995000000,0.000175378000000,0.000043426000000,0.000167871000000,0.000061995000000,0.000083328000000,0.000596118000000,0.000195921000000,0.000517895000000 +0.000031970000000,0.000034341000000,0.000019145500000,0.000067920000000,0.000034341000000,0.000064760000000,0.000056859000000,0.000020331000000,0.000065945000000,0.000173007000000,0.000063180000000,0.000188810000000,0.000060414000000,0.000063180000000,0.000696069000000,0.000197106000000,0.000484711000000 +0.000030389000000,0.000034340000000,0.000019738000000,0.000067921000000,0.000033550000000,0.000091624000000,0.000056858000000,0.000022701000000,0.000062389000000,0.000156414000000,0.000058834000000,0.000247279000000,0.000061600000000,0.000063180000000,0.000662883000000,0.000249253000000,0.000517500000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033551000000,0.000063574000000,0.000057254000000,0.000037516000000,0.000061995000000,0.000208167000000,0.000044612000000,0.000168267000000,0.000060415000000,0.000064760000000,0.000627722000000,0.000198686000000,0.000484710000000 +0.000031180000000,0.000033156000000,0.000020133000000,0.000069105000000,0.000033945000000,0.000066735000000,0.000056068000000,0.000022306000000,0.000061995000000,0.000173402000000,0.000045402000000,0.000190390000000,0.000060414000000,0.000064760000000,0.000595328000000,0.000193155000000,0.000600463000000 +0.000031575000000,0.000033550000000,0.000018948000000,0.000069106000000,0.000033550000000,0.000066735000000,0.000056859000000,0.000020528500000,0.000065155000000,0.000174982000000,0.000044217000000,0.000162735000000,0.000063575000000,0.000062785000000,0.000651031000000,0.000192365000000,0.000577945000000 +0.000030784000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000053698000000,0.000065945000000,0.000058044000000,0.000020330500000,0.000109402000000,0.000173797000000,0.000043427000000,0.000198686000000,0.000061995000000,0.000062389000000,0.000666044000000,0.000195920000000,0.000485895000000 +0.000030785000000,0.000034340000000,0.000020133000000,0.000069106000000,0.000033946000000,0.000063575000000,0.000056859000000,0.000021516000000,0.000061995000000,0.000191575000000,0.000043427000000,0.000174587000000,0.000064760000000,0.000065945000000,0.000595327000000,0.000212908000000,0.000485500000000 +0.000029994000000,0.000049748000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056464000000,0.000020330500000,0.000064761000000,0.000159970000000,0.000043032000000,0.000167871000000,0.000061994000000,0.000097155000000,0.000949697000000,0.000244513000000,0.000517500000000 +0.000029995000000,0.000033156000000,0.000019935500000,0.000067921000000,0.000033155000000,0.000065551000000,0.000057254000000,0.000020330500000,0.000063180000000,0.000159970000000,0.000044612000000,0.000215673000000,0.000060415000000,0.000063575000000,0.000628513000000,0.000211327000000,0.000487870000000 +0.000051723000000,0.000033945000000,0.000018947500000,0.000068316000000,0.000033155000000,0.000063970000000,0.000056858000000,0.000020330500000,0.000061995000000,0.000174982000000,0.000046588000000,0.000188019000000,0.000060414000000,0.000062785000000,0.000678686000000,0.000238192000000,0.000534883000000 +0.000100711000000,0.000033155000000,0.000018553000000,0.000068315000000,0.000032760000000,0.000067130000000,0.000056464000000,0.000021515500000,0.000065155000000,0.000240563000000,0.000043427000000,0.000184859000000,0.000062784000000,0.000063180000000,0.000617846000000,0.000207772000000,0.000487081000000 +0.000084908000000,0.000033945000000,0.000018750500000,0.000069896000000,0.000033946000000,0.000064365000000,0.000090440000000,0.000022503500000,0.000061995000000,0.000180118000000,0.000043426000000,0.000176958000000,0.000062389000000,0.000062389000000,0.000594933000000,0.000195130000000,0.000484711000000 +0.000033156000000,0.000033945000000,0.000019145500000,0.000125599000000,0.000035525000000,0.000066341000000,0.000056858000000,0.000056083500000,0.000062389000000,0.000162735000000,0.000043427000000,0.000203427000000,0.000061995000000,0.000062389000000,0.000665649000000,0.000243328000000,0.000518290000000 +0.000031575000000,0.000034735000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000065945000000,0.000056463000000,0.000064182500000,0.000064365000000,0.000152859000000,0.000043427000000,0.000172217000000,0.000062390000000,0.000063179000000,0.000641550000000,0.000211328000000,0.000485896000000 +0.000031180000000,0.000034735000000,0.000018948000000,0.000068710000000,0.000033155000000,0.000063575000000,0.000056463000000,0.000023688500000,0.000063180000000,0.000189204000000,0.000044217000000,0.000169846000000,0.000062389000000,0.000064365000000,0.000596513000000,0.000194340000000,0.000518291000000 +0.000030389000000,0.000033946000000,0.000019738000000,0.000069895000000,0.000033550000000,0.000065945000000,0.000056464000000,0.000022503500000,0.000061204000000,0.000174587000000,0.000044612000000,0.000186044000000,0.000061994000000,0.000098340000000,0.000665649000000,0.000204612000000,0.000592167000000 +0.000039476000000,0.000033155000000,0.000019343000000,0.000068316000000,0.000064760000000,0.000099526000000,0.000056464000000,0.000020330500000,0.000063575000000,0.000173007000000,0.000043427000000,0.000177353000000,0.000061995000000,0.000062390000000,0.000630884000000,0.000208957000000,0.000485501000000 +0.000030389000000,0.000033550000000,0.000019936000000,0.000068316000000,0.000033155000000,0.000065155000000,0.000056464000000,0.000043046500000,0.000064365000000,0.000156415000000,0.000043822000000,0.000172217000000,0.000060415000000,0.000062785000000,0.000596118000000,0.000206587000000,0.000517500000000 +0.000030390000000,0.000033550000000,0.000019738000000,0.000068710000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000022306000000,0.000063970000000,0.000156414000000,0.000044612000000,0.000167476000000,0.000061995000000,0.000063575000000,0.000710291000000,0.000448365000000,0.000485106000000 +0.000031575000000,0.000033945000000,0.000019738500000,0.000069105000000,0.000033550000000,0.000065946000000,0.000056463000000,0.000022306000000,0.000064760000000,0.000174587000000,0.000063180000000,0.000253600000000,0.000060809000000,0.000062785000000,0.000632068000000,0.000192365000000,0.000567673000000 +0.000031179000000,0.000035131000000,0.000019343000000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000023688500000,0.000098340000000,0.000159574000000,0.000044612000000,0.000171031000000,0.000062390000000,0.000062390000000,0.000662883000000,0.000193155000000,0.000525797000000 +0.000030785000000,0.000033945000000,0.000019145500000,0.000068711000000,0.000033946000000,0.000064365000000,0.000059229000000,0.000020923500000,0.000061995000000,0.000173797000000,0.000043427000000,0.000174587000000,0.000061600000000,0.000064760000000,0.000598093000000,0.000213698000000,0.000486290000000 +0.000030390000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033550000000,0.000066736000000,0.000056858000000,0.000023293500000,0.000063970000000,0.000266241000000,0.000043031000000,0.000185253000000,0.000061995000000,0.000064760000000,0.000627723000000,0.000206587000000,0.000518686000000 +0.000030389000000,0.000033155000000,0.000019738500000,0.000069106000000,0.000033155000000,0.000066340000000,0.000055674000000,0.000021516000000,0.000061994000000,0.000174192000000,0.000043427000000,0.000221600000000,0.000060414000000,0.000112957000000,0.000680661000000,0.000192760000000,0.000483921000000 +0.000030785000000,0.000033550000000,0.000019738000000,0.000068315000000,0.000033155000000,0.000097945000000,0.000057649000000,0.000020923500000,0.000061995000000,0.000156414000000,0.000043427000000,0.000191575000000,0.000062390000000,0.000080168000000,0.000594538000000,0.000191575000000,0.000533303000000 +0.000029994000000,0.000034340000000,0.000020133000000,0.000068316000000,0.000034340000000,0.000064760000000,0.000058044000000,0.000020725500000,0.000063970000000,0.000203822000000,0.000044217000000,0.000185649000000,0.000062390000000,0.000076612000000,0.000595722000000,0.000209352000000,0.000517896000000 +0.000031970000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033550000000,0.000065550000000,0.000056859000000,0.000036726000000,0.000061205000000,0.000174192000000,0.000043032000000,0.000188414000000,0.000061994000000,0.000063575000000,0.001057154000000,0.000206588000000,0.000538438000000 +0.000030390000000,0.000034340000000,0.000018947500000,0.000082538000000,0.000033155000000,0.000063575000000,0.000056069000000,0.000021713500000,0.000061994000000,0.000156809000000,0.000043426000000,0.000185253000000,0.000061599000000,0.000064760000000,0.000647476000000,0.000208958000000,0.000518291000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000106242000000,0.000020726000000,0.000077798000000,0.000193155000000,0.000043427000000,0.000161155000000,0.000061600000000,0.000063575000000,0.000627722000000,0.000192760000000,0.000483525000000 +0.000029995000000,0.000033155000000,0.000019738000000,0.000070291000000,0.000034340000000,0.000063970000000,0.000056464000000,0.000020330500000,0.000064365000000,0.000173797000000,0.000057254000000,0.000189600000000,0.000061995000000,0.000061994000000,0.000594537000000,0.000192365000000,0.000485105000000 +0.000030390000000,0.000034341000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000063970000000,0.000056464000000,0.000020330500000,0.000064365000000,0.000156414000000,0.000044612000000,0.000223180000000,0.000062785000000,0.000098340000000,0.000630093000000,0.000197501000000,0.000517500000000 +0.000031970000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033155000000,0.000065945000000,0.000056859000000,0.000023293500000,0.000062390000000,0.000175772000000,0.000043427000000,0.000188019000000,0.000060415000000,0.000062389000000,0.000663674000000,0.000194340000000,0.000484316000000 +0.000030390000000,0.000034340000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000097945000000,0.000056464000000,0.000021318500000,0.000061995000000,0.000244513000000,0.000043031000000,0.000188414000000,0.000060414000000,0.000062785000000,0.000618636000000,0.000213303000000,0.000517896000000 +0.000031574000000,0.000033945000000,0.000019343000000,0.000111772000000,0.000034735000000,0.000063575000000,0.000056858000000,0.000021713000000,0.000064365000000,0.000156414000000,0.000044217000000,0.000188809000000,0.000060414000000,0.000065155000000,0.000593747000000,0.000195526000000,0.000483525000000 +0.000033945000000,0.000033155000000,0.000019145500000,0.000101895000000,0.000048958000000,0.000063575000000,0.000056463000000,0.000020725500000,0.000062389000000,0.000174193000000,0.000043822000000,0.000167476000000,0.000061205000000,0.000064760000000,0.000631279000000,0.000197105000000,0.000484711000000 +0.000031180000000,0.000033155000000,0.000018948000000,0.000068710000000,0.000033155000000,0.000063970000000,0.000056858000000,0.000020726000000,0.000064365000000,0.000173402000000,0.000045007000000,0.000190390000000,0.000062390000000,0.000063180000000,0.000628513000000,0.000195525000000,0.000715426000000 +0.000029995000000,0.000032760000000,0.000019145500000,0.000069106000000,0.000049352000000,0.000063575000000,0.000071477000000,0.000021318500000,0.000061994000000,0.000259130000000,0.000043822000000,0.000162735000000,0.000061995000000,0.000063180000000,0.000613105000000,0.000200661000000,0.000523031000000 +0.000031574000000,0.000033155000000,0.000018948000000,0.000069105000000,0.000033946000000,0.000066341000000,0.000057254000000,0.000021910500000,0.000064365000000,0.000173402000000,0.000043822000000,0.000219624000000,0.000062784000000,0.000062785000000,0.000656167000000,0.000192365000000,0.000486290000000 +0.000031575000000,0.000033945000000,0.000019145500000,0.000069501000000,0.000033550000000,0.000066340000000,0.000056859000000,0.000022108500000,0.000061995000000,0.000157599000000,0.000044217000000,0.000175377000000,0.000061994000000,0.000100316000000,0.000649846000000,0.000195525000000,0.000554242000000 +0.000031180000000,0.000033551000000,0.000019343500000,0.000069895000000,0.000034340000000,0.000065945000000,0.000055673000000,0.000020726000000,0.000064760000000,0.000180513000000,0.000043822000000,0.000166686000000,0.000066340000000,0.000065550000000,0.000594537000000,0.000198291000000,0.000483920000000 +0.000030785000000,0.000034340000000,0.000018750500000,0.000069500000000,0.000034341000000,0.000079378000000,0.000056464000000,0.000020330500000,0.000064760000000,0.000159575000000,0.000044217000000,0.000169846000000,0.000060415000000,0.000064760000000,0.000628117000000,0.000192365000000,0.000537649000000 +0.000029995000000,0.000034340000000,0.000019145500000,0.000067921000000,0.000034735000000,0.000065945000000,0.000056464000000,0.000020133500000,0.000064760000000,0.000176167000000,0.000043427000000,0.000364612000000,0.000062390000000,0.000064365000000,0.000627722000000,0.000210142000000,0.000555822000000 +0.000029995000000,0.000033551000000,0.000019738000000,0.000082538000000,0.000033551000000,0.000065946000000,0.000057649000000,0.000022108000000,0.000064365000000,0.000175378000000,0.000044612000000,0.000245303000000,0.000061995000000,0.000062785000000,0.000631673000000,0.000205007000000,0.000486291000000 +0.000029994000000,0.000033550000000,0.000019935500000,0.000069106000000,0.000034340000000,0.000063970000000,0.000056464000000,0.000020331000000,0.000095575000000,0.000213698000000,0.000043427000000,0.000177353000000,0.000060019000000,0.000063575000000,0.000594933000000,0.000195525000000,0.000574389000000 +0.000030390000000,0.000033550000000,0.000020133500000,0.000069106000000,0.000033155000000,0.000064365000000,0.000077797000000,0.000020330500000,0.000061599000000,0.000162735000000,0.000043427000000,0.000187624000000,0.000061600000000,0.000061995000000,0.000629698000000,0.000229896000000,0.000808266000000 +0.000029995000000,0.000033155000000,0.000019935500000,0.000069501000000,0.000035131000000,0.000064365000000,0.000056464000000,0.000031787500000,0.000061995000000,0.000152463000000,0.000043427000000,0.000171822000000,0.000062390000000,0.000100315000000,0.000649056000000,0.000193946000000,0.000498933000000 +0.000030390000000,0.000052908000000,0.000019738000000,0.000069106000000,0.000046982000000,0.000066340000000,0.000056464000000,0.000020331000000,0.000064365000000,0.000174192000000,0.000046192000000,0.000169847000000,0.000061600000000,0.000065155000000,0.000594143000000,0.000242143000000,0.000534883000000 +0.000031575000000,0.000033155000000,0.000019343000000,0.000069106000000,0.000033551000000,0.000083723000000,0.000056068000000,0.000021713500000,0.000065155000000,0.000249254000000,0.000043031000000,0.000220809000000,0.000078982000000,0.000064365000000,0.000677896000000,0.000197501000000,0.000519081000000 +0.000030390000000,0.000033946000000,0.000019145500000,0.000067920000000,0.000033945000000,0.000063180000000,0.000057649000000,0.000022306000000,0.000064365000000,0.000173007000000,0.000078192000000,0.000177352000000,0.000077402000000,0.000063970000000,0.000642735000000,0.000208168000000,0.000484710000000 +0.000030390000000,0.000033945000000,0.000019343000000,0.000101895000000,0.000033945000000,0.000065155000000,0.000057254000000,0.000022306000000,0.000065156000000,0.000156414000000,0.000043822000000,0.000172217000000,0.000061995000000,0.000063180000000,0.000594142000000,0.000195131000000,0.000566883000000 +0.000033550000000,0.000033551000000,0.000037516000000,0.000068710000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000022306000000,0.000064760000000,0.000156019000000,0.000044612000000,0.000168266000000,0.000060020000000,0.000062785000000,0.000594142000000,0.000201452000000,0.000577550000000 +0.000030390000000,0.000034735000000,0.000020726000000,0.000069106000000,0.000034341000000,0.000064365000000,0.000055674000000,0.000021713500000,0.000094389000000,0.000244118000000,0.000043822000000,0.000254389000000,0.000062390000000,0.000064365000000,0.000627722000000,0.000192760000000,0.000484316000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000069105000000,0.000033155000000,0.000065945000000,0.000056859000000,0.000022306000000,0.000064760000000,0.000159970000000,0.000047377000000,0.000170242000000,0.000062390000000,0.000065155000000,0.000630093000000,0.000191970000000,0.000639969000000 +0.000031970000000,0.000033155000000,0.000019541000000,0.000069106000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000022108500000,0.000065945000000,0.000174587000000,0.000043822000000,0.000175377000000,0.000097155000000,0.000110193000000,0.000597698000000,0.000181698000000,0.000555821000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033946000000,0.000066340000000,0.000056464000000,0.000022306000000,0.000063180000000,0.000173797000000,0.000045402000000,0.000182489000000,0.000062390000000,0.000064760000000,0.000849352000000,0.000202636000000,0.000484316000000 +0.000029995000000,0.000034341000000,0.000019738000000,0.000068711000000,0.000033156000000,0.000141402000000,0.000055674000000,0.000022503500000,0.000064365000000,0.000242933000000,0.000045007000000,0.000186834000000,0.000062390000000,0.000063970000000,0.000683032000000,0.000181698000000,0.000517106000000 +0.000029995000000,0.000067130000000,0.000018948000000,0.000068711000000,0.000033945000000,0.000063970000000,0.000056464000000,0.000020528500000,0.000061994000000,0.000156414000000,0.000043427000000,0.000190389000000,0.000064365000000,0.000063970000000,0.000628117000000,0.000196315000000,0.000487871000000 +0.000030389000000,0.000033550000000,0.000019738000000,0.000068710000000,0.000033156000000,0.000064365000000,0.000057649000000,0.000021911000000,0.000060810000000,0.000174192000000,0.000044612000000,0.000185649000000,0.000060019000000,0.000062389000000,0.000594142000000,0.000201452000000,0.000484710000000 +0.000031970000000,0.000033945000000,0.000018948000000,0.000068315000000,0.000036711000000,0.000063575000000,0.000057254000000,0.000022306000000,0.000076217000000,0.000173797000000,0.000044217000000,0.000204612000000,0.000062390000000,0.000062784000000,0.000629698000000,0.000199081000000,0.000520661000000 +0.000030389000000,0.000033551000000,0.000018750500000,0.000069501000000,0.000033155000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000064760000000,0.000169846000000,0.000043822000000,0.000185649000000,0.000060414000000,0.000064761000000,0.000630093000000,0.000186439000000,0.000484316000000 +0.000031180000000,0.000033155000000,0.000019145500000,0.000069501000000,0.000033945000000,0.000066341000000,0.000057649000000,0.000020923000000,0.000063970000000,0.000174192000000,0.000043426000000,0.000162340000000,0.000062785000000,0.000065155000000,0.000594933000000,0.000180513000000,0.000553846000000 +0.000029994000000,0.000033155000000,0.000020528000000,0.000069896000000,0.000032760000000,0.000064365000000,0.000130341000000,0.000022898500000,0.000061599000000,0.000173797000000,0.000043427000000,0.000190390000000,0.000062785000000,0.000098341000000,0.000631278000000,0.000180908000000,0.000505649000000 +0.000031575000000,0.000034340000000,0.000019540500000,0.000069501000000,0.000033156000000,0.000139822000000,0.000075031000000,0.000020528000000,0.000061994000000,0.000176167000000,0.000043427000000,0.000223970000000,0.000060809000000,0.000065155000000,0.000640365000000,0.000191574000000,0.000485105000000 +0.000031575000000,0.000033155000000,0.000018750500000,0.000069500000000,0.000033550000000,0.000081747000000,0.000055673000000,0.000021911000000,0.000061995000000,0.000175772000000,0.000043822000000,0.000167872000000,0.000062389000000,0.000064760000000,0.000594538000000,0.000182488000000,0.000518291000000 +0.000031180000000,0.000036316000000,0.000018947500000,0.000103081000000,0.000033550000000,0.000078982000000,0.000057648000000,0.000038306000000,0.000065155000000,0.000173007000000,0.000044217000000,0.000188414000000,0.000062390000000,0.000065155000000,0.000611525000000,0.000203031000000,0.000484711000000 +0.000030390000000,0.000033551000000,0.000019738000000,0.000070291000000,0.000032760000000,0.000064760000000,0.000056463000000,0.000024478500000,0.000064365000000,0.000156415000000,0.000043032000000,0.000188415000000,0.000061994000000,0.000063575000000,0.000630093000000,0.000184069000000,0.000517105000000 +0.000046192000000,0.000067526000000,0.000018750500000,0.000069106000000,0.000032760000000,0.000063575000000,0.000056464000000,0.000022108500000,0.000061599000000,0.000257945000000,0.000045402000000,0.000167476000000,0.000060415000000,0.000064760000000,0.000635623000000,0.000184069000000,0.000512365000000 +0.000029995000000,0.000033946000000,0.000018948000000,0.000069105000000,0.000048957000000,0.000065550000000,0.000055674000000,0.000021516000000,0.000061995000000,0.000173007000000,0.000077797000000,0.000190389000000,0.000060414000000,0.000063575000000,0.000594538000000,0.000181303000000,0.000484316000000 +0.000030390000000,0.000034735000000,0.000019540500000,0.000070291000000,0.000034341000000,0.000064365000000,0.000091229000000,0.000023491500000,0.000064760000000,0.000174983000000,0.000043822000000,0.000161946000000,0.000062784000000,0.000062390000000,0.000729649000000,0.000188019000000,0.000572414000000 +0.000031180000000,0.000033945000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000097550000000,0.000057649000000,0.000022306000000,0.000061599000000,0.000173402000000,0.000043426000000,0.000220020000000,0.000061994000000,0.000098340000000,0.000630883000000,0.000180908000000,0.000485895000000 +0.000030785000000,0.000034340000000,0.000018750500000,0.000069106000000,0.000034340000000,0.000063970000000,0.000056859000000,0.000022306000000,0.000063970000000,0.000242142000000,0.000045402000000,0.000180909000000,0.000100711000000,0.000065155000000,0.000605994000000,0.000181698000000,0.000518686000000 +0.000031180000000,0.000033155000000,0.000018948000000,0.000069105000000,0.000034340000000,0.000064760000000,0.000056068000000,0.000020923000000,0.000063969000000,0.000159970000000,0.000043427000000,0.000167476000000,0.000075427000000,0.000064760000000,0.000664464000000,0.000184463000000,0.000517896000000 +0.000034735000000,0.000033155000000,0.000018948000000,0.000213304000000,0.000033551000000,0.000067130000000,0.000056463000000,0.000022306000000,0.000061600000000,0.000160365000000,0.000043427000000,0.000169846000000,0.000061995000000,0.000064760000000,0.000630488000000,0.000189600000000,0.000509204000000 +0.000030390000000,0.000034340000000,0.000018948000000,0.000087673000000,0.000033550000000,0.000063970000000,0.000057254000000,0.000021910500000,0.000101105000000,0.000174983000000,0.000043427000000,0.000231476000000,0.000062785000000,0.000064760000000,0.000627722000000,0.000180118000000,0.000533698000000 +0.000029994000000,0.000032761000000,0.000019145500000,0.000085303000000,0.000034340000000,0.000065945000000,0.000056859000000,0.000021713500000,0.000080168000000,0.000189994000000,0.000045402000000,0.000173797000000,0.000060414000000,0.000062390000000,0.000651426000000,0.000181698000000,0.000486686000000 +0.000031180000000,0.000035131000000,0.000019738000000,0.000069105000000,0.000033946000000,0.000066340000000,0.000056068000000,0.000021318000000,0.000075821000000,0.000180118000000,0.000043821000000,0.000167081000000,0.000062784000000,0.000065155000000,0.000662883000000,0.000188414000000,0.000498537000000 +0.000030785000000,0.000101106000000,0.000018947500000,0.000069501000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000020331000000,0.000065550000000,0.000163131000000,0.000043822000000,0.000177353000000,0.000061995000000,0.000065551000000,0.000675130000000,0.000182093000000,0.000517501000000 +0.000029994000000,0.000099526000000,0.000020133000000,0.000102291000000,0.000033155000000,0.000081352000000,0.000056464000000,0.000022898500000,0.000062390000000,0.000219229000000,0.000046192000000,0.000195130000000,0.000062389000000,0.000075822000000,0.000594932000000,0.000180118000000,0.000485106000000 +0.000031575000000,0.000035526000000,0.000018750500000,0.000069896000000,0.000033155000000,0.000065946000000,0.000056464000000,0.000022701000000,0.000064365000000,0.000192760000000,0.000043822000000,0.000159970000000,0.000067526000000,0.000064365000000,0.000607969000000,0.000182489000000,0.000518685000000 +0.000031180000000,0.000033156000000,0.000018750500000,0.000069105000000,0.000033945000000,0.000066735000000,0.000056069000000,0.000022503500000,0.000061994000000,0.000174192000000,0.000045402000000,0.000178537000000,0.000061995000000,0.000064760000000,0.000663278000000,0.000189205000000,0.000485105000000 +0.000031180000000,0.000033155000000,0.000019738000000,0.000068316000000,0.000033945000000,0.000065155000000,0.000056859000000,0.000020923500000,0.000097550000000,0.000173402000000,0.000043821000000,0.000166291000000,0.000060809000000,0.000064760000000,0.000640759000000,0.000179723000000,0.000498142000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000068711000000,0.000033156000000,0.000063574000000,0.000056464000000,0.000022108500000,0.000063970000000,0.000156415000000,0.000043427000000,0.000177352000000,0.000062785000000,0.000065156000000,0.000594538000000,0.000184069000000,0.000517106000000 +0.000029995000000,0.000033551000000,0.000018750500000,0.000068711000000,0.000034340000000,0.000064760000000,0.000056859000000,0.000020528500000,0.000064365000000,0.000156019000000,0.000045007000000,0.000158785000000,0.000062389000000,0.000061994000000,0.000662488000000,0.000373303000000,0.000484315000000 +0.000031575000000,0.000034735000000,0.000018750500000,0.000069500000000,0.000034340000000,0.000063575000000,0.000056859000000,0.000027442000000,0.000061994000000,0.000175772000000,0.000043821000000,0.000173797000000,0.000062785000000,0.000064760000000,0.000628513000000,0.000284809000000,0.000517501000000 +0.000032760000000,0.000033155000000,0.000019935500000,0.000068711000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000021515500000,0.000061995000000,0.000159180000000,0.000044217000000,0.000160365000000,0.000061995000000,0.000062785000000,0.000596512000000,0.000184859000000,0.000483920000000 +0.000030390000000,0.000034341000000,0.000018750500000,0.000068711000000,0.000033551000000,0.000064365000000,0.000058044000000,0.000020923500000,0.000061995000000,0.000187229000000,0.000045402000000,0.000250439000000,0.000060414000000,0.000063180000000,0.000683031000000,0.000180908000000,0.000595722000000 +0.000029994000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000037105000000,0.000065550000000,0.000056463000000,0.000021911000000,0.000064365000000,0.000174982000000,0.000057649000000,0.000175377000000,0.000062390000000,0.000065551000000,0.000630093000000,0.000184068000000,0.000519476000000 +0.000029995000000,0.000033550000000,0.000020528500000,0.000068711000000,0.000032760000000,0.000065550000000,0.000055674000000,0.000020331000000,0.000061600000000,0.000173797000000,0.000043032000000,0.000175773000000,0.000060414000000,0.000064760000000,0.000594538000000,0.000216463000000,0.000483920000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000068316000000,0.000046982000000,0.000063970000000,0.000056859000000,0.000022503500000,0.000064365000000,0.000156414000000,0.000043822000000,0.000199081000000,0.000060414000000,0.000065550000000,0.000594538000000,0.000180514000000,0.000521056000000 +0.000029995000000,0.000034340000000,0.000018750500000,0.000067921000000,0.000032760000000,0.000063970000000,0.000058044000000,0.000020528000000,0.000080563000000,0.000193550000000,0.000043032000000,0.000206587000000,0.000062390000000,0.000063575000000,0.000627328000000,0.000180513000000,0.000541205000000 +0.000030785000000,0.000033945000000,0.000020133000000,0.000068710000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000021713500000,0.000062390000000,0.000173797000000,0.000043822000000,0.000160365000000,0.000060415000000,0.000063969000000,0.000741106000000,0.000213303000000,0.000538834000000 +0.000031180000000,0.000034736000000,0.000019540500000,0.000068711000000,0.000033945000000,0.000064760000000,0.000056069000000,0.000023491000000,0.000062390000000,0.000156810000000,0.000043426000000,0.000174192000000,0.000062390000000,0.000064365000000,0.000679476000000,0.000182488000000,0.000524611000000 +0.000030390000000,0.000033945000000,0.000019935500000,0.000088859000000,0.000032760000000,0.000099526000000,0.000057254000000,0.000021121000000,0.000064365000000,0.000207377000000,0.000043427000000,0.000165895000000,0.000060019000000,0.000065155000000,0.000644315000000,0.000180908000000,0.000483526000000 +0.000031575000000,0.000033155000000,0.000018750500000,0.000069105000000,0.000033550000000,0.000063970000000,0.000125995000000,0.000020725500000,0.000064365000000,0.000173007000000,0.000043427000000,0.000180118000000,0.000075032000000,0.000063575000000,0.000631673000000,0.000233056000000,0.000485501000000 +0.000029994000000,0.000033156000000,0.000018948000000,0.000069896000000,0.000032760000000,0.000066341000000,0.000056464000000,0.000021911000000,0.000061204000000,0.000156414000000,0.000043426000000,0.000178932000000,0.000060415000000,0.000065550000000,0.000627723000000,0.000180908000000,0.000553451000000 +0.000030390000000,0.000033551000000,0.000018948000000,0.000069896000000,0.000033551000000,0.000065945000000,0.000056068000000,0.000022108500000,0.000086094000000,0.000175378000000,0.000043427000000,0.000158389000000,0.000060415000000,0.000063180000000,0.000595328000000,0.000180908000000,0.000487081000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000032760000000,0.000063575000000,0.000056463000000,0.000021713500000,0.000064365000000,0.000242142000000,0.000065945000000,0.000192365000000,0.000061994000000,0.000065550000000,0.000630883000000,0.000230291000000,0.000519081000000 +0.000031970000000,0.000033155000000,0.000018948000000,0.000067921000000,0.000033155000000,0.000065945000000,0.000057254000000,0.000020726000000,0.000061995000000,0.000156809000000,0.000046587000000,0.000177747000000,0.000062390000000,0.000062390000000,0.000629698000000,0.000184069000000,0.000482735000000 +0.000031179000000,0.000036711000000,0.000019738000000,0.000068315000000,0.000033155000000,0.000063575000000,0.000056464000000,0.000021713500000,0.000064760000000,0.000174192000000,0.000044612000000,0.000157995000000,0.000061995000000,0.000065155000000,0.000596512000000,0.000185649000000,0.000484710000000 +0.000031575000000,0.000033945000000,0.000018750500000,0.000069105000000,0.000033550000000,0.000063970000000,0.000055674000000,0.000021713500000,0.000064365000000,0.000172611000000,0.000044217000000,0.000178538000000,0.000062389000000,0.000063179000000,0.000594932000000,0.000230290000000,0.000554636000000 +0.000029995000000,0.000034735000000,0.000019145500000,0.000106241000000,0.000034735000000,0.000099525000000,0.000056464000000,0.000020528000000,0.000062389000000,0.000223179000000,0.000043426000000,0.000388711000000,0.000060020000000,0.000082933000000,0.000663278000000,0.000184859000000,0.000484711000000 +0.000031179000000,0.000033550000000,0.000019343000000,0.000069106000000,0.000033156000000,0.000065155000000,0.000090439000000,0.000021911000000,0.000064760000000,0.000173007000000,0.000043427000000,0.000189204000000,0.000062390000000,0.000063180000000,0.000664859000000,0.000185649000000,0.000520265000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000064365000000,0.000056858000000,0.000047195000000,0.000064365000000,0.000157599000000,0.000043821000000,0.000198686000000,0.000061995000000,0.000066340000000,0.000606785000000,0.000293896000000,0.000519081000000 +0.000029995000000,0.000071476000000,0.000018750500000,0.000069106000000,0.000033155000000,0.000065550000000,0.000056069000000,0.000022306000000,0.000063575000000,0.000160365000000,0.000043822000000,0.000158784000000,0.000062785000000,0.000063180000000,0.000628118000000,0.000182093000000,0.000483525000000 +0.000030784000000,0.000033550000000,0.000019540500000,0.000068316000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000020923000000,0.000061995000000,0.000200266000000,0.000077402000000,0.000160365000000,0.000062390000000,0.000064760000000,0.000666043000000,0.000198291000000,0.000792068000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000068316000000,0.000033550000000,0.000065155000000,0.000056464000000,0.000020923000000,0.000063970000000,0.000176167000000,0.000043427000000,0.000177747000000,0.000061994000000,0.000065945000000,0.000594142000000,0.000264266000000,0.000568068000000 +0.000029995000000,0.000032760000000,0.000019738500000,0.000068315000000,0.000033550000000,0.000067525000000,0.000056859000000,0.000020528500000,0.000064365000000,0.000174587000000,0.000043427000000,0.000217253000000,0.000060415000000,0.000063180000000,0.000598093000000,0.000184858000000,0.000487081000000 +0.000032365000000,0.000033155000000,0.000020330500000,0.000132316000000,0.000033946000000,0.000064365000000,0.000056069000000,0.000021713500000,0.000061600000000,0.000179723000000,0.000043032000000,0.000166686000000,0.000062390000000,0.000062785000000,0.000627722000000,0.000195525000000,0.000568463000000 +0.000031180000000,0.000034735000000,0.000020528000000,0.000069501000000,0.000033550000000,0.000078587000000,0.000056859000000,0.000020725500000,0.000062390000000,0.000196711000000,0.000043427000000,0.000177353000000,0.000061994000000,0.000079377000000,0.000636414000000,0.000231476000000,0.000542784000000 +0.000030785000000,0.000033946000000,0.000019343000000,0.000069105000000,0.000066735000000,0.000064365000000,0.000056464000000,0.000020726000000,0.000062390000000,0.000152464000000,0.000043427000000,0.000163130000000,0.000060019000000,0.000064760000000,0.000594932000000,0.000186044000000,0.000485500000000 +0.000031180000000,0.000033155000000,0.000019541000000,0.000068711000000,0.000035526000000,0.000065550000000,0.000057649000000,0.000021713000000,0.000097945000000,0.000173402000000,0.000063575000000,0.000192760000000,0.000061995000000,0.000064365000000,0.000627328000000,0.000189995000000,0.000517501000000 +0.000030390000000,0.000034340000000,0.000019540500000,0.000069105000000,0.000033945000000,0.000063575000000,0.000056069000000,0.000040479000000,0.000061995000000,0.000174982000000,0.000056463000000,0.000175772000000,0.000061995000000,0.000064760000000,0.000681846000000,0.000326686000000,0.000535278000000 +0.000031180000000,0.000034736000000,0.000018750500000,0.000067921000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000021713500000,0.000061599000000,0.000241748000000,0.000045007000000,0.000167871000000,0.000061994000000,0.000064760000000,0.000594932000000,0.000180513000000,0.000485105000000 +0.000030785000000,0.000035921000000,0.000018552500000,0.000068316000000,0.000033550000000,0.000063970000000,0.000057254000000,0.000023491500000,0.000063970000000,0.000155624000000,0.000099131000000,0.000161550000000,0.000060020000000,0.000063574000000,0.000628513000000,0.000182884000000,0.000565698000000 +0.000030784000000,0.000033550000000,0.000019936000000,0.000068315000000,0.000032365000000,0.000063970000000,0.000057254000000,0.000020528000000,0.000061600000000,0.000156020000000,0.000043821000000,0.000191574000000,0.000061599000000,0.000062784000000,0.000626933000000,0.000180513000000,0.000485105000000 +0.000031970000000,0.000033550000000,0.000018750500000,0.000103477000000,0.000034340000000,0.000064365000000,0.000055674000000,0.000021713500000,0.000061599000000,0.000174587000000,0.000043427000000,0.000173797000000,0.000062784000000,0.000065156000000,0.000594933000000,0.000184463000000,0.000577945000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000021713000000,0.000064760000000,0.000173797000000,0.000043427000000,0.000161945000000,0.000062784000000,0.000065155000000,0.000597303000000,0.000184859000000,0.000518290000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000068711000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020528500000,0.000061600000000,0.000173007000000,0.000043821000000,0.000164711000000,0.000060415000000,0.000062389000000,0.000631278000000,0.000179723000000,0.000486291000000 +0.000030785000000,0.000034340000000,0.000018948000000,0.000068710000000,0.000033550000000,0.000067131000000,0.000093204000000,0.000022306000000,0.000061600000000,0.000173797000000,0.000043427000000,0.000208563000000,0.000062785000000,0.000064760000000,0.000651821000000,0.000182884000000,0.000570834000000 +0.000031575000000,0.000033551000000,0.000019935500000,0.000069105000000,0.000033550000000,0.000065946000000,0.000056464000000,0.000022108500000,0.000061599000000,0.000194340000000,0.000044217000000,0.000176167000000,0.000060810000000,0.000063179000000,0.000614290000000,0.000182489000000,0.000484316000000 +0.000030390000000,0.000033155000000,0.000018948000000,0.000067526000000,0.000056464000000,0.000066340000000,0.000056859000000,0.000039688500000,0.000065945000000,0.000156415000000,0.000043427000000,0.000179328000000,0.000060414000000,0.000062785000000,0.000628118000000,0.000186834000000,0.000502883000000 +0.000030784000000,0.000033945000000,0.000020133500000,0.000068316000000,0.000036711000000,0.000063575000000,0.000057253000000,0.000020923000000,0.000064760000000,0.000179723000000,0.000044217000000,0.000174982000000,0.000060809000000,0.000062389000000,0.000627722000000,0.000179723000000,0.000554241000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000068315000000,0.000046587000000,0.000063970000000,0.000058440000000,0.000020726000000,0.000064760000000,0.000174192000000,0.000065550000000,0.000159970000000,0.000060415000000,0.000063575000000,0.000596512000000,0.000199081000000,0.000487476000000 +0.000031180000000,0.000033155000000,0.000018750500000,0.000069105000000,0.000033945000000,0.000064365000000,0.000056069000000,0.000021713500000,0.000065155000000,0.000189600000000,0.000043032000000,0.000174982000000,0.000062390000000,0.000063180000000,0.001158290000000,0.000181698000000,0.000572019000000 +0.000030390000000,0.000052513000000,0.000018750000000,0.000068710000000,0.000033946000000,0.000064760000000,0.000056858000000,0.000021911000000,0.000061994000000,0.000173402000000,0.000044217000000,0.000153254000000,0.000061995000000,0.000065156000000,0.000594142000000,0.000182093000000,0.000557006000000 +0.000030785000000,0.000035920000000,0.000019343000000,0.000071081000000,0.000033155000000,0.000063970000000,0.000056463000000,0.000020331000000,0.000081353000000,0.000173797000000,0.000043426000000,0.000178538000000,0.000060810000000,0.000062785000000,0.000632463000000,0.000243328000000,0.000485895000000 +0.000030389000000,0.000033550000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000063970000000,0.000090044000000,0.000020330500000,0.000061599000000,0.000156019000000,0.000044217000000,0.000178933000000,0.000060019000000,0.000062784000000,0.000677895000000,0.000239772000000,0.000518686000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000068710000000,0.000035131000000,0.000064365000000,0.000056068000000,0.000020331000000,0.000061205000000,0.000208563000000,0.000043427000000,0.000157995000000,0.000062390000000,0.000065155000000,0.000594538000000,0.000224365000000,0.000485105000000 +0.000031575000000,0.000033946000000,0.000018948000000,0.000067921000000,0.000047772000000,0.000065945000000,0.000056858000000,0.000020133000000,0.000061599000000,0.000173007000000,0.000043822000000,0.000177748000000,0.000061600000000,0.000063180000000,0.000631673000000,0.000403723000000,0.000775476000000 +0.000099525000000,0.000033945000000,0.000019935500000,0.000067921000000,0.000035526000000,0.000063575000000,0.000056464000000,0.000022108500000,0.000061600000000,0.000156414000000,0.000045403000000,0.000228711000000,0.000062390000000,0.000065155000000,0.000674735000000,0.000310489000000,0.000483525000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000121254000000,0.000033945000000,0.000066340000000,0.000056859000000,0.000021121000000,0.000063575000000,0.000174192000000,0.000043426000000,0.000158389000000,0.000060414000000,0.000064760000000,0.000628513000000,0.000277698000000,0.000530538000000 +0.000030390000000,0.000033156000000,0.000019935500000,0.000069106000000,0.000035130000000,0.000099921000000,0.000056069000000,0.000021911000000,0.000061600000000,0.000203032000000,0.000044612000000,0.000178537000000,0.000062389000000,0.000062390000000,0.000594538000000,0.000252019000000,0.000483920000000 +0.000031180000000,0.000035920000000,0.000019738000000,0.000069501000000,0.000033550000000,0.000063574000000,0.000056464000000,0.000020330500000,0.000061994000000,0.000174982000000,0.000076612000000,0.000153253000000,0.000061995000000,0.000064760000000,0.000628118000000,0.000183674000000,0.000535279000000 +0.000029994000000,0.000033550000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000020330500000,0.000095575000000,0.000173402000000,0.000043032000000,0.000207772000000,0.000061599000000,0.000063575000000,0.000629303000000,0.000183674000000,0.000519475000000 +0.000029995000000,0.000033550000000,0.000020133000000,0.000069106000000,0.000033550000000,0.000063970000000,0.000056464000000,0.000022898500000,0.000061995000000,0.000157995000000,0.000043822000000,0.000165106000000,0.000060809000000,0.000064760000000,0.000607180000000,0.000221205000000,0.000485105000000 +0.000030784000000,0.000033946000000,0.000018553000000,0.000070291000000,0.000033946000000,0.000065551000000,0.000055674000000,0.000020726000000,0.000061599000000,0.000207377000000,0.000043032000000,0.000157600000000,0.000060810000000,0.000063180000000,0.000930735000000,0.000187624000000,0.000517105000000 +0.000029995000000,0.000033551000000,0.000020133000000,0.000068316000000,0.000033155000000,0.000065945000000,0.000056069000000,0.000020330500000,0.000065550000000,0.000160760000000,0.000043427000000,0.000160365000000,0.000060414000000,0.000063575000000,0.000631278000000,0.000188810000000,0.000515920000000 +0.000029995000000,0.000033155000000,0.000019145500000,0.000114538000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000020331000000,0.000062390000000,0.000175377000000,0.000045797000000,0.000258736000000,0.000061994000000,0.000063180000000,0.000662883000000,0.000243723000000,0.000518686000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000068316000000,0.000052909000000,0.000063970000000,0.000057254000000,0.000022898500000,0.000065155000000,0.000175772000000,0.000043822000000,0.000173007000000,0.000061994000000,0.000062390000000,0.000597303000000,0.000196710000000,0.000526982000000 +0.000031575000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000129155000000,0.000056069000000,0.000031985000000,0.000062390000000,0.000227130000000,0.000044216000000,0.000168267000000,0.000060415000000,0.000084118000000,0.000594932000000,0.000189204000000,0.000485105000000 +0.000031575000000,0.000033551000000,0.000018750000000,0.000069501000000,0.000035130000000,0.000065550000000,0.000057649000000,0.000020726000000,0.000063574000000,0.000163130000000,0.000043822000000,0.000176957000000,0.000061600000000,0.000065550000000,0.000645105000000,0.000210538000000,0.000536463000000 +0.000029995000000,0.000033155000000,0.000018948000000,0.000069896000000,0.000034736000000,0.000064365000000,0.000056859000000,0.000021515500000,0.000064365000000,0.000204217000000,0.000057254000000,0.000195526000000,0.000061995000000,0.000063575000000,0.000629698000000,0.000191180000000,0.000486685000000 +0.000030389000000,0.000047772000000,0.000029219500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000022108500000,0.000060809000000,0.000174587000000,0.000044217000000,0.000160365000000,0.000062390000000,0.000064760000000,0.000593747000000,0.000197500000000,0.000518685000000 +0.000029600000000,0.000033550000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000063574000000,0.000124809000000,0.000021713500000,0.000062785000000,0.000388711000000,0.000045007000000,0.000176563000000,0.000060414000000,0.000062785000000,0.000675525000000,0.000233451000000,0.000566093000000 +0.000031180000000,0.000032760000000,0.000018750500000,0.000067920000000,0.000034340000000,0.000064365000000,0.000056464000000,0.000020331000000,0.000061599000000,0.000172612000000,0.000043426000000,0.000167476000000,0.000062389000000,0.000063180000000,0.000662883000000,0.000193550000000,0.000484711000000 +0.000030784000000,0.000034340000000,0.000020330500000,0.000081748000000,0.000032760000000,0.000063575000000,0.000056069000000,0.000021318500000,0.000064760000000,0.000156414000000,0.000043427000000,0.000195525000000,0.000061204000000,0.000065155000000,0.000594932000000,0.000191969000000,0.000924809000000 +0.000030389000000,0.000033550000000,0.000018553000000,0.000068316000000,0.000033155000000,0.000063970000000,0.000056069000000,0.000022306000000,0.000061995000000,0.000190784000000,0.000043427000000,0.000158390000000,0.000060415000000,0.000065550000000,0.000679475000000,0.000191575000000,0.000535279000000 +0.000031180000000,0.000033155000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000061599000000,0.000174982000000,0.000043427000000,0.000173402000000,0.000062785000000,0.000097155000000,0.000628908000000,0.000198291000000,0.000517895000000 +0.000030785000000,0.000033550000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000065946000000,0.000057254000000,0.000022108500000,0.000063575000000,0.000159179000000,0.000043427000000,0.000160760000000,0.000135871000000,0.000086488000000,0.000731229000000,0.000193550000000,0.000483525000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000069501000000,0.000064760000000,0.000065550000000,0.000056464000000,0.000020331000000,0.000075427000000,0.000174192000000,0.000043822000000,0.000242538000000,0.000195130000000,0.000065155000000,0.000597697000000,0.000380019000000,0.000520266000000 +0.000030390000000,0.000033946000000,0.000020133000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000021911000000,0.000063970000000,0.000242538000000,0.000043426000000,0.000175377000000,0.000078192000000,0.000063575000000,0.000636809000000,0.000212908000000,0.000485105000000 +0.000074637000000,0.000033550000000,0.000019738000000,0.000068711000000,0.000032761000000,0.000063970000000,0.000090044000000,0.000020923000000,0.000063970000000,0.000174192000000,0.000043821000000,0.000176168000000,0.000062390000000,0.000062390000000,0.000679870000000,0.000192364000000,0.000519871000000 +0.000030389000000,0.000033550000000,0.000030207000000,0.000101501000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000020331000000,0.000064760000000,0.000156415000000,0.000044217000000,0.000180118000000,0.000061599000000,0.000063575000000,0.000596908000000,0.000190785000000,0.000601649000000 +0.000029995000000,0.000035130000000,0.000033763000000,0.000067920000000,0.000033945000000,0.000064365000000,0.000056068000000,0.000020528000000,0.000061995000000,0.000179723000000,0.000043426000000,0.000174192000000,0.000062785000000,0.000063180000000,0.000594537000000,0.000193155000000,0.000498538000000 +0.000031180000000,0.000034340000000,0.000019540500000,0.000068711000000,0.000033550000000,0.000083724000000,0.000056463000000,0.000020923500000,0.000064365000000,0.000228315000000,0.000043427000000,0.000159970000000,0.000062390000000,0.000065550000000,0.001070981000000,0.000192760000000,0.000521056000000 +0.000029995000000,0.000033945000000,0.000018750500000,0.000068711000000,0.000032760000000,0.000066340000000,0.000056463000000,0.000022503500000,0.000061599000000,0.000156414000000,0.000043427000000,0.000175377000000,0.000064365000000,0.000065550000000,0.000629698000000,0.000220019000000,0.000484710000000 +0.000030390000000,0.000033945000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000066341000000,0.000056464000000,0.000020923500000,0.000077402000000,0.000249254000000,0.000043821000000,0.000152858000000,0.000060415000000,0.000063575000000,0.000628118000000,0.000206982000000,0.000594142000000 +0.000031575000000,0.000034340000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000078982000000,0.000056464000000,0.000020923500000,0.000061599000000,0.000188019000000,0.000043822000000,0.000178933000000,0.000062389000000,0.000063180000000,0.000599278000000,0.000193155000000,0.000519080000000 +0.000030390000000,0.000034340000000,0.000018948000000,0.000069501000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000021516000000,0.000061205000000,0.000156019000000,0.000043822000000,0.000178143000000,0.000060019000000,0.000064365000000,0.000626932000000,0.000284809000000,0.000484316000000 +0.000031575000000,0.000033155000000,0.000019738000000,0.000069896000000,0.000063180000000,0.000148908000000,0.000055674000000,0.000021713500000,0.000061994000000,0.000175773000000,0.000043426000000,0.000157995000000,0.000062389000000,0.000066735000000,0.000663278000000,0.000212908000000,0.000657747000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000067921000000,0.000035526000000,0.000082143000000,0.000056464000000,0.000020923500000,0.000061600000000,0.000173007000000,0.000077797000000,0.000196316000000,0.000062784000000,0.000063180000000,0.000617451000000,0.000193155000000,0.000518290000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000068315000000,0.000035526000000,0.000063970000000,0.000056463000000,0.000022306000000,0.000061204000000,0.000169056000000,0.000044612000000,0.000178538000000,0.000062785000000,0.000063180000000,0.000596118000000,0.000191574000000,0.000483130000000 +0.000033550000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000034340000000,0.000063575000000,0.000056858000000,0.000020923500000,0.000064365000000,0.000174192000000,0.000043822000000,0.000157994000000,0.000061994000000,0.000064760000000,0.000628907000000,0.000206587000000,0.000577549000000 +0.000031575000000,0.000033946000000,0.000019145500000,0.000068711000000,0.000033155000000,0.000065550000000,0.000056068000000,0.000020331000000,0.000131921000000,0.000173007000000,0.000045007000000,0.000178538000000,0.000061994000000,0.000064365000000,0.000627723000000,0.000198290000000,0.000561352000000 +0.000030785000000,0.000034735000000,0.000018948000000,0.000069501000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000020528000000,0.000061995000000,0.000175772000000,0.000043426000000,0.000193945000000,0.000060415000000,0.000064365000000,0.000594143000000,0.000197896000000,0.000483921000000 +0.000031575000000,0.000034340000000,0.000019343000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056858000000,0.000021713500000,0.000061995000000,0.000173797000000,0.000043822000000,0.000173797000000,0.000061600000000,0.000062784000000,0.000664859000000,0.000210538000000,0.000519871000000 +0.000031970000000,0.000033551000000,0.000019738000000,0.000068711000000,0.000033156000000,0.000064365000000,0.000057254000000,0.000022306000000,0.000061995000000,0.000157599000000,0.000043427000000,0.000165106000000,0.000060414000000,0.000064760000000,0.000692118000000,0.000205007000000,0.000484710000000 +0.000031575000000,0.000033550000000,0.000019738000000,0.000118093000000,0.000034735000000,0.000063970000000,0.000056069000000,0.000020528000000,0.000063970000000,0.000159969000000,0.000043822000000,0.000157995000000,0.000060414000000,0.000062784000000,0.000594538000000,0.000185649000000,0.000483920000000 +0.000031180000000,0.000033155000000,0.000018947500000,0.000068710000000,0.000034340000000,0.000082933000000,0.000056858000000,0.000027639000000,0.000061995000000,0.000160760000000,0.000043427000000,0.000193155000000,0.000060019000000,0.000063180000000,0.000598093000000,0.000180118000000,0.000561747000000 +0.000030390000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000067920000000,0.000066340000000,0.000076612000000,0.000020923500000,0.000064365000000,0.000175377000000,0.000043821000000,0.000177747000000,0.000062390000000,0.000063970000000,0.000662488000000,0.000185648000000,0.000485106000000 +0.000029994000000,0.000033155000000,0.000019738000000,0.000068711000000,0.000033155000000,0.000065155000000,0.000056464000000,0.000022108500000,0.000084118000000,0.000174982000000,0.000046192000000,0.000174983000000,0.000060809000000,0.000063180000000,0.000705550000000,0.000180908000000,0.000538043000000 +0.000030390000000,0.000089254000000,0.000021516000000,0.000069106000000,0.000033946000000,0.000063970000000,0.000056069000000,0.000020923000000,0.000064365000000,0.000180118000000,0.000043032000000,0.000167476000000,0.000060019000000,0.000063575000000,0.000594143000000,0.000184464000000,0.000483525000000 +0.000029994000000,0.000101106000000,0.000037911000000,0.000069896000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020726000000,0.000061994000000,0.000208957000000,0.000044217000000,0.000209353000000,0.000062390000000,0.000065155000000,0.000630093000000,0.000195526000000,0.000484315000000 +0.000067921000000,0.000050538000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000065945000000,0.000056859000000,0.000021516000000,0.000061995000000,0.000152464000000,0.000043427000000,0.000162340000000,0.000061600000000,0.000064365000000,0.000628117000000,0.000180118000000,0.000519870000000 +0.000030390000000,0.000035921000000,0.000019935500000,0.000069106000000,0.000033156000000,0.000065550000000,0.000056464000000,0.000020528500000,0.000064365000000,0.000173797000000,0.000046192000000,0.000159179000000,0.000060414000000,0.000063575000000,0.000594537000000,0.000179723000000,0.000547920000000 +0.000031574000000,0.000033945000000,0.000018948000000,0.000082538000000,0.000033551000000,0.000063970000000,0.000056069000000,0.000024281500000,0.000063970000000,0.000174192000000,0.000043427000000,0.000176167000000,0.000061994000000,0.000065945000000,0.000643130000000,0.000181698000000,0.000518685000000 +0.000030785000000,0.000074636000000,0.000018750500000,0.000069106000000,0.000033945000000,0.000099920000000,0.000056464000000,0.000023491000000,0.000063970000000,0.000206587000000,0.000043426000000,0.000257945000000,0.000061599000000,0.000063180000000,0.000943377000000,0.000180908000000,0.000588217000000 +0.000030390000000,0.000033945000000,0.000018552500000,0.000068315000000,0.000034736000000,0.000063970000000,0.000056859000000,0.000031590000000,0.000063970000000,0.000156414000000,0.000043032000000,0.000181303000000,0.000060415000000,0.000063970000000,0.000677500000000,0.000184463000000,0.000569254000000 +0.000031970000000,0.000033156000000,0.000019738500000,0.000069105000000,0.000033155000000,0.000064760000000,0.000056464000000,0.000022306000000,0.000095970000000,0.000156019000000,0.000043426000000,0.000158390000000,0.000062390000000,0.000082538000000,0.000626932000000,0.000200266000000,0.000502488000000 +0.000030390000000,0.000033550000000,0.000020133000000,0.000069106000000,0.000084118000000,0.000064760000000,0.000056859000000,0.000022108500000,0.000064365000000,0.000174982000000,0.000043427000000,0.000173402000000,0.000063180000000,0.000101106000000,0.000594537000000,0.000180513000000,0.000647080000000 +0.000029995000000,0.000033945000000,0.000019145500000,0.000069105000000,0.000032760000000,0.000063970000000,0.000057254000000,0.000022503500000,0.000061994000000,0.000193550000000,0.000044217000000,0.000160760000000,0.000060415000000,0.000079378000000,0.000643130000000,0.000178933000000,0.000498142000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000032760000000,0.000063970000000,0.000056464000000,0.000022108500000,0.000061600000000,0.000173402000000,0.000043426000000,0.000165501000000,0.000061995000000,0.000065155000000,0.000646291000000,0.000181698000000,0.000519871000000 +0.000029995000000,0.000033946000000,0.000019540500000,0.000088464000000,0.000034341000000,0.000063970000000,0.000056464000000,0.000021911000000,0.000064760000000,0.000174588000000,0.000045402000000,0.000172216000000,0.000062784000000,0.000065155000000,0.000596908000000,0.000183279000000,0.000553846000000 +0.000030785000000,0.000034735000000,0.000020133000000,0.000069106000000,0.000033156000000,0.000064760000000,0.000056068000000,0.000022306000000,0.000062389000000,0.000173797000000,0.000045007000000,0.000176168000000,0.000062389000000,0.000063575000000,0.000645500000000,0.000180513000000,0.000483920000000 +0.000039081000000,0.000034340000000,0.000019145500000,0.000068316000000,0.000033550000000,0.000101501000000,0.000090440000000,0.000020725500000,0.000061995000000,0.000231476000000,0.000043822000000,0.000192365000000,0.000061995000000,0.000131921000000,0.000668019000000,0.000182093000000,0.000521846000000 +0.000029995000000,0.000034341000000,0.000019738000000,0.000067921000000,0.000033155000000,0.000063970000000,0.000057649000000,0.000021516000000,0.000064760000000,0.000174982000000,0.000045007000000,0.000174587000000,0.000061600000000,0.000065550000000,0.000594142000000,0.000181699000000,0.000484711000000 +0.000031179000000,0.000047772000000,0.000019145500000,0.000068710000000,0.000036711000000,0.000063575000000,0.000056464000000,0.000022108500000,0.000061600000000,0.000174587000000,0.000043032000000,0.000160760000000,0.000061995000000,0.000062390000000,0.000596512000000,0.000181303000000,0.000562142000000 +0.000029995000000,0.000033551000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000064761000000,0.000055673000000,0.000029022000000,0.000061994000000,0.000156019000000,0.000044612000000,0.000208563000000,0.000062390000000,0.000064365000000,0.000631673000000,0.000197501000000,0.000553056000000 +0.000031574000000,0.000035525000000,0.000019145500000,0.000069105000000,0.000034735000000,0.000063575000000,0.000057253000000,0.000020331000000,0.000061995000000,0.000206587000000,0.000063575000000,0.000153254000000,0.000061994000000,0.000064365000000,0.000628118000000,0.000182488000000,0.000484315000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000068711000000,0.000046982000000,0.000067130000000,0.000057254000000,0.000022701000000,0.000080957000000,0.000174192000000,0.000043822000000,0.000178933000000,0.000061995000000,0.000063575000000,0.000598488000000,0.000182093000000,0.000554637000000 +0.000031180000000,0.000033551000000,0.000019738000000,0.000102291000000,0.000032760000000,0.000064365000000,0.000056068000000,0.000022108500000,0.000061995000000,0.000156414000000,0.000043426000000,0.000178143000000,0.000062390000000,0.000064760000000,0.000669994000000,0.000196710000000,0.000517895000000 +0.000031970000000,0.000034340000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000064760000000,0.000055674000000,0.000022503500000,0.000064365000000,0.000212513000000,0.000043427000000,0.000238982000000,0.000060415000000,0.000063970000000,0.000642735000000,0.000180513000000,0.000484711000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000033155000000,0.000115328000000,0.000076612000000,0.000023293500000,0.000061995000000,0.000186834000000,0.000044612000000,0.000177352000000,0.000062390000000,0.000076612000000,0.000598093000000,0.000182883000000,0.000568859000000 +0.000029994000000,0.000033551000000,0.000019738000000,0.000067921000000,0.000033155000000,0.000065946000000,0.000056859000000,0.000020528000000,0.000078192000000,0.000156809000000,0.000043821000000,0.000178143000000,0.000060809000000,0.000065155000000,0.000646685000000,0.000216069000000,0.000483525000000 +0.000031180000000,0.000033550000000,0.000019145500000,0.000069501000000,0.000033156000000,0.000063969000000,0.000056859000000,0.000021713500000,0.000061994000000,0.000174192000000,0.000045403000000,0.000157994000000,0.000063180000000,0.000062785000000,0.000644315000000,0.000184464000000,0.000520661000000 +0.000030390000000,0.000033551000000,0.000018948000000,0.000069105000000,0.000033550000000,0.000063970000000,0.000056069000000,0.000020528000000,0.000061600000000,0.000253599000000,0.000043426000000,0.000213699000000,0.000060810000000,0.000064365000000,0.000613500000000,0.000180513000000,0.000622587000000 +0.000030785000000,0.000046193000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000066735000000,0.000056859000000,0.000032380000000,0.000061599000000,0.000174983000000,0.000043427000000,0.000152858000000,0.000062390000000,0.000065155000000,0.000594143000000,0.000218834000000,0.000548316000000 +0.000031970000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000066340000000,0.000056069000000,0.000041269000000,0.000064365000000,0.000173797000000,0.000044217000000,0.000173402000000,0.000062390000000,0.000064365000000,0.000667624000000,0.000180908000000,0.000519870000000 +0.000029994000000,0.000033945000000,0.000018947500000,0.000069501000000,0.000034340000000,0.000066341000000,0.000057649000000,0.000023689000000,0.000062785000000,0.000157599000000,0.000058834000000,0.000165896000000,0.000063180000000,0.000063575000000,0.000676315000000,0.000209748000000,0.000553056000000 +0.000031179000000,0.000033550000000,0.000019145500000,0.000069501000000,0.000033155000000,0.000084513000000,0.000055674000000,0.000020330500000,0.000062390000000,0.000194340000000,0.000044217000000,0.000241353000000,0.000062390000000,0.000098341000000,0.000597303000000,0.000441649000000,0.000484315000000 +0.000033155000000,0.000033550000000,0.000018948000000,0.000068316000000,0.000033551000000,0.000066340000000,0.000056859000000,0.000022108500000,0.000064760000000,0.000160365000000,0.000043032000000,0.000159180000000,0.000061994000000,0.000064760000000,0.000631278000000,0.000218044000000,0.000521846000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000067525000000,0.000033550000000,0.000065945000000,0.000056859000000,0.000022108500000,0.000063970000000,0.000175772000000,0.000043426000000,0.000176562000000,0.000062389000000,0.000064365000000,0.000629303000000,0.000216858000000,0.000485105000000 +0.000031575000000,0.000033155000000,0.000018750000000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000026849000000,0.000061600000000,0.000174983000000,0.000045402000000,0.000174587000000,0.000061995000000,0.000065550000000,0.000598093000000,0.000178933000000,0.000867130000000 +0.000031970000000,0.000033550000000,0.000019540500000,0.000068711000000,0.000033945000000,0.000065550000000,0.000056069000000,0.000021911000000,0.000064760000000,0.000213698000000,0.000043822000000,0.000166686000000,0.000061995000000,0.000061994000000,0.000659722000000,0.000181698000000,0.000519081000000 +0.000030390000000,0.000033155000000,0.000019540500000,0.000068711000000,0.000033945000000,0.000065551000000,0.000056464000000,0.000020331000000,0.000063575000000,0.000163130000000,0.000044217000000,0.000176167000000,0.000062390000000,0.000065550000000,0.000758883000000,0.000215674000000,0.000517105000000 +0.000030390000000,0.000033946000000,0.000019935500000,0.000102686000000,0.000032760000000,0.000063970000000,0.000057254000000,0.000021318500000,0.000061600000000,0.000152463000000,0.000045797000000,0.000161945000000,0.000063180000000,0.000063574000000,0.000678291000000,0.000184464000000,0.000485500000000 +0.000033156000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000032760000000,0.000065945000000,0.000056464000000,0.000021516000000,0.000061994000000,0.000173007000000,0.000043822000000,0.000159179000000,0.000060415000000,0.000065550000000,0.000594142000000,0.000180118000000,0.000517896000000 +0.000031970000000,0.000033945000000,0.000018750000000,0.000069501000000,0.000033945000000,0.000077797000000,0.000055673000000,0.000022108500000,0.000064365000000,0.000220414000000,0.000083328000000,0.000175377000000,0.000063180000000,0.000081352000000,0.000659722000000,0.000251229000000,0.000485895000000 +0.000031575000000,0.000033155000000,0.000019935500000,0.000068711000000,0.000034341000000,0.000065550000000,0.000056464000000,0.000020923000000,0.000103476000000,0.000173402000000,0.000133501000000,0.000167081000000,0.000062390000000,0.000064760000000,0.000678685000000,0.000197106000000,0.000530933000000 +0.000030785000000,0.000033550000000,0.000018750500000,0.000069501000000,0.000032760000000,0.000064365000000,0.000091229000000,0.000021713500000,0.000064365000000,0.000155229000000,0.000061600000000,0.000161550000000,0.000061994000000,0.000062389000000,0.000627723000000,0.000181304000000,0.000524611000000 +0.000030390000000,0.000035131000000,0.000018750500000,0.000070686000000,0.000084513000000,0.000064365000000,0.000056463000000,0.000021121000000,0.000061994000000,0.000156414000000,0.000057649000000,0.000191575000000,0.000060415000000,0.000065155000000,0.000594143000000,0.000218044000000,0.000484710000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000070686000000,0.000033946000000,0.000065945000000,0.000056464000000,0.000020923000000,0.000061995000000,0.000210538000000,0.000043427000000,0.000174192000000,0.000062390000000,0.000065945000000,0.000684611000000,0.000180119000000,0.000517501000000 +0.000029995000000,0.000033155000000,0.000020133500000,0.000069106000000,0.000033155000000,0.000065155000000,0.000056859000000,0.000021713500000,0.000064365000000,0.000159575000000,0.000043427000000,0.000160760000000,0.000060414000000,0.000063970000000,0.000680661000000,0.000180118000000,0.000484315000000 +0.000030389000000,0.000034340000000,0.000029812000000,0.000082933000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000021516000000,0.000061995000000,0.000173402000000,0.000045402000000,0.000165501000000,0.000060415000000,0.000064760000000,0.000598883000000,0.000214884000000,0.000555427000000 +0.000031970000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000035921000000,0.000063970000000,0.000056464000000,0.000038503500000,0.000061994000000,0.000173797000000,0.000057649000000,0.000269402000000,0.000062390000000,0.000064760000000,0.000597303000000,0.000185649000000,0.000519080000000 +0.000043821000000,0.000033946000000,0.000020330500000,0.000069106000000,0.000033155000000,0.000115723000000,0.000056464000000,0.000020331000000,0.000061995000000,0.000207772000000,0.000043426000000,0.000248463000000,0.000060414000000,0.000063575000000,0.000677500000000,0.000183674000000,0.000483920000000 +0.000030785000000,0.000034735000000,0.000019738000000,0.000068711000000,0.000032760000000,0.000080168000000,0.000056859000000,0.000021515500000,0.000078982000000,0.000156415000000,0.000044217000000,0.000180118000000,0.000060414000000,0.000065155000000,0.000675920000000,0.000377254000000,0.000581105000000 +0.000029994000000,0.000033946000000,0.000019738000000,0.000067920000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000021318000000,0.000062785000000,0.000179723000000,0.000043822000000,0.000208562000000,0.000062390000000,0.000065551000000,0.000594537000000,0.000185253000000,0.000486291000000 +0.000029995000000,0.000033550000000,0.000019343000000,0.000068710000000,0.000033155000000,0.000065945000000,0.000056859000000,0.000021911000000,0.000064760000000,0.000174192000000,0.000044611000000,0.000159575000000,0.000060810000000,0.000065155000000,0.000677501000000,0.000186439000000,0.000487871000000 +0.000031180000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000033550000000,0.000066340000000,0.000055674000000,0.000021713500000,0.000061204000000,0.000156414000000,0.000043427000000,0.000174982000000,0.000063575000000,0.000064760000000,0.001098636000000,0.000180908000000,0.000555821000000 +0.000030785000000,0.000034735000000,0.000019935500000,0.000069500000000,0.000087278000000,0.000063575000000,0.000056464000000,0.000020923000000,0.000065155000000,0.000173797000000,0.000043032000000,0.000152858000000,0.000062390000000,0.000062390000000,0.000628117000000,0.000180118000000,0.000483525000000 +0.000031575000000,0.000034735000000,0.000019145500000,0.000122835000000,0.000033550000000,0.000067130000000,0.000057254000000,0.000020726000000,0.000061994000000,0.000173402000000,0.000043031000000,0.000217648000000,0.000062784000000,0.000064760000000,0.000696068000000,0.000181304000000,0.000519080000000 +0.000030390000000,0.000033945000000,0.000018948000000,0.000083723000000,0.000033155000000,0.000066340000000,0.000056464000000,0.000022108500000,0.000064365000000,0.000156019000000,0.000044217000000,0.000178933000000,0.000062390000000,0.000083723000000,0.000594537000000,0.000181698000000,0.000518291000000 +0.000029994000000,0.000033946000000,0.000019540500000,0.000069106000000,0.000033946000000,0.000064760000000,0.000055674000000,0.000021515500000,0.000064365000000,0.000174982000000,0.000043427000000,0.000158389000000,0.000062785000000,0.000078982000000,0.000595328000000,0.000186439000000,0.000484710000000 +0.000031180000000,0.000033155000000,0.000019145000000,0.000067921000000,0.000033155000000,0.000065155000000,0.000056859000000,0.000021713000000,0.000102291000000,0.000172612000000,0.000043426000000,0.000176957000000,0.000061995000000,0.000063970000000,0.000666044000000,0.000181699000000,0.000518290000000 +0.000032365000000,0.000033945000000,0.000019343000000,0.000068316000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000021516000000,0.000077797000000,0.000156020000000,0.000043427000000,0.000210933000000,0.000062390000000,0.000063180000000,0.000630488000000,0.000195131000000,0.000483526000000 +0.000031180000000,0.000034340000000,0.000019738000000,0.000068710000000,0.000032760000000,0.000066340000000,0.000184068000000,0.000021516000000,0.000062390000000,0.000174192000000,0.000043427000000,0.000158785000000,0.000060414000000,0.000065946000000,0.000595327000000,0.000185254000000,0.000519080000000 +0.000029994000000,0.000033155000000,0.000018750500000,0.000136266000000,0.000033550000000,0.000064761000000,0.000200266000000,0.000022503500000,0.000064365000000,0.000173402000000,0.000043032000000,0.000180513000000,0.000089254000000,0.000065550000000,0.000628117000000,0.000178932000000,0.000517500000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000069106000000,0.000034340000000,0.000063575000000,0.000092415000000,0.000020330500000,0.000063180000000,0.000174587000000,0.000043427000000,0.000153649000000,0.000061994000000,0.000064365000000,0.000663278000000,0.000180118000000,0.000484315000000 +0.000052908000000,0.000033155000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000102291000000,0.000149303000000,0.000021713500000,0.000063970000000,0.000173402000000,0.000043822000000,0.000188414000000,0.000061599000000,0.000062785000000,0.000598093000000,0.000179723000000,0.000520266000000 +0.000081353000000,0.000033155000000,0.000019343000000,0.000112958000000,0.000052908000000,0.000077007000000,0.000139426000000,0.000022306000000,0.000095970000000,0.000177748000000,0.000044217000000,0.000165105000000,0.000060414000000,0.000077007000000,0.000634833000000,0.000180909000000,0.000485501000000 +0.000031575000000,0.000033945000000,0.000019145500000,0.000070291000000,0.000033155000000,0.000064365000000,0.000108612000000,0.000022306000000,0.000063970000000,0.000194735000000,0.000043822000000,0.000177352000000,0.000060415000000,0.000065155000000,0.000664463000000,0.000227525000000,0.000519081000000 +0.000030389000000,0.000033946000000,0.000018947500000,0.000068711000000,0.000032760000000,0.000065945000000,0.000125994000000,0.000020330500000,0.000061995000000,0.000159575000000,0.000063574000000,0.000160365000000,0.000060415000000,0.000065156000000,0.000598093000000,0.000182488000000,0.000542389000000 +0.000029995000000,0.000033155000000,0.000019936000000,0.000069106000000,0.000034340000000,0.000064760000000,0.000093600000000,0.000046800000000,0.000065550000000,0.000174982000000,0.000058439000000,0.000177352000000,0.000060019000000,0.000064365000000,0.000594537000000,0.000181698000000,0.000484711000000 +0.000029994000000,0.000034735000000,0.000019540500000,0.000156019000000,0.000033550000000,0.000063575000000,0.000061995000000,0.000020528000000,0.000061599000000,0.000208563000000,0.000043031000000,0.000174192000000,0.000062389000000,0.000062785000000,0.000734389000000,0.000214093000000,0.000642735000000 +0.000031970000000,0.000033550000000,0.000019935500000,0.000070291000000,0.000034736000000,0.000065945000000,0.000094389000000,0.000021713000000,0.000061600000000,0.000180118000000,0.000045007000000,0.000167081000000,0.000061600000000,0.000065945000000,0.000628513000000,0.000182488000000,0.000530933000000 +0.000030390000000,0.000033945000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000064365000000,0.000060810000000,0.000020330500000,0.000063180000000,0.000162341000000,0.000043822000000,0.000178537000000,0.000060415000000,0.000063970000000,0.000595327000000,0.000183673000000,0.000483920000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000065550000000,0.000060414000000,0.000020330500000,0.000064365000000,0.000152068000000,0.000044612000000,0.000161945000000,0.000061205000000,0.000065155000000,0.000672364000000,0.000202241000000,0.000535279000000 +0.000031180000000,0.000034735000000,0.000019540500000,0.000069105000000,0.000035525000000,0.000063970000000,0.000116513000000,0.000022108500000,0.000076217000000,0.000243328000000,0.000083723000000,0.000159180000000,0.000062390000000,0.000184464000000,0.000628118000000,0.000181698000000,0.000497352000000 +0.000032365000000,0.000033155000000,0.000018948000000,0.000069895000000,0.000033945000000,0.000064761000000,0.000101106000000,0.000020923500000,0.000064365000000,0.000174192000000,0.000050143000000,0.000174982000000,0.000060414000000,0.000180513000000,0.000627722000000,0.000183674000000,0.000511574000000 +0.000031180000000,0.000033946000000,0.000019145500000,0.000067525000000,0.000034340000000,0.000065550000000,0.000152859000000,0.000021318500000,0.000063969000000,0.000173402000000,0.000043426000000,0.000187229000000,0.000062390000000,0.000201056000000,0.000610735000000,0.000219229000000,0.000518291000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000107032000000,0.000103476000000,0.000067526000000,0.000122439000000,0.000021515500000,0.000062390000000,0.000155229000000,0.000060019000000,0.000162340000000,0.000061600000000,0.000143377000000,0.000627723000000,0.000182488000000,0.000483920000000 +0.000030390000000,0.000033550000000,0.000019935500000,0.000068710000000,0.000082538000000,0.000064365000000,0.000110982000000,0.000020923500000,0.000064365000000,0.000192365000000,0.000043427000000,0.000157995000000,0.000061995000000,0.000093599000000,0.000643525000000,0.000179723000000,0.000518686000000 +0.000031180000000,0.000033155000000,0.000018553000000,0.000071476000000,0.000034735000000,0.000064365000000,0.000093205000000,0.000022503500000,0.000064760000000,0.000174983000000,0.000043426000000,0.000173797000000,0.000061995000000,0.000079773000000,0.000594537000000,0.000344069000000,0.000483920000000 +0.000029995000000,0.000033551000000,0.000019145500000,0.000069106000000,0.000047377000000,0.000086488000000,0.000061205000000,0.000022306000000,0.000061205000000,0.000159970000000,0.000044217000000,0.000180118000000,0.000061995000000,0.000066736000000,0.000630488000000,0.000179327000000,0.000526587000000 +0.000029995000000,0.000052513000000,0.000018948000000,0.000069106000000,0.000034736000000,0.000077402000000,0.000060019000000,0.000020528000000,0.000108217000000,0.000212118000000,0.000044217000000,0.000165106000000,0.000060809000000,0.000067921000000,0.000631278000000,0.000182488000000,0.000521056000000 +0.000030390000000,0.000033155000000,0.000019145000000,0.000068710000000,0.000033945000000,0.000064365000000,0.000060019000000,0.000022503500000,0.000062389000000,0.000173797000000,0.000044217000000,0.000174192000000,0.000061600000000,0.000069105000000,0.000597303000000,0.000180908000000,0.000485105000000 +0.000030784000000,0.000034735000000,0.000018948000000,0.000068710000000,0.000068711000000,0.000064760000000,0.000059229000000,0.000022898500000,0.000063970000000,0.000174192000000,0.000043031000000,0.000176562000000,0.000061995000000,0.000067130000000,0.000751377000000,0.000183279000000,0.000519080000000 +0.000030785000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000035130000000,0.000067131000000,0.000060020000000,0.000021713500000,0.000063970000000,0.000156019000000,0.000043821000000,0.000214884000000,0.000066340000000,0.000066735000000,0.000627723000000,0.000183673000000,0.000487476000000 +0.000030785000000,0.000034340000000,0.000019935500000,0.000080957000000,0.000033946000000,0.000065945000000,0.000060020000000,0.000020330500000,0.000064760000000,0.000248463000000,0.000043822000000,0.000175377000000,0.000061600000000,0.000067131000000,0.000627328000000,0.000195525000000,0.000485500000000 +0.000031180000000,0.000035525000000,0.000019540500000,0.000068711000000,0.000033155000000,0.000064365000000,0.000073056000000,0.000023293500000,0.000061994000000,0.000174193000000,0.000075427000000,0.000160365000000,0.000061995000000,0.000069106000000,0.000596513000000,0.000182488000000,0.000555031000000 +0.000031575000000,0.000033551000000,0.000018948000000,0.000069501000000,0.000033945000000,0.000065550000000,0.000060019000000,0.000021713500000,0.000064761000000,0.000156414000000,0.000044217000000,0.000175377000000,0.000063180000000,0.000068710000000,0.000664463000000,0.000178933000000,0.000484315000000 +0.000029995000000,0.000033155000000,0.000018750000000,0.000069105000000,0.000033946000000,0.000063970000000,0.000060414000000,0.000022108500000,0.000061600000000,0.000173402000000,0.000044217000000,0.000221204000000,0.000067526000000,0.000066735000000,0.000635624000000,0.000181303000000,0.000517896000000 +0.000029995000000,0.000034340000000,0.000018948000000,0.000068315000000,0.000033550000000,0.000063575000000,0.000060414000000,0.000020923000000,0.000061599000000,0.000242933000000,0.000043032000000,0.000178143000000,0.000060809000000,0.000069501000000,0.000599673000000,0.000182094000000,0.000505649000000 +0.000030785000000,0.000053304000000,0.000019540500000,0.000068711000000,0.000033550000000,0.000063970000000,0.000060020000000,0.000020923500000,0.000064365000000,0.000156415000000,0.000043427000000,0.000178538000000,0.000062390000000,0.000103871000000,0.000609155000000,0.000181698000000,0.000484711000000 +0.000031575000000,0.000033550000000,0.000025861500000,0.000069501000000,0.000034736000000,0.000067131000000,0.000059229000000,0.000020330500000,0.000061600000000,0.000175377000000,0.000043822000000,0.000158390000000,0.000061599000000,0.000067130000000,0.000675525000000,0.000227525000000,0.000517500000000 +0.000031575000000,0.000034736000000,0.000018750500000,0.000144167000000,0.000034736000000,0.000096760000000,0.000060414000000,0.000020330500000,0.000064760000000,0.000173007000000,0.000043427000000,0.000210933000000,0.000060020000000,0.000066735000000,0.000631673000000,0.000184859000000,0.000484710000000 +0.000030389000000,0.000034340000000,0.000019540500000,0.000067920000000,0.000052513000000,0.000080167000000,0.000060414000000,0.000022503500000,0.000061599000000,0.000156020000000,0.000044612000000,0.000177748000000,0.000061994000000,0.000065945000000,0.000596118000000,0.000184859000000,0.000517106000000 +0.000031575000000,0.000033945000000,0.000019343000000,0.000068710000000,0.000048168000000,0.000116909000000,0.000060415000000,0.000020923500000,0.000061599000000,0.000173797000000,0.000043427000000,0.000158390000000,0.000060809000000,0.000068711000000,0.000681056000000,0.000187229000000,0.000525401000000 +0.000029995000000,0.000033155000000,0.000020330500000,0.000069501000000,0.000033945000000,0.000065945000000,0.000059230000000,0.000021713500000,0.000061599000000,0.000173007000000,0.000114933000000,0.000179328000000,0.000077402000000,0.000069105000000,0.000681846000000,0.000182489000000,0.000518291000000 +0.000031180000000,0.000033551000000,0.000018948000000,0.000069106000000,0.000033550000000,0.000065550000000,0.000060415000000,0.000020330500000,0.000080563000000,0.000175378000000,0.000043822000000,0.000186834000000,0.000063180000000,0.000067525000000,0.000594142000000,0.000180513000000,0.000518291000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000069501000000,0.000033945000000,0.000066340000000,0.000060020000000,0.000037121000000,0.000062785000000,0.000393846000000,0.000043427000000,0.000174587000000,0.000061995000000,0.000065945000000,0.000596513000000,0.000229500000000,0.000486686000000 +0.000032365000000,0.000033945000000,0.000020133000000,0.000068711000000,0.000034340000000,0.000064365000000,0.000075032000000,0.000022306000000,0.000061994000000,0.000172217000000,0.000043427000000,0.000165501000000,0.000061995000000,0.000068315000000,0.000670390000000,0.000184464000000,0.000534489000000 +0.000030389000000,0.000033945000000,0.000019738000000,0.000124020000000,0.000033946000000,0.000063575000000,0.000059624000000,0.000020331000000,0.000063970000000,0.000194340000000,0.000043427000000,0.000157600000000,0.000061994000000,0.000066341000000,0.000759673000000,0.000181303000000,0.000517501000000 +0.000030785000000,0.000072661000000,0.000020923000000,0.000068316000000,0.000033550000000,0.000065945000000,0.000060019000000,0.000020725500000,0.000063970000000,0.000159180000000,0.000043426000000,0.000193155000000,0.000060809000000,0.000066340000000,0.000731623000000,0.000182093000000,0.000487871000000 +0.000029995000000,0.000033156000000,0.000018750000000,0.000068315000000,0.000033155000000,0.000063575000000,0.000110587000000,0.000020528500000,0.000061599000000,0.000174982000000,0.000045402000000,0.000177748000000,0.000060415000000,0.000066735000000,0.000594932000000,0.000179723000000,0.000518291000000 +0.000029995000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000033156000000,0.000066735000000,0.000171031000000,0.000021516000000,0.000065156000000,0.000174587000000,0.000043427000000,0.000175377000000,0.000061994000000,0.000079377000000,0.000648661000000,0.000178538000000,0.000486291000000 +0.000031574000000,0.000034340000000,0.000018948000000,0.000069106000000,0.000034340000000,0.000189599000000,0.000142192000000,0.000022306000000,0.000061994000000,0.000213304000000,0.000043032000000,0.000166685000000,0.000062389000000,0.000063575000000,0.000645105000000,0.000229106000000,0.000717401000000 +0.000031575000000,0.000033945000000,0.000018750500000,0.000069106000000,0.000037896000000,0.000102686000000,0.000060019000000,0.000022306000000,0.000075822000000,0.000163130000000,0.000078192000000,0.000191574000000,0.000061995000000,0.000063180000000,0.000596117000000,0.000183673000000,0.000553056000000 +0.000029994000000,0.000033945000000,0.000040478500000,0.000069106000000,0.000034735000000,0.000065551000000,0.000060414000000,0.000022503500000,0.000064760000000,0.000152859000000,0.000043032000000,0.000162340000000,0.000062390000000,0.000096365000000,0.000608760000000,0.000184463000000,0.000486291000000 +0.000029995000000,0.000034340000000,0.000018948000000,0.000069896000000,0.000032760000000,0.000063575000000,0.000060414000000,0.000023491000000,0.000063180000000,0.000173007000000,0.000043821000000,0.000160365000000,0.000061600000000,0.000065550000000,0.000662883000000,0.000197896000000,0.000497352000000 +0.000029994000000,0.000033945000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000086093000000,0.000059624000000,0.000023688500000,0.000061995000000,0.000206982000000,0.000043822000000,0.000176958000000,0.000061995000000,0.000065945000000,0.000662883000000,0.000180513000000,0.000553846000000 +0.000031180000000,0.000033155000000,0.000019145500000,0.000067921000000,0.000033946000000,0.000066340000000,0.000060414000000,0.000020330500000,0.000064760000000,0.000173006000000,0.000043426000000,0.000167871000000,0.000061599000000,0.000063180000000,0.000594538000000,0.000180908000000,0.000484710000000 +0.000031180000000,0.000033550000000,0.000019540500000,0.000068315000000,0.000033550000000,0.000064365000000,0.000060414000000,0.000022108500000,0.000064760000000,0.000156415000000,0.000043427000000,0.000161945000000,0.000060414000000,0.000063970000000,0.000669600000000,0.000246094000000,0.000552265000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069501000000,0.000032760000000,0.000064365000000,0.000060414000000,0.000022306000000,0.000063970000000,0.000156414000000,0.000043821000000,0.000158390000000,0.000062390000000,0.000062785000000,0.000702390000000,0.000205402000000,0.000519080000000 +0.000031575000000,0.000033945000000,0.000020133000000,0.000069501000000,0.000033945000000,0.000065945000000,0.000060019000000,0.000023491000000,0.000063970000000,0.000216464000000,0.000044217000000,0.000174192000000,0.000059624000000,0.000062390000000,0.000613896000000,0.000181303000000,0.000483921000000 +0.000031180000000,0.000035130000000,0.000019145500000,0.000069105000000,0.000033946000000,0.000065155000000,0.000060019000000,0.000022306000000,0.000064365000000,0.000159575000000,0.000043427000000,0.000161945000000,0.000063575000000,0.000062785000000,0.000634043000000,0.000253994000000,0.000977747000000 +0.000030390000000,0.000033551000000,0.000019343000000,0.000068711000000,0.000033945000000,0.000065155000000,0.000060414000000,0.000020923500000,0.000062390000000,0.000173797000000,0.000043427000000,0.000164711000000,0.000061205000000,0.000099130000000,0.000667229000000,0.000200661000000,0.000649846000000 +0.000030390000000,0.000033551000000,0.000020528000000,0.000133896000000,0.000084119000000,0.000067130000000,0.000060810000000,0.000022108500000,0.000065155000000,0.000174982000000,0.000058044000000,0.000171427000000,0.000061600000000,0.000065945000000,0.000651032000000,0.000247278000000,0.000529352000000 +0.000031575000000,0.000033945000000,0.000020133500000,0.000069106000000,0.000033155000000,0.000099526000000,0.000059625000000,0.000020330500000,0.000061994000000,0.000207772000000,0.000043822000000,0.000176562000000,0.000060019000000,0.000064365000000,0.000596908000000,0.000181699000000,0.000484315000000 +0.000030785000000,0.000033155000000,0.000019738000000,0.000068316000000,0.000033155000000,0.000064365000000,0.000060019000000,0.000020528000000,0.000062390000000,0.000156810000000,0.000043821000000,0.000178932000000,0.000061995000000,0.000063180000000,0.000662883000000,0.000180908000000,0.000519475000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000067920000000,0.000033946000000,0.000064365000000,0.000060414000000,0.000020923500000,0.000064365000000,0.000180513000000,0.000044217000000,0.000175377000000,0.000061995000000,0.000062389000000,0.000675526000000,0.000232267000000,0.000533303000000 +0.000031575000000,0.000033155000000,0.000019738500000,0.000068711000000,0.000033155000000,0.000065550000000,0.000060415000000,0.000020528000000,0.000081748000000,0.000174192000000,0.000044216000000,0.000160365000000,0.000061995000000,0.000063575000000,0.000673155000000,0.000180513000000,0.000487080000000 +0.000030390000000,0.000034340000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000059625000000,0.000021713500000,0.000181303000000,0.000225155000000,0.000044612000000,0.000212514000000,0.000061599000000,0.000065550000000,0.000596908000000,0.000180513000000,0.000512365000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000033551000000,0.000063970000000,0.000060020000000,0.000020331000000,0.000080958000000,0.000174587000000,0.000043427000000,0.000152859000000,0.000062784000000,0.000063575000000,0.000816562000000,0.000223575000000,0.000483525000000 +0.000030390000000,0.000033155000000,0.000020331000000,0.000137452000000,0.000035525000000,0.000063970000000,0.000060020000000,0.000020330500000,0.000063970000000,0.000174192000000,0.000044612000000,0.000179328000000,0.000061994000000,0.000126390000000,0.000632858000000,0.000211723000000,0.000531327000000 +0.000030390000000,0.000034736000000,0.000019343000000,0.000068711000000,0.000034340000000,0.000064365000000,0.000060414000000,0.000020330500000,0.000080563000000,0.000156414000000,0.000043426000000,0.000179328000000,0.000061599000000,0.000064365000000,0.000627327000000,0.000186044000000,0.000528562000000 +0.000031575000000,0.000033155000000,0.000019738500000,0.000069106000000,0.000033155000000,0.000099526000000,0.000059624000000,0.000021516000000,0.000061994000000,0.000252020000000,0.000061205000000,0.000191970000000,0.000060415000000,0.000063179000000,0.000594143000000,0.000216858000000,0.000512364000000 +0.000029599000000,0.000033550000000,0.000019343000000,0.000069105000000,0.000103476000000,0.000063970000000,0.000060414000000,0.000020528500000,0.000075822000000,0.000183673000000,0.000043821000000,0.000178142000000,0.000060019000000,0.000063180000000,0.000631673000000,0.000183279000000,0.000518291000000 +0.000031575000000,0.000034341000000,0.000019343500000,0.000070291000000,0.000033550000000,0.000063970000000,0.000060414000000,0.000038503500000,0.000063970000000,0.000165501000000,0.000044217000000,0.000178538000000,0.000060809000000,0.000064760000000,0.000630093000000,0.000183279000000,0.000483525000000 +0.000033945000000,0.000033550000000,0.000019343000000,0.000068710000000,0.000035130000000,0.000064760000000,0.000060414000000,0.000021318500000,0.000061599000000,0.000225550000000,0.000044217000000,0.000157995000000,0.000062390000000,0.000065551000000,0.000594932000000,0.000218044000000,0.000498537000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000032760000000,0.000063575000000,0.000061204000000,0.000021121000000,0.000064760000000,0.000172217000000,0.000045402000000,0.000444809000000,0.000062785000000,0.000062784000000,0.000640759000000,0.000185253000000,0.000517106000000 +0.000030390000000,0.000033550000000,0.000018750500000,0.000088463000000,0.000032760000000,0.000064760000000,0.000061205000000,0.000020725500000,0.000061995000000,0.000203427000000,0.000043426000000,0.000302192000000,0.000063180000000,0.000083723000000,0.000628118000000,0.000188809000000,0.000483920000000 +0.000031575000000,0.000033550000000,0.000018948000000,0.000082537000000,0.000033945000000,0.000066340000000,0.000060020000000,0.000021713500000,0.000064365000000,0.000174192000000,0.000043822000000,0.000332612000000,0.000061995000000,0.000062390000000,0.000596117000000,0.000214488000000,0.000519871000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000033945000000,0.000066340000000,0.000060019000000,0.000024479000000,0.000061995000000,0.000171822000000,0.000043426000000,0.000281649000000,0.000061995000000,0.000065155000000,0.000641154000000,0.000184069000000,0.000539624000000 +0.000031180000000,0.000033155000000,0.000026059000000,0.000069501000000,0.000033550000000,0.000099921000000,0.000059625000000,0.000020725500000,0.000128760000000,0.000159575000000,0.000043427000000,0.000200267000000,0.000066340000000,0.000065155000000,0.000682241000000,0.000181303000000,0.000484710000000 +0.000029994000000,0.000034736000000,0.000019145500000,0.000067921000000,0.000033945000000,0.000065550000000,0.000060020000000,0.000020331000000,0.000064365000000,0.000159970000000,0.000043032000000,0.000205402000000,0.000060019000000,0.000065155000000,0.000631278000000,0.000262686000000,0.000521451000000 +0.000030785000000,0.000034340000000,0.000018948000000,0.000068316000000,0.000034736000000,0.000065945000000,0.000060415000000,0.000021120500000,0.000063969000000,0.000175772000000,0.000043822000000,0.000435328000000,0.000061995000000,0.000064365000000,0.000594143000000,0.000183279000000,0.000485105000000 +0.000029995000000,0.000033155000000,0.000019738000000,0.000068710000000,0.000088463000000,0.000065155000000,0.000061205000000,0.000021516000000,0.000064365000000,0.000189600000000,0.000043426000000,0.000287179000000,0.000063180000000,0.000062785000000,0.000666439000000,0.000178933000000,0.000533303000000 +0.000030389000000,0.000033155000000,0.000019738000000,0.000069896000000,0.000033550000000,0.000063970000000,0.000059230000000,0.000020528500000,0.000061995000000,0.000182093000000,0.000043427000000,0.000221600000000,0.000060414000000,0.000062390000000,0.000627723000000,0.000218044000000,0.000562933000000 +0.000030785000000,0.000033156000000,0.000020133500000,0.000205402000000,0.000032761000000,0.000064365000000,0.000060415000000,0.000020528000000,0.000061599000000,0.000161946000000,0.000043427000000,0.000187229000000,0.000061994000000,0.000116513000000,0.000594933000000,0.000179723000000,0.000483920000000 +0.000029995000000,0.000033155000000,0.000019935500000,0.000119278000000,0.000068711000000,0.000063970000000,0.000060414000000,0.000021713500000,0.000061995000000,0.000151673000000,0.000043822000000,0.000172217000000,0.000062389000000,0.000064760000000,0.000646686000000,0.000182093000000,0.000567673000000 +0.000029995000000,0.000033155000000,0.000020133000000,0.000085303000000,0.000033945000000,0.000085698000000,0.000060019000000,0.000021911000000,0.000082932000000,0.000205797000000,0.000046192000000,0.000170241000000,0.000061600000000,0.000064760000000,0.000628117000000,0.000199476000000,0.000484315000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000068710000000,0.000033550000000,0.000064365000000,0.000059229000000,0.000021516000000,0.000065155000000,0.000174587000000,0.000043427000000,0.000186439000000,0.000060019000000,0.000062390000000,0.000594538000000,0.000184464000000,0.000484710000000 +0.000030784000000,0.000033551000000,0.000018948000000,0.000102686000000,0.000033945000000,0.000064365000000,0.000060414000000,0.000021713500000,0.000063575000000,0.000173798000000,0.000043031000000,0.000178143000000,0.000062785000000,0.000061995000000,0.000594143000000,0.000181303000000,0.000750192000000 +0.000030390000000,0.000033550000000,0.000019343000000,0.000068710000000,0.000034735000000,0.000064760000000,0.000060019000000,0.000023688500000,0.000064365000000,0.000156020000000,0.000043032000000,0.000171822000000,0.000061995000000,0.000061995000000,0.000628513000000,0.000184464000000,0.000594143000000 +0.000031970000000,0.000033551000000,0.000019738000000,0.000068711000000,0.000033155000000,0.000064365000000,0.000060414000000,0.000021713000000,0.000064365000000,0.000169847000000,0.000044217000000,0.000202637000000,0.000060019000000,0.000063180000000,0.000614686000000,0.000189205000000,0.000484710000000 +0.000030390000000,0.000034341000000,0.000019540500000,0.000070291000000,0.000033946000000,0.000064761000000,0.000059229000000,0.000022305500000,0.000064760000000,0.000175377000000,0.000043821000000,0.000184859000000,0.000061995000000,0.000062784000000,0.000594143000000,0.000182094000000,0.000517106000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000032760000000,0.000066340000000,0.000060019000000,0.000059639000000,0.000064365000000,0.000159180000000,0.000044612000000,0.000170242000000,0.000061994000000,0.000082143000000,0.000629698000000,0.000181303000000,0.000483920000000 +0.000031575000000,0.000033155000000,0.000019343000000,0.000068710000000,0.000032760000000,0.000063970000000,0.000060020000000,0.000048775500000,0.000065550000000,0.000206192000000,0.000043427000000,0.000165105000000,0.000118883000000,0.000061995000000,0.000667228000000,0.000187229000000,0.000486686000000 +0.000029994000000,0.000032760000000,0.000018750500000,0.000069896000000,0.000034735000000,0.000100710000000,0.000060020000000,0.000023688500000,0.000126784000000,0.000173797000000,0.000045402000000,0.000241353000000,0.000066340000000,0.000065550000000,0.000596908000000,0.000187229000000,0.000518685000000 +0.000030390000000,0.000034735000000,0.000020330500000,0.000069500000000,0.000032760000000,0.000063970000000,0.000059625000000,0.000022306000000,0.000063180000000,0.000173797000000,0.000044612000000,0.000176168000000,0.000062390000000,0.000063180000000,0.000629698000000,0.000182093000000,0.000484315000000 +0.000030390000000,0.000034736000000,0.000018750500000,0.000067920000000,0.000034736000000,0.000064365000000,0.000060020000000,0.000020528000000,0.000061204000000,0.000156415000000,0.000043821000000,0.000179328000000,0.000063180000000,0.000063180000000,0.000754932000000,0.000181699000000,0.000548315000000 +0.000029994000000,0.000033550000000,0.000019738000000,0.000068316000000,0.000033945000000,0.000065155000000,0.000060414000000,0.000021911000000,0.000061995000000,0.000206982000000,0.000045007000000,0.000174982000000,0.000060415000000,0.000062784000000,0.000613896000000,0.000186439000000,0.000504069000000 +0.000031180000000,0.000033945000000,0.000019145500000,0.000068711000000,0.000036315000000,0.000063970000000,0.000060810000000,0.000022306000000,0.000061994000000,0.000174587000000,0.000043427000000,0.000159574000000,0.000062389000000,0.000061995000000,0.000645896000000,0.000203427000000,0.000486290000000 +0.000029994000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000063970000000,0.000059229000000,0.000038898500000,0.000064365000000,0.000156810000000,0.000099130000000,0.000174588000000,0.000060414000000,0.000065550000000,0.000636809000000,0.000186044000000,0.000519080000000 +0.000031180000000,0.000033155000000,0.000029812000000,0.000069106000000,0.000034341000000,0.000065945000000,0.000060020000000,0.000021120500000,0.000063970000000,0.000174192000000,0.000044217000000,0.000152859000000,0.000063970000000,0.000065945000000,0.000647476000000,0.000229895000000,0.000483921000000 +0.000030389000000,0.000033156000000,0.000020923000000,0.000068711000000,0.000033155000000,0.000063970000000,0.000060415000000,0.000021911000000,0.000102686000000,0.000207772000000,0.000044612000000,0.000178538000000,0.000061995000000,0.000064760000000,0.000598883000000,0.000215673000000,0.000519476000000 +0.000031575000000,0.000034341000000,0.000020133000000,0.000069106000000,0.000032760000000,0.000117698000000,0.000059625000000,0.000021318500000,0.000061995000000,0.000156415000000,0.000043427000000,0.000179328000000,0.000060414000000,0.000065550000000,0.000628118000000,0.000191574000000,0.000518685000000 +0.000031575000000,0.000033155000000,0.000019343000000,0.000102291000000,0.000033945000000,0.000063575000000,0.000060020000000,0.000021713500000,0.000061995000000,0.000176167000000,0.000045007000000,0.000157995000000,0.000062785000000,0.000065550000000,0.000627328000000,0.000181698000000,0.000484315000000 +0.000031575000000,0.000036316000000,0.000018947500000,0.000067921000000,0.000033156000000,0.000066341000000,0.000059625000000,0.000022108500000,0.000064365000000,0.000173006000000,0.000044611000000,0.000177748000000,0.000061994000000,0.000064760000000,0.000597302000000,0.000283229000000,0.000553056000000 +0.000030390000000,0.000033550000000,0.000019540500000,0.000067920000000,0.000033551000000,0.000063970000000,0.000060415000000,0.000020331000000,0.000064760000000,0.000189994000000,0.000044217000000,0.000211723000000,0.000062390000000,0.000062784000000,0.000609945000000,0.000182488000000,0.000483525000000 +0.000031180000000,0.000033155000000,0.000018750500000,0.000068711000000,0.000032760000000,0.000063970000000,0.000059625000000,0.000021516000000,0.000061995000000,0.000174192000000,0.000045402000000,0.000157599000000,0.000060809000000,0.000065550000000,0.000628908000000,0.000185649000000,0.000550291000000 +0.000030785000000,0.000051723000000,0.000018750500000,0.000069501000000,0.000033550000000,0.000065945000000,0.000059625000000,0.000020725500000,0.000061600000000,0.000172216000000,0.000044612000000,0.000178933000000,0.000060415000000,0.000062390000000,0.000614685000000,0.000250834000000,0.000552661000000 +0.000029995000000,0.000034341000000,0.000019738000000,0.000072267000000,0.000033550000000,0.000064365000000,0.000060415000000,0.000021713000000,0.000065155000000,0.000174587000000,0.000078192000000,0.000152859000000,0.000062390000000,0.000062390000000,0.000593748000000,0.000187230000000,0.000483920000000 +0.000031575000000,0.000033945000000,0.000018948000000,0.000069105000000,0.000033155000000,0.000118093000000,0.000060020000000,0.000022306000000,0.000075426000000,0.000208562000000,0.000043822000000,0.000208167000000,0.000077007000000,0.000065551000000,0.000630093000000,0.000181303000000,0.000520266000000 +0.000029995000000,0.000033155000000,0.000019145500000,0.000068710000000,0.000033945000000,0.000064760000000,0.000060415000000,0.000022306000000,0.000064365000000,0.000157994000000,0.000045007000000,0.000264662000000,0.000063180000000,0.000064365000000,0.000674735000000,0.000215673000000,0.000485500000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000069106000000,0.000032760000000,0.000064365000000,0.000060019000000,0.000020726000000,0.000064365000000,0.000159574000000,0.000043822000000,0.000157600000000,0.000062390000000,0.000064365000000,0.000594933000000,0.000185253000000,0.000483920000000 +0.000033551000000,0.000033550000000,0.000018750500000,0.000067920000000,0.000061204000000,0.000066340000000,0.000060020000000,0.000021121000000,0.000061204000000,0.000159970000000,0.000043032000000,0.000184859000000,0.000061994000000,0.000064365000000,0.000631279000000,0.000188810000000,0.000521451000000 +0.000030785000000,0.000034736000000,0.000018948000000,0.000069896000000,0.000035921000000,0.000064365000000,0.000060019000000,0.000021516000000,0.000062390000000,0.000364217000000,0.000043427000000,0.000198291000000,0.000062784000000,0.000065155000000,0.000628908000000,0.000214488000000,0.000484710000000 +0.000030389000000,0.000033550000000,0.000019145500000,0.000068316000000,0.000033155000000,0.000065550000000,0.000060809000000,0.000023886000000,0.000061599000000,0.000192760000000,0.000045007000000,0.000174192000000,0.000060414000000,0.000063180000000,0.000598093000000,0.000180513000000,0.000526982000000 +0.000031970000000,0.000033945000000,0.000019738500000,0.000068711000000,0.000033945000000,0.000066341000000,0.000059625000000,0.000020330500000,0.000061995000000,0.000180118000000,0.000044612000000,0.000167476000000,0.000061600000000,0.000084513000000,0.000628118000000,0.000184069000000,0.000483920000000 +0.000029995000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000034341000000,0.000064365000000,0.000060020000000,0.000020330500000,0.000066340000000,0.000203822000000,0.000043031000000,0.000301402000000,0.000061995000000,0.000080563000000,0.000673945000000,0.000272958000000,0.000484711000000 +0.000030390000000,0.000035525000000,0.000019738000000,0.000069106000000,0.000032760000000,0.000079377000000,0.000059625000000,0.000020725500000,0.000061600000000,0.000152068000000,0.000045797000000,0.000161945000000,0.000061995000000,0.000063180000000,0.000678290000000,0.000226735000000,0.000519476000000 +0.000031575000000,0.000033946000000,0.000019145500000,0.000102686000000,0.000032760000000,0.000065550000000,0.000060810000000,0.000021911000000,0.000064365000000,0.000173006000000,0.000061204000000,0.000159179000000,0.000066736000000,0.000064760000000,0.000594537000000,0.000183279000000,0.000484710000000 +0.000031970000000,0.000033550000000,0.000019343000000,0.000069501000000,0.000033945000000,0.000066340000000,0.000059229000000,0.000021911000000,0.000061599000000,0.000174587000000,0.000140217000000,0.000209352000000,0.000062390000000,0.000064365000000,0.000628118000000,0.000186439000000,0.000518291000000 +0.000031575000000,0.000033550000000,0.000019540500000,0.000068316000000,0.000033946000000,0.000065155000000,0.000080563000000,0.000020726000000,0.000062389000000,0.000207377000000,0.000094389000000,0.000167081000000,0.000060414000000,0.000065156000000,0.000634834000000,0.000179328000000,0.000484710000000 +0.000030390000000,0.000033550000000,0.000018553000000,0.000068711000000,0.000033155000000,0.000063575000000,0.000061205000000,0.000022306000000,0.000064760000000,0.000156414000000,0.000046587000000,0.000161945000000,0.000062390000000,0.000064760000000,0.000594932000000,0.000183673000000,0.000523426000000 +0.000030785000000,0.000033945000000,0.000019540500000,0.000068711000000,0.000049747000000,0.000064760000000,0.000061599000000,0.000021516000000,0.000063970000000,0.000156415000000,0.000043427000000,0.000158389000000,0.000062390000000,0.000062785000000,0.000627722000000,0.000181303000000,0.000534489000000 +0.000031179000000,0.000034736000000,0.000019343000000,0.000068710000000,0.000033946000000,0.000064365000000,0.000059229000000,0.000020725500000,0.000062390000000,0.000176957000000,0.000044217000000,0.000243328000000,0.000062390000000,0.000104266000000,0.000628513000000,0.000184464000000,0.000483525000000 +0.000029995000000,0.000033550000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000066341000000,0.000060019000000,0.000022108500000,0.000095575000000,0.000193550000000,0.000043427000000,0.000159575000000,0.000062390000000,0.000070291000000,0.000596908000000,0.000187229000000,0.000532908000000 +0.000030390000000,0.000034340000000,0.000019343000000,0.000069106000000,0.000037106000000,0.000064365000000,0.000060414000000,0.000020330500000,0.000062390000000,0.000173797000000,0.000045402000000,0.000165106000000,0.000060019000000,0.000069500000000,0.000760464000000,0.000180909000000,0.000520266000000 +0.000031575000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000035920000000,0.000065551000000,0.000060019000000,0.000021516000000,0.000063970000000,0.000174192000000,0.000043427000000,0.000175772000000,0.000062389000000,0.000070686000000,0.000630883000000,0.000183279000000,0.000485105000000 +0.000030390000000,0.000033550000000,0.000020330500000,0.000069106000000,0.000032760000000,0.000065550000000,0.000093599000000,0.000039689000000,0.000061995000000,0.000191180000000,0.000044612000000,0.000209353000000,0.000060809000000,0.000072661000000,0.000663278000000,0.000182093000000,0.000570043000000 +0.000030785000000,0.000033945000000,0.000019738000000,0.000067920000000,0.000033156000000,0.000064365000000,0.000060415000000,0.000021516000000,0.000063575000000,0.000156809000000,0.000044217000000,0.000179723000000,0.000060020000000,0.000096365000000,0.000594537000000,0.000180513000000,0.000584661000000 +0.000030389000000,0.000034735000000,0.000018948000000,0.000067921000000,0.000033155000000,0.000064365000000,0.000060020000000,0.000020726000000,0.000064365000000,0.000179328000000,0.000043427000000,0.000174192000000,0.000061995000000,0.000081747000000,0.000628117000000,0.000186044000000,0.000484710000000 +0.000030785000000,0.000034340000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000063574000000,0.000061600000000,0.000021911000000,0.000061994000000,0.000173797000000,0.000043427000000,0.000160365000000,0.000060414000000,0.000067131000000,0.000664858000000,0.000178932000000,0.000571623000000 +0.000031575000000,0.000033945000000,0.000019935500000,0.000068711000000,0.000033945000000,0.000064365000000,0.000059624000000,0.000022108500000,0.000061995000000,0.000156414000000,0.000043821000000,0.000257945000000,0.000061995000000,0.000081748000000,0.000596908000000,0.000183674000000,0.000485105000000 +0.000029994000000,0.000033945000000,0.000020133000000,0.000069106000000,0.000082538000000,0.000093204000000,0.000060019000000,0.000020528000000,0.000078982000000,0.000174192000000,0.000077402000000,0.000153254000000,0.000060415000000,0.000064365000000,0.000594537000000,0.000180513000000,0.000515525000000 +0.000031575000000,0.000033155000000,0.000019343000000,0.000089254000000,0.000033550000000,0.000063575000000,0.000060019000000,0.000020528500000,0.000065155000000,0.000173402000000,0.000044612000000,0.000179328000000,0.000060414000000,0.000064760000000,0.000681451000000,0.000184069000000,0.000570834000000 +0.000029994000000,0.000033550000000,0.000018948000000,0.000069896000000,0.000033156000000,0.000066341000000,0.000059624000000,0.000021515500000,0.000061995000000,0.000156414000000,0.000062785000000,0.000178933000000,0.000060809000000,0.000064365000000,0.000628117000000,0.000195921000000,0.000484315000000 +0.000030390000000,0.000033155000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000065946000000,0.000059624000000,0.000021713500000,0.000064365000000,0.000195525000000,0.000059230000000,0.000156810000000,0.000060415000000,0.000063574000000,0.000594537000000,0.000181303000000,0.000578735000000 +0.000030389000000,0.000033946000000,0.000019145500000,0.000068316000000,0.000033155000000,0.000063575000000,0.000060414000000,0.000021713500000,0.000064365000000,0.000172612000000,0.000043822000000,0.000176958000000,0.000061995000000,0.000065550000000,0.000861994000000,0.000180513000000,0.000615870000000 +0.000031970000000,0.000033550000000,0.000018750000000,0.000068316000000,0.000033155000000,0.000067526000000,0.000060019000000,0.000020330500000,0.000061995000000,0.000156809000000,0.000043427000000,0.000177748000000,0.000061995000000,0.000130735000000,0.000665253000000,0.000218834000000,0.000483920000000 +0.000031575000000,0.000036316000000,0.000019540500000,0.000069105000000,0.000033155000000,0.000064365000000,0.000060414000000,0.000023096000000,0.000063180000000,0.000174588000000,0.000043427000000,0.000157995000000,0.000061995000000,0.000201056000000,0.000629303000000,0.000185254000000,0.000995525000000 +0.000030389000000,0.000033945000000,0.000019145500000,0.000069105000000,0.000035130000000,0.000083723000000,0.000059625000000,0.000022503500000,0.000064365000000,0.000206192000000,0.000043821000000,0.000193155000000,0.000061599000000,0.000120068000000,0.000595723000000,0.000233056000000,0.000483525000000 +0.000029995000000,0.000034341000000,0.000053515500000,0.000069896000000,0.000033945000000,0.000114933000000,0.000060019000000,0.000020330500000,0.000075822000000,0.000175377000000,0.000043427000000,0.000152859000000,0.000060414000000,0.000101896000000,0.000627723000000,0.000202241000000,0.000518291000000 +0.000031575000000,0.000033551000000,0.000018948000000,0.000068316000000,0.000033155000000,0.000064365000000,0.000060415000000,0.000022108000000,0.000064365000000,0.000174588000000,0.000063575000000,0.000174192000000,0.000097550000000,0.000062785000000,0.000637599000000,0.000184859000000,0.000487080000000 +0.000031180000000,0.000033550000000,0.000018948000000,0.000070686000000,0.000082538000000,0.000063970000000,0.000061600000000,0.000022306000000,0.000064760000000,0.000157994000000,0.000043821000000,0.000198291000000,0.000061994000000,0.000064760000000,0.000607970000000,0.000182883000000,0.000534488000000 +0.000029995000000,0.000033156000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000066341000000,0.000059624000000,0.000022503500000,0.000063970000000,0.000194735000000,0.000044217000000,0.000157600000000,0.000061994000000,0.000063969000000,0.000608365000000,0.000216068000000,0.000484315000000 +0.000029995000000,0.000033550000000,0.000019145500000,0.000067920000000,0.000032760000000,0.000063970000000,0.000059625000000,0.000020923500000,0.000061599000000,0.000159575000000,0.000043032000000,0.000160365000000,0.000061995000000,0.000065155000000,0.000647475000000,0.000197106000000,0.000488265000000 +0.000030389000000,0.000033550000000,0.000020133000000,0.000067920000000,0.000033550000000,0.000063970000000,0.000060415000000,0.000020330500000,0.000063970000000,0.000175772000000,0.000042637000000,0.000178143000000,0.000062390000000,0.000066340000000,0.000614685000000,0.000181698000000,0.000519081000000 +0.000029995000000,0.000033945000000,0.000019540500000,0.000068711000000,0.000033550000000,0.000067131000000,0.000060810000000,0.000027639500000,0.000064760000000,0.000174982000000,0.000043032000000,0.000229106000000,0.000060809000000,0.000062389000000,0.000598093000000,0.000255574000000,0.000486686000000 +0.000054093000000,0.000103476000000,0.000019738000000,0.000069106000000,0.000034736000000,0.000083328000000,0.000061204000000,0.000021911000000,0.000062390000000,0.000213699000000,0.000043031000000,0.000167476000000,0.000061995000000,0.000063574000000,0.000628908000000,0.000195525000000,0.000519476000000 +0.000101106000000,0.000064760000000,0.000019540500000,0.000109007000000,0.000033550000000,0.000063574000000,0.000060414000000,0.000021318500000,0.000062389000000,0.000162340000000,0.000043822000000,0.000176562000000,0.000061995000000,0.000079772000000,0.000629698000000,0.000181698000000,0.000483921000000 +0.000051328000000,0.000035920000000,0.000018750500000,0.000069105000000,0.000033155000000,0.000063970000000,0.000059624000000,0.000020330500000,0.000062390000000,0.000152069000000,0.000043427000000,0.000161946000000,0.000061600000000,0.000065550000000,0.000594142000000,0.000262686000000,0.000502883000000 +0.000033156000000,0.000047377000000,0.000019540500000,0.000069501000000,0.000035525000000,0.000065945000000,0.000059624000000,0.000021713500000,0.000064760000000,0.000173797000000,0.000043427000000,0.000209352000000,0.000097155000000,0.000063180000000,0.000643920000000,0.000187624000000,0.000530933000000 +0.000030389000000,0.000034341000000,0.000019145500000,0.000069500000000,0.000035131000000,0.000064760000000,0.000075427000000,0.000020331000000,0.000061204000000,0.000275723000000,0.000071476000000,0.000174587000000,0.000061995000000,0.000064365000000,0.000629698000000,0.000200266000000,0.000483920000000 +0.000031180000000,0.000034735000000,0.000018750500000,0.000068711000000,0.000098340000000,0.000065550000000,0.000060415000000,0.000020528000000,0.000061600000000,0.000173797000000,0.000043822000000,0.000167871000000,0.000061994000000,0.000064365000000,0.000594933000000,0.000180908000000,0.000517895000000 +0.000029995000000,0.000068316000000,0.000019145500000,0.000069106000000,0.000032761000000,0.000063970000000,0.000060019000000,0.000021516000000,0.000063970000000,0.000156415000000,0.000043821000000,0.000161550000000,0.000061205000000,0.000061995000000,0.000644711000000,0.000183278000000,0.000502093000000 +0.000029995000000,0.000033155000000,0.000019738500000,0.000068316000000,0.000033155000000,0.000064365000000,0.000122044000000,0.000020726000000,0.000080957000000,0.000156019000000,0.000043427000000,0.000239772000000,0.000061995000000,0.000063180000000,0.000676710000000,0.000180118000000,0.000485106000000 +0.000031970000000,0.000033155000000,0.000019145500000,0.000069501000000,0.000033550000000,0.000111377000000,0.000059624000000,0.000021516000000,0.000062390000000,0.000208563000000,0.000043426000000,0.000173402000000,0.000061995000000,0.000085303000000,0.000614290000000,0.000199476000000,0.000567673000000 +0.000029995000000,0.000033155000000,0.000019343000000,0.000082933000000,0.000033550000000,0.000064365000000,0.000060414000000,0.000022701000000,0.000064365000000,0.000160365000000,0.000043427000000,0.000160760000000,0.000061995000000,0.000064760000000,0.000596513000000,0.000184859000000,0.000483920000000 +0.000030390000000,0.000033945000000,0.000019738000000,0.000069896000000,0.000033946000000,0.000064761000000,0.000060810000000,0.000020726000000,0.000061995000000,0.000173797000000,0.000044612000000,0.000164711000000,0.000060019000000,0.000062785000000,0.000632464000000,0.000178933000000,0.000555426000000 +0.000029995000000,0.000034340000000,0.000019343000000,0.000068711000000,0.000034735000000,0.000066735000000,0.000060414000000,0.000021713500000,0.000061994000000,0.000174587000000,0.000043822000000,0.000206587000000,0.000062389000000,0.000064365000000,0.000631278000000,0.000217254000000,0.000518291000000 +0.000031180000000,0.000033551000000,0.000018948000000,0.000068711000000,0.000033551000000,0.000065946000000,0.000059230000000,0.000021911000000,0.000061205000000,0.000246093000000,0.000043426000000,0.000181303000000,0.000060019000000,0.000063575000000,0.000597303000000,0.000182094000000,0.000483920000000 +0.000030785000000,0.000033155000000,0.000021120500000,0.000069106000000,0.000033550000000,0.000065945000000,0.000061205000000,0.000022306000000,0.000065945000000,0.000156810000000,0.000043427000000,0.000189994000000,0.000060020000000,0.000061995000000,0.000628117000000,0.000186834000000,0.000522242000000 +0.000031575000000,0.000054883000000,0.000020331000000,0.000068315000000,0.000107032000000,0.000063575000000,0.000060019000000,0.000020330500000,0.000064365000000,0.000174192000000,0.000043032000000,0.000362637000000,0.000061205000000,0.000062390000000,0.000662883000000,0.000214488000000,0.000484711000000 +0.000031970000000,0.000034340000000,0.000018750000000,0.000069105000000,0.000067130000000,0.000063970000000,0.000060020000000,0.000020331000000,0.000111377000000,0.000173797000000,0.000045402000000,0.000160760000000,0.000060414000000,0.000062785000000,0.000596512000000,0.000180513000000,0.000501303000000 +0.000029994000000,0.000033550000000,0.000018947500000,0.000068711000000,0.000036711000000,0.000078192000000,0.000059624000000,0.000022898500000,0.000065155000000,0.000156809000000,0.000043427000000,0.000174982000000,0.000062389000000,0.000083328000000,0.000685007000000,0.000181303000000,0.000553451000000 +0.000030785000000,0.000033945000000,0.000018948000000,0.000073056000000,0.000034341000000,0.000064365000000,0.000060019000000,0.000022701000000,0.000061995000000,0.000174192000000,0.000043821000000,0.000238587000000,0.000061995000000,0.000064365000000,0.000860414000000,0.000218043000000,0.000483920000000 +0.000029995000000,0.000034341000000,0.000019343000000,0.000069106000000,0.000033155000000,0.000063970000000,0.000059624000000,0.000020923500000,0.000061995000000,0.000174192000000,0.000043822000000,0.000178933000000,0.000080958000000,0.000062785000000,0.000631279000000,0.000188809000000,0.000519476000000 +0.000066736000000,0.000033155000000,0.000018750500000,0.000068711000000,0.000033945000000,0.000063575000000,0.000060019000000,0.000020528000000,0.000062389000000,0.000156019000000,0.000043427000000,0.000178538000000,0.000059624000000,0.000062390000000,0.000594538000000,0.000181698000000,0.000503278000000 +0.000031180000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000033156000000,0.000063970000000,0.000060414000000,0.000020331000000,0.000061995000000,0.000176167000000,0.000044216000000,0.000158390000000,0.000061995000000,0.000065551000000,0.000609944000000,0.000249254000000,0.000484315000000 +0.000031180000000,0.000034341000000,0.000019343000000,0.000069500000000,0.000034736000000,0.000065550000000,0.000060414000000,0.000020330500000,0.000061599000000,0.000174192000000,0.000043032000000,0.000255180000000,0.000062390000000,0.000062784000000,0.000631673000000,0.000186044000000,0.000518686000000 +0.000029995000000,0.000033945000000,0.000019738000000,0.000072267000000,0.000035131000000,0.000064365000000,0.000060019000000,0.000021713500000,0.000061600000000,0.000156019000000,0.000045402000000,0.000177748000000,0.000061995000000,0.000065156000000,0.000630883000000,0.000184069000000,0.000483130000000 +0.000030785000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000065945000000,0.000060809000000,0.000020528000000,0.000080168000000,0.000193945000000,0.000077007000000,0.000158389000000,0.000060019000000,0.000082143000000,0.000595327000000,0.000214884000000,0.000711080000000 +0.000029994000000,0.000033155000000,0.000019935500000,0.000071476000000,0.000035131000000,0.000174587000000,0.000059229000000,0.000022701500000,0.000061994000000,0.000172612000000,0.000045402000000,0.000178932000000,0.000062390000000,0.000067131000000,0.001000660000000,0.000182094000000,0.000517500000000 +0.000031180000000,0.000054489000000,0.000019145500000,0.000069106000000,0.000034735000000,0.000114538000000,0.000060414000000,0.000021120500000,0.000062390000000,0.000175377000000,0.000043032000000,0.000179723000000,0.000062390000000,0.000067921000000,0.000690932000000,0.000182883000000,0.000484710000000 +0.000030390000000,0.000033155000000,0.000019145500000,0.000069106000000,0.000047378000000,0.000080957000000,0.000060415000000,0.000020331000000,0.000061600000000,0.000174192000000,0.000043427000000,0.000174192000000,0.000063180000000,0.000066340000000,0.000629698000000,0.000216858000000,0.000534093000000 +0.000030785000000,0.000033155000000,0.000020133000000,0.000068711000000,0.000036711000000,0.000063575000000,0.000060809000000,0.000041268500000,0.000061995000000,0.000199476000000,0.000044217000000,0.000165106000000,0.000060414000000,0.000069501000000,0.000607179000000,0.000186439000000,0.000504859000000 +0.000030389000000,0.000034736000000,0.000019540500000,0.000115328000000,0.000035921000000,0.000065945000000,0.000059625000000,0.000020923500000,0.000061995000000,0.000159970000000,0.000043427000000,0.000205797000000,0.000060020000000,0.000067921000000,0.000595327000000,0.000187624000000,0.000484711000000 +0.000030390000000,0.000033550000000,0.000019540500000,0.000067921000000,0.000035130000000,0.000099525000000,0.000060020000000,0.000020330500000,0.000065945000000,0.000160365000000,0.000043031000000,0.000159575000000,0.000060019000000,0.000066735000000,0.000643920000000,0.000287969000000,0.000571624000000 +0.000031970000000,0.000033155000000,0.000019145500000,0.000067920000000,0.000035130000000,0.000063970000000,0.000060020000000,0.000020528500000,0.000076217000000,0.000175773000000,0.000045797000000,0.000176957000000,0.000062390000000,0.000067130000000,0.000684217000000,0.000199476000000,0.000484711000000 +0.000030389000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000036711000000,0.000063970000000,0.000060020000000,0.000021713500000,0.000065155000000,0.000252414000000,0.000043822000000,0.000173797000000,0.000061995000000,0.000067131000000,0.000611525000000,0.000180513000000,0.000520266000000 +0.000031575000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000037105000000,0.000063970000000,0.000060414000000,0.000022701000000,0.000061995000000,0.000180513000000,0.000043032000000,0.000200266000000,0.000060414000000,0.000102290000000,0.000628513000000,0.000284414000000,0.000516315000000 +0.000031179000000,0.000033550000000,0.000018948000000,0.000069106000000,0.000037501000000,0.000065550000000,0.000060019000000,0.000020330500000,0.000063575000000,0.000162736000000,0.000045007000000,0.000177748000000,0.000061599000000,0.000069106000000,0.000678291000000,0.000182488000000,0.000483525000000 +0.000030785000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000035920000000,0.000064760000000,0.000060019000000,0.000021516000000,0.000064365000000,0.000151674000000,0.000043427000000,0.000162735000000,0.000062389000000,0.000066340000000,0.000595328000000,0.000249254000000,0.000519081000000 +0.000029995000000,0.000088069000000,0.000018948000000,0.000069896000000,0.000034735000000,0.000065155000000,0.000060415000000,0.000022306000000,0.000061995000000,0.000207377000000,0.000043427000000,0.000159574000000,0.000091230000000,0.000068711000000,0.000594142000000,0.000187624000000,0.000484315000000 +0.000030389000000,0.000033155000000,0.000020133000000,0.000103872000000,0.000035130000000,0.000063575000000,0.000059624000000,0.000032973000000,0.000061994000000,0.000174192000000,0.000044612000000,0.000208957000000,0.000060414000000,0.000067131000000,0.000684216000000,0.000184069000000,0.000554241000000 +0.000031970000000,0.000033550000000,0.000018948000000,0.000069105000000,0.000036315000000,0.000097945000000,0.000060414000000,0.000020330500000,0.000062390000000,0.000172612000000,0.000043427000000,0.000167476000000,0.000061994000000,0.000066341000000,0.000627723000000,0.000240563000000,0.000518291000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000067920000000,0.000034735000000,0.000064365000000,0.000060019000000,0.000021515500000,0.000063575000000,0.000156019000000,0.000043427000000,0.000161551000000,0.000061599000000,0.000068315000000,0.000594538000000,0.000181698000000,0.000483525000000 +0.000030390000000,0.000033945000000,0.000018750500000,0.000068711000000,0.000035130000000,0.000064760000000,0.000060414000000,0.000022305500000,0.000061600000000,0.000240958000000,0.000043032000000,0.000157994000000,0.000080167000000,0.000069896000000,0.000682242000000,0.000180118000000,0.000525797000000 +0.000031180000000,0.000033155000000,0.000019935500000,0.000069501000000,0.000035920000000,0.000064365000000,0.000059624000000,0.000023491000000,0.000061994000000,0.000174982000000,0.000043032000000,0.000207377000000,0.000075427000000,0.000067130000000,0.000628908000000,0.000257550000000,0.000484316000000 +0.000031970000000,0.000033155000000,0.000019343000000,0.000069106000000,0.000035526000000,0.000065550000000,0.000060019000000,0.000023886000000,0.000064365000000,0.000160365000000,0.000043426000000,0.000161155000000,0.000062390000000,0.000069106000000,0.000596118000000,0.000181698000000,0.000547920000000 +0.000029994000000,0.000033550000000,0.000019145500000,0.000069106000000,0.000036316000000,0.000066340000000,0.000060414000000,0.000020923000000,0.000061995000000,0.000174192000000,0.000077402000000,0.000165501000000,0.000199476000000,0.000069896000000,0.000667228000000,0.000191574000000,0.000714241000000 +0.000029995000000,0.000033946000000,0.000020330500000,0.000103081000000,0.000035525000000,0.000064365000000,0.000060810000000,0.000022108500000,0.000064760000000,0.000235426000000,0.000044217000000,0.000175377000000,0.000080167000000,0.000067525000000,0.000630093000000,0.000274537000000,0.000547920000000 +0.000029995000000,0.000033945000000,0.000021318500000,0.000069106000000,0.000035131000000,0.000064365000000,0.000059230000000,0.000021713500000,0.000064365000000,0.000174192000000,0.000043427000000,0.000209352000000,0.000075426000000,0.000066340000000,0.000728859000000,0.000181303000000,0.000483525000000 +0.000030390000000,0.000032760000000,0.000020133000000,0.000067526000000,0.000034736000000,0.000077797000000,0.000060020000000,0.000020528500000,0.000098341000000,0.000156414000000,0.000044217000000,0.000179722000000,0.000061600000000,0.000067130000000,0.000594537000000,0.000186439000000,0.000570044000000 +0.000029994000000,0.000034735000000,0.000019935500000,0.000068315000000,0.000037501000000,0.000063575000000,0.000060019000000,0.000035540500000,0.000062390000000,0.000225551000000,0.000043427000000,0.000175378000000,0.000061995000000,0.000066341000000,0.000627327000000,0.000250834000000,0.000659722000000 +0.000031575000000,0.000033946000000,0.000019540500000,0.000068711000000,0.000035131000000,0.000064365000000,0.000060414000000,0.000020330500000,0.000063575000000,0.000174587000000,0.000043427000000,0.000159970000000,0.000061994000000,0.000102291000000,0.000679870000000,0.000181698000000,0.000486686000000 +0.000029995000000,0.000033945000000,0.000019145500000,0.000069106000000,0.000035131000000,0.000065550000000,0.000059624000000,0.000021516000000,0.000061600000000,0.000156019000000,0.000043822000000,0.000175772000000,0.000062390000000,0.000069501000000,0.000596908000000,0.000190390000000,0.000569253000000 +0.000031575000000,0.000033550000000,0.000019145500000,0.000069501000000,0.000034736000000,0.000066341000000,0.000056859000000,0.000020330500000,0.000063970000000,0.000174587000000,0.000043427000000,0.000152859000000,0.000060810000000,0.000065945000000,0.000607969000000,0.000267821000000,0.000483921000000 +0.000031970000000,0.000034341000000,0.000020528000000,0.000069106000000,0.000035921000000,0.000064365000000,0.000056859000000,0.000020726000000,0.000061599000000,0.000245303000000,0.000044217000000,0.000178933000000,0.000062784000000,0.000065945000000,0.000667624000000,0.000181698000000,0.000485501000000 +0.000030390000000,0.000034340000000,0.000019343000000,0.000083328000000,0.000035920000000,0.000063575000000,0.000127180000000,0.000020330500000,0.000061600000000,0.000156019000000,0.000043426000000,0.000178933000000,0.000060019000000,0.000066735000000,0.000640760000000,0.000182094000000,0.000568068000000 +0.000031575000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000036710000000,0.000065155000000,0.000056069000000,0.000022108500000,0.000061599000000,0.000175377000000,0.000043426000000,0.000157600000000,0.000062389000000,0.000070291000000,0.000594537000000,0.000231476000000,0.000485105000000 +0.000030785000000,0.000033155000000,0.000019343000000,0.000067921000000,0.000035921000000,0.000064760000000,0.000056464000000,0.000020725500000,0.000075822000000,0.000173402000000,0.000043427000000,0.000177748000000,0.000062390000000,0.000066736000000,0.001063080000000,0.000179328000000,0.000518686000000 +0.000031575000000,0.000033551000000,0.000019540500000,0.000067921000000,0.000035921000000,0.000063970000000,0.000056463000000,0.000022108500000,0.000061995000000,0.000156019000000,0.000043426000000,0.000178538000000,0.000061994000000,0.000066736000000,0.000629698000000,0.000180118000000,0.000483525000000 +0.000033550000000,0.000033945000000,0.000018948000000,0.000068315000000,0.000036710000000,0.000063970000000,0.000056464000000,0.000037318500000,0.000063575000000,0.000174192000000,0.000043427000000,0.000157995000000,0.000083723000000,0.000069895000000,0.000628118000000,0.000248069000000,0.000484710000000 +0.000031179000000,0.000033946000000,0.000018948000000,0.000068711000000,0.000035130000000,0.000064365000000,0.000055674000000,0.000020331000000,0.000061995000000,0.000172217000000,0.000045007000000,0.000180908000000,0.000061600000000,0.000068711000000,0.000594537000000,0.000188414000000,0.000517500000000 +0.000030785000000,0.000034735000000,0.000018948000000,0.000069105000000,0.000034736000000,0.000064365000000,0.000056464000000,0.000020528000000,0.000061599000000,0.000175377000000,0.000044612000000,0.000152464000000,0.000060810000000,0.000066736000000,0.000607574000000,0.000185254000000,0.000484315000000 +0.000031180000000,0.000033945000000,0.000019343000000,0.000087278000000,0.000037106000000,0.000064365000000,0.000058044000000,0.000021713500000,0.000061995000000,0.000189599000000,0.000043427000000,0.000174982000000,0.000061995000000,0.000066736000000,0.000630093000000,0.000263081000000,0.000555427000000 +0.000031574000000,0.000033945000000,0.000018948000000,0.000069105000000,0.000035131000000,0.000063575000000,0.000131526000000,0.000021713500000,0.000061994000000,0.000158389000000,0.000043427000000,0.000184858000000,0.000060414000000,0.000069895000000,0.000673944000000,0.000184464000000,0.000518290000000 +0.000031575000000,0.000033155000000,0.000018948000000,0.000069106000000,0.000035525000000,0.000063970000000,0.000073056000000,0.000020330500000,0.000064760000000,0.000160365000000,0.000043822000000,0.000157995000000,0.000060414000000,0.000066735000000,0.000595328000000,0.000186044000000,0.000483920000000 +0.000030785000000,0.000033946000000,0.000019540500000,0.000068315000000,0.000037106000000,0.000078587000000,0.000070291000000,0.000020331000000,0.000061599000000,0.000193551000000,0.000063575000000,0.000159574000000,0.000060414000000,0.000068316000000,0.000666834000000,0.000399772000000,0.000556217000000 +0.000029994000000,0.000033155000000,0.000019145500000,0.000067921000000,0.000036316000000,0.000065945000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000175772000000,0.000057649000000,0.000190389000000,0.000062784000000,0.000067920000000,0.000686587000000,0.000181699000000,0.000485500000000 +0.000030390000000,0.000033155000000,0.000019738000000,0.000068316000000,0.000035130000000,0.000065945000000,0.000056464000000,0.000021516000000,0.000064760000000,0.000175378000000,0.000043426000000,0.000257155000000,0.000081352000000,0.000067130000000,0.000643920000000,0.000215278000000,0.000508809000000 +0.000063575000000,0.000067921000000,0.000019540500000,0.000069106000000,0.000036315000000,0.000063970000000,0.000055674000000,0.000020330500000,0.000063970000000,0.000180118000000,0.000043822000000,0.000166686000000,0.000060414000000,0.000066340000000,0.000594142000000,0.000183674000000,0.000621401000000 +0.000030390000000,0.000033550000000,0.000040873500000,0.000069106000000,0.000035130000000,0.000063575000000,0.000057254000000,0.000040479000000,0.000061995000000,0.000234241000000,0.000043822000000,0.000177747000000,0.000061995000000,0.000068316000000,0.000646685000000,0.000181698000000,0.000498143000000 +0.000030785000000,0.000033945000000,0.000019738000000,0.000142587000000,0.000035920000000,0.000065945000000,0.000077402000000,0.000021911000000,0.000061994000000,0.000152858000000,0.000043427000000,0.000162340000000,0.000061995000000,0.000068710000000,0.000628513000000,0.000213303000000,0.000571229000000 +0.000030389000000,0.000033945000000,0.000019738000000,0.000070290000000,0.000035131000000,0.000065946000000,0.000057254000000,0.000020923000000,0.000064365000000,0.000173007000000,0.000046587000000,0.000173797000000,0.000060415000000,0.000067525000000,0.000595327000000,0.000179723000000,0.000518290000000 +0.000031180000000,0.000033945000000,0.000018948000000,0.000068711000000,0.000035131000000,0.000097945000000,0.000056464000000,0.000021515500000,0.000150488000000,0.000174192000000,0.000043427000000,0.000175772000000,0.000061599000000,0.000069501000000,0.000628513000000,0.000181304000000,0.000485106000000 +0.000030389000000,0.000033945000000,0.000018948000000,0.000067920000000,0.000035921000000,0.000065550000000,0.000058044000000,0.000021910500000,0.000068316000000,0.000243723000000,0.000043427000000,0.000166686000000,0.000061599000000,0.000066340000000,0.000678686000000,0.000201056000000,0.000518685000000 +0.000031575000000,0.000033551000000,0.000018948000000,0.000067921000000,0.000035525000000,0.000063970000000,0.000056859000000,0.000022306000000,0.000063970000000,0.000170242000000,0.000062390000000,0.000161945000000,0.000060414000000,0.000067130000000,0.000594933000000,0.000203031000000,0.000483130000000 +0.000031575000000,0.000033155000000,0.000019738000000,0.000068316000000,0.000035130000000,0.000065156000000,0.000056859000000,0.000022503500000,0.000061994000000,0.000165896000000,0.000043822000000,0.000174982000000,0.000096760000000,0.000067526000000,0.000608760000000,0.000186439000000,0.000519081000000 +0.000030785000000,0.000034341000000,0.000020133000000,0.000087278000000,0.000036315000000,0.000063970000000,0.000055674000000,0.000022306000000,0.000064365000000,0.000257155000000,0.000043426000000,0.000173797000000,0.000061600000000,0.000066341000000,0.000627328000000,0.000214488000000,0.000517500000000 +0.000029994000000,0.000034340000000,0.000019343000000,0.000069501000000,0.000035130000000,0.000065155000000,0.000057254000000,0.000024281000000,0.000062390000000,0.000159970000000,0.000043427000000,0.000161155000000,0.000060415000000,0.000069501000000,0.000616661000000,0.000178538000000,0.000483920000000 +0.000031180000000,0.000088463000000,0.000018948000000,0.000069106000000,0.000035131000000,0.000063970000000,0.000056859000000,0.000021911000000,0.000080957000000,0.000173007000000,0.000043822000000,0.000165501000000,0.000062389000000,0.000069106000000,0.000915722000000,0.000182488000000,0.000520266000000 +0.000030389000000,0.000034340000000,0.000026849500000,0.000068711000000,0.000035921000000,0.000064365000000,0.000089649000000,0.000022108500000,0.000065155000000,0.000174588000000,0.000045403000000,0.000171822000000,0.000061599000000,0.000069105000000,0.000596907000000,0.000182093000000,0.000485500000000 +0.000030390000000,0.000034735000000,0.000020330500000,0.000069106000000,0.000035131000000,0.000093994000000,0.000055674000000,0.000022306000000,0.000062785000000,0.000233056000000,0.000045007000000,0.000175773000000,0.000061599000000,0.000067526000000,0.000627722000000,0.000180513000000,0.000519871000000 +0.000029995000000,0.000034341000000,0.000018948000000,0.000068316000000,0.000036316000000,0.000065946000000,0.000056859000000,0.000021121000000,0.000062389000000,0.000479969000000,0.000043426000000,0.000179328000000,0.000061600000000,0.000066341000000,0.000634834000000,0.000181698000000,0.000521846000000 +0.000029994000000,0.000034340000000,0.000019738000000,0.000068710000000,0.000034735000000,0.000064365000000,0.000056859000000,0.000023886000000,0.000063575000000,0.000400957000000,0.000045007000000,0.000174983000000,0.000061995000000,0.000070291000000,0.000594537000000,0.000181303000000,0.000484710000000 +0.000031575000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000038686000000,0.000063970000000,0.000056464000000,0.000022503500000,0.000061995000000,0.000199871000000,0.000043427000000,0.000159969000000,0.000097945000000,0.000067130000000,0.000629698000000,0.000181303000000,0.000520266000000 +0.000029994000000,0.000033550000000,0.000018750500000,0.000084118000000,0.000034736000000,0.000063970000000,0.000056069000000,0.000023293500000,0.000061599000000,0.000166291000000,0.000044217000000,0.000174982000000,0.000061995000000,0.000069106000000,0.000662093000000,0.000185254000000,0.000484711000000 +0.000031575000000,0.000034341000000,0.000018947500000,0.000069106000000,0.000038686000000,0.000063575000000,0.000056859000000,0.000022306000000,0.000061995000000,0.000186044000000,0.000044612000000,0.000152859000000,0.000062389000000,0.000068316000000,0.000642735000000,0.000183278000000,0.000552661000000 +0.000030785000000,0.000033550000000,0.000020528500000,0.000068710000000,0.000034735000000,0.000065550000000,0.000056859000000,0.000022503500000,0.000098736000000,0.000186044000000,0.000044612000000,0.000201451000000,0.000063179000000,0.000067920000000,0.000598884000000,0.000194735000000,0.000519476000000 +0.000031180000000,0.000033155000000,0.000019540500000,0.000069106000000,0.000035525000000,0.000064760000000,0.000056859000000,0.000037516000000,0.000062784000000,0.000165895000000,0.000043031000000,0.000178538000000,0.000061995000000,0.000069501000000,0.000627723000000,0.000182884000000,0.000483525000000 +0.000031970000000,0.000034341000000,0.000018750500000,0.000069500000000,0.000035921000000,0.000065155000000,0.000055674000000,0.000087886500000,0.000063180000000,0.000257155000000,0.000043427000000,0.000157995000000,0.000060414000000,0.000066341000000,0.000627328000000,0.000179328000000,0.000518686000000 +0.000031180000000,0.000034340000000,0.000019343000000,0.000067920000000,0.000035130000000,0.000064365000000,0.000056859000000,0.000031590000000,0.000061995000000,0.000183674000000,0.000044217000000,0.000177748000000,0.000063180000000,0.000067525000000,0.000598093000000,0.000184068000000,0.000484315000000 +0.000031180000000,0.000033945000000,0.000020133000000,0.000068316000000,0.000034735000000,0.000065550000000,0.000057649000000,0.000028034500000,0.000063970000000,0.000165501000000,0.000043427000000,0.000259920000000,0.000060414000000,0.000069106000000,0.000664858000000,0.000182488000000,0.000483525000000 +0.000031575000000,0.000033155000000,0.000018750500000,0.000106636000000,0.000035525000000,0.000063970000000,0.000056464000000,0.000021516000000,0.000061600000000,0.000184463000000,0.000045402000000,0.000166686000000,0.000097550000000,0.000067131000000,0.000662883000000,0.000184464000000,0.000526982000000 +0.000029994000000,0.000033155000000,0.000019145500000,0.000153254000000,0.000035920000000,0.000064760000000,0.000055673000000,0.000020330500000,0.000061995000000,0.000217649000000,0.000043427000000,0.000190390000000,0.000060810000000,0.000068710000000,0.000594932000000,0.000180908000000,0.000518685000000 +0.000030389000000,0.000033945000000,0.000019738000000,0.000099130000000,0.000035921000000,0.000065946000000,0.000058044000000,0.000039491000000,0.000061994000000,0.000190390000000,0.000077402000000,0.000219229000000,0.000062390000000,0.000068711000000,0.000594537000000,0.000188019000000,0.000518291000000 +0.000031180000000,0.000034340000000,0.000018948000000,0.000069106000000,0.000034736000000,0.000065945000000,0.000056859000000,0.000022306000000,0.000063970000000,0.000174192000000,0.000043426000000,0.000290735000000,0.000061995000000,0.000069106000000,0.000630883000000,0.000180908000000,0.000486686000000 +0.000029995000000,0.000033551000000,0.000018750500000,0.000068710000000,0.000036316000000,0.000086093000000,0.000090834000000,0.000023688500000,0.000063575000000,0.000157995000000,0.000045007000000,0.000454290000000,0.000062785000000,0.000066735000000,0.000634043000000,0.000209353000000,0.000484710000000 +0.000031180000000,0.000033155000000,0.000019145500000,0.000068711000000,0.000035526000000,0.000063970000000,0.000056859000000,0.000021910500000,0.000061600000000,0.000160365000000,0.000043427000000,0.000281254000000,0.000062785000000,0.000069106000000,0.000596118000000,0.000182884000000,0.000517895000000 +0.000033945000000,0.000033550000000,0.000018948000000,0.000101896000000,0.000036315000000,0.000083723000000,0.000056464000000,0.000022503500000,0.000064365000000,0.000159575000000,0.000043427000000,0.000174982000000,0.000061995000000,0.000482340000000,0.000688562000000,0.000182093000000,0.000487081000000 +0.000030390000000,0.000033156000000,0.000018948000000,0.000068315000000,0.000035921000000,0.000065946000000,0.000058044000000,0.000023491000000,0.000065155000000,0.000174982000000,0.000043032000000,0.000241747000000,0.000062784000000,0.000081748000000,0.000628907000000,0.000183673000000,0.000518685000000 +0.000029994000000,0.000033155000000,0.000019343000000,0.000068315000000,0.000036315000000,0.000063970000000,0.000057649000000,0.000022108500000,0.000061600000000,0.000174587000000,0.000045007000000,0.000184858000000,0.000097550000000,0.000065550000000,0.000597303000000,0.000178933000000,0.000486686000000 +0.000031180000000,0.000033550000000,0.000019738000000,0.000068711000000,0.000035920000000,0.000065945000000,0.000056069000000,0.000021121000000,0.000064760000000,0.000180908000000,0.000043821000000,0.000177352000000,0.000062785000000,0.000096760000000,0.000628907000000,0.000181303000000,0.000483130000000 +0.000030390000000,0.000033155000000,0.000018750500000,0.000069106000000,0.000036316000000,0.000066341000000,0.000056464000000,0.000020726000000,0.000083328000000,0.000162735000000,0.000043822000000,0.000187624000000,0.000062785000000,0.000065551000000,0.000629303000000,0.000194735000000,0.000633253000000 +0.000030390000000,0.000034340000000,0.000019738000000,0.000069106000000,0.000034736000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000061599000000,0.000152464000000,0.000045797000000,0.000190389000000,0.000061995000000,0.000062784000000,0.000594537000000,0.000184858000000,0.000485896000000 +0.000031575000000,0.000033156000000,0.000019145500000,0.000068711000000,0.000035921000000,0.000111377000000,0.000056859000000,0.000022503500000,0.000062390000000,0.000207772000000,0.000057649000000,0.000161550000000,0.000060414000000,0.000065155000000,0.000615081000000,0.000180513000000,0.000497747000000 +0.000031180000000,0.000033551000000,0.000018948000000,0.000069106000000,0.000036316000000,0.000064760000000,0.000056069000000,0.000022503500000,0.000063970000000,0.000174982000000,0.000045007000000,0.000176168000000,0.000062784000000,0.000064760000000,0.000628513000000,0.000213699000000,0.000520660000000 +0.000031179000000,0.000032760000000,0.000019738500000,0.000101501000000,0.000039476000000,0.000065550000000,0.000056859000000,0.000020923000000,0.000063179000000,0.000173402000000,0.000043426000000,0.000201451000000,0.000062784000000,0.000064760000000,0.000698044000000,0.000181304000000,0.000484711000000 +0.000029995000000,0.000033550000000,0.000018948000000,0.000068315000000,0.000035130000000,0.000063575000000,0.000058044000000,0.000021713500000,0.000065155000000,0.000156019000000,0.000043822000000,0.000161945000000,0.000062390000000,0.000063574000000,0.000662488000000,0.000180118000000,0.000519476000000 +0.000030389000000,0.000035525000000,0.000019145500000,0.000068315000000,0.000036316000000,0.000063969000000,0.000056859000000,0.000020726000000,0.000061995000000,0.000190390000000,0.000043427000000,0.000157994000000,0.000101501000000,0.000065155000000,0.000593747000000,0.000220809000000,0.000484710000000 +0.000031970000000,0.000033550000000,0.000019540500000,0.000070686000000,0.000037500000000,0.000066340000000,0.000056069000000,0.000020330500000,0.000061995000000,0.000175377000000,0.000043821000000,0.000174982000000,0.000062390000000,0.000068316000000,0.000663674000000,0.000180909000000,0.000514340000000 +0.000031575000000,0.000033550000000,0.000019935500000,0.000069105000000,0.000035131000000,0.000065550000000,0.000056858000000,0.000022108500000,0.000099525000000,0.000159180000000,0.000043427000000,0.000194340000000,0.000060020000000,0.000065551000000,0.000630093000000,0.000181303000000,0.000518291000000 +0.000030784000000,0.000033945000000,0.000019145500000,0.000068710000000,0.000036316000000,0.000097945000000,0.000056859000000,0.000020331000000,0.000061994000000,0.000173007000000,0.000045007000000,0.000165105000000,0.000079772000000,0.000063969000000,0.000598883000000,0.000249254000000,0.000485896000000 +0.000030785000000,0.000033155000000,0.000018750500000,0.000068711000000,0.000039477000000,0.000063575000000,0.000056859000000,0.000021911000000,0.000061995000000,0.000242143000000,0.000043822000000,0.000172216000000,0.000062785000000,0.000065155000000,0.000680661000000,0.000188809000000,0.000518686000000 +0.000031180000000,0.000033156000000,0.000020331000000,0.000069896000000,0.000035131000000,0.000064365000000,0.000084118000000,0.000036923000000,0.000061599000000,0.000174587000000,0.000058439000000,0.000176167000000,0.000060415000000,0.000062390000000,0.000663278000000,0.000184068000000,0.000483920000000 +0.000044217000000,0.000034340000000,0.000019935500000,0.000072266000000,0.000034736000000,0.000063575000000,0.000126785000000,0.000021911000000,0.000066735000000,0.000156810000000,0.000044217000000,0.000299822000000,0.000060019000000,0.000065155000000,0.000594537000000,0.000249253000000,0.000506043000000 +0.000030390000000,0.000033550000000,0.000018948000000,0.000068316000000,0.000035526000000,0.000064365000000,0.000073056000000,0.000020726000000,0.000063180000000,0.000180908000000,0.000044217000000,0.000174982000000,0.000062389000000,0.000064365000000,0.000659723000000,0.000201056000000,0.000546340000000 +0.000030390000000,0.000033155000000,0.000019145000000,0.000068711000000,0.000035526000000,0.000066340000000,0.000056859000000,0.000021713000000,0.000065550000000,0.000208563000000,0.000043821000000,0.000265846000000,0.000074636000000,0.000064761000000,0.000629302000000,0.000216464000000,0.000486685000000 +0.000031179000000,0.000033155000000,0.000019738000000,0.000068711000000,0.000035921000000,0.000065550000000,0.000056464000000,0.000023689000000,0.000061994000000,0.000157204000000,0.000043822000000,0.000208958000000,0.000062785000000,0.000064365000000,0.000630093000000,0.000197106000000,0.000525007000000 +0.000029995000000,0.000053699000000,0.000019936000000,0.000069106000000,0.000035131000000,0.000064365000000,0.000056859000000,0.000020330500000,0.000068315000000,0.000190390000000,0.000060810000000,0.000152464000000,0.000062389000000,0.000062390000000,0.000594537000000,0.000180118000000,0.000538834000000 +0.000031575000000,0.000053303000000,0.000018553000000,0.000069501000000,0.000036710000000,0.000080958000000,0.000056858000000,0.000020726000000,0.000061995000000,0.000186044000000,0.000043822000000,0.000180513000000,0.000062389000000,0.000065945000000,0.000685007000000,0.000181698000000,0.000498932000000 +0.000029995000000,0.000069895000000,0.000019343000000,0.000069105000000,0.000035526000000,0.000066735000000,0.000090044000000,0.000021713000000,0.000063575000000,0.000165501000000,0.000043426000000,0.000178537000000,0.000061995000000,0.000064760000000,0.000627723000000,0.000181698000000,0.000532908000000 +0.000029995000000,0.000036316000000,0.000029417000000,0.000068711000000,0.000035921000000,0.000064760000000,0.000056068000000,0.000020726000000,0.000064365000000,0.000185649000000,0.000043822000000,0.000191969000000,0.000062390000000,0.000065155000000,0.000594933000000,0.000201056000000,0.000484315000000 +0.000030389000000,0.000033155000000,0.000052726000000,0.000067920000000,0.000035131000000,0.000065550000000,0.000056464000000,0.000021911000000,0.000064760000000,0.000184464000000,0.000058834000000,0.000176957000000,0.000061994000000,0.000061995000000,0.001106933000000,0.000186834000000,0.000484710000000 +0.000031575000000,0.000034735000000,0.000019935500000,0.000067921000000,0.000034736000000,0.000063970000000,0.000056859000000,0.000022108500000,0.000077797000000,0.000165895000000,0.000044217000000,0.000179328000000,0.000061994000000,0.000063180000000,0.000596513000000,0.000180513000000,0.000568069000000 +0.000033550000000,0.000033945000000,0.000027047000000,0.000068711000000,0.000035130000000,0.000065945000000,0.000056464000000,0.000022108500000,0.000062389000000,0.000185253000000,0.000044612000000,0.000157995000000,0.000075822000000,0.000083328000000,0.000717797000000,0.000185649000000,0.000485105000000 +0.000029995000000,0.000067526000000,0.000019343000000,0.000069501000000,0.000036315000000,0.000063970000000,0.000055674000000,0.000022503500000,0.000063970000000,0.000184069000000,0.000044217000000,0.000212513000000,0.000063180000000,0.000148908000000,0.000628117000000,0.000182093000000,0.000516711000000 +0.000030390000000,0.000033551000000,0.000018750500000,0.000070686000000,0.000035921000000,0.000064365000000,0.000056859000000,0.000021515500000,0.000061995000000,0.000184859000000,0.000044611000000,0.000153254000000,0.000062390000000,0.000079377000000,0.000593747000000,0.000308513000000,0.000483920000000 +0.000031180000000,0.000033550000000,0.000018553000000,0.000068711000000,0.000035526000000,0.000064365000000,0.000056464000000,0.000022108500000,0.000064365000000,0.000185254000000,0.000043427000000,0.000174587000000,0.000062785000000,0.000063970000000,0.000629303000000,0.000179723000000,0.000486686000000 +0.000031574000000,0.000033155000000,0.000019145500000,0.000102686000000,0.000035131000000,0.000063970000000,0.000056859000000,0.000023294000000,0.000061600000000,0.000167476000000,0.000043822000000,0.000165896000000,0.000061205000000,0.000061995000000,0.000638389000000,0.000180908000000,0.000519081000000 +0.000030785000000,0.000033945000000,0.000019145500000,0.000070291000000,0.000035130000000,0.000063970000000,0.000056069000000,0.000021911000000,0.000064760000000,0.000169451000000,0.000044612000000,0.000171031000000,0.000060019000000,0.000064760000000,0.000595328000000,0.000183278000000,0.000483525000000 +0.000030390000000,0.000034736000000,0.000018750500000,0.000069106000000,0.000035130000000,0.000065946000000,0.000056859000000,0.000020923500000,0.000061995000000,0.000169452000000,0.000044612000000,0.000159969000000,0.000060414000000,0.000098735000000,0.000598093000000,0.000182093000000,0.000557401000000 +0.000029994000000,0.000032760000000,0.000019935500000,0.000068711000000,0.000035526000000,0.000063970000000,0.000056858000000,0.000020330500000,0.000064760000000,0.000223970000000,0.000043427000000,0.000178538000000,0.000060414000000,0.000064760000000,0.000628513000000,0.000199476000000,0.000518686000000 +0.000030390000000,0.000034340000000,0.000020528000000,0.000068711000000,0.000035526000000,0.000064365000000,0.000056463000000,0.000037318500000,0.000061995000000,0.000185649000000,0.000043032000000,0.000173797000000,0.000061995000000,0.000063180000000,0.000632464000000,0.000179723000000,0.000487476000000 +0.000031574000000,0.000033550000000,0.000019936000000,0.000068711000000,0.000033551000000,0.000065551000000,0.000057253000000,0.000021713500000,0.000061995000000,0.000191575000000,0.000043427000000,0.000168267000000,0.000060414000000,0.000064760000000,0.000594142000000,0.000182489000000,0.000553846000000 +0.000030390000000,0.000034340000000,0.000019936000000,0.000069106000000,0.000033551000000,0.000063970000000,0.000056463000000,0.000020330500000,0.000063575000000,0.000172612000000,0.000045007000000,0.000177747000000,0.000061599000000,0.000063180000000,0.000664858000000,0.000183674000000,0.000483920000000 +0.000029994000000,0.000095969000000,0.000019343000000,0.000068711000000,0.000033155000000,0.000065550000000,0.000056858000000,0.000020331000000,0.000063970000000,0.000464167000000,0.000044216000000,0.000162735000000,0.000061994000000,0.000064760000000,0.000663673000000,0.000200661000000,0.000500908000000 +0.000030785000000,0.000033945000000,0.000019738000000,0.000137451000000,0.000035920000000,0.000064365000000,0.000056858000000,0.000021911000000,0.000061599000000,0.000331031000000,0.000044217000000,0.000161155000000,0.000061994000000,0.000063574000000,0.000595328000000,0.000181304000000,0.000562537000000 +0.000031970000000,0.000033550000000,0.000018750500000,0.000069105000000,0.000033551000000,0.000064760000000,0.000072662000000,0.000020725500000,0.000097945000000,0.000184859000000,0.000043031000000,0.000174983000000,0.000060415000000,0.000065155000000,0.000643525000000,0.000183674000000,0.000484711000000 +0.000031574000000,0.000034341000000,0.000019145500000,0.000068711000000,0.000034735000000,0.000063970000000,0.000056859000000,0.000020528500000,0.000064365000000,0.000184464000000,0.000043427000000,0.000167081000000,0.000062390000000,0.000134291000000,0.000628513000000,0.000186044000000,0.000518686000000 +0.000029995000000,0.000033550000000,0.000018750000000,0.000068316000000,0.000047378000000,0.000066735000000,0.000057649000000,0.000022108500000,0.000062389000000,0.000165105000000,0.000044217000000,0.000161945000000,0.000061995000000,0.000078587000000,0.000594933000000,0.000183278000000,0.000483525000000 +0.000029994000000,0.000036711000000,0.000020331000000,0.000068711000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000173402000000,0.000043822000000,0.000158390000000,0.000061599000000,0.000063970000000,0.000594143000000,0.000232662000000,0.000498933000000 +0.000031180000000,0.000046587000000,0.000018750000000,0.000069105000000,0.000033155000000,0.000064760000000,0.000055674000000,0.000021713500000,0.000064760000000,0.000185649000000,0.000077797000000,0.000243723000000,0.000062389000000,0.000062389000000,0.000678686000000,0.000180908000000,0.000524611000000 +0.000030389000000,0.000035525000000,0.000019738500000,0.000069896000000,0.000032760000000,0.000087278000000,0.000056859000000,0.000023886000000,0.000061995000000,0.000169451000000,0.000043427000000,0.000161155000000,0.000061994000000,0.000063180000000,0.000630093000000,0.000197501000000,0.000484315000000 +0.000029995000000,0.000035525000000,0.000019145500000,0.000102291000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000020528000000,0.000061995000000,0.000184069000000,0.000044612000000,0.000165106000000,0.000061205000000,0.000065551000000,0.000598093000000,0.000201846000000,0.000571623000000 +0.000030785000000,0.000035131000000,0.000019343500000,0.000069105000000,0.000033156000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000061599000000,0.000184859000000,0.000044611000000,0.000205402000000,0.000062785000000,0.000065550000000,0.000644315000000,0.000185649000000,0.000519871000000 +0.000030785000000,0.000036711000000,0.000019145500000,0.000069105000000,0.000033155000000,0.000063575000000,0.000111377000000,0.000021713500000,0.000150489000000,0.000184463000000,0.000044612000000,0.000175772000000,0.000061994000000,0.000062785000000,0.000669994000000,0.000199476000000,0.000484315000000 +0.000029994000000,0.000035130000000,0.000018948000000,0.000067921000000,0.000033550000000,0.000067921000000,0.000056859000000,0.000021713500000,0.000064365000000,0.000166291000000,0.000043822000000,0.000181303000000,0.000066340000000,0.000063575000000,0.000594142000000,0.000214489000000,0.000919673000000 +0.000031575000000,0.000035920000000,0.000019935500000,0.000067921000000,0.000033550000000,0.000066340000000,0.000056464000000,0.000020331000000,0.000064365000000,0.000184464000000,0.000043822000000,0.000175377000000,0.000061600000000,0.000063970000000,0.000609550000000,0.000199476000000,0.000545945000000 +0.000031575000000,0.000035526000000,0.000018750500000,0.000068710000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000020330500000,0.000061995000000,0.000186044000000,0.000045007000000,0.000223180000000,0.000075427000000,0.000065155000000,0.000630093000000,0.000199476000000,0.000487476000000 +0.000063970000000,0.000036315000000,0.000019145500000,0.000070291000000,0.000033945000000,0.000065945000000,0.000056069000000,0.000021911000000,0.000064760000000,0.000165895000000,0.000043426000000,0.000174192000000,0.000062390000000,0.000064365000000,0.000597303000000,0.000213303000000,0.000499723000000 +0.000031970000000,0.000035526000000,0.000018948000000,0.000068710000000,0.000033945000000,0.000097550000000,0.000056859000000,0.000022306000000,0.000061600000000,0.000184858000000,0.000043822000000,0.000152859000000,0.000066735000000,0.000062389000000,0.000748216000000,0.000182488000000,0.000553846000000 +0.000030785000000,0.000037106000000,0.000018948000000,0.000069105000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000037120500000,0.000061994000000,0.000184069000000,0.000043427000000,0.000178933000000,0.000060020000000,0.000065155000000,0.000612710000000,0.000182093000000,0.000485896000000 +0.000030390000000,0.000035921000000,0.000018947500000,0.000069106000000,0.000033156000000,0.000063970000000,0.000056859000000,0.000020528500000,0.000063970000000,0.000166686000000,0.000043822000000,0.000178538000000,0.000061600000000,0.000064760000000,0.000627328000000,0.000219624000000,0.000518291000000 +0.000031969000000,0.000035525000000,0.000018948000000,0.000069500000000,0.000033945000000,0.000065945000000,0.000090044000000,0.000020528000000,0.000061995000000,0.000187229000000,0.000045007000000,0.000158390000000,0.000062785000000,0.000083328000000,0.000668809000000,0.000185254000000,0.000485500000000 +0.000032365000000,0.000036711000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000063575000000,0.000056859000000,0.000020528500000,0.000064760000000,0.000184069000000,0.000043822000000,0.000177353000000,0.000060019000000,0.000063180000000,0.000732809000000,0.000185649000000,0.000485105000000 +0.000030390000000,0.000036315000000,0.000020133500000,0.000067921000000,0.000034735000000,0.000064365000000,0.000058044000000,0.000022108500000,0.000062389000000,0.000166290000000,0.000045007000000,0.000232661000000,0.000109797000000,0.000063970000000,0.000651821000000,0.000305353000000,0.000552661000000 +0.000030390000000,0.000036316000000,0.000019738000000,0.000071081000000,0.000034341000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000061995000000,0.000184859000000,0.000043427000000,0.000157600000000,0.000060414000000,0.000065155000000,0.000628907000000,0.000186834000000,0.000484710000000 +0.000029995000000,0.000035131000000,0.000020133500000,0.000068711000000,0.000034340000000,0.000065551000000,0.000056069000000,0.000022306000000,0.000061600000000,0.000183674000000,0.000045007000000,0.000178933000000,0.000060414000000,0.000064761000000,0.000649056000000,0.000183674000000,0.000566093000000 +0.000101501000000,0.000035525000000,0.000019343000000,0.000102686000000,0.000035131000000,0.000112957000000,0.000056859000000,0.000020528000000,0.000064760000000,0.000186044000000,0.000043822000000,0.000153253000000,0.000063970000000,0.000062784000000,0.000594537000000,0.000214489000000,0.000621402000000 +0.000078982000000,0.000035525000000,0.000018750500000,0.000070291000000,0.000033155000000,0.000065945000000,0.000056464000000,0.000020331000000,0.000116908000000,0.000185254000000,0.000043822000000,0.000243328000000,0.000061995000000,0.000062785000000,0.000629698000000,0.000184069000000,0.000486290000000 +0.000046192000000,0.000055674000000,0.000019936000000,0.000068710000000,0.000080167000000,0.000063970000000,0.000057254000000,0.000022108500000,0.000061995000000,0.000167871000000,0.000083723000000,0.000164710000000,0.000062785000000,0.000065155000000,0.000700809000000,0.000199871000000,0.000519081000000 +0.000044216000000,0.000036316000000,0.000018947500000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056069000000,0.000020725500000,0.000063969000000,0.000169847000000,0.000087673000000,0.000157600000000,0.000061995000000,0.000096365000000,0.000594537000000,0.000314044000000,0.000483525000000 +0.000029995000000,0.000035526000000,0.000019541000000,0.000067920000000,0.000033550000000,0.000065945000000,0.000056464000000,0.000020726000000,0.000064365000000,0.000170637000000,0.000072266000000,0.000159970000000,0.000060414000000,0.000063575000000,0.000614290000000,0.000199476000000,0.000487870000000 +0.000030389000000,0.000035525000000,0.000019343000000,0.000068315000000,0.000032761000000,0.000064760000000,0.000056464000000,0.000020528000000,0.000061600000000,0.000187229000000,0.000046982000000,0.000255575000000,0.000155624000000,0.000062785000000,0.000629303000000,0.000264266000000,0.000519081000000 +0.000030390000000,0.000035130000000,0.000018553000000,0.000068711000000,0.000033155000000,0.000066735000000,0.000056463000000,0.000021515500000,0.000065550000000,0.000185253000000,0.000043822000000,0.000262291000000,0.000146538000000,0.000064365000000,0.000631673000000,0.000195131000000,0.000486686000000 +0.000031180000000,0.000036315000000,0.000018948000000,0.000226340000000,0.000033550000000,0.000063970000000,0.000056068000000,0.000022306000000,0.000062390000000,0.000190785000000,0.000043427000000,0.000177352000000,0.000066735000000,0.000063180000000,0.000596118000000,0.000179328000000,0.000560167000000 +0.000031180000000,0.000035921000000,0.000019540500000,0.000070686000000,0.000035921000000,0.000065945000000,0.000057649000000,0.000021318500000,0.000061204000000,0.000172612000000,0.000044216000000,0.000247674000000,0.000061600000000,0.000062785000000,0.000654982000000,0.000267822000000,0.000504859000000 +0.000030785000000,0.000036316000000,0.000018750500000,0.000069106000000,0.000034340000000,0.000066340000000,0.000057254000000,0.000021516000000,0.000064365000000,0.000161946000000,0.000043032000000,0.000161550000000,0.000061995000000,0.000062785000000,0.000894784000000,0.000198686000000,0.000485896000000 +0.000030390000000,0.000035921000000,0.000020133000000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000022108500000,0.000063180000000,0.000184859000000,0.000063970000000,0.000173797000000,0.000061995000000,0.000065155000000,0.000641550000000,0.000183674000000,0.000534093000000 +0.000030389000000,0.000035920000000,0.000019935500000,0.000069106000000,0.000032761000000,0.000065945000000,0.000056068000000,0.000022306000000,0.000061600000000,0.000184859000000,0.000045007000000,0.000243328000000,0.000063180000000,0.000101501000000,0.000594537000000,0.000231871000000,0.000484710000000 +0.000031180000000,0.000062785000000,0.000019343000000,0.000067920000000,0.000068711000000,0.000065155000000,0.000090439000000,0.000030404500000,0.000064365000000,0.000183279000000,0.000043427000000,0.000167081000000,0.000061994000000,0.000062389000000,0.000643920000000,0.000199871000000,0.000518686000000 +0.000030390000000,0.000035526000000,0.000020331000000,0.000067921000000,0.000033155000000,0.000064365000000,0.000056463000000,0.000021911000000,0.000064760000000,0.000199871000000,0.000043427000000,0.000161550000000,0.000060414000000,0.000063970000000,0.000628118000000,0.000199476000000,0.000539229000000 +0.000030390000000,0.000035130000000,0.000019145500000,0.000083723000000,0.000032760000000,0.000063970000000,0.000056859000000,0.000021911000000,0.000064365000000,0.000165895000000,0.000043426000000,0.000157994000000,0.000061205000000,0.000063574000000,0.000595327000000,0.000273748000000,0.000485105000000 +0.000031575000000,0.000035921000000,0.000020133500000,0.000068711000000,0.000033945000000,0.000066340000000,0.000056069000000,0.000022503500000,0.000064760000000,0.000185649000000,0.000043427000000,0.000224364000000,0.000060414000000,0.000062784000000,0.000610339000000,0.000181699000000,0.000517501000000 +0.000031180000000,0.000037500000000,0.000019145500000,0.000069501000000,0.000034340000000,0.000064365000000,0.000056859000000,0.000022108500000,0.000146143000000,0.000169451000000,0.000043427000000,0.000161155000000,0.000061994000000,0.000063179000000,0.000630093000000,0.000180908000000,0.000483920000000 +0.000030390000000,0.000035526000000,0.000019145500000,0.000068711000000,0.000033946000000,0.000063575000000,0.000056859000000,0.000020725500000,0.000061995000000,0.000183674000000,0.000045007000000,0.000164711000000,0.000061995000000,0.000064365000000,0.000681451000000,0.000282044000000,0.000745056000000 +0.000030785000000,0.000035526000000,0.000020133500000,0.000069106000000,0.000033945000000,0.000066340000000,0.000056464000000,0.000021713500000,0.000064365000000,0.000184464000000,0.000043821000000,0.000175773000000,0.000061600000000,0.000065945000000,0.000597303000000,0.000193156000000,0.000572809000000 +0.000030785000000,0.000035921000000,0.000019738000000,0.000069106000000,0.000033156000000,0.000066340000000,0.000056069000000,0.000022701000000,0.000061204000000,0.000184464000000,0.000043427000000,0.000243723000000,0.000060415000000,0.000077797000000,0.000631673000000,0.000181303000000,0.000483920000000 +0.000030785000000,0.000035131000000,0.000020133500000,0.000068315000000,0.000033945000000,0.000064760000000,0.000075427000000,0.000020528000000,0.000061205000000,0.000166686000000,0.000057649000000,0.000179723000000,0.000061995000000,0.000062785000000,0.000730834000000,0.000212513000000,0.000539624000000 +0.000030390000000,0.000036711000000,0.000020133500000,0.000067921000000,0.000035130000000,0.000064365000000,0.000057254000000,0.000020725500000,0.000063575000000,0.000190390000000,0.000044611000000,0.000175773000000,0.000062785000000,0.000080167000000,0.000613896000000,0.000196710000000,0.000518685000000 +0.000031180000000,0.000035920000000,0.000020133500000,0.000208563000000,0.000032760000000,0.000066736000000,0.000056859000000,0.000039688500000,0.000062389000000,0.000184464000000,0.000043427000000,0.000159575000000,0.000061600000000,0.000061994000000,0.000596512000000,0.000197106000000,0.000486686000000 +0.000030390000000,0.000037106000000,0.000018750500000,0.000082143000000,0.000032760000000,0.000122439000000,0.000056859000000,0.000021713500000,0.000102686000000,0.000165896000000,0.000044217000000,0.000174982000000,0.000061994000000,0.000065550000000,0.000679871000000,0.000212908000000,0.000530932000000 +0.000030785000000,0.000035526000000,0.000018948000000,0.000069106000000,0.000032760000000,0.000082933000000,0.000056464000000,0.000020331000000,0.000064365000000,0.000185254000000,0.000043426000000,0.000152069000000,0.000061994000000,0.000062389000000,0.000677500000000,0.000182093000000,0.000517896000000 +0.000029994000000,0.000035526000000,0.000020133500000,0.000068711000000,0.000033945000000,0.000063970000000,0.000056464000000,0.000020330500000,0.000063970000000,0.000184463000000,0.000043427000000,0.000179328000000,0.000061995000000,0.000063970000000,0.000598093000000,0.000181699000000,0.000485896000000 +0.000030390000000,0.000037105000000,0.000019343000000,0.000069106000000,0.000034736000000,0.000063970000000,0.000057254000000,0.000020330500000,0.000064365000000,0.000165501000000,0.000043427000000,0.000178142000000,0.000061995000000,0.000120464000000,0.000665254000000,0.000199871000000,0.000534093000000 +0.000031575000000,0.000035921000000,0.000020133000000,0.000102291000000,0.000032761000000,0.000065945000000,0.000056069000000,0.000021713000000,0.000061995000000,0.000186439000000,0.000043426000000,0.000158390000000,0.000060414000000,0.000063180000000,0.000627723000000,0.000182883000000,0.000485105000000 +0.000030390000000,0.000035921000000,0.000018948000000,0.000068710000000,0.000034340000000,0.000063970000000,0.000056069000000,0.000020528500000,0.000061599000000,0.000185254000000,0.000044612000000,0.000176958000000,0.000060415000000,0.000061994000000,0.000597303000000,0.000254785000000,0.000518290000000 +0.000033155000000,0.000035920000000,0.000018948000000,0.000067921000000,0.000034341000000,0.000063575000000,0.000060415000000,0.000022108500000,0.000063575000000,0.000165896000000,0.000044216000000,0.000176562000000,0.000060414000000,0.000064760000000,0.000943377000000,0.000183278000000,0.000517106000000 +0.000033550000000,0.000084118000000,0.000018750500000,0.000068711000000,0.000034340000000,0.000100710000000,0.000056464000000,0.000020923500000,0.000061995000000,0.000184859000000,0.000043032000000,0.000191970000000,0.000061994000000,0.000065550000000,0.000595327000000,0.000184464000000,0.000485105000000 +0.000031969000000,0.000035525000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000064365000000,0.000055674000000,0.000027837000000,0.000110192000000,0.000183673000000,0.000045007000000,0.000178933000000,0.000062785000000,0.000063970000000,0.000628908000000,0.000350785000000,0.000524611000000 +0.000029995000000,0.000035130000000,0.000018750500000,0.000069501000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000061599000000,0.000186834000000,0.000043821000000,0.000153649000000,0.000063180000000,0.000061994000000,0.000628118000000,0.000189205000000,0.000484315000000 +0.000032365000000,0.000035526000000,0.000019343000000,0.000069106000000,0.000068315000000,0.000067526000000,0.000056464000000,0.000021318000000,0.000064760000000,0.000184464000000,0.000043032000000,0.000174587000000,0.000061995000000,0.000082142000000,0.000596908000000,0.000180513000000,0.000536858000000 +0.000031180000000,0.000035921000000,0.000019145500000,0.000073451000000,0.000033155000000,0.000065945000000,0.000056464000000,0.000021713000000,0.000061205000000,0.000174192000000,0.000044217000000,0.000263871000000,0.000062390000000,0.000065156000000,0.000640760000000,0.000288365000000,0.000518686000000 +0.000031575000000,0.000035525000000,0.000018948000000,0.000120858000000,0.000033945000000,0.000065945000000,0.000056859000000,0.000021121000000,0.000064365000000,0.000159970000000,0.000043821000000,0.000157995000000,0.000067131000000,0.000065550000000,0.000628512000000,0.000180908000000,0.000483920000000 +0.000030390000000,0.000036315000000,0.000018948000000,0.000068316000000,0.000034341000000,0.000063970000000,0.000056464000000,0.000020528000000,0.000063970000000,0.000159970000000,0.000044217000000,0.000160365000000,0.000060415000000,0.000064365000000,0.000597303000000,0.000180908000000,0.000521451000000 +0.000031574000000,0.000036710000000,0.000018948000000,0.000067920000000,0.000033945000000,0.000065550000000,0.000056859000000,0.000020528000000,0.000064760000000,0.000175377000000,0.000043822000000,0.000176958000000,0.000061995000000,0.000064760000000,0.000593748000000,0.000198290000000,0.000484710000000 +0.000030390000000,0.000035921000000,0.000019540500000,0.000068711000000,0.000033155000000,0.000066340000000,0.000056464000000,0.000021911000000,0.000097550000000,0.000175772000000,0.000043426000000,0.000205797000000,0.000061599000000,0.000062390000000,0.000681846000000,0.000194340000000,0.000520661000000 +0.000030390000000,0.000051723000000,0.000021713000000,0.000069501000000,0.000033946000000,0.000064365000000,0.000056069000000,0.000020330500000,0.000061995000000,0.000180118000000,0.000077402000000,0.000166686000000,0.000060809000000,0.000063180000000,0.000628513000000,0.000182884000000,0.000519081000000 +0.000029994000000,0.000035525000000,0.000019540500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000061599000000,0.000161945000000,0.000044612000000,0.000176563000000,0.000062390000000,0.000062390000000,0.000596512000000,0.000200661000000,0.000484315000000 +0.000029995000000,0.000035526000000,0.000019935500000,0.000068711000000,0.000035130000000,0.000098735000000,0.000056859000000,0.000023491000000,0.000061995000000,0.000152069000000,0.000043427000000,0.000161550000000,0.000061995000000,0.000132710000000,0.000628117000000,0.000181698000000,0.000537649000000 +0.000030390000000,0.000035131000000,0.000019738000000,0.000137846000000,0.000033155000000,0.000065156000000,0.000056464000000,0.000020528000000,0.000064761000000,0.000173797000000,0.000045797000000,0.000506439000000,0.000061994000000,0.000064760000000,0.000677106000000,0.000193945000000,0.000535673000000 +0.000031179000000,0.000036315000000,0.000018948000000,0.000083723000000,0.000033155000000,0.000064365000000,0.000056069000000,0.000021713500000,0.000065156000000,0.000173797000000,0.000044612000000,0.000245303000000,0.000060414000000,0.000063575000000,0.000594143000000,0.000199476000000,0.000484710000000 +0.000030390000000,0.000035921000000,0.000035935500000,0.000068711000000,0.000034340000000,0.000063970000000,0.000056464000000,0.000022306000000,0.000063970000000,0.000187229000000,0.000043427000000,0.000201452000000,0.000063970000000,0.000063575000000,0.000628118000000,0.000198291000000,0.000534093000000 +0.000030785000000,0.000035920000000,0.000018750500000,0.000068315000000,0.000034341000000,0.000095970000000,0.000090834000000,0.000023096000000,0.000064760000000,0.000156414000000,0.000043031000000,0.000161945000000,0.000061600000000,0.000063575000000,0.000665648000000,0.000205402000000,0.000483130000000 +0.000031574000000,0.000035131000000,0.000019540500000,0.000068710000000,0.000032760000000,0.000063970000000,0.000056464000000,0.000021713500000,0.000093205000000,0.000156414000000,0.000043822000000,0.000158390000000,0.000060414000000,0.000063180000000,0.000613500000000,0.000189600000000,0.000532908000000 +0.000031575000000,0.000036316000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000063575000000,0.000056069000000,0.000021911000000,0.000065155000000,0.000245303000000,0.000043822000000,0.000173797000000,0.000062785000000,0.000062389000000,0.000595327000000,0.000182093000000,0.000483920000000 +0.000030390000000,0.000053698000000,0.000018750500000,0.000069501000000,0.000033550000000,0.000066341000000,0.000056464000000,0.000022503500000,0.000064365000000,0.000159574000000,0.000043426000000,0.000330637000000,0.000062784000000,0.000065945000000,0.000630093000000,0.000181303000000,0.000483921000000 +0.000031180000000,0.000035131000000,0.000018750500000,0.000123625000000,0.000033550000000,0.000063970000000,0.000057649000000,0.000022306000000,0.000065155000000,0.000173007000000,0.000044612000000,0.000164711000000,0.000061994000000,0.000063575000000,0.000638390000000,0.000238982000000,0.000603624000000 +0.000029995000000,0.000035525000000,0.000018750500000,0.000068710000000,0.000035130000000,0.000065945000000,0.000058834000000,0.000039096500000,0.000064365000000,0.000174587000000,0.000045402000000,0.000173797000000,0.000063179000000,0.000065156000000,0.000597303000000,0.000205007000000,0.000485500000000 +0.000029995000000,0.000036316000000,0.000019738000000,0.000069105000000,0.000032760000000,0.000063970000000,0.000056069000000,0.000022306000000,0.000063970000000,0.000299032000000,0.000044612000000,0.000209748000000,0.000062785000000,0.000064365000000,0.000630093000000,0.000215673000000,0.000519870000000 +0.000031970000000,0.000036315000000,0.000018750500000,0.000067920000000,0.000034341000000,0.000105056000000,0.000056859000000,0.000020528000000,0.000062390000000,0.000171427000000,0.000043822000000,0.000180118000000,0.000063575000000,0.000061995000000,0.000628117000000,0.000198686000000,0.000556612000000 +0.000029995000000,0.000035525000000,0.000019738000000,0.000069896000000,0.000069106000000,0.000078192000000,0.000077007000000,0.000021911000000,0.000076612000000,0.000173402000000,0.000045402000000,0.000175378000000,0.000060415000000,0.000063180000000,0.000594537000000,0.000202242000000,0.000484315000000 +0.000031180000000,0.000036316000000,0.000019343000000,0.000069106000000,0.000036711000000,0.000063575000000,0.000056859000000,0.000022306000000,0.000061994000000,0.000174587000000,0.000043427000000,0.000197501000000,0.000061994000000,0.000063575000000,0.000629698000000,0.000254389000000,0.000520266000000 +0.000030390000000,0.000035131000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000064365000000,0.000058439000000,0.000022503500000,0.000064365000000,0.000156810000000,0.000043822000000,0.000188019000000,0.000060020000000,0.000064760000000,0.000645500000000,0.000185254000000,0.000484711000000 +0.000031179000000,0.000035130000000,0.000018948000000,0.000069896000000,0.000033551000000,0.000066341000000,0.000056464000000,0.000020528000000,0.000063970000000,0.000174982000000,0.000043427000000,0.000152463000000,0.000063575000000,0.000103476000000,0.000594537000000,0.000180513000000,0.000511574000000 +0.000030785000000,0.000035130000000,0.000019540500000,0.000069105000000,0.000033156000000,0.000063970000000,0.000056464000000,0.000024479000000,0.000062389000000,0.000173797000000,0.000043427000000,0.000178537000000,0.000061995000000,0.000180908000000,0.000772710000000,0.000230686000000,0.000532117000000 +0.000031970000000,0.000035920000000,0.000019738000000,0.000068711000000,0.000033155000000,0.000065946000000,0.000056464000000,0.000020528500000,0.000061994000000,0.000174587000000,0.000083328000000,0.000211328000000,0.000079772000000,0.000116513000000,0.000628118000000,0.000192760000000,0.000484315000000 +0.000031575000000,0.000036316000000,0.000019343000000,0.000069501000000,0.000034341000000,0.000064760000000,0.000056069000000,0.000044627000000,0.000062390000000,0.000174982000000,0.000043427000000,0.000158785000000,0.000079773000000,0.000068711000000,0.000628117000000,0.000181698000000,0.000557006000000 +0.000031180000000,0.000038291000000,0.000019343000000,0.000067921000000,0.000033155000000,0.000093205000000,0.000057649000000,0.000022701000000,0.000063970000000,0.000173402000000,0.000043426000000,0.000177747000000,0.000063575000000,0.000063970000000,0.000598093000000,0.000235426000000,0.000518686000000 +0.000029995000000,0.000035130000000,0.000019738000000,0.000068316000000,0.000033155000000,0.000064365000000,0.000056463000000,0.000020725500000,0.000064760000000,0.000156414000000,0.000043427000000,0.000177748000000,0.000061600000000,0.000063575000000,0.000665253000000,0.000183674000000,0.000483920000000 +0.000031575000000,0.000035526000000,0.000018948000000,0.000068315000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000021713500000,0.000061995000000,0.000206982000000,0.000045007000000,0.000225155000000,0.000060415000000,0.000064760000000,0.000644315000000,0.000187229000000,0.000803130000000 +0.000030390000000,0.000035526000000,0.000019343000000,0.000069501000000,0.000104662000000,0.000065945000000,0.000056068000000,0.000020923500000,0.000061995000000,0.000173006000000,0.000043822000000,0.000193945000000,0.000060414000000,0.000061994000000,0.000628908000000,0.000272958000000,0.001355426000000 +0.000030390000000,0.000036315000000,0.000020133000000,0.000140612000000,0.000049352000000,0.000064365000000,0.000056463000000,0.000021516000000,0.000065550000000,0.000175377000000,0.000043822000000,0.000161945000000,0.000062785000000,0.000061995000000,0.000594932000000,0.000187229000000,0.000572414000000 +0.000031575000000,0.000035920000000,0.000019145500000,0.000071081000000,0.000048167000000,0.000064365000000,0.000078192000000,0.000021713000000,0.000078982000000,0.000173797000000,0.000043427000000,0.000185254000000,0.000061994000000,0.000064365000000,0.000630093000000,0.000181698000000,0.000754932000000 +0.000030390000000,0.000035525000000,0.000019145500000,0.000069105000000,0.000034736000000,0.000064365000000,0.000056463000000,0.000023688500000,0.000063970000000,0.000240563000000,0.000045007000000,0.000186439000000,0.000062785000000,0.000065550000000,0.000691327000000,0.000182093000000,0.000566093000000 +0.000030785000000,0.000035921000000,0.000019145500000,0.000069896000000,0.000032760000000,0.000083723000000,0.000056069000000,0.000020528500000,0.000064760000000,0.000160365000000,0.000063575000000,0.000168267000000,0.000062390000000,0.000064365000000,0.000594537000000,0.000186044000000,0.000484315000000 +0.000032760000000,0.000035525000000,0.000018750500000,0.000068315000000,0.000033550000000,0.000066735000000,0.000056859000000,0.000038701000000,0.000062390000000,0.000159969000000,0.000043822000000,0.000170242000000,0.000070686000000,0.000065155000000,0.000683426000000,0.000188809000000,0.000508809000000 +0.000030785000000,0.000036316000000,0.000019738000000,0.000067921000000,0.000033945000000,0.000063970000000,0.000058044000000,0.000022306000000,0.000062785000000,0.000176167000000,0.000044612000000,0.000187624000000,0.000061994000000,0.000080958000000,0.000628118000000,0.000193550000000,0.000518685000000 +0.000031575000000,0.000035526000000,0.000019343000000,0.000068711000000,0.000033156000000,0.000065946000000,0.000114933000000,0.000024479000000,0.000061600000000,0.000223575000000,0.000045402000000,0.000184464000000,0.000060019000000,0.000061995000000,0.000598488000000,0.000181303000000,0.000487081000000 +0.000031180000000,0.000035921000000,0.000020528000000,0.000136266000000,0.000034735000000,0.000065550000000,0.000059229000000,0.000021121000000,0.000061995000000,0.000180118000000,0.000043822000000,0.000178143000000,0.000062389000000,0.000065550000000,0.000594537000000,0.000184464000000,0.000548711000000 +0.000029995000000,0.000035130000000,0.000018948000000,0.000069105000000,0.000067526000000,0.000064365000000,0.000069896000000,0.000020528000000,0.000066340000000,0.000163131000000,0.000043822000000,0.000188414000000,0.000061994000000,0.000065155000000,0.000779426000000,0.000231476000000,0.000541599000000 +0.000030389000000,0.000035130000000,0.000020330500000,0.000069501000000,0.000033550000000,0.000065945000000,0.000057254000000,0.000022108500000,0.000062390000000,0.000152859000000,0.000046192000000,0.000171427000000,0.000061995000000,0.000063575000000,0.000629303000000,0.000199476000000,0.000485500000000 +0.000031180000000,0.000035920000000,0.000018750500000,0.000069501000000,0.000032760000000,0.000065945000000,0.000056859000000,0.000021911000000,0.000064365000000,0.000242537000000,0.000045007000000,0.000169451000000,0.000067130000000,0.000065155000000,0.000594932000000,0.000182489000000,0.000518686000000 +0.000033155000000,0.000054093000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000080957000000,0.000055673000000,0.000021516000000,0.000116514000000,0.000174192000000,0.000045007000000,0.000186044000000,0.000063179000000,0.000065155000000,0.000629698000000,0.000200661000000,0.000483920000000 +0.000031180000000,0.000035525000000,0.000019540500000,0.000067921000000,0.000033551000000,0.000066341000000,0.000125205000000,0.000020528000000,0.000061995000000,0.000173007000000,0.000043427000000,0.000178142000000,0.000060809000000,0.000098735000000,0.001284710000000,0.000182488000000,0.000517106000000 +0.000030389000000,0.000035526000000,0.000018948000000,0.000067920000000,0.000032760000000,0.000063575000000,0.000096760000000,0.000022701000000,0.000064760000000,0.000189994000000,0.000058834000000,0.000173007000000,0.000062390000000,0.000064365000000,0.000611525000000,0.000199476000000,0.000543179000000 +0.000030390000000,0.000035525000000,0.000019540500000,0.000086884000000,0.000034340000000,0.000064365000000,0.000060415000000,0.000020725500000,0.000064365000000,0.000156414000000,0.000043822000000,0.000167476000000,0.000062390000000,0.000062785000000,0.000672364000000,0.000229106000000,0.000485500000000 +0.000031575000000,0.000037106000000,0.000018750500000,0.000068711000000,0.000034340000000,0.000065155000000,0.000059229000000,0.000020923500000,0.000061995000000,0.000174983000000,0.000044217000000,0.000184068000000,0.000062785000000,0.000065550000000,0.000628908000000,0.000184858000000,0.000553847000000 +0.000029994000000,0.000035131000000,0.000020133000000,0.000069501000000,0.000033945000000,0.000082932000000,0.000060809000000,0.000022108500000,0.000061600000000,0.000160365000000,0.000044612000000,0.000170241000000,0.000063575000000,0.000062390000000,0.000597698000000,0.000186834000000,0.000484315000000 +0.000030785000000,0.000037106000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000068316000000,0.000080563000000,0.000021713500000,0.000061995000000,0.000242143000000,0.000045797000000,0.000175772000000,0.000060415000000,0.000062785000000,0.000679080000000,0.000180908000000,0.000486686000000 +0.000029994000000,0.000035920000000,0.000018750500000,0.000069501000000,0.000035921000000,0.000103476000000,0.000081353000000,0.000021911000000,0.000063575000000,0.000174192000000,0.000043427000000,0.000181698000000,0.000062785000000,0.000064365000000,0.000630093000000,0.000199476000000,0.000519476000000 +0.000030390000000,0.000035525000000,0.000020331000000,0.000069501000000,0.000047378000000,0.000069896000000,0.000092809000000,0.000021318500000,0.000062390000000,0.000174193000000,0.000043426000000,0.000186834000000,0.000060020000000,0.000065155000000,0.000594538000000,0.000182093000000,0.000631673000000 +0.000029994000000,0.000035921000000,0.000019935500000,0.000068315000000,0.000033155000000,0.000068316000000,0.000112167000000,0.000021713500000,0.000063575000000,0.000156019000000,0.000043427000000,0.000191180000000,0.000060019000000,0.000098735000000,0.000622982000000,0.000180118000000,0.000504464000000 +0.000030390000000,0.000056464000000,0.000019343000000,0.000067921000000,0.000032760000000,0.000067525000000,0.000092809000000,0.000020725500000,0.000063180000000,0.000210933000000,0.000046192000000,0.000221600000000,0.000076217000000,0.000063575000000,0.000628117000000,0.000196710000000,0.000708315000000 +0.000031180000000,0.000050143000000,0.000018948000000,0.000082537000000,0.000033550000000,0.000067921000000,0.000095970000000,0.000021713500000,0.000061995000000,0.000174587000000,0.000084513000000,0.000169451000000,0.000060414000000,0.000063180000000,0.000664858000000,0.000195921000000,0.000535673000000 +0.000031575000000,0.000036316000000,0.000020133000000,0.000068711000000,0.000033551000000,0.000064760000000,0.000059624000000,0.000039096000000,0.000061995000000,0.000156019000000,0.000043822000000,0.000185649000000,0.000061995000000,0.000065155000000,0.000596118000000,0.000199476000000,0.000485105000000 +0.000029994000000,0.000036710000000,0.000019738000000,0.000069105000000,0.000033550000000,0.000066340000000,0.000060019000000,0.000020726000000,0.000064760000000,0.000173797000000,0.000043427000000,0.000162340000000,0.000059625000000,0.000064760000000,0.000643526000000,0.000180909000000,0.000518291000000 +0.000031575000000,0.000035921000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000092809000000,0.000060020000000,0.000020726000000,0.000065155000000,0.000416365000000,0.000043427000000,0.000198686000000,0.000060414000000,0.000064760000000,0.000679871000000,0.000184859000000,0.000485896000000 +0.000030389000000,0.000035525000000,0.000018948000000,0.000069896000000,0.000033946000000,0.000065155000000,0.000060414000000,0.000021713000000,0.000099920000000,0.000199476000000,0.000043822000000,0.000190390000000,0.000060020000000,0.000080167000000,0.000594538000000,0.000197501000000,0.000484710000000 +0.000031180000000,0.000035525000000,0.000019145500000,0.000068711000000,0.000033945000000,0.000065550000000,0.000127969000000,0.000020330500000,0.000078193000000,0.000207773000000,0.000043821000000,0.000167476000000,0.000060810000000,0.000067920000000,0.000594142000000,0.000197501000000,0.000518686000000 +0.000031180000000,0.000035526000000,0.000019541000000,0.000068316000000,0.000033155000000,0.000063575000000,0.000056859000000,0.000022108000000,0.000063970000000,0.000173402000000,0.000043427000000,0.000188414000000,0.000061995000000,0.000069501000000,0.000682241000000,0.000180513000000,0.000484710000000 +0.000031575000000,0.000035130000000,0.000018750500000,0.000136266000000,0.000054094000000,0.000065550000000,0.000056859000000,0.000021120500000,0.000061994000000,0.000156810000000,0.000043427000000,0.000188809000000,0.000062390000000,0.000066735000000,0.000702389000000,0.000181698000000,0.000517896000000 +0.000031575000000,0.000039081000000,0.000020330500000,0.000068711000000,0.000032760000000,0.000063970000000,0.000070686000000,0.000021713500000,0.000063575000000,0.000174192000000,0.000043031000000,0.000167871000000,0.000061995000000,0.000069501000000,0.000707525000000,0.000185649000000,0.000485105000000 +0.000029995000000,0.000036316000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000022108500000,0.000063970000000,0.000228316000000,0.000058044000000,0.000189599000000,0.000061994000000,0.000067525000000,0.000596513000000,0.000196316000000,0.000483525000000 +0.000030390000000,0.000036315000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000123229000000,0.000056859000000,0.000020331000000,0.000062390000000,0.000176168000000,0.000044612000000,0.000163526000000,0.000060414000000,0.000066736000000,0.001252315000000,0.000196710000000,0.000518685000000 +0.000031180000000,0.000035526000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000064760000000,0.000056464000000,0.000022108500000,0.000065155000000,0.000173797000000,0.000044217000000,0.000185648000000,0.000063180000000,0.000066735000000,0.000617846000000,0.000201847000000,0.000486686000000 +0.000031180000000,0.000035920000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000022503500000,0.000064760000000,0.000157995000000,0.000043822000000,0.000176168000000,0.000061995000000,0.000069106000000,0.000649056000000,0.000199081000000,0.000518685000000 +0.000031574000000,0.000035131000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000022503500000,0.000064365000000,0.000193945000000,0.000044217000000,0.000167081000000,0.000062390000000,0.000065946000000,0.000629303000000,0.000182094000000,0.000483920000000 +0.000030390000000,0.000035525000000,0.000018948000000,0.000137056000000,0.000033155000000,0.000063575000000,0.000056464000000,0.000021318000000,0.000061600000000,0.000160365000000,0.000043426000000,0.000171031000000,0.000061994000000,0.000068710000000,0.000598093000000,0.000196711000000,0.000487871000000 +0.000030390000000,0.000035920000000,0.000019738000000,0.000067921000000,0.000033946000000,0.000063970000000,0.000057254000000,0.000020528000000,0.000064760000000,0.000175377000000,0.000043427000000,0.000188414000000,0.000062785000000,0.000068711000000,0.000664858000000,0.000182093000000,0.000562537000000 +0.000030390000000,0.000078588000000,0.000020133500000,0.000068711000000,0.000034735000000,0.000066340000000,0.000056859000000,0.000020528500000,0.000064365000000,0.000174982000000,0.000043426000000,0.000174587000000,0.000060810000000,0.000066340000000,0.000636019000000,0.000180908000000,0.000487475000000 +0.000031575000000,0.000035131000000,0.000020133000000,0.000069896000000,0.000033946000000,0.000063970000000,0.000056069000000,0.000022108500000,0.000061600000000,0.000213698000000,0.000043822000000,0.000167081000000,0.000061995000000,0.000065945000000,0.000633254000000,0.000195525000000,0.000553056000000 +0.000030784000000,0.000036315000000,0.000019738000000,0.000071081000000,0.000032760000000,0.000142982000000,0.000056464000000,0.000021120500000,0.000061994000000,0.000163130000000,0.000057649000000,0.000260710000000,0.000061994000000,0.000069105000000,0.000634439000000,0.000182093000000,0.000587427000000 +0.000029995000000,0.000038686000000,0.000019145500000,0.000069896000000,0.000033155000000,0.000147328000000,0.000056464000000,0.000020528500000,0.000138242000000,0.000152464000000,0.000043427000000,0.000162340000000,0.000060019000000,0.000068711000000,0.000631673000000,0.000186439000000,0.000673155000000 +0.000031970000000,0.000035921000000,0.000020133500000,0.000068711000000,0.000035921000000,0.000069501000000,0.000056859000000,0.000031590000000,0.000130340000000,0.000174192000000,0.000043822000000,0.000161156000000,0.000061600000000,0.000066340000000,0.000631278000000,0.000187229000000,0.000484315000000 +0.000030390000000,0.000036711000000,0.000019343000000,0.000088069000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020331000000,0.000065945000000,0.000242933000000,0.000044217000000,0.000175377000000,0.000062785000000,0.000069106000000,0.000630488000000,0.000214488000000,0.000519081000000 +0.000031575000000,0.000035921000000,0.000018948000000,0.000068315000000,0.000033550000000,0.000120858000000,0.000056859000000,0.000020725500000,0.000061995000000,0.000173797000000,0.000043427000000,0.000381204000000,0.000061995000000,0.000068711000000,0.000631278000000,0.000180908000000,0.000484315000000 +0.000032760000000,0.000035920000000,0.000018948000000,0.000068316000000,0.000033551000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000064760000000,0.000156019000000,0.000043426000000,0.000177352000000,0.000060414000000,0.000067131000000,0.000667624000000,0.000198686000000,0.000667624000000 +0.000030390000000,0.000053304000000,0.000019738000000,0.000068711000000,0.000032760000000,0.000063575000000,0.000133501000000,0.000020923500000,0.000061600000000,0.000156414000000,0.000043032000000,0.000157600000000,0.000062390000000,0.000066340000000,0.000639180000000,0.000180118000000,0.000534884000000 +0.000031574000000,0.000035131000000,0.000018948000000,0.000068711000000,0.000032760000000,0.000063970000000,0.000154044000000,0.000021911000000,0.000095969000000,0.000189204000000,0.000043426000000,0.000207772000000,0.000061995000000,0.000069105000000,0.000631278000000,0.000183674000000,0.000483920000000 +0.000029995000000,0.000035526000000,0.000019145500000,0.000069106000000,0.000032760000000,0.000063970000000,0.000060414000000,0.000024281500000,0.000064365000000,0.000160365000000,0.000043822000000,0.000160365000000,0.000061600000000,0.000068316000000,0.000634043000000,0.000236217000000,0.000518686000000 +0.000030389000000,0.000035525000000,0.000019343000000,0.000069106000000,0.000033945000000,0.000063970000000,0.000057254000000,0.000020528000000,0.000061995000000,0.000173402000000,0.000043427000000,0.000164711000000,0.000060415000000,0.000067526000000,0.000669994000000,0.000199476000000,0.000520661000000 +0.000030390000000,0.000036315000000,0.000018947500000,0.000069105000000,0.000049352000000,0.000066735000000,0.000056859000000,0.000021516000000,0.000062390000000,0.000173797000000,0.000043822000000,0.000173797000000,0.000062390000000,0.000069105000000,0.000633253000000,0.000182489000000,0.000484711000000 +0.000030785000000,0.000035526000000,0.000019343000000,0.000099920000000,0.000033550000000,0.000065945000000,0.000055673000000,0.000021516000000,0.000061994000000,0.000173797000000,0.000043426000000,0.000209353000000,0.000060019000000,0.000066735000000,0.000619427000000,0.000231081000000,0.000517896000000 +0.000030389000000,0.000035131000000,0.000018948000000,0.000067921000000,0.000034736000000,0.000066341000000,0.000090439000000,0.000054701000000,0.000065946000000,0.000156810000000,0.000043427000000,0.000178933000000,0.000060019000000,0.000067131000000,0.000627722000000,0.000187625000000,0.000487081000000 +0.000031180000000,0.000036316000000,0.000019540500000,0.000067921000000,0.000033550000000,0.000065155000000,0.000056068000000,0.000028429500000,0.000064760000000,0.000179723000000,0.000044217000000,0.000174587000000,0.000060809000000,0.000065946000000,0.000594142000000,0.000180513000000,0.000703575000000 +0.000031970000000,0.000036315000000,0.000018948000000,0.000069106000000,0.000033550000000,0.000063970000000,0.000057254000000,0.000027639500000,0.000065155000000,0.000174587000000,0.000045797000000,0.000159970000000,0.000060415000000,0.000066736000000,0.000596908000000,0.000214488000000,0.000572019000000 +0.000031575000000,0.000035525000000,0.000018948000000,0.000069105000000,0.000033946000000,0.000065156000000,0.000058044000000,0.000021516000000,0.000064761000000,0.000156019000000,0.000043822000000,0.000175377000000,0.000061600000000,0.000066341000000,0.000630883000000,0.000182093000000,0.000484711000000 +0.000363822000000,0.000036315000000,0.000018947500000,0.000069106000000,0.000035130000000,0.000063970000000,0.000056464000000,0.000023491000000,0.000061995000000,0.000174587000000,0.000043822000000,0.000152858000000,0.000061600000000,0.000068711000000,0.000629302000000,0.000182093000000,0.000550685000000 +0.000029995000000,0.000035921000000,0.000019343000000,0.000068710000000,0.000033155000000,0.000064365000000,0.000056859000000,0.000020923500000,0.000061994000000,0.000174193000000,0.000043821000000,0.000179723000000,0.000060414000000,0.000066340000000,0.000598488000000,0.000223179000000,0.000569649000000 +0.000030389000000,0.000035130000000,0.000019145500000,0.000142588000000,0.000033946000000,0.000064365000000,0.000056859000000,0.000020330500000,0.000061995000000,0.000161550000000,0.000043427000000,0.000178537000000,0.000060415000000,0.000068315000000,0.000626932000000,0.000180908000000,0.000483526000000 +0.000031180000000,0.000035130000000,0.000019145500000,0.000210143000000,0.000034735000000,0.000065155000000,0.000056069000000,0.000020331000000,0.000061995000000,0.000176168000000,0.000090834000000,0.000158784000000,0.000061995000000,0.000069105000000,0.000777056000000,0.000194340000000,0.000579130000000 +0.000031180000000,0.000035920000000,0.000018948000000,0.000073451000000,0.000054883000000,0.000066340000000,0.000075821000000,0.000027836500000,0.000061600000000,0.000193550000000,0.000043427000000,0.000177747000000,0.000061995000000,0.000067526000000,0.000728068000000,0.000236216000000,0.000613105000000 +0.000029599000000,0.000035920000000,0.000020133000000,0.000068316000000,0.000034735000000,0.000064365000000,0.000057254000000,0.000021911000000,0.000061995000000,0.000157204000000,0.000045797000000,0.000177748000000,0.000061995000000,0.000069501000000,0.000597303000000,0.000181698000000,0.000498933000000 +0.000030390000000,0.000035131000000,0.000018750500000,0.000069106000000,0.000034341000000,0.000065945000000,0.000056859000000,0.000020330500000,0.000103081000000,0.000259131000000,0.000043427000000,0.000177748000000,0.000061205000000,0.000068711000000,0.000629303000000,0.000198290000000,0.000567673000000 +0.000031180000000,0.000035131000000,0.000020528000000,0.000088464000000,0.000035130000000,0.000065551000000,0.000056069000000,0.000021911000000,0.000062390000000,0.000173402000000,0.000045402000000,0.000179327000000,0.000062390000000,0.000065945000000,0.000641154000000,0.000228710000000,0.000553846000000 +0.000031180000000,0.000035921000000,0.000019343000000,0.000070291000000,0.000033551000000,0.000063970000000,0.000056464000000,0.000021516000000,0.000061995000000,0.000176168000000,0.000043821000000,0.000152859000000,0.000061994000000,0.000069106000000,0.000594537000000,0.000184463000000,0.000484315000000 +0.000030389000000,0.000086094000000,0.000019343000000,0.000068710000000,0.000034340000000,0.000065946000000,0.000056859000000,0.000020330500000,0.000061204000000,0.000174192000000,0.000043822000000,0.000173402000000,0.000061994000000,0.000066735000000,0.000669204000000,0.000180513000000,0.000571229000000 +0.000045402000000,0.000035921000000,0.000020330500000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056859000000,0.000021911000000,0.000061994000000,0.000191575000000,0.000044217000000,0.000199872000000,0.000060414000000,0.000088859000000,0.000771130000000,0.000221599000000,0.000484710000000 +0.000030390000000,0.000037106000000,0.000018750500000,0.000069896000000,0.000033945000000,0.000085699000000,0.000055673000000,0.000020331000000,0.000061600000000,0.000161155000000,0.000043426000000,0.000157995000000,0.000060415000000,0.000066341000000,0.000636019000000,0.000186439000000,0.000497748000000 +0.000029995000000,0.000035526000000,0.000020133000000,0.000068316000000,0.000033155000000,0.000065945000000,0.000056859000000,0.000020133000000,0.000065945000000,0.000159575000000,0.000043427000000,0.000159970000000,0.000060414000000,0.000066340000000,0.000597698000000,0.000182094000000,0.000824858000000 +0.000029995000000,0.000035525000000,0.000018948000000,0.000067921000000,0.000033155000000,0.000063970000000,0.000098341000000,0.000020923500000,0.000061995000000,0.000175773000000,0.000046192000000,0.000176562000000,0.000061995000000,0.000065945000000,0.000594933000000,0.000214093000000,0.000575970000000 +0.000029994000000,0.000035130000000,0.000019145500000,0.000068711000000,0.000033156000000,0.000064365000000,0.000056464000000,0.000021713500000,0.000065550000000,0.000209747000000,0.000044612000000,0.000206982000000,0.000062785000000,0.000067130000000,0.000631673000000,0.000180908000000,0.000487081000000 +0.000031575000000,0.000035131000000,0.000018750500000,0.000102686000000,0.000034340000000,0.000064365000000,0.000056464000000,0.000024084000000,0.000061995000000,0.000180118000000,0.000043427000000,0.000167871000000,0.000060415000000,0.000068315000000,0.000662488000000,0.000178538000000,0.000517895000000 +0.000031575000000,0.000035921000000,0.000019145500000,0.000069106000000,0.000035130000000,0.000065550000000,0.000056463000000,0.000020528000000,0.000063574000000,0.000162735000000,0.000043821000000,0.000177353000000,0.000061995000000,0.000068316000000,0.000596513000000,0.000181303000000,0.000518686000000 +0.000030389000000,0.000035526000000,0.000018750000000,0.000068711000000,0.000034340000000,0.000064761000000,0.000056859000000,0.000021911000000,0.000064365000000,0.000152069000000,0.000043427000000,0.000162340000000,0.000061600000000,0.000067131000000,0.000760068000000,0.000180118000000,0.000485501000000 +0.000030785000000,0.000050933000000,0.000019343000000,0.000068710000000,0.000033156000000,0.000092809000000,0.000056463000000,0.000022306000000,0.000061995000000,0.000188019000000,0.000044217000000,0.000192760000000,0.000061995000000,0.000069501000000,0.000677500000000,0.000183279000000,0.000518686000000 +0.000030390000000,0.000035131000000,0.000020133500000,0.000069105000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000021911000000,0.000061599000000,0.000173797000000,0.000044612000000,0.000174982000000,0.000060809000000,0.000065946000000,0.000664463000000,0.000178933000000,0.000484710000000 +0.000031575000000,0.000035526000000,0.000019145000000,0.000068316000000,0.000034340000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000061995000000,0.000173402000000,0.000043427000000,0.000167476000000,0.000062784000000,0.000066736000000,0.000594537000000,0.000182093000000,0.000530932000000 +0.000029995000000,0.000036316000000,0.000019936000000,0.000067921000000,0.000034340000000,0.000064365000000,0.000070291000000,0.000022898500000,0.000098340000000,0.000156810000000,0.000043822000000,0.000161945000000,0.000061994000000,0.000068316000000,0.000664859000000,0.000181303000000,0.000517105000000 +0.000029995000000,0.000035921000000,0.000018948000000,0.000068710000000,0.000033550000000,0.000063575000000,0.000056859000000,0.000022701000000,0.000061599000000,0.000170241000000,0.000077007000000,0.000206983000000,0.000060414000000,0.000068315000000,0.000665254000000,0.000179723000000,0.000484710000000 +0.000031575000000,0.000035526000000,0.000020528000000,0.000068710000000,0.000033946000000,0.000063970000000,0.000057253000000,0.000056084000000,0.000061600000000,0.000175377000000,0.000044611000000,0.000174192000000,0.000061994000000,0.000067130000000,0.000596513000000,0.000237402000000,0.000517501000000 +0.000031180000000,0.000034736000000,0.000018750000000,0.000069106000000,0.000033945000000,0.000065945000000,0.000057253000000,0.000021713500000,0.000063575000000,0.000159970000000,0.000043426000000,0.000159970000000,0.000062389000000,0.000069501000000,0.000611920000000,0.000182093000000,0.000484315000000 +0.000029995000000,0.000035526000000,0.000019343000000,0.000069106000000,0.000054094000000,0.000065945000000,0.000056464000000,0.000020528000000,0.000061994000000,0.000174587000000,0.000043427000000,0.000158785000000,0.000061994000000,0.000068710000000,0.000667624000000,0.000224759000000,0.000607179000000 +0.000030389000000,0.000035921000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000065551000000,0.000056858000000,0.000021713500000,0.000064365000000,0.000174982000000,0.000043822000000,0.000249649000000,0.000062390000000,0.000068315000000,0.000632464000000,0.000185649000000,0.000527772000000 +0.000029995000000,0.000055279000000,0.000019540500000,0.000069501000000,0.000033155000000,0.000064760000000,0.000056069000000,0.000021516000000,0.000065155000000,0.000174192000000,0.000043031000000,0.000175377000000,0.000061995000000,0.000067526000000,0.000596513000000,0.000181303000000,0.000483130000000 +0.000030390000000,0.000035131000000,0.000020528500000,0.000067921000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000020330500000,0.000065155000000,0.000156019000000,0.000043427000000,0.000179328000000,0.000061204000000,0.000066341000000,0.000960364000000,0.000237007000000,0.000575970000000 +0.000030390000000,0.000037106000000,0.000019540500000,0.000068316000000,0.000033550000000,0.000063970000000,0.000069896000000,0.000020528500000,0.000094390000000,0.000173007000000,0.000043822000000,0.000174587000000,0.000061995000000,0.000066341000000,0.000691722000000,0.000182489000000,0.000540809000000 +0.000031575000000,0.000036315000000,0.000019540500000,0.000102686000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000064365000000,0.000174192000000,0.000043427000000,0.000186834000000,0.000061995000000,0.000068711000000,0.000645500000000,0.000181699000000,0.000486686000000 +0.000030390000000,0.000036316000000,0.000019145500000,0.000069105000000,0.000033155000000,0.000065155000000,0.000056069000000,0.000021516000000,0.000062390000000,0.000156019000000,0.000043032000000,0.000174982000000,0.000061994000000,0.000068316000000,0.000596908000000,0.000223970000000,0.000530933000000 +0.000029994000000,0.000035921000000,0.000019145500000,0.000069501000000,0.000033946000000,0.000066340000000,0.000056859000000,0.000030207500000,0.000064365000000,0.000174982000000,0.000044216000000,0.000152859000000,0.000060414000000,0.000065946000000,0.000594538000000,0.000194735000000,0.000484315000000 +0.000030785000000,0.000036315000000,0.000020331000000,0.000068711000000,0.000034340000000,0.000063970000000,0.000056464000000,0.000020330500000,0.000061600000000,0.000173797000000,0.000043822000000,0.000198291000000,0.000062390000000,0.000101106000000,0.000666834000000,0.000181698000000,0.000519871000000 +0.000029995000000,0.000036711000000,0.000018948000000,0.000068710000000,0.000033946000000,0.000103081000000,0.000057254000000,0.000020330500000,0.000061994000000,0.000156415000000,0.000045007000000,0.000228711000000,0.000060415000000,0.000066735000000,0.000627722000000,0.000258340000000,0.000518686000000 +0.000031575000000,0.000035131000000,0.000019738000000,0.000068710000000,0.000032760000000,0.000066340000000,0.000056069000000,0.000021911000000,0.000061600000000,0.000175377000000,0.000043032000000,0.000158784000000,0.000061995000000,0.000069501000000,0.000594932000000,0.000180118000000,0.000485896000000 +0.000029995000000,0.000035526000000,0.000018948000000,0.000068316000000,0.000033945000000,0.000064365000000,0.000058044000000,0.000020528500000,0.000076217000000,0.000174192000000,0.000044612000000,0.000177353000000,0.000061995000000,0.000067130000000,0.000957204000000,0.000179723000000,0.000518686000000 +0.000031180000000,0.000049352000000,0.000019145500000,0.000068316000000,0.000034735000000,0.000063970000000,0.000095970000000,0.000021911000000,0.000062389000000,0.000176167000000,0.000043822000000,0.000210538000000,0.000061994000000,0.000066340000000,0.000629697000000,0.000214883000000,0.000483920000000 +0.000033945000000,0.000036316000000,0.000019343000000,0.000101896000000,0.000034340000000,0.000064365000000,0.000070291000000,0.000020923000000,0.000064365000000,0.000174588000000,0.000043427000000,0.000158390000000,0.000061994000000,0.000069896000000,0.000628513000000,0.000178143000000,0.000519080000000 +0.000031179000000,0.000035920000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000063970000000,0.000055674000000,0.000020133000000,0.000063575000000,0.000173402000000,0.000045402000000,0.000178538000000,0.000062784000000,0.000069896000000,0.000594143000000,0.000186439000000,0.000589401000000 +0.000030390000000,0.000036315000000,0.000018948000000,0.000069106000000,0.000032760000000,0.000065550000000,0.000056464000000,0.000020528000000,0.000061995000000,0.000176167000000,0.000043427000000,0.000153254000000,0.000060019000000,0.000066340000000,0.000628513000000,0.000254390000000,0.000561352000000 +0.000031180000000,0.000036315000000,0.000019145500000,0.000068710000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000021516000000,0.000061995000000,0.000243327000000,0.000063180000000,0.000207772000000,0.000061995000000,0.000066340000000,0.000681846000000,0.000182094000000,0.000983673000000 +0.000031970000000,0.000035526000000,0.000041269000000,0.000069106000000,0.000033551000000,0.000077797000000,0.000056464000000,0.000029022000000,0.000061600000000,0.000158389000000,0.000043821000000,0.000165501000000,0.000060415000000,0.000069501000000,0.000625747000000,0.000187229000000,0.000580315000000 +0.000031575000000,0.000035525000000,0.000018948000000,0.000069106000000,0.000034735000000,0.000063970000000,0.000127180000000,0.000020923500000,0.000101896000000,0.000160365000000,0.000043822000000,0.000157994000000,0.000060414000000,0.000065945000000,0.000594932000000,0.000218834000000,0.000723327000000 +0.000030785000000,0.000035130000000,0.000018948000000,0.000068316000000,0.000033550000000,0.000064365000000,0.000070291000000,0.000020725500000,0.000061995000000,0.000160365000000,0.000043427000000,0.000159575000000,0.000060415000000,0.000065945000000,0.000631673000000,0.000178933000000,0.000595722000000 +0.000030389000000,0.000035526000000,0.000018553000000,0.000067921000000,0.000033550000000,0.000065945000000,0.000056859000000,0.000022108500000,0.000065550000000,0.000300217000000,0.000043822000000,0.000209748000000,0.000062785000000,0.000065946000000,0.000628513000000,0.000182884000000,0.000741105000000 +0.000029995000000,0.000035525000000,0.000020726000000,0.000068711000000,0.000053698000000,0.000065945000000,0.000076612000000,0.000021713500000,0.000065155000000,0.000195130000000,0.000044612000000,0.000173797000000,0.000060019000000,0.000066340000000,0.000696068000000,0.000250834000000,0.000486686000000 +0.000030785000000,0.000036316000000,0.000019935500000,0.000068710000000,0.000047773000000,0.000064365000000,0.000070686000000,0.000020330500000,0.000063970000000,0.000179723000000,0.000044217000000,0.000167871000000,0.000102291000000,0.000063179000000,0.000676710000000,0.000198291000000,0.000535674000000 +0.000029994000000,0.000035131000000,0.000019738000000,0.000069105000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020331000000,0.000062389000000,0.000213304000000,0.000043426000000,0.000177748000000,0.000080167000000,0.000098735000000,0.000630883000000,0.000181698000000,0.000528957000000 +0.000030390000000,0.000036710000000,0.000037120500000,0.000069105000000,0.000035130000000,0.000066340000000,0.000056464000000,0.000021713500000,0.000061205000000,0.000152069000000,0.000043822000000,0.000310093000000,0.000077797000000,0.000064760000000,0.000629698000000,0.000212908000000,0.000486686000000 +0.000030389000000,0.000036316000000,0.000021318500000,0.000070686000000,0.000033156000000,0.000066340000000,0.000056464000000,0.000020726000000,0.000064365000000,0.000173402000000,0.000045007000000,0.000159575000000,0.000060415000000,0.000062390000000,0.000594538000000,0.000181303000000,0.000518686000000 +0.000031180000000,0.000035920000000,0.000019145500000,0.000069105000000,0.000033155000000,0.000063970000000,0.000076217000000,0.000021713500000,0.000129550000000,0.000174587000000,0.000057254000000,0.000175377000000,0.000061995000000,0.000065155000000,0.000628512000000,0.000199871000000,0.000484315000000 +0.000032760000000,0.000035920000000,0.000018750500000,0.000067921000000,0.000035130000000,0.000066341000000,0.000056858000000,0.000022898500000,0.000064365000000,0.000206982000000,0.000043031000000,0.000201056000000,0.000061600000000,0.000063179000000,0.000653401000000,0.000251229000000,0.000526192000000 +0.000030390000000,0.000035920000000,0.000018948000000,0.000107822000000,0.000034735000000,0.000064760000000,0.000057253000000,0.000022305500000,0.000064760000000,0.000156020000000,0.000043427000000,0.000161945000000,0.000060019000000,0.000062389000000,0.000594933000000,0.000186044000000,0.000568068000000 +0.000031179000000,0.000035130000000,0.000020133500000,0.000068711000000,0.000033155000000,0.000064760000000,0.000056859000000,0.000022306000000,0.000061599000000,0.000156414000000,0.000043427000000,0.000157994000000,0.000063575000000,0.000062784000000,0.000627722000000,0.000186438000000,0.000484711000000 +0.000029994000000,0.000065550000000,0.000019540500000,0.000069896000000,0.000033550000000,0.000063970000000,0.000055673000000,0.000022306000000,0.000064760000000,0.000212513000000,0.000043426000000,0.000173797000000,0.000061599000000,0.000062784000000,0.000629698000000,0.000217253000000,0.000517105000000 +0.000030785000000,0.000036711000000,0.000018948000000,0.000069896000000,0.000066735000000,0.000063575000000,0.000056464000000,0.000022108500000,0.000061995000000,0.000159970000000,0.000043427000000,0.000193550000000,0.000060019000000,0.000105057000000,0.000597303000000,0.000194736000000,0.000522636000000 +0.000031970000000,0.000035525000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000098340000000,0.000056464000000,0.000021911000000,0.000061995000000,0.000173401000000,0.000043427000000,0.000165105000000,0.000061995000000,0.000064760000000,0.000633648000000,0.000199081000000,0.000486290000000 +0.000029994000000,0.000036710000000,0.000019145500000,0.000068710000000,0.000033946000000,0.000063970000000,0.000056859000000,0.000023491000000,0.000098735000000,0.000173797000000,0.000045007000000,0.000171427000000,0.000063180000000,0.000064760000000,0.000732808000000,0.000268216000000,0.000518686000000 +0.000030390000000,0.000036316000000,0.000019540500000,0.000069105000000,0.000032760000000,0.000063970000000,0.000055674000000,0.000021713500000,0.000062390000000,0.000174587000000,0.000045007000000,0.000176168000000,0.000062390000000,0.000062390000000,0.000643525000000,0.000181303000000,0.000483921000000 +0.000030390000000,0.000036711000000,0.000018750500000,0.000068710000000,0.000033945000000,0.000065550000000,0.000089649000000,0.000025861500000,0.000061994000000,0.000171427000000,0.000043427000000,0.000211328000000,0.000061995000000,0.000063180000000,0.000594537000000,0.000181698000000,0.000557006000000 +0.000031575000000,0.000036315000000,0.000019738000000,0.000080958000000,0.000033155000000,0.000064365000000,0.000057254000000,0.000030010000000,0.000064365000000,0.000179327000000,0.000045007000000,0.000175377000000,0.000062389000000,0.000065945000000,0.000628513000000,0.000215278000000,0.000669204000000 +0.000031575000000,0.000035526000000,0.000019145500000,0.000068711000000,0.000036710000000,0.000064760000000,0.000056859000000,0.000023689000000,0.000061995000000,0.000174192000000,0.000043427000000,0.000160365000000,0.000061994000000,0.000062390000000,0.000667229000000,0.000181698000000,0.000644710000000 +0.000029994000000,0.000035131000000,0.000019343000000,0.000068711000000,0.000032761000000,0.000063970000000,0.000055674000000,0.000029417000000,0.000061994000000,0.000189994000000,0.000043427000000,0.000174982000000,0.000061994000000,0.000064365000000,0.000598093000000,0.000197896000000,0.000484711000000 +0.000031574000000,0.000035920000000,0.000018948000000,0.000069501000000,0.000033550000000,0.000064365000000,0.000056859000000,0.000020726000000,0.000061995000000,0.000174982000000,0.000043822000000,0.000244118000000,0.000061995000000,0.000098736000000,0.000698833000000,0.000389896000000,0.000553451000000 +0.000029600000000,0.000035130000000,0.000019540500000,0.000068711000000,0.000033550000000,0.000100315000000,0.000056859000000,0.000022108500000,0.000065155000000,0.000173797000000,0.000043822000000,0.000195921000000,0.000061600000000,0.000063970000000,0.000764019000000,0.000197500000000,0.000577945000000 +0.000031180000000,0.000035921000000,0.000019738000000,0.000068710000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000020330500000,0.000062390000000,0.000156414000000,0.000043822000000,0.000178537000000,0.000062390000000,0.000065551000000,0.000628118000000,0.000216068000000,0.000765599000000 +0.000031180000000,0.000036711000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000063180000000,0.000056069000000,0.000022503500000,0.000064365000000,0.000210143000000,0.000044612000000,0.000158389000000,0.000060809000000,0.000063574000000,0.000594932000000,0.000179328000000,0.000501303000000 +0.000031180000000,0.000035920000000,0.000025861500000,0.000086488000000,0.000033155000000,0.000063574000000,0.000070291000000,0.000021911000000,0.000062389000000,0.000172612000000,0.000043427000000,0.000178538000000,0.000063575000000,0.000063575000000,0.000630883000000,0.000205402000000,0.000519081000000 +0.000030785000000,0.000035130000000,0.000019935500000,0.000084118000000,0.000053699000000,0.000066340000000,0.000056464000000,0.000020528500000,0.000064365000000,0.000156020000000,0.000043822000000,0.000177352000000,0.000060414000000,0.000064760000000,0.000630488000000,0.000221600000000,0.000483920000000 +0.000031970000000,0.000035130000000,0.000019145500000,0.000068711000000,0.000046588000000,0.000064365000000,0.000056464000000,0.000032182500000,0.000061995000000,0.000174192000000,0.000131130000000,0.000157995000000,0.000062390000000,0.000062390000000,0.000596118000000,0.000203032000000,0.000548315000000 +0.000030390000000,0.000035130000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000064365000000,0.000055673000000,0.000021120500000,0.000061994000000,0.000204612000000,0.000074637000000,0.000234637000000,0.000067526000000,0.000065155000000,0.000594932000000,0.000180513000000,0.000558587000000 +0.000030390000000,0.000035526000000,0.000019540500000,0.000069106000000,0.000034341000000,0.000067130000000,0.000056858000000,0.000022503500000,0.000061995000000,0.000174983000000,0.000058834000000,0.000153254000000,0.000062390000000,0.000065156000000,0.000670389000000,0.000218834000000,0.000513549000000 +0.000031180000000,0.000090440000000,0.000019343000000,0.000068711000000,0.000032760000000,0.000118094000000,0.000056859000000,0.000022701000000,0.000102291000000,0.000174193000000,0.000043427000000,0.000174587000000,0.000061600000000,0.000065550000000,0.000629698000000,0.000180513000000,0.000550291000000 +0.000029994000000,0.000035921000000,0.000018750500000,0.000068711000000,0.000034340000000,0.000066340000000,0.000057649000000,0.000022503500000,0.000063575000000,0.000157994000000,0.000045007000000,0.000165501000000,0.000063180000000,0.000063575000000,0.000601253000000,0.000196315000000,0.000549895000000 +0.000033155000000,0.000035130000000,0.000018750500000,0.000113748000000,0.000033945000000,0.000064365000000,0.000056068000000,0.000021911000000,0.000061599000000,0.000229105000000,0.000043821000000,0.000191970000000,0.000062390000000,0.000064365000000,0.000642735000000,0.000216859000000,0.000513155000000 +0.000033550000000,0.000035525000000,0.000018948000000,0.000068316000000,0.000033945000000,0.000065946000000,0.000077402000000,0.000022108500000,0.000064760000000,0.000160760000000,0.000043822000000,0.000159970000000,0.000061995000000,0.000064760000000,0.000647081000000,0.000181699000000,0.000540809000000 +0.000030390000000,0.000035526000000,0.000018750500000,0.000067920000000,0.000035131000000,0.000065550000000,0.000056068000000,0.000022306000000,0.000064365000000,0.000175377000000,0.000044217000000,0.000178142000000,0.000063180000000,0.000064365000000,0.000594933000000,0.000181698000000,0.000513944000000 +0.000029994000000,0.000035526000000,0.000036528000000,0.000068315000000,0.000032760000000,0.000063575000000,0.000056859000000,0.000022306000000,0.000062389000000,0.000174587000000,0.000086093000000,0.000173797000000,0.000061994000000,0.000064760000000,0.000632858000000,0.000220019000000,0.000515920000000 +0.000031575000000,0.000035131000000,0.000019738500000,0.000068711000000,0.000033550000000,0.000065155000000,0.000056069000000,0.000021120500000,0.000064365000000,0.000213698000000,0.000065550000000,0.000216859000000,0.000063180000000,0.000063575000000,0.000628117000000,0.000180908000000,0.000549106000000 +0.000030390000000,0.000035526000000,0.000018948000000,0.000069105000000,0.000033155000000,0.000099131000000,0.000056859000000,0.000021911000000,0.000063575000000,0.000163526000000,0.000043427000000,0.000176958000000,0.000061994000000,0.000065945000000,0.000596118000000,0.000197896000000,0.000514340000000 +0.000030390000000,0.000036315000000,0.000020133000000,0.000068710000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000020331000000,0.000088859000000,0.000152068000000,0.000045797000000,0.000162340000000,0.000062389000000,0.000063180000000,0.000594142000000,0.000253994000000,0.000515525000000 +0.000031575000000,0.000068315000000,0.000018750500000,0.000068711000000,0.000033550000000,0.000066341000000,0.000056859000000,0.000022108500000,0.000061995000000,0.000174192000000,0.000043822000000,0.000158785000000,0.000060809000000,0.000066736000000,0.000627723000000,0.000181698000000,0.000566488000000 +0.000031179000000,0.000035130000000,0.000018948000000,0.000103081000000,0.000033550000000,0.000064760000000,0.000056069000000,0.000021515500000,0.000064760000000,0.000207378000000,0.000045402000000,0.000242538000000,0.000062785000000,0.000065155000000,0.000698439000000,0.000181304000000,0.000514340000000 +0.000032365000000,0.000035131000000,0.000019738500000,0.000068710000000,0.000034340000000,0.000065945000000,0.000056859000000,0.000020528000000,0.000063970000000,0.000173402000000,0.000043426000000,0.000167081000000,0.000061995000000,0.000064365000000,0.000595328000000,0.000227131000000,0.000984858000000 +0.000030390000000,0.000035526000000,0.000018750500000,0.000067921000000,0.000033155000000,0.000063970000000,0.000057254000000,0.000022898500000,0.000065156000000,0.000156810000000,0.000043822000000,0.000180118000000,0.000062390000000,0.000062390000000,0.000628118000000,0.000179723000000,0.000658932000000 +0.000030389000000,0.000037105000000,0.000019145500000,0.000069501000000,0.000033550000000,0.000064760000000,0.000056859000000,0.000020528500000,0.000061995000000,0.000156019000000,0.000082143000000,0.000157995000000,0.000060414000000,0.000064760000000,0.000741500000000,0.000184463000000,0.000679475000000 +0.000031575000000,0.000035525000000,0.000019145500000,0.000069106000000,0.000068711000000,0.000065945000000,0.000056463000000,0.000030404500000,0.000061994000000,0.000208563000000,0.000091229000000,0.000235427000000,0.000062785000000,0.000083723000000,0.000594933000000,0.000214093000000,0.000514735000000 +0.000030390000000,0.000035130000000,0.000046207000000,0.000068711000000,0.000033946000000,0.000135871000000,0.000056464000000,0.000021713000000,0.000099921000000,0.000159575000000,0.000043427000000,0.000160365000000,0.000060415000000,0.000161946000000,0.000609945000000,0.000180908000000,0.000513945000000 +0.000030784000000,0.000036710000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000064365000000,0.000056069000000,0.000022503500000,0.000061995000000,0.000173797000000,0.000045402000000,0.000165105000000,0.000060809000000,0.000080563000000,0.000632463000000,0.000182883000000,0.000516710000000 +0.000029995000000,0.000035525000000,0.000019145500000,0.000068710000000,0.000035921000000,0.000063970000000,0.000056859000000,0.000040083500000,0.000061995000000,0.000174587000000,0.000043821000000,0.000193550000000,0.000063180000000,0.000065155000000,0.000673549000000,0.000201846000000,0.000514340000000 +0.000030785000000,0.000035131000000,0.000020133000000,0.000069106000000,0.000033155000000,0.000064365000000,0.000055674000000,0.000039491000000,0.000061599000000,0.000400957000000,0.000043427000000,0.000175773000000,0.000060414000000,0.000062785000000,0.000594537000000,0.000184069000000,0.000513945000000 +0.000030784000000,0.000036710000000,0.000019738000000,0.000068315000000,0.000033155000000,0.000063574000000,0.000058044000000,0.000041466500000,0.000066340000000,0.000174982000000,0.000043427000000,0.000179328000000,0.000060414000000,0.000065155000000,0.000676315000000,0.000179328000000,0.000517895000000 +0.000029995000000,0.000036315000000,0.000025466000000,0.000068316000000,0.000032365000000,0.000064365000000,0.000056464000000,0.000039491500000,0.000063180000000,0.000179723000000,0.000043821000000,0.000175772000000,0.000062785000000,0.000065155000000,0.000684216000000,0.000221204000000,0.000513945000000 +0.000029994000000,0.000035526000000,0.000018948000000,0.000068711000000,0.000033155000000,0.000065550000000,0.000056464000000,0.000040281000000,0.000065945000000,0.000174192000000,0.000043822000000,0.000233451000000,0.000060019000000,0.000064760000000,0.000652216000000,0.000186044000000,0.000526982000000 +0.000031180000000,0.000035526000000,0.000019935500000,0.000068711000000,0.000034736000000,0.000085303000000,0.000056068000000,0.000030799500000,0.000061995000000,0.000156020000000,0.000043427000000,0.000412809000000,0.000061599000000,0.000065550000000,0.000596512000000,0.000197501000000,0.000512760000000 +0.000031575000000,0.000036316000000,0.000019738500000,0.000069106000000,0.000033550000000,0.000067921000000,0.000056463000000,0.000020726000000,0.000079378000000,0.000174192000000,0.000043427000000,0.000186834000000,0.000061995000000,0.000062785000000,0.000663673000000,0.000214489000000,0.000513155000000 +0.000031575000000,0.000036315000000,0.000033170000000,0.000069106000000,0.000033945000000,0.000074241000000,0.000056858000000,0.000021120500000,0.000061994000000,0.000193945000000,0.000043822000000,0.000179328000000,0.000063180000000,0.000065550000000,0.000667624000000,0.000181303000000,0.000549896000000 +0.000065155000000,0.000035920000000,0.000018948000000,0.000103081000000,0.000032760000000,0.000070291000000,0.000057253000000,0.000022108000000,0.000064365000000,0.000156020000000,0.000043427000000,0.000178143000000,0.000062785000000,0.000064760000000,0.000594933000000,0.000181303000000,0.000513155000000 +0.000048958000000,0.000036315000000,0.000019540500000,0.000068711000000,0.000033945000000,0.000068316000000,0.000055674000000,0.000020528500000,0.000064760000000,0.000175377000000,0.000043426000000,0.000157599000000,0.000061995000000,0.000063970000000,0.000660118000000,0.000234636000000,0.000548711000000 +0.000031970000000,0.000035526000000,0.000019145500000,0.000071476000000,0.000036316000000,0.000069106000000,0.000056859000000,0.000022701000000,0.000064760000000,0.000173007000000,0.000044217000000,0.000210933000000,0.000061994000000,0.000061995000000,0.000681846000000,0.000182093000000,0.000543574000000 +0.000031180000000,0.000049747000000,0.000018750500000,0.000068711000000,0.000033155000000,0.000068711000000,0.000090439000000,0.000020923500000,0.000061600000000,0.000190390000000,0.000043427000000,0.000177747000000,0.000061599000000,0.000096760000000,0.000783377000000,0.000180118000000,0.000483525000000 +0.000031180000000,0.000035921000000,0.000019738000000,0.000068316000000,0.000033155000000,0.000108217000000,0.000056464000000,0.000022108500000,0.000061994000000,0.000174982000000,0.000043822000000,0.000157995000000,0.000060415000000,0.000080168000000,0.000647476000000,0.000218834000000,0.000519081000000 +0.000029995000000,0.000035525000000,0.000019145500000,0.000068710000000,0.000033550000000,0.000064365000000,0.000055674000000,0.000021910500000,0.000078193000000,0.000173402000000,0.000043822000000,0.000180118000000,0.000061994000000,0.000065945000000,0.000594537000000,0.000180118000000,0.000484711000000 +0.000029994000000,0.000035526000000,0.000019145500000,0.000069106000000,0.000033945000000,0.000063969000000,0.000056859000000,0.000020725500000,0.000062784000000,0.000174587000000,0.000063575000000,0.000186834000000,0.000063575000000,0.000063970000000,0.000628512000000,0.000179723000000,0.000483920000000 +0.000031180000000,0.000035526000000,0.000019738000000,0.000069105000000,0.000033156000000,0.000063970000000,0.000057649000000,0.000023491500000,0.000064760000000,0.000247278000000,0.000043822000000,0.000174587000000,0.000061994000000,0.000063575000000,0.000630488000000,0.000180908000000,0.000555032000000 +0.000031575000000,0.000035526000000,0.000018948000000,0.000082538000000,0.000033550000000,0.000064365000000,0.000058044000000,0.000022898500000,0.000061599000000,0.000226735000000,0.000043427000000,0.000165896000000,0.000060415000000,0.000062784000000,0.000601253000000,0.000180513000000,0.000803920000000 +0.000030390000000,0.000047378000000,0.000029219500000,0.000069501000000,0.000033945000000,0.000063575000000,0.000056069000000,0.000022108500000,0.000064365000000,0.000159970000000,0.000043822000000,0.000157995000000,0.000060020000000,0.000065155000000,0.000627722000000,0.000182884000000,0.000534489000000 +0.000032365000000,0.000035920000000,0.000019343000000,0.000069106000000,0.000066341000000,0.000066341000000,0.000056859000000,0.000022108500000,0.000061994000000,0.000193550000000,0.000043821000000,0.000228711000000,0.000060414000000,0.000064365000000,0.000631673000000,0.000180513000000,0.000561747000000 +0.000030390000000,0.000035131000000,0.000020331000000,0.000068316000000,0.000033550000000,0.000064365000000,0.000056069000000,0.000020923000000,0.000064760000000,0.000175773000000,0.000043426000000,0.000176563000000,0.000060415000000,0.000098735000000,0.000594538000000,0.000182489000000,0.000519476000000 +0.000029994000000,0.000049748000000,0.000019738500000,0.000068711000000,0.000033946000000,0.000077402000000,0.000056464000000,0.000020528500000,0.000062390000000,0.000175377000000,0.000043031000000,0.000174192000000,0.000062784000000,0.000062389000000,0.000631673000000,0.000180118000000,0.000486686000000 +0.000031180000000,0.000035921000000,0.000020330500000,0.000070686000000,0.000034340000000,0.000065945000000,0.000055674000000,0.000038701000000,0.000061995000000,0.000180118000000,0.000043032000000,0.000167081000000,0.000060809000000,0.000064365000000,0.000678290000000,0.000198686000000,0.000518290000000 +0.000030390000000,0.000036315000000,0.000020133000000,0.000069501000000,0.000033550000000,0.000064365000000,0.000057254000000,0.000022503500000,0.000063575000000,0.000251229000000,0.000043427000000,0.000210538000000,0.000061600000000,0.000062390000000,0.000615476000000,0.000184069000000,0.000484316000000 +0.000030390000000,0.000035525000000,0.000018948000000,0.000137847000000,0.000033946000000,0.000065551000000,0.000056859000000,0.000020331000000,0.000063970000000,0.000152464000000,0.000043427000000,0.000161946000000,0.000062390000000,0.000064760000000,0.000594537000000,0.000184464000000,0.000519475000000 +0.000031180000000,0.000036711000000,0.000019738500000,0.000069501000000,0.000035526000000,0.000065550000000,0.000056463000000,0.000022108500000,0.000061205000000,0.000173797000000,0.000045007000000,0.000159575000000,0.000061600000000,0.000062785000000,0.000634439000000,0.000180513000000,0.000554636000000 +0.000029994000000,0.000035525000000,0.000019738000000,0.000069501000000,0.000033945000000,0.000063970000000,0.000055674000000,0.000020330500000,0.000064365000000,0.000174192000000,0.000043821000000,0.000176167000000,0.000060019000000,0.000066736000000,0.000686587000000,0.000183279000000,0.000502883000000 +0.000031180000000,0.000035921000000,0.000018948000000,0.000068315000000,0.000033550000000,0.000063970000000,0.000056464000000,0.000021516000000,0.000064760000000,0.000207377000000,0.000045007000000,0.000200662000000,0.000061994000000,0.000065550000000,0.000594143000000,0.000185649000000,0.000518291000000 +0.000030785000000,0.000035526000000,0.000029219500000,0.000068316000000,0.000033155000000,0.000067131000000,0.000057254000000,0.000021516000000,0.000061995000000,0.000156415000000,0.000045007000000,0.000161550000000,0.000061994000000,0.000133896000000,0.000664068000000,0.000181698000000,0.000483525000000 +0.000030785000000,0.000035525000000,0.000019738000000,0.000068711000000,0.000033550000000,0.000099130000000,0.000056859000000,0.000020726000000,0.000141797000000,0.000156414000000,0.000043427000000,0.000158389000000,0.000061995000000,0.000063575000000,0.000627723000000,0.000180118000000,0.000485106000000 +0.000031970000000,0.000068710000000,0.000018948000000,0.000069105000000,0.000033155000000,0.000064365000000,0.000056069000000,0.000022701000000,0.000170241000000,0.000174983000000,0.000044217000000,0.000174193000000,0.000061599000000,0.000063575000000,0.000595328000000,0.000180513000000,0.000517105000000 +0.000030785000000,0.000035131000000,0.000019343000000,0.000089254000000,0.000032760000000,0.000066736000000,0.000056859000000,0.000021911000000,0.000065550000000,0.000228710000000,0.000043822000000,0.000193945000000,0.000061995000000,0.000062390000000,0.000647081000000,0.000178933000000,0.000484315000000 +0.000031575000000,0.000035526000000,0.000018948000000,0.000069106000000,0.000034340000000,0.000064365000000,0.000056859000000,0.000065170000000,0.000062389000000,0.000174192000000,0.000044612000000,0.000165105000000,0.000060415000000,0.000065550000000,0.000632859000000,0.000196316000000,0.000520266000000 +0.000030390000000,0.000035526000000,0.000018948000000,0.000069106000000,0.000033155000000,0.000063970000000,0.000056859000000,0.000042059000000,0.000062390000000,0.000174587000000,0.000043822000000,0.000174193000000,0.000062784000000,0.000065155000000,0.000630488000000,0.000181698000000,0.000485105000000 +0.000031180000000,0.000035921000000,0.000018750500000,0.000069106000000,0.000033945000000,0.000063970000000,0.000056069000000,0.000022898500000,0.000064365000000,0.000174587000000,0.000092414000000,0.000176167000000,0.000061994000000,0.000062784000000,0.000596908000000,0.000182883000000,0.000483920000000 +0.000030390000000,0.000035131000000,0.000019145500000,0.000068711000000,0.000033946000000,0.000067131000000,0.000057649000000,0.000022898500000,0.000064760000000,0.000156020000000,0.000043822000000,0.000246489000000,0.000065946000000,0.000063180000000,0.000628117000000,0.000317599000000,0.000522242000000 +0.000030784000000,0.000035921000000,0.000020133000000,0.000068315000000,0.000033945000000,0.000079772000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000174192000000,0.000045007000000,0.000174192000000,0.000061994000000,0.000063180000000,0.000628118000000,0.000184068000000,0.000484711000000 +0.000031575000000,0.000035526000000,0.000018750500000,0.000068316000000,0.000033550000000,0.000063970000000,0.000090834000000,0.000020726000000,0.000061599000000,0.000174192000000,0.000046192000000,0.000160760000000,0.000061994000000,0.000064760000000,0.000596513000000,0.000182883000000,0.000520266000000 +0.000029995000000,0.000036315000000,0.000018948000000,0.000070291000000,0.000033551000000,0.000065550000000,0.000056859000000,0.000031985000000,0.000063970000000,0.000156020000000,0.000043427000000,0.000193945000000,0.000063180000000,0.000064365000000,0.000630093000000,0.000179328000000,0.000607574000000 +0.000029995000000,0.000035130000000,0.000018553000000,0.000137452000000,0.000033550000000,0.000065155000000,0.000056464000000,0.000021713500000,0.000061995000000,0.000187624000000,0.000043426000000,0.000152859000000,0.000066341000000,0.000063180000000,0.000643920000000,0.000181699000000,0.000483920000000 +0.000031180000000,0.000036316000000,0.000018750000000,0.000069106000000,0.000054883000000,0.000063970000000,0.000056464000000,0.000020725500000,0.000061994000000,0.000174192000000,0.000044612000000,0.000180513000000,0.000074637000000,0.000064365000000,0.000599278000000,0.000182093000000,0.000519871000000 +0.000030390000000,0.000035920000000,0.000018750000000,0.000068710000000,0.000033945000000,0.000063970000000,0.000058044000000,0.000020923500000,0.000063575000000,0.000156414000000,0.000044612000000,0.000178538000000,0.000061995000000,0.000064760000000,0.000649846000000,0.000180908000000,0.000484315000000 +0.000031180000000,0.000048958000000,0.000018948000000,0.000069105000000,0.000034340000000,0.000066736000000,0.000056069000000,0.000020528000000,0.000095575000000,0.000208958000000,0.000043427000000,0.000192365000000,0.000061995000000,0.000062390000000,0.000628512000000,0.000184463000000,0.000553451000000 +0.000031180000000,0.000035921000000,0.000018948000000,0.000068710000000,0.000033945000000,0.000063575000000,0.000057649000000,0.000020330500000,0.000065155000000,0.000174192000000,0.000078192000000,0.000177747000000,0.000060414000000,0.000081748000000,0.000681056000000,0.000184859000000,0.000518291000000 +0.000029995000000,0.000036316000000,0.000020133500000,0.000067921000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000021713500000,0.000061599000000,0.000156415000000,0.000045402000000,0.000177748000000,0.000061994000000,0.000063575000000,0.000596908000000,0.000185649000000,0.000483525000000 +0.000029995000000,0.000035921000000,0.000018948000000,0.000068316000000,0.000034735000000,0.000064365000000,0.000075822000000,0.000020528500000,0.000061600000000,0.000173797000000,0.000043032000000,0.000158389000000,0.000060019000000,0.000065155000000,0.000664463000000,0.000188414000000,0.000519080000000 +0.000029995000000,0.000035130000000,0.000019935500000,0.000088068000000,0.000035131000000,0.000066735000000,0.000098340000000,0.000021515500000,0.000061995000000,0.000242538000000,0.000045402000000,0.000258736000000,0.000060414000000,0.000065551000000,0.000635624000000,0.000181303000000,0.000483525000000 +0.000031180000000,0.000035525000000,0.000019145500000,0.000069501000000,0.000034340000000,0.000065550000000,0.000060019000000,0.000035540500000,0.000064365000000,0.000174982000000,0.000043032000000,0.000233451000000,0.000063180000000,0.000063179000000,0.000594142000000,0.000184464000000,0.000497747000000 +0.000029995000000,0.000035130000000,0.000018948000000,0.000068711000000,0.000033946000000,0.000066735000000,0.000073451000000,0.000021713500000,0.000062389000000,0.000174192000000,0.000044612000000,0.000174587000000,0.000062389000000,0.000062389000000,0.000597303000000,0.000184069000000,0.000577945000000 +0.000029995000000,0.000036711000000,0.000020923500000,0.000068710000000,0.000034340000000,0.000064365000000,0.000057649000000,0.000021713500000,0.000061995000000,0.000157995000000,0.000043427000000,0.000240957000000,0.000063179000000,0.000066340000000,0.000685007000000,0.000184859000000,0.000485501000000 +0.000030390000000,0.000036316000000,0.000018947500000,0.000069500000000,0.000033945000000,0.000063575000000,0.000057254000000,0.000020331000000,0.000078587000000,0.000243723000000,0.000043426000000,0.000158389000000,0.000062389000000,0.000063970000000,0.000693302000000,0.000180118000000,0.000520661000000 +0.000029995000000,0.000034735000000,0.000019738500000,0.000068316000000,0.000032760000000,0.000065550000000,0.000056464000000,0.000020330500000,0.000083328000000,0.000160760000000,0.000043822000000,0.000159969000000,0.000060414000000,0.000083328000000,0.000598093000000,0.000182488000000,0.000550685000000 +0.000031575000000,0.000035130000000,0.000019145000000,0.000068316000000,0.000033155000000,0.000173797000000,0.000098341000000,0.000020528000000,0.000074636000000,0.000174982000000,0.000045797000000,0.000178142000000,0.000060019000000,0.000062785000000,0.000627328000000,0.000179723000000,0.000484710000000 +0.000029994000000,0.000035130000000,0.000018750500000,0.000069501000000,0.000033155000000,0.000200662000000,0.000056069000000,0.000021713000000,0.000065550000000,0.000174982000000,0.000079377000000,0.000207377000000,0.000061994000000,0.000063575000000,0.000685006000000,0.000194735000000,0.000528562000000 +0.000031575000000,0.000036711000000,0.000019145500000,0.000102686000000,0.000034340000000,0.000116118000000,0.000056069000000,0.000022305500000,0.000061995000000,0.000210538000000,0.000126390000000,0.000167081000000,0.000062785000000,0.000063970000000,0.000632463000000,0.000180118000000,0.000485106000000 +0.000031180000000,0.000035526000000,0.000019145500000,0.000068711000000,0.000035526000000,0.000198291000000,0.000057254000000,0.000020331000000,0.000061600000000,0.000162340000000,0.000060019000000,0.000175772000000,0.000061995000000,0.000062785000000,0.000610735000000,0.000182883000000,0.000553451000000 +0.000030389000000,0.000035921000000,0.000018750500000,0.000069106000000,0.000033550000000,0.000137056000000,0.000056464000000,0.000032775000000,0.000064760000000,0.000152069000000,0.000056463000000,0.000161945000000,0.000063180000000,0.000063180000000,0.000628512000000,0.000220810000000,0.000519476000000 +0.000030785000000,0.000036711000000,0.000019343000000,0.000069105000000,0.000033155000000,0.000069896000000,0.000056859000000,0.000022503500000,0.000097551000000,0.000173402000000,0.000044217000000,0.000206587000000,0.000061600000000,0.000065155000000,0.000811032000000,0.000182883000000,0.000484711000000 +0.000030390000000,0.000090044000000,0.000020133000000,0.000069106000000,0.000033551000000,0.000071871000000,0.000056464000000,0.000057466500000,0.000062390000000,0.000174192000000,0.000062785000000,0.000175772000000,0.000061994000000,0.000065550000000,0.000683822000000,0.000180118000000,0.000645500000000 +0.000031574000000,0.000052908000000,0.000034750500000,0.000068315000000,0.000033945000000,0.000072266000000,0.000056859000000,0.000020923000000,0.000064365000000,0.000173402000000,0.000044217000000,0.000167081000000,0.000061994000000,0.000102291000000,0.000594537000000,0.000215673000000,0.000504068000000 +0.000030785000000,0.000050933000000,0.000038701000000,0.000067921000000,0.000033550000000,0.000070686000000,0.000056464000000,0.000022108000000,0.000064365000000,0.000155624000000,0.000043426000000,0.000162340000000,0.000060414000000,0.000063575000000,0.000628908000000,0.000180908000000,0.000482735000000 +0.000030785000000,0.000035526000000,0.000020133000000,0.000067921000000,0.000101501000000,0.000070686000000,0.000116118000000,0.000021910500000,0.000064365000000,0.000156019000000,0.000043427000000,0.000203822000000,0.000061995000000,0.000061994000000,0.000680266000000,0.000188809000000,0.000554636000000 +0.000031180000000,0.000035921000000,0.000026849500000,0.000154044000000,0.000049747000000,0.000072267000000,0.000059229000000,0.000022701000000,0.000064760000000,0.000477204000000,0.000043426000000,0.000173797000000,0.000060809000000,0.000061995000000,0.000595327000000,0.000275327000000,0.000483526000000 +0.000031575000000,0.000037106000000,0.000018948000000,0.000083328000000,0.000035921000000,0.000070291000000,0.000060415000000,0.000022701000000,0.000064365000000,0.000188414000000,0.000043822000000,0.000160760000000,0.000062390000000,0.000063575000000,0.000627723000000,0.000181698000000,0.000484315000000 +0.000031970000000,0.000035130000000,0.000019145500000,0.000069105000000,0.000035130000000,0.000070291000000,0.000255180000000,0.000021121000000,0.000061600000000,0.000174192000000,0.000043427000000,0.000164710000000,0.000062785000000,0.000065946000000,0.000699623000000,0.000183673000000,0.000568858000000 +0.000030785000000,0.000035130000000,0.000019936000000,0.000069896000000,0.000034735000000,0.000073451000000,0.000116908000000,0.000022503500000,0.000092415000000,0.000223180000000,0.000044612000000,0.000455871000000,0.000062390000000,0.000064760000000,0.000682636000000,0.000262291000000,0.000484710000000 +0.000030390000000,0.000054488000000,0.000019738000000,0.000069106000000,0.000032760000000,0.000071871000000,0.000056068000000,0.000021121000000,0.000061994000000,0.000174192000000,0.000059624000000,0.000192365000000,0.000060020000000,0.000063970000000,0.000594932000000,0.000181698000000,0.000520266000000 +0.000030785000000,0.000035525000000,0.000019540500000,0.000069106000000,0.000033551000000,0.000081748000000,0.000056463000000,0.000020528000000,0.000062390000000,0.000189995000000,0.000071871000000,0.000178933000000,0.000082538000000,0.000063180000000,0.000696463000000,0.000180908000000,0.000508414000000 +0.000029995000000,0.000036316000000,0.000019540500000,0.000102291000000,0.000034340000000,0.000068316000000,0.000056859000000,0.000020726000000,0.000064365000000,0.000179328000000,0.000043822000000,0.000174587000000,0.000063575000000,0.000062785000000,0.000690933000000,0.000215279000000,0.000484710000000 +0.000031180000000,0.000035131000000,0.000019738500000,0.000068711000000,0.000033155000000,0.000069896000000,0.000057254000000,0.000020330500000,0.000061994000000,0.000174587000000,0.000043426000000,0.000159575000000,0.000061995000000,0.000062785000000,0.000629698000000,0.000181698000000,0.000520265000000 +0.000030784000000,0.000036316000000,0.000019343000000,0.000068710000000,0.000067131000000,0.000067920000000,0.000071476000000,0.000021713500000,0.000061205000000,0.000156019000000,0.000043822000000,0.000174587000000,0.000061995000000,0.000064760000000,0.000596513000000,0.000180908000000,0.000484710000000 +0.000029994000000,0.000035131000000,0.000019145500000,0.000069106000000,0.000033155000000,0.000067921000000,0.000056859000000,0.000020330500000,0.000064365000000,0.000221205000000,0.000043427000000,0.000186439000000,0.000061600000000,0.000062785000000,0.000671575000000,0.000231081000000,0.000799969000000 +0.000030390000000,0.000035131000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000068316000000,0.000057254000000,0.000020923500000,0.000098341000000,0.000173402000000,0.000043426000000,0.000179328000000,0.000062784000000,0.000062390000000,0.000667624000000,0.000181303000000,0.000562932000000 +0.000030785000000,0.000037105000000,0.000018948000000,0.000068711000000,0.000034735000000,0.000068710000000,0.000056859000000,0.000020528000000,0.000064365000000,0.000155624000000,0.000043427000000,0.000178932000000,0.000061600000000,0.000064761000000,0.000594142000000,0.000186044000000,0.000484315000000 +0.000059229000000,0.000035130000000,0.000019738000000,0.000069500000000,0.000033550000000,0.000104661000000,0.000055673000000,0.000038503500000,0.000061995000000,0.000175772000000,0.000043032000000,0.000157994000000,0.000060414000000,0.000063575000000,0.000613105000000,0.000216859000000,0.000483920000000 +0.000032365000000,0.000035526000000,0.000018948000000,0.000067921000000,0.000033550000000,0.000068316000000,0.000056464000000,0.000027244500000,0.000061599000000,0.000206982000000,0.000043426000000,0.000209748000000,0.000060415000000,0.000062784000000,0.000666044000000,0.000183279000000,0.000569648000000 +0.000031180000000,0.000036711000000,0.000018948000000,0.000135476000000,0.000035920000000,0.000069896000000,0.000056464000000,0.000021515500000,0.000064365000000,0.000156810000000,0.000078192000000,0.000177352000000,0.000061600000000,0.000065551000000,0.000664859000000,0.000183674000000,0.000483920000000 +0.000034340000000,0.000034736000000,0.000019936000000,0.000068316000000,0.000034341000000,0.000063970000000,0.000056859000000,0.000021121000000,0.000061995000000,0.000174587000000,0.000043822000000,0.000157995000000,0.000062390000000,0.000064760000000,0.000595328000000,0.000218439000000,0.000526982000000 +0.000031970000000,0.000035525000000,0.000018750500000,0.000070686000000,0.000033155000000,0.000063969000000,0.000055674000000,0.000020331000000,0.000065155000000,0.000173007000000,0.000045402000000,0.000179723000000,0.000062784000000,0.000062785000000,0.000819723000000,0.000189204000000,0.000517895000000 +0.000030390000000,0.000035130000000,0.000019540500000,0.000069501000000,0.000033155000000,0.000063970000000,0.000057649000000,0.000020330500000,0.000061994000000,0.000208563000000,0.000043427000000,0.000187229000000,0.000062389000000,0.000063575000000,0.000628117000000,0.000189204000000,0.000484316000000 +0.000031180000000,0.000035525000000,0.000018948000000,0.000069501000000,0.000033946000000,0.000067130000000,0.000056859000000,0.000022306000000,0.000079773000000,0.000174587000000,0.000043427000000,0.000174587000000,0.000061600000000,0.000062390000000,0.000629698000000,0.000221994000000,0.000520661000000 +0.000031970000000,0.000035921000000,0.000018948000000,0.000069106000000,0.000047378000000,0.000065550000000,0.000057254000000,0.000022108500000,0.000061994000000,0.000157995000000,0.000043032000000,0.000165106000000,0.000061995000000,0.000064365000000,0.000605994000000,0.000184069000000,0.000518686000000 +0.000031575000000,0.000035526000000,0.000019540500000,0.000069106000000,0.000033945000000,0.000066340000000,0.000099921000000,0.000021121000000,0.000064365000000,0.000159970000000,0.000043822000000,0.000157600000000,0.000066736000000,0.000065155000000,0.000628117000000,0.000180513000000,0.000483920000000 +0.000031574000000,0.000036711000000,0.000019145500000,0.000101896000000,0.000033550000000,0.000063970000000,0.000056859000000,0.000020725500000,0.000063575000000,0.000193155000000,0.000043426000000,0.000244118000000,0.000060019000000,0.000065550000000,0.000649846000000,0.000250834000000,0.000553056000000 +0.000030390000000,0.000037106000000,0.000041071500000,0.000069896000000,0.000035131000000,0.000066340000000,0.000056463000000,0.000028034500000,0.000064365000000,0.000175377000000,0.000043427000000,0.000176958000000,0.000061994000000,0.000064760000000,0.000594143000000,0.000182489000000,0.000484710000000 +0.000030785000000,0.000035526000000,0.000020133000000,0.000069106000000,0.000033550000000,0.000065946000000,0.000057254000000,0.000025861500000,0.000063180000000,0.000174983000000,0.000043426000000,0.000174587000000,0.000061994000000,0.000063970000000,0.000631278000000,0.000178538000000,0.000521056000000 +0.000029995000000,0.000035526000000,0.000021318500000,0.000069106000000,0.000034341000000,0.000065155000000,0.000056068000000,0.000020330500000,0.000061995000000,0.000180513000000,0.000056859000000,0.000167081000000,0.000060020000000,0.000062390000000,0.000662488000000,0.000216464000000,0.000520660000000 +0.000030390000000,0.000035526000000,0.000020133000000,0.000068711000000,0.000033155000000,0.000064760000000,0.000056464000000,0.000020331000000,0.000095575000000,0.000230291000000,0.000044612000000,0.000190389000000,0.000062785000000,0.000062785000000,0.000621797000000,0.000185649000000,0.000484315000000 +0.000030389000000,0.000035131000000,0.000019738000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000022108500000,0.000061995000000,0.000152464000000,0.000043427000000,0.000161551000000,0.000061994000000,0.000064365000000,0.000594932000000,0.000187230000000,0.000520266000000 +0.000029995000000,0.000035525000000,0.000019540500000,0.000069106000000,0.000032760000000,0.000103477000000,0.000056464000000,0.000020725500000,0.000063970000000,0.000173797000000,0.000046192000000,0.000160365000000,0.000114143000000,0.000064760000000,0.000628513000000,0.000212513000000,0.000484315000000 +0.000031970000000,0.000035130000000,0.000019540500000,0.000103081000000,0.000032760000000,0.000064760000000,0.000069501000000,0.000021713000000,0.000064365000000,0.000174192000000,0.000043822000000,0.000175377000000,0.000060414000000,0.000084119000000,0.000641155000000,0.000186834000000,0.000521056000000 +0.000029995000000,0.000035525000000,0.000019343000000,0.000069501000000,0.000064365000000,0.000063970000000,0.000056464000000,0.000022108000000,0.000064365000000,0.000173402000000,0.000043031000000,0.000167871000000,0.000061994000000,0.000134291000000,0.000595328000000,0.000181303000000,0.000519081000000 +0.000030785000000,0.000035525000000,0.000018948000000,0.000068316000000,0.000033550000000,0.000065155000000,0.000057649000000,0.000022701000000,0.000064365000000,0.000156019000000,0.000043427000000,0.000161155000000,0.000061995000000,0.000081353000000,0.000683032000000,0.000218439000000,0.000483130000000 +0.000031180000000,0.000035921000000,0.000020133000000,0.000068316000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000053515500000,0.000063970000000,0.000156019000000,0.000043032000000,0.000157600000000,0.000060415000000,0.000062784000000,0.000627723000000,0.000190390000000,0.000535278000000 +0.000029995000000,0.000055673000000,0.000019540500000,0.000069501000000,0.000033550000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000064760000000,0.000175772000000,0.000043427000000,0.000174192000000,0.000061995000000,0.000063180000000,0.000595328000000,0.000181698000000,0.000483525000000 +0.000029995000000,0.000035526000000,0.000018948000000,0.000070291000000,0.000033155000000,0.000065550000000,0.000056859000000,0.000021713500000,0.000079772000000,0.000173797000000,0.000043427000000,0.000250439000000,0.000061994000000,0.000065156000000,0.000629698000000,0.000200662000000,0.000517500000000 +0.000031179000000,0.000035526000000,0.000019145500000,0.000068711000000,0.000033550000000,0.000063970000000,0.000057254000000,0.000022306000000,0.000065945000000,0.000173797000000,0.000043427000000,0.000301797000000,0.000061994000000,0.000097155000000,0.000632068000000,0.000198686000000,0.000572019000000 +0.000030390000000,0.000035131000000,0.000018750500000,0.000068711000000,0.000033945000000,0.000093600000000,0.000056859000000,0.000024281000000,0.000064365000000,0.000174982000000,0.000045402000000,0.000221204000000,0.000062784000000,0.000065550000000,0.000596908000000,0.000187229000000,0.000485106000000 +0.000031575000000,0.000036316000000,0.000019935500000,0.000083328000000,0.000033155000000,0.000065155000000,0.000090044000000,0.000022108500000,0.000063970000000,0.000193945000000,0.000044612000000,0.000176562000000,0.000062785000000,0.000063180000000,0.000594537000000,0.000215279000000,0.000517895000000 +0.000030389000000,0.000035920000000,0.000018948000000,0.000067921000000,0.000034736000000,0.000064365000000,0.000056464000000,0.000020331000000,0.000061599000000,0.000156810000000,0.000043427000000,0.000179723000000,0.000062785000000,0.000062785000000,0.000645896000000,0.000180908000000,0.000487476000000 +0.000029995000000,0.000035130000000,0.000019541000000,0.000068710000000,0.000033155000000,0.000063970000000,0.000056858000000,0.000021713000000,0.000061995000000,0.000178933000000,0.000045402000000,0.000174982000000,0.000060415000000,0.000063180000000,0.000627723000000,0.000186439000000,0.000484711000000 +0.000031575000000,0.000035920000000,0.000018948000000,0.000068315000000,0.000052118000000,0.000063970000000,0.000056858000000,0.000023293500000,0.000061204000000,0.000173797000000,0.000043822000000,0.000237007000000,0.000061599000000,0.000062784000000,0.000596118000000,0.000255970000000,0.000545154000000 +0.000030390000000,0.000035526000000,0.000018948000000,0.000068711000000,0.000033156000000,0.000064365000000,0.000056069000000,0.000046602500000,0.000063970000000,0.000190390000000,0.000043822000000,0.000174587000000,0.000060415000000,0.000065550000000,0.000630093000000,0.000236216000000,0.000547920000000 +0.000031970000000,0.000069896000000,0.000019343000000,0.000069106000000,0.000034735000000,0.000065945000000,0.000056859000000,0.000020528000000,0.000063180000000,0.000174587000000,0.000043426000000,0.000152858000000,0.000062389000000,0.000065155000000,0.000627722000000,0.000180908000000,0.000718587000000 +0.000030390000000,0.000035525000000,0.000019935500000,0.000068711000000,0.000032760000000,0.000063970000000,0.000056464000000,0.000021910500000,0.000061600000000,0.000173797000000,0.000043822000000,0.000178538000000,0.000062389000000,0.000128760000000,0.000602833000000,0.000215278000000,0.000555426000000 +0.000031575000000,0.000035921000000,0.000019738000000,0.000086884000000,0.000033155000000,0.000066340000000,0.000056464000000,0.000020330500000,0.000061995000000,0.000156415000000,0.000060020000000,0.000335772000000,0.000060414000000,0.000063575000000,0.000628118000000,0.000192365000000,0.000484711000000 +0.000031180000000,0.000035526000000,0.000018948000000,0.000068711000000,0.000034340000000,0.000064760000000,0.000056069000000,0.000021516000000,0.000062390000000,0.000244908000000,0.000084909000000,0.000158390000000,0.000061994000000,0.000064760000000,0.000769155000000,0.000182489000000,0.000519475000000 +0.000031575000000,0.000038291000000,0.000018948000000,0.000068711000000,0.000033550000000,0.000065550000000,0.000056859000000,0.000021911000000,0.000065155000000,0.000173007000000,0.000101896000000,0.000176168000000,0.000061994000000,0.000065155000000,0.000631278000000,0.000255575000000,0.000519081000000 +0.000030390000000,0.000035130000000,0.000020133000000,0.000069501000000,0.000032760000000,0.000064760000000,0.000056069000000,0.000020330500000,0.000064365000000,0.000156414000000,0.000043427000000,0.000213698000000,0.000061995000000,0.000062390000000,0.000596513000000,0.000184859000000,0.000483525000000 +0.000031575000000,0.000035131000000,0.000018948000000,0.000068316000000,0.000033155000000,0.000063969000000,0.000056463000000,0.000021910500000,0.000061599000000,0.000175378000000,0.000045007000000,0.000157600000000,0.000060019000000,0.000065155000000,0.000635624000000,0.000184069000000,0.000519081000000 +0.000030784000000,0.000035131000000,0.000019145500000,0.000069105000000,0.000035131000000,0.000066341000000,0.000056463000000,0.000020330500000,0.000130736000000,0.000206982000000,0.000043822000000,0.000178538000000,0.000060415000000,0.000062389000000,0.000628118000000,0.000216859000000,0.000483526000000 +0.000030784000000,0.000036316000000,0.000019738000000,0.000068711000000,0.000033945000000,0.000063575000000,0.000056463000000,0.000056281500000,0.000065551000000,0.000174983000000,0.000043427000000,0.000152858000000,0.000061995000000,0.000082933000000,0.000594143000000,0.000186834000000,0.000518685000000 +0.000031180000000,0.000036316000000,0.000018750500000,0.000068710000000,0.000047378000000,0.000084118000000,0.000057254000000,0.000022503500000,0.000061600000000,0.000173402000000,0.000043426000000,0.000208167000000,0.000061994000000,0.000064365000000,0.000647871000000,0.000180908000000,0.000536464000000 +0.000030785000000,0.000035131000000,0.000018948000000,0.000102291000000,0.000034340000000,0.000064365000000,0.000056859000000,0.000022306000000,0.000064365000000,0.000158389000000,0.000045402000000,0.000174982000000,0.000063574000000,0.000082538000000,0.000673550000000,0.000345254000000,0.000485105000000 +0.000031180000000,0.000035921000000,0.000018947500000,0.000068711000000,0.000033550000000,0.000064760000000,0.000056068000000,0.000020330500000,0.000063970000000,0.000228710000000,0.000060809000000,0.000157204000000,0.000062389000000,0.000065155000000,0.000628118000000,0.000217649000000,0.000517500000000 +0.000033550000000,0.000035920000000,0.000018948000000,0.000068710000000,0.000033550000000,0.000065550000000,0.000108217000000,0.000021515500000,0.000061599000000,0.000159575000000,0.000043031000000,0.000159574000000,0.000061994000000,0.000065551000000,0.000597697000000,0.000271377000000,0.000509600000000 +0.000030785000000,0.000036711000000,0.000018750500000,0.000068316000000,0.000035131000000,0.000063970000000,0.000070686000000,0.000022306000000,0.000062785000000,0.000175772000000,0.000043032000000,0.000210537000000,0.000061995000000,0.000171032000000,0.000627327000000,0.000179723000000,0.000498538000000 +0.000029995000000,0.000035131000000,0.000019145500000,0.000068316000000,0.000035526000000,0.000067131000000,0.000057649000000,0.000022306000000,0.000080957000000,0.000193945000000,0.000045402000000,0.000173797000000,0.000060019000000,0.000077007000000,0.000632859000000,0.000180513000000,0.000520661000000 +0.000031180000000,0.000035921000000,0.000020331000000,0.000068711000000,0.000034736000000,0.000065550000000,0.000056464000000,0.000021318500000,0.000061994000000,0.000179723000000,0.000043822000000,0.000166686000000,0.000062785000000,0.000065550000000,0.000594933000000,0.000216463000000,0.000484711000000 +0.000029995000000,0.000035131000000,0.000018947500000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056464000000,0.000021318000000,0.000066341000000,0.000162736000000,0.000043426000000,0.000176563000000,0.000062785000000,0.000064760000000,0.000630093000000,0.000183278000000,0.000675130000000 +0.000030389000000,0.000035526000000,0.000019738000000,0.000069501000000,0.000033155000000,0.000099921000000,0.000056464000000,0.000041268500000,0.000062389000000,0.000152069000000,0.000046192000000,0.000195920000000,0.000061599000000,0.000063970000000,0.000662488000000,0.000179723000000,0.000519475000000 +0.000031575000000,0.000035526000000,0.000019145500000,0.000069106000000,0.000046983000000,0.000065550000000,0.000056859000000,0.000021911000000,0.000063575000000,0.000208167000000,0.000044217000000,0.000158389000000,0.000123229000000,0.000065155000000,0.000594933000000,0.000253995000000,0.000484710000000 +0.000031575000000,0.000078982000000,0.000018948000000,0.000069106000000,0.000033945000000,0.000066341000000,0.000056069000000,0.000022306000000,0.000062390000000,0.000173797000000,0.000058834000000,0.000176167000000,0.000171822000000,0.000064760000000,0.000628118000000,0.000184464000000,0.000573599000000 +0.000031575000000,0.000035526000000,0.000019935500000,0.000068315000000,0.000033945000000,0.000083328000000,0.000071081000000,0.000020528000000,0.000061995000000,0.000173402000000,0.000043426000000,0.000167476000000,0.000101896000000,0.000064760000000,0.000627327000000,0.000182883000000,0.000504068000000 +0.000029995000000,0.000035525000000,0.000019145500000,0.000067921000000,0.000033155000000,0.000063970000000,0.000056464000000,0.000022503500000,0.000064365000000,0.000156019000000,0.000043822000000,0.000208957000000,0.000478785000000,0.000064760000000,0.000633253000000,0.000224760000000,0.000483130000000 +0.000030390000000,0.000035130000000,0.000019343000000,0.000068316000000,0.000033945000000,0.000064365000000,0.000056859000000,0.000020528000000,0.000098341000000,0.000189994000000,0.000043821000000,0.000157994000000,0.000127575000000,0.000109797000000,0.000594142000000,0.000180118000000,0.000576364000000 +0.000031575000000,0.000036711000000,0.000018750500000,0.000068711000000,0.000035525000000,0.000063970000000,0.000056464000000,0.000020331000000,0.000061994000000,0.000174192000000,0.000044612000000,0.000173797000000,0.000146537000000,0.000065155000000,0.000628118000000,0.000185254000000,0.000483920000000 +0.000030390000000,0.000035526000000,0.000019738000000,0.000069106000000,0.000033155000000,0.000086093000000,0.000056464000000,0.000022108500000,0.000061994000000,0.000159970000000,0.000043426000000,0.000160365000000,0.000161945000000,0.000062389000000,0.000630093000000,0.000217648000000,0.000518686000000 +0.000030389000000,0.000036316000000,0.000018750500000,0.000088464000000,0.000033945000000,0.000064760000000,0.000056859000000,0.000021121000000,0.000061995000000,0.000174192000000,0.000045007000000,0.000198686000000,0.000099525000000,0.000063180000000,0.000598883000000,0.000180908000000,0.000568068000000 +0.000029995000000,0.000035526000000,0.000019935500000,0.000068710000000,0.000035526000000,0.000065945000000,0.000056464000000,0.000021713500000,0.000063970000000,0.000221599000000,0.000044612000000,0.000173007000000,0.000081747000000,0.000064761000000,0.000630883000000,0.000183279000000,0.000484315000000 +0.000031575000000,0.000035921000000,0.000020133000000,0.000069105000000,0.000033550000000,0.000066341000000,0.000075822000000,0.000028034000000,0.000061994000000,0.000174983000000,0.000043032000000,0.000175772000000,0.000112167000000,0.000064760000000,0.000635229000000,0.000237797000000,0.000517895000000 +0.000030785000000,0.000035526000000,0.000019738000000,0.000069106000000,0.000032760000000,0.000064365000000,0.000056859000000,0.000021515500000,0.000062785000000,0.000156809000000,0.000064365000000,0.000179723000000,0.000064760000000,0.000064365000000,0.000594143000000,0.000180513000000,0.000487476000000 +0.000029994000000,0.000036710000000,0.000019343000000,0.000068316000000,0.000099526000000,0.000064365000000,0.000057254000000,0.000020923500000,0.000063970000000,0.000180118000000,0.000047772000000,0.000187625000000,0.000066736000000,0.000063180000000,0.000627723000000,0.000183278000000,0.000516710000000 +0.000030784000000,0.000035526000000,0.000019343000000,0.000068316000000,0.000035526000000,0.000064760000000,0.000056464000000,0.000022701000000,0.000061994000000,0.000208563000000,0.000043822000000,0.000159575000000,0.000064760000000,0.000075822000000,0.000630488000000,0.000226341000000,0.000536068000000 +0.000031180000000,0.000036316000000,0.000020330500000,0.000070686000000,0.000047772000000,0.000063970000000,0.000056069000000,0.000022898500000,0.000061600000000,0.000156414000000,0.000043822000000,0.000174193000000,0.000149698000000,0.000065550000000,0.000596908000000,0.000182884000000,0.000482735000000 +0.000029995000000,0.000036711000000,0.000019541000000,0.000069501000000,0.000033155000000,0.000158784000000,0.000056464000000,0.000020726000000,0.000065155000000,0.000174192000000,0.000043822000000,0.000152464000000,0.000171031000000,0.000064760000000,0.001460907000000,0.000180908000000,0.000555426000000 +0.000030785000000,0.000035130000000,0.000018948000000,0.000143377000000,0.000033946000000,0.000181698000000,0.000056859000000,0.000020725500000,0.000064365000000,0.000173797000000,0.000043427000000,0.000193155000000,0.000117303000000,0.000064760000000,0.000724118000000,0.000218044000000,0.000485501000000 +0.000030390000000,0.000035131000000,0.000018750500000,0.000068711000000,0.000032760000000,0.000202242000000,0.000057254000000,0.000021713500000,0.000062390000000,0.000284809000000,0.000043427000000,0.000177747000000,0.000096760000000,0.000063970000000,0.001224266000000,0.000181303000000,0.000483920000000 +0.000030390000000,0.000035526000000,0.000019343000000,0.000069106000000,0.000033550000000,0.000065945000000,0.000055674000000,0.000020330500000,0.000063574000000,0.000195921000000,0.000044217000000,0.000158389000000,0.000073846000000,0.000063179000000,0.000627722000000,0.000180118000000,0.000569254000000 +0.000029995000000,0.000035921000000,0.000019145500000,0.000068316000000,0.000067130000000,0.000132711000000,0.000069896000000,0.000021713500000,0.000063179000000,0.000173402000000,0.000043427000000,0.000176562000000,0.000061600000000,0.000064365000000,0.000683031000000,0.000180513000000,0.000484315000000 +0.000031180000000,0.000037501000000,0.000018948000000,0.000067920000000,0.000033155000000,0.000066736000000,0.000058044000000,0.000020726000000,0.000080958000000,0.000225155000000,0.000063180000000,0.000237402000000,0.000062389000000,0.000062784000000,0.000596513000000,0.000181303000000,0.000517896000000 +0.000031180000000,0.000039081000000,0.000020330500000,0.000068710000000,0.000033155000000,0.000064365000000,0.000056464000000,0.000021911000000,0.000063970000000,0.000174193000000,0.000043427000000,0.000157600000000,0.000062389000000,0.000093600000000,0.000838290000000,0.000235427000000,0.000541204000000 +0.000030390000000,0.000035920000000,0.000019343000000,0.000069106000000,0.000033550000000,0.000064365000000,0.000056069000000,0.000022306000000,0.000063970000000,0.000173402000000,0.000044217000000,0.000179327000000,0.000062390000000,0.000062389000000,0.000897945000000,0.000249649000000,0.000484316000000 +0.000029995000000,0.000035921000000,0.000018947500000,0.000102686000000,0.000034735000000,0.000065946000000,0.000056859000000,0.000020528500000,0.000061994000000,0.000174982000000,0.000043822000000,0.000234636000000,0.000060414000000,0.000063180000000,0.000627327000000,0.000185253000000,0.000518685000000 +0.000031970000000,0.000036711000000,0.000019738000000,0.000068710000000,0.000033155000000,0.000064365000000,0.000057254000000,0.000021910500000,0.000065155000000,0.000207377000000,0.000043427000000,0.000186044000000,0.000062785000000,0.000062785000000,0.000647081000000,0.000185254000000,0.000486291000000 +0.000031180000000,0.000035526000000,0.000018948000000,0.000069501000000,0.000032760000000,0.000064365000000,0.000058834000000,0.000022108000000,0.000064760000000,0.000157204000000,0.000043426000000,0.000181698000000,0.000061600000000,0.000064760000000,0.000605995000000,0.000217254000000,0.000774685000000 +0.000029995000000,0.000035131000000,0.000018750500000,0.000069105000000,0.000033155000000,0.000065945000000,0.000056069000000,0.000021713500000,0.000064365000000,0.000159574000000,0.000044217000000,0.000212118000000,0.000063180000000,0.000062785000000,0.000594933000000,0.000182094000000,0.000519475000000 +0.000030390000000,0.000035130000000,0.000018948000000,0.000067921000000,0.000033155000000,0.000063970000000,0.000126390000000,0.000020330500000,0.000061599000000,0.000159180000000,0.000043427000000,0.000159574000000,0.000061995000000,0.000065550000000,0.000631278000000,0.000180513000000,0.000487871000000 +0.000029995000000,0.000035920000000,0.000020528500000,0.000067921000000,0.000033945000000,0.000064365000000,0.000056464000000,0.000040083500000,0.000105847000000,0.000222785000000,0.000043427000000,0.000177352000000,0.000061995000000,0.000098341000000,0.000638389000000,0.000251624000000,0.000485105000000 +0.000029995000000,0.000057254000000,0.000020331000000,0.000068710000000,0.000035130000000,0.000066735000000,0.000056859000000,0.000062602000000,0.000063575000000,0.000175377000000,0.000043427000000,0.000173797000000,0.000060809000000,0.000062390000000,0.000598093000000,0.000181699000000,0.000562932000000 +0.000031575000000,0.000035130000000,0.000020133000000,0.000068711000000,0.000033945000000,0.000064365000000,0.000056068000000,0.000038306000000,0.000061599000000,0.000182093000000,0.000043822000000,0.000235822000000,0.000061599000000,0.000062785000000,0.000663278000000,0.000179723000000,0.000484711000000 +0.000029994000000,0.000036710000000,0.000019935500000,0.000102686000000,0.000033551000000,0.000064365000000,0.000056858000000,0.000022503500000,0.000061995000000,0.000162340000000,0.000043427000000,0.000178143000000,0.000062390000000,0.000065550000000,0.000630093000000,0.000270192000000,0.000534883000000 +0.000029995000000,0.000035921000000,0.000018948000000,0.000068710000000,0.000032760000000,0.000064760000000,0.000056463000000,0.000020330500000,0.000065550000000,0.000167081000000,0.000043822000000,0.000162340000000,0.000060414000000,0.000064760000000,0.000594932000000,0.000185649000000,0.000506044000000 +0.000031179000000,0.000035526000000,0.000020133500000,0.000069106000000,0.000035921000000,0.000065945000000,0.000056463000000,0.000021515500000,0.000064365000000,0.000174588000000,0.000043032000000,0.000158784000000,0.000062785000000,0.000063575000000,0.000627328000000,0.000188019000000,0.000483525000000 +0.000031970000000,0.000035921000000,0.000019343000000,0.000069896000000,0.000036316000000,0.000133501000000,0.000055674000000,0.000020528500000,0.000062390000000,0.000174192000000,0.000043427000000,0.000223575000000,0.000090044000000,0.000065155000000,0.000628118000000,0.000216068000000,0.000553846000000 +0.000031180000000,0.000036316000000,0.000019145500000,0.000067920000000,0.000033945000000,0.000066341000000,0.000090044000000,0.000020330500000,0.000095575000000,0.000173402000000,0.000043821000000,0.000167476000000,0.000061995000000,0.000064365000000,0.000594537000000,0.000180908000000,0.000484710000000 +0.000029994000000,0.000035920000000,0.000018750000000,0.000067921000000,0.000033156000000,0.000063970000000,0.000057649000000,0.000021713500000,0.000064365000000,0.000156019000000,0.000044217000000,0.000162340000000,0.000060019000000,0.000098735000000,0.000594537000000,0.000182883000000,0.000518291000000 +0.000029995000000,0.000035525000000,0.000019541000000,0.000068316000000,0.000032760000000,0.000064365000000,0.000056464000000,0.000020923000000,0.000061995000000,0.000156414000000,0.000045007000000,0.000157994000000,0.000061599000000,0.000062389000000,0.000627723000000,0.000218044000000,0.000519475000000 +0.000031970000000,0.000053698000000,0.000018948000000,0.000069105000000,0.000033550000000,0.000064760000000,0.000056464000000,0.000021515500000,0.000061994000000,0.000175772000000,0.000043427000000,0.000242933000000,0.000063575000000,0.000066341000000,0.000650241000000,0.000184859000000,0.000483525000000 diff --git a/docs/source/media/bench/lua bench tests lua-api-pp.csv b/docs/source/media/bench/lua bench tests lua-api-pp.csv new file mode 100644 index 00000000..0f50e309 --- /dev/null +++ b/docs/source/media/bench/lua bench tests lua-api-pp.csv @@ -0,0 +1,2001 @@ +"lua-api-pp - global get","lua-api-pp - member function calls","lua-api-pp - c function","lua-api-pp - global set","lua-api-pp - table get","lua-api-pp - table chained get","lua-api-pp - c function through lua","lua-api-pp - table set","lua-api-pp - table chained set","lua-api-pp - lua function","lua-api-pp - member function calls (simple)","lua-api-pp - multi return","lua-api-pp - return userdata" +0.000023690500000,0.000210541000000,0.000064368000000,0.000025275000000,0.000043838500000,0.000069899000000,0.000085306000000,0.000029207000000,0.000053701000000,0.000054097000000,0.000212121000000,0.000078196000000,0.000206195000000 +0.000023888000000,0.000242936000000,0.000063578000000,0.000014476666667,0.000026653000000,0.000069108000000,0.000102294000000,0.000026837000000,0.000085307000000,0.000054886000000,0.000209355000000,0.000075429000000,0.000163924000000 +0.000023887500000,0.000207380000000,0.000063183000000,0.000013950000000,0.000034752000000,0.000067528000000,0.000083331000000,0.000026838000000,0.000051726000000,0.000086096000000,0.000283232000000,0.000075430000000,0.000163923000000 +0.000024085000000,0.000211331000000,0.000065553000000,0.000013949666667,0.000027640500000,0.000065554000000,0.000084911000000,0.000027232000000,0.000052516000000,0.000054097000000,0.000214887000000,0.000077010000000,0.000162344000000 +0.000022110000000,0.000214886000000,0.000065948000000,0.000014740000000,0.000026653500000,0.000065554000000,0.000082541000000,0.000026838000000,0.000052122000000,0.000071874000000,0.000216467000000,0.000077800000000,0.000201059000000 +0.000022505000000,0.000204615000000,0.000065553000000,0.000017768666667,0.000026455500000,0.000066344000000,0.000084516000000,0.000026442000000,0.000051727000000,0.000054886000000,0.000274936000000,0.000075430000000,0.000165108000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000079380000000,0.000084516000000,0.000026837000000,0.000053307000000,0.000051726000000,0.000205800000000,0.000075430000000,0.000161948000000 +0.000022307500000,0.000221207000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000066343000000,0.000085701000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000204220000000,0.000075430000000,0.000160763000000 +0.000022702500000,0.000210541000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000066344000000,0.000113751000000,0.000026837000000,0.000055282000000,0.000054887000000,0.000344072000000,0.000075825000000,0.000200664000000 +0.000022110000000,0.000205800000000,0.000068319000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000221997000000,0.000075430000000,0.000162739000000 +0.000022110000000,0.000204615000000,0.000065553000000,0.000038838666667,0.000026653500000,0.000099134000000,0.000084516000000,0.000026837000000,0.000087676000000,0.000124812000000,0.000206195000000,0.000077405000000,0.000162738000000 +0.000031986500000,0.000205800000000,0.000065949000000,0.000042130666667,0.000027048500000,0.000067133000000,0.000083331000000,0.000026442000000,0.000052912000000,0.000053701000000,0.000222787000000,0.000146146000000,0.000162739000000 +0.000049369000000,0.000206195000000,0.000118492000000,0.000043579333333,0.000026456000000,0.000069899000000,0.000082540000000,0.000026838000000,0.000052516000000,0.000054491000000,0.000206195000000,0.000075825000000,0.000182887000000 +0.000023492500000,0.000205010000000,0.000063973000000,0.000041340666667,0.000026653500000,0.000107035000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000054097000000,0.000208565000000,0.000077010000000,0.000162343000000 +0.000022110000000,0.000206590000000,0.000063973000000,0.000045291333333,0.000027641000000,0.000203825000000,0.000084121000000,0.000026442000000,0.000051726000000,0.000053306000000,0.000214096000000,0.000077405000000,0.000160763000000 +0.000022110000000,0.000214491000000,0.000067923000000,0.000023958000000,0.000026653000000,0.000082146000000,0.000082146000000,0.000027232000000,0.000052911000000,0.000052121000000,0.000243331000000,0.000077010000000,0.000163133000000 +0.000022505000000,0.000204614000000,0.000063972000000,0.000019085666667,0.000026455500000,0.000067529000000,0.000082541000000,0.000026442000000,0.000055677000000,0.000051331000000,0.000205405000000,0.000077010000000,0.000163923000000 +0.000023492500000,0.000206590000000,0.000063973000000,0.000018690666667,0.000036332000000,0.000067133000000,0.000082541000000,0.000026837000000,0.000054096000000,0.000052911000000,0.000210936000000,0.000076615000000,0.000179726000000 +0.000022505000000,0.000206590000000,0.000068319000000,0.000014740000000,0.000026456000000,0.000065948000000,0.000081751000000,0.000027232000000,0.000051726000000,0.000086491000000,0.000225948000000,0.000145750000000,0.000163133000000 +0.000021912500000,0.000214097000000,0.000063973000000,0.000014608333333,0.000026653000000,0.000067529000000,0.000082146000000,0.000026442000000,0.000099133000000,0.000054491000000,0.000205010000000,0.000075430000000,0.000161948000000 +0.000024085000000,0.000208961000000,0.000186442000000,0.000014739666667,0.000026455500000,0.000068713000000,0.000082540000000,0.000028022000000,0.000052911000000,0.000056071000000,0.000210146000000,0.000081751000000,0.000162738000000 +0.000022505000000,0.000205800000000,0.000086492000000,0.000014871666667,0.000026653000000,0.000066344000000,0.000083331000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000208960000000,0.000075429000000,0.000195133000000 +0.000022702500000,0.000206985000000,0.000070294000000,0.000039365333333,0.000027048000000,0.000065553000000,0.000134293000000,0.000026443000000,0.000052911000000,0.000057652000000,0.000257553000000,0.000078590000000,0.000163528000000 +0.000022110000000,0.000239775000000,0.000063578000000,0.000014213000000,0.000027838500000,0.000067529000000,0.000082541000000,0.000026442000000,0.000054096000000,0.000054887000000,0.000212911000000,0.000075430000000,0.000160763000000 +0.000022505000000,0.000208170000000,0.000065948000000,0.000014345000000,0.000026850500000,0.000069109000000,0.000082936000000,0.000026442000000,0.000053306000000,0.000053306000000,0.000221603000000,0.000075035000000,0.000161553000000 +0.000022109500000,0.000204615000000,0.000065948000000,0.000014871666667,0.000026455500000,0.000068713000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000225158000000,0.000121257000000,0.000198294000000 +0.000022110000000,0.000211331000000,0.000063578000000,0.000014740000000,0.000026456000000,0.000067529000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000054097000000,0.000205010000000,0.000090047000000,0.000161553000000 +0.000022109500000,0.000211331000000,0.000064368000000,0.000014476666667,0.000027048000000,0.000066343000000,0.000084122000000,0.000026837000000,0.000051726000000,0.000067924000000,0.000205009000000,0.000075430000000,0.000159973000000 +0.000023295000000,0.000208170000000,0.000065949000000,0.000014213333333,0.000026653500000,0.000065159000000,0.000083331000000,0.000026442000000,0.000088467000000,0.000051726000000,0.000208960000000,0.000077010000000,0.000163528000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000014739666667,0.000026653000000,0.000069899000000,0.000116517000000,0.000026837000000,0.000052911000000,0.000054492000000,0.000289553000000,0.000076220000000,0.000163924000000 +0.000022109500000,0.000207380000000,0.000063973000000,0.000014740000000,0.000027048000000,0.000067924000000,0.000085306000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000206985000000,0.000077010000000,0.000166688000000 +0.000022110000000,0.000210146000000,0.000063578000000,0.000036995000000,0.000026455500000,0.000069108000000,0.000084121000000,0.000026837000000,0.000053701000000,0.000052516000000,0.000207380000000,0.000075430000000,0.000165899000000 +0.000022900000000,0.000207775000000,0.000063973000000,0.000021324333333,0.000027048000000,0.000065158000000,0.000084911000000,0.000026837000000,0.000051726000000,0.000052911000000,0.000248072000000,0.000077010000000,0.000169060000000 +0.000022505000000,0.000211331000000,0.000083331000000,0.000014213333333,0.000027640500000,0.000065158000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000206985000000,0.000090047000000,0.000163133000000 +0.000022702500000,0.000259134000000,0.000063183000000,0.000014740000000,0.000026455500000,0.000065158000000,0.000082936000000,0.000028022000000,0.000052911000000,0.000051726000000,0.000204615000000,0.000074639000000,0.000240961000000 +0.000024085500000,0.000204615000000,0.000063973000000,0.000014344666667,0.000026653000000,0.000066738000000,0.000082540000000,0.000027627000000,0.000052912000000,0.000054096000000,0.000208170000000,0.000077010000000,0.000161948000000 +0.000022109500000,0.000209355000000,0.000063973000000,0.000014740000000,0.000027641000000,0.000078195000000,0.000116516000000,0.000026837000000,0.000054492000000,0.000054886000000,0.000359084000000,0.000074640000000,0.000164713000000 +0.000022110000000,0.000377652000000,0.000065553000000,0.000014345000000,0.000027641000000,0.000070294000000,0.000083726000000,0.000026442000000,0.000071084000000,0.000054492000000,0.000208565000000,0.000075430000000,0.000163528000000 +0.000022110000000,0.000241751000000,0.000063182000000,0.000014213333333,0.000026455500000,0.000065948000000,0.000082146000000,0.000026837000000,0.000052121000000,0.000053306000000,0.000213307000000,0.000075430000000,0.000211726000000 +0.000023887500000,0.000206195000000,0.000065553000000,0.000014740000000,0.000026653500000,0.000066343000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000221602000000,0.000077405000000,0.000166294000000 +0.000022109500000,0.000205800000000,0.000063578000000,0.000037785333333,0.000026653000000,0.000065948000000,0.000082541000000,0.000026442000000,0.000053701000000,0.000054887000000,0.000207775000000,0.000128763000000,0.000163923000000 +0.000022505000000,0.000212120000000,0.000097553000000,0.000015398333333,0.000027048500000,0.000065158000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000206590000000,0.000077010000000,0.000195133000000 +0.000022110000000,0.000208565000000,0.000064368000000,0.000014213333333,0.000027838500000,0.000066343000000,0.000082936000000,0.000026443000000,0.000052516000000,0.000053701000000,0.000292713000000,0.000077010000000,0.000229108000000 +0.000022110000000,0.000204615000000,0.000063973000000,0.000014740000000,0.000026456000000,0.000068713000000,0.000102294000000,0.000026442000000,0.000054096000000,0.000053702000000,0.000211726000000,0.000169455000000,0.000162739000000 +0.000029418500000,0.000207380000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000068714000000,0.000091232000000,0.000026837000000,0.000052121000000,0.000088467000000,0.000211331000000,0.000075825000000,0.000163134000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000065949000000,0.000082936000000,0.000026837000000,0.000053307000000,0.000054096000000,0.000220023000000,0.000075430000000,0.000163133000000 +0.000022702500000,0.000211726000000,0.000065948000000,0.000013554666667,0.000027640500000,0.000068713000000,0.000082541000000,0.000026837000000,0.000052516000000,0.000053306000000,0.000205405000000,0.000144961000000,0.000209356000000 +0.000023492500000,0.000214096000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000066738000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000206590000000,0.000078195000000,0.000161948000000 +0.000022900000000,0.000205009000000,0.000063578000000,0.000013818000000,0.000027246000000,0.000067134000000,0.000082146000000,0.000026442000000,0.000051331000000,0.000051726000000,0.000211331000000,0.000108615000000,0.000162343000000 +0.000022702500000,0.000207380000000,0.000117306000000,0.000013554666667,0.000026653000000,0.000067133000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000310886000000,0.000090837000000,0.000162343000000 +0.000022505000000,0.000212517000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000065949000000,0.000102294000000,0.000026442000000,0.000052911000000,0.000052516000000,0.000210936000000,0.000077010000000,0.000233060000000 +0.000022110000000,0.000205405000000,0.000063577000000,0.000013949666667,0.000026653000000,0.000067133000000,0.000084516000000,0.000026442000000,0.000053701000000,0.000054886000000,0.000209355000000,0.000077800000000,0.000164713000000 +0.000023295000000,0.000211331000000,0.000068318000000,0.000013555000000,0.000028036000000,0.000066343000000,0.000083331000000,0.000027627000000,0.000052911000000,0.000056861000000,0.000246491000000,0.000076615000000,0.000162738000000 +0.000022307500000,0.000206985000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000065949000000,0.000082146000000,0.000026838000000,0.000055281000000,0.000054886000000,0.000206985000000,0.000107429000000,0.000163924000000 +0.000029418500000,0.000210936000000,0.000065948000000,0.000013423000000,0.000055492500000,0.000065553000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000057652000000,0.000205010000000,0.000077010000000,0.000181306000000 +0.000022505000000,0.000210936000000,0.000065948000000,0.000014740000000,0.000028036000000,0.000066343000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000205405000000,0.000075035000000,0.000162738000000 +0.000022505000000,0.000211331000000,0.000097159000000,0.000013818000000,0.000026653000000,0.000066739000000,0.000083331000000,0.000026442000000,0.000052517000000,0.000053306000000,0.000282442000000,0.000075430000000,0.000170245000000 +0.000022110000000,0.000206986000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000069109000000,0.000117701000000,0.000026837000000,0.000054492000000,0.000054492000000,0.000208566000000,0.000075430000000,0.000163528000000 +0.000022702500000,0.000205800000000,0.000063578000000,0.000013818333333,0.000027048000000,0.000064763000000,0.000084912000000,0.000056467000000,0.000052911000000,0.000053701000000,0.000203035000000,0.000075430000000,0.000161554000000 +0.000022505000000,0.000216071000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000065158000000,0.000084121000000,0.000026442000000,0.000052516000000,0.000054096000000,0.000251628000000,0.000077405000000,0.000160763000000 +0.000023295500000,0.000204220000000,0.000065948000000,0.000020402333333,0.000026455500000,0.000065949000000,0.000082145000000,0.000026442000000,0.000053306000000,0.000051726000000,0.000205405000000,0.000114935000000,0.000162343000000 +0.000022110000000,0.000204615000000,0.000063183000000,0.000013423333333,0.000026653000000,0.000067529000000,0.000082541000000,0.000028022000000,0.000054097000000,0.000073849000000,0.000205010000000,0.000077010000000,0.000161158000000 +0.000022110000000,0.000211726000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000053701000000,0.000054887000000,0.000214096000000,0.000077010000000,0.000163133000000 +0.000023295000000,0.000209355000000,0.000065949000000,0.000013949666667,0.000026653000000,0.000069109000000,0.000081750000000,0.000027627000000,0.000053307000000,0.000052516000000,0.000253997000000,0.000076615000000,0.000195924000000 +0.000038900000000,0.000212516000000,0.000136269000000,0.000013950000000,0.000026653000000,0.000065948000000,0.000118096000000,0.000026837000000,0.000054886000000,0.000052911000000,0.000208565000000,0.000077010000000,0.000167479000000 +0.000022109500000,0.000212121000000,0.000099924000000,0.000013423000000,0.000026455500000,0.000068318000000,0.000082146000000,0.000026442000000,0.000086097000000,0.000054887000000,0.000206985000000,0.000075430000000,0.000163923000000 +0.000022702500000,0.000213306000000,0.000063973000000,0.000013949666667,0.000026850500000,0.000068318000000,0.000082936000000,0.000026837000000,0.000052912000000,0.000053306000000,0.000256763000000,0.000075429000000,0.000166689000000 +0.000023097500000,0.000221603000000,0.000065553000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000084911000000,0.000026838000000,0.000054491000000,0.000053702000000,0.000205010000000,0.000077010000000,0.000231479000000 +0.000023493000000,0.000204615000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000065554000000,0.000082540000000,0.000026837000000,0.000053306000000,0.000054886000000,0.000208566000000,0.000089257000000,0.000169454000000 +0.000023295000000,0.000217257000000,0.000063578000000,0.000013950000000,0.000026258000000,0.000067529000000,0.000084121000000,0.000026837000000,0.000053306000000,0.000054492000000,0.000211726000000,0.000077405000000,0.000161948000000 +0.000022505000000,0.000208171000000,0.000063577000000,0.000013423000000,0.000026850500000,0.000067924000000,0.000084121000000,0.000060812000000,0.000054096000000,0.000082541000000,0.000585454000000,0.000076615000000,0.000162738000000 +0.000024282500000,0.000210146000000,0.000097158000000,0.000024353000000,0.000026653000000,0.000069109000000,0.000153651000000,0.000041849000000,0.000057257000000,0.000054887000000,0.000220023000000,0.000075035000000,0.000196714000000 +0.000022702500000,0.000206195000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000064368000000,0.000084516000000,0.000026443000000,0.000053306000000,0.000054887000000,0.000246096000000,0.000074639000000,0.000164318000000 +0.000022505000000,0.000326689000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000209355000000,0.000054491000000,0.000209750000000,0.000077010000000,0.000163529000000 +0.000031986000000,0.000214491000000,0.000063973000000,0.000013818333333,0.000027641000000,0.000064763000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000053307000000,0.000210540000000,0.000075824000000,0.000162738000000 +0.000041468000000,0.000211331000000,0.000063183000000,0.000013950000000,0.000026653000000,0.000065554000000,0.000083331000000,0.000026837000000,0.000051331000000,0.000054096000000,0.000228714000000,0.000190393000000,0.000162738000000 +0.000023888000000,0.000213306000000,0.000063972000000,0.000013950000000,0.000026653000000,0.000066739000000,0.000082540000000,0.000026442000000,0.000054096000000,0.000054887000000,0.000204614000000,0.000225948000000,0.000232664000000 +0.000029814000000,0.000208960000000,0.000063578000000,0.000013949666667,0.000026851000000,0.000070294000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000208565000000,0.000095973000000,0.000164318000000 +0.000022505000000,0.000212516000000,0.000065949000000,0.000013950000000,0.000036727500000,0.000069899000000,0.000117702000000,0.000026837000000,0.000051726000000,0.000099924000000,0.000210541000000,0.000077010000000,0.000162738000000 +0.000022110000000,0.000206195000000,0.000117701000000,0.000013818333333,0.000026653500000,0.000120862000000,0.000082541000000,0.000027627000000,0.000054491000000,0.000051726000000,0.000285602000000,0.000112171000000,0.000230294000000 +0.000023097500000,0.000206195000000,0.000065948000000,0.000015003333333,0.000026653000000,0.000067924000000,0.000082541000000,0.000041060000000,0.000053701000000,0.000051726000000,0.000258343000000,0.000075429000000,0.000165503000000 +0.000022505000000,0.000257553000000,0.000063578000000,0.000018822333333,0.000026851000000,0.000066738000000,0.000082145000000,0.000026442000000,0.000052911000000,0.000052911000000,0.000206985000000,0.000075825000000,0.000161553000000 +0.000039887500000,0.000205405000000,0.000063578000000,0.000013818333333,0.000026850500000,0.000066343000000,0.000082146000000,0.000026442000000,0.000051331000000,0.000052516000000,0.000255183000000,0.000075430000000,0.000160763000000 +0.000022702500000,0.000207775000000,0.000065948000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000055281000000,0.000205009000000,0.000077010000000,0.000159182000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000013423000000,0.000027641000000,0.000065554000000,0.000082540000000,0.000026837000000,0.000052121000000,0.000056071000000,0.000205405000000,0.000075035000000,0.000164319000000 +0.000022702500000,0.000205010000000,0.000065948000000,0.000013423333333,0.000027048500000,0.000065158000000,0.000103874000000,0.000026442000000,0.000053307000000,0.000054887000000,0.000206985000000,0.000075430000000,0.000164319000000 +0.000022702500000,0.000231479000000,0.000097553000000,0.000013423333333,0.000026653000000,0.000065553000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000057652000000,0.000218442000000,0.000075034000000,0.000162738000000 +0.000022703000000,0.000206985000000,0.000065949000000,0.000013423000000,0.000036332500000,0.000065948000000,0.000082935000000,0.000026837000000,0.000052912000000,0.000070294000000,0.000208170000000,0.000091232000000,0.000161158000000 +0.000022110000000,0.000205405000000,0.000063578000000,0.000013949666667,0.000026653500000,0.000066343000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000053307000000,0.000206986000000,0.000075429000000,0.000163528000000 +0.000022110000000,0.000209356000000,0.000065948000000,0.000013423000000,0.000026653500000,0.000064763000000,0.000082936000000,0.000026837000000,0.000052516000000,0.000054886000000,0.000248072000000,0.000077801000000,0.000163134000000 +0.000022702500000,0.000205800000000,0.000065553000000,0.000013818000000,0.000027246000000,0.000153652000000,0.000082541000000,0.000027627000000,0.000066343000000,0.000053702000000,0.000212912000000,0.000076615000000,0.000163133000000 +0.000022110000000,0.000204220000000,0.000065949000000,0.000013818333333,0.000026455500000,0.000065158000000,0.000084516000000,0.000046986000000,0.000052121000000,0.000054491000000,0.000204615000000,0.000075430000000,0.000164714000000 +0.000031986500000,0.000206590000000,0.000064368000000,0.000043316000000,0.000026455500000,0.000066738000000,0.000102689000000,0.000026837000000,0.000054097000000,0.000051331000000,0.000205010000000,0.000075035000000,0.000249652000000 +0.000024283000000,0.000206590000000,0.000063578000000,0.000025538333333,0.000026653500000,0.000065158000000,0.000218047000000,0.000026837000000,0.000053702000000,0.000054491000000,0.000238590000000,0.000077010000000,0.000161553000000 +0.000022702500000,0.000238196000000,0.000080961000000,0.000041604000000,0.000026653000000,0.000066738000000,0.000101109000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000245306000000,0.000099133000000,0.000167479000000 +0.000022110000000,0.000207380000000,0.000065949000000,0.000044106333333,0.000026653000000,0.000064763000000,0.000083331000000,0.000026837000000,0.000054887000000,0.000073060000000,0.000208960000000,0.000075430000000,0.000162738000000 +0.000022110000000,0.000206195000000,0.000063578000000,0.000014871666667,0.000036332000000,0.000065553000000,0.000084121000000,0.000026837000000,0.000053306000000,0.000052911000000,0.000236219000000,0.000075825000000,0.000250837000000 +0.000022505000000,0.000209750000000,0.000065948000000,0.000013818000000,0.000027641000000,0.000067529000000,0.000154837000000,0.000026442000000,0.000052516000000,0.000057257000000,0.000205009000000,0.000075430000000,0.000159972000000 +0.000023097500000,0.000205010000000,0.000065553000000,0.000013423333333,0.000026653000000,0.000065553000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000208565000000,0.000075430000000,0.000163924000000 +0.000022110000000,0.000204615000000,0.000065949000000,0.000013949666667,0.000026455500000,0.000065948000000,0.000082541000000,0.000026837000000,0.000105454000000,0.000054096000000,0.000204220000000,0.000075429000000,0.000162738000000 +0.000024085500000,0.000220418000000,0.000063578000000,0.000014871666667,0.000026653000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000054097000000,0.000054887000000,0.000222392000000,0.000075825000000,0.000390294000000 +0.000022505000000,0.000242541000000,0.000063973000000,0.000014213333333,0.000026850500000,0.000068713000000,0.000083331000000,0.000026443000000,0.000051331000000,0.000054886000000,0.000213701000000,0.000077010000000,0.000229504000000 +0.000022702500000,0.000205010000000,0.000077406000000,0.000013949666667,0.000026455500000,0.000065553000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000052121000000,0.000205010000000,0.000109010000000,0.000161553000000 +0.000022110000000,0.000204220000000,0.000066343000000,0.000013423333333,0.000026456000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000054886000000,0.000054491000000,0.000291133000000,0.000077405000000,0.000176566000000 +0.000022702500000,0.000208171000000,0.000063973000000,0.000013949666667,0.000026653500000,0.000070294000000,0.000082541000000,0.000026838000000,0.000052911000000,0.000088467000000,0.000215677000000,0.000077405000000,0.000165503000000 +0.000023295000000,0.000223183000000,0.000065948000000,0.000026196666667,0.000036332000000,0.000065948000000,0.000113355000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000205010000000,0.000076615000000,0.000160368000000 +0.000023295500000,0.000214097000000,0.000063578000000,0.000013949666667,0.000033567000000,0.000066738000000,0.000082936000000,0.000027627000000,0.000054491000000,0.000052121000000,0.000206985000000,0.000077010000000,0.000159577000000 +0.000022702500000,0.000209751000000,0.000063578000000,0.000013555000000,0.000026653000000,0.000065553000000,0.000082146000000,0.000026837000000,0.000085306000000,0.000053701000000,0.000214096000000,0.000075824000000,0.000173010000000 +0.000023098000000,0.000249257000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000067923000000,0.000087676000000,0.000026837000000,0.000054886000000,0.000055282000000,0.000208170000000,0.000075430000000,0.000162738000000 +0.000022505000000,0.000206195000000,0.000097158000000,0.000013423000000,0.000026850500000,0.000068318000000,0.000082541000000,0.000026837000000,0.000051331000000,0.000054096000000,0.000211726000000,0.000076615000000,0.000164714000000 +0.000022110000000,0.000204219000000,0.000063578000000,0.000013949666667,0.000028035500000,0.000068714000000,0.000082936000000,0.000026837000000,0.000052121000000,0.000053307000000,0.000251232000000,0.000112565000000,0.000167084000000 +0.000022702500000,0.000206195000000,0.000063578000000,0.000013818333333,0.000026850500000,0.000065158000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000051726000000,0.000208961000000,0.000077010000000,0.000196318000000 +0.000024283000000,0.000216072000000,0.000063578000000,0.000013949666667,0.000026456000000,0.000066344000000,0.000082541000000,0.000026442000000,0.000053307000000,0.000051726000000,0.000210146000000,0.000075430000000,0.000160763000000 +0.000023295500000,0.000218047000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000100714000000,0.000084516000000,0.000027627000000,0.000052911000000,0.000053306000000,0.000206985000000,0.000075430000000,0.000163134000000 +0.000022109500000,0.000204615000000,0.000065948000000,0.000013818000000,0.000043640500000,0.000065158000000,0.000082936000000,0.000045800000000,0.000052912000000,0.000052911000000,0.000208961000000,0.000077800000000,0.000174985000000 +0.000022110000000,0.000239775000000,0.000063578000000,0.000013423333333,0.000026456000000,0.000066738000000,0.000084516000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000206985000000,0.000077405000000,0.000231084000000 +0.000023097500000,0.000205405000000,0.000065948000000,0.000014739666667,0.000026653500000,0.000065159000000,0.000083726000000,0.000026442000000,0.000121257000000,0.000056862000000,0.000208566000000,0.000074640000000,0.000161553000000 +0.000022505000000,0.000208960000000,0.000135875000000,0.000013423000000,0.000026850500000,0.000065948000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000074245000000,0.000252417000000,0.000076615000000,0.000160763000000 +0.000022702500000,0.000207775000000,0.000063578000000,0.000013949666667,0.000026653500000,0.000068319000000,0.000139429000000,0.000026837000000,0.000052516000000,0.000058047000000,0.000207380000000,0.000075430000000,0.000160368000000 +0.000023097500000,0.000219232000000,0.000065553000000,0.000013950000000,0.000033764000000,0.000065948000000,0.000083331000000,0.000026443000000,0.000052516000000,0.000054887000000,0.000210936000000,0.000076220000000,0.000197109000000 +0.000022110000000,0.000207380000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000083331000000,0.000026442000000,0.000053307000000,0.000053306000000,0.000203430000000,0.000075430000000,0.000161158000000 +0.000022505000000,0.000209750000000,0.000065948000000,0.000013949666667,0.000026456000000,0.000065553000000,0.000084121000000,0.000026837000000,0.000056072000000,0.000068319000000,0.000204614000000,0.000077010000000,0.000160763000000 +0.000023097500000,0.000282837000000,0.000065949000000,0.000013423333333,0.000026653000000,0.000069109000000,0.000084516000000,0.000026442000000,0.000054492000000,0.000054096000000,0.000212121000000,0.000075824000000,0.000159183000000 +0.000024085500000,0.000211331000000,0.000063578000000,0.000014213333333,0.000033567000000,0.000066344000000,0.000084121000000,0.000026442000000,0.000054492000000,0.000054096000000,0.000207380000000,0.000077010000000,0.000162343000000 +0.000022900000000,0.000212121000000,0.000090442000000,0.000013949666667,0.000026653000000,0.000065949000000,0.000082541000000,0.000026837000000,0.000052121000000,0.000051726000000,0.000248072000000,0.000075035000000,0.000234640000000 +0.000022110000000,0.000208961000000,0.000063973000000,0.000014740000000,0.000027443500000,0.000068714000000,0.000116121000000,0.000026442000000,0.000086492000000,0.000054491000000,0.000212121000000,0.000088862000000,0.000162739000000 +0.000022505000000,0.000308121000000,0.000063183000000,0.000013423333333,0.000026455500000,0.000065159000000,0.000082540000000,0.000063578000000,0.000052911000000,0.000054887000000,0.000204219000000,0.000075430000000,0.000162738000000 +0.000022110000000,0.000220417000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000052517000000,0.000205010000000,0.000075035000000,0.000167084000000 +0.000023295000000,0.000254787000000,0.000063182000000,0.000013423000000,0.000026455500000,0.000065158000000,0.000083727000000,0.000028023000000,0.000051331000000,0.000052911000000,0.000222787000000,0.000077405000000,0.000197504000000 +0.000022505000000,0.000490244000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000066739000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000055282000000,0.000208960000000,0.000075825000000,0.000198689000000 +0.000022110000000,0.000306541000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000067529000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000053702000000,0.000210146000000,0.000076220000000,0.000251232000000 +0.000022110000000,0.000313257000000,0.000065158000000,0.000013950000000,0.000027641000000,0.000067134000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000261108000000,0.000076615000000,0.000182097000000 +0.000022307000000,0.000214096000000,0.000158787000000,0.000013423000000,0.000026653000000,0.000067529000000,0.000151282000000,0.000026837000000,0.000051726000000,0.000054492000000,0.000216071000000,0.000074639000000,0.000165504000000 +0.000029616500000,0.000204614000000,0.000199874000000,0.000013950000000,0.000026455500000,0.000066343000000,0.000084912000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000209750000000,0.000077010000000,0.000164318000000 +0.000022110000000,0.000204615000000,0.000108615000000,0.000013949666667,0.000026455500000,0.000065159000000,0.000084516000000,0.000026838000000,0.000086887000000,0.000053306000000,0.000205405000000,0.000075430000000,0.000161948000000 +0.000023295500000,0.000221603000000,0.000063973000000,0.000014476333333,0.000026851000000,0.000066738000000,0.000085702000000,0.000026837000000,0.000052911000000,0.000055282000000,0.000204220000000,0.000076615000000,0.000159577000000 +0.000022110000000,0.000209356000000,0.000097158000000,0.000020139333333,0.000026653000000,0.000065949000000,0.000084911000000,0.000026838000000,0.000051726000000,0.000054492000000,0.000213306000000,0.000075430000000,0.000179725000000 +0.000022505000000,0.000206986000000,0.000068318000000,0.000014081666667,0.000026653000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000221997000000,0.000075430000000,0.000162344000000 +0.000022307500000,0.000205010000000,0.000065948000000,0.000013423000000,0.000026653500000,0.000067133000000,0.000084516000000,0.000026837000000,0.000052516000000,0.000086491000000,0.000319578000000,0.000076220000000,0.000162343000000 +0.000022505000000,0.000206195000000,0.000065553000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000099528000000,0.000026442000000,0.000052912000000,0.000054096000000,0.000221207000000,0.000077010000000,0.000163528000000 +0.000022505000000,0.000204220000000,0.000063183000000,0.000013423000000,0.000026455500000,0.000067133000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000240961000000,0.000112171000000,0.000197109000000 +0.000022505000000,0.000240171000000,0.000063973000000,0.000013818000000,0.000053122500000,0.000065948000000,0.000082935000000,0.000026442000000,0.000051726000000,0.000054096000000,0.000242540000000,0.000075825000000,0.000161948000000 +0.000023295000000,0.000206590000000,0.000063183000000,0.000013950000000,0.000027443500000,0.000067923000000,0.000083726000000,0.000026837000000,0.000053307000000,0.000052911000000,0.000213701000000,0.000075429000000,0.000161158000000 +0.000055690500000,0.000204220000000,0.000067924000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000082936000000,0.000026837000000,0.000085306000000,0.000051726000000,0.000209751000000,0.000075825000000,0.000162343000000 +0.000022900000000,0.000204615000000,0.000097553000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000051726000000,0.000205405000000,0.000075430000000,0.000198294000000 +0.000022505000000,0.000206590000000,0.000063578000000,0.000013554666667,0.000026850500000,0.000065158000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000210936000000,0.000075429000000,0.000165504000000 +0.000022505000000,0.000205800000000,0.000067924000000,0.000013949666667,0.000026653500000,0.000066738000000,0.000226343000000,0.000045800000000,0.000052122000000,0.000052517000000,0.000206195000000,0.000075825000000,0.000276516000000 +0.000022505000000,0.000208170000000,0.000063578000000,0.000018559000000,0.000026850500000,0.000067133000000,0.000121256000000,0.000028022000000,0.000053701000000,0.000124812000000,0.000205010000000,0.000095578000000,0.000161948000000 +0.000022110000000,0.000210541000000,0.000063972000000,0.000019875666667,0.000026653000000,0.000065158000000,0.000082146000000,0.000041060000000,0.000052911000000,0.000059627000000,0.000243726000000,0.000090837000000,0.000248466000000 +0.000022110000000,0.000205800000000,0.000063578000000,0.000014740000000,0.000043641000000,0.000065553000000,0.000083726000000,0.000028417000000,0.000052911000000,0.000054886000000,0.000208960000000,0.000074640000000,0.000161158000000 +0.000022505000000,0.000206985000000,0.000066343000000,0.000014871666667,0.000026850500000,0.000066344000000,0.000084911000000,0.000026837000000,0.000053306000000,0.000057652000000,0.000210936000000,0.000075430000000,0.000163923000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000014740000000,0.000027838500000,0.000066343000000,0.000115726000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000212912000000,0.000076220000000,0.000164319000000 +0.000033369000000,0.000209355000000,0.000079381000000,0.000015925333333,0.000027048000000,0.000065948000000,0.000082541000000,0.000027232000000,0.000125602000000,0.000053306000000,0.000221997000000,0.000075825000000,0.000222787000000 +0.000022505000000,0.000204614000000,0.000065948000000,0.000014740000000,0.000026455500000,0.000068319000000,0.000082541000000,0.000026442000000,0.000069899000000,0.000054887000000,0.000205010000000,0.000076615000000,0.000163924000000 +0.000022109500000,0.000210540000000,0.000063578000000,0.000014345000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000027232000000,0.000052911000000,0.000087676000000,0.000205010000000,0.000075430000000,0.000161553000000 +0.000023295000000,0.000211331000000,0.000063973000000,0.000014213333333,0.000027246000000,0.000067134000000,0.000084121000000,0.000026838000000,0.000052911000000,0.000054491000000,0.000238985000000,0.000112170000000,0.000159973000000 +0.000024085500000,0.000208170000000,0.000065949000000,0.000014345000000,0.000027048000000,0.000066343000000,0.000082936000000,0.000026837000000,0.000051331000000,0.000051726000000,0.000208565000000,0.000075430000000,0.000195133000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000015003333333,0.000026455500000,0.000065948000000,0.000082541000000,0.000027233000000,0.000053306000000,0.000054886000000,0.000206985000000,0.000077010000000,0.000162738000000 +0.000022307500000,0.000206590000000,0.000063578000000,0.000014871666667,0.000026455500000,0.000065158000000,0.000122047000000,0.000026443000000,0.000054096000000,0.000054887000000,0.000206590000000,0.000077010000000,0.000167479000000 +0.000023097500000,0.000210541000000,0.000063973000000,0.000014213333333,0.000028233500000,0.000065948000000,0.000083726000000,0.000026837000000,0.000052121000000,0.000052516000000,0.000221603000000,0.000075825000000,0.000165899000000 +0.000022505000000,0.000206590000000,0.000063578000000,0.000015266666667,0.000026653500000,0.000066343000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000214096000000,0.000075430000000,0.000188417000000 +0.000022110000000,0.000211331000000,0.000063973000000,0.000015793666667,0.000027838500000,0.000066343000000,0.000083331000000,0.000039874000000,0.000054096000000,0.000054886000000,0.000206985000000,0.000075430000000,0.000163134000000 +0.000022702500000,0.000208565000000,0.000063973000000,0.000014345000000,0.000026851000000,0.000066738000000,0.000082146000000,0.000026837000000,0.000056862000000,0.000052121000000,0.000283627000000,0.000075430000000,0.000163133000000 +0.000022505000000,0.000239775000000,0.000063973000000,0.000014740000000,0.000026653500000,0.000066343000000,0.000082146000000,0.000027628000000,0.000054096000000,0.000068319000000,0.000208565000000,0.000090837000000,0.000161948000000 +0.000023097500000,0.000209355000000,0.000093207000000,0.000014345000000,0.000027641000000,0.000064763000000,0.000082541000000,0.000026442000000,0.000052517000000,0.000054886000000,0.000204615000000,0.000075430000000,0.000164319000000 +0.000022505000000,0.000210541000000,0.000065553000000,0.000014740000000,0.000028036000000,0.000065158000000,0.000116516000000,0.000026837000000,0.000052516000000,0.000054492000000,0.000208565000000,0.000074640000000,0.000189997000000 +0.000022110000000,0.000209751000000,0.000063578000000,0.000014213000000,0.000026456000000,0.000065948000000,0.000082541000000,0.000026837000000,0.000054887000000,0.000053306000000,0.000213306000000,0.000075430000000,0.000163529000000 +0.000022505000000,0.000206590000000,0.000099528000000,0.000015003333333,0.000043246000000,0.000068713000000,0.000082146000000,0.000026442000000,0.000054491000000,0.000054887000000,0.000207775000000,0.000077010000000,0.000167084000000 +0.000022702500000,0.000204615000000,0.000063578000000,0.000014608333333,0.000026456000000,0.000064763000000,0.000082541000000,0.000026443000000,0.000052121000000,0.000054887000000,0.000207775000000,0.000077010000000,0.000164318000000 +0.000022505000000,0.000212120000000,0.000063973000000,0.000014476666667,0.000026851000000,0.000065159000000,0.000083331000000,0.000026442000000,0.000080566000000,0.000054492000000,0.000238590000000,0.000075825000000,0.000195923000000 +0.000022900000000,0.000219627000000,0.000063578000000,0.000014213333333,0.000027838500000,0.000065948000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000052121000000,0.000216467000000,0.000090837000000,0.000160368000000 +0.000022110000000,0.000204614000000,0.000063578000000,0.000014740000000,0.000026456000000,0.000065158000000,0.000081751000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000212121000000,0.000077405000000,0.000162343000000 +0.000022110000000,0.000207380000000,0.000063578000000,0.000014739666667,0.000026653000000,0.000120072000000,0.000088072000000,0.000062788000000,0.000051726000000,0.000054887000000,0.000211331000000,0.000077405000000,0.000163133000000 +0.000029221000000,0.000205405000000,0.000063973000000,0.000015925000000,0.000026851000000,0.000086887000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000053702000000,0.000287972000000,0.000077010000000,0.000274146000000 +0.000023492500000,0.000302590000000,0.000065553000000,0.000014740000000,0.000027641000000,0.000066343000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000053306000000,0.000205405000000,0.000077010000000,0.000205010000000 +0.000022702500000,0.000212912000000,0.000097553000000,0.000014608333333,0.000026653000000,0.000065158000000,0.000084516000000,0.000026442000000,0.000055677000000,0.000051726000000,0.000206985000000,0.000077010000000,0.000162343000000 +0.000022307500000,0.000204614000000,0.000063578000000,0.000014345000000,0.000043838000000,0.000068713000000,0.000082540000000,0.000026837000000,0.000052517000000,0.000051726000000,0.000282837000000,0.000075429000000,0.000163529000000 +0.000022110000000,0.000208171000000,0.000065948000000,0.000014740000000,0.000026455500000,0.000066344000000,0.000084516000000,0.000026837000000,0.000071479000000,0.000052912000000,0.000205010000000,0.000110195000000,0.000175775000000 +0.000022505000000,0.000212516000000,0.000063578000000,0.000014213333333,0.000026455500000,0.000067528000000,0.000081751000000,0.000026442000000,0.000052911000000,0.000052911000000,0.000211331000000,0.000075430000000,0.000163529000000 +0.000022702500000,0.000205010000000,0.000063578000000,0.000014740000000,0.000026653000000,0.000063973000000,0.000103479000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000281257000000,0.000077010000000,0.000163528000000 +0.000022110000000,0.000210541000000,0.000067923000000,0.000014871666667,0.000028035500000,0.000065553000000,0.000084122000000,0.000028023000000,0.000090442000000,0.000094393000000,0.000212517000000,0.000077405000000,0.000161948000000 +0.000022900000000,0.000206985000000,0.000065553000000,0.000014739666667,0.000026455500000,0.000067923000000,0.000082936000000,0.000026443000000,0.000054491000000,0.000054887000000,0.000206985000000,0.000075430000000,0.000197108000000 +0.000031394000000,0.000210936000000,0.000065948000000,0.000014740000000,0.000026850500000,0.000067924000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000057652000000,0.000204615000000,0.000077405000000,0.000159972000000 +0.000022505000000,0.000211331000000,0.000080565000000,0.000014740000000,0.000026653500000,0.000067923000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000205010000000,0.000077010000000,0.000162739000000 +0.000022900000000,0.000213306000000,0.000063578000000,0.000014345000000,0.000026653500000,0.000068713000000,0.000082936000000,0.000078195000000,0.000054491000000,0.000053307000000,0.000210541000000,0.000076615000000,0.000171034000000 +0.000022110000000,0.000206985000000,0.000065948000000,0.000014740000000,0.000033764500000,0.000067924000000,0.000084516000000,0.000068319000000,0.000051726000000,0.000054886000000,0.000208565000000,0.000109801000000,0.000196714000000 +0.000022702500000,0.000204615000000,0.000063578000000,0.000014740000000,0.000027048500000,0.000067924000000,0.000084517000000,0.000061208000000,0.000084121000000,0.000053702000000,0.000289553000000,0.000075429000000,0.000162343000000 +0.000022702500000,0.000215676000000,0.000063973000000,0.000014739666667,0.000026653000000,0.000067924000000,0.000084516000000,0.000028417000000,0.000053702000000,0.000054491000000,0.000210540000000,0.000076220000000,0.000160368000000 +0.000022702500000,0.000205800000000,0.000065948000000,0.000025670000000,0.000026455500000,0.000065948000000,0.000082541000000,0.000028022000000,0.000053702000000,0.000051726000000,0.000205405000000,0.000075035000000,0.000163134000000 +0.000021912500000,0.000204614000000,0.000063578000000,0.000014608333333,0.000026455500000,0.000067923000000,0.000082146000000,0.000028022000000,0.000052912000000,0.000054096000000,0.000238985000000,0.000075824000000,0.000159972000000 +0.000022505000000,0.000210936000000,0.000084911000000,0.000014213000000,0.000027048000000,0.000069899000000,0.000118491000000,0.000026837000000,0.000054491000000,0.000054886000000,0.000221207000000,0.000075035000000,0.000163134000000 +0.000022505000000,0.000209356000000,0.000065949000000,0.000014740000000,0.000026455500000,0.000067924000000,0.000095183000000,0.000081751000000,0.000052911000000,0.000052911000000,0.000203430000000,0.000075430000000,0.000162343000000 +0.000022702500000,0.000212121000000,0.000065948000000,0.000014345000000,0.000026653000000,0.000069109000000,0.000084121000000,0.000040269000000,0.000052911000000,0.000052516000000,0.000208566000000,0.000075035000000,0.000165108000000 +0.000022702500000,0.000210936000000,0.000065948000000,0.000014739666667,0.000027048500000,0.000067529000000,0.000116516000000,0.000026443000000,0.000052911000000,0.000054886000000,0.000277702000000,0.000077010000000,0.000165504000000 +0.000022505000000,0.000212911000000,0.000062788000000,0.000014740000000,0.000040678000000,0.000068714000000,0.000083331000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000206985000000,0.000077010000000,0.000200664000000 +0.000022702500000,0.000222393000000,0.000065948000000,0.000015135000000,0.000026653500000,0.000067924000000,0.000084911000000,0.000026442000000,0.000052516000000,0.000054096000000,0.000205010000000,0.000077010000000,0.000162738000000 +0.000022505000000,0.000205010000000,0.000063973000000,0.000014871666667,0.000026653000000,0.000067529000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000244516000000,0.000077010000000,0.000168664000000 +0.000022109500000,0.000208960000000,0.000063577000000,0.000014740000000,0.000026653000000,0.000065158000000,0.000084911000000,0.000026442000000,0.000054492000000,0.000088861000000,0.000211330000000,0.000074639000000,0.000161553000000 +0.000024283000000,0.000208170000000,0.000097553000000,0.000014345000000,0.000026455500000,0.000069108000000,0.000084121000000,0.000026442000000,0.000053701000000,0.000052121000000,0.000221207000000,0.000075430000000,0.000196318000000 +0.000022505000000,0.000323133000000,0.000063578000000,0.000014871666667,0.000026851000000,0.000067133000000,0.000085702000000,0.000026837000000,0.000052121000000,0.000055282000000,0.000204615000000,0.000077405000000,0.000162344000000 +0.000023097500000,0.000206590000000,0.000063578000000,0.000015135000000,0.000026653500000,0.000067923000000,0.000118491000000,0.000026837000000,0.000054492000000,0.000124022000000,0.000296269000000,0.000131923000000,0.000165898000000 +0.000022505000000,0.000205010000000,0.000065553000000,0.000014740000000,0.000026455500000,0.000065553000000,0.000082541000000,0.000026838000000,0.000051726000000,0.000070294000000,0.000209751000000,0.000075430000000,0.000164714000000 +0.000022307500000,0.000215281000000,0.000063973000000,0.000014740000000,0.000027641000000,0.000065553000000,0.000084516000000,0.000026442000000,0.000054097000000,0.000053307000000,0.000210541000000,0.000076615000000,0.000195133000000 +0.000029418500000,0.000210936000000,0.000063578000000,0.000014740000000,0.000033566500000,0.000068713000000,0.000083331000000,0.000026838000000,0.000053307000000,0.000054096000000,0.000242541000000,0.000074640000000,0.000163134000000 +0.000024282500000,0.000212120000000,0.000063973000000,0.000015135000000,0.000026653500000,0.000065948000000,0.000082541000000,0.000026442000000,0.000067133000000,0.000054887000000,0.000204615000000,0.000077800000000,0.000163133000000 +0.000022505000000,0.000208961000000,0.000063577000000,0.000014739666667,0.000026653000000,0.000064763000000,0.000081751000000,0.000026442000000,0.000053306000000,0.000087676000000,0.000208960000000,0.000075825000000,0.000215676000000 +0.000022505000000,0.000212516000000,0.000135874000000,0.000015661666667,0.000026850500000,0.000065158000000,0.000083726000000,0.000027233000000,0.000055677000000,0.000053306000000,0.000210936000000,0.000075429000000,0.000197109000000 +0.000022505000000,0.000206195000000,0.000065553000000,0.000014740000000,0.000026653000000,0.000066344000000,0.000116121000000,0.000027232000000,0.000052911000000,0.000051726000000,0.000210146000000,0.000075429000000,0.000161553000000 +0.000022109500000,0.000206196000000,0.000065949000000,0.000014608333333,0.000026653000000,0.000067529000000,0.000082541000000,0.000026443000000,0.000053306000000,0.000051726000000,0.000209751000000,0.000212911000000,0.000165899000000 +0.000022110000000,0.000208170000000,0.000063973000000,0.000014740000000,0.000026455500000,0.000066343000000,0.000082936000000,0.000026837000000,0.000052517000000,0.000052911000000,0.000206590000000,0.000093998000000,0.000160763000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000014476666667,0.000026653500000,0.000067529000000,0.000082146000000,0.000026837000000,0.000052121000000,0.000052516000000,0.000271380000000,0.000090837000000,0.000159973000000 +0.000022702500000,0.000213307000000,0.000065554000000,0.000014740000000,0.000026653000000,0.000066344000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054491000000,0.000205010000000,0.000076615000000,0.000174195000000 +0.000022703000000,0.000204614000000,0.000065553000000,0.000014345000000,0.000035147000000,0.000065554000000,0.000082540000000,0.000026837000000,0.000052516000000,0.000055676000000,0.000204614000000,0.000075824000000,0.000164318000000 +0.000038900500000,0.000205800000000,0.000086096000000,0.000015661666667,0.000027048500000,0.000066343000000,0.000083726000000,0.000026442000000,0.000053306000000,0.000054887000000,0.000206590000000,0.000109009000000,0.000163924000000 +0.000022505000000,0.000210936000000,0.000063973000000,0.000014608000000,0.000026653000000,0.000069504000000,0.000103084000000,0.000026837000000,0.000051726000000,0.000088071000000,0.000259133000000,0.000075430000000,0.000161948000000 +0.000021912000000,0.000206986000000,0.000065949000000,0.000014740000000,0.000026653000000,0.000067924000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000208960000000,0.000075430000000,0.000237800000000 +0.000023098000000,0.000205800000000,0.000063973000000,0.000014739666667,0.000026653000000,0.000066344000000,0.000082541000000,0.000027232000000,0.000053306000000,0.000053306000000,0.000207380000000,0.000077405000000,0.000165109000000 +0.000022505000000,0.000283232000000,0.000065948000000,0.000015661666667,0.000026653000000,0.000065158000000,0.000082146000000,0.000026442000000,0.000054491000000,0.000054886000000,0.000291923000000,0.000075034000000,0.000163528000000 +0.000022505000000,0.000217257000000,0.000065553000000,0.000014871666667,0.000027245500000,0.000067134000000,0.000082541000000,0.000028023000000,0.000051726000000,0.000054097000000,0.000212911000000,0.000077405000000,0.000163924000000 +0.000023097500000,0.000256368000000,0.000065949000000,0.000015530000000,0.000026653500000,0.000066739000000,0.000084516000000,0.000026837000000,0.000052121000000,0.000054097000000,0.000205010000000,0.000075430000000,0.000198689000000 +0.000023097500000,0.000274541000000,0.000063973000000,0.000014739666667,0.000026653500000,0.000067529000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000238985000000,0.000078195000000,0.000163529000000 +0.000022110000000,0.000380417000000,0.000077405000000,0.000014740000000,0.000052134500000,0.000065553000000,0.000129553000000,0.000026442000000,0.000051726000000,0.000054096000000,0.000204615000000,0.000090837000000,0.000161948000000 +0.000022505000000,0.000216467000000,0.000065949000000,0.000014740000000,0.000026455500000,0.000087282000000,0.000085306000000,0.000027233000000,0.000125208000000,0.000088862000000,0.000206985000000,0.000080170000000,0.000167084000000 +0.000052135000000,0.000207380000000,0.000065554000000,0.000014345000000,0.000026653000000,0.000080565000000,0.000083726000000,0.000026837000000,0.000118097000000,0.000052516000000,0.000208961000000,0.000077405000000,0.000197503000000 +0.000036332000000,0.000206590000000,0.000063973000000,0.000014608333333,0.000026653000000,0.000066738000000,0.000084516000000,0.000026837000000,0.000067528000000,0.000052517000000,0.000287183000000,0.000075035000000,0.000163529000000 +0.000030603500000,0.000208565000000,0.000065553000000,0.000016057000000,0.000027640500000,0.000070689000000,0.000083331000000,0.000026837000000,0.000053306000000,0.000054886000000,0.000205010000000,0.000081751000000,0.000160368000000 +0.000023690000000,0.000205800000000,0.000065948000000,0.000014740000000,0.000026455500000,0.000068713000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000053702000000,0.000208961000000,0.000078590000000,0.000164318000000 +0.000024678000000,0.000204614000000,0.000065553000000,0.000014608000000,0.000026851000000,0.000068318000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000053701000000,0.000237800000000,0.000077010000000,0.000163134000000 +0.000023888000000,0.000220417000000,0.000063973000000,0.000014213333333,0.000026851000000,0.000067133000000,0.000116121000000,0.000026838000000,0.000052911000000,0.000054887000000,0.000208961000000,0.000110591000000,0.000162343000000 +0.000039887500000,0.000207775000000,0.000078195000000,0.000014740000000,0.000036135000000,0.000065553000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000074640000000,0.000213702000000,0.000075430000000,0.000161553000000 +0.000069320000000,0.000205010000000,0.000063578000000,0.000014345000000,0.000044826000000,0.000065948000000,0.000082936000000,0.000026443000000,0.000052911000000,0.000051726000000,0.000205010000000,0.000075825000000,0.000160763000000 +0.000032776500000,0.000204615000000,0.000065948000000,0.000014344666667,0.000028628500000,0.000067528000000,0.000082541000000,0.000026837000000,0.000052516000000,0.000054886000000,0.000504862000000,0.000077800000000,0.000162739000000 +0.000040875500000,0.000208171000000,0.000063973000000,0.000014213000000,0.000026455500000,0.000065553000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000232269000000,0.000075825000000,0.000198294000000 +0.000031591500000,0.000268614000000,0.000065948000000,0.000014345000000,0.000026851000000,0.000068319000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000238590000000,0.000077405000000,0.000160367000000 +0.000041073000000,0.000214491000000,0.000063577000000,0.000014213333333,0.000026653000000,0.000065949000000,0.000082936000000,0.000027628000000,0.000051726000000,0.000053306000000,0.000207381000000,0.000077010000000,0.000159578000000 +0.000041665500000,0.000209750000000,0.000063973000000,0.000014740000000,0.000036332000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000053701000000,0.000206590000000,0.000075034000000,0.000160368000000 +0.000024085500000,0.000213701000000,0.000106245000000,0.000014345000000,0.000028036000000,0.000066738000000,0.000105059000000,0.000026442000000,0.000054097000000,0.000054886000000,0.000208171000000,0.000125208000000,0.000196713000000 +0.000023887500000,0.000206195000000,0.000063973000000,0.000014344666667,0.000033764000000,0.000066343000000,0.000082936000000,0.000026837000000,0.000088862000000,0.000054096000000,0.000245306000000,0.000075825000000,0.000164714000000 +0.000024282500000,0.000204615000000,0.000063973000000,0.000015266666667,0.000028036000000,0.000065553000000,0.000082541000000,0.000046196000000,0.000054096000000,0.000053306000000,0.000210145000000,0.000076615000000,0.000166688000000 +0.000023492500000,0.000206195000000,0.000063973000000,0.000015003333333,0.000027048000000,0.000065158000000,0.000084911000000,0.000026443000000,0.000052911000000,0.000106244000000,0.000209355000000,0.000080170000000,0.000162343000000 +0.000041270500000,0.000217257000000,0.000063578000000,0.000014213333333,0.000027048500000,0.000071479000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000052121000000,0.000243331000000,0.000077010000000,0.000159972000000 +0.000031394000000,0.000218442000000,0.000065554000000,0.000014871666667,0.000027048000000,0.000067133000000,0.000084517000000,0.000028023000000,0.000056467000000,0.000052911000000,0.000206590000000,0.000077010000000,0.000162738000000 +0.000022505000000,0.000204614000000,0.000065553000000,0.000014740000000,0.000026455500000,0.000066343000000,0.000082146000000,0.000026837000000,0.000053701000000,0.000052517000000,0.000208566000000,0.000075430000000,0.000173800000000 +0.000022703000000,0.000210936000000,0.000063973000000,0.000014213333333,0.000026850500000,0.000065553000000,0.000098344000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000206985000000,0.000117306000000,0.000162343000000 +0.000029418500000,0.000206590000000,0.000099133000000,0.000014344666667,0.000026653000000,0.000065158000000,0.000083331000000,0.000026837000000,0.000053702000000,0.000056467000000,0.000291529000000,0.000075035000000,0.000161948000000 +0.000022505000000,0.000208960000000,0.000065553000000,0.000014740000000,0.000026455500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054491000000,0.000205010000000,0.000113750000000,0.000194738000000 +0.000022110000000,0.000208171000000,0.000063578000000,0.000014345000000,0.000061419000000,0.000068318000000,0.000084516000000,0.000026442000000,0.000056467000000,0.000057652000000,0.000206986000000,0.000091232000000,0.000159973000000 +0.000022505000000,0.000212516000000,0.000065553000000,0.000014608333333,0.000026653000000,0.000065158000000,0.000083331000000,0.000026837000000,0.000056072000000,0.000054492000000,0.000245306000000,0.000077010000000,0.000161948000000 +0.000023295000000,0.000207380000000,0.000063578000000,0.000014740000000,0.000026455500000,0.000067133000000,0.000082936000000,0.000026837000000,0.000091232000000,0.000164319000000,0.000203825000000,0.000077010000000,0.000161158000000 +0.000022505000000,0.000210146000000,0.000065949000000,0.000014871666667,0.000026456000000,0.000065158000000,0.000084516000000,0.000026442000000,0.000056072000000,0.000089652000000,0.000204615000000,0.000076615000000,0.000241750000000 +0.000022110000000,0.000210936000000,0.000065553000000,0.000018954000000,0.000026456000000,0.000066343000000,0.000114936000000,0.000039874000000,0.000056072000000,0.000057652000000,0.000212516000000,0.000095578000000,0.000159577000000 +0.000022109500000,0.000212121000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000065158000000,0.000084516000000,0.000026837000000,0.000054887000000,0.000054492000000,0.000240961000000,0.000075430000000,0.000163133000000 +0.000022110000000,0.000212517000000,0.000063578000000,0.000013950000000,0.000026455500000,0.000067133000000,0.000082541000000,0.000026442000000,0.000087677000000,0.000051726000000,0.000214096000000,0.000077405000000,0.000165504000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000013950000000,0.000027640500000,0.000065553000000,0.000082146000000,0.000026442000000,0.000056467000000,0.000054492000000,0.000211726000000,0.000075430000000,0.000196713000000 +0.000038900000000,0.000205010000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000079775000000,0.000082540000000,0.000028023000000,0.000169849000000,0.000069899000000,0.000244911000000,0.000075825000000,0.000163133000000 +0.000022307500000,0.000208170000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000171429000000,0.000052516000000,0.000205010000000,0.000075825000000,0.000165109000000 +0.000022505000000,0.000208960000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000066738000000,0.000084121000000,0.000027627000000,0.000121652000000,0.000052911000000,0.000210146000000,0.000077010000000,0.000162738000000 +0.000023295000000,0.000204615000000,0.000063973000000,0.000014345000000,0.000026850500000,0.000068319000000,0.000095973000000,0.000026443000000,0.000115726000000,0.000055282000000,0.000208961000000,0.000075035000000,0.000162344000000 +0.000022505000000,0.000244911000000,0.000063183000000,0.000013818333333,0.000026653500000,0.000067924000000,0.000083330000000,0.000026837000000,0.000081356000000,0.000051726000000,0.000295084000000,0.000109405000000,0.000219627000000 +0.000024085000000,0.000210935000000,0.000065948000000,0.000013818000000,0.000027641000000,0.000065948000000,0.000084911000000,0.000026837000000,0.000055676000000,0.000054097000000,0.000214886000000,0.000077010000000,0.000162739000000 +0.000022307500000,0.000221207000000,0.000065948000000,0.000014739666667,0.000026653500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000055677000000,0.000054887000000,0.000215676000000,0.000077800000000,0.000165898000000 +0.000022505000000,0.000205010000000,0.000065948000000,0.000013423333333,0.000026455500000,0.000067133000000,0.000084911000000,0.000026838000000,0.000054886000000,0.000054491000000,0.000243331000000,0.000075430000000,0.000206591000000 +0.000022505000000,0.000205405000000,0.000063578000000,0.000013423333333,0.000026455500000,0.000065158000000,0.000084516000000,0.000041060000000,0.000056467000000,0.000051726000000,0.000205800000000,0.000076220000000,0.000161553000000 +0.000022110000000,0.000221602000000,0.000063973000000,0.000013423000000,0.000046406000000,0.000066738000000,0.000085306000000,0.000026442000000,0.000068318000000,0.000069504000000,0.000204220000000,0.000075430000000,0.000160763000000 +0.000032579000000,0.000209355000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000066343000000,0.000099134000000,0.000026442000000,0.000070294000000,0.000054887000000,0.000212516000000,0.000075825000000,0.000166294000000 +0.000040283000000,0.000206985000000,0.000068319000000,0.000013818000000,0.000026653000000,0.000068713000000,0.000082541000000,0.000026837000000,0.000051331000000,0.000054887000000,0.000222392000000,0.000075430000000,0.000163134000000 +0.000048184000000,0.000204615000000,0.000082936000000,0.000013818333333,0.000026653000000,0.000066343000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000051726000000,0.000206195000000,0.000076614000000,0.000162343000000 +0.000023493000000,0.000206195000000,0.000099133000000,0.000013818000000,0.000026653500000,0.000065948000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000204220000000,0.000075430000000,0.000163134000000 +0.000024085000000,0.000252417000000,0.000063183000000,0.000013818000000,0.000026456000000,0.000069503000000,0.000082936000000,0.000026837000000,0.000052516000000,0.000054887000000,0.000253207000000,0.000075430000000,0.000162343000000 +0.000022505000000,0.000315627000000,0.000063578000000,0.000014740000000,0.000026653000000,0.000067923000000,0.000082541000000,0.000026442000000,0.000052122000000,0.000054097000000,0.000208566000000,0.000077010000000,0.000161553000000 +0.000031394000000,0.000221208000000,0.000063973000000,0.000025011666667,0.000027641000000,0.000065949000000,0.000083726000000,0.000026442000000,0.000051331000000,0.000053306000000,0.000214096000000,0.000077405000000,0.000209356000000 +0.000036530000000,0.000204615000000,0.000068318000000,0.000013949666667,0.000026850500000,0.000065158000000,0.000128763000000,0.000026837000000,0.000052911000000,0.000086887000000,0.000210145000000,0.000077010000000,0.000162738000000 +0.000022505500000,0.000205800000000,0.000063972000000,0.000013818000000,0.000033961500000,0.000067133000000,0.000082146000000,0.000026442000000,0.000054886000000,0.000051331000000,0.000218837000000,0.000077010000000,0.000163529000000 +0.000023493000000,0.000206195000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000067133000000,0.000082541000000,0.000026837000000,0.000074245000000,0.000052911000000,0.000210541000000,0.000110590000000,0.000165503000000 +0.000022307500000,0.000206195000000,0.000102689000000,0.000013949666667,0.000026455500000,0.000067528000000,0.000082146000000,0.000027232000000,0.000051726000000,0.000052121000000,0.000206195000000,0.000077010000000,0.000245701000000 +0.000022109500000,0.000208566000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000054887000000,0.000238985000000,0.000075824000000,0.000161158000000 +0.000023493000000,0.000251627000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000068714000000,0.000082541000000,0.000027627000000,0.000053307000000,0.000055282000000,0.000210146000000,0.000080960000000,0.000163134000000 +0.000023295000000,0.000206195000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000065554000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000055282000000,0.000246886000000,0.000075430000000,0.000160763000000 +0.000022505000000,0.000206985000000,0.000066344000000,0.000013423000000,0.000026850500000,0.000065554000000,0.000124417000000,0.000026442000000,0.000052911000000,0.000058047000000,0.000244912000000,0.000078985000000,0.000204220000000 +0.000022505000000,0.000205405000000,0.000063973000000,0.000013423000000,0.000027641000000,0.000066344000000,0.000082936000000,0.000026838000000,0.000054887000000,0.000054886000000,0.000212516000000,0.000075429000000,0.000165504000000 +0.000022505000000,0.000208565000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000068714000000,0.000082541000000,0.000026442000000,0.000053307000000,0.000067133000000,0.000215677000000,0.000075430000000,0.000161554000000 +0.000049764500000,0.000204615000000,0.000065948000000,0.000018822333333,0.000063986000000,0.000067528000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000205010000000,0.000137850000000,0.000164714000000 +0.000022110000000,0.000210541000000,0.000153652000000,0.000013818333333,0.000026653000000,0.000068318000000,0.000082146000000,0.000027232000000,0.000085701000000,0.000054096000000,0.000282837000000,0.000077405000000,0.000230293000000 +0.000022505000000,0.000246096000000,0.000080960000000,0.000013686333333,0.000027048500000,0.000066343000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000217652000000,0.000075430000000,0.000159577000000 +0.000023097500000,0.000207776000000,0.000081751000000,0.000013423333333,0.000026850500000,0.000065553000000,0.000113356000000,0.000027232000000,0.000054887000000,0.000051726000000,0.000267034000000,0.000077010000000,0.000162343000000 +0.000022505000000,0.000206195000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000069899000000,0.000149306000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000471282000000,0.000075035000000,0.000164319000000 +0.000023492500000,0.000206195000000,0.000063577000000,0.000013818000000,0.000026653000000,0.000068319000000,0.000101504000000,0.000026837000000,0.000052911000000,0.000054492000000,0.000227134000000,0.000077405000000,0.000213702000000 +0.000022110000000,0.000209356000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000069899000000,0.000083726000000,0.000026443000000,0.000054096000000,0.000052516000000,0.000253998000000,0.000075034000000,0.000165899000000 +0.000022702500000,0.000207380000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000084121000000,0.000026837000000,0.000124812000000,0.000086096000000,0.000214097000000,0.000110195000000,0.000168269000000 +0.000022505000000,0.000210935000000,0.000078195000000,0.000013423000000,0.000027838500000,0.000065158000000,0.000083331000000,0.000026442000000,0.000054492000000,0.000054887000000,0.000206985000000,0.000076220000000,0.000163528000000 +0.000030604000000,0.000282837000000,0.000063182000000,0.000013818000000,0.000026653000000,0.000064763000000,0.000082541000000,0.000026837000000,0.000111776000000,0.000051726000000,0.000205010000000,0.000075825000000,0.000182492000000 +0.000024085000000,0.000204615000000,0.000063973000000,0.000038048666667,0.000026455500000,0.000066739000000,0.000095973000000,0.000027628000000,0.000071874000000,0.000054097000000,0.000242146000000,0.000077010000000,0.000161553000000 +0.000022505000000,0.000209356000000,0.000063578000000,0.000019349000000,0.000027641000000,0.000065158000000,0.000082541000000,0.000026442000000,0.000069504000000,0.000054886000000,0.000205010000000,0.000075430000000,0.000166294000000 +0.000022110000000,0.000210935000000,0.000065949000000,0.000014213000000,0.000027838500000,0.000066344000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054492000000,0.000208961000000,0.000075430000000,0.000163134000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000013423333333,0.000026653500000,0.000067529000000,0.000082541000000,0.000026837000000,0.000052121000000,0.000052911000000,0.000246886000000,0.000075035000000,0.000164318000000 +0.000024085500000,0.000206195000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000207380000000,0.000077405000000,0.000167480000000 +0.000022109500000,0.000204615000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000082146000000,0.000026442000000,0.000053306000000,0.000054492000000,0.000207381000000,0.000091232000000,0.000166689000000 +0.000022505000000,0.000247282000000,0.000093207000000,0.000014608333333,0.000026850500000,0.000065553000000,0.000084516000000,0.000026837000000,0.000052121000000,0.000083331000000,0.000214096000000,0.000076615000000,0.000161553000000 +0.000022110000000,0.000208961000000,0.000063973000000,0.000013554666667,0.000027640500000,0.000065948000000,0.000129948000000,0.000059232000000,0.000116911000000,0.000053306000000,0.000250046000000,0.000077010000000,0.000160763000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000013950000000,0.000056282500000,0.000066343000000,0.000082541000000,0.000054096000000,0.000054097000000,0.000053702000000,0.000212121000000,0.000076615000000,0.000414788000000 +0.000053122000000,0.000207380000000,0.000063578000000,0.000029357333333,0.000078209000000,0.000069108000000,0.000090837000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000210936000000,0.000075430000000,0.000288763000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000013949666667,0.000034356500000,0.000069108000000,0.000082935000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000253603000000,0.000075035000000,0.000356713000000 +0.000022505000000,0.000211726000000,0.000065948000000,0.000013555000000,0.000027443500000,0.000067529000000,0.000082146000000,0.000026838000000,0.000052517000000,0.000053306000000,0.000205405000000,0.000076615000000,0.000343677000000 +0.000023493000000,0.000212516000000,0.000064368000000,0.000013818000000,0.000027048000000,0.000066343000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000051726000000,0.000206985000000,0.000111776000000,0.000252417000000 +0.000022900000000,0.000240171000000,0.000063578000000,0.000013818000000,0.000036924500000,0.000066343000000,0.000082541000000,0.000026838000000,0.000051726000000,0.000051331000000,0.000210936000000,0.000075430000000,0.000186837000000 +0.000023097500000,0.000207381000000,0.000065948000000,0.000013555000000,0.000026653000000,0.000067133000000,0.000118491000000,0.000026837000000,0.000052911000000,0.000090837000000,0.000255182000000,0.000075034000000,0.000210936000000 +0.000023295000000,0.000212516000000,0.000063973000000,0.000013950000000,0.000027048500000,0.000067923000000,0.000082936000000,0.000026837000000,0.000052516000000,0.000052517000000,0.000210935000000,0.000077405000000,0.000448763000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000067134000000,0.000084121000000,0.000026442000000,0.000110195000000,0.000054887000000,0.000209355000000,0.000077405000000,0.000209751000000 +0.000022505000000,0.000212121000000,0.000067924000000,0.000013554666667,0.000028233000000,0.000065554000000,0.000083726000000,0.000028022000000,0.000056072000000,0.000056072000000,0.000246887000000,0.000077010000000,0.000252813000000 +0.000032184000000,0.000206985000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000065948000000,0.000082541000000,0.000041455000000,0.000058442000000,0.000054886000000,0.000206590000000,0.000076615000000,0.000176960000000 +0.000022505000000,0.000210936000000,0.000066344000000,0.000013423000000,0.000026653000000,0.000064763000000,0.000084121000000,0.000026837000000,0.000054491000000,0.000057257000000,0.000205010000000,0.000075034000000,0.000232269000000 +0.000022110000000,0.000210935000000,0.000065553000000,0.000014740000000,0.000026455500000,0.000073060000000,0.000083726000000,0.000026837000000,0.000054886000000,0.000054887000000,0.000205010000000,0.000129158000000,0.000220813000000 +0.000022505000000,0.000211331000000,0.000083726000000,0.000013818000000,0.000026653500000,0.000067529000000,0.000116911000000,0.000026837000000,0.000055677000000,0.000052911000000,0.000244516000000,0.000090442000000,0.000170244000000 +0.000022110000000,0.000206986000000,0.000065948000000,0.000013949666667,0.000043246000000,0.000066738000000,0.000084516000000,0.000026442000000,0.000057652000000,0.000075035000000,0.000208566000000,0.000075429000000,0.000163134000000 +0.000022110000000,0.000204220000000,0.000063973000000,0.000013950000000,0.000027048500000,0.000065553000000,0.000084516000000,0.000026838000000,0.000056466000000,0.000054096000000,0.000202640000000,0.000075430000000,0.000162343000000 +0.000023097500000,0.000265850000000,0.000063183000000,0.000013554666667,0.000026653000000,0.000065553000000,0.000084516000000,0.000026442000000,0.000056467000000,0.000054097000000,0.000238195000000,0.000077010000000,0.000189998000000 +0.000023492500000,0.000204614000000,0.000065948000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000082540000000,0.000026838000000,0.000056072000000,0.000051726000000,0.000205404000000,0.000076615000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000062788000000,0.000013423000000,0.000026653000000,0.000067528000000,0.000082541000000,0.000027627000000,0.000056862000000,0.000054887000000,0.000204615000000,0.000097158000000,0.000160368000000 +0.000022110000000,0.000210541000000,0.000065948000000,0.000014081333333,0.000026653000000,0.000066738000000,0.000082541000000,0.000026838000000,0.000056467000000,0.000054886000000,0.000214491000000,0.000076615000000,0.000163133000000 +0.000022900000000,0.000242936000000,0.000065949000000,0.000013950000000,0.000026455500000,0.000069899000000,0.000116121000000,0.000027232000000,0.000056862000000,0.000052516000000,0.000252813000000,0.000076615000000,0.000190788000000 +0.000047986000000,0.000211726000000,0.000135084000000,0.000013818000000,0.000026653500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000056467000000,0.000052912000000,0.000208565000000,0.000077010000000,0.000164318000000 +0.000055690000000,0.000211331000000,0.000065158000000,0.000024616666667,0.000026653000000,0.000066343000000,0.000082146000000,0.000041060000000,0.000057257000000,0.000054886000000,0.000206985000000,0.000075430000000,0.000164319000000 +0.000029616000000,0.000248466000000,0.000063973000000,0.000013949666667,0.000045813500000,0.000065158000000,0.000083331000000,0.000026838000000,0.000056467000000,0.000052121000000,0.000278096000000,0.000075430000000,0.000166294000000 +0.000023098000000,0.000221207000000,0.000065948000000,0.000013949666667,0.000026653500000,0.000065158000000,0.000084516000000,0.000026837000000,0.000058442000000,0.000053701000000,0.000205010000000,0.000077010000000,0.000163134000000 +0.000024085000000,0.000204615000000,0.000064368000000,0.000013423333333,0.000026455500000,0.000065158000000,0.000082541000000,0.000026837000000,0.000088862000000,0.000054887000000,0.000208960000000,0.000075429000000,0.000168269000000 +0.000022505000000,0.000209356000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000067133000000,0.000084911000000,0.000026442000000,0.000056071000000,0.000054886000000,0.000211726000000,0.000110590000000,0.000161948000000 +0.000023295500000,0.000207775000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000067133000000,0.000104664000000,0.000026442000000,0.000057257000000,0.000053306000000,0.000292713000000,0.000077010000000,0.000162738000000 +0.000040875500000,0.000209751000000,0.000063577000000,0.000014345000000,0.000026850500000,0.000067529000000,0.000085701000000,0.000026442000000,0.000060813000000,0.000054886000000,0.000205010000000,0.000075430000000,0.000191578000000 +0.000022505000000,0.000206591000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000084911000000,0.000026442000000,0.000056071000000,0.000054886000000,0.000212516000000,0.000075825000000,0.000205010000000 +0.000022307000000,0.000212516000000,0.000065554000000,0.000013949666667,0.000027048000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000054887000000,0.000054886000000,0.000281652000000,0.000076615000000,0.000164319000000 +0.000022505000000,0.000214492000000,0.000063578000000,0.000013950000000,0.000027641000000,0.000065158000000,0.000084516000000,0.000026443000000,0.000056466000000,0.000071874000000,0.000210936000000,0.000075429000000,0.000202639000000 +0.000023492500000,0.000211331000000,0.000063578000000,0.000013818000000,0.000052134500000,0.000065158000000,0.000082145000000,0.000026442000000,0.000054887000000,0.000053702000000,0.000208565000000,0.000077800000000,0.000163134000000 +0.000022505000000,0.000212121000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000082146000000,0.000082541000000,0.000026837000000,0.000057256000000,0.000054886000000,0.000204615000000,0.000077405000000,0.000163528000000 +0.000022109500000,0.000244516000000,0.000063578000000,0.000013949666667,0.000026850500000,0.000065948000000,0.000082145000000,0.000041849000000,0.000056466000000,0.000054097000000,0.000208961000000,0.000076615000000,0.000164714000000 +0.000022110000000,0.000212516000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000066343000000,0.000083331000000,0.000026442000000,0.000054886000000,0.000053306000000,0.000210541000000,0.000077405000000,0.000163133000000 +0.000022110000000,0.000206195000000,0.000086096000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000082541000000,0.000027232000000,0.000057652000000,0.000051726000000,0.000209750000000,0.000076615000000,0.000181306000000 +0.000022505000000,0.000206195000000,0.000065553000000,0.000015135000000,0.000026653000000,0.000106244000000,0.000082541000000,0.000026837000000,0.000056862000000,0.000051726000000,0.000243331000000,0.000074640000000,0.000160763000000 +0.000032381500000,0.000207380000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000071084000000,0.000082146000000,0.000026443000000,0.000056071000000,0.000052911000000,0.000206986000000,0.000075035000000,0.000160763000000 +0.000023295000000,0.000205405000000,0.000063183000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000027232000000,0.000054887000000,0.000052516000000,0.000214096000000,0.000075430000000,0.000161158000000 +0.000022505000000,0.000213306000000,0.000065553000000,0.000013555000000,0.000036134500000,0.000065158000000,0.000082541000000,0.000026442000000,0.000056862000000,0.000054887000000,0.000224763000000,0.000077405000000,0.000159182000000 +0.000022307500000,0.000205405000000,0.000066344000000,0.000013423000000,0.000027640500000,0.000065158000000,0.000082541000000,0.000026837000000,0.000054886000000,0.000085306000000,0.000205010000000,0.000109405000000,0.000214096000000 +0.000022702500000,0.000205010000000,0.000065948000000,0.000013423000000,0.000027048000000,0.000065553000000,0.000084122000000,0.000026837000000,0.000057257000000,0.000054887000000,0.000206986000000,0.000075035000000,0.000163924000000 +0.000023097500000,0.000210936000000,0.000063578000000,0.000020139000000,0.000026653000000,0.000065158000000,0.000084516000000,0.000026837000000,0.000055282000000,0.000057652000000,0.000205405000000,0.000075430000000,0.000162343000000 +0.000023098000000,0.000206985000000,0.000065553000000,0.000013423000000,0.000026653000000,0.000067528000000,0.000083331000000,0.000026837000000,0.000056072000000,0.000054886000000,0.000242541000000,0.000077405000000,0.000161553000000 +0.000022110000000,0.000206195000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000082541000000,0.000026837000000,0.000054887000000,0.000053306000000,0.000206985000000,0.000075034000000,0.000249256000000 +0.000022110000000,0.000208961000000,0.000065553000000,0.000013423000000,0.000026653500000,0.000065158000000,0.000083331000000,0.000062393000000,0.000055676000000,0.000054887000000,0.000221207000000,0.000092812000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000013818000000,0.000027246000000,0.000068714000000,0.000081751000000,0.000028023000000,0.000056071000000,0.000054097000000,0.000212911000000,0.000077010000000,0.000163529000000 +0.000022110000000,0.000204615000000,0.000065948000000,0.000013950000000,0.000026850500000,0.000065158000000,0.000084121000000,0.000026838000000,0.000054887000000,0.000113751000000,0.000438096000000,0.000075825000000,0.000164713000000 +0.000022505000000,0.000262689000000,0.000063973000000,0.000013949666667,0.000036925000000,0.000067133000000,0.000098738000000,0.000027232000000,0.000056467000000,0.000051726000000,0.000219627000000,0.000076220000000,0.000199084000000 +0.000024480000000,0.000206590000000,0.000063973000000,0.000013950000000,0.000028233500000,0.000065553000000,0.000082541000000,0.000026442000000,0.000056071000000,0.000054887000000,0.000298639000000,0.000077405000000,0.000161553000000 +0.000022505000000,0.000204615000000,0.000065949000000,0.000013950000000,0.000026456000000,0.000067924000000,0.000085701000000,0.000026442000000,0.000111775000000,0.000054887000000,0.000206985000000,0.000080566000000,0.000167084000000 +0.000022110000000,0.000277701000000,0.000065948000000,0.000014871333333,0.000026653000000,0.000127183000000,0.000083726000000,0.000026442000000,0.000105850000000,0.000052911000000,0.000208960000000,0.000075429000000,0.000162739000000 +0.000022110000000,0.000206195000000,0.000063578000000,0.000013950000000,0.000026456000000,0.000065158000000,0.000084122000000,0.000026837000000,0.000107824000000,0.000053306000000,0.000236219000000,0.000075429000000,0.000197504000000 +0.000022505000000,0.000208566000000,0.000065948000000,0.000030410666667,0.000027641000000,0.000066739000000,0.000083726000000,0.000026442000000,0.000055677000000,0.000055677000000,0.000205009000000,0.000075430000000,0.000160368000000 +0.000022505000000,0.000205800000000,0.000065553000000,0.000013423000000,0.000026456000000,0.000064763000000,0.000082936000000,0.000026838000000,0.000056071000000,0.000053306000000,0.000208960000000,0.000075035000000,0.000164319000000 +0.000022110000000,0.000205010000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000066343000000,0.000148911000000,0.000026837000000,0.000057652000000,0.000124812000000,0.000204219000000,0.000075429000000,0.000163133000000 +0.000024085000000,0.000220418000000,0.000063183000000,0.000014871666667,0.000026850500000,0.000065948000000,0.000082541000000,0.000026442000000,0.000057652000000,0.000054491000000,0.000292714000000,0.000205405000000,0.000162343000000 +0.000022505000000,0.000206985000000,0.000063578000000,0.000014213000000,0.000043443000000,0.000067924000000,0.000083726000000,0.000026442000000,0.000054887000000,0.000054492000000,0.000213306000000,0.000161554000000,0.000174985000000 +0.000022505000000,0.000206195000000,0.000153652000000,0.000013949666667,0.000026455500000,0.000065553000000,0.000082936000000,0.000027232000000,0.000056071000000,0.000053306000000,0.000205404000000,0.000149701000000,0.000161158000000 +0.000022110000000,0.000205010000000,0.000069899000000,0.000013554666667,0.000026653000000,0.000066343000000,0.000082936000000,0.000026837000000,0.000058047000000,0.000054887000000,0.000280466000000,0.000086887000000,0.000163528000000 +0.000022505000000,0.000207775000000,0.000063973000000,0.000013818333333,0.000026653500000,0.000070294000000,0.000082541000000,0.000026442000000,0.000056467000000,0.000054887000000,0.000216071000000,0.000193553000000,0.000164714000000 +0.000022702500000,0.000217652000000,0.000065554000000,0.000015135000000,0.000026850500000,0.000065948000000,0.000103084000000,0.000026442000000,0.000055676000000,0.000054887000000,0.000205010000000,0.000152862000000,0.000356318000000 +0.000022900000000,0.000250837000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000067924000000,0.000096368000000,0.000027627000000,0.000057652000000,0.000052121000000,0.000206985000000,0.000095578000000,0.000316022000000 +0.000023295500000,0.000209751000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000065158000000,0.000081751000000,0.000026837000000,0.000054492000000,0.000098343000000,0.000212516000000,0.000093603000000,0.000172615000000 +0.000022702500000,0.000213701000000,0.000065554000000,0.000013818333333,0.000026455500000,0.000067923000000,0.000090837000000,0.000026837000000,0.000058442000000,0.000106639000000,0.000208171000000,0.000080566000000,0.000465750000000 +0.000022110000000,0.000206590000000,0.000097949000000,0.000013423000000,0.000026653000000,0.000067923000000,0.000082936000000,0.000026837000000,0.000118491000000,0.000124022000000,0.000211331000000,0.000082146000000,0.000165899000000 +0.000022110000000,0.000204615000000,0.000067528000000,0.000013818333333,0.000045813500000,0.000065948000000,0.000082540000000,0.000027232000000,0.000088072000000,0.000069899000000,0.000309701000000,0.000120862000000,0.000206590000000 +0.000023097500000,0.000206195000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000067134000000,0.000083726000000,0.000026837000000,0.000054886000000,0.000051726000000,0.000222393000000,0.000221207000000,0.000176170000000 +0.000031986500000,0.000216467000000,0.000063578000000,0.000013950000000,0.000026455500000,0.000065159000000,0.000101504000000,0.000026442000000,0.000056467000000,0.000086492000000,0.000209751000000,0.000242936000000,0.000159578000000 +0.000022702500000,0.000218047000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000084121000000,0.000027627000000,0.000056467000000,0.000052912000000,0.000291133000000,0.000112960000000,0.000163133000000 +0.000022307500000,0.000204615000000,0.000065553000000,0.000013818333333,0.000026456000000,0.000066343000000,0.000081356000000,0.000026442000000,0.000056072000000,0.000052516000000,0.000208566000000,0.000077010000000,0.000193949000000 +0.000022110000000,0.000212516000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000067923000000,0.000084516000000,0.000026442000000,0.000056072000000,0.000054491000000,0.000206590000000,0.000077405000000,0.000162343000000 +0.000023492500000,0.000206590000000,0.000066343000000,0.000014739666667,0.000026653000000,0.000065158000000,0.000083331000000,0.000026442000000,0.000056466000000,0.000056466000000,0.000278492000000,0.000109405000000,0.000161948000000 +0.000023097500000,0.000208566000000,0.000065553000000,0.000022246000000,0.000026851000000,0.000065949000000,0.000082541000000,0.000026442000000,0.000055676000000,0.000054887000000,0.000205010000000,0.000077405000000,0.000159973000000 +0.000022505000000,0.000208170000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000067924000000,0.000084121000000,0.000026443000000,0.000056072000000,0.000057652000000,0.000206985000000,0.000075430000000,0.000160368000000 +0.000023493000000,0.000211331000000,0.000065948000000,0.000013818000000,0.000049961500000,0.000067134000000,0.000117307000000,0.000026837000000,0.000055676000000,0.000054492000000,0.000210936000000,0.000075430000000,0.000196318000000 +0.000022307500000,0.000208565000000,0.000063578000000,0.000013950000000,0.000027048000000,0.000065553000000,0.000128368000000,0.000026838000000,0.000056861000000,0.000053306000000,0.000268615000000,0.000075430000000,0.000161159000000 +0.000022505000000,0.000209751000000,0.000065948000000,0.000013949666667,0.000026850500000,0.000065553000000,0.000084517000000,0.000026442000000,0.000060022000000,0.000055282000000,0.000205009000000,0.000077800000000,0.000161158000000 +0.000022505000000,0.000210936000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000068713000000,0.000084121000000,0.000026442000000,0.000058047000000,0.000054491000000,0.000212121000000,0.000075034000000,0.000159578000000 +0.000024085000000,0.000342096000000,0.000063577000000,0.000013423333333,0.000026653500000,0.000065948000000,0.000084121000000,0.000026837000000,0.000058442000000,0.000054096000000,0.000292714000000,0.000078195000000,0.000289553000000 +0.000022505000000,0.000212516000000,0.000097158000000,0.000013949666667,0.000026455500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000056071000000,0.000051726000000,0.000214096000000,0.000094393000000,0.000165899000000 +0.000022110000000,0.000208566000000,0.000063578000000,0.000014871666667,0.000027443000000,0.000067134000000,0.000082541000000,0.000026442000000,0.000056467000000,0.000054492000000,0.000212121000000,0.000079775000000,0.000163528000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013554666667,0.000026455500000,0.000065159000000,0.000153651000000,0.000027627000000,0.000056862000000,0.000054491000000,0.000291133000000,0.000075430000000,0.000163133000000 +0.000022110000000,0.000208171000000,0.000063183000000,0.000013423333333,0.000026653000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000056467000000,0.000052516000000,0.000223973000000,0.000075430000000,0.000249652000000 +0.000022702500000,0.000208961000000,0.000063578000000,0.000013423333333,0.000034554500000,0.000170640000000,0.000084121000000,0.000027628000000,0.000054886000000,0.000052911000000,0.000209356000000,0.000077405000000,0.000163134000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000123232000000,0.000082541000000,0.000026442000000,0.000056466000000,0.000054886000000,0.000242936000000,0.000075430000000,0.000175380000000 +0.000022307500000,0.000208171000000,0.000063578000000,0.000013554666667,0.000026653500000,0.000065553000000,0.000084121000000,0.000026838000000,0.000054492000000,0.000051726000000,0.000210541000000,0.000095183000000,0.000173010000000 +0.000022110000000,0.000210936000000,0.000065948000000,0.000013950000000,0.000027640500000,0.000065949000000,0.000084911000000,0.000026442000000,0.000054491000000,0.000054097000000,0.000214491000000,0.000077010000000,0.000172220000000 +0.000029221500000,0.000213702000000,0.000104269000000,0.000013554666667,0.000026653000000,0.000067134000000,0.000101109000000,0.000026443000000,0.000054886000000,0.000054886000000,0.000216072000000,0.000075825000000,0.000176171000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000084516000000,0.000026837000000,0.000054887000000,0.000054492000000,0.000243331000000,0.000077405000000,0.000174590000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000013949666667,0.000026850500000,0.000065553000000,0.000083331000000,0.000026837000000,0.000056071000000,0.000051726000000,0.000205405000000,0.000075825000000,0.000171035000000 +0.000023295000000,0.000221207000000,0.000063973000000,0.000014213333333,0.000026653500000,0.000067134000000,0.000085702000000,0.000026442000000,0.000056072000000,0.000054887000000,0.000204220000000,0.000076615000000,0.000180912000000 +0.000022307000000,0.000209751000000,0.000063578000000,0.000013554666667,0.000026455500000,0.000067133000000,0.000084911000000,0.000026837000000,0.000067528000000,0.000054887000000,0.000246887000000,0.000075430000000,0.000176961000000 +0.000031986500000,0.000206985000000,0.000068319000000,0.000013949666667,0.000026653500000,0.000064763000000,0.000082146000000,0.000026442000000,0.000051331000000,0.000054491000000,0.000221998000000,0.000093208000000,0.000172614000000 +0.000032184000000,0.000204614000000,0.000065553000000,0.000019875666667,0.000026653000000,0.000067529000000,0.000084516000000,0.000026837000000,0.000052516000000,0.000087676000000,0.000206195000000,0.000076615000000,0.000172220000000 +0.000023888000000,0.000206195000000,0.000100714000000,0.000013423000000,0.000026850500000,0.000065554000000,0.000083331000000,0.000026442000000,0.000053306000000,0.000054097000000,0.000204220000000,0.000077010000000,0.000173405000000 +0.000024875000000,0.000204615000000,0.000062787000000,0.000013423000000,0.000026456000000,0.000065158000000,0.000095973000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000239775000000,0.000077010000000,0.000173405000000 +0.000040875500000,0.000205800000000,0.000063578000000,0.000014739666667,0.000026653500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054097000000,0.000208565000000,0.000075430000000,0.000171430000000 +0.000031196500000,0.000206590000000,0.000063578000000,0.000013949666667,0.000027838500000,0.000065158000000,0.000083726000000,0.000026838000000,0.000053306000000,0.000053306000000,0.000213702000000,0.000075430000000,0.000170639000000 +0.000030011000000,0.000204614000000,0.000067528000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000109010000000,0.000051726000000,0.000229899000000,0.000075430000000,0.000206985000000 +0.000023295000000,0.000205010000000,0.000063973000000,0.000013423333333,0.000026653000000,0.000065158000000,0.000082936000000,0.000026837000000,0.000055281000000,0.000051727000000,0.000205800000000,0.000075430000000,0.000173404000000 +0.000023097500000,0.000207380000000,0.000063578000000,0.000013555000000,0.000026850500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000056072000000,0.000052911000000,0.000210541000000,0.000129948000000,0.000176171000000 +0.000022505000000,0.000206985000000,0.000067528000000,0.000013949666667,0.000034357000000,0.000065158000000,0.000137060000000,0.000027232000000,0.000074245000000,0.000052516000000,0.000206195000000,0.000075430000000,0.000173800000000 +0.000022307500000,0.000208566000000,0.000113355000000,0.000013818000000,0.000026456000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000104665000000,0.000069109000000,0.000238986000000,0.000075429000000,0.000172219000000 +0.000052925000000,0.000209751000000,0.000063183000000,0.000025933333333,0.000026851000000,0.000065158000000,0.000082541000000,0.000028417000000,0.000052912000000,0.000055282000000,0.000209750000000,0.000075430000000,0.000173010000000 +0.000028628500000,0.000205800000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000065554000000,0.000084516000000,0.000046590000000,0.000071084000000,0.000054886000000,0.000208961000000,0.000075430000000,0.000171035000000 +0.000022110000000,0.000207380000000,0.000066343000000,0.000013949666667,0.000027048500000,0.000065948000000,0.000084516000000,0.000026442000000,0.000053307000000,0.000057652000000,0.000211331000000,0.000075035000000,0.000173010000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013818000000,0.000027641000000,0.000066344000000,0.000083331000000,0.000026442000000,0.000052912000000,0.000054886000000,0.000212911000000,0.000075430000000,0.000170640000000 +0.000023295000000,0.000209355000000,0.000065948000000,0.000015135000000,0.000026850500000,0.000066344000000,0.000082541000000,0.000026837000000,0.000088466000000,0.000053306000000,0.000221603000000,0.000075430000000,0.000171430000000 +0.000023295500000,0.000204614000000,0.000065553000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000152467000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000204615000000,0.000077010000000,0.000177356000000 +0.000022109500000,0.000262293000000,0.000062788000000,0.000013423333333,0.000043443500000,0.000065158000000,0.000082541000000,0.000026838000000,0.000052911000000,0.000054097000000,0.000238590000000,0.000075824000000,0.000171430000000 +0.000022505000000,0.000210935000000,0.000063972000000,0.000013554666667,0.000027048000000,0.000067133000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000054492000000,0.000204615000000,0.000078196000000,0.000170640000000 +0.000023887500000,0.000207775000000,0.000065553000000,0.000013554666667,0.000026455500000,0.000066343000000,0.000082936000000,0.000026443000000,0.000051726000000,0.000051726000000,0.000390293000000,0.000075034000000,0.000171825000000 +0.000023097500000,0.000205405000000,0.000063578000000,0.000013949666667,0.000026456000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000053306000000,0.000054887000000,0.000240960000000,0.000076615000000,0.000173405000000 +0.000061221000000,0.000206195000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000065948000000,0.000085306000000,0.000026442000000,0.000070294000000,0.000054886000000,0.000206986000000,0.000077010000000,0.000176170000000 +0.000022505000000,0.000210935000000,0.000063973000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000084121000000,0.000026838000000,0.000052516000000,0.000052121000000,0.000207775000000,0.000075825000000,0.000214887000000 +0.000022505000000,0.000207775000000,0.000063973000000,0.000014345000000,0.000026455500000,0.000068714000000,0.000097948000000,0.000026442000000,0.000052911000000,0.000052912000000,0.000297454000000,0.000151281000000,0.000178541000000 +0.000022505000000,0.000210936000000,0.000063973000000,0.000014739666667,0.000027838500000,0.000066343000000,0.000084121000000,0.000026837000000,0.000054491000000,0.000054886000000,0.000206985000000,0.000164319000000,0.000173405000000 +0.000022702500000,0.000208566000000,0.000083331000000,0.000013555000000,0.000026653000000,0.000066344000000,0.000082146000000,0.000026442000000,0.000056862000000,0.000051726000000,0.000204615000000,0.000105454000000,0.000172615000000 +0.000022505500000,0.000327479000000,0.000076615000000,0.000013950000000,0.000036924500000,0.000066344000000,0.000082936000000,0.000027628000000,0.000054097000000,0.000053701000000,0.000208566000000,0.000077010000000,0.000171429000000 +0.000022505000000,0.000209750000000,0.000062788000000,0.000013554666667,0.000027640500000,0.000066739000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000075035000000,0.000219232000000,0.000075430000000,0.000176565000000 +0.000022307500000,0.000210935000000,0.000065949000000,0.000013949666667,0.000027838000000,0.000065553000000,0.000083726000000,0.000026838000000,0.000052912000000,0.000054886000000,0.000208566000000,0.000075430000000,0.000176566000000 +0.000022109500000,0.000259528000000,0.000063578000000,0.000013555000000,0.000026455500000,0.000087281000000,0.000082541000000,0.000026837000000,0.000054887000000,0.000051726000000,0.000213701000000,0.000075825000000,0.000173405000000 +0.000021912500000,0.000206195000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000068714000000,0.000150491000000,0.000026837000000,0.000054096000000,0.000054886000000,0.000241356000000,0.000114146000000,0.000176565000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000064763000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000207776000000,0.000106245000000,0.000174590000000 +0.000022505000000,0.000212121000000,0.000063577000000,0.000036468333333,0.000026850500000,0.000065158000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000204615000000,0.000075430000000,0.000171825000000 +0.000022900000000,0.000208961000000,0.000097553000000,0.000013423000000,0.000027641000000,0.000065949000000,0.000081355000000,0.000026443000000,0.000052911000000,0.000052121000000,0.000216467000000,0.000076615000000,0.000170244000000 +0.000022110000000,0.000204615000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000245701000000,0.000172220000000,0.000162344000000 +0.000022110000000,0.000207380000000,0.000063578000000,0.000014213000000,0.000036332000000,0.000066344000000,0.000091232000000,0.000026838000000,0.000051331000000,0.000055282000000,0.000211726000000,0.000090047000000,0.000197109000000 +0.000023097500000,0.000241356000000,0.000063578000000,0.000015135000000,0.000033567000000,0.000066344000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000141800000000,0.000220417000000,0.000076220000000,0.000163529000000 +0.000023492500000,0.000211726000000,0.000063973000000,0.000013818333333,0.000027443500000,0.000073059000000,0.000116121000000,0.000043034000000,0.000052121000000,0.000053307000000,0.000252418000000,0.000132319000000,0.000162344000000 +0.000022307500000,0.000212911000000,0.000063973000000,0.000013818000000,0.000026850500000,0.000064763000000,0.000084516000000,0.000042639000000,0.000054097000000,0.000051331000000,0.000206985000000,0.000129158000000,0.000161948000000 +0.000022109500000,0.000205009000000,0.000063973000000,0.000013554666667,0.000027048000000,0.000069109000000,0.000082936000000,0.000028418000000,0.000081751000000,0.000051726000000,0.000210935000000,0.000075825000000,0.000183281000000 +0.000022307500000,0.000207380000000,0.000065159000000,0.000013818333333,0.000026455500000,0.000066738000000,0.000084516000000,0.000041060000000,0.000051726000000,0.000052911000000,0.000205009000000,0.000110591000000,0.000162739000000 +0.000022110000000,0.000212911000000,0.000109010000000,0.000013554666667,0.000026653500000,0.000067923000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000052517000000,0.000261108000000,0.000075034000000,0.000163134000000 +0.000022702500000,0.000205010000000,0.000063578000000,0.000025143333333,0.000028431000000,0.000065158000000,0.000084121000000,0.000026442000000,0.000051726000000,0.000054492000000,0.000209355000000,0.000077010000000,0.000162738000000 +0.000022505000000,0.000267824000000,0.000067923000000,0.000013818000000,0.000029814000000,0.000065948000000,0.000083726000000,0.000027628000000,0.000051726000000,0.000056862000000,0.000212911000000,0.000077010000000,0.000162343000000 +0.000022900000000,0.000206985000000,0.000065158000000,0.000013818333333,0.000049566500000,0.000082541000000,0.000152467000000,0.000026442000000,0.000054097000000,0.000088861000000,0.000240960000000,0.000076220000000,0.000178145000000 +0.000022110000000,0.000211330000000,0.000065948000000,0.000013818000000,0.000040875500000,0.000069503000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000057652000000,0.000205010000000,0.000077010000000,0.000160763000000 +0.000022505000000,0.000210936000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000065948000000,0.000083726000000,0.000046195000000,0.000051726000000,0.000054887000000,0.000205405000000,0.000077010000000,0.000161949000000 +0.000022900000000,0.000226738000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000068714000000,0.000083331000000,0.000039874000000,0.000074245000000,0.000052911000000,0.000210936000000,0.000077010000000,0.000169849000000 +0.000022110000000,0.000206985000000,0.000099924000000,0.000013950000000,0.000026653000000,0.000068318000000,0.000084911000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000242146000000,0.000077010000000,0.000255578000000 +0.000022505000000,0.000221208000000,0.000063578000000,0.000013818000000,0.000027048500000,0.000066738000000,0.000084911000000,0.000026837000000,0.000052121000000,0.000054096000000,0.000202640000000,0.000075430000000,0.000191577000000 +0.000023097500000,0.000206590000000,0.000064368000000,0.000013818333333,0.000026850500000,0.000065553000000,0.000084517000000,0.000026838000000,0.000052911000000,0.000054491000000,0.000210935000000,0.000077010000000,0.000161553000000 +0.000029813500000,0.000204615000000,0.000066343000000,0.000013423000000,0.000026455500000,0.000065948000000,0.000096763000000,0.000026442000000,0.000053701000000,0.000051726000000,0.000238590000000,0.000076220000000,0.000162343000000 +0.000022307500000,0.000241751000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065554000000,0.000082540000000,0.000028022000000,0.000052911000000,0.000054492000000,0.000204615000000,0.000075825000000,0.000235825000000 +0.000022505000000,0.000210541000000,0.000065948000000,0.000024616666667,0.000026653000000,0.000069899000000,0.000082146000000,0.000026837000000,0.000054491000000,0.000122047000000,0.000221208000000,0.000075430000000,0.000163924000000 +0.000022505000000,0.000209355000000,0.000065949000000,0.000013818000000,0.000026850500000,0.000067923000000,0.000082936000000,0.000027627000000,0.000052912000000,0.000052516000000,0.000203430000000,0.000075430000000,0.000162343000000 +0.000023295500000,0.000212121000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000066738000000,0.000083726000000,0.000026837000000,0.000052911000000,0.000053306000000,0.000242145000000,0.000141405000000,0.000167874000000 +0.000022505000000,0.000262294000000,0.000115331000000,0.000013949666667,0.000026653500000,0.000068319000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000072664000000,0.000207381000000,0.000077405000000,0.000233059000000 +0.000022505000000,0.000213306000000,0.000063183000000,0.000013818333333,0.000026653500000,0.000066344000000,0.000083726000000,0.000026838000000,0.000051726000000,0.000051331000000,0.000206985000000,0.000077010000000,0.000167084000000 +0.000022702500000,0.000220813000000,0.000065949000000,0.000014345000000,0.000026653500000,0.000067923000000,0.000168270000000,0.000040270000000,0.000052911000000,0.000054096000000,0.000225158000000,0.000077010000000,0.000162738000000 +0.000022900000000,0.000255182000000,0.000063578000000,0.000013950000000,0.000026851000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000637207000000,0.000077010000000,0.000169454000000 +0.000022110000000,0.000209355000000,0.000063973000000,0.000013949666667,0.000028430500000,0.000064763000000,0.000084911000000,0.000026442000000,0.000054491000000,0.000054491000000,0.000285602000000,0.000075824000000,0.000251232000000 +0.000030801000000,0.000207775000000,0.000063578000000,0.000013423000000,0.000027048500000,0.000069109000000,0.000084517000000,0.000026442000000,0.000053307000000,0.000051331000000,0.000214492000000,0.000075430000000,0.000162343000000 +0.000022307500000,0.000248466000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000065553000000,0.000085701000000,0.000046590000000,0.000052121000000,0.000054886000000,0.000240566000000,0.000077010000000,0.000163529000000 +0.000022702500000,0.000515528000000,0.000082541000000,0.000014344666667,0.000026653000000,0.000067924000000,0.000084516000000,0.000040664000000,0.000054491000000,0.000054886000000,0.000275726000000,0.000090443000000,0.000165504000000 +0.000022702500000,0.000223973000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000209750000000,0.000075825000000,0.000232269000000 +0.000022110000000,0.000214097000000,0.000063973000000,0.000013818333333,0.000027443000000,0.000066738000000,0.000097553000000,0.000026442000000,0.000054886000000,0.000051331000000,0.000203035000000,0.000077010000000,0.000162738000000 +0.000022505000000,0.000211331000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000067528000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000054097000000,0.000292714000000,0.000075430000000,0.000163134000000 +0.000023493000000,0.000212911000000,0.000063578000000,0.000014213333333,0.000026653500000,0.000065158000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000204615000000,0.000077010000000,0.000163133000000 +0.000022505000000,0.000210146000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000082541000000,0.000026838000000,0.000053307000000,0.000054097000000,0.000208566000000,0.000075430000000,0.000215281000000 +0.000022110000000,0.000212911000000,0.000065948000000,0.000014871666667,0.000026455500000,0.000065158000000,0.000083726000000,0.000071874000000,0.000055676000000,0.000087676000000,0.000244911000000,0.000075035000000,0.000162738000000 +0.000022505000000,0.000206195000000,0.000065948000000,0.000013818333333,0.000026653000000,0.000101504000000,0.000082145000000,0.000040270000000,0.000052911000000,0.000051726000000,0.000209751000000,0.000190788000000,0.000161158000000 +0.000029221000000,0.000206195000000,0.000140615000000,0.000013554666667,0.000028233500000,0.000067528000000,0.000120861000000,0.000026442000000,0.000053307000000,0.000051726000000,0.000209750000000,0.000077405000000,0.000165504000000 +0.000021912500000,0.000208566000000,0.000063578000000,0.000014081666667,0.000026653500000,0.000066343000000,0.000201850000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000206590000000,0.000075430000000,0.000229504000000 +0.000022307500000,0.000205405000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000066343000000,0.000087281000000,0.000026837000000,0.000051331000000,0.000052517000000,0.000254788000000,0.000077010000000,0.000160368000000 +0.000022702500000,0.000206590000000,0.000083726000000,0.000025406666667,0.000026653500000,0.000067133000000,0.000082541000000,0.000026838000000,0.000052912000000,0.000054492000000,0.000205010000000,0.000076615000000,0.000158787000000 +0.000022702500000,0.000204615000000,0.000065553000000,0.000013423000000,0.000027641000000,0.000065553000000,0.000082540000000,0.000026837000000,0.000056072000000,0.000055677000000,0.000204615000000,0.000075429000000,0.000164319000000 +0.000022307500000,0.000205010000000,0.000065553000000,0.000014739666667,0.000050554500000,0.000064763000000,0.000083331000000,0.000026838000000,0.000052912000000,0.000054886000000,0.000206985000000,0.000088466000000,0.000164318000000 +0.000022702500000,0.000210540000000,0.000063973000000,0.000013818333333,0.000026455500000,0.000069504000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000058047000000,0.000218442000000,0.000079775000000,0.000240960000000 +0.000022110000000,0.000206985000000,0.000099528000000,0.000013950000000,0.000026653000000,0.000068714000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000088467000000,0.000208566000000,0.000079775000000,0.000160763000000 +0.000022900000000,0.000240961000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065949000000,0.000082540000000,0.000027232000000,0.000053307000000,0.000053307000000,0.000207380000000,0.000081750000000,0.000164319000000 +0.000023097500000,0.000209751000000,0.000065949000000,0.000014871666667,0.000026456000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000054887000000,0.000255183000000,0.000080170000000,0.000232269000000 +0.000061418500000,0.000204615000000,0.000065553000000,0.000013949666667,0.000027246000000,0.000066738000000,0.000082146000000,0.000027627000000,0.000051726000000,0.000054097000000,0.000212912000000,0.000082146000000,0.000163528000000 +0.000023097500000,0.000204615000000,0.000065553000000,0.000014608333333,0.000026653000000,0.000066739000000,0.000084121000000,0.000026837000000,0.000051727000000,0.000054096000000,0.000204615000000,0.000080565000000,0.000164318000000 +0.000022307500000,0.000207380000000,0.000063973000000,0.000013818000000,0.000026455500000,0.000065554000000,0.000082936000000,0.000026443000000,0.000071084000000,0.000051331000000,0.000225158000000,0.000083331000000,0.000163924000000 +0.000022505000000,0.000206195000000,0.000064368000000,0.000013818000000,0.000026653500000,0.000065553000000,0.000095972000000,0.000026442000000,0.000052121000000,0.000054492000000,0.000217257000000,0.000082146000000,0.000236614000000 +0.000022703000000,0.000204614000000,0.000065948000000,0.000018558666667,0.000044628500000,0.000066343000000,0.000084911000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000219232000000,0.000088072000000,0.000202640000000 +0.000023887500000,0.000206985000000,0.000155627000000,0.000013423333333,0.000026653000000,0.000069109000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000052516000000,0.000221602000000,0.000081750000000,0.000162343000000 +0.000022110000000,0.000206195000000,0.000181306000000,0.000013950000000,0.000026455500000,0.000066738000000,0.000084121000000,0.000026838000000,0.000052911000000,0.000052911000000,0.000251627000000,0.000080170000000,0.000163923000000 +0.000022505000000,0.000208961000000,0.000106245000000,0.000015135000000,0.000027640500000,0.000070689000000,0.000083331000000,0.000026837000000,0.000053306000000,0.000055282000000,0.000217257000000,0.000086096000000,0.000194344000000 +0.000022505000000,0.000205010000000,0.000069899000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000082541000000,0.000026837000000,0.000051331000000,0.000051726000000,0.000221207000000,0.000084121000000,0.000164319000000 +0.000023097500000,0.000205800000000,0.000099529000000,0.000013949666667,0.000026653000000,0.000068319000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000054097000000,0.000217257000000,0.000081751000000,0.000163133000000 +0.000022110000000,0.000220022000000,0.000063578000000,0.000013423000000,0.000026850500000,0.000068714000000,0.000157603000000,0.000026442000000,0.000052912000000,0.000054886000000,0.000221603000000,0.000114541000000,0.000162738000000 +0.000022110000000,0.000207380000000,0.000063973000000,0.000014081666667,0.000026653500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000226343000000,0.000080170000000,0.000195923000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000013423000000,0.000026851000000,0.000065949000000,0.000082936000000,0.000026442000000,0.000053306000000,0.000052121000000,0.000217651000000,0.000080171000000,0.000160368000000 +0.000023295000000,0.000212516000000,0.000065949000000,0.000013423333333,0.000044628500000,0.000066344000000,0.000082936000000,0.000026837000000,0.000052912000000,0.000054886000000,0.000221602000000,0.000082541000000,0.000163133000000 +0.000022110000000,0.000208171000000,0.000063973000000,0.000018164000000,0.000026653000000,0.000065158000000,0.000081751000000,0.000026442000000,0.000052911000000,0.000073454000000,0.000228318000000,0.000079775000000,0.000164714000000 +0.000022505000000,0.000223183000000,0.000065554000000,0.000013423000000,0.000026653500000,0.000067923000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000217257000000,0.000081356000000,0.000159973000000 +0.000022505000000,0.000215282000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000082936000000,0.000027627000000,0.000052121000000,0.000051726000000,0.000400960000000,0.000080961000000,0.000159183000000 +0.000022900500000,0.000209751000000,0.000077801000000,0.000013818333333,0.000026653500000,0.000066738000000,0.000118492000000,0.000026443000000,0.000052911000000,0.000054097000000,0.000393059000000,0.000080170000000,0.000159973000000 +0.000022702500000,0.000214096000000,0.000065948000000,0.000013554666667,0.000026653000000,0.000066738000000,0.000091232000000,0.000026442000000,0.000054096000000,0.000054886000000,0.000254393000000,0.000079775000000,0.000162344000000 +0.000022505000000,0.000205800000000,0.000063578000000,0.000013423333333,0.000026653500000,0.000065554000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000053702000000,0.000224368000000,0.000079776000000,0.000164318000000 +0.000022702500000,0.000258738000000,0.000063577000000,0.000014345000000,0.000028036000000,0.000065159000000,0.000082145000000,0.000026837000000,0.000073455000000,0.000053306000000,0.000222393000000,0.000080566000000,0.000216862000000 +0.000022110000000,0.000206195000000,0.000063578000000,0.000013950000000,0.000026850500000,0.000065553000000,0.000084911000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000255973000000,0.000086491000000,0.000162739000000 +0.000022702500000,0.000216466000000,0.000063578000000,0.000013423000000,0.000044430500000,0.000124417000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000052121000000,0.000222787000000,0.000081356000000,0.000159973000000 +0.000024085500000,0.000219232000000,0.000065948000000,0.000013818000000,0.000026455500000,0.000067133000000,0.000084912000000,0.000028022000000,0.000056071000000,0.000088862000000,0.000219232000000,0.000082146000000,0.000162738000000 +0.000022702500000,0.000205010000000,0.000065553000000,0.000013818000000,0.000027048500000,0.000066738000000,0.000115726000000,0.000046985000000,0.000053701000000,0.000052911000000,0.000221207000000,0.000080171000000,0.000207775000000 +0.000022702500000,0.000212911000000,0.000063973000000,0.000020666000000,0.000026653000000,0.000065158000000,0.000084516000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000219232000000,0.000082145000000,0.000161948000000 +0.000022505000000,0.000205800000000,0.000065948000000,0.000014213000000,0.000026653000000,0.000066343000000,0.000083331000000,0.000026442000000,0.000053701000000,0.000055676000000,0.000221602000000,0.000080565000000,0.000161948000000 +0.000022109500000,0.000229899000000,0.000066343000000,0.000018954000000,0.000026653500000,0.000065158000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000217652000000,0.000081750000000,0.000160763000000 +0.000022110000000,0.000221997000000,0.000063577000000,0.000013423333333,0.000026850500000,0.000068713000000,0.000084516000000,0.000026442000000,0.000053306000000,0.000057652000000,0.000219627000000,0.000081751000000,0.000159973000000 +0.000022505000000,0.000285602000000,0.000065553000000,0.000013949666667,0.000026653000000,0.000097159000000,0.000083331000000,0.000026442000000,0.000072665000000,0.000054886000000,0.000223578000000,0.000081356000000,0.000162344000000 +0.000030209000000,0.000244911000000,0.000063183000000,0.000013818333333,0.000026456000000,0.000067134000000,0.000083331000000,0.000026442000000,0.000052911000000,0.000052912000000,0.000216071000000,0.000082541000000,0.000161553000000 +0.000022505000000,0.000209751000000,0.000066343000000,0.000013949666667,0.000044628500000,0.000065553000000,0.000172615000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000253208000000,0.000081356000000,0.000161158000000 +0.000022110000000,0.000210936000000,0.000084912000000,0.000013949666667,0.000026653000000,0.000065949000000,0.000084516000000,0.000026442000000,0.000053307000000,0.000053702000000,0.000225553000000,0.000080961000000,0.000159578000000 +0.000022505000000,0.000210936000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000084121000000,0.000026442000000,0.000051726000000,0.000054097000000,0.000219627000000,0.000080170000000,0.000249652000000 +0.000022110000000,0.000212516000000,0.000063578000000,0.000013818000000,0.000026851000000,0.000067528000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000226738000000,0.000082936000000,0.000165504000000 +0.000022307500000,0.000208566000000,0.000063972000000,0.000013818333333,0.000027641000000,0.000065553000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054096000000,0.000225158000000,0.000078986000000,0.000163134000000 +0.000022307500000,0.000204615000000,0.000063578000000,0.000013423333333,0.000026653500000,0.000065158000000,0.000082540000000,0.000029998000000,0.000054887000000,0.000054887000000,0.000223578000000,0.000080566000000,0.000163133000000 +0.000022110000000,0.000208961000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000069109000000,0.000082146000000,0.000026838000000,0.000052911000000,0.000052517000000,0.000217256000000,0.000079776000000,0.000291923000000 +0.000022109500000,0.000209356000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000067924000000,0.000083331000000,0.000027627000000,0.000095973000000,0.000052911000000,0.000256763000000,0.000081356000000,0.000189208000000 +0.000022505000000,0.000204615000000,0.000063182000000,0.000014345000000,0.000026455500000,0.000067528000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054492000000,0.000221603000000,0.000079380000000,0.000172615000000 +0.000067739500000,0.000207381000000,0.000097554000000,0.000013818333333,0.000049764500000,0.000065948000000,0.000083726000000,0.000026838000000,0.000106245000000,0.000071084000000,0.000222788000000,0.000080565000000,0.000282837000000 +0.000032579000000,0.000212121000000,0.000065948000000,0.000013949666667,0.000027641000000,0.000065948000000,0.000084911000000,0.000026442000000,0.000073060000000,0.000054096000000,0.000268615000000,0.000082145000000,0.000349997000000 +0.000029616000000,0.000214096000000,0.000065553000000,0.000013818333333,0.000026653000000,0.000065158000000,0.000082145000000,0.000026443000000,0.000052122000000,0.000054886000000,0.000229108000000,0.000082936000000,0.000259134000000 +0.000022307500000,0.000205009000000,0.000065553000000,0.000020007333333,0.000027048500000,0.000066739000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000222393000000,0.000080171000000,0.000193158000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000017637000000,0.000026653000000,0.000065553000000,0.000084121000000,0.000026837000000,0.000053306000000,0.000051726000000,0.000239380000000,0.000079776000000,0.000175776000000 +0.000022110000000,0.000221602000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000066738000000,0.000085306000000,0.000027232000000,0.000051726000000,0.000054492000000,0.000216862000000,0.000078986000000,0.000160763000000 +0.000022702500000,0.000209750000000,0.000063183000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000084912000000,0.000026837000000,0.000158788000000,0.000054887000000,0.000225948000000,0.000079381000000,0.000216071000000 +0.000031591500000,0.000205800000000,0.000068319000000,0.000013818333333,0.000026653000000,0.000069109000000,0.000082541000000,0.000026838000000,0.000068319000000,0.000054887000000,0.000235825000000,0.000080566000000,0.000233455000000 +0.000048776500000,0.000205800000000,0.000099528000000,0.000013949666667,0.000026653500000,0.000065554000000,0.000084121000000,0.000027233000000,0.000056861000000,0.000051726000000,0.000233849000000,0.000080961000000,0.000179726000000 +0.000042060500000,0.000205800000000,0.000065949000000,0.000013950000000,0.000052135000000,0.000066343000000,0.000083331000000,0.000026837000000,0.000053306000000,0.000087677000000,0.000216467000000,0.000131528000000,0.000246096000000 +0.000024085500000,0.000204220000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000069899000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000218837000000,0.000080171000000,0.000176960000000 +0.000022110000000,0.000205010000000,0.000063973000000,0.000014740000000,0.000027245500000,0.000067923000000,0.000082541000000,0.000026442000000,0.000052121000000,0.000054097000000,0.000255973000000,0.000082146000000,0.000162344000000 +0.000022110000000,0.000260714000000,0.000063578000000,0.000013818000000,0.000027838500000,0.000065948000000,0.000148121000000,0.000026442000000,0.000051726000000,0.000053306000000,0.000226739000000,0.000244911000000,0.000161158000000 +0.000022307500000,0.000204220000000,0.000067924000000,0.000013949666667,0.000026653000000,0.000065553000000,0.000082541000000,0.000026838000000,0.000053307000000,0.000051726000000,0.000223972000000,0.000109010000000,0.000208565000000 +0.000022702500000,0.000205010000000,0.000063973000000,0.000013950000000,0.000027048000000,0.000067529000000,0.000082541000000,0.000026837000000,0.000068714000000,0.000051727000000,0.000218837000000,0.000081751000000,0.000164714000000 +0.000024085000000,0.000247281000000,0.000063973000000,0.000013423333333,0.000026850500000,0.000067134000000,0.000082145000000,0.000026442000000,0.000054096000000,0.000052911000000,0.000223577000000,0.000081750000000,0.000165899000000 +0.000022307500000,0.000238590000000,0.000068318000000,0.000013950000000,0.000026455500000,0.000068713000000,0.000082146000000,0.000027232000000,0.000052122000000,0.000052516000000,0.000218442000000,0.000081751000000,0.000163528000000 +0.000038900000000,0.000208171000000,0.000063973000000,0.000013818000000,0.000036332500000,0.000066738000000,0.000082541000000,0.000026838000000,0.000052516000000,0.000054886000000,0.000217652000000,0.000079381000000,0.000195134000000 +0.000023888000000,0.000208961000000,0.000063183000000,0.000013950000000,0.000026653000000,0.000064763000000,0.000082936000000,0.000027628000000,0.000052911000000,0.000125998000000,0.000256763000000,0.000086492000000,0.000162738000000 +0.000022702500000,0.000205800000000,0.000063578000000,0.000024879666667,0.000026455500000,0.000064763000000,0.000083726000000,0.000026442000000,0.000052121000000,0.000070689000000,0.000221602000000,0.000079380000000,0.000160367000000 +0.000023295000000,0.000206985000000,0.000065948000000,0.000022641333333,0.000027048000000,0.000066739000000,0.000084121000000,0.000057652000000,0.000052911000000,0.000057652000000,0.000223578000000,0.000084121000000,0.000163924000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013423000000,0.000027640500000,0.000066344000000,0.000083331000000,0.000026837000000,0.000053306000000,0.000054886000000,0.000260713000000,0.000080171000000,0.000163133000000 +0.000022505000000,0.000209356000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000069899000000,0.000082540000000,0.000026837000000,0.000052911000000,0.000053307000000,0.000235035000000,0.000079380000000,0.000161948000000 +0.000022110000000,0.000204615000000,0.000065948000000,0.000020666000000,0.000026653500000,0.000067529000000,0.000082146000000,0.000026442000000,0.000122047000000,0.000055282000000,0.000217256000000,0.000079775000000,0.000167084000000 +0.000022110000000,0.000210541000000,0.000063577000000,0.000013950000000,0.000026455500000,0.000066739000000,0.000082541000000,0.000027627000000,0.000051726000000,0.000053702000000,0.000237405000000,0.000081751000000,0.000161158000000 +0.000022110000000,0.000211330000000,0.000064368000000,0.000013554666667,0.000027048000000,0.000065158000000,0.000084121000000,0.000026443000000,0.000051726000000,0.000074639000000,0.000436121000000,0.000079775000000,0.000159973000000 +0.000023097500000,0.000252022000000,0.000065948000000,0.000013554666667,0.000026653500000,0.000065554000000,0.000082936000000,0.000026837000000,0.000054887000000,0.000051331000000,0.000221602000000,0.000081355000000,0.000196319000000 +0.000032776500000,0.000205800000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000069899000000,0.000082146000000,0.000026442000000,0.000052912000000,0.000054491000000,0.000220022000000,0.000110985000000,0.000162738000000 +0.000022110000000,0.000206195000000,0.000103084000000,0.000013818000000,0.000026653000000,0.000068319000000,0.000085306000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000219628000000,0.000076615000000,0.000167084000000 +0.000022110000000,0.000210540000000,0.000077800000000,0.000013818000000,0.000026455500000,0.000066739000000,0.000084121000000,0.000026837000000,0.000053701000000,0.000052516000000,0.000219627000000,0.000074639000000,0.000165899000000 +0.000022505000000,0.000206590000000,0.000063973000000,0.000013818000000,0.000026455500000,0.000086097000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000052911000000,0.000227923000000,0.000076615000000,0.000202639000000 +0.000023295000000,0.000211331000000,0.000063973000000,0.000013423333333,0.000027838500000,0.000100318000000,0.000083331000000,0.000045405000000,0.000051726000000,0.000055282000000,0.000219232000000,0.000075825000000,0.000163134000000 +0.000022505000000,0.000208566000000,0.000063577000000,0.000013818333333,0.000026455500000,0.000081356000000,0.000082540000000,0.000028418000000,0.000052911000000,0.000051726000000,0.000217257000000,0.000075034000000,0.000163133000000 +0.000024085000000,0.000205405000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000066738000000,0.000112961000000,0.000029602000000,0.000052911000000,0.000054097000000,0.000221207000000,0.000077010000000,0.000161948000000 +0.000022110000000,0.000229503000000,0.000063973000000,0.000013950000000,0.000027641000000,0.000065158000000,0.000082935000000,0.000028418000000,0.000054491000000,0.000088466000000,0.000284812000000,0.000075430000000,0.000187627000000 +0.000022505000000,0.000224368000000,0.000065948000000,0.000013423000000,0.000027641000000,0.000066343000000,0.000083331000000,0.000028418000000,0.000051727000000,0.000054887000000,0.000221602000000,0.000148121000000,0.000165899000000 +0.000022110000000,0.000229109000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000066344000000,0.000082541000000,0.000028417000000,0.000051726000000,0.000052121000000,0.000226739000000,0.000075035000000,0.000165504000000 +0.000024085500000,0.000206195000000,0.000065949000000,0.000013818333333,0.000027048000000,0.000065949000000,0.000082541000000,0.000028023000000,0.000052911000000,0.000054887000000,0.000220813000000,0.000077405000000,0.000167479000000 +0.000029418500000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000066343000000,0.000082541000000,0.000028417000000,0.000053306000000,0.000054492000000,0.000220022000000,0.000077405000000,0.000165109000000 +0.000022110000000,0.000211726000000,0.000063973000000,0.000014608333333,0.000026653000000,0.000065553000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000225948000000,0.000077010000000,0.000161158000000 +0.000022505000000,0.000209750000000,0.000063973000000,0.000013554666667,0.000027838000000,0.000066344000000,0.000131924000000,0.000026442000000,0.000052911000000,0.000051331000000,0.000229899000000,0.000077010000000,0.000160368000000 +0.000022110000000,0.000204614000000,0.000063578000000,0.000014081666667,0.000026653000000,0.000069109000000,0.000082936000000,0.000026442000000,0.000084516000000,0.000053701000000,0.000224763000000,0.000076220000000,0.000161948000000 +0.000022702500000,0.000207380000000,0.000063577000000,0.000013949666667,0.000026456000000,0.000069108000000,0.000091233000000,0.000061207000000,0.000052121000000,0.000165108000000,0.000223973000000,0.000139825000000,0.000163134000000 +0.000023492500000,0.000205800000000,0.000063578000000,0.000013818000000,0.000026455500000,0.000066343000000,0.000082540000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000233455000000,0.000094788000000,0.000306145000000 +0.000022505000000,0.000211725000000,0.000065553000000,0.000044369333333,0.000027640500000,0.000067924000000,0.000082146000000,0.000026442000000,0.000052516000000,0.000072269000000,0.000218047000000,0.000092022000000,0.000179331000000 +0.000023492500000,0.000213306000000,0.000063973000000,0.000037127000000,0.000026653000000,0.000066739000000,0.000115331000000,0.000027232000000,0.000052911000000,0.000066738000000,0.000219232000000,0.000078590000000,0.000162343000000 +0.000022702500000,0.000204615000000,0.000097158000000,0.000019612333333,0.000027245500000,0.000065553000000,0.000082540000000,0.000026837000000,0.000051726000000,0.000051726000000,0.000223973000000,0.000075034000000,0.000162343000000 +0.000039492500000,0.000244911000000,0.000065553000000,0.000014476333333,0.000026455500000,0.000067133000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000052912000000,0.000219232000000,0.000075825000000,0.000161948000000 +0.000022702500000,0.000212121000000,0.000063578000000,0.000013950000000,0.000026456000000,0.000065553000000,0.000082146000000,0.000027232000000,0.000052911000000,0.000052516000000,0.000223578000000,0.000077405000000,0.000163133000000 +0.000022307500000,0.000204615000000,0.000063578000000,0.000013818000000,0.000026851000000,0.000067133000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000088466000000,0.000221998000000,0.000091233000000,0.000164714000000 +0.000022505000000,0.000210936000000,0.000067923000000,0.000019876000000,0.000028233500000,0.000065158000000,0.000083331000000,0.000028418000000,0.000052911000000,0.000056862000000,0.000225948000000,0.000077010000000,0.000162738000000 +0.000022110000000,0.000208171000000,0.000065553000000,0.000018559000000,0.000026653000000,0.000065948000000,0.000082541000000,0.000026837000000,0.000055282000000,0.000054886000000,0.000219232000000,0.000077010000000,0.000248861000000 +0.000022110000000,0.000210936000000,0.000081751000000,0.000013423000000,0.000026456000000,0.000065553000000,0.000084516000000,0.000026837000000,0.000051331000000,0.000058047000000,0.000217652000000,0.000077010000000,0.000160763000000 +0.000022505000000,0.000210936000000,0.000084517000000,0.000014871666667,0.000026653000000,0.000066344000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000217257000000,0.000075430000000,0.000162738000000 +0.000022505000000,0.000212516000000,0.000063578000000,0.000013818000000,0.000027048000000,0.000069108000000,0.000152861000000,0.000064763000000,0.000052517000000,0.000053306000000,0.000223972000000,0.000075825000000,0.000169850000000 +0.000022505000000,0.000207380000000,0.000065949000000,0.000013818000000,0.000026455500000,0.000066738000000,0.000100318000000,0.000047381000000,0.000054492000000,0.000054492000000,0.000221207000000,0.000075035000000,0.000247281000000 +0.000022110000000,0.000204220000000,0.000063578000000,0.000013949666667,0.000027443500000,0.000065159000000,0.000084516000000,0.000061208000000,0.000052911000000,0.000054096000000,0.000215282000000,0.000113356000000,0.000162343000000 +0.000039887500000,0.000216072000000,0.000063973000000,0.000013554666667,0.000026653500000,0.000065158000000,0.000084516000000,0.000041849000000,0.000052517000000,0.000054492000000,0.000243331000000,0.000135084000000,0.000160368000000 +0.000023295000000,0.000349997000000,0.000065949000000,0.000013818000000,0.000026653500000,0.000065948000000,0.000082541000000,0.000026838000000,0.000052911000000,0.000067133000000,0.000217652000000,0.000092417000000,0.000162344000000 +0.000022110000000,0.000252813000000,0.000063578000000,0.000013555000000,0.000026653000000,0.000067133000000,0.000082541000000,0.000027627000000,0.000067923000000,0.000054886000000,0.000217257000000,0.000077405000000,0.000203034000000 +0.000022307500000,0.000210146000000,0.000065554000000,0.000020402666667,0.000026653000000,0.000066344000000,0.000082936000000,0.000027233000000,0.000052911000000,0.000055282000000,0.000241750000000,0.000076615000000,0.000163529000000 +0.000023295500000,0.000245307000000,0.000106639000000,0.000013950000000,0.000026653000000,0.000069109000000,0.000082146000000,0.000027232000000,0.000053307000000,0.000052912000000,0.000218442000000,0.000077010000000,0.000161948000000 +0.000022109500000,0.000211726000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000065158000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000052911000000,0.000208960000000,0.000076615000000,0.000260713000000 +0.000022505000000,0.000211331000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000066738000000,0.000082541000000,0.000026442000000,0.000054097000000,0.000054887000000,0.000206985000000,0.000075429000000,0.000194738000000 +0.000022702500000,0.000250442000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000065158000000,0.000083726000000,0.000028022000000,0.000053307000000,0.000051726000000,0.000240960000000,0.000075430000000,0.000233850000000 +0.000023295000000,0.000221207000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065554000000,0.000085307000000,0.000026442000000,0.000054886000000,0.000053701000000,0.000205010000000,0.000077010000000,0.000162738000000 +0.000023493000000,0.000204615000000,0.000063972000000,0.000013423333333,0.000026455500000,0.000065553000000,0.000082146000000,0.000026443000000,0.000053307000000,0.000054492000000,0.000208566000000,0.000075430000000,0.000272565000000 +0.000022505000000,0.000209356000000,0.000064368000000,0.000013949666667,0.000026653500000,0.000067134000000,0.000084911000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000211331000000,0.000077010000000,0.000161554000000 +0.000023295000000,0.000207776000000,0.000063578000000,0.000013423000000,0.000036925000000,0.000067529000000,0.000084121000000,0.000026837000000,0.000068319000000,0.000052121000000,0.000255183000000,0.000076219000000,0.000162344000000 +0.000024085500000,0.000209750000000,0.000097158000000,0.000014345000000,0.000028628000000,0.000066343000000,0.000085701000000,0.000026442000000,0.000057257000000,0.000055282000000,0.000205010000000,0.000075825000000,0.000163528000000 +0.000022505000000,0.000206195000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000084122000000,0.000026442000000,0.000052911000000,0.000054492000000,0.000211726000000,0.000109405000000,0.000198689000000 +0.000023295000000,0.000242541000000,0.000065948000000,0.000018427333333,0.000026653000000,0.000065158000000,0.000082541000000,0.000026838000000,0.000051726000000,0.000054886000000,0.000243331000000,0.000076220000000,0.000164319000000 +0.000022505000000,0.000214096000000,0.000063973000000,0.000013950000000,0.000027443500000,0.000065554000000,0.000084122000000,0.000026442000000,0.000053306000000,0.000051726000000,0.000203035000000,0.000075430000000,0.000163133000000 +0.000023492500000,0.000211330000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000064763000000,0.000083726000000,0.000026442000000,0.000051331000000,0.000054096000000,0.000208960000000,0.000077405000000,0.000163134000000 +0.000022702500000,0.000212516000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000066739000000,0.000082935000000,0.000026837000000,0.000054491000000,0.000054491000000,0.000255577000000,0.000077010000000,0.000197503000000 +0.000022307500000,0.000246886000000,0.000063578000000,0.000013949666667,0.000026456000000,0.000066344000000,0.000082541000000,0.000075825000000,0.000052911000000,0.000073454000000,0.000242935000000,0.000077010000000,0.000164319000000 +0.000022110000000,0.000212516000000,0.000065948000000,0.000013950000000,0.000026850500000,0.000066739000000,0.000084121000000,0.000026442000000,0.000070294000000,0.000066739000000,0.000210540000000,0.000077405000000,0.000162343000000 +0.000022110000000,0.000206195000000,0.000079380000000,0.000013818333333,0.000026455500000,0.000068319000000,0.000082541000000,0.000027627000000,0.000054096000000,0.000051726000000,0.000209356000000,0.000076615000000,0.000161554000000 +0.000022505000000,0.000263479000000,0.000065553000000,0.000015135000000,0.000026653500000,0.000068319000000,0.000082936000000,0.000026442000000,0.000053701000000,0.000051726000000,0.000243331000000,0.000146541000000,0.000219233000000 +0.000022505000000,0.000207380000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000067924000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000052911000000,0.000206985000000,0.000074640000000,0.000161158000000 +0.000022702500000,0.000205405000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082540000000,0.000026442000000,0.000051331000000,0.000052516000000,0.000214096000000,0.000075430000000,0.000159972000000 +0.000022505000000,0.000230294000000,0.000065948000000,0.000013555000000,0.000026653000000,0.000065158000000,0.000098343000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000205009000000,0.000077010000000,0.000160368000000 +0.000022307500000,0.000204615000000,0.000065553000000,0.000013423333333,0.000027640500000,0.000065158000000,0.000082146000000,0.000026442000000,0.000051726000000,0.000056467000000,0.000238590000000,0.000075430000000,0.000164319000000 +0.000022702500000,0.000205010000000,0.000065948000000,0.000013423000000,0.000027048000000,0.000065553000000,0.000083726000000,0.000026443000000,0.000053307000000,0.000054887000000,0.000206590000000,0.000075825000000,0.000163923000000 +0.000022505000000,0.000210936000000,0.000097553000000,0.000013423000000,0.000026456000000,0.000065553000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000072665000000,0.000205405000000,0.000075429000000,0.000161948000000 +0.000022702500000,0.000244516000000,0.000065949000000,0.000013423000000,0.000026455500000,0.000066343000000,0.000082936000000,0.000026837000000,0.000086492000000,0.000054886000000,0.000242146000000,0.000096763000000,0.000161553000000 +0.000022307500000,0.000205405000000,0.000063578000000,0.000013818000000,0.000026653500000,0.000066738000000,0.000082540000000,0.000046196000000,0.000051726000000,0.000053306000000,0.000206986000000,0.000074639000000,0.000164714000000 +0.000022110000000,0.000209751000000,0.000065948000000,0.000013554666667,0.000026653000000,0.000065158000000,0.000082541000000,0.000040664000000,0.000052911000000,0.000054886000000,0.000221208000000,0.000077010000000,0.000196714000000 +0.000022702500000,0.000204614000000,0.000065553000000,0.000013950000000,0.000027245500000,0.000069109000000,0.000095973000000,0.000027627000000,0.000053306000000,0.000054096000000,0.000212911000000,0.000076615000000,0.000163528000000 +0.000022307500000,0.000205010000000,0.000065949000000,0.000013818333333,0.000027048000000,0.000065158000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000054492000000,0.000238985000000,0.000075035000000,0.000164318000000 +0.000022505000000,0.000206985000000,0.000064368000000,0.000013949666667,0.000026653000000,0.000067134000000,0.000082145000000,0.000026837000000,0.000053702000000,0.000051726000000,0.000205010000000,0.000074640000000,0.000162739000000 +0.000024480500000,0.000206195000000,0.000063973000000,0.000013950000000,0.000027048500000,0.000065553000000,0.000082541000000,0.000026837000000,0.000053306000000,0.000054887000000,0.000205009000000,0.000077010000000,0.000336960000000 +0.000022505000000,0.000242146000000,0.000099529000000,0.000013818000000,0.000026456000000,0.000066739000000,0.000085306000000,0.000026837000000,0.000052911000000,0.000068319000000,0.000225553000000,0.000081356000000,0.000306936000000 +0.000022110000000,0.000206985000000,0.000065948000000,0.000014871666667,0.000026653500000,0.000065553000000,0.000084121000000,0.000026442000000,0.000054491000000,0.000052516000000,0.000384762000000,0.000108220000000,0.000196319000000 +0.000022109500000,0.000206195000000,0.000063578000000,0.000013949666667,0.000026653500000,0.000065553000000,0.000084516000000,0.000028417000000,0.000129158000000,0.000052911000000,0.000203034000000,0.000075430000000,0.000164318000000 +0.000022505000000,0.000208960000000,0.000065948000000,0.000013818333333,0.000027641000000,0.000066344000000,0.000083331000000,0.000026837000000,0.000104269000000,0.000054886000000,0.000238590000000,0.000075430000000,0.000159577000000 +0.000022702500000,0.000242146000000,0.000065553000000,0.000013423333333,0.000026653500000,0.000065948000000,0.000082541000000,0.000026838000000,0.000083726000000,0.000052121000000,0.000208565000000,0.000075430000000,0.000164319000000 +0.000022110000000,0.000204615000000,0.000065949000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082146000000,0.000081355000000,0.000067529000000,0.000053702000000,0.000204220000000,0.000076220000000,0.000163133000000 +0.000039295000000,0.000220418000000,0.000063578000000,0.000014740000000,0.000052727000000,0.000064368000000,0.000082146000000,0.000026837000000,0.000054492000000,0.000054887000000,0.000208960000000,0.000075824000000,0.000208565000000 +0.000022110000000,0.000244911000000,0.000063578000000,0.000014213333333,0.000028233500000,0.000068318000000,0.000083331000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000213701000000,0.000077405000000,0.000161158000000 +0.000022702500000,0.000205010000000,0.000077010000000,0.000013950000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000053701000000,0.000205010000000,0.000075035000000,0.000161158000000 +0.000022110000000,0.000204615000000,0.000065553000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000082936000000,0.000026837000000,0.000054886000000,0.000054887000000,0.000208961000000,0.000090837000000,0.000162343000000 +0.000022900000000,0.000207776000000,0.000063973000000,0.000025011666667,0.000026456000000,0.000070294000000,0.000128763000000,0.000026837000000,0.000052912000000,0.000054886000000,0.000249652000000,0.000076615000000,0.000249652000000 +0.000022505000000,0.000254787000000,0.000065553000000,0.000015003333333,0.000026653000000,0.000065949000000,0.000084517000000,0.000026443000000,0.000052516000000,0.000054492000000,0.000205405000000,0.000077010000000,0.000160763000000 +0.000022702500000,0.000214491000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000067529000000,0.000082541000000,0.000027627000000,0.000054491000000,0.000051331000000,0.000206986000000,0.000135479000000,0.000160368000000 +0.000022702500000,0.000209750000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000065554000000,0.000082145000000,0.000026442000000,0.000051726000000,0.000054097000000,0.000214491000000,0.000080170000000,0.000159578000000 +0.000022505000000,0.000346047000000,0.000065948000000,0.000013949666667,0.000026455500000,0.000067529000000,0.000088467000000,0.000026442000000,0.000055282000000,0.000054886000000,0.000208565000000,0.000075824000000,0.000247677000000 +0.000022307500000,0.000365010000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000068319000000,0.000082936000000,0.000026837000000,0.000051331000000,0.000054097000000,0.000211726000000,0.000076220000000,0.000164713000000 +0.000030208500000,0.000205405000000,0.000063182000000,0.000013818000000,0.000027838000000,0.000067529000000,0.000082146000000,0.000026442000000,0.000052121000000,0.000053306000000,0.000209751000000,0.000078590000000,0.000166689000000 +0.000024678000000,0.000206590000000,0.000063578000000,0.000013818000000,0.000026850500000,0.000065158000000,0.000118097000000,0.000070294000000,0.000051331000000,0.000105455000000,0.000242936000000,0.000077010000000,0.000162343000000 +0.000026060500000,0.000216466000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000065553000000,0.000082541000000,0.000026442000000,0.000053306000000,0.000052121000000,0.000209751000000,0.000075825000000,0.000244121000000 +0.000024085500000,0.000218047000000,0.000065553000000,0.000013423000000,0.000027048000000,0.000064763000000,0.000084121000000,0.000027627000000,0.000052911000000,0.000053307000000,0.000206590000000,0.000075430000000,0.000162738000000 +0.000024480500000,0.000205405000000,0.000065553000000,0.000013949666667,0.000026850500000,0.000067923000000,0.000082145000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000208566000000,0.000077010000000,0.000173405000000 +0.000022110000000,0.000212911000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000080171000000,0.000084911000000,0.000026442000000,0.000053307000000,0.000054886000000,0.000206985000000,0.000077010000000,0.000162343000000 +0.000023097500000,0.000205405000000,0.000065553000000,0.000014739666667,0.000056283000000,0.000065554000000,0.000084121000000,0.000026443000000,0.000117306000000,0.000056467000000,0.000208960000000,0.000074640000000,0.000324319000000 +0.000022505000000,0.000208961000000,0.000084516000000,0.000013554666667,0.000033764000000,0.000065553000000,0.000082541000000,0.000026442000000,0.000052122000000,0.000054887000000,0.000205009000000,0.000167479000000,0.000161159000000 +0.000022505000000,0.000208170000000,0.000100714000000,0.000013949666667,0.000026850500000,0.000067528000000,0.000118491000000,0.000026442000000,0.000052516000000,0.000057652000000,0.000253998000000,0.000093603000000,0.000159973000000 +0.000030011500000,0.000211331000000,0.000082145000000,0.000013818333333,0.000026850500000,0.000065553000000,0.000083726000000,0.000059627000000,0.000052911000000,0.000054491000000,0.000210540000000,0.000089651000000,0.000163134000000 +0.000022109500000,0.000207380000000,0.000063973000000,0.000013949666667,0.000027048000000,0.000065553000000,0.000191183000000,0.000028418000000,0.000053701000000,0.000067133000000,0.000203429000000,0.000075430000000,0.000233059000000 +0.000022110000000,0.000210935000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065159000000,0.000084517000000,0.000045405000000,0.000056467000000,0.000054887000000,0.000204615000000,0.000077010000000,0.000161553000000 +0.000022505000000,0.000210936000000,0.000065948000000,0.000013423333333,0.000026850500000,0.000068714000000,0.000084121000000,0.000026837000000,0.000054886000000,0.000054096000000,0.000292713000000,0.000075430000000,0.000160368000000 +0.000024283000000,0.000210936000000,0.000063578000000,0.000013554666667,0.000026653500000,0.000065948000000,0.000084121000000,0.000026442000000,0.000054887000000,0.000054097000000,0.000207380000000,0.000077010000000,0.000162738000000 +0.000022505000000,0.000205009000000,0.000097553000000,0.000013949666667,0.000026653500000,0.000065948000000,0.000117306000000,0.000026442000000,0.000052516000000,0.000051726000000,0.000213701000000,0.000075430000000,0.000363430000000 +0.000022110000000,0.000210145000000,0.000063578000000,0.000026065000000,0.000034751500000,0.000065948000000,0.000082936000000,0.000026442000000,0.000052516000000,0.000054492000000,0.000245701000000,0.000075429000000,0.000163528000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000017900333333,0.000026850500000,0.000065553000000,0.000082145000000,0.000027627000000,0.000052516000000,0.000055281000000,0.000205010000000,0.000075429000000,0.000162739000000 +0.000022110000000,0.000207775000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000066344000000,0.000082146000000,0.000026442000000,0.000053306000000,0.000052516000000,0.000205010000000,0.000075034000000,0.000205009000000 +0.000022505000000,0.000229108000000,0.000063578000000,0.000013423333333,0.000026653500000,0.000065553000000,0.000083726000000,0.000027627000000,0.000051726000000,0.000088467000000,0.000209356000000,0.000077010000000,0.000162738000000 +0.000039295000000,0.000218837000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000066738000000,0.000082146000000,0.000026443000000,0.000052911000000,0.000054886000000,0.000225158000000,0.000075824000000,0.000162343000000 +0.000022307500000,0.000206985000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000067924000000,0.000083331000000,0.000026837000000,0.000051331000000,0.000051727000000,0.000210541000000,0.000075035000000,0.000163529000000 +0.000022110000000,0.000210936000000,0.000065948000000,0.000013818333333,0.000027443500000,0.000066738000000,0.000120467000000,0.000026837000000,0.000051726000000,0.000054096000000,0.000214491000000,0.000077010000000,0.000161553000000 +0.000022109500000,0.000221998000000,0.000135874000000,0.000013423000000,0.000026455500000,0.000069109000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054492000000,0.000249652000000,0.000088861000000,0.000166294000000 +0.000023295000000,0.000204614000000,0.000065948000000,0.000013818000000,0.000049567000000,0.000065948000000,0.000084911000000,0.000040269000000,0.000051726000000,0.000054886000000,0.000209751000000,0.000077010000000,0.000165109000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000065158000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000205405000000,0.000075430000000,0.000250442000000 +0.000023492500000,0.000221208000000,0.000063973000000,0.000014345000000,0.000026653000000,0.000068714000000,0.000085306000000,0.000027232000000,0.000052516000000,0.000054491000000,0.000203825000000,0.000076615000000,0.000243726000000 +0.000022307500000,0.000209355000000,0.000063578000000,0.000018559000000,0.000027048000000,0.000066343000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000212516000000,0.000075035000000,0.000166294000000 +0.000022505000000,0.000205800000000,0.000068318000000,0.000013950000000,0.000026653500000,0.000065554000000,0.000082936000000,0.000026837000000,0.000051727000000,0.000156417000000,0.000222393000000,0.000075034000000,0.000163528000000 +0.000022505000000,0.000204220000000,0.000065948000000,0.000013423333333,0.000026850500000,0.000066739000000,0.000161158000000,0.000026837000000,0.000052516000000,0.000166689000000,0.000206195000000,0.000076615000000,0.000163529000000 +0.000056875500000,0.000207380000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000083726000000,0.000026442000000,0.000053701000000,0.000156417000000,0.000237405000000,0.000090442000000,0.000232269000000 +0.000040085500000,0.000204615000000,0.000063183000000,0.000013555000000,0.000026455500000,0.000066343000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000171035000000,0.000206195000000,0.000077010000000,0.000162738000000 +0.000023097500000,0.000204220000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026838000000,0.000051331000000,0.000116121000000,0.000208961000000,0.000075430000000,0.000161948000000 +0.000022505000000,0.000206195000000,0.000063577000000,0.000013818000000,0.000175789000000,0.000101504000000,0.000084121000000,0.000027232000000,0.000053307000000,0.000058443000000,0.000214096000000,0.000075034000000,0.000160368000000 +0.000023098000000,0.000242541000000,0.000067923000000,0.000013555000000,0.000040480500000,0.000066343000000,0.000082541000000,0.000026838000000,0.000051331000000,0.000056467000000,0.000210541000000,0.000075035000000,0.000217257000000 +0.000023097500000,0.000205010000000,0.000063972000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000056861000000,0.000205405000000,0.000075429000000,0.000163528000000 +0.000023097500000,0.000206195000000,0.000063578000000,0.000013555000000,0.000026653000000,0.000065949000000,0.000082146000000,0.000026837000000,0.000052912000000,0.000093208000000,0.000210541000000,0.000075429000000,0.000165899000000 +0.000022505000000,0.000207380000000,0.000067924000000,0.000025011333333,0.000026653500000,0.000065553000000,0.000082540000000,0.000027627000000,0.000052121000000,0.000057652000000,0.000239776000000,0.000109010000000,0.000163134000000 +0.000022110000000,0.000208566000000,0.000082936000000,0.000013950000000,0.000026455500000,0.000067529000000,0.000082936000000,0.000026442000000,0.000069504000000,0.000060023000000,0.000205010000000,0.000075430000000,0.000195528000000 +0.000029023500000,0.000208961000000,0.000077010000000,0.000014871666667,0.000026653000000,0.000065158000000,0.000082541000000,0.000027627000000,0.000052911000000,0.000061207000000,0.000209751000000,0.000075429000000,0.000162738000000 +0.000022110000000,0.000205800000000,0.000063182000000,0.000013818000000,0.000026455500000,0.000065158000000,0.000084121000000,0.000026442000000,0.000052516000000,0.000060022000000,0.000209355000000,0.000074639000000,0.000161553000000 +0.000022110000000,0.000208170000000,0.000066343000000,0.000013818333333,0.000026850500000,0.000066343000000,0.000084911000000,0.000026837000000,0.000052912000000,0.000063183000000,0.000210935000000,0.000075430000000,0.000163133000000 +0.000023295500000,0.000204615000000,0.000063973000000,0.000013950000000,0.000027640500000,0.000066343000000,0.000083331000000,0.000080961000000,0.000052912000000,0.000060022000000,0.000212516000000,0.000075429000000,0.000165109000000 +0.000023295000000,0.000208170000000,0.000065553000000,0.000015135000000,0.000026653500000,0.000065948000000,0.000097158000000,0.000028417000000,0.000051726000000,0.000058047000000,0.000221997000000,0.000075430000000,0.000218442000000 +0.000022307500000,0.000204615000000,0.000065948000000,0.000013949666667,0.000026851000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052516000000,0.000109010000000,0.000245702000000,0.000077405000000,0.000186442000000 +0.000022110000000,0.000211726000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000063973000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000058837000000,0.000205009000000,0.000091232000000,0.000170640000000 +0.000022307500000,0.000210936000000,0.000139034000000,0.000020270666667,0.000027048000000,0.000067133000000,0.000084516000000,0.000046195000000,0.000086096000000,0.000059628000000,0.000205010000000,0.000078195000000,0.000170245000000 +0.000023887500000,0.000207380000000,0.000065553000000,0.000014213333333,0.000026653000000,0.000066343000000,0.000082936000000,0.000039875000000,0.000051726000000,0.000056466000000,0.000208566000000,0.000075825000000,0.000171825000000 +0.000022307500000,0.000227133000000,0.000063973000000,0.000013949666667,0.000026653500000,0.000065949000000,0.000082540000000,0.000026837000000,0.000054097000000,0.000059628000000,0.000259134000000,0.000077405000000,0.000172219000000 +0.000049764000000,0.000206591000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000065158000000,0.000085306000000,0.000026442000000,0.000054097000000,0.000060022000000,0.000206590000000,0.000077405000000,0.000176565000000 +0.000029221000000,0.000210540000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000065948000000,0.000117306000000,0.000026837000000,0.000052121000000,0.000057652000000,0.000207380000000,0.000075430000000,0.000176170000000 +0.000022702500000,0.000207380000000,0.000063578000000,0.000014345000000,0.000026850500000,0.000066344000000,0.000084911000000,0.000026442000000,0.000052911000000,0.000057652000000,0.000247676000000,0.000156812000000,0.000178936000000 +0.000022307500000,0.000246492000000,0.000063973000000,0.000014608333333,0.000027838500000,0.000066344000000,0.000084121000000,0.000026837000000,0.000054097000000,0.000060022000000,0.000206985000000,0.000075430000000,0.000172615000000 +0.000022307000000,0.000208960000000,0.000082936000000,0.000013423000000,0.000026455500000,0.000065948000000,0.000082936000000,0.000026442000000,0.000056467000000,0.000057257000000,0.000205010000000,0.000075429000000,0.000173010000000 +0.000022307500000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000081751000000,0.000027627000000,0.000054096000000,0.000074640000000,0.000208565000000,0.000077010000000,0.000171430000000 +0.000022702500000,0.000209356000000,0.000063578000000,0.000013423333333,0.000027838000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000086491000000,0.000058442000000,0.000310096000000,0.000075430000000,0.000173800000000 +0.000022109500000,0.000210936000000,0.000065553000000,0.000013950000000,0.000045616500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000058047000000,0.000208565000000,0.000075825000000,0.000175380000000 +0.000022109500000,0.000208961000000,0.000063577000000,0.000013423000000,0.000026653000000,0.000065159000000,0.000116121000000,0.000026837000000,0.000054886000000,0.000065158000000,0.000213307000000,0.000075034000000,0.000175775000000 +0.000022109500000,0.000206590000000,0.000065948000000,0.000014740000000,0.000026653000000,0.000067134000000,0.000082146000000,0.000057652000000,0.000054886000000,0.000054886000000,0.000221602000000,0.000110590000000,0.000176565000000 +0.000029418500000,0.000205405000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000065158000000,0.000082541000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000238195000000,0.000077010000000,0.000210146000000 +0.000022505000000,0.000212121000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000065553000000,0.000084121000000,0.000026838000000,0.000052121000000,0.000054886000000,0.000214096000000,0.000075825000000,0.000205800000000 +0.000022702500000,0.000208566000000,0.000082541000000,0.000013423000000,0.000027838500000,0.000065949000000,0.000082541000000,0.000026442000000,0.000053306000000,0.000053306000000,0.000287972000000,0.000077010000000,0.000170245000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013950000000,0.000026456000000,0.000065158000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000296665000000,0.000078196000000,0.000171825000000 +0.000022110000000,0.000208170000000,0.000063972000000,0.000013949666667,0.000026653000000,0.000067529000000,0.000091628000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000211331000000,0.000077405000000,0.000172614000000 +0.000022702500000,0.000205405000000,0.000063973000000,0.000015003333333,0.000026653500000,0.000066344000000,0.000101504000000,0.000026837000000,0.000098343000000,0.000054097000000,0.000291529000000,0.000076614000000,0.000174985000000 +0.000023492500000,0.000211330000000,0.000065948000000,0.000013950000000,0.000062011500000,0.000066739000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000053306000000,0.000205800000000,0.000077010000000,0.000172615000000 +0.000023493000000,0.000214096000000,0.000064368000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000084516000000,0.000026837000000,0.000054492000000,0.000051726000000,0.000206985000000,0.000109405000000,0.000173010000000 +0.000022109500000,0.000223973000000,0.000063578000000,0.000013554666667,0.000026850500000,0.000069109000000,0.000082936000000,0.000026837000000,0.000052912000000,0.000051726000000,0.000231084000000,0.000075035000000,0.000173010000000 +0.000022109500000,0.000221207000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000072664000000,0.000204614000000,0.000077010000000,0.000171430000000 +0.000029616500000,0.000212911000000,0.000103874000000,0.000013423000000,0.000026456000000,0.000067924000000,0.000082541000000,0.000046590000000,0.000052911000000,0.000052516000000,0.000211331000000,0.000075825000000,0.000172615000000 +0.000022702500000,0.000415972000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000065554000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000209356000000,0.000077010000000,0.000172615000000 +0.000022307500000,0.000227528000000,0.000067924000000,0.000013950000000,0.000028036000000,0.000065948000000,0.000103084000000,0.000027627000000,0.000051726000000,0.000056467000000,0.000246886000000,0.000077405000000,0.000180911000000 +0.000022900000000,0.000206985000000,0.000065553000000,0.000013950000000,0.000026653500000,0.000065553000000,0.000082541000000,0.000026837000000,0.000054096000000,0.000054886000000,0.000206591000000,0.000075430000000,0.000173405000000 +0.000022505000000,0.000210936000000,0.000065554000000,0.000013950000000,0.000036332500000,0.000068318000000,0.000084516000000,0.000026838000000,0.000120071000000,0.000057652000000,0.000205010000000,0.000150887000000,0.000169849000000 +0.000022505000000,0.000210936000000,0.000065553000000,0.000013818000000,0.000064974000000,0.000069109000000,0.000083726000000,0.000026443000000,0.000051726000000,0.000054887000000,0.000260319000000,0.000125998000000,0.000173009000000 +0.000022900000000,0.000212516000000,0.000063973000000,0.000013686666667,0.000035147000000,0.000068318000000,0.000083331000000,0.000026442000000,0.000054491000000,0.000053306000000,0.000210936000000,0.000081751000000,0.000181306000000 +0.000022110000000,0.000214886000000,0.000065553000000,0.000013950000000,0.000034357000000,0.000068318000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000208961000000,0.000082145000000,0.000173010000000 +0.000022505000000,0.000204615000000,0.000077800000000,0.000013949666667,0.000027245500000,0.000066343000000,0.000084516000000,0.000026442000000,0.000052121000000,0.000122837000000,0.000203035000000,0.000080171000000,0.000171034000000 +0.000022505000000,0.000216467000000,0.000063973000000,0.000013818000000,0.000026851000000,0.000068319000000,0.000118097000000,0.000026443000000,0.000052912000000,0.000054097000000,0.000244516000000,0.000115330000000,0.000169849000000 +0.000039690500000,0.000204615000000,0.000065949000000,0.000013423333333,0.000026653000000,0.000066344000000,0.000082146000000,0.000026837000000,0.000053307000000,0.000051726000000,0.000205010000000,0.000196714000000,0.000173800000000 +0.000022110000000,0.000258738000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000066738000000,0.000082146000000,0.000027627000000,0.000052911000000,0.000054492000000,0.000205010000000,0.000115331000000,0.000170245000000 +0.000023097500000,0.000210540000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000070294000000,0.000082541000000,0.000065158000000,0.000054491000000,0.000055281000000,0.000299430000000,0.000096368000000,0.000173010000000 +0.000022505000000,0.000209355000000,0.000065158000000,0.000013950000000,0.000026455500000,0.000068319000000,0.000082936000000,0.000027232000000,0.000086491000000,0.000052911000000,0.000397010000000,0.000163924000000,0.000171824000000 +0.000022505000000,0.000213306000000,0.000065949000000,0.000013555000000,0.000026455500000,0.000066344000000,0.000083726000000,0.000026837000000,0.000052911000000,0.000052516000000,0.000208565000000,0.000112960000000,0.000174985000000 +0.000022702500000,0.000211331000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000067924000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000240566000000,0.000082146000000,0.000174591000000 +0.000023097500000,0.000213306000000,0.000078590000000,0.000013818000000,0.000026653500000,0.000067133000000,0.000117306000000,0.000026837000000,0.000051726000000,0.000071479000000,0.000206985000000,0.000080961000000,0.000186442000000 +0.000022900000000,0.000221208000000,0.000065553000000,0.000014213333333,0.000026653000000,0.000067923000000,0.000084912000000,0.000026443000000,0.000052911000000,0.000053701000000,0.000205010000000,0.000090837000000,0.000163133000000 +0.000023097500000,0.000205405000000,0.000064368000000,0.000013818333333,0.000026850500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052517000000,0.000054887000000,0.000242146000000,0.000077010000000,0.000188022000000 +0.000022307500000,0.000209751000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000134689000000,0.000084911000000,0.000026837000000,0.000054491000000,0.000054886000000,0.000211331000000,0.000110590000000,0.000161553000000 +0.000061023500000,0.000208171000000,0.000063578000000,0.000025143000000,0.000026653500000,0.000073059000000,0.000083726000000,0.000026442000000,0.000052516000000,0.000053307000000,0.000214491000000,0.000123232000000,0.000162343000000 +0.000030999000000,0.000210145000000,0.000063973000000,0.000013818333333,0.000034357000000,0.000079381000000,0.000085702000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000205009000000,0.000077800000000,0.000162738000000 +0.000029221000000,0.000206590000000,0.000063578000000,0.000014345000000,0.000026653000000,0.000068319000000,0.000084911000000,0.000027233000000,0.000088071000000,0.000054886000000,0.000245701000000,0.000096368000000,0.000165504000000 +0.000022505000000,0.000204614000000,0.000154837000000,0.000013949666667,0.000026653500000,0.000065554000000,0.000154838000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000209750000000,0.000090442000000,0.000177751000000 +0.000022307500000,0.000214491000000,0.000063578000000,0.000013950000000,0.000027640500000,0.000066344000000,0.000199084000000,0.000026837000000,0.000054491000000,0.000051726000000,0.000210540000000,0.000076615000000,0.000163133000000 +0.000022702500000,0.000211726000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000099923000000,0.000026442000000,0.000053701000000,0.000112171000000,0.000249257000000,0.000075825000000,0.000162739000000 +0.000023690500000,0.000212911000000,0.000063578000000,0.000014345000000,0.000027048500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052516000000,0.000054491000000,0.000204615000000,0.000077010000000,0.000163529000000 +0.000022505000000,0.000208960000000,0.000063578000000,0.000013950000000,0.000026455500000,0.000065553000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000053701000000,0.000208960000000,0.000105849000000,0.000197504000000 +0.000022110000000,0.000212516000000,0.000065553000000,0.000014871333333,0.000026653000000,0.000065158000000,0.000083726000000,0.000026837000000,0.000055281000000,0.000053306000000,0.000210541000000,0.000075430000000,0.000162739000000 +0.000045813500000,0.000207380000000,0.000065948000000,0.000013950000000,0.000044826000000,0.000066738000000,0.000096763000000,0.000027232000000,0.000053306000000,0.000051726000000,0.000290343000000,0.000075034000000,0.000161553000000 +0.000022307500000,0.000205800000000,0.000099923000000,0.000013423333333,0.000026653000000,0.000066738000000,0.000082145000000,0.000026837000000,0.000053307000000,0.000051726000000,0.000209751000000,0.000077010000000,0.000165504000000 +0.000022110000000,0.000207380000000,0.000063578000000,0.000047793333333,0.000026455500000,0.000066343000000,0.000082936000000,0.000026442000000,0.000086491000000,0.000052911000000,0.000206986000000,0.000075825000000,0.000207775000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000025275000000,0.000026455500000,0.000066738000000,0.000082935000000,0.000026442000000,0.000051726000000,0.000052911000000,0.000255578000000,0.000077405000000,0.000159973000000 +0.000022505000000,0.000212911000000,0.000065948000000,0.000014740000000,0.000026653500000,0.000068713000000,0.000082936000000,0.000026837000000,0.000052912000000,0.000069109000000,0.000205010000000,0.000077010000000,0.000159973000000 +0.000023097500000,0.000204614000000,0.000065948000000,0.000017900666667,0.000027641000000,0.000065948000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000056072000000,0.000225553000000,0.000113355000000,0.000164319000000 +0.000022307500000,0.000205009000000,0.000066343000000,0.000014871666667,0.000026851000000,0.000066738000000,0.000084516000000,0.000065553000000,0.000053306000000,0.000054492000000,0.000220417000000,0.000075430000000,0.000164713000000 +0.000023097500000,0.000281652000000,0.000064368000000,0.000013950000000,0.000026653000000,0.000069504000000,0.000154047000000,0.000060813000000,0.000051726000000,0.000057257000000,0.000205010000000,0.000074639000000,0.000162343000000 +0.000022505000000,0.000206985000000,0.000066344000000,0.000013950000000,0.000026653000000,0.000065948000000,0.000082541000000,0.000047776000000,0.000051331000000,0.000054886000000,0.000208566000000,0.000075430000000,0.000160763000000 +0.000023097500000,0.000205405000000,0.000097158000000,0.000013949666667,0.000044826000000,0.000065948000000,0.000082541000000,0.000060023000000,0.000053307000000,0.000053306000000,0.000207380000000,0.000077405000000,0.000164319000000 +0.000047986500000,0.000209356000000,0.000065949000000,0.000014740000000,0.000026653500000,0.000065553000000,0.000082936000000,0.000028417000000,0.000054491000000,0.000054887000000,0.000254788000000,0.000075825000000,0.000163528000000 +0.000022307500000,0.000204615000000,0.000065553000000,0.000013950000000,0.000027246000000,0.000066739000000,0.000082541000000,0.000029603000000,0.000070294000000,0.000054097000000,0.000212911000000,0.000077010000000,0.000197504000000 +0.000022505000000,0.000204220000000,0.000065553000000,0.000014476666667,0.000026850500000,0.000066344000000,0.000084121000000,0.000026837000000,0.000052121000000,0.000054096000000,0.000205010000000,0.000075034000000,0.000163924000000 +0.000022505000000,0.000206985000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000065949000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000065553000000,0.000205009000000,0.000093998000000,0.000162738000000 +0.000022109500000,0.000207380000000,0.000063973000000,0.000013818000000,0.000026456000000,0.000065159000000,0.000110195000000,0.000026443000000,0.000051726000000,0.000054491000000,0.000219233000000,0.000077010000000,0.000161553000000 +0.000022505000000,0.000204614000000,0.000065949000000,0.000013818333333,0.000026653000000,0.000066343000000,0.000085306000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000206590000000,0.000081751000000,0.000200664000000 +0.000023888000000,0.000206985000000,0.000065554000000,0.000013423000000,0.000026653000000,0.000066344000000,0.000084121000000,0.000026838000000,0.000052911000000,0.000052516000000,0.000208961000000,0.000077800000000,0.000163134000000 +0.000022109500000,0.000223973000000,0.000079776000000,0.000013949666667,0.000026455500000,0.000066344000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000274146000000,0.000075430000000,0.000197899000000 +0.000023295000000,0.000209751000000,0.000065948000000,0.000015135000000,0.000062208500000,0.000070689000000,0.000083331000000,0.000026442000000,0.000053701000000,0.000054886000000,0.000204615000000,0.000081750000000,0.000159973000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000029488666667,0.000026653000000,0.000066343000000,0.000082145000000,0.000026837000000,0.000051726000000,0.000053307000000,0.000208960000000,0.000078985000000,0.000197503000000 +0.000023097500000,0.000204615000000,0.000065553000000,0.000013818333333,0.000026455500000,0.000067528000000,0.000082146000000,0.000026837000000,0.000090837000000,0.000054096000000,0.000203825000000,0.000110590000000,0.000162344000000 +0.000022110000000,0.000220417000000,0.000063973000000,0.000013423000000,0.000026850500000,0.000065948000000,0.000140220000000,0.000026837000000,0.000056467000000,0.000054886000000,0.000222393000000,0.000076615000000,0.000162343000000 +0.000022110000000,0.000206986000000,0.000063973000000,0.000013949666667,0.000026456000000,0.000096763000000,0.000083726000000,0.000026837000000,0.000055282000000,0.000054492000000,0.000213702000000,0.000075825000000,0.000161158000000 +0.000022109500000,0.000204615000000,0.000063972000000,0.000013423333333,0.000026455500000,0.000066344000000,0.000098343000000,0.000026837000000,0.000056862000000,0.000052121000000,0.000205010000000,0.000075429000000,0.000195134000000 +0.000022505000000,0.000204614000000,0.000065553000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000082146000000,0.000026837000000,0.000057257000000,0.000054887000000,0.000242936000000,0.000078590000000,0.000162738000000 +0.000022505000000,0.000208960000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000065554000000,0.000082936000000,0.000026837000000,0.000052912000000,0.000054887000000,0.000215677000000,0.000075430000000,0.000164713000000 +0.000022702500000,0.000217257000000,0.000065553000000,0.000013423000000,0.000044826000000,0.000068319000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000205010000000,0.000077405000000,0.000159973000000 +0.000022109500000,0.000214492000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000065159000000,0.000082540000000,0.000027628000000,0.000103479000000,0.000051726000000,0.000206985000000,0.000077010000000,0.000159973000000 +0.000023295000000,0.000209751000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000053701000000,0.000228318000000,0.000118492000000,0.000304565000000 +0.000023295000000,0.000214886000000,0.000065553000000,0.000013554666667,0.000026653000000,0.000066738000000,0.000091232000000,0.000026837000000,0.000054097000000,0.000074640000000,0.000208566000000,0.000103479000000,0.000162738000000 +0.000038702500000,0.000206196000000,0.000063973000000,0.000013423000000,0.000026851000000,0.000065553000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000146541000000,0.000211331000000,0.000074640000000,0.000164319000000 +0.000022702500000,0.000204615000000,0.000063183000000,0.000014213333333,0.000028036000000,0.000065158000000,0.000082541000000,0.000026838000000,0.000054096000000,0.000164714000000,0.000244911000000,0.000077010000000,0.000200269000000 +0.000022110000000,0.000206590000000,0.000082936000000,0.000013949666667,0.000027048000000,0.000065158000000,0.000083726000000,0.000026442000000,0.000052912000000,0.000157208000000,0.000208960000000,0.000082146000000,0.000162738000000 +0.000022702500000,0.000216862000000,0.000063183000000,0.000013555000000,0.000027048000000,0.000071480000000,0.000082936000000,0.000026443000000,0.000052911000000,0.000069504000000,0.000209750000000,0.000092022000000,0.000160368000000 +0.000024480500000,0.000218047000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000067133000000,0.000084517000000,0.000027627000000,0.000056467000000,0.000067529000000,0.000206590000000,0.000081751000000,0.000162343000000 +0.000023295000000,0.000204614000000,0.000065553000000,0.000013818333333,0.000044826000000,0.000066739000000,0.000082541000000,0.000026838000000,0.000053702000000,0.000052516000000,0.000242540000000,0.000078985000000,0.000173800000000 +0.000022702500000,0.000206985000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000084121000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000206985000000,0.000081356000000,0.000162738000000 +0.000022900000000,0.000205800000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000068319000000,0.000082936000000,0.000026442000000,0.000109405000000,0.000055676000000,0.000208565000000,0.000079380000000,0.000161948000000 +0.000022307500000,0.000208565000000,0.000065553000000,0.000013818333333,0.000026455500000,0.000100318000000,0.000082541000000,0.000028418000000,0.000052911000000,0.000054887000000,0.000238985000000,0.000082541000000,0.000160367000000 +0.000032184000000,0.000207776000000,0.000063578000000,0.000013423333333,0.000026850500000,0.000068318000000,0.000084121000000,0.000026837000000,0.000053307000000,0.000057652000000,0.000206985000000,0.000080960000000,0.000160763000000 +0.000022505000000,0.000212516000000,0.000099923000000,0.000025143000000,0.000026653000000,0.000065158000000,0.000083331000000,0.000026837000000,0.000052516000000,0.000088467000000,0.000210936000000,0.000080961000000,0.000210146000000 +0.000023493000000,0.000206986000000,0.000063577000000,0.000013818333333,0.000026455500000,0.000067528000000,0.000117306000000,0.000026442000000,0.000052912000000,0.000053306000000,0.000203034000000,0.000081356000000,0.000161158000000 +0.000022505000000,0.000209751000000,0.000065553000000,0.000013950000000,0.000026456000000,0.000065158000000,0.000084121000000,0.000026838000000,0.000052911000000,0.000054887000000,0.000238195000000,0.000080960000000,0.000161948000000 +0.000022110000000,0.000233059000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000099528000000,0.000084516000000,0.000026837000000,0.000052516000000,0.000054096000000,0.000212121000000,0.000079775000000,0.000160368000000 +0.000022110000000,0.000345652000000,0.000063578000000,0.000013818000000,0.000036529500000,0.000065159000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000054492000000,0.000206985000000,0.000079380000000,0.000196713000000 +0.000022505000000,0.000208170000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000067529000000,0.000082146000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000247676000000,0.000081751000000,0.000165109000000 +0.000022505000000,0.000209751000000,0.000063973000000,0.000013818333333,0.000027641000000,0.000065158000000,0.000082541000000,0.000026443000000,0.000065948000000,0.000054097000000,0.000211726000000,0.000079380000000,0.000163529000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000013423333333,0.000026653500000,0.000065158000000,0.000082541000000,0.000027627000000,0.000054886000000,0.000054491000000,0.000203825000000,0.000080171000000,0.000162738000000 +0.000022110000000,0.000208170000000,0.000109800000000,0.000013950000000,0.000026653000000,0.000067133000000,0.000137849000000,0.000026837000000,0.000053306000000,0.000052911000000,0.000205010000000,0.000079776000000,0.000218837000000 +0.000022109500000,0.000208960000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000067133000000,0.000084121000000,0.000047381000000,0.000052911000000,0.000101899000000,0.000265454000000,0.000124813000000,0.000163528000000 +0.000023097500000,0.000242145000000,0.000099134000000,0.000014213333333,0.000026653000000,0.000067134000000,0.000082541000000,0.000026442000000,0.000051331000000,0.000054887000000,0.000209355000000,0.000080171000000,0.000161948000000 +0.000022505000000,0.000206985000000,0.000063578000000,0.000013818333333,0.000026653500000,0.000065158000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000073454000000,0.000210146000000,0.000080171000000,0.000163133000000 +0.000024085000000,0.000210936000000,0.000065948000000,0.000013949666667,0.000027641000000,0.000066343000000,0.000084517000000,0.000026443000000,0.000053306000000,0.000067134000000,0.000363430000000,0.000081751000000,0.000162343000000 +0.000022110000000,0.000215282000000,0.000065949000000,0.000013949666667,0.000047789000000,0.000064368000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000234244000000,0.000082146000000,0.000165503000000 +0.000022505000000,0.000205010000000,0.000065553000000,0.000013423000000,0.000026653500000,0.000198294000000,0.000084912000000,0.000026837000000,0.000051726000000,0.000054492000000,0.000209750000000,0.000080170000000,0.000165504000000 +0.000023493000000,0.000204615000000,0.000110590000000,0.000013423000000,0.000026653500000,0.000104664000000,0.000118096000000,0.000026442000000,0.000086887000000,0.000053306000000,0.000239380000000,0.000079380000000,0.000161553000000 +0.000022505000000,0.000221207000000,0.000064368000000,0.000013423333333,0.000026850500000,0.000083726000000,0.000085702000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000203824000000,0.000079775000000,0.000159973000000 +0.000023295000000,0.000260319000000,0.000063578000000,0.000013949666667,0.000026850500000,0.000065158000000,0.000084911000000,0.000026442000000,0.000054886000000,0.000054887000000,0.000212911000000,0.000080170000000,0.000200269000000 +0.000022110000000,0.000205405000000,0.000068319000000,0.000013950000000,0.000026653000000,0.000066344000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000221998000000,0.000080170000000,0.000162343000000 +0.000039097500000,0.000204615000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000066344000000,0.000084516000000,0.000026837000000,0.000053701000000,0.000053701000000,0.000240566000000,0.000081751000000,0.000162343000000 +0.000022109500000,0.000206590000000,0.000065949000000,0.000013950000000,0.000026455500000,0.000066344000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000054097000000,0.000204219000000,0.000080170000000,0.000163528000000 +0.000024283000000,0.000299824000000,0.000063183000000,0.000025143333333,0.000026653000000,0.000069109000000,0.000082145000000,0.000026442000000,0.000052516000000,0.000054886000000,0.000206590000000,0.000079775000000,0.000213306000000 +0.000022110000000,0.000253208000000,0.000063578000000,0.000014608333333,0.000061221000000,0.000067924000000,0.000176170000000,0.000026837000000,0.000051726000000,0.000054097000000,0.000244911000000,0.000081355000000,0.000161553000000 +0.000022109500000,0.000325503000000,0.000135084000000,0.000013950000000,0.000027838500000,0.000065948000000,0.000227923000000,0.000026442000000,0.000051726000000,0.000053701000000,0.000213702000000,0.000082146000000,0.000160763000000 +0.000048381500000,0.000460220000000,0.000071874000000,0.000013818333333,0.000026653000000,0.000065553000000,0.000101504000000,0.000026837000000,0.000126787000000,0.000051726000000,0.000210146000000,0.000081750000000,0.000162343000000 +0.000022505000000,0.000318393000000,0.000063577000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000095973000000,0.000026837000000,0.000071479000000,0.000071479000000,0.000205800000000,0.000082145000000,0.000197898000000 +0.000023295000000,0.000361849000000,0.000063578000000,0.000013423000000,0.000026850500000,0.000067134000000,0.000082541000000,0.000026442000000,0.000057257000000,0.000052911000000,0.000244121000000,0.000081356000000,0.000165899000000 +0.000022307500000,0.000222393000000,0.000067924000000,0.000013949666667,0.000026850500000,0.000067134000000,0.000082936000000,0.000027628000000,0.000051331000000,0.000052912000000,0.000206195000000,0.000081356000000,0.000163924000000 +0.000022110000000,0.000208170000000,0.000063973000000,0.000013818000000,0.000026456000000,0.000068713000000,0.000082541000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000205010000000,0.000080171000000,0.000161949000000 +0.000058851000000,0.000208961000000,0.000063578000000,0.000013949666667,0.000026456000000,0.000066343000000,0.000082541000000,0.000028022000000,0.000052911000000,0.000056072000000,0.000242935000000,0.000086492000000,0.000162739000000 +0.000046801000000,0.000205405000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000065553000000,0.000083726000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000209356000000,0.000079775000000,0.000176171000000 +0.000030801500000,0.000208171000000,0.000066344000000,0.000013554666667,0.000027048000000,0.000065553000000,0.000084121000000,0.000026442000000,0.000052911000000,0.000057652000000,0.000211331000000,0.000117701000000,0.000163924000000 +0.000023887500000,0.000204615000000,0.000063577000000,0.000013423000000,0.000027838000000,0.000066344000000,0.000083331000000,0.000026837000000,0.000094392000000,0.000054886000000,0.000212911000000,0.000079776000000,0.000164319000000 +0.000023097500000,0.000208566000000,0.000065553000000,0.000013423000000,0.000026653500000,0.000068714000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000053306000000,0.000268220000000,0.000080171000000,0.000200270000000 +0.000022110000000,0.000205010000000,0.000065949000000,0.000013949666667,0.000026653500000,0.000067923000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000058838000000,0.000205010000000,0.000079775000000,0.000166294000000 +0.000032381500000,0.000211726000000,0.000063578000000,0.000013818000000,0.000026850500000,0.000066738000000,0.000082541000000,0.000027627000000,0.000051331000000,0.000057257000000,0.000205010000000,0.000081356000000,0.000161553000000 +0.000022505000000,0.000210936000000,0.000063578000000,0.000013554666667,0.000027245500000,0.000065159000000,0.000084121000000,0.000026442000000,0.000051726000000,0.000057257000000,0.000238985000000,0.000080566000000,0.000159578000000 +0.000022702500000,0.000208170000000,0.000065948000000,0.000013554666667,0.000027048500000,0.000065158000000,0.000082541000000,0.000026837000000,0.000054886000000,0.000054886000000,0.000208961000000,0.000081751000000,0.000161553000000 +0.000023295000000,0.000205800000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000069899000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000058047000000,0.000206985000000,0.000079775000000,0.000177356000000 +0.000022110000000,0.000206590000000,0.000063578000000,0.000013950000000,0.000026455500000,0.000066738000000,0.000084911000000,0.000026442000000,0.000052911000000,0.000058047000000,0.000206985000000,0.000082146000000,0.000167479000000 +0.000022110000000,0.000209750000000,0.000063577000000,0.000013949666667,0.000035344500000,0.000068713000000,0.000084121000000,0.000026442000000,0.000054097000000,0.000056071000000,0.000241356000000,0.000080170000000,0.000165504000000 +0.000022505000000,0.000207380000000,0.000063578000000,0.000013818000000,0.000026455500000,0.000065158000000,0.000122047000000,0.000027232000000,0.000091232000000,0.000056072000000,0.000214097000000,0.000081751000000,0.000168269000000 +0.000022702500000,0.000221997000000,0.000063973000000,0.000024616666667,0.000027838000000,0.000065554000000,0.000083726000000,0.000026838000000,0.000051726000000,0.000058443000000,0.000206985000000,0.000080566000000,0.000197108000000 +0.000022505000000,0.000208960000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000068318000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000238590000000,0.000080171000000,0.000163134000000 +0.000024085000000,0.000204615000000,0.000063973000000,0.000018163666667,0.000026653000000,0.000066738000000,0.000082541000000,0.000027628000000,0.000052516000000,0.000057257000000,0.000208565000000,0.000081356000000,0.000161553000000 +0.000031986500000,0.000209356000000,0.000105454000000,0.000013950000000,0.000027641000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000058442000000,0.000205010000000,0.000079775000000,0.000165503000000 +0.000022307500000,0.000211726000000,0.000065949000000,0.000013554666667,0.000028036000000,0.000066738000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000058047000000,0.000208961000000,0.000079775000000,0.000200269000000 +0.000022110000000,0.000208961000000,0.000063578000000,0.000013423000000,0.000027048000000,0.000066344000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000056467000000,0.000336171000000,0.000095578000000,0.000165108000000 +0.000023888000000,0.000206195000000,0.000065554000000,0.000013818000000,0.000026455500000,0.000066344000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000058047000000,0.000207380000000,0.000082541000000,0.000167479000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000013950000000,0.000035344500000,0.000066344000000,0.000082146000000,0.000026442000000,0.000053307000000,0.000058442000000,0.000207380000000,0.000229898000000,0.000166294000000 +0.000022110000000,0.000212121000000,0.000063973000000,0.000014476666667,0.000026850500000,0.000065158000000,0.000083331000000,0.000026837000000,0.000065948000000,0.000058047000000,0.000238195000000,0.000116121000000,0.000182096000000 +0.000021912500000,0.000208960000000,0.000063973000000,0.000013423000000,0.000045221000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000055677000000,0.000216466000000,0.000082146000000,0.000160763000000 +0.000022110000000,0.000204614000000,0.000063578000000,0.000020666000000,0.000026455500000,0.000066738000000,0.000082541000000,0.000026838000000,0.000054097000000,0.000057257000000,0.000212516000000,0.000081751000000,0.000162343000000 +0.000022505000000,0.000208170000000,0.000114145000000,0.000013818000000,0.000026653000000,0.000068714000000,0.000088467000000,0.000027232000000,0.000051331000000,0.000058442000000,0.000211331000000,0.000080565000000,0.000163133000000 +0.000023295000000,0.000205800000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000067924000000,0.000082936000000,0.000026442000000,0.000053306000000,0.000057256000000,0.000247281000000,0.000080170000000,0.000164714000000 +0.000022900000000,0.000211331000000,0.000065948000000,0.000013554666667,0.000027838500000,0.000066343000000,0.000082145000000,0.000026837000000,0.000052516000000,0.000056467000000,0.000205405000000,0.000080961000000,0.000176960000000 +0.000023492500000,0.000212911000000,0.000064368000000,0.000013949666667,0.000026456000000,0.000066738000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000055281000000,0.000206590000000,0.000082936000000,0.000162343000000 +0.000022702500000,0.000242936000000,0.000063578000000,0.000013950000000,0.000027048500000,0.000067529000000,0.000082541000000,0.000026442000000,0.000052121000000,0.000054491000000,0.000244516000000,0.000080171000000,0.000162739000000 +0.000022505000000,0.000207380000000,0.000065949000000,0.000013686333333,0.000026455500000,0.000066739000000,0.000084516000000,0.000029602000000,0.000052911000000,0.000056072000000,0.000218837000000,0.000100714000000,0.000161949000000 +0.000022505000000,0.000212516000000,0.000063578000000,0.000013949666667,0.000026653500000,0.000066344000000,0.000082146000000,0.000026837000000,0.000122442000000,0.000056072000000,0.000210936000000,0.000081750000000,0.000231875000000 +0.000022110000000,0.000205800000000,0.000083331000000,0.000013818000000,0.000026653500000,0.000101899000000,0.000084911000000,0.000026442000000,0.000053306000000,0.000058047000000,0.000298639000000,0.000082146000000,0.000162738000000 +0.000023097500000,0.000211331000000,0.000067923000000,0.000013686666667,0.000028036000000,0.000065158000000,0.000082936000000,0.000027627000000,0.000052911000000,0.000059627000000,0.000212911000000,0.000080961000000,0.000162343000000 +0.000022110000000,0.000206985000000,0.000065553000000,0.000013818000000,0.000027048500000,0.000066343000000,0.000082936000000,0.000026838000000,0.000055281000000,0.000058047000000,0.000206590000000,0.000081751000000,0.000163923000000 +0.000022110000000,0.000210935000000,0.000065948000000,0.000017900333333,0.000026653000000,0.000065553000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000061208000000,0.000205010000000,0.000081751000000,0.000193948000000 +0.000022110000000,0.000274936000000,0.000065553000000,0.000014740000000,0.000026653500000,0.000067134000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000058047000000,0.000205010000000,0.000079380000000,0.000163133000000 +0.000022505000000,0.000212516000000,0.000063973000000,0.000013949666667,0.000026456000000,0.000065158000000,0.000083331000000,0.000026838000000,0.000052911000000,0.000056071000000,0.000210936000000,0.000109405000000,0.000170640000000 +0.000052925000000,0.000206985000000,0.000065948000000,0.000013818000000,0.000043246000000,0.000067133000000,0.000084911000000,0.000026442000000,0.000054491000000,0.000058442000000,0.000208566000000,0.000075035000000,0.000163923000000 +0.000022110000000,0.000205404000000,0.000063183000000,0.000013950000000,0.000027048000000,0.000064763000000,0.000084517000000,0.000026837000000,0.000052516000000,0.000056862000000,0.000274146000000,0.000075035000000,0.000182492000000 +0.000023097500000,0.000261504000000,0.000137850000000,0.000013423000000,0.000026455500000,0.000066343000000,0.000084516000000,0.000026442000000,0.000052516000000,0.000091628000000,0.000210541000000,0.000077010000000,0.000160368000000 +0.000023295000000,0.000204220000000,0.000081356000000,0.000013818000000,0.000026851000000,0.000065948000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000205405000000,0.000077010000000,0.000162343000000 +0.000022110000000,0.000204615000000,0.000102293000000,0.000013554666667,0.000026455500000,0.000065158000000,0.000082541000000,0.000027628000000,0.000054096000000,0.000057652000000,0.000205010000000,0.000077010000000,0.000160763000000 +0.000022702500000,0.000211726000000,0.000134688000000,0.000013949666667,0.000026456000000,0.000066343000000,0.000082540000000,0.000026837000000,0.000053306000000,0.000058047000000,0.000214096000000,0.000076615000000,0.000163133000000 +0.000023295000000,0.000209355000000,0.000164319000000,0.000013818333333,0.000026455500000,0.000069109000000,0.000082541000000,0.000027233000000,0.000053306000000,0.000056071000000,0.000203430000000,0.000077010000000,0.000284812000000 +0.000022110000000,0.000212121000000,0.000196318000000,0.000020139000000,0.000026455500000,0.000065553000000,0.000115331000000,0.000026837000000,0.000054886000000,0.000055677000000,0.000208565000000,0.000110985000000,0.000179726000000 +0.000022110000000,0.000211331000000,0.000084121000000,0.000013423000000,0.000026653500000,0.000067134000000,0.000082145000000,0.000026442000000,0.000053701000000,0.000058047000000,0.000257553000000,0.000075035000000,0.000164318000000 +0.000048184000000,0.000213306000000,0.000100714000000,0.000013818000000,0.000043641000000,0.000065949000000,0.000103084000000,0.000045405000000,0.000053306000000,0.000055282000000,0.000206590000000,0.000075429000000,0.000186047000000 +0.000023097500000,0.000221602000000,0.000069899000000,0.000013949666667,0.000026455500000,0.000065553000000,0.000097949000000,0.000040269000000,0.000054492000000,0.000078590000000,0.000205010000000,0.000077800000000,0.000162343000000 +0.000023690000000,0.000204615000000,0.000068318000000,0.000013423000000,0.000026653000000,0.000080171000000,0.000082541000000,0.000026442000000,0.000053306000000,0.000058047000000,0.000208960000000,0.000075430000000,0.000169059000000 +0.000022702500000,0.000210540000000,0.000067924000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000084911000000,0.000026837000000,0.000053306000000,0.000058047000000,0.000225158000000,0.000077405000000,0.000162344000000 +0.000022505000000,0.000208170000000,0.000067528000000,0.000013423000000,0.000026653500000,0.000067529000000,0.000084121000000,0.000026837000000,0.000054492000000,0.000055282000000,0.000214096000000,0.000076615000000,0.000162344000000 +0.000024085000000,0.000209751000000,0.000120072000000,0.000014345000000,0.000026653000000,0.000066343000000,0.000085702000000,0.000026442000000,0.000057257000000,0.000058442000000,0.000205010000000,0.000075824000000,0.000197504000000 +0.000022702500000,0.000206590000000,0.000167084000000,0.000013423000000,0.000027048000000,0.000065158000000,0.000084911000000,0.000041060000000,0.000053306000000,0.000058047000000,0.000287973000000,0.000092022000000,0.000162738000000 +0.000022702500000,0.000204614000000,0.000149701000000,0.000013949666667,0.000026653000000,0.000066344000000,0.000115726000000,0.000026837000000,0.000051726000000,0.000058442000000,0.000209751000000,0.000076220000000,0.000164319000000 +0.000022110000000,0.000214491000000,0.000063578000000,0.000013818333333,0.000027641000000,0.000065158000000,0.000084121000000,0.000026837000000,0.000053306000000,0.000054886000000,0.000210145000000,0.000075430000000,0.000161948000000 +0.000023295500000,0.000210936000000,0.000063973000000,0.000025275000000,0.000044826000000,0.000065553000000,0.000082935000000,0.000026442000000,0.000051726000000,0.000056862000000,0.000208565000000,0.000077800000000,0.000212911000000 +0.000032776500000,0.000248072000000,0.000063973000000,0.000013949666667,0.000026653500000,0.000066343000000,0.000082541000000,0.000026443000000,0.000053701000000,0.000058047000000,0.000204614000000,0.000077405000000,0.000163528000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000066343000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000057652000000,0.000208960000000,0.000076615000000,0.000164319000000 +0.000022110000000,0.000212911000000,0.000144566000000,0.000013949666667,0.000026850500000,0.000065948000000,0.000083726000000,0.000026442000000,0.000051331000000,0.000056467000000,0.000211331000000,0.000077010000000,0.000163134000000 +0.000022110000000,0.000206195000000,0.000071874000000,0.000013949666667,0.000026455500000,0.000065553000000,0.000082936000000,0.000027232000000,0.000054491000000,0.000054886000000,0.000281257000000,0.000090443000000,0.000250047000000 +0.000022702500000,0.000207380000000,0.000065949000000,0.000015266666667,0.000026850500000,0.000068319000000,0.000082541000000,0.000026442000000,0.000053701000000,0.000054887000000,0.000209750000000,0.000075429000000,0.000177750000000 +0.000022307500000,0.000207380000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000066343000000,0.000096368000000,0.000026838000000,0.000053306000000,0.000056072000000,0.000206985000000,0.000075429000000,0.000160763000000 +0.000022505000000,0.000205405000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000051331000000,0.000056071000000,0.000233059000000,0.000075824000000,0.000160368000000 +0.000022505000000,0.000214886000000,0.000065948000000,0.000013554666667,0.000026653000000,0.000066344000000,0.000082935000000,0.000026443000000,0.000052911000000,0.000058047000000,0.000204614000000,0.000076220000000,0.000228318000000 +0.000022109500000,0.000323528000000,0.000066343000000,0.000013423333333,0.000045813500000,0.000064764000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000066738000000,0.000205010000000,0.000075429000000,0.000164319000000 +0.000022505000000,0.000254393000000,0.000099529000000,0.000024616333333,0.000027048000000,0.000065553000000,0.000083726000000,0.000026838000000,0.000052911000000,0.000058047000000,0.000207380000000,0.000075429000000,0.000163529000000 +0.000032184000000,0.000220022000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000084516000000,0.000026837000000,0.000102689000000,0.000061208000000,0.000290738000000,0.000075430000000,0.000162738000000 +0.000023295000000,0.000207380000000,0.000065949000000,0.000013423333333,0.000026653000000,0.000066343000000,0.000116912000000,0.000026837000000,0.000052911000000,0.000057652000000,0.000208566000000,0.000077010000000,0.000340120000000 +0.000022307500000,0.000205010000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000068714000000,0.000082146000000,0.000026837000000,0.000052121000000,0.000056467000000,0.000207380000000,0.000075824000000,0.000222393000000 +0.000022110000000,0.000208960000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000064763000000,0.000082146000000,0.000026837000000,0.000052912000000,0.000058047000000,0.000233850000000,0.000076615000000,0.000162739000000 +0.000022505000000,0.000205800000000,0.000138640000000,0.000013949666667,0.000027245500000,0.000066738000000,0.000082936000000,0.000027628000000,0.000052912000000,0.000057652000000,0.000212911000000,0.000076615000000,0.000246886000000 +0.000022505000000,0.000204615000000,0.000094788000000,0.000013949666667,0.000027048000000,0.000065158000000,0.000084121000000,0.000026838000000,0.000052121000000,0.000057652000000,0.000205010000000,0.000075430000000,0.000164318000000 +0.000023295000000,0.000206590000000,0.000064368000000,0.000013949666667,0.000026455500000,0.000067134000000,0.000082541000000,0.000026837000000,0.000053701000000,0.000055281000000,0.000205009000000,0.000075035000000,0.000163133000000 +0.000024480500000,0.000205800000000,0.000097553000000,0.000013818333333,0.000044826000000,0.000065553000000,0.000082541000000,0.000026837000000,0.000053702000000,0.000057652000000,0.000373701000000,0.000077405000000,0.000161949000000 +0.000022307000000,0.000204614000000,0.000065553000000,0.000013818000000,0.000026456000000,0.000066343000000,0.000105850000000,0.000026837000000,0.000072664000000,0.000058442000000,0.000271380000000,0.000155232000000,0.000200665000000 +0.000022110000000,0.000207380000000,0.000065948000000,0.000014740000000,0.000026653000000,0.000065158000000,0.000083726000000,0.000026837000000,0.000058047000000,0.000055677000000,0.000208961000000,0.000109800000000,0.000163528000000 +0.000022505000000,0.000205800000000,0.000063578000000,0.000013818000000,0.000026455500000,0.000065553000000,0.000084121000000,0.000026442000000,0.000068713000000,0.000056072000000,0.000202639000000,0.000088862000000,0.000163528000000 +0.000022702500000,0.000210146000000,0.000065553000000,0.000013950000000,0.000027838500000,0.000066343000000,0.000084122000000,0.000026837000000,0.000052516000000,0.000058047000000,0.000205010000000,0.000075824000000,0.000159973000000 +0.000022702500000,0.000204615000000,0.000099924000000,0.000013554666667,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000208565000000,0.000075430000000,0.000198294000000 +0.000022110000000,0.000205010000000,0.000065949000000,0.000013818000000,0.000026455500000,0.000066344000000,0.000082541000000,0.000026442000000,0.000054096000000,0.000057257000000,0.000237800000000,0.000075825000000,0.000162739000000 +0.000024085500000,0.000220417000000,0.000063578000000,0.000014739666667,0.000026653500000,0.000085306000000,0.000082541000000,0.000026837000000,0.000054096000000,0.000058442000000,0.000208566000000,0.000075430000000,0.000162739000000 +0.000022110000000,0.000208170000000,0.000063577000000,0.000014213333333,0.000026653000000,0.000067923000000,0.000083331000000,0.000026838000000,0.000052911000000,0.000058047000000,0.000213306000000,0.000110195000000,0.000161553000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000013818333333,0.000063394000000,0.000065554000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000054886000000,0.000205010000000,0.000075034000000,0.000160763000000 +0.000022110000000,0.000204219000000,0.000065948000000,0.000013423000000,0.000035344500000,0.000065553000000,0.000082936000000,0.000026838000000,0.000054886000000,0.000058047000000,0.000260714000000,0.000077405000000,0.000177751000000 +0.000022702500000,0.000208565000000,0.000063973000000,0.000013818000000,0.000033962000000,0.000070689000000,0.000082936000000,0.000026838000000,0.000052911000000,0.000058047000000,0.000215677000000,0.000077405000000,0.000164713000000 +0.000022505000000,0.000328664000000,0.000065948000000,0.000015135000000,0.000026653000000,0.000065949000000,0.000083726000000,0.000026837000000,0.000052121000000,0.000058442000000,0.000205010000000,0.000077010000000,0.000160368000000 +0.000032776500000,0.000252812000000,0.000092417000000,0.000014476666667,0.000026653000000,0.000066344000000,0.000082146000000,0.000027627000000,0.000054492000000,0.000054491000000,0.000256763000000,0.000076615000000,0.000159578000000 +0.000022505000000,0.000210146000000,0.000063578000000,0.000013554666667,0.000026653500000,0.000065553000000,0.000082146000000,0.000041060000000,0.000051726000000,0.000057257000000,0.000205800000000,0.000075430000000,0.000253207000000 +0.000022505000000,0.000268615000000,0.000065554000000,0.000013949666667,0.000026653000000,0.000068319000000,0.000091628000000,0.000026837000000,0.000054887000000,0.000058442000000,0.000208170000000,0.000075034000000,0.000162739000000 +0.000022110000000,0.000205800000000,0.000063973000000,0.000013423333333,0.000026850500000,0.000067924000000,0.000116517000000,0.000026443000000,0.000051726000000,0.000101504000000,0.000211331000000,0.000077010000000,0.000164713000000 +0.000022110000000,0.000204615000000,0.000063973000000,0.000013950000000,0.000045616000000,0.000068319000000,0.000082541000000,0.000026837000000,0.000052121000000,0.000053306000000,0.000209751000000,0.000078590000000,0.000166689000000 +0.000022505000000,0.000207380000000,0.000063578000000,0.000013818000000,0.000026851000000,0.000065553000000,0.000083726000000,0.000026837000000,0.000085307000000,0.000052121000000,0.000208961000000,0.000077009000000,0.000231084000000 +0.000024678000000,0.000216467000000,0.000063578000000,0.000013950000000,0.000027048500000,0.000065158000000,0.000082540000000,0.000026837000000,0.000053306000000,0.000051331000000,0.000209750000000,0.000075430000000,0.000160368000000 +0.000022703000000,0.000218047000000,0.000135479000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000084516000000,0.000027627000000,0.000052911000000,0.000052911000000,0.000278096000000,0.000075429000000,0.000163133000000 +0.000022110000000,0.000204615000000,0.000065949000000,0.000013818000000,0.000026653500000,0.000067133000000,0.000082541000000,0.000026442000000,0.000053702000000,0.000073850000000,0.000208565000000,0.000077010000000,0.000173800000000 +0.000021912500000,0.000213306000000,0.000063973000000,0.000013423333333,0.000026455500000,0.000067133000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000054491000000,0.000206590000000,0.000076615000000,0.000197109000000 +0.000023097500000,0.000205800000000,0.000065553000000,0.000021456000000,0.000026653000000,0.000065948000000,0.000117306000000,0.000026443000000,0.000053306000000,0.000056466000000,0.000228713000000,0.000109010000000,0.000161553000000 +0.000029221000000,0.000208565000000,0.000065948000000,0.000013423000000,0.000027048500000,0.000065948000000,0.000082541000000,0.000026442000000,0.000052121000000,0.000074640000000,0.000205010000000,0.000077010000000,0.000160368000000 +0.000022900000000,0.000209355000000,0.000063972000000,0.000013818000000,0.000026653000000,0.000068318000000,0.000084911000000,0.000026443000000,0.000052911000000,0.000058047000000,0.000206986000000,0.000075429000000,0.000159973000000 +0.000023097500000,0.000211330000000,0.000065948000000,0.000013950000000,0.000044825500000,0.000065948000000,0.000084121000000,0.000046985000000,0.000052911000000,0.000054492000000,0.000210936000000,0.000075429000000,0.000196713000000 +0.000022307500000,0.000207380000000,0.000063577000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000083726000000,0.000026837000000,0.000054096000000,0.000052911000000,0.000252812000000,0.000075430000000,0.000160763000000 +0.000022109500000,0.000259134000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000065553000000,0.000084516000000,0.000026837000000,0.000078195000000,0.000054492000000,0.000205010000000,0.000076615000000,0.000162343000000 +0.000022702500000,0.000211726000000,0.000120467000000,0.000013423000000,0.000026455500000,0.000067924000000,0.000084517000000,0.000026837000000,0.000071874000000,0.000054096000000,0.000212121000000,0.000075430000000,0.000159973000000 +0.000024085000000,0.000283232000000,0.000077405000000,0.000013423000000,0.000026455500000,0.000066343000000,0.000154047000000,0.000027233000000,0.000055282000000,0.000054096000000,0.000225948000000,0.000077010000000,0.000163134000000 +0.000023098000000,0.000212121000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000105454000000,0.000082540000000,0.000026442000000,0.000052911000000,0.000051331000000,0.000227923000000,0.000076220000000,0.000179331000000 +0.000022110000000,0.000308516000000,0.000063973000000,0.000014740000000,0.000027641000000,0.000117306000000,0.000082146000000,0.000026442000000,0.000053306000000,0.000054492000000,0.000211725000000,0.000075429000000,0.000163134000000 +0.000032381500000,0.000324318000000,0.000063183000000,0.000013555000000,0.000026455500000,0.000064763000000,0.000082936000000,0.000027627000000,0.000052911000000,0.000092022000000,0.000210540000000,0.000075430000000,0.000163133000000 +0.000022307500000,0.000207775000000,0.000131529000000,0.000018032000000,0.000026653000000,0.000066343000000,0.000082146000000,0.000026442000000,0.000052912000000,0.000052516000000,0.000238985000000,0.000075430000000,0.000165504000000 +0.000022505000000,0.000208960000000,0.000063973000000,0.000013423000000,0.000061221000000,0.000065158000000,0.000083726000000,0.000028023000000,0.000085306000000,0.000052912000000,0.000209356000000,0.000077405000000,0.000230689000000 +0.000022505000000,0.000204220000000,0.000063577000000,0.000013949666667,0.000027048500000,0.000066343000000,0.000082936000000,0.000026442000000,0.000052912000000,0.000055281000000,0.000209355000000,0.000075825000000,0.000161949000000 +0.000022110000000,0.000206985000000,0.000063973000000,0.000013555000000,0.000026456000000,0.000068714000000,0.000097554000000,0.000026442000000,0.000051726000000,0.000053306000000,0.000244121000000,0.000075035000000,0.000163528000000 +0.000022109500000,0.000248467000000,0.000065553000000,0.000013818000000,0.000027641000000,0.000069899000000,0.000085307000000,0.000060418000000,0.000051331000000,0.000054097000000,0.000214887000000,0.000110195000000,0.000162738000000 +0.000022110000000,0.000214096000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000081355000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000216072000000,0.000075429000000,0.000215677000000 +0.000022505000000,0.000205009000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000066344000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000054492000000,0.000209356000000,0.000077010000000,0.000165504000000 +0.000022505000000,0.000204614000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000065158000000,0.000084516000000,0.000026442000000,0.000053307000000,0.000053306000000,0.000277306000000,0.000131528000000,0.000198293000000 +0.000023295000000,0.000222393000000,0.000064368000000,0.000014345000000,0.000026851000000,0.000067133000000,0.000085701000000,0.000026838000000,0.000052911000000,0.000054886000000,0.000204220000000,0.000093208000000,0.000159973000000 +0.000022110000000,0.000209356000000,0.000063577000000,0.000013423333333,0.000026653500000,0.000067134000000,0.000084911000000,0.000026837000000,0.000051331000000,0.000054886000000,0.000212911000000,0.000075825000000,0.000200269000000 +0.000029616000000,0.000205800000000,0.000068318000000,0.000013950000000,0.000026455500000,0.000065158000000,0.000082146000000,0.000026442000000,0.000107430000000,0.000054887000000,0.000255578000000,0.000075430000000,0.000162738000000 +0.000022110000000,0.000247282000000,0.000065948000000,0.000042262666667,0.000026653000000,0.000067528000000,0.000084121000000,0.000026837000000,0.000052516000000,0.000051726000000,0.000206590000000,0.000154442000000,0.000161948000000 +0.000023295500000,0.000206590000000,0.000065948000000,0.000019480666667,0.000026653500000,0.000066343000000,0.000083726000000,0.000026838000000,0.000052912000000,0.000054097000000,0.000204220000000,0.000091627000000,0.000163134000000 +0.000022702500000,0.000205010000000,0.000063183000000,0.000014345000000,0.000026653500000,0.000065553000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000244516000000,0.000076615000000,0.000197109000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054096000000,0.000208961000000,0.000075035000000,0.000162738000000 +0.000022505000000,0.000207775000000,0.000077010000000,0.000013818000000,0.000027640500000,0.000067923000000,0.000083331000000,0.000026442000000,0.000053307000000,0.000053306000000,0.000214096000000,0.000075429000000,0.000159577000000 +0.000023492500000,0.000204220000000,0.000068319000000,0.000013423000000,0.000026455500000,0.000066343000000,0.000082146000000,0.000026442000000,0.000051726000000,0.000071874000000,0.000209750000000,0.000075430000000,0.000162343000000 +0.000030604000000,0.000204615000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000109405000000,0.000026837000000,0.000051726000000,0.000100319000000,0.000466145000000,0.000075430000000,0.000163529000000 +0.000022505000000,0.000206590000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000066344000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000067528000000,0.000230689000000,0.000095182000000,0.000223578000000 +0.000022505000000,0.000206590000000,0.000068319000000,0.000014739666667,0.000026455500000,0.000065158000000,0.000082541000000,0.000046985000000,0.000065553000000,0.000052516000000,0.000240170000000,0.000076220000000,0.000163528000000 +0.000022110000000,0.000208565000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000066343000000,0.000082145000000,0.000041059000000,0.000053702000000,0.000055282000000,0.000205405000000,0.000075430000000,0.000162343000000 +0.000022110000000,0.000209355000000,0.000063183000000,0.000014871666667,0.000026455500000,0.000066738000000,0.000082146000000,0.000028022000000,0.000052912000000,0.000056467000000,0.000209751000000,0.000075430000000,0.000162738000000 +0.000022110000000,0.000206985000000,0.000063578000000,0.000013818000000,0.000026653500000,0.000064763000000,0.000084121000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000209355000000,0.000075430000000,0.000194738000000 +0.000021912500000,0.000228319000000,0.000080960000000,0.000013818000000,0.000027048000000,0.000066343000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000057652000000,0.000244911000000,0.000075824000000,0.000163924000000 +0.000022505000000,0.000220812000000,0.000063578000000,0.000013818000000,0.000027640500000,0.000066344000000,0.000233454000000,0.000026442000000,0.000052911000000,0.000069109000000,0.000212911000000,0.000075430000000,0.000159973000000 +0.000024085500000,0.000245701000000,0.000065554000000,0.000015135000000,0.000026851000000,0.000066344000000,0.000203429000000,0.000026442000000,0.000051331000000,0.000053307000000,0.000221602000000,0.000075430000000,0.000160763000000 +0.000023295000000,0.000205010000000,0.000065948000000,0.000013949666667,0.000026456000000,0.000067134000000,0.000185652000000,0.000026443000000,0.000052911000000,0.000054886000000,0.000231874000000,0.000184466000000,0.000239775000000 +0.000022702500000,0.000210146000000,0.000063972000000,0.000013423333333,0.000026653000000,0.000065159000000,0.000177355000000,0.000027232000000,0.000052911000000,0.000054097000000,0.000205010000000,0.000076220000000,0.000203034000000 +0.000023097500000,0.000210936000000,0.000063577000000,0.000013423000000,0.000034159000000,0.000067924000000,0.000184861000000,0.000028417000000,0.000067133000000,0.000054491000000,0.000205405000000,0.000078985000000,0.000159973000000 +0.000040875500000,0.000208961000000,0.000065948000000,0.000036336666667,0.000026653000000,0.000067134000000,0.000123627000000,0.000040664000000,0.000051726000000,0.000051726000000,0.000208565000000,0.000075430000000,0.000162343000000 +0.000023295000000,0.000205800000000,0.000084121000000,0.000013818000000,0.000026653500000,0.000066343000000,0.000090047000000,0.000026442000000,0.000053306000000,0.000054491000000,0.000240961000000,0.000077010000000,0.000232269000000 +0.000022110000000,0.000206590000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000065553000000,0.000118492000000,0.000026442000000,0.000054492000000,0.000055282000000,0.000206590000000,0.000077010000000,0.000167874000000 +0.000022505000000,0.000211726000000,0.000063973000000,0.000013423333333,0.000036134500000,0.000065553000000,0.000089651000000,0.000026442000000,0.000052121000000,0.000052516000000,0.000206985000000,0.000075430000000,0.000165899000000 +0.000022702500000,0.000206196000000,0.000063578000000,0.000014344666667,0.000028233000000,0.000066738000000,0.000090047000000,0.000026442000000,0.000052912000000,0.000052912000000,0.000233455000000,0.000075824000000,0.000169060000000 +0.000022110000000,0.000210936000000,0.000063973000000,0.000014740000000,0.000028233500000,0.000066343000000,0.000122442000000,0.000027232000000,0.000054097000000,0.000054886000000,0.000206590000000,0.000075430000000,0.000210145000000 +0.000022505000000,0.000208565000000,0.000063577000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000158392000000,0.000026442000000,0.000056862000000,0.000053307000000,0.000205010000000,0.000075429000000,0.000162344000000 +0.000022505000000,0.000206985000000,0.000063578000000,0.000013818333333,0.000035147000000,0.000066343000000,0.000109405000000,0.000028022000000,0.000100319000000,0.000053701000000,0.000208566000000,0.000077010000000,0.000161159000000 +0.000023295500000,0.000209355000000,0.000063183000000,0.000013423000000,0.000027640500000,0.000068714000000,0.000095578000000,0.000026443000000,0.000052911000000,0.000054887000000,0.000238985000000,0.000075825000000,0.000164714000000 +0.000022702500000,0.000210936000000,0.000120467000000,0.000013950000000,0.000027641000000,0.000065553000000,0.000083331000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000208566000000,0.000075430000000,0.000197899000000 +0.000032579000000,0.000208961000000,0.000149306000000,0.000025143333333,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000054887000000,0.000053701000000,0.000213306000000,0.000075430000000,0.000164319000000 +0.000022110000000,0.000206195000000,0.000083331000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000040270000000,0.000054491000000,0.000055281000000,0.000207775000000,0.000110590000000,0.000167084000000 +0.000022505000000,0.000205010000000,0.000077405000000,0.000013818333333,0.000027048500000,0.000064764000000,0.000082146000000,0.000026442000000,0.000052121000000,0.000101899000000,0.000207775000000,0.000077801000000,0.000167084000000 +0.000022505000000,0.000212121000000,0.000062788000000,0.000013686333333,0.000026850500000,0.000065553000000,0.000083726000000,0.000026838000000,0.000051726000000,0.000054887000000,0.000214096000000,0.000075035000000,0.000161554000000 +0.000022702500000,0.000209751000000,0.000063578000000,0.000013423000000,0.000027838500000,0.000065948000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000053306000000,0.000216072000000,0.000076615000000,0.000203825000000 +0.000021912500000,0.000204614000000,0.000097158000000,0.000023167666667,0.000027048500000,0.000065554000000,0.000169454000000,0.000026838000000,0.000052911000000,0.000054097000000,0.000261899000000,0.000077405000000,0.000162739000000 +0.000022110000000,0.000206985000000,0.000062788000000,0.000013950000000,0.000044628500000,0.000067529000000,0.000088862000000,0.000027232000000,0.000090442000000,0.000054886000000,0.000211726000000,0.000077010000000,0.000163134000000 +0.000022505000000,0.000205405000000,0.000063973000000,0.000015135000000,0.000026455500000,0.000066344000000,0.000083331000000,0.000026837000000,0.000051331000000,0.000054097000000,0.000220022000000,0.000076615000000,0.000231874000000 +0.000024085000000,0.000249257000000,0.000065948000000,0.000013818000000,0.000027641000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000053306000000,0.000205405000000,0.000077010000000,0.000161158000000 +0.000022505000000,0.000213307000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000065158000000,0.000084516000000,0.000026443000000,0.000054096000000,0.000051726000000,0.000206590000000,0.000126393000000,0.000161948000000 +0.000031986500000,0.000204614000000,0.000063973000000,0.000036600000000,0.000027245500000,0.000069109000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000210936000000,0.000075429000000,0.000163529000000 +0.000063591500000,0.000208170000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000066343000000,0.000084121000000,0.000026837000000,0.000051331000000,0.000052911000000,0.000205010000000,0.000077405000000,0.000162738000000 +0.000063196000000,0.000212516000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000066739000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000052517000000,0.000295479000000,0.000075430000000,0.000163529000000 +0.000030999000000,0.000204615000000,0.000078985000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000084121000000,0.000054097000000,0.000051726000000,0.000054887000000,0.000228319000000,0.000076615000000,0.000164318000000 +0.000029813500000,0.000210936000000,0.000067924000000,0.000013818000000,0.000028036000000,0.000065554000000,0.000083726000000,0.000028023000000,0.000051726000000,0.000056072000000,0.000229109000000,0.000077010000000,0.000161948000000 +0.000022900000000,0.000509208000000,0.000065554000000,0.000013950000000,0.000050357000000,0.000067923000000,0.000082146000000,0.000026837000000,0.000069109000000,0.000054886000000,0.000240170000000,0.000075429000000,0.000163923000000 +0.000022505000000,0.000544763000000,0.000065948000000,0.000013818333333,0.000026653000000,0.000068318000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000057652000000,0.000205010000000,0.000145751000000,0.000194738000000 +0.000022505000000,0.000284812000000,0.000065949000000,0.000013949666667,0.000026456000000,0.000067134000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000205010000000,0.000077010000000,0.000162738000000 +0.000022900000000,0.000223973000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000068319000000,0.000083726000000,0.000026442000000,0.000054491000000,0.000053306000000,0.000257158000000,0.000076615000000,0.000169850000000 +0.000022307500000,0.000220813000000,0.000065948000000,0.000013818000000,0.000026653000000,0.000068713000000,0.000097948000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000253207000000,0.000077010000000,0.000163528000000 +0.000022505000000,0.000217256000000,0.000127577000000,0.000020402666667,0.000027048000000,0.000066343000000,0.000082146000000,0.000026838000000,0.000051726000000,0.000054096000000,0.000202244000000,0.000075825000000,0.000194738000000 +0.000022505000000,0.000229109000000,0.000067923000000,0.000013950000000,0.000026850500000,0.000065553000000,0.000085306000000,0.000026442000000,0.000053307000000,0.000054096000000,0.000210541000000,0.000077405000000,0.000159973000000 +0.000022703000000,0.000272170000000,0.000070294000000,0.000013423000000,0.000026850500000,0.000065949000000,0.000082541000000,0.000026837000000,0.000053702000000,0.000051726000000,0.000205405000000,0.000075035000000,0.000162738000000 +0.000022109500000,0.000216862000000,0.000234639000000,0.000013949666667,0.000026653000000,0.000068319000000,0.000082541000000,0.000027628000000,0.000052911000000,0.000054492000000,0.000205010000000,0.000075430000000,0.000197108000000 +0.000022505000000,0.000223183000000,0.000099133000000,0.000013555000000,0.000033567000000,0.000070294000000,0.000082541000000,0.000026837000000,0.000109405000000,0.000054887000000,0.000221208000000,0.000075825000000,0.000209750000000 +0.000023295500000,0.000222393000000,0.000081751000000,0.000013818000000,0.000026456000000,0.000067923000000,0.000082145000000,0.000082146000000,0.000052911000000,0.000052516000000,0.000237405000000,0.000075430000000,0.000161948000000 +0.000035937000000,0.000225158000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000135874000000,0.000042245000000,0.000052516000000,0.000052912000000,0.000208565000000,0.000075034000000,0.000165504000000 +0.000022505000000,0.000223973000000,0.000065948000000,0.000013818000000,0.000026850500000,0.000068319000000,0.000082541000000,0.000028417000000,0.000052911000000,0.000054886000000,0.000206986000000,0.000077010000000,0.000164318000000 +0.000023295500000,0.000225948000000,0.000101504000000,0.000013950000000,0.000026653000000,0.000066739000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000087282000000,0.000206985000000,0.000077010000000,0.000200270000000 +0.000022702500000,0.000260714000000,0.000065949000000,0.000014344666667,0.000026653000000,0.000067923000000,0.000084911000000,0.000026837000000,0.000052912000000,0.000054097000000,0.000238195000000,0.000077010000000,0.000162739000000 +0.000023097500000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000066738000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000054886000000,0.000208961000000,0.000076220000000,0.000169454000000 +0.000022110000000,0.000209751000000,0.000063973000000,0.000018427333333,0.000026456000000,0.000085307000000,0.000084912000000,0.000026837000000,0.000054492000000,0.000054492000000,0.000210936000000,0.000101899000000,0.000161553000000 +0.000023887500000,0.000229109000000,0.000063578000000,0.000013423000000,0.000036529500000,0.000068713000000,0.000084121000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000255182000000,0.000080170000000,0.000162343000000 +0.000022505000000,0.000209751000000,0.000063577000000,0.000013950000000,0.000027048500000,0.000065553000000,0.000099134000000,0.000026442000000,0.000085702000000,0.000054886000000,0.000204615000000,0.000081750000000,0.000163528000000 +0.000022505000000,0.000206195000000,0.000063183000000,0.000014345000000,0.000026653500000,0.000068318000000,0.000084516000000,0.000026442000000,0.000054492000000,0.000054886000000,0.000212121000000,0.000082146000000,0.000165109000000 +0.000022505000000,0.000204614000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000082145000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000209355000000,0.000079775000000,0.000164714000000 +0.000039097500000,0.000248861000000,0.000063578000000,0.000013818333333,0.000027838500000,0.000065554000000,0.000085306000000,0.000026838000000,0.000054492000000,0.000052121000000,0.000237405000000,0.000081751000000,0.000162738000000 +0.000022505000000,0.000456269000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000067529000000,0.000082936000000,0.000026838000000,0.000052912000000,0.000067923000000,0.000208565000000,0.000079776000000,0.000195923000000 +0.000024085500000,0.000299825000000,0.000063577000000,0.000014213333333,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000052516000000,0.000054887000000,0.000204614000000,0.000082935000000,0.000162739000000 +0.000023097500000,0.000209356000000,0.000063578000000,0.000013950000000,0.000027048000000,0.000085701000000,0.000082541000000,0.000026442000000,0.000053701000000,0.000053701000000,0.000249651000000,0.000079776000000,0.000164319000000 +0.000022307500000,0.000212516000000,0.000084516000000,0.000014871333333,0.000026850500000,0.000065158000000,0.000084121000000,0.000026443000000,0.000055677000000,0.000053307000000,0.000210541000000,0.000080170000000,0.000162738000000 +0.000022702500000,0.000241751000000,0.000065948000000,0.000018427333333,0.000035739500000,0.000103874000000,0.000082541000000,0.000027232000000,0.000052912000000,0.000051726000000,0.000209751000000,0.000079775000000,0.000208170000000 +0.000022505000000,0.000206195000000,0.000065948000000,0.000013423000000,0.000086900000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000122837000000,0.000051726000000,0.000209750000000,0.000081751000000,0.000164713000000 +0.000022109500000,0.000206985000000,0.000063973000000,0.000013950000000,0.000035147000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052516000000,0.000052912000000,0.000240960000000,0.000080170000000,0.000161158000000 +0.000022110000000,0.000205404000000,0.000063578000000,0.000013554666667,0.000033962000000,0.000069108000000,0.000110590000000,0.000026838000000,0.000051726000000,0.000052516000000,0.000213701000000,0.000082146000000,0.000159578000000 +0.000022505000000,0.000207775000000,0.000065948000000,0.000013818000000,0.000026653500000,0.000065948000000,0.000082936000000,0.000026837000000,0.000069504000000,0.000054886000000,0.000205010000000,0.000081751000000,0.000159578000000 +0.000039690500000,0.000204615000000,0.000065553000000,0.000013423000000,0.000027443500000,0.000067133000000,0.000082540000000,0.000026837000000,0.000052911000000,0.000069503000000,0.000244121000000,0.000079380000000,0.000164714000000 +0.000022307500000,0.000205010000000,0.000065553000000,0.000014871666667,0.000027048500000,0.000065553000000,0.000084121000000,0.000026442000000,0.000053306000000,0.000054887000000,0.000362244000000,0.000079775000000,0.000165108000000 +0.000023097500000,0.000211726000000,0.000097553000000,0.000013818000000,0.000035147000000,0.000069503000000,0.000084516000000,0.000027232000000,0.000051726000000,0.000057652000000,0.000205405000000,0.000080170000000,0.000162739000000 +0.000022110000000,0.000206985000000,0.000065949000000,0.000013949666667,0.000026653500000,0.000066738000000,0.000083331000000,0.000027232000000,0.000051726000000,0.000054887000000,0.000242936000000,0.000079775000000,0.000161158000000 +0.000022505000000,0.000205405000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000066343000000,0.000082541000000,0.000027233000000,0.000086886000000,0.000052911000000,0.000206986000000,0.000081750000000,0.000160763000000 +0.000022505000000,0.000208961000000,0.000065948000000,0.000014740000000,0.000026455500000,0.000065553000000,0.000082146000000,0.000026837000000,0.000054492000000,0.000054492000000,0.000221603000000,0.000079775000000,0.000163134000000 +0.000022110000000,0.000239380000000,0.000065553000000,0.000013950000000,0.000027245500000,0.000066343000000,0.000082936000000,0.000028022000000,0.000051726000000,0.000053701000000,0.000212911000000,0.000082145000000,0.000163133000000 +0.000022505000000,0.000204220000000,0.000066344000000,0.000014476333333,0.000026653000000,0.000067133000000,0.000084121000000,0.000026837000000,0.000052121000000,0.000054491000000,0.000204615000000,0.000080170000000,0.000163529000000 +0.000023097500000,0.000206590000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000066343000000,0.000082936000000,0.000026838000000,0.000052911000000,0.000085702000000,0.000205009000000,0.000083331000000,0.000196318000000 +0.000022110000000,0.000206590000000,0.000063973000000,0.000013818000000,0.000026455500000,0.000065948000000,0.000082146000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000204615000000,0.000081750000000,0.000161948000000 +0.000032579000000,0.000204615000000,0.000099529000000,0.000013950000000,0.000026653000000,0.000067133000000,0.000085306000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000240566000000,0.000087677000000,0.000167479000000 +0.000024282500000,0.000206985000000,0.000065948000000,0.000013423000000,0.000033567000000,0.000067529000000,0.000083726000000,0.000026442000000,0.000052516000000,0.000052912000000,0.000208961000000,0.000082146000000,0.000163134000000 +0.000022307500000,0.000206195000000,0.000063578000000,0.000013818000000,0.000026653500000,0.000067134000000,0.000084516000000,0.000027232000000,0.000052911000000,0.000052911000000,0.000203035000000,0.000079776000000,0.000197504000000 +0.000022505000000,0.000230294000000,0.000065553000000,0.000015135000000,0.000027641000000,0.000071084000000,0.000083331000000,0.000046195000000,0.000072664000000,0.000056072000000,0.000204614000000,0.000086491000000,0.000159578000000 +0.000022109500000,0.000204615000000,0.000065948000000,0.000013818000000,0.000026456000000,0.000069109000000,0.000082145000000,0.000026837000000,0.000064368000000,0.000052121000000,0.000223577000000,0.000091627000000,0.000163924000000 +0.000023295500000,0.000204615000000,0.000065948000000,0.000018427000000,0.000026455500000,0.000067529000000,0.000191973000000,0.000026442000000,0.000051726000000,0.000054097000000,0.000204220000000,0.000081356000000,0.000162739000000 +0.000022110000000,0.000220418000000,0.000063578000000,0.000013423333333,0.000026850500000,0.000069109000000,0.000098344000000,0.000026837000000,0.000052911000000,0.000071479000000,0.000208960000000,0.000081751000000,0.000196318000000 +0.000022307500000,0.000490244000000,0.000067923000000,0.000013818000000,0.000026850500000,0.000067924000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000067924000000,0.000247282000000,0.000080170000000,0.000161554000000 +0.000022505000000,0.000376071000000,0.000067923000000,0.000013554666667,0.000026653000000,0.000065948000000,0.000082935000000,0.000026443000000,0.000052912000000,0.000053701000000,0.000241356000000,0.000079776000000,0.000161553000000 +0.000023295000000,0.000217651000000,0.000069899000000,0.000013423000000,0.000036332500000,0.000066344000000,0.000082145000000,0.000026837000000,0.000052516000000,0.000054887000000,0.000208961000000,0.000124812000000,0.000163134000000 +0.000031789000000,0.000208170000000,0.000068318000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000116516000000,0.000026837000000,0.000052516000000,0.000054887000000,0.000285998000000,0.000080170000000,0.000164713000000 +0.000023097500000,0.000223183000000,0.000069899000000,0.000013423000000,0.000026653000000,0.000068318000000,0.000083331000000,0.000026443000000,0.000051331000000,0.000054886000000,0.000205010000000,0.000156417000000,0.000175381000000 +0.000022307500000,0.000215281000000,0.000067133000000,0.000013423000000,0.000026653500000,0.000067133000000,0.000082146000000,0.000027627000000,0.000085307000000,0.000053306000000,0.000206985000000,0.000112566000000,0.000159182000000 +0.000022900000000,0.000210145000000,0.000067529000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000053701000000,0.000204220000000,0.000079776000000,0.000159973000000 +0.000023097500000,0.000214097000000,0.000069899000000,0.000013554666667,0.000026653500000,0.000066738000000,0.000091627000000,0.000026442000000,0.000054097000000,0.000054887000000,0.000208170000000,0.000079776000000,0.000162738000000 +0.000022702500000,0.000206195000000,0.000068319000000,0.000014345000000,0.000026850500000,0.000065158000000,0.000082936000000,0.000026443000000,0.000052516000000,0.000067924000000,0.000211331000000,0.000079775000000,0.000206985000000 +0.000022900000000,0.000204615000000,0.000067529000000,0.000014213000000,0.000027838500000,0.000066344000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000053306000000,0.000210145000000,0.000081355000000,0.000166689000000 +0.000022307500000,0.000257553000000,0.000067529000000,0.000013818333333,0.000026851000000,0.000065554000000,0.000084121000000,0.000026838000000,0.000052517000000,0.000051726000000,0.000282046000000,0.000087677000000,0.000162343000000 +0.000022505000000,0.000216466000000,0.000067528000000,0.000013554666667,0.000071492500000,0.000071479000000,0.000116516000000,0.000026442000000,0.000053701000000,0.000051726000000,0.000210145000000,0.000081750000000,0.000159972000000 +0.000024480000000,0.000220022000000,0.000069899000000,0.000013818333333,0.000026653000000,0.000067133000000,0.000132713000000,0.000027627000000,0.000056072000000,0.000052911000000,0.000206985000000,0.000082146000000,0.000210146000000 +0.000022505000000,0.000205010000000,0.000069899000000,0.000013818333333,0.000026455500000,0.000066738000000,0.000095578000000,0.000026442000000,0.000053307000000,0.000052517000000,0.000208566000000,0.000079776000000,0.000173800000000 +0.000022702500000,0.000212121000000,0.000067528000000,0.000013423333333,0.000026653000000,0.000065158000000,0.000103874000000,0.000026442000000,0.000105059000000,0.000054887000000,0.000206986000000,0.000081356000000,0.000161948000000 +0.000022505000000,0.000205405000000,0.000069504000000,0.000013555000000,0.000026455500000,0.000066343000000,0.000088072000000,0.000026837000000,0.000054096000000,0.000056072000000,0.000208960000000,0.000079775000000,0.000161158000000 +0.000022307500000,0.000208565000000,0.000069899000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000205405000000,0.000082936000000,0.000160763000000 +0.000022307500000,0.000208171000000,0.000067924000000,0.000013423000000,0.000026653000000,0.000069898000000,0.000084516000000,0.000027232000000,0.000053307000000,0.000057652000000,0.000278886000000,0.000081356000000,0.000201059000000 +0.000022505000000,0.000211331000000,0.000069899000000,0.000032122666667,0.000026653000000,0.000065553000000,0.000083331000000,0.000026442000000,0.000052911000000,0.000054492000000,0.000210936000000,0.000097948000000,0.000162738000000 +0.000023690000000,0.000298640000000,0.000067528000000,0.000013950000000,0.000036135000000,0.000067133000000,0.000083726000000,0.000026837000000,0.000052912000000,0.000053306000000,0.000203430000000,0.000081355000000,0.000161158000000 +0.000022505000000,0.000222393000000,0.000069898000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000251627000000,0.000080960000000,0.000161553000000 +0.000022110000000,0.000223973000000,0.000069504000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000212121000000,0.000080170000000,0.000173800000000 +0.000022109500000,0.000224763000000,0.000067529000000,0.000013950000000,0.000026455500000,0.000065554000000,0.000084516000000,0.000026837000000,0.000051331000000,0.000054096000000,0.000206985000000,0.000079775000000,0.000162738000000 +0.000022110000000,0.000225158000000,0.000068319000000,0.000013949666667,0.000027048500000,0.000067134000000,0.000113355000000,0.000026837000000,0.000074640000000,0.000051726000000,0.000213702000000,0.000082146000000,0.000165504000000 +0.000022702500000,0.000221207000000,0.000067528000000,0.000013950000000,0.000027641000000,0.000065158000000,0.000082146000000,0.000026837000000,0.000051726000000,0.000054491000000,0.000582689000000,0.000080170000000,0.000163529000000 +0.000022110000000,0.000217257000000,0.000067924000000,0.000013423333333,0.000026653500000,0.000065948000000,0.000082541000000,0.000027627000000,0.000054887000000,0.000088862000000,0.000231084000000,0.000079776000000,0.000303775000000 +0.000022110000000,0.000221997000000,0.000067923000000,0.000013950000000,0.000026455500000,0.000069109000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000227134000000,0.000080170000000,0.000182887000000 +0.000022110000000,0.000221998000000,0.000067529000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000084121000000,0.000028023000000,0.000052912000000,0.000052516000000,0.000209751000000,0.000081751000000,0.000163133000000 +0.000023295000000,0.000216862000000,0.000067528000000,0.000020929333333,0.000067542000000,0.000067529000000,0.000082541000000,0.000026442000000,0.000051331000000,0.000056072000000,0.000208961000000,0.000079775000000,0.000162739000000 +0.000022505000000,0.000220417000000,0.000067133000000,0.000014871666667,0.000026653000000,0.000064763000000,0.000103084000000,0.000026837000000,0.000051726000000,0.000053307000000,0.000281651000000,0.000079775000000,0.000175775000000 +0.000024085500000,0.000223973000000,0.000069899000000,0.000013950000000,0.000027640500000,0.000066343000000,0.000097948000000,0.000026838000000,0.000052121000000,0.000054096000000,0.000214886000000,0.000082146000000,0.000161948000000 +0.000021912500000,0.000227134000000,0.000069504000000,0.000013818000000,0.000026850500000,0.000065158000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000054492000000,0.000216072000000,0.000082146000000,0.000165109000000 +0.000022505000000,0.000217256000000,0.000069899000000,0.000013423333333,0.000026653000000,0.000065948000000,0.000084516000000,0.000026442000000,0.000126788000000,0.000054491000000,0.000209355000000,0.000082540000000,0.000165109000000 +0.000022702500000,0.000216862000000,0.000067529000000,0.000013818333333,0.000027048500000,0.000065553000000,0.000084517000000,0.000026837000000,0.000107824000000,0.000053306000000,0.000205405000000,0.000079775000000,0.000244516000000 +0.000029023500000,0.000235035000000,0.000067923000000,0.000013423000000,0.000026456000000,0.000066343000000,0.000084911000000,0.000026838000000,0.000068319000000,0.000069899000000,0.000204220000000,0.000079775000000,0.000160763000000 +0.000023097500000,0.000221997000000,0.000067924000000,0.000013818000000,0.000026455500000,0.000066343000000,0.000084911000000,0.000026837000000,0.000069109000000,0.000054492000000,0.000213306000000,0.000080170000000,0.000167084000000 +0.000022307500000,0.000219627000000,0.000072269000000,0.000013949666667,0.000026455500000,0.000068713000000,0.000121652000000,0.000026837000000,0.000051726000000,0.000055282000000,0.000255578000000,0.000080170000000,0.000162343000000 +0.000022110000000,0.000217257000000,0.000069504000000,0.000014081333333,0.000033962000000,0.000065553000000,0.000084911000000,0.000026837000000,0.000053702000000,0.000051726000000,0.000206195000000,0.000081751000000,0.000196319000000 +0.000022110000000,0.000219232000000,0.000070294000000,0.000025670000000,0.000026456000000,0.000065948000000,0.000082936000000,0.000026837000000,0.000086492000000,0.000053701000000,0.000203825000000,0.000080170000000,0.000162343000000 +0.000024085500000,0.000216861000000,0.000067133000000,0.000041340666667,0.000026653500000,0.000069503000000,0.000082540000000,0.000027232000000,0.000052911000000,0.000054492000000,0.000206195000000,0.000079380000000,0.000163133000000 +0.000022110000000,0.000216861000000,0.000067528000000,0.000033834666667,0.000026851000000,0.000068318000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000054096000000,0.000208961000000,0.000080960000000,0.000161948000000 +0.000022110000000,0.000218837000000,0.000067529000000,0.000014740000000,0.000027443500000,0.000065553000000,0.000083726000000,0.000026443000000,0.000051726000000,0.000052911000000,0.000213701000000,0.000082146000000,0.000229898000000 +0.000022110000000,0.000216862000000,0.000071875000000,0.000018427000000,0.000026653000000,0.000119677000000,0.000082540000000,0.000026442000000,0.000053702000000,0.000051726000000,0.000210146000000,0.000082145000000,0.000163134000000 +0.000022505000000,0.000218442000000,0.000067923000000,0.000013949666667,0.000026455500000,0.000066739000000,0.000116121000000,0.000026837000000,0.000054491000000,0.000054887000000,0.000289948000000,0.000081750000000,0.000163923000000 +0.000042258000000,0.000218837000000,0.000067529000000,0.000013555000000,0.000034554500000,0.000066738000000,0.000082936000000,0.000026442000000,0.000054097000000,0.000068713000000,0.000210935000000,0.000081750000000,0.000165504000000 +0.000029221500000,0.000218837000000,0.000071875000000,0.000018295666667,0.000044628500000,0.000067133000000,0.000082146000000,0.000041454000000,0.000051726000000,0.000052517000000,0.000240170000000,0.000081356000000,0.000197108000000 +0.000022110000000,0.000221208000000,0.000067528000000,0.000013949666667,0.000026653500000,0.000066738000000,0.000082541000000,0.000026838000000,0.000052516000000,0.000054887000000,0.000251627000000,0.000080171000000,0.000160763000000 +0.000024085500000,0.000235825000000,0.000067529000000,0.000013818000000,0.000026653500000,0.000069108000000,0.000082541000000,0.000028023000000,0.000087281000000,0.000056072000000,0.000209750000000,0.000088467000000,0.000162738000000 +0.000022505000000,0.000218046000000,0.000067528000000,0.000013950000000,0.000026455500000,0.000066739000000,0.000084121000000,0.000027232000000,0.000052121000000,0.000054886000000,0.000208961000000,0.000080170000000,0.000161553000000 +0.000022702500000,0.000219628000000,0.000070294000000,0.000013423000000,0.000026851000000,0.000066739000000,0.000084516000000,0.000026442000000,0.000052911000000,0.000057652000000,0.000210936000000,0.000083726000000,0.000163133000000 +0.000022110000000,0.000218047000000,0.000067134000000,0.000013423000000,0.000027838500000,0.000066344000000,0.000121257000000,0.000026837000000,0.000053306000000,0.000054887000000,0.000246491000000,0.000080170000000,0.000178936000000 +0.000022505000000,0.000220813000000,0.000069899000000,0.000013423333333,0.000026653000000,0.000068713000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000067133000000,0.000224367000000,0.000079380000000,0.000161553000000 +0.000022110000000,0.000217256000000,0.000069504000000,0.000013949666667,0.000027048500000,0.000067528000000,0.000082541000000,0.000027232000000,0.000052912000000,0.000054887000000,0.000204615000000,0.000079381000000,0.000166294000000 +0.000022110000000,0.000224368000000,0.000067529000000,0.000013950000000,0.000044233000000,0.000067924000000,0.000082541000000,0.000027232000000,0.000051726000000,0.000054097000000,0.000239381000000,0.000081751000000,0.000161554000000 +0.000022110000000,0.000210936000000,0.000067923000000,0.000013554666667,0.000027245500000,0.000065158000000,0.000084516000000,0.000026838000000,0.000051726000000,0.000054096000000,0.000205009000000,0.000080565000000,0.000174985000000 +0.000023097500000,0.000208170000000,0.000069899000000,0.000020007666667,0.000026455500000,0.000065158000000,0.000082541000000,0.000026837000000,0.000054887000000,0.000052121000000,0.000208960000000,0.000081751000000,0.000161553000000 +0.000023295500000,0.000249256000000,0.000067923000000,0.000013949666667,0.000026653500000,0.000069899000000,0.000082146000000,0.000026442000000,0.000072664000000,0.000054491000000,0.000206986000000,0.000080171000000,0.000163133000000 +0.000022505000000,0.000206195000000,0.000067529000000,0.000013950000000,0.000026653500000,0.000123627000000,0.000118887000000,0.000060023000000,0.000052911000000,0.000054887000000,0.000240565000000,0.000081356000000,0.000165899000000 +0.000022110000000,0.000209750000000,0.000067529000000,0.000013949666667,0.000026653500000,0.000099134000000,0.000083726000000,0.000026837000000,0.000054096000000,0.000052517000000,0.000207380000000,0.000080171000000,0.000314046000000 +0.000022505000000,0.000207380000000,0.000067528000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000084516000000,0.000026442000000,0.000052121000000,0.000052911000000,0.000213701000000,0.000081750000000,0.000184861000000 +0.000022505000000,0.000219233000000,0.000067924000000,0.000013554666667,0.000027838500000,0.000067923000000,0.000083330000000,0.000027232000000,0.000051726000000,0.000054887000000,0.000240171000000,0.000080566000000,0.000163133000000 +0.000023097500000,0.000208961000000,0.000101108000000,0.000013950000000,0.000026653000000,0.000066344000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000053307000000,0.000205010000000,0.000080170000000,0.000163528000000 +0.000024085000000,0.000204615000000,0.000067529000000,0.000013423000000,0.000051739500000,0.000068714000000,0.000082145000000,0.000027627000000,0.000052911000000,0.000054096000000,0.000208565000000,0.000081751000000,0.000161553000000 +0.000022505000000,0.000209355000000,0.000066739000000,0.000013950000000,0.000027641000000,0.000065159000000,0.000081751000000,0.000026442000000,0.000054491000000,0.000054887000000,0.000205010000000,0.000080170000000,0.000166689000000 +0.000022505000000,0.000211726000000,0.000069899000000,0.000013423000000,0.000028233500000,0.000067134000000,0.000139035000000,0.000026443000000,0.000051727000000,0.000054491000000,0.000300220000000,0.000080171000000,0.000165899000000 +0.000022307500000,0.000208961000000,0.000066738000000,0.000013554666667,0.000026653000000,0.000066343000000,0.000082936000000,0.000026442000000,0.000051727000000,0.000051726000000,0.000213701000000,0.000080170000000,0.000164713000000 +0.000023887500000,0.000206195000000,0.000069899000000,0.000018559000000,0.000026653000000,0.000066738000000,0.000082936000000,0.000026442000000,0.000095973000000,0.000054887000000,0.000207776000000,0.000081751000000,0.000166688000000 +0.000022307500000,0.000204615000000,0.000067529000000,0.000013818000000,0.000026653500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000060813000000,0.000054886000000,0.000241356000000,0.000082146000000,0.000164714000000 +0.000022110000000,0.000286787000000,0.000067133000000,0.000014476333333,0.000026653000000,0.000064763000000,0.000083726000000,0.000026442000000,0.000169850000000,0.000088467000000,0.000204615000000,0.000081751000000,0.000161553000000 +0.000022109500000,0.000208170000000,0.000067923000000,0.000013423333333,0.000027246000000,0.000066343000000,0.000082146000000,0.000046196000000,0.000052911000000,0.000053702000000,0.000216467000000,0.000082541000000,0.000160763000000 +0.000022110000000,0.000204614000000,0.000067529000000,0.000013949666667,0.000026653000000,0.000069109000000,0.000082541000000,0.000039874000000,0.000054096000000,0.000054096000000,0.000212121000000,0.000081356000000,0.000253997000000 +0.000022702500000,0.000208170000000,0.000067529000000,0.000013949666667,0.000033369500000,0.000069109000000,0.000125207000000,0.000026837000000,0.000065158000000,0.000054887000000,0.000257948000000,0.000080171000000,0.000212911000000 +0.000023295000000,0.000205405000000,0.000067528000000,0.000013818000000,0.000026653000000,0.000086887000000,0.000082936000000,0.000026442000000,0.000053307000000,0.000054096000000,0.000220418000000,0.000080170000000,0.000163134000000 +0.000022505000000,0.000211330000000,0.000069899000000,0.000013554666667,0.000027641000000,0.000080566000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000053307000000,0.000205405000000,0.000081750000000,0.000162343000000 +0.000023493000000,0.000233849000000,0.000077010000000,0.000014740000000,0.000026455500000,0.000065949000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000052121000000,0.000240566000000,0.000082146000000,0.000196713000000 +0.000022702500000,0.000205010000000,0.000083331000000,0.000013818000000,0.000027245500000,0.000067133000000,0.000082936000000,0.000026837000000,0.000052121000000,0.000051726000000,0.000210541000000,0.000079380000000,0.000162739000000 +0.000022505000000,0.000207380000000,0.000083331000000,0.000018032000000,0.000026850500000,0.000067133000000,0.000084121000000,0.000028417000000,0.000053306000000,0.000053306000000,0.000205010000000,0.000079775000000,0.000161948000000 +0.000022505000000,0.000212911000000,0.000063972000000,0.000013818000000,0.000026653000000,0.000066738000000,0.000082541000000,0.000028418000000,0.000052911000000,0.000067133000000,0.000211331000000,0.000081751000000,0.000163528000000 +0.000022110000000,0.000206195000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000103479000000,0.000026837000000,0.000053702000000,0.000054886000000,0.000250047000000,0.000082146000000,0.000197504000000 +0.000022505000000,0.000210935000000,0.000068319000000,0.000013554666667,0.000047591500000,0.000065158000000,0.000096763000000,0.000027627000000,0.000052911000000,0.000055676000000,0.000212516000000,0.000081751000000,0.000162344000000 +0.000022307000000,0.000206985000000,0.000065553000000,0.000013818000000,0.000026850500000,0.000067133000000,0.000082936000000,0.000026442000000,0.000055282000000,0.000054492000000,0.000206590000000,0.000082540000000,0.000163134000000 +0.000022110000000,0.000210936000000,0.000065949000000,0.000013555000000,0.000026653000000,0.000065158000000,0.000084516000000,0.000041454000000,0.000051726000000,0.000057652000000,0.000238985000000,0.000081356000000,0.000161158000000 +0.000022505000000,0.000224368000000,0.000065553000000,0.000014740000000,0.000026653000000,0.000065948000000,0.000083331000000,0.000026838000000,0.000051331000000,0.000054886000000,0.000205010000000,0.000080171000000,0.000205010000000 +0.000022505000000,0.000211726000000,0.000119282000000,0.000013950000000,0.000026455500000,0.000065553000000,0.000083331000000,0.000026442000000,0.000052912000000,0.000053307000000,0.000210146000000,0.000079775000000,0.000170244000000 +0.000029023500000,0.000206985000000,0.000070294000000,0.000013950000000,0.000026455500000,0.000068713000000,0.000084516000000,0.000026442000000,0.000054492000000,0.000054491000000,0.000208565000000,0.000080960000000,0.000163134000000 +0.000022110000000,0.000205800000000,0.000077010000000,0.000013949666667,0.000027246000000,0.000101108000000,0.000154442000000,0.000026837000000,0.000052911000000,0.000054097000000,0.000540417000000,0.000080171000000,0.000161553000000 +0.000023492500000,0.000216467000000,0.000064368000000,0.000019744333333,0.000026653500000,0.000065553000000,0.000084516000000,0.000026837000000,0.000052912000000,0.000090442000000,0.000806688000000,0.000081751000000,0.000181306000000 +0.000023492500000,0.000204219000000,0.000065949000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000082540000000,0.000027232000000,0.000053306000000,0.000054491000000,0.000374096000000,0.000081751000000,0.000162739000000 +0.000022110000000,0.000205010000000,0.000063973000000,0.000013554666667,0.000061221000000,0.000065553000000,0.000082541000000,0.000027627000000,0.000057652000000,0.000054492000000,0.000232664000000,0.000081751000000,0.000160763000000 +0.000022110000000,0.000262689000000,0.000117306000000,0.000013949666667,0.000026653000000,0.000066343000000,0.000081751000000,0.000026442000000,0.000056071000000,0.000054887000000,0.000235429000000,0.000081750000000,0.000162344000000 +0.000022900000000,0.000209355000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000069108000000,0.000082145000000,0.000027232000000,0.000056467000000,0.000052911000000,0.000362639000000,0.000081356000000,0.000161949000000 +0.000022110000000,0.000212121000000,0.000065948000000,0.000013818000000,0.000026653500000,0.000066738000000,0.000083331000000,0.000026837000000,0.000056862000000,0.000052911000000,0.000246492000000,0.000082146000000,0.000178145000000 +0.000022110000000,0.000212121000000,0.000065158000000,0.000013423000000,0.000026850500000,0.000066738000000,0.000210145000000,0.000026442000000,0.000057257000000,0.000054886000000,0.000206986000000,0.000252812000000,0.000164319000000 +0.000022702500000,0.000213306000000,0.000063973000000,0.000013818333333,0.000026455500000,0.000065553000000,0.000083726000000,0.000040664000000,0.000056466000000,0.000071084000000,0.000206985000000,0.000109800000000,0.000166294000000 +0.000040282500000,0.000221208000000,0.000065553000000,0.000013818333333,0.000026850500000,0.000065553000000,0.000084911000000,0.000026837000000,0.000058442000000,0.000054097000000,0.000205010000000,0.000081751000000,0.000163134000000 +0.000023295500000,0.000205010000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000065158000000,0.000082936000000,0.000026443000000,0.000056862000000,0.000054886000000,0.000208565000000,0.000080170000000,0.000237800000000 +0.000022702500000,0.000244121000000,0.000119676000000,0.000013818000000,0.000035739500000,0.000067528000000,0.000084516000000,0.000026442000000,0.000056862000000,0.000054492000000,0.000211331000000,0.000103479000000,0.000161948000000 +0.000022505000000,0.000208565000000,0.000063973000000,0.000018427333333,0.000026653500000,0.000068318000000,0.000084516000000,0.000026837000000,0.000057652000000,0.000053306000000,0.000255183000000,0.000081750000000,0.000161949000000 +0.000024085500000,0.000209356000000,0.000063973000000,0.000014213000000,0.000026455500000,0.000065948000000,0.000099923000000,0.000026837000000,0.000061208000000,0.000054887000000,0.000204615000000,0.000079381000000,0.000163133000000 +0.000023295000000,0.000206985000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000065554000000,0.000084517000000,0.000026442000000,0.000056467000000,0.000054887000000,0.000211725000000,0.000079775000000,0.000198294000000 +0.000022505000000,0.000204219000000,0.000065554000000,0.000013818000000,0.000026850500000,0.000065158000000,0.000082936000000,0.000026838000000,0.000054886000000,0.000054887000000,0.000229109000000,0.000081750000000,0.000164714000000 +0.000022110000000,0.000214097000000,0.000063578000000,0.000013949666667,0.000027641000000,0.000065553000000,0.000106640000000,0.000026442000000,0.000056072000000,0.000051726000000,0.000210541000000,0.000080171000000,0.000162343000000 +0.000023097500000,0.000210936000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000088862000000,0.000026837000000,0.000054887000000,0.000135874000000,0.000208961000000,0.000083331000000,0.000162738000000 +0.000022307500000,0.000265059000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000067529000000,0.000087282000000,0.000026442000000,0.000057257000000,0.000054887000000,0.000204615000000,0.000081751000000,0.000197109000000 +0.000038702500000,0.000208961000000,0.000077800000000,0.000013949666667,0.000026456000000,0.000067134000000,0.000190788000000,0.000045405000000,0.000056071000000,0.000053701000000,0.000242146000000,0.000081750000000,0.000163923000000 +0.000022110000000,0.000212911000000,0.000065948000000,0.000013818000000,0.000054110000000,0.000080171000000,0.000095578000000,0.000026442000000,0.000054887000000,0.000053306000000,0.000210541000000,0.000081750000000,0.000162343000000 +0.000022110000000,0.000206195000000,0.000065948000000,0.000013950000000,0.000087888000000,0.000065553000000,0.000141405000000,0.000027628000000,0.000058047000000,0.000051726000000,0.000209355000000,0.000081750000000,0.000161158000000 +0.000022505000000,0.000206195000000,0.000065553000000,0.000015003333333,0.000051147000000,0.000068318000000,0.000096763000000,0.000026837000000,0.000056862000000,0.000052121000000,0.000209751000000,0.000080170000000,0.000165898000000 +0.000022505000000,0.000206985000000,0.000063973000000,0.000013818000000,0.000028233500000,0.000067133000000,0.000082936000000,0.000026442000000,0.000056467000000,0.000052911000000,0.000206985000000,0.000080171000000,0.000176565000000 +0.000022702500000,0.000205405000000,0.000063577000000,0.000013949666667,0.000026653500000,0.000066738000000,0.000116517000000,0.000027232000000,0.000054886000000,0.000052516000000,0.000214492000000,0.000080171000000,0.000160368000000 +0.000022505000000,0.000372121000000,0.000065948000000,0.000013423000000,0.000043838500000,0.000065158000000,0.000099134000000,0.000026837000000,0.000056467000000,0.000094788000000,0.000204615000000,0.000081356000000,0.000159973000000 +0.000022109500000,0.000360269000000,0.000133899000000,0.000013554666667,0.000027838000000,0.000065553000000,0.000082541000000,0.000026442000000,0.000054886000000,0.000056071000000,0.000238590000000,0.000080565000000,0.000163924000000 +0.000022702500000,0.000212911000000,0.000080170000000,0.000013554666667,0.000027048000000,0.000065158000000,0.000084121000000,0.000026442000000,0.000056072000000,0.000058047000000,0.000206590000000,0.000079775000000,0.000177750000000 +0.000022702500000,0.000210541000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000084517000000,0.000026442000000,0.000054887000000,0.000057652000000,0.000205010000000,0.000080170000000,0.000162739000000 +0.000032579000000,0.000207380000000,0.000065554000000,0.000013423333333,0.000026653000000,0.000065948000000,0.000082936000000,0.000026837000000,0.000056072000000,0.000054887000000,0.000208565000000,0.000081751000000,0.000161948000000 +0.000022110000000,0.000205800000000,0.000063577000000,0.000013950000000,0.000026653000000,0.000065949000000,0.000082541000000,0.000026838000000,0.000054887000000,0.000052911000000,0.000220418000000,0.000080170000000,0.000162738000000 +0.000022110000000,0.000210541000000,0.000065948000000,0.000013423000000,0.000026456000000,0.000065158000000,0.000116911000000,0.000045405000000,0.000055677000000,0.000054886000000,0.000221208000000,0.000081751000000,0.000196714000000 +0.000022505000000,0.000204615000000,0.000065553000000,0.000013949666667,0.000027246000000,0.000066343000000,0.000098738000000,0.000028022000000,0.000056072000000,0.000053701000000,0.000213306000000,0.000082541000000,0.000163528000000 +0.000022110000000,0.000204219000000,0.000065553000000,0.000025143333333,0.000026851000000,0.000064763000000,0.000090047000000,0.000026837000000,0.000055281000000,0.000054492000000,0.000238590000000,0.000080171000000,0.000164318000000 +0.000022505000000,0.000206985000000,0.000080171000000,0.000013950000000,0.000044628500000,0.000067529000000,0.000087677000000,0.000026837000000,0.000056862000000,0.000065948000000,0.000282442000000,0.000079381000000,0.000163528000000 +0.000024283000000,0.000206195000000,0.000063973000000,0.000013949666667,0.000027048500000,0.000065158000000,0.000087282000000,0.000026442000000,0.000056862000000,0.000054492000000,0.000255578000000,0.000080566000000,0.000234245000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000013949666667,0.000026455500000,0.000101109000000,0.000090442000000,0.000026442000000,0.000056466000000,0.000054492000000,0.000462195000000,0.000085701000000,0.000258738000000 +0.000022505000000,0.000207380000000,0.000065948000000,0.000014740000000,0.000026653500000,0.000065158000000,0.000089257000000,0.000026837000000,0.000058442000000,0.000052911000000,0.000221602000000,0.000080171000000,0.000163529000000 +0.000022505000000,0.000206986000000,0.000063972000000,0.000013949666667,0.000027048500000,0.000065158000000,0.000089652000000,0.000026442000000,0.000056862000000,0.000052911000000,0.000214887000000,0.000079776000000,0.000164318000000 +0.000039098000000,0.000208565000000,0.000065949000000,0.000013818333333,0.000027641000000,0.000066343000000,0.000088467000000,0.000026442000000,0.000056467000000,0.000055677000000,0.000217651000000,0.000079776000000,0.000174591000000 +0.000022505000000,0.000205010000000,0.000065554000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000087281000000,0.000026442000000,0.000056072000000,0.000053306000000,0.000221602000000,0.000079775000000,0.000163923000000 +0.000022307500000,0.000204614000000,0.000134689000000,0.000013949666667,0.000026455500000,0.000065948000000,0.000087281000000,0.000026442000000,0.000057257000000,0.000053701000000,0.000216467000000,0.000080960000000,0.000212121000000 +0.000023887500000,0.000221207000000,0.000063578000000,0.000014739666667,0.000026653000000,0.000066738000000,0.000088072000000,0.000026837000000,0.000057257000000,0.000054887000000,0.000253998000000,0.000080170000000,0.000184862000000 +0.000022110000000,0.000206985000000,0.000063578000000,0.000014213333333,0.000044826000000,0.000067528000000,0.000088467000000,0.000026442000000,0.000054887000000,0.000054886000000,0.000226343000000,0.000081751000000,0.000161158000000 +0.000022505000000,0.000204614000000,0.000063578000000,0.000013818000000,0.000027048500000,0.000065949000000,0.000087677000000,0.000026443000000,0.000056072000000,0.000053306000000,0.000217652000000,0.000080170000000,0.000161159000000 +0.000022505000000,0.000204219000000,0.000065554000000,0.000013423000000,0.000026653500000,0.000065158000000,0.000087676000000,0.000026837000000,0.000058047000000,0.000054491000000,0.000222392000000,0.000082146000000,0.000162739000000 +0.000022702500000,0.000208170000000,0.000064368000000,0.000013950000000,0.000026850500000,0.000070689000000,0.000087282000000,0.000026442000000,0.000056072000000,0.000054886000000,0.000228714000000,0.000082145000000,0.000164318000000 +0.000023295000000,0.000217257000000,0.000065949000000,0.000015135000000,0.000026455500000,0.000065948000000,0.000088862000000,0.000026837000000,0.000055677000000,0.000054886000000,0.000217257000000,0.000081356000000,0.000201455000000 +0.000023098000000,0.000214491000000,0.000082145000000,0.000013950000000,0.000026850500000,0.000065949000000,0.000087677000000,0.000027627000000,0.000057652000000,0.000052516000000,0.000340516000000,0.000081356000000,0.000159578000000 +0.000039493000000,0.000210936000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000065158000000,0.000087676000000,0.000026442000000,0.000054887000000,0.000053702000000,0.000227133000000,0.000080566000000,0.000159973000000 +0.000022702500000,0.000213702000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065553000000,0.000096368000000,0.000026442000000,0.000058837000000,0.000074639000000,0.000221208000000,0.000079776000000,0.000162738000000 +0.000022110000000,0.000205800000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000067528000000,0.000086886000000,0.000026442000000,0.000054886000000,0.000072664000000,0.000224368000000,0.000080961000000,0.000210936000000 +0.000022110000000,0.000204615000000,0.000063577000000,0.000013949666667,0.000045813500000,0.000067924000000,0.000141010000000,0.000026442000000,0.000054887000000,0.000067529000000,0.000222392000000,0.000083331000000,0.000167084000000 +0.000022307500000,0.000207380000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000089652000000,0.000026443000000,0.000054886000000,0.000051726000000,0.000221602000000,0.000081751000000,0.000162343000000 +0.000024677500000,0.000216466000000,0.000063973000000,0.000044633000000,0.000026653000000,0.000065158000000,0.000087676000000,0.000026442000000,0.000056467000000,0.000051726000000,0.000222393000000,0.000080171000000,0.000159973000000 +0.000022505000000,0.000218047000000,0.000065948000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000089257000000,0.000027628000000,0.000056071000000,0.000052912000000,0.000220417000000,0.000080170000000,0.000196713000000 +0.000022110000000,0.000205010000000,0.000134689000000,0.000013950000000,0.000026456000000,0.000065158000000,0.000087282000000,0.000026837000000,0.000056862000000,0.000052516000000,0.000220812000000,0.000082145000000,0.000174195000000 +0.000022110000000,0.000212121000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000067923000000,0.000090047000000,0.000026443000000,0.000056072000000,0.000054886000000,0.000219232000000,0.000081751000000,0.000162343000000 +0.000024085000000,0.000205800000000,0.000065948000000,0.000014871666667,0.000026653000000,0.000065553000000,0.000088466000000,0.000026837000000,0.000056072000000,0.000069503000000,0.000221603000000,0.000079775000000,0.000161948000000 +0.000032579000000,0.000208961000000,0.000065554000000,0.000013423000000,0.000026455500000,0.000065948000000,0.000087677000000,0.000026837000000,0.000055281000000,0.000054886000000,0.000218047000000,0.000081751000000,0.000160763000000 +0.000040677500000,0.000243331000000,0.000063973000000,0.000013949666667,0.000026653500000,0.000068319000000,0.000088862000000,0.000026442000000,0.000056072000000,0.000057652000000,0.000219627000000,0.000078985000000,0.000160763000000 +0.000025270500000,0.000210936000000,0.000065949000000,0.000013949666667,0.000063196500000,0.000066738000000,0.000088861000000,0.000026838000000,0.000056467000000,0.000054887000000,0.000223973000000,0.000080170000000,0.000162739000000 +0.000022505000000,0.000207381000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000065554000000,0.000088467000000,0.000026442000000,0.000056861000000,0.000052911000000,0.000216071000000,0.000079776000000,0.000161553000000 +0.000022110000000,0.000209751000000,0.000066343000000,0.000013950000000,0.000026850500000,0.000065553000000,0.000088862000000,0.000026442000000,0.000059627000000,0.000054887000000,0.000217257000000,0.000081750000000,0.000161948000000 +0.000023295000000,0.000210936000000,0.000065554000000,0.000013554666667,0.000026653000000,0.000071874000000,0.000089652000000,0.000026837000000,0.000058047000000,0.000053701000000,0.000225158000000,0.000079775000000,0.000193948000000 +0.000024085000000,0.000225158000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000065949000000,0.000090443000000,0.000026837000000,0.000058442000000,0.000054491000000,0.000252812000000,0.000082146000000,0.000162343000000 +0.000022505000000,0.000204219000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065949000000,0.000087677000000,0.000026442000000,0.000056072000000,0.000051726000000,0.000227133000000,0.000080170000000,0.000165504000000 +0.000022110000000,0.000210145000000,0.000098738000000,0.000014740000000,0.000027641000000,0.000067134000000,0.000087677000000,0.000026442000000,0.000056072000000,0.000067924000000,0.000224763000000,0.000079776000000,0.000162739000000 +0.000057270500000,0.000205010000000,0.000063183000000,0.000013554666667,0.000026653500000,0.000065158000000,0.000086886000000,0.000027628000000,0.000055677000000,0.000054886000000,0.000224368000000,0.000080565000000,0.000197503000000 +0.000022109500000,0.000207775000000,0.000063577000000,0.000013423000000,0.000027048500000,0.000159973000000,0.000087282000000,0.000026442000000,0.000056467000000,0.000052911000000,0.000217651000000,0.000079775000000,0.000165898000000 +0.000022505000000,0.000208960000000,0.000083331000000,0.000013423333333,0.000034159500000,0.000152072000000,0.000088467000000,0.000027627000000,0.000054492000000,0.000053306000000,0.000222393000000,0.000082145000000,0.000163134000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000013949666667,0.000035344500000,0.000070689000000,0.000088072000000,0.000026442000000,0.000056071000000,0.000055282000000,0.000221602000000,0.000080961000000,0.000161553000000 +0.000022109500000,0.000206590000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000080960000000,0.000088861000000,0.000026442000000,0.000054886000000,0.000052121000000,0.000346442000000,0.000080170000000,0.000162738000000 +0.000021912500000,0.000210936000000,0.000065948000000,0.000013950000000,0.000027641000000,0.000067133000000,0.000090047000000,0.000026837000000,0.000054492000000,0.000054097000000,0.000227528000000,0.000081751000000,0.000161949000000 +0.000022110000000,0.000214886000000,0.000065949000000,0.000024748000000,0.000026653500000,0.000073849000000,0.000087676000000,0.000026837000000,0.000069109000000,0.000054491000000,0.000229109000000,0.000080171000000,0.000166294000000 +0.000022703000000,0.000205009000000,0.000065949000000,0.000013950000000,0.000026455500000,0.000067134000000,0.000090047000000,0.000026837000000,0.000054886000000,0.000088467000000,0.000223183000000,0.000081751000000,0.000163924000000 +0.000022505000000,0.000205010000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000064764000000,0.000089652000000,0.000026837000000,0.000056072000000,0.000052121000000,0.000218047000000,0.000080170000000,0.000161158000000 +0.000023295500000,0.000221207000000,0.000063577000000,0.000014213000000,0.000026653000000,0.000066739000000,0.000090837000000,0.000026442000000,0.000056071000000,0.000054887000000,0.000216467000000,0.000081751000000,0.000580713000000 +0.000030604000000,0.000210540000000,0.000139430000000,0.000013555000000,0.000061419000000,0.000066739000000,0.000089651000000,0.000026442000000,0.000054887000000,0.000054887000000,0.000260318000000,0.000079776000000,0.000182097000000 +0.000022505000000,0.000206195000000,0.000142590000000,0.000013950000000,0.000026653500000,0.000065554000000,0.000087676000000,0.000026837000000,0.000054886000000,0.000054887000000,0.000235429000000,0.000080170000000,0.000196713000000 +0.000022505000000,0.000204615000000,0.000082936000000,0.000013555000000,0.000026455500000,0.000067529000000,0.000090047000000,0.000026837000000,0.000055676000000,0.000051726000000,0.000218837000000,0.000081751000000,0.000161949000000 +0.000022702500000,0.000206195000000,0.000078985000000,0.000013423000000,0.000026850500000,0.000065158000000,0.000088467000000,0.000026442000000,0.000056072000000,0.000053701000000,0.000216467000000,0.000081751000000,0.000162739000000 +0.000022505000000,0.000212516000000,0.000062787000000,0.000013423333333,0.000026455500000,0.000065553000000,0.000087677000000,0.000026442000000,0.000055676000000,0.000054886000000,0.000218837000000,0.000081751000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000097158000000,0.000013949666667,0.000026851000000,0.000065553000000,0.000087677000000,0.000026838000000,0.000054491000000,0.000054097000000,0.000221602000000,0.000080171000000,0.000181701000000 +0.000022505000000,0.000206590000000,0.000063182000000,0.000013818333333,0.000027838500000,0.000065553000000,0.000088466000000,0.000026442000000,0.000056467000000,0.000069899000000,0.000226739000000,0.000078986000000,0.000160368000000 +0.000022702500000,0.000225948000000,0.000067923000000,0.000018032000000,0.000026850500000,0.000065948000000,0.000087677000000,0.000026443000000,0.000054887000000,0.000051726000000,0.000257158000000,0.000080171000000,0.000162739000000 +0.000022703000000,0.000204615000000,0.000063972000000,0.000013423333333,0.000026653000000,0.000065158000000,0.000087676000000,0.000026837000000,0.000054886000000,0.000051726000000,0.000218047000000,0.000081355000000,0.000163924000000 +0.000032579000000,0.000206195000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000065949000000,0.000087676000000,0.000026838000000,0.000056072000000,0.000052911000000,0.000223578000000,0.000079775000000,0.000165109000000 +0.000029418500000,0.000206590000000,0.000067924000000,0.000013950000000,0.000026653500000,0.000065158000000,0.000087282000000,0.000027232000000,0.000055282000000,0.000052516000000,0.000227528000000,0.000079775000000,0.000177355000000 +0.000022307500000,0.000209356000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000066343000000,0.000087281000000,0.000026442000000,0.000057257000000,0.000054887000000,0.000217651000000,0.000080170000000,0.000161158000000 +0.000039492500000,0.000208961000000,0.000063577000000,0.000014871666667,0.000026455500000,0.000065158000000,0.000087677000000,0.000028023000000,0.000066343000000,0.000055282000000,0.000222393000000,0.000079776000000,0.000162343000000 +0.000028628500000,0.000205405000000,0.000097158000000,0.000013950000000,0.000026653500000,0.000099529000000,0.000089257000000,0.000026442000000,0.000052516000000,0.000054886000000,0.000222788000000,0.000080170000000,0.000161158000000 +0.000022110000000,0.000207380000000,0.000065948000000,0.000013818000000,0.000027048000000,0.000066343000000,0.000089257000000,0.000040664000000,0.000053306000000,0.000091627000000,0.000336565000000,0.000080170000000,0.000213306000000 +0.000022505000000,0.000204219000000,0.000063973000000,0.000013818333333,0.000027640500000,0.000066344000000,0.000088071000000,0.000026837000000,0.000053306000000,0.000054886000000,0.000292318000000,0.000080961000000,0.000163133000000 +0.000023493000000,0.000208170000000,0.000065948000000,0.000015003333333,0.000026653500000,0.000066344000000,0.000087677000000,0.000026442000000,0.000051331000000,0.000053307000000,0.000235825000000,0.000080171000000,0.000161553000000 +0.000022505000000,0.000205010000000,0.000065948000000,0.000025011333333,0.000026653500000,0.000068319000000,0.000087676000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000217257000000,0.000081356000000,0.000165899000000 +0.000022109500000,0.000266244000000,0.000063973000000,0.000013555000000,0.000026653500000,0.000065159000000,0.000087676000000,0.000027232000000,0.000052517000000,0.000054097000000,0.000217257000000,0.000080170000000,0.000248072000000 +0.000023295000000,0.000245306000000,0.000063973000000,0.000013423000000,0.000027245500000,0.000067529000000,0.000090047000000,0.000026838000000,0.000052912000000,0.000054096000000,0.000217652000000,0.000082541000000,0.000160368000000 +0.000023888000000,0.000207775000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000088467000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000221207000000,0.000078986000000,0.000161553000000 +0.000022702500000,0.000206590000000,0.000077010000000,0.000013818333333,0.000026456000000,0.000067134000000,0.000087677000000,0.000026443000000,0.000053701000000,0.000054886000000,0.000219628000000,0.000081751000000,0.000162738000000 +0.000022110000000,0.000206590000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000064763000000,0.000100319000000,0.000026838000000,0.000068714000000,0.000054887000000,0.000219627000000,0.000081751000000,0.000201059000000 +0.000022505000000,0.000209356000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000084121000000,0.000026837000000,0.000052516000000,0.000052517000000,0.000220812000000,0.000079776000000,0.000165504000000 +0.000022702500000,0.000207380000000,0.000063183000000,0.000014344666667,0.000026850500000,0.000069108000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000052516000000,0.000227134000000,0.000080171000000,0.000169059000000 +0.000022110000000,0.000212516000000,0.000063973000000,0.000014740000000,0.000027640500000,0.000066343000000,0.000083331000000,0.000026443000000,0.000054492000000,0.000055282000000,0.000219232000000,0.000080170000000,0.000163529000000 +0.000022505000000,0.000208565000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000082540000000,0.000060417000000,0.000056466000000,0.000051726000000,0.000217652000000,0.000079776000000,0.000163133000000 +0.000023295000000,0.000205010000000,0.000063577000000,0.000013818333333,0.000041863000000,0.000066343000000,0.000123628000000,0.000027627000000,0.000054096000000,0.000053701000000,0.000221207000000,0.000081356000000,0.000161158000000 +0.000033171500000,0.000209751000000,0.000063182000000,0.000013554666667,0.000027641000000,0.000086096000000,0.000114146000000,0.000026443000000,0.000052516000000,0.000054887000000,0.000217651000000,0.000080171000000,0.000167479000000 +0.000022505000000,0.000244121000000,0.000065949000000,0.000013949666667,0.000027838500000,0.000080171000000,0.000083727000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000221603000000,0.000080171000000,0.000163923000000 +0.000022505000000,0.000208960000000,0.000063183000000,0.000013423333333,0.000026455500000,0.000067529000000,0.000082541000000,0.000026837000000,0.000075034000000,0.000053306000000,0.000226738000000,0.000080960000000,0.000165504000000 +0.000022110000000,0.000206196000000,0.000065553000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000088862000000,0.000220417000000,0.000082146000000,0.000207380000000 +0.000022505000000,0.000239775000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000065553000000,0.000082146000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000220418000000,0.000101109000000,0.000165109000000 +0.000022702500000,0.000212121000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000065158000000,0.000083726000000,0.000027233000000,0.000051726000000,0.000054887000000,0.000250442000000,0.000092812000000,0.000161554000000 +0.000022702500000,0.000246886000000,0.000063577000000,0.000013423333333,0.000027641000000,0.000065948000000,0.000082936000000,0.000026442000000,0.000053306000000,0.000051726000000,0.000229503000000,0.000081751000000,0.000160763000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000064368000000,0.000111380000000,0.000026838000000,0.000053306000000,0.000053701000000,0.000225158000000,0.000082146000000,0.000212121000000 +0.000022110000000,0.000282046000000,0.000063578000000,0.000013949666667,0.000026653500000,0.000067133000000,0.000091627000000,0.000027232000000,0.000051331000000,0.000054887000000,0.000223973000000,0.000082145000000,0.000162738000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000015135000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000027232000000,0.000051726000000,0.000054097000000,0.000233454000000,0.000089652000000,0.000164714000000 +0.000052727000000,0.000211331000000,0.000065948000000,0.000020666000000,0.000027641000000,0.000066343000000,0.000082541000000,0.000065948000000,0.000051726000000,0.000053306000000,0.000218047000000,0.000081751000000,0.000161948000000 +0.000023295500000,0.000213701000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000065553000000,0.000084121000000,0.000043430000000,0.000073454000000,0.000051331000000,0.000219627000000,0.000081356000000,0.000249652000000 +0.000022109500000,0.000204220000000,0.000063578000000,0.000013554666667,0.000027245500000,0.000069109000000,0.000082936000000,0.000028023000000,0.000089257000000,0.000065158000000,0.000224368000000,0.000080171000000,0.000262689000000 +0.000022505000000,0.000206985000000,0.000065554000000,0.000013818000000,0.000026456000000,0.000066343000000,0.000084516000000,0.000026442000000,0.000066738000000,0.000052912000000,0.000217257000000,0.000082541000000,0.000161948000000 +0.000022110000000,0.000212911000000,0.000063578000000,0.000013423333333,0.000027048000000,0.000066344000000,0.000103084000000,0.000026443000000,0.000052911000000,0.000052911000000,0.000223972000000,0.000080171000000,0.000164318000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000013949666667,0.000026850500000,0.000068319000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000222393000000,0.000081751000000,0.000179726000000 +0.000022505000000,0.000210936000000,0.000087282000000,0.000013949666667,0.000028036000000,0.000065553000000,0.000083726000000,0.000027628000000,0.000051726000000,0.000056467000000,0.000225948000000,0.000081751000000,0.000161948000000 +0.000022900000000,0.000206985000000,0.000065948000000,0.000013950000000,0.000033961500000,0.000065553000000,0.000082146000000,0.000026837000000,0.000054097000000,0.000054887000000,0.000219232000000,0.000080170000000,0.000162343000000 +0.000022110000000,0.000318787000000,0.000065948000000,0.000013818000000,0.000026455500000,0.000069108000000,0.000084516000000,0.000026442000000,0.000052121000000,0.000057651000000,0.000217652000000,0.000081356000000,0.000161158000000 +0.000022702500000,0.000225553000000,0.000064763000000,0.000013950000000,0.000026455500000,0.000065949000000,0.000082936000000,0.000026442000000,0.000105454000000,0.000054491000000,0.000251627000000,0.000081751000000,0.000176566000000 +0.000037122000000,0.000212121000000,0.000063183000000,0.000013554666667,0.000026653000000,0.000068319000000,0.000083331000000,0.000026442000000,0.000057257000000,0.000087282000000,0.000223183000000,0.000081355000000,0.000169454000000 +0.000022110000000,0.000208170000000,0.000065949000000,0.000025406333333,0.000026653500000,0.000067529000000,0.000104665000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000221603000000,0.000081356000000,0.000162739000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000018559000000,0.000027048500000,0.000068319000000,0.000084121000000,0.000026837000000,0.000052121000000,0.000054096000000,0.000215281000000,0.000080170000000,0.000162343000000 +0.000022702500000,0.000215676000000,0.000063578000000,0.000013818333333,0.000026850500000,0.000066738000000,0.000084517000000,0.000026837000000,0.000052911000000,0.000054492000000,0.000223183000000,0.000080961000000,0.000231874000000 +0.000023295000000,0.000204220000000,0.000121257000000,0.000013554666667,0.000026455500000,0.000065948000000,0.000082541000000,0.000026837000000,0.000053306000000,0.000051726000000,0.000217652000000,0.000080565000000,0.000162738000000 +0.000022307500000,0.000205800000000,0.000063973000000,0.000013949666667,0.000044628500000,0.000067529000000,0.000082541000000,0.000027627000000,0.000052911000000,0.000054492000000,0.000217257000000,0.000080170000000,0.000160763000000 +0.000022505000000,0.000210541000000,0.000065553000000,0.000013423333333,0.000026653000000,0.000070689000000,0.000082541000000,0.000026837000000,0.000054492000000,0.000054886000000,0.000235429000000,0.000079775000000,0.000163133000000 +0.000022505000000,0.000209355000000,0.000065948000000,0.000013949666667,0.000026653500000,0.000068318000000,0.000082936000000,0.000027233000000,0.000052911000000,0.000052516000000,0.000220418000000,0.000080170000000,0.000196319000000 +0.000022702500000,0.000212516000000,0.000065948000000,0.000013423000000,0.000026653500000,0.000066343000000,0.000103479000000,0.000026442000000,0.000086491000000,0.000053307000000,0.000208960000000,0.000079775000000,0.000167874000000 +0.000041863000000,0.000219232000000,0.000065553000000,0.000013818000000,0.000026653000000,0.000068318000000,0.000082541000000,0.000026837000000,0.000052516000000,0.000068714000000,0.000318393000000,0.000081750000000,0.000164318000000 +0.000022505000000,0.000213306000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000066343000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000052516000000,0.000206985000000,0.000081356000000,0.000167084000000 +0.000022505000000,0.000221208000000,0.000065948000000,0.000025538333333,0.000026653000000,0.000067529000000,0.000085307000000,0.000026837000000,0.000052911000000,0.000054097000000,0.000205009000000,0.000081356000000,0.000216862000000 +0.000022505000000,0.000296269000000,0.000063577000000,0.000013949666667,0.000026456000000,0.000070294000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000054491000000,0.000228318000000,0.000081750000000,0.000167874000000 +0.000022505000000,0.000279282000000,0.000063973000000,0.000014081333333,0.000026851000000,0.000065948000000,0.000084911000000,0.000056862000000,0.000054492000000,0.000090047000000,0.000211726000000,0.000079775000000,0.000161158000000 +0.000024085000000,0.000207775000000,0.000063578000000,0.000013555000000,0.000036529500000,0.000070294000000,0.000084516000000,0.000026442000000,0.000052911000000,0.000118492000000,0.000214096000000,0.000079775000000,0.000161948000000 +0.000022505000000,0.000211331000000,0.000063578000000,0.000013950000000,0.000033369000000,0.000065553000000,0.000104665000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000205010000000,0.000082540000000,0.000197109000000 +0.000022703000000,0.000206590000000,0.000063183000000,0.000014345000000,0.000026850500000,0.000068319000000,0.000215281000000,0.000026442000000,0.000054096000000,0.000088861000000,0.000304171000000,0.000080961000000,0.000163924000000 +0.000022505000000,0.000204615000000,0.000064763000000,0.000013818000000,0.000027048500000,0.000065554000000,0.000087676000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000209356000000,0.000079776000000,0.000164318000000 +0.000022110000000,0.000214492000000,0.000063973000000,0.000013818333333,0.000027640500000,0.000065553000000,0.000084912000000,0.000026443000000,0.000069108000000,0.000052122000000,0.000210541000000,0.000081751000000,0.000162739000000 +0.000050159500000,0.000210936000000,0.000063578000000,0.000013950000000,0.000027048000000,0.000067529000000,0.000082936000000,0.000026837000000,0.000053306000000,0.000054096000000,0.000242541000000,0.000080565000000,0.000163133000000 +0.000023295000000,0.000212121000000,0.000063973000000,0.000014344666667,0.000026653000000,0.000067528000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000204615000000,0.000081355000000,0.000178935000000 +0.000022702500000,0.000208960000000,0.000063973000000,0.000013818333333,0.000027048500000,0.000066343000000,0.000082541000000,0.000027232000000,0.000052911000000,0.000053701000000,0.000208565000000,0.000080170000000,0.000164319000000 +0.000022110000000,0.000214096000000,0.000065948000000,0.000014871666667,0.000026456000000,0.000065554000000,0.000083726000000,0.000045405000000,0.000055676000000,0.000053306000000,0.000210541000000,0.000079775000000,0.000163134000000 +0.000022505000000,0.000206591000000,0.000065948000000,0.000013950000000,0.000035147000000,0.000080566000000,0.000082541000000,0.000029207000000,0.000052911000000,0.000051726000000,0.000256368000000,0.000079381000000,0.000161554000000 +0.000022110000000,0.000205800000000,0.000066343000000,0.000013554666667,0.000026653000000,0.000067133000000,0.000082936000000,0.000026838000000,0.000053306000000,0.000051331000000,0.000209751000000,0.000081751000000,0.000164713000000 +0.000022110000000,0.000207380000000,0.000063578000000,0.000013950000000,0.000026850500000,0.000066343000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000108220000000,0.000206590000000,0.000080170000000,0.000181307000000 +0.000022109500000,0.000267430000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000068713000000,0.000082541000000,0.000026442000000,0.000129158000000,0.000052911000000,0.000346442000000,0.000081751000000,0.000160368000000 +0.000022702500000,0.000213701000000,0.000099529000000,0.000013818000000,0.000026455500000,0.000067923000000,0.000081355000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000204614000000,0.000144170000000,0.000159973000000 +0.000022505000000,0.000204615000000,0.000065949000000,0.000013423000000,0.000027640500000,0.000067528000000,0.000096763000000,0.000026442000000,0.000052516000000,0.000055677000000,0.000205010000000,0.000107430000000,0.000248862000000 +0.000066949500000,0.000206195000000,0.000065948000000,0.000014740000000,0.000027048000000,0.000068318000000,0.000084516000000,0.000027232000000,0.000053306000000,0.000054886000000,0.000227528000000,0.000079775000000,0.000163923000000 +0.000072875500000,0.000210541000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000069899000000,0.000084516000000,0.000026837000000,0.000051331000000,0.000057652000000,0.000205010000000,0.000080171000000,0.000162738000000 +0.000040085000000,0.000206590000000,0.000065948000000,0.000013818000000,0.000027048000000,0.000066739000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000208566000000,0.000079776000000,0.000161158000000 +0.000031394000000,0.000240170000000,0.000063973000000,0.000032254333333,0.000044628000000,0.000066739000000,0.000082540000000,0.000026837000000,0.000052911000000,0.000053307000000,0.000206985000000,0.000081751000000,0.000199084000000 +0.000022505000000,0.000242540000000,0.000065948000000,0.000025011666667,0.000026653000000,0.000065159000000,0.000082935000000,0.000026838000000,0.000054492000000,0.000101898000000,0.000366590000000,0.000083331000000,0.000162738000000 +0.000031986500000,0.000204615000000,0.000065948000000,0.000018822333333,0.000027245500000,0.000066738000000,0.000082935000000,0.000027627000000,0.000051726000000,0.000054096000000,0.000226344000000,0.000082146000000,0.000163133000000 +0.000022505000000,0.000204614000000,0.000134689000000,0.000014608000000,0.000026455500000,0.000066738000000,0.000118096000000,0.000026837000000,0.000066343000000,0.000054097000000,0.000205010000000,0.000080171000000,0.000164318000000 +0.000023097500000,0.000207775000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000028022000000,0.000052911000000,0.000051331000000,0.000238985000000,0.000083331000000,0.000326689000000 +0.000022505000000,0.000206590000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000065554000000,0.000082541000000,0.000026837000000,0.000050936000000,0.000054491000000,0.000204615000000,0.000080960000000,0.000272565000000 +0.000023097500000,0.000205010000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000066739000000,0.000084912000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000206590000000,0.000085701000000,0.000182096000000 +0.000024085500000,0.000207775000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000068713000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000052516000000,0.000209356000000,0.000082146000000,0.000163529000000 +0.000022505000000,0.000258343000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000066738000000,0.000084516000000,0.000027232000000,0.000052911000000,0.000052911000000,0.000202639000000,0.000080961000000,0.000163528000000 +0.000022505000000,0.000208565000000,0.000115726000000,0.000021851000000,0.000036530000000,0.000070689000000,0.000083331000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000205010000000,0.000086097000000,0.000160368000000 +0.000022307500000,0.000204615000000,0.000079380000000,0.000013950000000,0.000026455500000,0.000066343000000,0.000116517000000,0.000026837000000,0.000051726000000,0.000065949000000,0.000208960000000,0.000083726000000,0.000163923000000 +0.000022900000000,0.000205800000000,0.000065553000000,0.000013818000000,0.000026653500000,0.000069109000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000053701000000,0.000237800000000,0.000080961000000,0.000204220000000 +0.000022110000000,0.000220023000000,0.000063578000000,0.000013423000000,0.000026851000000,0.000067528000000,0.000082936000000,0.000026837000000,0.000067133000000,0.000054887000000,0.000208960000000,0.000081751000000,0.000163133000000 +0.000021912500000,0.000206985000000,0.000063973000000,0.000013950000000,0.000026653500000,0.000065948000000,0.000083726000000,0.000026442000000,0.000052122000000,0.000054886000000,0.000213306000000,0.000079776000000,0.000161553000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000066739000000,0.000082935000000,0.000026442000000,0.000053701000000,0.000053306000000,0.000205405000000,0.000079775000000,0.000160763000000 +0.000022307000000,0.000239776000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000066739000000,0.000082936000000,0.000040664000000,0.000052911000000,0.000054491000000,0.000208960000000,0.000082540000000,0.000209355000000 +0.000022505000000,0.000208171000000,0.000063973000000,0.000013423333333,0.000026653000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000053307000000,0.000054887000000,0.000215677000000,0.000079380000000,0.000165109000000 +0.000022505000000,0.000217652000000,0.000065553000000,0.000013423000000,0.000026653500000,0.000064763000000,0.000130738000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000204615000000,0.000081355000000,0.000161158000000 +0.000022109500000,0.000214491000000,0.000063577000000,0.000013423000000,0.000026455500000,0.000067529000000,0.000082146000000,0.000027628000000,0.000052121000000,0.000051726000000,0.000279282000000,0.000080566000000,0.000159578000000 +0.000022900000000,0.000209750000000,0.000063973000000,0.000013818333333,0.000026653500000,0.000066739000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000057257000000,0.000211726000000,0.000080170000000,0.000159578000000 +0.000023295000000,0.000213701000000,0.000065949000000,0.000018032000000,0.000026653000000,0.000066344000000,0.000088072000000,0.000027232000000,0.000054492000000,0.000054887000000,0.000208170000000,0.000079775000000,0.000162738000000 +0.000023097500000,0.000205800000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000065158000000,0.000082146000000,0.000027232000000,0.000106640000000,0.000054096000000,0.000211726000000,0.000080171000000,0.000165109000000 +0.000022505000000,0.000240170000000,0.000063973000000,0.000014344666667,0.000028035500000,0.000065553000000,0.000082541000000,0.000027233000000,0.000054097000000,0.000053307000000,0.000431775000000,0.000081356000000,0.000166689000000 +0.000022307500000,0.000206195000000,0.000063973000000,0.000013950000000,0.000026850500000,0.000065949000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000221998000000,0.000089256000000,0.000163528000000 +0.000022505000000,0.000216467000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000071084000000,0.000102689000000,0.000026838000000,0.000052911000000,0.000051331000000,0.000542392000000,0.000081750000000,0.000228318000000 +0.000024085500000,0.000218442000000,0.000065554000000,0.000013950000000,0.000026653000000,0.000067133000000,0.000084516000000,0.000027627000000,0.000056071000000,0.000052911000000,0.000337355000000,0.000081750000000,0.000162738000000 +0.000022505000000,0.000205010000000,0.000079380000000,0.000013949666667,0.000026851000000,0.000066738000000,0.000082541000000,0.000026837000000,0.000053701000000,0.000052517000000,0.000413998000000,0.000079775000000,0.000174195000000 +0.000022702500000,0.000212911000000,0.000063578000000,0.000013423333333,0.000035147000000,0.000065553000000,0.000084912000000,0.000065158000000,0.000052121000000,0.000147331000000,0.000219232000000,0.000081355000000,0.000161948000000 +0.000022505000000,0.000205405000000,0.000065948000000,0.000013423333333,0.000026455500000,0.000065158000000,0.000083331000000,0.000080961000000,0.000054096000000,0.000092812000000,0.000337751000000,0.000079775000000,0.000195133000000 +0.000022110000000,0.000294294000000,0.000065948000000,0.000013950000000,0.000026653500000,0.000065158000000,0.000082936000000,0.000057257000000,0.000052517000000,0.000083331000000,0.000205405000000,0.000083330000000,0.000160368000000 +0.000021912500000,0.000352763000000,0.000063577000000,0.000019612333333,0.000026653000000,0.000068713000000,0.000084912000000,0.000029207000000,0.000067134000000,0.000057652000000,0.000206985000000,0.000081356000000,0.000160763000000 +0.000022505000000,0.000211330000000,0.000065553000000,0.000014740000000,0.000034949500000,0.000065553000000,0.000102689000000,0.000028418000000,0.000052516000000,0.000054886000000,0.000340121000000,0.000081356000000,0.000162739000000 +0.000023295000000,0.000207380000000,0.000063578000000,0.000013818000000,0.000033369500000,0.000067529000000,0.000083726000000,0.000026837000000,0.000052911000000,0.000053307000000,0.000219232000000,0.000081751000000,0.000194738000000 +0.000022702500000,0.000209751000000,0.000099923000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000084516000000,0.000026442000000,0.000052517000000,0.000068319000000,0.000204615000000,0.000081750000000,0.000161554000000 +0.000022110000000,0.000210936000000,0.000065553000000,0.000013949666667,0.000026850500000,0.000066343000000,0.000084517000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000246096000000,0.000079380000000,0.000159578000000 +0.000022110000000,0.000211726000000,0.000063973000000,0.000013818333333,0.000036529500000,0.000065158000000,0.000084121000000,0.000040664000000,0.000051726000000,0.000054096000000,0.000206985000000,0.000079775000000,0.000162343000000 +0.000022110000000,0.000212516000000,0.000063578000000,0.000013950000000,0.000046011000000,0.000067134000000,0.000082540000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000214096000000,0.000081751000000,0.000166294000000 +0.000022109500000,0.000208961000000,0.000063578000000,0.000013949666667,0.000035542000000,0.000065554000000,0.000082541000000,0.000026837000000,0.000051331000000,0.000054491000000,0.000212121000000,0.000080170000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000065553000000,0.000101504000000,0.000027627000000,0.000054491000000,0.000054887000000,0.000249257000000,0.000079775000000,0.000162738000000 +0.000022307500000,0.000208961000000,0.000063183000000,0.000013818333333,0.000026653500000,0.000066739000000,0.000134294000000,0.000026837000000,0.000066738000000,0.000052911000000,0.000205010000000,0.000080170000000,0.000165504000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000020534333333,0.000026653000000,0.000067134000000,0.000084121000000,0.000028022000000,0.000053306000000,0.000053306000000,0.000209355000000,0.000081750000000,0.000162343000000 +0.000022703000000,0.000204615000000,0.000078195000000,0.000014345000000,0.000026455500000,0.000067528000000,0.000082146000000,0.000026442000000,0.000051726000000,0.000088466000000,0.000270590000000,0.000080171000000,0.000195924000000 +0.000023295500000,0.000206985000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000067528000000,0.000083331000000,0.000026838000000,0.000051726000000,0.000052121000000,0.000210145000000,0.000080171000000,0.000162738000000 +0.000041468000000,0.000210936000000,0.000065948000000,0.000013949666667,0.000045814000000,0.000065553000000,0.000084911000000,0.000026442000000,0.000052516000000,0.000054096000000,0.000255578000000,0.000081751000000,0.000161553000000 +0.000022110000000,0.000213701000000,0.000065948000000,0.000013950000000,0.000026851000000,0.000065158000000,0.000082146000000,0.000026838000000,0.000052517000000,0.000054887000000,0.000298640000000,0.000082145000000,0.000166294000000 +0.000022505000000,0.000204615000000,0.000065553000000,0.000013554666667,0.000026653000000,0.000066344000000,0.000118886000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000209751000000,0.000080961000000,0.000215281000000 +0.000023097500000,0.000205404000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000205405000000,0.000080566000000,0.000161553000000 +0.000022307500000,0.000238985000000,0.000063973000000,0.000013423333333,0.000026455500000,0.000067133000000,0.000085701000000,0.000028022000000,0.000051726000000,0.000054886000000,0.000203825000000,0.000079776000000,0.000195528000000 +0.000022702500000,0.000209355000000,0.000063972000000,0.000013950000000,0.000026653500000,0.000067134000000,0.000084517000000,0.000026837000000,0.000069109000000,0.000054886000000,0.000212517000000,0.000080171000000,0.000166294000000 +0.000022110000000,0.000205405000000,0.000067924000000,0.000013950000000,0.000026850500000,0.000068714000000,0.000082936000000,0.000026837000000,0.000051331000000,0.000054886000000,0.000222393000000,0.000117701000000,0.000231479000000 +0.000022505000000,0.000204614000000,0.000065949000000,0.000013818333333,0.000026455500000,0.000065159000000,0.000084517000000,0.000026442000000,0.000053702000000,0.000051726000000,0.000206195000000,0.000109010000000,0.000161553000000 +0.000022505000000,0.000206195000000,0.000065948000000,0.000027118666667,0.000026653000000,0.000066344000000,0.000083331000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000276121000000,0.000080171000000,0.000162739000000 +0.000024085000000,0.000204615000000,0.000063972000000,0.000013949666667,0.000047789000000,0.000069504000000,0.000151676000000,0.000026837000000,0.000052516000000,0.000054492000000,0.000206195000000,0.000101503000000,0.000163134000000 +0.000029418500000,0.000205800000000,0.000063973000000,0.000014740000000,0.000027245500000,0.000068318000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054096000000,0.000208565000000,0.000081751000000,0.000208565000000 +0.000022110000000,0.000206590000000,0.000063577000000,0.000013818333333,0.000027640500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000052912000000,0.000213701000000,0.000081751000000,0.000159973000000 +0.000022505000000,0.000204614000000,0.000067923000000,0.000013818333333,0.000026455500000,0.000065158000000,0.000082936000000,0.000026837000000,0.000053307000000,0.000051726000000,0.000210146000000,0.000081356000000,0.000162738000000 +0.000022505000000,0.000205010000000,0.000063577000000,0.000013818333333,0.000026455500000,0.000068319000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000051726000000,0.000205404000000,0.000081751000000,0.000163924000000 +0.000024085000000,0.000207380000000,0.000094787000000,0.000013554666667,0.000027246000000,0.000086096000000,0.000082936000000,0.000026442000000,0.000101504000000,0.000052911000000,0.000210936000000,0.000080961000000,0.000185257000000 +0.000022110000000,0.000206195000000,0.000094392000000,0.000013818000000,0.000026456000000,0.000081751000000,0.000082146000000,0.000027232000000,0.000051726000000,0.000072270000000,0.000278096000000,0.000081356000000,0.000163528000000 +0.000031789000000,0.000208171000000,0.000067133000000,0.000013818000000,0.000026455500000,0.000069109000000,0.000123232000000,0.000040664000000,0.000052911000000,0.000054886000000,0.000205010000000,0.000080961000000,0.000161553000000 +0.000030604000000,0.000209356000000,0.000067133000000,0.000013949666667,0.000026455500000,0.000067133000000,0.000082541000000,0.000028022000000,0.000052911000000,0.000056072000000,0.000208961000000,0.000086097000000,0.000162343000000 +0.000023097500000,0.000206590000000,0.000086096000000,0.000013950000000,0.000044628500000,0.000066343000000,0.000084121000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000227924000000,0.000080170000000,0.000161158000000 +0.000022505000000,0.000206985000000,0.000084912000000,0.000014345000000,0.000027048500000,0.000065948000000,0.000084516000000,0.000026837000000,0.000052517000000,0.000057652000000,0.000210936000000,0.000083726000000,0.000197108000000 +0.000028826000000,0.000204615000000,0.000178541000000,0.000013423000000,0.000027838500000,0.000067133000000,0.000082935000000,0.000026442000000,0.000055282000000,0.000054886000000,0.000333800000000,0.000080171000000,0.000165504000000 +0.000022702500000,0.000229109000000,0.000106245000000,0.000013423000000,0.000026653000000,0.000139825000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000053306000000,0.000261108000000,0.000079380000000,0.000161553000000 +0.000022110000000,0.000204615000000,0.000193948000000,0.000013950000000,0.000026653000000,0.000067529000000,0.000082936000000,0.000026838000000,0.000052912000000,0.000054886000000,0.000219627000000,0.000079775000000,0.000165108000000 +0.000022307500000,0.000210541000000,0.000110591000000,0.000013950000000,0.000026653000000,0.000067924000000,0.000168664000000,0.000027232000000,0.000085306000000,0.000054491000000,0.000205009000000,0.000081751000000,0.000195133000000 +0.000022110000000,0.000210936000000,0.000067528000000,0.000013686333333,0.000027048000000,0.000065553000000,0.000135479000000,0.000026442000000,0.000051726000000,0.000088072000000,0.000205405000000,0.000095973000000,0.000159973000000 +0.000022702500000,0.000208960000000,0.000069899000000,0.000013554666667,0.000026653500000,0.000065158000000,0.000088071000000,0.000026837000000,0.000054887000000,0.000051726000000,0.000208960000000,0.000084121000000,0.000161553000000 +0.000023097500000,0.000205800000000,0.000086492000000,0.000013818333333,0.000027048000000,0.000069899000000,0.000088071000000,0.000026442000000,0.000052912000000,0.000054491000000,0.000206986000000,0.000082145000000,0.000162738000000 +0.000022307500000,0.000206590000000,0.000094393000000,0.000013949666667,0.000036529500000,0.000068318000000,0.000109800000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000206985000000,0.000109010000000,0.000197899000000 +0.000022110000000,0.000210145000000,0.000067528000000,0.000013950000000,0.000026850500000,0.000066738000000,0.000177750000000,0.000046590000000,0.000053701000000,0.000052516000000,0.000305355000000,0.000079775000000,0.000165899000000 +0.000022505000000,0.000206985000000,0.000157208000000,0.000013818333333,0.000026455500000,0.000149306000000,0.000139825000000,0.000026837000000,0.000052121000000,0.000052911000000,0.000213702000000,0.000081355000000,0.000169059000000 +0.000039295000000,0.000210936000000,0.000081356000000,0.000013423000000,0.000027641000000,0.000071875000000,0.000253207000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000206985000000,0.000080170000000,0.000163528000000 +0.000022307500000,0.000208961000000,0.000067528000000,0.000013818000000,0.000026653000000,0.000067923000000,0.000183281000000,0.000026442000000,0.000052912000000,0.000052121000000,0.000238985000000,0.000107035000000,0.000163134000000 +0.000024085500000,0.000205405000000,0.000067133000000,0.000013423000000,0.000026456000000,0.000066343000000,0.000116912000000,0.000027628000000,0.000086492000000,0.000054096000000,0.000208565000000,0.000081356000000,0.000162343000000 +0.000022110000000,0.000209355000000,0.000067528000000,0.000013949666667,0.000027443000000,0.000065553000000,0.000104269000000,0.000026442000000,0.000054491000000,0.000068714000000,0.000204615000000,0.000079775000000,0.000166689000000 +0.000022110000000,0.000210541000000,0.000069899000000,0.000013423333333,0.000027838000000,0.000066344000000,0.000091233000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000208961000000,0.000079776000000,0.000164713000000 +0.000022110000000,0.000208961000000,0.000101898000000,0.000013554666667,0.000044036000000,0.000065948000000,0.000090047000000,0.000027232000000,0.000051727000000,0.000051726000000,0.000306541000000,0.000080171000000,0.000165109000000 +0.000024085000000,0.000206985000000,0.000069899000000,0.000013950000000,0.000034159000000,0.000067133000000,0.000114936000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000207776000000,0.000081356000000,0.000318392000000 +0.000022110000000,0.000204614000000,0.000067133000000,0.000013818000000,0.000027048000000,0.000066343000000,0.000103084000000,0.000026837000000,0.000053306000000,0.000054887000000,0.000207776000000,0.000081751000000,0.000166294000000 +0.000022110000000,0.000212121000000,0.000067133000000,0.000014476333333,0.000027246000000,0.000065553000000,0.000091627000000,0.000026837000000,0.000051331000000,0.000054887000000,0.000238590000000,0.000182887000000,0.000161158000000 +0.000022505000000,0.000208566000000,0.000067529000000,0.000020271000000,0.000027443000000,0.000066343000000,0.000090047000000,0.000026837000000,0.000052911000000,0.000053701000000,0.000216466000000,0.000096368000000,0.000161158000000 +0.000055493000000,0.000205009000000,0.000067528000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000090837000000,0.000075825000000,0.000054096000000,0.000053702000000,0.000212516000000,0.000081356000000,0.000162343000000 +0.000022505000000,0.000206985000000,0.000067529000000,0.000013950000000,0.000026456000000,0.000068713000000,0.000099529000000,0.000027232000000,0.000071479000000,0.000054886000000,0.000211726000000,0.000079776000000,0.000163133000000 +0.000022505000000,0.000205405000000,0.000067923000000,0.000013950000000,0.000026653000000,0.000067923000000,0.000090442000000,0.000026837000000,0.000103875000000,0.000054096000000,0.000502096000000,0.000079775000000,0.000165899000000 +0.000022702500000,0.000212516000000,0.000069504000000,0.000013554666667,0.000027641000000,0.000066344000000,0.000125997000000,0.000026442000000,0.000056071000000,0.000053702000000,0.000221602000000,0.000081750000000,0.000162343000000 +0.000023493000000,0.000212911000000,0.000067924000000,0.000013818333333,0.000026653000000,0.000067134000000,0.000092812000000,0.000026837000000,0.000065158000000,0.000051726000000,0.000240961000000,0.000082936000000,0.000303380000000 +0.000022900000000,0.000204615000000,0.000067133000000,0.000013949666667,0.000027246000000,0.000069109000000,0.000090442000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000211331000000,0.000080171000000,0.000177750000000 +0.000022505000000,0.000207380000000,0.000069504000000,0.000013555000000,0.000026653500000,0.000068714000000,0.000092417000000,0.000026838000000,0.000053306000000,0.000052517000000,0.000205010000000,0.000079775000000,0.000161948000000 +0.000023097500000,0.000213701000000,0.000067529000000,0.000013818333333,0.000026455500000,0.000066739000000,0.000090837000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000210936000000,0.000081751000000,0.000163529000000 +0.000022110000000,0.000205010000000,0.000067133000000,0.000013949666667,0.000026850500000,0.000067133000000,0.000092812000000,0.000026443000000,0.000053306000000,0.000088466000000,0.000209750000000,0.000082146000000,0.000163529000000 +0.000022505000000,0.000210936000000,0.000072269000000,0.000013554666667,0.000028431000000,0.000065553000000,0.000090837000000,0.000027627000000,0.000052516000000,0.000071084000000,0.000212516000000,0.000081355000000,0.000162344000000 +0.000037715000000,0.000206985000000,0.000065553000000,0.000014739666667,0.000026850500000,0.000065948000000,0.000090047000000,0.000026442000000,0.000054491000000,0.000054886000000,0.000206195000000,0.000082146000000,0.000162739000000 +0.000022307500000,0.000210936000000,0.000065948000000,0.000013423000000,0.000026850500000,0.000065158000000,0.000092417000000,0.000026837000000,0.000051331000000,0.000057652000000,0.000238985000000,0.000093602000000,0.000160763000000 +0.000022505000000,0.000261109000000,0.000065554000000,0.000014740000000,0.000026653000000,0.000066343000000,0.000090837000000,0.000026442000000,0.000052516000000,0.000054492000000,0.000205010000000,0.000075035000000,0.000196318000000 +0.000022505000000,0.000210936000000,0.000063973000000,0.000013949666667,0.000043048000000,0.000065553000000,0.000091232000000,0.000026442000000,0.000052516000000,0.000053306000000,0.000210935000000,0.000075430000000,0.000169849000000 +0.000022307000000,0.000207775000000,0.000065948000000,0.000013949666667,0.000026455500000,0.000069109000000,0.000092418000000,0.000026442000000,0.000054096000000,0.000054887000000,0.000208961000000,0.000075429000000,0.000163529000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013950000000,0.000027048000000,0.000064763000000,0.000092418000000,0.000026837000000,0.000052517000000,0.000054096000000,0.000267430000000,0.000075034000000,0.000161554000000 +0.000022702500000,0.000216071000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000127183000000,0.000026443000000,0.000052121000000,0.000054491000000,0.000210540000000,0.000076615000000,0.000194738000000 +0.000023097500000,0.000204615000000,0.000099924000000,0.000013949666667,0.000026455500000,0.000065949000000,0.000105060000000,0.000026837000000,0.000052516000000,0.000051726000000,0.000205010000000,0.000077010000000,0.000162738000000 +0.000022110000000,0.000307331000000,0.000140615000000,0.000013554666667,0.000026653500000,0.000067529000000,0.000087676000000,0.000027627000000,0.000057257000000,0.000088466000000,0.000238590000000,0.000077010000000,0.000161158000000 +0.000022110000000,0.000210541000000,0.000078985000000,0.000013818000000,0.000026456000000,0.000066738000000,0.000099924000000,0.000026837000000,0.000052912000000,0.000054887000000,0.000213701000000,0.000076615000000,0.000163133000000 +0.000022702500000,0.000209356000000,0.000065948000000,0.000025011666667,0.000026653500000,0.000068713000000,0.000082541000000,0.000027232000000,0.000053307000000,0.000052517000000,0.000203035000000,0.000077405000000,0.000231084000000 +0.000022110000000,0.000261504000000,0.000166689000000,0.000013950000000,0.000026653000000,0.000099923000000,0.000083726000000,0.000026443000000,0.000053701000000,0.000052911000000,0.000208960000000,0.000077010000000,0.000166294000000 +0.000022110000000,0.000210936000000,0.000065553000000,0.000013555000000,0.000044628000000,0.000067924000000,0.000082936000000,0.000026442000000,0.000054097000000,0.000054887000000,0.000206985000000,0.000075034000000,0.000163528000000 +0.000022505000000,0.000213306000000,0.000077800000000,0.000020139000000,0.000027048500000,0.000065948000000,0.000083331000000,0.000026837000000,0.000052912000000,0.000051726000000,0.000206985000000,0.000075430000000,0.000166689000000 +0.000023097500000,0.000222392000000,0.000065553000000,0.000014740000000,0.000026653500000,0.000065158000000,0.000084911000000,0.000026837000000,0.000054491000000,0.000054097000000,0.000225553000000,0.000077010000000,0.000196714000000 +0.000023492500000,0.000205010000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000065553000000,0.000082146000000,0.000026442000000,0.000053306000000,0.000054886000000,0.000238986000000,0.000075825000000,0.000168664000000 +0.000022505000000,0.000209355000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000067134000000,0.000084516000000,0.000026442000000,0.000053306000000,0.000054492000000,0.000468121000000,0.000078195000000,0.000161553000000 +0.000022505000000,0.000208170000000,0.000063578000000,0.000013423333333,0.000026455500000,0.000067529000000,0.000084516000000,0.000026838000000,0.000070689000000,0.000109010000000,0.000311282000000,0.000077010000000,0.000162738000000 +0.000024085000000,0.000210936000000,0.000063577000000,0.000014344666667,0.000026653000000,0.000067133000000,0.000085702000000,0.000026837000000,0.000057257000000,0.000054887000000,0.000220022000000,0.000075430000000,0.000163133000000 +0.000022505000000,0.000206195000000,0.000063973000000,0.000013423000000,0.000027048000000,0.000067133000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000211726000000,0.000075430000000,0.000164318000000 +0.000039295000000,0.000204614000000,0.000065553000000,0.000025538333333,0.000026653000000,0.000065553000000,0.000154442000000,0.000026838000000,0.000051726000000,0.000054887000000,0.000229109000000,0.000076615000000,0.000163923000000 +0.000022110000000,0.000214492000000,0.000063973000000,0.000018822333333,0.000045616000000,0.000065158000000,0.000090047000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000210540000000,0.000075429000000,0.000162343000000 +0.000023492500000,0.000210541000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000083726000000,0.000026442000000,0.000051331000000,0.000053701000000,0.000208961000000,0.000078195000000,0.000162344000000 +0.000022505000000,0.000212121000000,0.000063972000000,0.000013949666667,0.000027048500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000054096000000,0.000054887000000,0.000204615000000,0.000077010000000,0.000195923000000 +0.000022110000000,0.000209356000000,0.000063973000000,0.000013818000000,0.000026456000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000053306000000,0.000054097000000,0.000293109000000,0.000077405000000,0.000164318000000 +0.000022110000000,0.000213702000000,0.000065554000000,0.000013949666667,0.000026653000000,0.000066343000000,0.000083331000000,0.000026837000000,0.000051331000000,0.000093997000000,0.000210936000000,0.000077010000000,0.000162738000000 +0.000022110000000,0.000206590000000,0.000065553000000,0.000013818333333,0.000026653000000,0.000065553000000,0.000164714000000,0.000027628000000,0.000084121000000,0.000051726000000,0.000209751000000,0.000076615000000,0.000161948000000 +0.000022505000000,0.000206196000000,0.000065948000000,0.000015003333333,0.000026455500000,0.000069109000000,0.000082541000000,0.000026442000000,0.000053702000000,0.000051331000000,0.000243725000000,0.000075034000000,0.000234640000000 +0.000022110000000,0.000207380000000,0.000097553000000,0.000013949666667,0.000026455500000,0.000069109000000,0.000103084000000,0.000026442000000,0.000053307000000,0.000053306000000,0.000206590000000,0.000075430000000,0.000161158000000 +0.000022307500000,0.000206195000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000125603000000,0.000026442000000,0.000051726000000,0.000052911000000,0.000221603000000,0.000075429000000,0.000160368000000 +0.000039492500000,0.000206985000000,0.000065949000000,0.000019876000000,0.000036529500000,0.000066343000000,0.000082936000000,0.000026442000000,0.000053306000000,0.000054886000000,0.000205010000000,0.000076615000000,0.000159578000000 +0.000022110000000,0.000204615000000,0.000065554000000,0.000043052666667,0.000027641000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000056071000000,0.000312467000000,0.000075825000000,0.000211726000000 +0.000022505000000,0.000205010000000,0.000065553000000,0.000025933333333,0.000027048500000,0.000065554000000,0.000132714000000,0.000026442000000,0.000053306000000,0.000054887000000,0.000206985000000,0.000110590000000,0.000165108000000 +0.000022505000000,0.000210936000000,0.000063578000000,0.000018558666667,0.000026653000000,0.000065159000000,0.000084122000000,0.000026837000000,0.000051726000000,0.000057652000000,0.000205405000000,0.000075430000000,0.000162344000000 +0.000022505000000,0.000206590000000,0.000065949000000,0.000013423333333,0.000026653000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000068319000000,0.000252417000000,0.000077010000000,0.000161553000000 +0.000022110000000,0.000205800000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000082541000000,0.000027233000000,0.000051726000000,0.000053306000000,0.000206985000000,0.000075429000000,0.000163924000000 +0.000022505000000,0.000244516000000,0.000116911000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000055282000000,0.000221207000000,0.000077405000000,0.000163133000000 +0.000022703000000,0.000204615000000,0.000065948000000,0.000013949666667,0.000027641000000,0.000067133000000,0.000082541000000,0.000028022000000,0.000052912000000,0.000054097000000,0.000246491000000,0.000077010000000,0.000162739000000 +0.000022110000000,0.000204615000000,0.000065948000000,0.000018427000000,0.000026653500000,0.000064763000000,0.000104269000000,0.000026837000000,0.000052121000000,0.000054096000000,0.000205010000000,0.000075430000000,0.000164319000000 +0.000022505000000,0.000206590000000,0.000063973000000,0.000013950000000,0.000044431000000,0.000067924000000,0.000083331000000,0.000026837000000,0.000053701000000,0.000051331000000,0.000204614000000,0.000075430000000,0.000163528000000 +0.000035147000000,0.000206590000000,0.000063973000000,0.000013818000000,0.000026456000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000204615000000,0.000077405000000,0.000195923000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000085701000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000240961000000,0.000081751000000,0.000166293000000 +0.000022110000000,0.000207381000000,0.000065948000000,0.000014740000000,0.000026653000000,0.000065158000000,0.000083726000000,0.000026837000000,0.000054491000000,0.000052912000000,0.000209356000000,0.000075430000000,0.000162739000000 +0.000022307500000,0.000233454000000,0.000118492000000,0.000013949666667,0.000026653000000,0.000065553000000,0.000084516000000,0.000026442000000,0.000052517000000,0.000052911000000,0.000202640000000,0.000075430000000,0.000163924000000 +0.000022505000000,0.000208961000000,0.000065948000000,0.000013818333333,0.000027443500000,0.000101109000000,0.000083726000000,0.000026837000000,0.000056072000000,0.000055676000000,0.000238985000000,0.000075429000000,0.000331430000000 +0.000022702500000,0.000204615000000,0.000065553000000,0.000013554666667,0.000027048000000,0.000065158000000,0.000102689000000,0.000026442000000,0.000052912000000,0.000052122000000,0.000208960000000,0.000075430000000,0.000206986000000 +0.000022110000000,0.000204615000000,0.000065948000000,0.000013818000000,0.000026653000000,0.000066343000000,0.000087677000000,0.000026442000000,0.000054491000000,0.000053701000000,0.000204220000000,0.000075825000000,0.000163133000000 +0.000023888000000,0.000221603000000,0.000063973000000,0.000021324333333,0.000026850500000,0.000065159000000,0.000087677000000,0.000026442000000,0.000054096000000,0.000054887000000,0.000208566000000,0.000074639000000,0.000196319000000 +0.000022505000000,0.000207380000000,0.000063578000000,0.000014213000000,0.000044826000000,0.000068319000000,0.000088466000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000246886000000,0.000164318000000,0.000161553000000 +0.000022702500000,0.000204615000000,0.000063578000000,0.000013818000000,0.000026653500000,0.000065158000000,0.000088072000000,0.000026837000000,0.000052911000000,0.000053306000000,0.000205010000000,0.000075825000000,0.000161553000000 +0.000022110000000,0.000236615000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000087281000000,0.000041849000000,0.000054887000000,0.000054887000000,0.000208960000000,0.000077800000000,0.000162739000000 +0.000022505000000,0.000208170000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000070294000000,0.000087676000000,0.000028812000000,0.000052912000000,0.000088467000000,0.000249651000000,0.000077010000000,0.000164713000000 +0.000022505000000,0.000217652000000,0.000065948000000,0.000015003333333,0.000026653500000,0.000067529000000,0.000089652000000,0.000026837000000,0.000085702000000,0.000054887000000,0.000205009000000,0.000076614000000,0.000190392000000 +0.000022702500000,0.000214097000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000066344000000,0.000087677000000,0.000027627000000,0.000054492000000,0.000051726000000,0.000207380000000,0.000076220000000,0.000159578000000 +0.000022505000000,0.000210541000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000065553000000,0.000087677000000,0.000026837000000,0.000051726000000,0.000054096000000,0.000214097000000,0.000093998000000,0.000159578000000 +0.000022505000000,0.000213701000000,0.000065553000000,0.000013949666667,0.000034949500000,0.000066343000000,0.000096763000000,0.000027232000000,0.000054886000000,0.000054887000000,0.000302195000000,0.000075430000000,0.000162739000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000013423000000,0.000026851000000,0.000068318000000,0.000087282000000,0.000026837000000,0.000051726000000,0.000054096000000,0.000211726000000,0.000077010000000,0.000198689000000 +0.000022307500000,0.000204615000000,0.000063578000000,0.000013818000000,0.000027838500000,0.000066738000000,0.000087676000000,0.000026442000000,0.000052121000000,0.000053307000000,0.000210145000000,0.000078590000000,0.000166689000000 +0.000023295000000,0.000225553000000,0.000063578000000,0.000030674000000,0.000027245500000,0.000064763000000,0.000090047000000,0.000026837000000,0.000051331000000,0.000051726000000,0.000332219000000,0.000077010000000,0.000162344000000 +0.000024677500000,0.000216466000000,0.000063577000000,0.000018427333333,0.000026653000000,0.000065158000000,0.000098343000000,0.000026837000000,0.000054492000000,0.000051726000000,0.000247282000000,0.000075824000000,0.000159973000000 +0.000022505000000,0.000218047000000,0.000065158000000,0.000013423000000,0.000026653000000,0.000067923000000,0.000089652000000,0.000027627000000,0.000052911000000,0.000066343000000,0.000206985000000,0.000075430000000,0.000244911000000 +0.000022307500000,0.000205405000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000065158000000,0.000087676000000,0.000026837000000,0.000109405000000,0.000052912000000,0.000242541000000,0.000077010000000,0.000173800000000 +0.000022110000000,0.000212516000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000067133000000,0.000089652000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000206590000000,0.000077010000000,0.000161949000000 +0.000023097500000,0.000205800000000,0.000065948000000,0.000014740000000,0.000026653000000,0.000064368000000,0.000088467000000,0.000026838000000,0.000053306000000,0.000054491000000,0.000208960000000,0.000075429000000,0.000161553000000 +0.000022702500000,0.000208171000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000065948000000,0.000087677000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000205405000000,0.000077405000000,0.000195133000000 +0.000022703000000,0.000259924000000,0.000063578000000,0.000013949666667,0.000026850500000,0.000067923000000,0.000089257000000,0.000026443000000,0.000052516000000,0.000057652000000,0.000206986000000,0.000075430000000,0.000176566000000 +0.000023492500000,0.000211331000000,0.000120467000000,0.000013818000000,0.000027048500000,0.000066738000000,0.000123232000000,0.000026837000000,0.000052516000000,0.000054887000000,0.000210936000000,0.000075430000000,0.000162343000000 +0.000022110000000,0.000206985000000,0.000114936000000,0.000013950000000,0.000026653500000,0.000065158000000,0.000088466000000,0.000026838000000,0.000053701000000,0.000053306000000,0.000203825000000,0.000075429000000,0.000161158000000 +0.000022109500000,0.000210936000000,0.000069899000000,0.000036995000000,0.000026850500000,0.000066344000000,0.000090047000000,0.000026837000000,0.000056466000000,0.000054887000000,0.000238590000000,0.000077010000000,0.000181307000000 +0.000022703000000,0.000211331000000,0.000065948000000,0.000013423333333,0.000027048000000,0.000068714000000,0.000089652000000,0.000026837000000,0.000054491000000,0.000053701000000,0.000212516000000,0.000075430000000,0.000173405000000 +0.000024085500000,0.000210936000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065949000000,0.000090047000000,0.000026837000000,0.000069504000000,0.000054491000000,0.000207380000000,0.000112170000000,0.000162738000000 +0.000029419000000,0.000212516000000,0.000063578000000,0.000013818333333,0.000027048000000,0.000067528000000,0.000087677000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000214096000000,0.000075824000000,0.000165504000000 +0.000022307000000,0.000209751000000,0.000132319000000,0.000014740000000,0.000027640500000,0.000084911000000,0.000086886000000,0.000026442000000,0.000052912000000,0.000054491000000,0.000211726000000,0.000074640000000,0.000163133000000 +0.000023098000000,0.000204615000000,0.000063578000000,0.000013423333333,0.000027048000000,0.000068714000000,0.000087676000000,0.000066739000000,0.000052516000000,0.000054887000000,0.000204220000000,0.000075430000000,0.000163528000000 +0.000022110000000,0.000208171000000,0.000063578000000,0.000013423000000,0.000026456000000,0.000066739000000,0.000087282000000,0.000026837000000,0.000053306000000,0.000052517000000,0.000205405000000,0.000075430000000,0.000167874000000 +0.000022307500000,0.000209751000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000064763000000,0.000089257000000,0.000028023000000,0.000051726000000,0.000052911000000,0.000245701000000,0.000077405000000,0.000163529000000 +0.000022505000000,0.000204220000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000066739000000,0.000087676000000,0.000026442000000,0.000052911000000,0.000055677000000,0.000208961000000,0.000075035000000,0.000161948000000 +0.000022307500000,0.000207381000000,0.000063973000000,0.000013554666667,0.000027048500000,0.000207775000000,0.000088466000000,0.000026443000000,0.000051726000000,0.000085306000000,0.000210540000000,0.000075430000000,0.000196714000000 +0.000022110000000,0.000210936000000,0.000065948000000,0.000032386333333,0.000027641000000,0.000100713000000,0.000090443000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000214887000000,0.000131133000000,0.000162738000000 +0.000022110000000,0.000342886000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000067134000000,0.000143776000000,0.000026838000000,0.000103084000000,0.000054887000000,0.000244911000000,0.000075429000000,0.000167084000000 +0.000022505000000,0.000204615000000,0.000079775000000,0.000013949666667,0.000026455500000,0.000066343000000,0.000252022000000,0.000026442000000,0.000054887000000,0.000054491000000,0.000209356000000,0.000077009000000,0.000163528000000 +0.000030603500000,0.000204615000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000089652000000,0.000026837000000,0.000070689000000,0.000051726000000,0.000205405000000,0.000075430000000,0.000229504000000 +0.000023097500000,0.000222392000000,0.000063973000000,0.000014345000000,0.000026653000000,0.000066344000000,0.000090837000000,0.000026837000000,0.000065948000000,0.000054887000000,0.000237800000000,0.000077010000000,0.000160368000000 +0.000022109500000,0.000209355000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000067528000000,0.000090047000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000212911000000,0.000075430000000,0.000165899000000 +0.000022702500000,0.000206195000000,0.000068318000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000088467000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000221997000000,0.000075429000000,0.000162343000000 +0.000022110000000,0.000204615000000,0.000065948000000,0.000013423000000,0.000026851000000,0.000067529000000,0.000089652000000,0.000029208000000,0.000052516000000,0.000053306000000,0.000234245000000,0.000084517000000,0.000209356000000 +0.000022505000000,0.000241751000000,0.000065948000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000088467000000,0.000026837000000,0.000052911000000,0.000067528000000,0.000204219000000,0.000077010000000,0.000162739000000 +0.000022307500000,0.000204615000000,0.000112961000000,0.000013554666667,0.000026850500000,0.000064368000000,0.000088072000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000206195000000,0.000077010000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000020534333333,0.000026850500000,0.000065158000000,0.000087676000000,0.000026442000000,0.000051331000000,0.000053701000000,0.000208960000000,0.000075430000000,0.000161158000000 +0.000022505000000,0.000241356000000,0.000063578000000,0.000014740000000,0.000027640500000,0.000067924000000,0.000088862000000,0.000026837000000,0.000052912000000,0.000053307000000,0.000247676000000,0.000075430000000,0.000194343000000 +0.000022505000000,0.000204615000000,0.000067924000000,0.000013423333333,0.000026455500000,0.000065948000000,0.000087281000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000210541000000,0.000075430000000,0.000162738000000 +0.000029813500000,0.000204615000000,0.000116912000000,0.000013423333333,0.000026455500000,0.000099924000000,0.000088072000000,0.000026442000000,0.000052121000000,0.000051331000000,0.000205800000000,0.000074640000000,0.000163529000000 +0.000023097500000,0.000206590000000,0.000063578000000,0.000013555000000,0.000026851000000,0.000066343000000,0.000087677000000,0.000026443000000,0.000052911000000,0.000052912000000,0.000230294000000,0.000075430000000,0.000165503000000 +0.000022505000000,0.000248861000000,0.000068319000000,0.000013949666667,0.000027048000000,0.000065158000000,0.000088071000000,0.000027627000000,0.000052121000000,0.000052516000000,0.000206195000000,0.000115331000000,0.000163924000000 +0.000022110000000,0.000208565000000,0.000090837000000,0.000013818000000,0.000026653000000,0.000066344000000,0.000086492000000,0.000026443000000,0.000054096000000,0.000054886000000,0.000205405000000,0.000206985000000,0.000161553000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000014740000000,0.000026653000000,0.000065158000000,0.000087676000000,0.000028023000000,0.000052911000000,0.000056861000000,0.000210146000000,0.000080171000000,0.000162343000000 +0.000022110000000,0.000206590000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000065553000000,0.000089257000000,0.000060417000000,0.000052516000000,0.000054491000000,0.000242936000000,0.000075035000000,0.000160368000000 +0.000022109500000,0.000222393000000,0.000066344000000,0.000013818000000,0.000027245500000,0.000066344000000,0.000090047000000,0.000026837000000,0.000053306000000,0.000057652000000,0.000210936000000,0.000075035000000,0.000163924000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000044501333333,0.000027641000000,0.000066344000000,0.000088862000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000212911000000,0.000075430000000,0.000246886000000 +0.000023492500000,0.000208170000000,0.000065553000000,0.000015135000000,0.000027048500000,0.000066344000000,0.000087281000000,0.000026442000000,0.000051726000000,0.000052911000000,0.000221602000000,0.000075825000000,0.000161158000000 +0.000022505000000,0.000419528000000,0.000065949000000,0.000013818333333,0.000026456000000,0.000067923000000,0.000087281000000,0.000026442000000,0.000052912000000,0.000054887000000,0.000237010000000,0.000077010000000,0.000165899000000 +0.000046604000000,0.000230294000000,0.000122047000000,0.000013423000000,0.000026850500000,0.000065554000000,0.000087676000000,0.000027232000000,0.000052911000000,0.000053701000000,0.000204615000000,0.000075824000000,0.000160368000000 +0.000046998500000,0.000210936000000,0.000063578000000,0.000013291333333,0.000027048000000,0.000067134000000,0.000089652000000,0.000026838000000,0.000052911000000,0.000054097000000,0.000205010000000,0.000077801000000,0.000194739000000 +0.000025468000000,0.000208170000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000088072000000,0.000026837000000,0.000051331000000,0.000107035000000,0.000242541000000,0.000075429000000,0.000162344000000 +0.000022505000000,0.000206590000000,0.000132714000000,0.000013950000000,0.000026456000000,0.000066344000000,0.000087281000000,0.000026442000000,0.000053307000000,0.000071874000000,0.000277701000000,0.000076615000000,0.000163528000000 +0.000022307500000,0.000206590000000,0.000068319000000,0.000014081333333,0.000026653000000,0.000065158000000,0.000091233000000,0.000026838000000,0.000109800000000,0.000054886000000,0.000206985000000,0.000076220000000,0.000167084000000 +0.000022505000000,0.000210540000000,0.000067924000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000088862000000,0.000026442000000,0.000118096000000,0.000052516000000,0.000292318000000,0.000075430000000,0.000282837000000 +0.000022702500000,0.000207380000000,0.000286393000000,0.000020929333333,0.000026455500000,0.000088862000000,0.000090047000000,0.000026837000000,0.000056072000000,0.000052516000000,0.000221603000000,0.000075429000000,0.000230689000000 +0.000022110000000,0.000210936000000,0.000095578000000,0.000014871666667,0.000027640500000,0.000066344000000,0.000088862000000,0.000046591000000,0.000054492000000,0.000054887000000,0.000206985000000,0.000075430000000,0.000163134000000 +0.000022505000000,0.000208961000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000066738000000,0.000087677000000,0.000026837000000,0.000056466000000,0.000051331000000,0.000238985000000,0.000075035000000,0.000197503000000 +0.000022505000000,0.000206196000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000067134000000,0.000087282000000,0.000027627000000,0.000053701000000,0.000054097000000,0.000208170000000,0.000077010000000,0.000161948000000 +0.000022505000000,0.000209751000000,0.000063973000000,0.000013423333333,0.000027640500000,0.000068319000000,0.000087676000000,0.000026837000000,0.000052911000000,0.000109010000000,0.000204615000000,0.000075430000000,0.000165504000000 +0.000022505000000,0.000210936000000,0.000115331000000,0.000013950000000,0.000027640500000,0.000065158000000,0.000101504000000,0.000026442000000,0.000052912000000,0.000069899000000,0.000208565000000,0.000075035000000,0.000163529000000 +0.000022110000000,0.000208565000000,0.000097158000000,0.000013423000000,0.000026455500000,0.000068318000000,0.000082936000000,0.000026837000000,0.000054887000000,0.000053702000000,0.000285208000000,0.000075825000000,0.000160763000000 +0.000022505000000,0.000206590000000,0.000065554000000,0.000013818333333,0.000026653000000,0.000066738000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000054887000000,0.000207775000000,0.000076220000000,0.000167479000000 +0.000022505000000,0.000204220000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000207775000000,0.000077010000000,0.000166294000000 +0.000022505000000,0.000212121000000,0.000063578000000,0.000013554666667,0.000026850500000,0.000065553000000,0.000083726000000,0.000026837000000,0.000051727000000,0.000054887000000,0.000238195000000,0.000075430000000,0.000161949000000 +0.000022505000000,0.000209750000000,0.000063973000000,0.000013423000000,0.000027838000000,0.000065554000000,0.000155628000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000216467000000,0.000077010000000,0.000160763000000 +0.000022110000000,0.000204614000000,0.000063578000000,0.000013949666667,0.000026455500000,0.000065158000000,0.000090442000000,0.000026837000000,0.000054096000000,0.000054096000000,0.000211726000000,0.000077405000000,0.000196319000000 +0.000022505000000,0.000206985000000,0.000063578000000,0.000013950000000,0.000043443500000,0.000066739000000,0.000097553000000,0.000027232000000,0.000051726000000,0.000058442000000,0.000211331000000,0.000077010000000,0.000163133000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000015003333333,0.000046011000000,0.000066344000000,0.000265849000000,0.000046195000000,0.000054886000000,0.000054097000000,0.000269800000000,0.000077405000000,0.000196319000000 +0.000023492500000,0.000212516000000,0.000114540000000,0.000013818000000,0.000041468000000,0.000066739000000,0.000082936000000,0.000027628000000,0.000051726000000,0.000053306000000,0.000205405000000,0.000077405000000,0.000162343000000 +0.000023097500000,0.000212911000000,0.000064368000000,0.000013818333333,0.000026653500000,0.000065158000000,0.000084121000000,0.000026837000000,0.000054096000000,0.000051726000000,0.000206590000000,0.000077800000000,0.000197109000000 +0.000022110000000,0.000204615000000,0.000063973000000,0.000013554666667,0.000027048500000,0.000069109000000,0.000082541000000,0.000026838000000,0.000052911000000,0.000051726000000,0.000260713000000,0.000075429000000,0.000162738000000 +0.000022110000000,0.000207380000000,0.000065949000000,0.000013818000000,0.000026850500000,0.000079775000000,0.000105849000000,0.000026837000000,0.000051726000000,0.000052912000000,0.000205405000000,0.000077010000000,0.000162343000000 +0.000022505000000,0.000212516000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000066738000000,0.000082541000000,0.000026837000000,0.000053307000000,0.000052516000000,0.000210541000000,0.000075035000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000067133000000,0.000084517000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000209751000000,0.000077405000000,0.000198294000000 +0.000022307500000,0.000210936000000,0.000067924000000,0.000013818000000,0.000046406000000,0.000066739000000,0.000082936000000,0.000027627000000,0.000051726000000,0.000124023000000,0.000258738000000,0.000077010000000,0.000161948000000 +0.000023295000000,0.000208170000000,0.000118492000000,0.000018559000000,0.000027048000000,0.000065554000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000054886000000,0.000206590000000,0.000075429000000,0.000163923000000 +0.000022110000000,0.000210936000000,0.000065948000000,0.000013818000000,0.000026851000000,0.000068319000000,0.000084121000000,0.000026838000000,0.000051726000000,0.000057652000000,0.000205405000000,0.000077010000000,0.000160763000000 +0.000038900000000,0.000211331000000,0.000065948000000,0.000013818333333,0.000026653500000,0.000066343000000,0.000103084000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000289553000000,0.000077800000000,0.000163528000000 +0.000022900500000,0.000212911000000,0.000063973000000,0.000013554666667,0.000026653000000,0.000068318000000,0.000083331000000,0.000026837000000,0.000054097000000,0.000053306000000,0.000210541000000,0.000076220000000,0.000170639000000 +0.000022110000000,0.000207775000000,0.000066343000000,0.000013818333333,0.000026653000000,0.000068319000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000208565000000,0.000077010000000,0.000163529000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013818333333,0.000027245500000,0.000065948000000,0.000084911000000,0.000026837000000,0.000052121000000,0.000054096000000,0.000236615000000,0.000075430000000,0.000161553000000 +0.000022505000000,0.000206195000000,0.000064368000000,0.000013950000000,0.000026653000000,0.000067924000000,0.000084516000000,0.000026838000000,0.000052911000000,0.000054096000000,0.000210541000000,0.000077405000000,0.000160763000000 +0.000022505000000,0.000205009000000,0.000065948000000,0.000013423000000,0.000026850500000,0.000065949000000,0.000082146000000,0.000026837000000,0.000053701000000,0.000051726000000,0.000205405000000,0.000075825000000,0.000163134000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000014213333333,0.000035146500000,0.000067924000000,0.000082541000000,0.000027627000000,0.000052911000000,0.000054492000000,0.000204615000000,0.000075429000000,0.000161158000000 +0.000022307500000,0.000355134000000,0.000065948000000,0.000013423333333,0.000026653500000,0.000069899000000,0.000116516000000,0.000026837000000,0.000054492000000,0.000055281000000,0.000295479000000,0.000075430000000,0.000163528000000 +0.000022505000000,0.000209356000000,0.000065949000000,0.000036863333333,0.000026653500000,0.000067924000000,0.000082936000000,0.000027233000000,0.000086492000000,0.000052911000000,0.000203430000000,0.000076615000000,0.000161553000000 +0.000032381500000,0.000212121000000,0.000065948000000,0.000013555000000,0.000026653000000,0.000068319000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000052517000000,0.000208566000000,0.000075035000000,0.000237010000000 +0.000022702500000,0.000211331000000,0.000065948000000,0.000014081333333,0.000026850500000,0.000102689000000,0.000082541000000,0.000026443000000,0.000052911000000,0.000054886000000,0.000259923000000,0.000077405000000,0.000183281000000 +0.000022505000000,0.000213306000000,0.000063578000000,0.000013949666667,0.000026850500000,0.000066738000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000053702000000,0.000207381000000,0.000076615000000,0.000180911000000 +0.000022702500000,0.000222393000000,0.000065948000000,0.000014345000000,0.000026653000000,0.000067924000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000205010000000,0.000077010000000,0.000163133000000 +0.000023097500000,0.000224368000000,0.000133109000000,0.000013950000000,0.000026653500000,0.000066344000000,0.000082935000000,0.000026838000000,0.000052911000000,0.000054887000000,0.000208565000000,0.000077010000000,0.000169455000000 +0.000022307500000,0.000223578000000,0.000063973000000,0.000024880000000,0.000026850500000,0.000065553000000,0.000122442000000,0.000026442000000,0.000054886000000,0.000085306000000,0.000282442000000,0.000075430000000,0.000161948000000 +0.000024085000000,0.000208171000000,0.000063973000000,0.000022641333333,0.000026653000000,0.000068318000000,0.000084516000000,0.000026837000000,0.000052912000000,0.000051726000000,0.000214096000000,0.000075429000000,0.000162343000000 +0.000022307500000,0.000210146000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000086096000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000204615000000,0.000077800000000,0.000163528000000 +0.000022307500000,0.000206590000000,0.000063578000000,0.000014213333333,0.000026455500000,0.000068714000000,0.000084911000000,0.000026837000000,0.000087676000000,0.000055281000000,0.000245702000000,0.000076615000000,0.000198294000000 +0.000022702500000,0.000205010000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000067133000000,0.000082936000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000209751000000,0.000074639000000,0.000163529000000 +0.000022110000000,0.000215677000000,0.000063578000000,0.000013818333333,0.000027641000000,0.000068713000000,0.000084911000000,0.000026442000000,0.000054491000000,0.000053702000000,0.000242936000000,0.000075824000000,0.000161948000000 +0.000022505000000,0.000211331000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000066738000000,0.000083726000000,0.000026837000000,0.000053306000000,0.000053701000000,0.000280467000000,0.000075429000000,0.000163133000000 +0.000023492500000,0.000212121000000,0.000077010000000,0.000014345000000,0.000026653000000,0.000068713000000,0.000116516000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000252812000000,0.000077010000000,0.000197504000000 +0.000022307500000,0.000209356000000,0.000063578000000,0.000013818333333,0.000026653500000,0.000065158000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000122442000000,0.000286392000000,0.000075035000000,0.000164713000000 +0.000022110000000,0.000213701000000,0.000065948000000,0.000014739666667,0.000026653000000,0.000065553000000,0.000083726000000,0.000026442000000,0.000055281000000,0.000053701000000,0.000224763000000,0.000075430000000,0.000162343000000 +0.000022307500000,0.000206195000000,0.000065553000000,0.000013949666667,0.000057468000000,0.000066343000000,0.000082541000000,0.000027232000000,0.000052911000000,0.000051726000000,0.000222392000000,0.000076220000000,0.000160763000000 +0.000022702500000,0.000206195000000,0.000065949000000,0.000013423333333,0.000026455500000,0.000065948000000,0.000082541000000,0.000026837000000,0.000053701000000,0.000051726000000,0.000209751000000,0.000111776000000,0.000199874000000 +0.000022109500000,0.000208170000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000086886000000,0.000082146000000,0.000026837000000,0.000086491000000,0.000052911000000,0.000225553000000,0.000075429000000,0.000161158000000 +0.000022110000000,0.000205800000000,0.000062788000000,0.000013555000000,0.000027048000000,0.000068714000000,0.000082146000000,0.000026837000000,0.000051331000000,0.000052516000000,0.000214096000000,0.000077010000000,0.000160368000000 +0.000022703000000,0.000214096000000,0.000148121000000,0.000018559000000,0.000026653000000,0.000066739000000,0.000125603000000,0.000026442000000,0.000052912000000,0.000054887000000,0.000204615000000,0.000077010000000,0.000159973000000 +0.000041468000000,0.000204615000000,0.000065948000000,0.000013423333333,0.000027640500000,0.000067134000000,0.000082145000000,0.000026442000000,0.000052912000000,0.000056467000000,0.000205010000000,0.000075825000000,0.000182886000000 +0.000022505000000,0.000206590000000,0.000065948000000,0.000014871666667,0.000026850500000,0.000065553000000,0.000084121000000,0.000026442000000,0.000053306000000,0.000054886000000,0.000240566000000,0.000075430000000,0.000163529000000 +0.000022702500000,0.000210541000000,0.000063578000000,0.000013950000000,0.000027048000000,0.000069504000000,0.000084911000000,0.000026838000000,0.000051726000000,0.000058047000000,0.000205010000000,0.000075429000000,0.000162739000000 +0.000022505000000,0.000206591000000,0.000065553000000,0.000013818333333,0.000026653000000,0.000067923000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000208565000000,0.000075429000000,0.000161553000000 +0.000023097500000,0.000205405000000,0.000063577000000,0.000013949666667,0.000026653500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000053306000000,0.000206985000000,0.000077010000000,0.000165504000000 +0.000022505000000,0.000209751000000,0.000065553000000,0.000014740000000,0.000026653000000,0.000066343000000,0.000083331000000,0.000026838000000,0.000054886000000,0.000054492000000,0.000246886000000,0.000075430000000,0.000177751000000 +0.000022110000000,0.000204615000000,0.000065553000000,0.000013818000000,0.000027245500000,0.000066739000000,0.000116517000000,0.000027627000000,0.000071479000000,0.000054097000000,0.000213307000000,0.000077405000000,0.000163528000000 +0.000023097500000,0.000204615000000,0.000119677000000,0.000014608333333,0.000026653000000,0.000066739000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000205010000000,0.000075430000000,0.000163528000000 +0.000022307500000,0.000207380000000,0.000080565000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000082936000000,0.000026837000000,0.000053307000000,0.000051727000000,0.000238985000000,0.000078590000000,0.000162739000000 +0.000022307500000,0.000206590000000,0.000063973000000,0.000024221333333,0.000027048000000,0.000065553000000,0.000082541000000,0.000026838000000,0.000051331000000,0.000054491000000,0.000205405000000,0.000076615000000,0.000204220000000 +0.000046011000000,0.000204615000000,0.000065949000000,0.000013818333333,0.000026653000000,0.000066343000000,0.000085306000000,0.000060418000000,0.000052911000000,0.000085307000000,0.000207380000000,0.000117701000000,0.000166689000000 +0.000024085500000,0.000206985000000,0.000069504000000,0.000013423000000,0.000026653000000,0.000068319000000,0.000084122000000,0.000028022000000,0.000052911000000,0.000052911000000,0.000208960000000,0.000077405000000,0.000162344000000 +0.000022109500000,0.000278097000000,0.000067924000000,0.000013950000000,0.000061023500000,0.000066739000000,0.000084121000000,0.000028812000000,0.000052516000000,0.000052911000000,0.000202639000000,0.000075430000000,0.000163134000000 +0.000023097500000,0.000239775000000,0.000070688000000,0.000015135000000,0.000080579000000,0.000070689000000,0.000129949000000,0.000026837000000,0.000052912000000,0.000055677000000,0.000204614000000,0.000080960000000,0.000193948000000 +0.000022110000000,0.000204615000000,0.000069503000000,0.000013818000000,0.000061221000000,0.000068714000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000052121000000,0.000208960000000,0.000078590000000,0.000163529000000 +0.000023295000000,0.000204614000000,0.000069504000000,0.000013818333333,0.000035147000000,0.000067529000000,0.000082541000000,0.000026837000000,0.000051331000000,0.000054096000000,0.000276516000000,0.000076615000000,0.000162739000000 +0.000022110000000,0.000220417000000,0.000067134000000,0.000013423000000,0.000034357000000,0.000067529000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000208960000000,0.000077010000000,0.000200269000000 +0.000022109500000,0.000207380000000,0.000067528000000,0.000013818000000,0.000026653000000,0.000065949000000,0.000083331000000,0.000026837000000,0.000051726000000,0.000054886000000,0.000213701000000,0.000075430000000,0.000195529000000 +0.000022110000000,0.000204615000000,0.000067529000000,0.000013423333333,0.000026455500000,0.000065948000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000090442000000,0.000204615000000,0.000075035000000,0.000161158000000 +0.000022505000000,0.000205800000000,0.000069899000000,0.000044237666667,0.000027048500000,0.000101109000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000223578000000,0.000078590000000,0.000162739000000 +0.000038900000000,0.000208170000000,0.000068319000000,0.000040550666667,0.000027048500000,0.000065553000000,0.000129553000000,0.000066739000000,0.000052911000000,0.000054886000000,0.000215677000000,0.000075430000000,0.000164318000000 +0.000022505000000,0.000223183000000,0.000102294000000,0.000030015666667,0.000026455500000,0.000068714000000,0.000151281000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000204615000000,0.000077010000000,0.000180516000000 +0.000022110000000,0.000214097000000,0.000067528000000,0.000014213333333,0.000026653000000,0.000065554000000,0.000082541000000,0.000028022000000,0.000052121000000,0.000053306000000,0.000240960000000,0.000077010000000,0.000263084000000 +0.000022702500000,0.000210936000000,0.000067529000000,0.000013950000000,0.000026456000000,0.000066343000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000053701000000,0.000214491000000,0.000075824000000,0.000174590000000 +0.000022505000000,0.000214097000000,0.000069899000000,0.000013554666667,0.000026455500000,0.000067529000000,0.000090837000000,0.000026442000000,0.000054096000000,0.000054886000000,0.000208171000000,0.000075430000000,0.000162738000000 +0.000022505000000,0.000206195000000,0.000067529000000,0.000013423000000,0.000036530000000,0.000065158000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000053701000000,0.000244911000000,0.000075825000000,0.000198294000000 +0.000022900000000,0.000205405000000,0.000067528000000,0.000014344666667,0.000027838000000,0.000065158000000,0.000082145000000,0.000026442000000,0.000054097000000,0.000053306000000,0.000209751000000,0.000077010000000,0.000167479000000 +0.000022110000000,0.000206195000000,0.000067528000000,0.000013950000000,0.000026850500000,0.000065553000000,0.000084912000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000208961000000,0.000081750000000,0.000162738000000 +0.000023098000000,0.000216467000000,0.000084121000000,0.000013554666667,0.000026455500000,0.000071479000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000051727000000,0.000209356000000,0.000076220000000,0.000159973000000 +0.000024085500000,0.000217652000000,0.000086887000000,0.000013950000000,0.000026653500000,0.000112170000000,0.000083331000000,0.000028023000000,0.000056071000000,0.000052516000000,0.000313652000000,0.000077010000000,0.000196318000000 +0.000042060500000,0.000256763000000,0.000069899000000,0.000013950000000,0.000026455500000,0.000120466000000,0.000082541000000,0.000026837000000,0.000054096000000,0.000052516000000,0.000208565000000,0.000075430000000,0.000174196000000 +0.000029221000000,0.000212911000000,0.000067528000000,0.000013423000000,0.000026455500000,0.000082936000000,0.000084516000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000206590000000,0.000077010000000,0.000161949000000 +0.000022702500000,0.000269405000000,0.000069899000000,0.000013423333333,0.000026455500000,0.000078195000000,0.000083726000000,0.000060022000000,0.000054096000000,0.000055281000000,0.000291133000000,0.000074639000000,0.000161158000000 +0.000022110000000,0.000209751000000,0.000069899000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000082146000000,0.000026443000000,0.000052911000000,0.000054887000000,0.000205404000000,0.000078985000000,0.000180517000000 +0.000022110000000,0.000208170000000,0.000067529000000,0.000013554666667,0.000026653500000,0.000068319000000,0.000097553000000,0.000026442000000,0.000066343000000,0.000057652000000,0.000206985000000,0.000076615000000,0.000160368000000 +0.000022505000000,0.000211330000000,0.000070689000000,0.000020534333333,0.000026653000000,0.000065158000000,0.000082936000000,0.000027232000000,0.000052516000000,0.000164714000000,0.000250442000000,0.000076615000000,0.000162739000000 +0.000023295000000,0.000206985000000,0.000067528000000,0.000018558666667,0.000026653000000,0.000066739000000,0.000083331000000,0.000026838000000,0.000052911000000,0.000134293000000,0.000203824000000,0.000076615000000,0.000161553000000 +0.000022505000000,0.000210541000000,0.000069899000000,0.000013818333333,0.000027048500000,0.000065158000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000068319000000,0.000205010000000,0.000076615000000,0.000161553000000 +0.000022505000000,0.000210936000000,0.000069899000000,0.000013818000000,0.000026455500000,0.000066343000000,0.000084121000000,0.000026837000000,0.000053307000000,0.000053701000000,0.000212516000000,0.000075825000000,0.000193553000000 +0.000022505000000,0.000210540000000,0.000067528000000,0.000013818333333,0.000026850500000,0.000065158000000,0.000084516000000,0.000026442000000,0.000052122000000,0.000054096000000,0.000253997000000,0.000075824000000,0.000162343000000 +0.000037517500000,0.000204615000000,0.000067528000000,0.000013950000000,0.000026653000000,0.000067528000000,0.000116516000000,0.000026837000000,0.000051726000000,0.000051726000000,0.000213701000000,0.000077405000000,0.000165504000000 +0.000022505000000,0.000208961000000,0.000081356000000,0.000013949666667,0.000027640500000,0.000065553000000,0.000082540000000,0.000026442000000,0.000051331000000,0.000054491000000,0.000211726000000,0.000081751000000,0.000163133000000 +0.000022110000000,0.000205010000000,0.000067529000000,0.000013554666667,0.000026653000000,0.000065158000000,0.000082541000000,0.000028023000000,0.000099924000000,0.000069109000000,0.000244516000000,0.000075430000000,0.000250837000000 +0.000022109500000,0.000207776000000,0.000067528000000,0.000013950000000,0.000036727000000,0.000067134000000,0.000082541000000,0.000026442000000,0.000053307000000,0.000052516000000,0.000204615000000,0.000075430000000,0.000165899000000 +0.000022109500000,0.000210146000000,0.000067529000000,0.000013949666667,0.000026850500000,0.000068714000000,0.000084121000000,0.000061602000000,0.000052912000000,0.000053306000000,0.000209750000000,0.000077010000000,0.000163923000000 +0.000023295500000,0.000204615000000,0.000067528000000,0.000025538000000,0.000026850500000,0.000067133000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000209355000000,0.000075430000000,0.000161948000000 +0.000022702500000,0.000206590000000,0.000067528000000,0.000013950000000,0.000026653000000,0.000068318000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000051331000000,0.000526195000000,0.000075430000000,0.000196319000000 +0.000024085500000,0.000210936000000,0.000069899000000,0.000013818333333,0.000027641000000,0.000066343000000,0.000153257000000,0.000026442000000,0.000052517000000,0.000054097000000,0.000231479000000,0.000077010000000,0.000162738000000 +0.000022110000000,0.000264269000000,0.000069899000000,0.000013950000000,0.000026653500000,0.000064763000000,0.000101109000000,0.000026442000000,0.000052516000000,0.000054886000000,0.000249652000000,0.000077800000000,0.000165899000000 +0.000022702500000,0.000204615000000,0.000069898000000,0.000013423000000,0.000026455500000,0.000066739000000,0.000085306000000,0.000046591000000,0.000051726000000,0.000054492000000,0.000209751000000,0.000076615000000,0.000164318000000 +0.000022505000000,0.000204219000000,0.000068318000000,0.000013423000000,0.000026455500000,0.000065158000000,0.000084121000000,0.000040270000000,0.000053307000000,0.000051331000000,0.000205800000000,0.000075035000000,0.000196319000000 +0.000022505000000,0.000256368000000,0.000067529000000,0.000013423000000,0.000026455500000,0.000066738000000,0.000085307000000,0.000026837000000,0.000085306000000,0.000054492000000,0.000204219000000,0.000075430000000,0.000160368000000 +0.000022505000000,0.000209356000000,0.000067528000000,0.000013818333333,0.000043245500000,0.000067133000000,0.000084911000000,0.000026442000000,0.000054886000000,0.000054492000000,0.000226343000000,0.000074639000000,0.000166294000000 +0.000022110000000,0.000205405000000,0.000072269000000,0.000013818000000,0.000026653000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000221997000000,0.000075825000000,0.000163133000000 +0.000022110000000,0.000204615000000,0.000069899000000,0.000013818000000,0.000026653000000,0.000065553000000,0.000195923000000,0.000026837000000,0.000053701000000,0.000051726000000,0.000206195000000,0.000076615000000,0.000163134000000 +0.000022505000000,0.000207380000000,0.000070294000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000088466000000,0.000045010000000,0.000053306000000,0.000054096000000,0.000288367000000,0.000075429000000,0.000162343000000 +0.000024085000000,0.000204614000000,0.000067529000000,0.000013950000000,0.000026455500000,0.000069503000000,0.000082541000000,0.000039875000000,0.000052516000000,0.000054492000000,0.000206196000000,0.000075034000000,0.000163133000000 +0.000022110000000,0.000204615000000,0.000067529000000,0.000014608333333,0.000027048000000,0.000068319000000,0.000082541000000,0.000026838000000,0.000051726000000,0.000053701000000,0.000208565000000,0.000077800000000,0.000162343000000 +0.000022110000000,0.000207380000000,0.000067528000000,0.000013949666667,0.000027641000000,0.000065949000000,0.000084121000000,0.000026442000000,0.000051726000000,0.000053306000000,0.000213701000000,0.000077800000000,0.000160368000000 +0.000022505000000,0.000204615000000,0.000071874000000,0.000013818000000,0.000026653500000,0.000065553000000,0.000128763000000,0.000026837000000,0.000053306000000,0.000071479000000,0.000210541000000,0.000077010000000,0.000196319000000 +0.000065171500000,0.000205010000000,0.000067529000000,0.000013818000000,0.000027048500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000088072000000,0.000051726000000,0.000205800000000,0.000077010000000,0.000164318000000 +0.000049566500000,0.000206195000000,0.000067528000000,0.000013423000000,0.000057468000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000054887000000,0.000052911000000,0.000210936000000,0.000077010000000,0.000165504000000 +0.000029418500000,0.000207775000000,0.000072269000000,0.000013949666667,0.000026653000000,0.000067529000000,0.000082936000000,0.000027232000000,0.000051726000000,0.000073060000000,0.000252417000000,0.000077010000000,0.000163529000000 +0.000022110000000,0.000208565000000,0.000067529000000,0.000013818000000,0.000026456000000,0.000068714000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000055281000000,0.000205010000000,0.000075430000000,0.000230689000000 +0.000023492500000,0.000209355000000,0.000067528000000,0.000013818000000,0.000026455500000,0.000066738000000,0.000082541000000,0.000028022000000,0.000052912000000,0.000056466000000,0.000209751000000,0.000082146000000,0.000162738000000 +0.000022505000000,0.000205800000000,0.000068319000000,0.000013818333333,0.000026455500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000209355000000,0.000076220000000,0.000161553000000 +0.000022505000000,0.000207775000000,0.000069503000000,0.000013423000000,0.000027048500000,0.000066344000000,0.000131134000000,0.000027233000000,0.000052911000000,0.000057652000000,0.000227529000000,0.000078985000000,0.000163528000000 +0.000022307500000,0.000204615000000,0.000067528000000,0.000013423000000,0.000027641000000,0.000065948000000,0.000082936000000,0.000026837000000,0.000054096000000,0.000074245000000,0.000212911000000,0.000075034000000,0.000199084000000 +0.000057073000000,0.000208170000000,0.000069504000000,0.000013423000000,0.000026653000000,0.000069503000000,0.000082541000000,0.000026837000000,0.000069899000000,0.000053306000000,0.000221603000000,0.000075430000000,0.000160763000000 +0.000022110000000,0.000204615000000,0.000069504000000,0.000013818333333,0.000026455500000,0.000067529000000,0.000082146000000,0.000026837000000,0.000086491000000,0.000054492000000,0.000238590000000,0.000075035000000,0.000167479000000 +0.000030209000000,0.000210540000000,0.000067923000000,0.000013950000000,0.000044826000000,0.000067924000000,0.000082541000000,0.000027233000000,0.000051331000000,0.000054096000000,0.000205010000000,0.000077010000000,0.000161158000000 +0.000022505000000,0.000211331000000,0.000067529000000,0.000013555000000,0.000027048500000,0.000064368000000,0.000084912000000,0.000026837000000,0.000051726000000,0.000054491000000,0.000205405000000,0.000075429000000,0.000159577000000 +0.000022505000000,0.000208170000000,0.000069899000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000083331000000,0.000026838000000,0.000054887000000,0.000051726000000,0.000243331000000,0.000076615000000,0.000182096000000 +0.000022505000000,0.000206985000000,0.000067924000000,0.000013818333333,0.000026455500000,0.000069899000000,0.000116912000000,0.000026442000000,0.000052912000000,0.000054097000000,0.000207380000000,0.000075825000000,0.000163529000000 +0.000022110000000,0.000206195000000,0.000067528000000,0.000013950000000,0.000026455500000,0.000068319000000,0.000086097000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000206590000000,0.000077010000000,0.000167084000000 +0.000022109500000,0.000229109000000,0.000067528000000,0.000013949666667,0.000026653000000,0.000068714000000,0.000083726000000,0.000026837000000,0.000053701000000,0.000052911000000,0.000207381000000,0.000074639000000,0.000165503000000 +0.000022307500000,0.000333405000000,0.000067528000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000084911000000,0.000026837000000,0.000051726000000,0.000086491000000,0.000261108000000,0.000077010000000,0.000183281000000 +0.000057073000000,0.000223973000000,0.000067528000000,0.000018427333333,0.000027641000000,0.000100714000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000206985000000,0.000075825000000,0.000163528000000 +0.000022505000000,0.000208961000000,0.000067529000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000082540000000,0.000027232000000,0.000086492000000,0.000052121000000,0.000205010000000,0.000075430000000,0.000163133000000 +0.000024085000000,0.000204615000000,0.000067528000000,0.000013555000000,0.000044826000000,0.000067528000000,0.000082541000000,0.000027628000000,0.000052911000000,0.000054097000000,0.000280072000000,0.000076615000000,0.000161948000000 +0.000022110000000,0.000264269000000,0.000067529000000,0.000013818000000,0.000027640500000,0.000065158000000,0.000116516000000,0.000028022000000,0.000054096000000,0.000054886000000,0.000257948000000,0.000075430000000,0.000180911000000 +0.000022110000000,0.000210540000000,0.000069504000000,0.000013423333333,0.000027640500000,0.000066344000000,0.000083331000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000208565000000,0.000074640000000,0.000164318000000 +0.000022110000000,0.000209355000000,0.000067528000000,0.000013423000000,0.000026653000000,0.000065949000000,0.000082935000000,0.000026838000000,0.000051727000000,0.000052121000000,0.000213702000000,0.000075429000000,0.000164318000000 +0.000024085500000,0.000313651000000,0.000069504000000,0.000013950000000,0.000026455500000,0.000065949000000,0.000082936000000,0.000027232000000,0.000052911000000,0.000054887000000,0.000221207000000,0.000076614000000,0.000166689000000 +0.000022307500000,0.000220417000000,0.000067529000000,0.000013818000000,0.000026455500000,0.000066343000000,0.000082146000000,0.000026442000000,0.000053701000000,0.000054887000000,0.000207775000000,0.000077405000000,0.000200269000000 +0.000022110000000,0.000211726000000,0.000077800000000,0.000014608333333,0.000026850500000,0.000101899000000,0.000083726000000,0.000026837000000,0.000051331000000,0.000068319000000,0.000214097000000,0.000077800000000,0.000161158000000 +0.000022110000000,0.000209355000000,0.000063973000000,0.000013423000000,0.000027641000000,0.000066343000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000230689000000,0.000077010000000,0.000161158000000 +0.000038307500000,0.000205010000000,0.000063577000000,0.000013950000000,0.000026851000000,0.000066738000000,0.000082540000000,0.000026442000000,0.000088071000000,0.000054096000000,0.000212121000000,0.000077009000000,0.000162738000000 +0.000022505000000,0.000207380000000,0.000097553000000,0.000013818000000,0.000055887500000,0.000069108000000,0.000088072000000,0.000027233000000,0.000051726000000,0.000054887000000,0.000211331000000,0.000075429000000,0.000209750000000 +0.000022505000000,0.000205405000000,0.000063578000000,0.000013950000000,0.000026455500000,0.000065553000000,0.000082540000000,0.000027232000000,0.000052912000000,0.000054097000000,0.000267034000000,0.000142195000000,0.000163923000000 +0.000022505000000,0.000246492000000,0.000065553000000,0.000013423000000,0.000027641000000,0.000066738000000,0.000082146000000,0.000026838000000,0.000052516000000,0.000053306000000,0.000205800000000,0.000106640000000,0.000162343000000 +0.000023492500000,0.000212911000000,0.000064368000000,0.000013818333333,0.000026850500000,0.000067528000000,0.000084121000000,0.000041454000000,0.000052912000000,0.000051726000000,0.000206985000000,0.000077800000000,0.000162344000000 +0.000022702500000,0.000205009000000,0.000063973000000,0.000013950000000,0.000027048000000,0.000066344000000,0.000082145000000,0.000026837000000,0.000051726000000,0.000051727000000,0.000210936000000,0.000075824000000,0.000162344000000 +0.000022505000000,0.000216072000000,0.000066343000000,0.000013554666667,0.000026455500000,0.000067529000000,0.000084516000000,0.000026837000000,0.000052912000000,0.000052911000000,0.000205010000000,0.000075035000000,0.000162738000000 +0.000022505000000,0.000212516000000,0.000063972000000,0.000013949666667,0.000026653000000,0.000069109000000,0.000082936000000,0.000027232000000,0.000052517000000,0.000052912000000,0.000210936000000,0.000076615000000,0.000163134000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000013950000000,0.000026850500000,0.000067528000000,0.000084121000000,0.000026837000000,0.000053306000000,0.000054887000000,0.000209355000000,0.000077800000000,0.000162343000000 +0.000032381500000,0.000211331000000,0.000067923000000,0.000013554666667,0.000028233500000,0.000066343000000,0.000083726000000,0.000027627000000,0.000086492000000,0.000056072000000,0.000246887000000,0.000077405000000,0.000161948000000 +0.000022505000000,0.000242146000000,0.000065553000000,0.000013950000000,0.000026455500000,0.000067133000000,0.000082146000000,0.000026837000000,0.000055282000000,0.000054886000000,0.000206590000000,0.000077405000000,0.000197503000000 +0.000022109500000,0.000210936000000,0.000065948000000,0.000024616333333,0.000026653000000,0.000065949000000,0.000084122000000,0.000026837000000,0.000051726000000,0.000057652000000,0.000205010000000,0.000077010000000,0.000160763000000 +0.000021912500000,0.000211331000000,0.000065553000000,0.000014871666667,0.000026653000000,0.000066343000000,0.000083331000000,0.000026442000000,0.000051331000000,0.000054887000000,0.000205010000000,0.000105455000000,0.000162738000000 +0.000022505000000,0.000212121000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000068714000000,0.000083331000000,0.000026442000000,0.000052516000000,0.000053306000000,0.000244516000000,0.000075429000000,0.000169454000000 +0.000022110000000,0.000206985000000,0.000065553000000,0.000014081333333,0.000026851000000,0.000065948000000,0.000084516000000,0.000026837000000,0.000054492000000,0.000054887000000,0.000208961000000,0.000074245000000,0.000196714000000 +0.000022109500000,0.000204615000000,0.000063578000000,0.000013818333333,0.000027048500000,0.000065948000000,0.000084516000000,0.000026838000000,0.000052911000000,0.000087677000000,0.000202640000000,0.000075825000000,0.000161948000000 +0.000022505000000,0.000211331000000,0.000063973000000,0.000013423000000,0.000026653500000,0.000065948000000,0.000084516000000,0.000046195000000,0.000052516000000,0.000054096000000,0.000257553000000,0.000077010000000,0.000159973000000 +0.000023097500000,0.000240171000000,0.000065949000000,0.000013949666667,0.000026455500000,0.000066738000000,0.000082541000000,0.000027232000000,0.000052911000000,0.000051331000000,0.000205010000000,0.000076615000000,0.000162343000000 +0.000022109500000,0.000204615000000,0.000063578000000,0.000013554666667,0.000026455500000,0.000068714000000,0.000082540000000,0.000027627000000,0.000088071000000,0.000054096000000,0.000205010000000,0.000077405000000,0.000215677000000 +0.000022110000000,0.000210541000000,0.000065948000000,0.000013818000000,0.000026455500000,0.000065553000000,0.000082146000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000221603000000,0.000077010000000,0.000212516000000 +0.000029813500000,0.000209355000000,0.000065948000000,0.000013818333333,0.000026850500000,0.000068714000000,0.000082146000000,0.000027232000000,0.000053306000000,0.000052517000000,0.000237405000000,0.000076220000000,0.000161948000000 +0.000022307500000,0.000213306000000,0.000065949000000,0.000013949666667,0.000026455500000,0.000065554000000,0.000084121000000,0.000026838000000,0.000053306000000,0.000052911000000,0.000208566000000,0.000077010000000,0.000166294000000 +0.000022110000000,0.000211331000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000069109000000,0.000081751000000,0.000026442000000,0.000054096000000,0.000055677000000,0.000206985000000,0.000075430000000,0.000211331000000 +0.000022702500000,0.000213306000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000085307000000,0.000082936000000,0.000026837000000,0.000053306000000,0.000051726000000,0.000240961000000,0.000075825000000,0.000165899000000 +0.000023097500000,0.000298639000000,0.000099134000000,0.000013949666667,0.000026455500000,0.000065948000000,0.000083726000000,0.000026442000000,0.000054887000000,0.000129158000000,0.000205009000000,0.000077010000000,0.000163133000000 +0.000023295500000,0.000413602000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000065948000000,0.000082936000000,0.000026442000000,0.000052912000000,0.000054886000000,0.000208565000000,0.000075430000000,0.000168664000000 +0.000022505000000,0.000811824000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000067924000000,0.000084516000000,0.000026442000000,0.000052911000000,0.000054492000000,0.000211726000000,0.000077010000000,0.000198689000000 +0.000022505000000,0.000351973000000,0.000063578000000,0.000013555000000,0.000054110000000,0.000067529000000,0.000084516000000,0.000026442000000,0.000054491000000,0.000052121000000,0.000466936000000,0.000077010000000,0.000161948000000 +0.000024085500000,0.000438096000000,0.000063578000000,0.000014345000000,0.000026653000000,0.000067529000000,0.000085701000000,0.000046195000000,0.000057257000000,0.000054887000000,0.000220812000000,0.000075430000000,0.000163528000000 +0.000022307500000,0.000220417000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000066738000000,0.000084911000000,0.000026442000000,0.000052911000000,0.000055282000000,0.000211725000000,0.000075430000000,0.000164319000000 +0.000022702500000,0.000291528000000,0.000065948000000,0.000013818000000,0.000026653500000,0.000064368000000,0.000082146000000,0.000026443000000,0.000051726000000,0.000054887000000,0.000209751000000,0.000077010000000,0.000184072000000 +0.000022110000000,0.000314837000000,0.000063578000000,0.000013818000000,0.000027641000000,0.000066343000000,0.000084516000000,0.000026442000000,0.000053306000000,0.000051331000000,0.000210541000000,0.000075034000000,0.000162738000000 +0.000023493000000,0.000266244000000,0.000097158000000,0.000014740000000,0.000026850500000,0.000065948000000,0.000083331000000,0.000027232000000,0.000051726000000,0.000096368000000,0.000208961000000,0.000078195000000,0.000162343000000 +0.000023295000000,0.000361059000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000054097000000,0.000054886000000,0.000255578000000,0.000077010000000,0.000162739000000 +0.000022110000000,0.000264269000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000081751000000,0.000026837000000,0.000052911000000,0.000054097000000,0.000208960000000,0.000077010000000,0.000163924000000 +0.000022307500000,0.000232664000000,0.000065553000000,0.000013818333333,0.000026456000000,0.000065158000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000053701000000,0.000210541000000,0.000077010000000,0.000230293000000 +0.000022505000000,0.000225554000000,0.000065553000000,0.000013950000000,0.000034752000000,0.000069109000000,0.000169455000000,0.000027627000000,0.000073850000000,0.000051331000000,0.000248467000000,0.000077405000000,0.000161948000000 +0.000023097500000,0.000225948000000,0.000065949000000,0.000015135000000,0.000027048500000,0.000067924000000,0.000097158000000,0.000026442000000,0.000089257000000,0.000051727000000,0.000209751000000,0.000075035000000,0.000165109000000 +0.000022110000000,0.000232269000000,0.000063578000000,0.000013818000000,0.000026653500000,0.000067529000000,0.000082541000000,0.000026442000000,0.000082146000000,0.000052516000000,0.000256368000000,0.000075430000000,0.000161158000000 +0.000044826000000,0.000224367000000,0.000063973000000,0.000013818000000,0.000035344500000,0.000142986000000,0.000082145000000,0.000026442000000,0.000051726000000,0.000052516000000,0.000214096000000,0.000075035000000,0.000193948000000 +0.000022505000000,0.000233059000000,0.000099529000000,0.000013423333333,0.000033566500000,0.000070294000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000088467000000,0.000221602000000,0.000076615000000,0.000197108000000 +0.000022110000000,0.000225158000000,0.000065948000000,0.000013423000000,0.000027641000000,0.000065158000000,0.000082541000000,0.000027232000000,0.000051726000000,0.000055677000000,0.000205009000000,0.000075825000000,0.000164714000000 +0.000022702500000,0.000224368000000,0.000065949000000,0.000024748333333,0.000027048000000,0.000065949000000,0.000117701000000,0.000026442000000,0.000053306000000,0.000054886000000,0.000206985000000,0.000075825000000,0.000164318000000 +0.000022505000000,0.000230689000000,0.000063973000000,0.000013423333333,0.000026653500000,0.000065159000000,0.000084121000000,0.000026442000000,0.000051726000000,0.000057652000000,0.000283627000000,0.000075430000000,0.000250046000000 +0.000022505000000,0.000226343000000,0.000065553000000,0.000013423000000,0.000035937500000,0.000066344000000,0.000083331000000,0.000027232000000,0.000072664000000,0.000054492000000,0.000208565000000,0.000077010000000,0.000161158000000 +0.000022110000000,0.000224763000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000066344000000,0.000082145000000,0.000026837000000,0.000051726000000,0.000053306000000,0.000207380000000,0.000075824000000,0.000164713000000 +0.000022110000000,0.000239775000000,0.000065949000000,0.000013423000000,0.000026455500000,0.000065553000000,0.000082936000000,0.000026837000000,0.000052517000000,0.000054491000000,0.000260318000000,0.000077405000000,0.000163134000000 +0.000022505000000,0.000204220000000,0.000065553000000,0.000013818333333,0.000027246000000,0.000066738000000,0.000081356000000,0.000028023000000,0.000052911000000,0.000054491000000,0.000212911000000,0.000077010000000,0.000204219000000 +0.000022110000000,0.000240565000000,0.000065948000000,0.000013949666667,0.000026456000000,0.000066343000000,0.000084517000000,0.000026442000000,0.000052121000000,0.000054492000000,0.000204615000000,0.000075825000000,0.000164714000000 +0.000051146500000,0.000206590000000,0.000063973000000,0.000013950000000,0.000026456000000,0.000066343000000,0.000122047000000,0.000026837000000,0.000053307000000,0.000085306000000,0.000205405000000,0.000075430000000,0.000162738000000 +0.000024283000000,0.000206195000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000066738000000,0.000095973000000,0.000026837000000,0.000053702000000,0.000054886000000,0.000287973000000,0.000077800000000,0.000161948000000 +0.000022307500000,0.000204615000000,0.000065948000000,0.000013949666667,0.000026851000000,0.000066343000000,0.000163134000000,0.000026837000000,0.000053306000000,0.000054887000000,0.000206985000000,0.000080961000000,0.000318393000000 +0.000022110000000,0.000207380000000,0.000065948000000,0.000014740000000,0.000026653500000,0.000066343000000,0.000083726000000,0.000027232000000,0.000054491000000,0.000052912000000,0.000208960000000,0.000075430000000,0.000218046000000 +0.000022110000000,0.000206195000000,0.000063973000000,0.000013818000000,0.000035937000000,0.000065158000000,0.000084516000000,0.000026837000000,0.000073060000000,0.000052516000000,0.000287578000000,0.000075430000000,0.000163924000000 +0.000022702500000,0.000208960000000,0.000065948000000,0.000013818333333,0.000027640500000,0.000065158000000,0.000083331000000,0.000026837000000,0.000055677000000,0.000054887000000,0.000204615000000,0.000075825000000,0.000180121000000 +0.000023097500000,0.000206195000000,0.000084911000000,0.000013554666667,0.000026653000000,0.000066343000000,0.000129158000000,0.000026442000000,0.000056466000000,0.000051726000000,0.000208565000000,0.000075430000000,0.000164318000000 +0.000022505000000,0.000204615000000,0.000079775000000,0.000013818000000,0.000026455500000,0.000067529000000,0.000082935000000,0.000026837000000,0.000057652000000,0.000054096000000,0.000204219000000,0.000075824000000,0.000163134000000 +0.000024085000000,0.000220022000000,0.000063578000000,0.000014740000000,0.000026850500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000085306000000,0.000054886000000,0.000223182000000,0.000075035000000,0.000162738000000 +0.000022110000000,0.000207381000000,0.000063973000000,0.000014213333333,0.000026653000000,0.000069109000000,0.000083331000000,0.000026838000000,0.000051726000000,0.000054491000000,0.000213306000000,0.000077010000000,0.000161554000000 +0.000039492500000,0.000240566000000,0.000063578000000,0.000013950000000,0.000026850500000,0.000066343000000,0.000082145000000,0.000026837000000,0.000086491000000,0.000051726000000,0.000205010000000,0.000075825000000,0.000175380000000 +0.000022110000000,0.000204615000000,0.000065949000000,0.000013423000000,0.000027048500000,0.000065948000000,0.000082541000000,0.000027232000000,0.000054887000000,0.000054886000000,0.000556614000000,0.000077800000000,0.000163133000000 +0.000022702500000,0.000208171000000,0.000063578000000,0.000013949666667,0.000026456000000,0.000070294000000,0.000082541000000,0.000026442000000,0.000052516000000,0.000054491000000,0.000254788000000,0.000077405000000,0.000164713000000 +0.000022702500000,0.000224368000000,0.000065949000000,0.000015135000000,0.000036924500000,0.000065949000000,0.000083331000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000238590000000,0.000077010000000,0.000159973000000 +0.000022702500000,0.000214097000000,0.000063578000000,0.000025143000000,0.000026653000000,0.000073455000000,0.000082541000000,0.000027627000000,0.000054491000000,0.000051726000000,0.000206985000000,0.000077010000000,0.000193553000000 +0.000022505000000,0.000209751000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000066739000000,0.000082541000000,0.000026443000000,0.000051726000000,0.000053702000000,0.000214097000000,0.000075825000000,0.000160368000000 +0.000022702500000,0.000214096000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000067133000000,0.000091232000000,0.000063578000000,0.000055281000000,0.000054886000000,0.000241750000000,0.000075035000000,0.000162738000000 +0.000021912500000,0.000206986000000,0.000063577000000,0.000013423000000,0.000026653000000,0.000067923000000,0.000082541000000,0.000059627000000,0.000051726000000,0.000073850000000,0.000211330000000,0.000077010000000,0.000163924000000 +0.000022110000000,0.000204615000000,0.000063973000000,0.000013818000000,0.000028035500000,0.000066344000000,0.000082541000000,0.000028418000000,0.000051726000000,0.000053306000000,0.000210146000000,0.000078986000000,0.000200269000000 +0.000022702500000,0.000206195000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000065948000000,0.000084517000000,0.000026442000000,0.000085306000000,0.000051331000000,0.000208961000000,0.000077010000000,0.000163133000000 +0.000032579000000,0.000216071000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000065553000000,0.000082541000000,0.000026837000000,0.000053306000000,0.000051726000000,0.000223183000000,0.000075430000000,0.000159973000000 +0.000022307500000,0.000218047000000,0.000065554000000,0.000013423333333,0.000027048000000,0.000066738000000,0.000113355000000,0.000027627000000,0.000052516000000,0.000052911000000,0.000219232000000,0.000075430000000,0.000162738000000 +0.000022110000000,0.000204615000000,0.000103084000000,0.000013950000000,0.000036332500000,0.000064763000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000052516000000,0.000221207000000,0.000103479000000,0.000174195000000 +0.000022109500000,0.000212911000000,0.000067529000000,0.000013423000000,0.000026456000000,0.000068319000000,0.000084516000000,0.000026837000000,0.000052912000000,0.000054887000000,0.000220023000000,0.000077405000000,0.000162343000000 +0.000023295000000,0.000347627000000,0.000065553000000,0.000014740000000,0.000026653000000,0.000065158000000,0.000083331000000,0.000026442000000,0.000053306000000,0.000055282000000,0.000221208000000,0.000075430000000,0.000161948000000 +0.000022702500000,0.000223578000000,0.000065948000000,0.000013555000000,0.000026455500000,0.000066738000000,0.000082541000000,0.000028417000000,0.000052121000000,0.000054491000000,0.000218046000000,0.000077405000000,0.000159972000000 +0.000022702500000,0.000208171000000,0.000063577000000,0.000013818333333,0.000026653000000,0.000068319000000,0.000084516000000,0.000026442000000,0.000052911000000,0.000090837000000,0.000219232000000,0.000075430000000,0.000159973000000 +0.000023097500000,0.000212121000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000103479000000,0.000026442000000,0.000052516000000,0.000054886000000,0.000224368000000,0.000075034000000,0.000195924000000 +0.000022307500000,0.000207380000000,0.000097158000000,0.000013818000000,0.000026455500000,0.000065158000000,0.000083331000000,0.000026837000000,0.000053701000000,0.000053307000000,0.000216072000000,0.000075430000000,0.000160368000000 +0.000022109500000,0.000360269000000,0.000065948000000,0.000013949666667,0.000026653500000,0.000066343000000,0.000084516000000,0.000026442000000,0.000056467000000,0.000054887000000,0.000217256000000,0.000077010000000,0.000161158000000 +0.000029418500000,0.000239775000000,0.000065948000000,0.000013423000000,0.000026455500000,0.000067528000000,0.000084121000000,0.000026442000000,0.000054887000000,0.000054097000000,0.000225948000000,0.000110590000000,0.000159578000000 +0.000024085500000,0.000445602000000,0.000063973000000,0.000013423000000,0.000043443500000,0.000065554000000,0.000084912000000,0.000026442000000,0.000054887000000,0.000054096000000,0.000220022000000,0.000077405000000,0.000182492000000 +0.000022505000000,0.000212911000000,0.000063578000000,0.000013949666667,0.000068332000000,0.000065159000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000226739000000,0.000075430000000,0.000164713000000 +0.000022110000000,0.000258343000000,0.000063578000000,0.000014871666667,0.000029616500000,0.000068714000000,0.000082145000000,0.000026442000000,0.000052912000000,0.000054491000000,0.000225158000000,0.000075430000000,0.000163133000000 +0.000022900000000,0.000204615000000,0.000063578000000,0.000013554666667,0.000032974000000,0.000065159000000,0.000116516000000,0.000027627000000,0.000052911000000,0.000054887000000,0.000218442000000,0.000075430000000,0.000163529000000 +0.000022110000000,0.000207775000000,0.000063578000000,0.000020139333333,0.000026653500000,0.000067529000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000066738000000,0.000217652000000,0.000075429000000,0.000165503000000 +0.000022505000000,0.000210146000000,0.000103874000000,0.000013423000000,0.000026653000000,0.000065158000000,0.000084517000000,0.000027627000000,0.000051331000000,0.000052911000000,0.000222393000000,0.000077405000000,0.000162343000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000067134000000,0.000082936000000,0.000026442000000,0.000052912000000,0.000054887000000,0.000222788000000,0.000075825000000,0.000162343000000 +0.000022505000000,0.000206986000000,0.000063973000000,0.000013554666667,0.000044628000000,0.000066738000000,0.000083726000000,0.000026442000000,0.000051331000000,0.000052121000000,0.000222788000000,0.000075430000000,0.000163134000000 +0.000031394000000,0.000211331000000,0.000066344000000,0.000013950000000,0.000027641000000,0.000105849000000,0.000084911000000,0.000026838000000,0.000051726000000,0.000054096000000,0.000227529000000,0.000077010000000,0.000162739000000 +0.000022110000000,0.000221207000000,0.000065553000000,0.000013423000000,0.000026851000000,0.000083726000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000074245000000,0.000229108000000,0.000075825000000,0.000199084000000 +0.000022505000000,0.000204220000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000120072000000,0.000026837000000,0.000051726000000,0.000054492000000,0.000222392000000,0.000077405000000,0.000165108000000 +0.000022307500000,0.000204615000000,0.000063578000000,0.000013818000000,0.000026455500000,0.000065949000000,0.000084121000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000218047000000,0.000075430000000,0.000161553000000 +0.000023295000000,0.000222787000000,0.000063973000000,0.000014344666667,0.000027048500000,0.000067529000000,0.000086096000000,0.000026442000000,0.000052912000000,0.000054887000000,0.000216467000000,0.000077010000000,0.000159578000000 +0.000022505000000,0.000209751000000,0.000063973000000,0.000013423000000,0.000026456000000,0.000068714000000,0.000084516000000,0.000026443000000,0.000051726000000,0.000054887000000,0.000266244000000,0.000075430000000,0.000235825000000 +0.000023097500000,0.000205800000000,0.000068319000000,0.000014081333333,0.000026455500000,0.000065158000000,0.000082145000000,0.000026838000000,0.000051331000000,0.000054887000000,0.000235824000000,0.000075430000000,0.000163134000000 +0.000022110000000,0.000204615000000,0.000065949000000,0.000018032333333,0.000026653000000,0.000067528000000,0.000085306000000,0.000026442000000,0.000052516000000,0.000051726000000,0.000218442000000,0.000077010000000,0.000162343000000 +0.000022505000000,0.000207775000000,0.000065948000000,0.000013423000000,0.000044628500000,0.000066343000000,0.000083331000000,0.000026837000000,0.000087281000000,0.000053701000000,0.000251232000000,0.000076615000000,0.000191973000000 +0.000022505000000,0.000204614000000,0.000063183000000,0.000013423333333,0.000026653000000,0.000065158000000,0.000152072000000,0.000045800000000,0.000079775000000,0.000054887000000,0.000218837000000,0.000077010000000,0.000197109000000 +0.000049962000000,0.000204615000000,0.000063578000000,0.000013818000000,0.000026850500000,0.000066344000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000053701000000,0.000221207000000,0.000075825000000,0.000161554000000 +0.000028826000000,0.000206195000000,0.000063973000000,0.000013950000000,0.000027838000000,0.000066738000000,0.000084121000000,0.000026442000000,0.000052911000000,0.000053306000000,0.000227133000000,0.000075430000000,0.000160368000000 +0.000022307500000,0.000204615000000,0.000067923000000,0.000013554666667,0.000026456000000,0.000067133000000,0.000082146000000,0.000026442000000,0.000051726000000,0.000071479000000,0.000223183000000,0.000075825000000,0.000162343000000 +0.000023097500000,0.000204615000000,0.000063973000000,0.000013554666667,0.000026653500000,0.000066343000000,0.000082146000000,0.000026837000000,0.000052121000000,0.000051726000000,0.000218047000000,0.000075430000000,0.000219232000000 +0.000022505000000,0.000206195000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000065554000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000052912000000,0.000223578000000,0.000074640000000,0.000165109000000 +0.000022505000000,0.000218837000000,0.000067924000000,0.000013818000000,0.000026455500000,0.000065158000000,0.000082541000000,0.000027627000000,0.000072269000000,0.000052516000000,0.000267429000000,0.000075035000000,0.000163528000000 +0.000021912500000,0.000208565000000,0.000063973000000,0.000013818333333,0.000026851000000,0.000067923000000,0.000116516000000,0.000026837000000,0.000054096000000,0.000054886000000,0.000205405000000,0.000075429000000,0.000161553000000 +0.000022109500000,0.000208960000000,0.000063578000000,0.000014740000000,0.000047986000000,0.000065948000000,0.000082540000000,0.000027628000000,0.000052911000000,0.000056072000000,0.000209750000000,0.000075430000000,0.000182491000000 +0.000022110000000,0.000205405000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065949000000,0.000084121000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000242541000000,0.000075035000000,0.000160763000000 +0.000022110000000,0.000381602000000,0.000065948000000,0.000013818333333,0.000027048500000,0.000066739000000,0.000084516000000,0.000026443000000,0.000052911000000,0.000057652000000,0.000210936000000,0.000075429000000,0.000163133000000 +0.000052134500000,0.000204615000000,0.000083331000000,0.000013818333333,0.000027838500000,0.000065158000000,0.000083331000000,0.000026442000000,0.000053307000000,0.000054886000000,0.000212911000000,0.000075035000000,0.000165504000000 +0.000040875500000,0.000208565000000,0.000078985000000,0.000015135000000,0.000026851000000,0.000065158000000,0.000082540000000,0.000026443000000,0.000051726000000,0.000053306000000,0.000221603000000,0.000075429000000,0.000161158000000 +0.000024480500000,0.000240170000000,0.000065949000000,0.000013818000000,0.000026455500000,0.000066344000000,0.000082935000000,0.000028418000000,0.000052911000000,0.000055282000000,0.000238985000000,0.000077010000000,0.000222787000000 +0.000038900500000,0.000210541000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000065949000000,0.000116121000000,0.000027232000000,0.000052911000000,0.000054096000000,0.000205010000000,0.000089257000000,0.000161553000000 +0.000029616000000,0.000210936000000,0.000063973000000,0.000013423333333,0.000027048000000,0.000067924000000,0.000084516000000,0.000026442000000,0.000086096000000,0.000054097000000,0.000205405000000,0.000078590000000,0.000160368000000 +0.000024085000000,0.000208960000000,0.000065949000000,0.000013423000000,0.000026653500000,0.000068318000000,0.000082936000000,0.000026837000000,0.000051726000000,0.000051726000000,0.000228713000000,0.000075430000000,0.000161554000000 +0.000022505000000,0.000206195000000,0.000063973000000,0.000014081333333,0.000044628000000,0.000065158000000,0.000082541000000,0.000026837000000,0.000053701000000,0.000054492000000,0.000206985000000,0.000077405000000,0.000197504000000 +0.000022110000000,0.000206590000000,0.000063183000000,0.000013950000000,0.000026455500000,0.000065159000000,0.000085307000000,0.000026442000000,0.000054096000000,0.000054886000000,0.000206985000000,0.000077010000000,0.000166294000000 +0.000022505000000,0.000209751000000,0.000063578000000,0.000018163666667,0.000026653000000,0.000066344000000,0.000084516000000,0.000026837000000,0.000052121000000,0.000052516000000,0.000207381000000,0.000093602000000,0.000165899000000 +0.000022702500000,0.000207380000000,0.000063578000000,0.000014476666667,0.000026455500000,0.000068319000000,0.000084516000000,0.000026442000000,0.000052911000000,0.000091628000000,0.000247676000000,0.000088466000000,0.000168664000000 +0.000022110000000,0.000211331000000,0.000063973000000,0.000014740000000,0.000027838000000,0.000066343000000,0.000178146000000,0.000041850000000,0.000054096000000,0.000125603000000,0.000206985000000,0.000075430000000,0.000197504000000 +0.000022505000000,0.000208961000000,0.000063973000000,0.000013555000000,0.000026455500000,0.000068319000000,0.000082540000000,0.000039874000000,0.000056862000000,0.000056862000000,0.000205010000000,0.000075035000000,0.000162738000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000013818000000,0.000026455500000,0.000085307000000,0.000082541000000,0.000046196000000,0.000053702000000,0.000054096000000,0.000242146000000,0.000077010000000,0.000161948000000 +0.000023295000000,0.000210541000000,0.000063578000000,0.000013423000000,0.000027641000000,0.000066344000000,0.000082541000000,0.000026837000000,0.000107825000000,0.000054887000000,0.000205405000000,0.000075034000000,0.000167084000000 +0.000022110000000,0.000210540000000,0.000065948000000,0.000013818000000,0.000027641000000,0.000065158000000,0.000083726000000,0.000026442000000,0.000070689000000,0.000054887000000,0.000208566000000,0.000074640000000,0.000210540000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000013423333333,0.000044628000000,0.000067528000000,0.000082935000000,0.000026838000000,0.000058047000000,0.000051726000000,0.000213306000000,0.000075429000000,0.000164714000000 +0.000022110000000,0.000291134000000,0.000065553000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000082541000000,0.000026442000000,0.000054887000000,0.000075430000000,0.000241751000000,0.000076615000000,0.000166689000000 +0.000022702500000,0.000441651000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000066738000000,0.000116911000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000207776000000,0.000078195000000,0.000162739000000 +0.000030011000000,0.000246887000000,0.000063578000000,0.000013555000000,0.000026850500000,0.000065948000000,0.000084516000000,0.000026837000000,0.000051726000000,0.000054491000000,0.000205800000000,0.000075035000000,0.000161553000000 +0.000022505000000,0.000208961000000,0.000063973000000,0.000013423000000,0.000027640500000,0.000066343000000,0.000082540000000,0.000026837000000,0.000052912000000,0.000051726000000,0.000255973000000,0.000077010000000,0.000160763000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000065948000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000277306000000,0.000077010000000,0.000162343000000 +0.000022110000000,0.000207381000000,0.000063578000000,0.000013818333333,0.000026455500000,0.000067924000000,0.000087677000000,0.000027232000000,0.000065554000000,0.000054887000000,0.000211330000000,0.000077010000000,0.000163133000000 +0.000022505000000,0.000209750000000,0.000063973000000,0.000015135000000,0.000027048500000,0.000065159000000,0.000082541000000,0.000026443000000,0.000051726000000,0.000054096000000,0.000253997000000,0.000077010000000,0.000165899000000 +0.000023492500000,0.000211331000000,0.000065949000000,0.000013818000000,0.000027838500000,0.000065553000000,0.000082145000000,0.000026442000000,0.000051726000000,0.000053306000000,0.000205405000000,0.000076615000000,0.000176566000000 +0.000022505000000,0.000212911000000,0.000063973000000,0.000013818000000,0.000044628500000,0.000065158000000,0.000151282000000,0.000026838000000,0.000054097000000,0.000051726000000,0.000206590000000,0.000077405000000,0.000162343000000 +0.000022110000000,0.000204614000000,0.000063577000000,0.000013423000000,0.000027048000000,0.000068713000000,0.000082541000000,0.000041059000000,0.000052911000000,0.000066739000000,0.000211331000000,0.000076220000000,0.000162738000000 +0.000022109500000,0.000242936000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000066343000000,0.000084516000000,0.000026838000000,0.000051726000000,0.000052911000000,0.000290344000000,0.000077010000000,0.000161553000000 +0.000022505000000,0.000212516000000,0.000063973000000,0.000013423000000,0.000026653500000,0.000067924000000,0.000082145000000,0.000026837000000,0.000052912000000,0.000052121000000,0.000210936000000,0.000075825000000,0.000302590000000 +0.000039493000000,0.000204615000000,0.000063973000000,0.000013949666667,0.000027048500000,0.000067134000000,0.000084516000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000209356000000,0.000076615000000,0.000191183000000 +0.000022505000000,0.000210935000000,0.000067923000000,0.000043711000000,0.000028036000000,0.000066738000000,0.000083331000000,0.000028022000000,0.000051726000000,0.000056467000000,0.000298245000000,0.000077010000000,0.000162739000000 +0.000022900000000,0.000206985000000,0.000065553000000,0.000019349000000,0.000026653500000,0.000066738000000,0.000082541000000,0.000026837000000,0.000092812000000,0.000054491000000,0.000206195000000,0.000075430000000,0.000163924000000 +0.000022110000000,0.000211331000000,0.000085701000000,0.000018558666667,0.000026653500000,0.000067133000000,0.000155627000000,0.000026442000000,0.000051726000000,0.000057652000000,0.000204615000000,0.000076615000000,0.000159972000000 +0.000022702500000,0.000210936000000,0.000065948000000,0.000013950000000,0.000026653500000,0.000070689000000,0.000088467000000,0.000026442000000,0.000051726000000,0.000054491000000,0.000223578000000,0.000077010000000,0.000162739000000 +0.000022900000000,0.000316812000000,0.000063973000000,0.000013554666667,0.000044431000000,0.000067923000000,0.000088861000000,0.000026442000000,0.000054096000000,0.000053307000000,0.000210541000000,0.000077405000000,0.000170639000000 +0.000022110000000,0.000225948000000,0.000065553000000,0.000013950000000,0.000026653000000,0.000068713000000,0.000091627000000,0.000026837000000,0.000052122000000,0.000068319000000,0.000208960000000,0.000076615000000,0.000163529000000 +0.000023295000000,0.000204614000000,0.000063578000000,0.000013818000000,0.000027443500000,0.000067133000000,0.000134689000000,0.000026837000000,0.000052121000000,0.000053702000000,0.000202639000000,0.000075824000000,0.000195923000000 +0.000022505000000,0.000241355000000,0.000063973000000,0.000013818333333,0.000026653500000,0.000066343000000,0.000084516000000,0.000060417000000,0.000052911000000,0.000054096000000,0.000251232000000,0.000076615000000,0.000160368000000 +0.000023295000000,0.000204614000000,0.000066343000000,0.000013555000000,0.000026653000000,0.000066738000000,0.000240566000000,0.000026443000000,0.000053701000000,0.000051331000000,0.000205405000000,0.000075430000000,0.000161949000000 +0.000032381500000,0.000204615000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000068319000000,0.000168665000000,0.000027627000000,0.000052912000000,0.000054491000000,0.000204615000000,0.000075430000000,0.000159972000000 +0.000022505000000,0.000210541000000,0.000135084000000,0.000013423333333,0.000026850500000,0.000088466000000,0.000148516000000,0.000026837000000,0.000068319000000,0.000054886000000,0.000214097000000,0.000075429000000,0.000285208000000 +0.000022505000000,0.000259923000000,0.000065949000000,0.000013818000000,0.000026455500000,0.000095577000000,0.000097158000000,0.000027232000000,0.000052516000000,0.000052516000000,0.000220022000000,0.000075034000000,0.000163134000000 +0.000022702500000,0.000212516000000,0.000065553000000,0.000013555000000,0.000026653000000,0.000065948000000,0.000129948000000,0.000026837000000,0.000052911000000,0.000052516000000,0.000208566000000,0.000110196000000,0.000167479000000 +0.000022505000000,0.000210936000000,0.000065949000000,0.000013949666667,0.000044826000000,0.000067923000000,0.000082146000000,0.000026837000000,0.000052911000000,0.000095577000000,0.000206985000000,0.000077010000000,0.000163923000000 +0.000022505000000,0.000248467000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000065554000000,0.000083726000000,0.000026837000000,0.000051726000000,0.000053306000000,0.000240961000000,0.000076615000000,0.000229109000000 +0.000022702500000,0.000221207000000,0.000065948000000,0.000014213333333,0.000026653000000,0.000068319000000,0.000084911000000,0.000026837000000,0.000052911000000,0.000054096000000,0.000204614000000,0.000077010000000,0.000162343000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000066344000000,0.000082541000000,0.000026837000000,0.000052516000000,0.000054491000000,0.000208960000000,0.000077010000000,0.000169849000000 +0.000022110000000,0.000210145000000,0.000064368000000,0.000013818333333,0.000026851000000,0.000065553000000,0.000084911000000,0.000026837000000,0.000054492000000,0.000054492000000,0.000211725000000,0.000075430000000,0.000161948000000 +0.000024085000000,0.000252418000000,0.000067529000000,0.000013423000000,0.000026653000000,0.000068714000000,0.000084516000000,0.000026837000000,0.000052516000000,0.000051726000000,0.000221602000000,0.000075430000000,0.000196319000000 +0.000032776500000,0.000209751000000,0.000067923000000,0.000013950000000,0.000034752000000,0.000066738000000,0.000120071000000,0.000065553000000,0.000107430000000,0.000054887000000,0.000205010000000,0.000077405000000,0.000163528000000 +0.000022900000000,0.000206195000000,0.000082936000000,0.000027513666667,0.000026653000000,0.000067923000000,0.000084911000000,0.000026837000000,0.000054491000000,0.000054492000000,0.000212121000000,0.000146540000000,0.000165109000000 +0.000023097500000,0.000239775000000,0.000065553000000,0.000013818000000,0.000026455500000,0.000065158000000,0.000082541000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000294294000000,0.000092417000000,0.000164318000000 +0.000022110000000,0.000214492000000,0.000063578000000,0.000013818000000,0.000027641000000,0.000066344000000,0.000084911000000,0.000026838000000,0.000054491000000,0.000051726000000,0.000210540000000,0.000077405000000,0.000196319000000 +0.000023295000000,0.000210936000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000068319000000,0.000083726000000,0.000026443000000,0.000052911000000,0.000053701000000,0.000208961000000,0.000075034000000,0.000162738000000 +0.000023887500000,0.000212121000000,0.000082540000000,0.000014345000000,0.000026653000000,0.000066344000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000055282000000,0.000238590000000,0.000077405000000,0.000162739000000 +0.000022702500000,0.000314442000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000065554000000,0.000082146000000,0.000026837000000,0.000053306000000,0.000054096000000,0.000208961000000,0.000075035000000,0.000164714000000 +0.000022505000000,0.000212516000000,0.000065553000000,0.000014871666667,0.000026455500000,0.000066343000000,0.000138244000000,0.000026838000000,0.000055281000000,0.000053307000000,0.000210541000000,0.000075825000000,0.000162343000000 +0.000022505000000,0.000206590000000,0.000065948000000,0.000013818333333,0.000026456000000,0.000065553000000,0.000082541000000,0.000027232000000,0.000053306000000,0.000051726000000,0.000209750000000,0.000075430000000,0.000190787000000 +0.000022110000000,0.000241355000000,0.000065554000000,0.000013423000000,0.000026850500000,0.000068714000000,0.000082541000000,0.000026838000000,0.000067134000000,0.000051726000000,0.000243726000000,0.000077010000000,0.000165504000000 +0.000022307500000,0.000207380000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000082540000000,0.000026442000000,0.000052911000000,0.000052912000000,0.000206985000000,0.000075430000000,0.000161158000000 +0.000022110000000,0.000205405000000,0.000063578000000,0.000013686333333,0.000026455500000,0.000068318000000,0.000082936000000,0.000026442000000,0.000051331000000,0.000103874000000,0.000221207000000,0.000077010000000,0.000159973000000 +0.000022702500000,0.000213701000000,0.000065948000000,0.000013818333333,0.000046406000000,0.000069108000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000244121000000,0.000077010000000,0.000174590000000 +0.000023295000000,0.000330640000000,0.000128368000000,0.000013423333333,0.000027641000000,0.000101504000000,0.000082935000000,0.000027232000000,0.000052516000000,0.000056862000000,0.000293109000000,0.000075430000000,0.000164714000000 +0.000022505000000,0.000204614000000,0.000065553000000,0.000020139333333,0.000026850500000,0.000066343000000,0.000144961000000,0.000026837000000,0.000053307000000,0.000054886000000,0.000206985000000,0.000075430000000,0.000163528000000 +0.000022702500000,0.000210541000000,0.000063973000000,0.000013818000000,0.000026455500000,0.000068714000000,0.000084122000000,0.000026442000000,0.000051726000000,0.000057652000000,0.000276516000000,0.000075035000000,0.000162343000000 +0.000021912500000,0.000220813000000,0.000065949000000,0.000013818000000,0.000026455500000,0.000069899000000,0.000083331000000,0.000026838000000,0.000051726000000,0.000054887000000,0.000208565000000,0.000075429000000,0.000194738000000 +0.000022505000000,0.000205405000000,0.000063973000000,0.000013950000000,0.000026653000000,0.000067134000000,0.000082146000000,0.000026442000000,0.000052912000000,0.000053306000000,0.000222393000000,0.000077010000000,0.000163923000000 +0.000022505000000,0.000209355000000,0.000065948000000,0.000014871666667,0.000027048000000,0.000065949000000,0.000082936000000,0.000026837000000,0.000123232000000,0.000055282000000,0.000261108000000,0.000075430000000,0.000162739000000 +0.000022505000000,0.000316022000000,0.000065553000000,0.000013950000000,0.000027443000000,0.000069108000000,0.000082541000000,0.000027628000000,0.000051726000000,0.000087676000000,0.000212911000000,0.000077010000000,0.000163133000000 +0.000023295500000,0.000403330000000,0.000099134000000,0.000014476666667,0.000044628000000,0.000067133000000,0.000084121000000,0.000027233000000,0.000052122000000,0.000054491000000,0.000205009000000,0.000075034000000,0.000239776000000 +0.000022505000000,0.000208170000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000066343000000,0.000117306000000,0.000026837000000,0.000052516000000,0.000051331000000,0.000205010000000,0.000078590000000,0.000163133000000 +0.000022110000000,0.000206590000000,0.000063973000000,0.000013818333333,0.000026653500000,0.000065948000000,0.000082540000000,0.000026442000000,0.000051331000000,0.000054096000000,0.000288763000000,0.000076615000000,0.000161158000000 +0.000022505000000,0.000204220000000,0.000065948000000,0.000013949666667,0.000026653500000,0.000066738000000,0.000085306000000,0.000026442000000,0.000053307000000,0.000054887000000,0.000206985000000,0.000082936000000,0.000167875000000 +0.000024480500000,0.000206986000000,0.000065948000000,0.000013555000000,0.000026653500000,0.000069109000000,0.000083726000000,0.000040664000000,0.000052911000000,0.000052912000000,0.000209355000000,0.000077800000000,0.000197109000000 +0.000022110000000,0.000206590000000,0.000063577000000,0.000013950000000,0.000026653500000,0.000065553000000,0.000084517000000,0.000026442000000,0.000052517000000,0.000052911000000,0.000274935000000,0.000075825000000,0.000164318000000 +0.000022505000000,0.000208566000000,0.000065949000000,0.000015266666667,0.000027641000000,0.000069899000000,0.000084121000000,0.000026443000000,0.000053702000000,0.000054887000000,0.000204614000000,0.000081751000000,0.000159973000000 +0.000022307500000,0.000205010000000,0.000065949000000,0.000013950000000,0.000026456000000,0.000066344000000,0.000082146000000,0.000026837000000,0.000051331000000,0.000051726000000,0.000208565000000,0.000078590000000,0.000164714000000 +0.000023098000000,0.000204615000000,0.000115726000000,0.000013949666667,0.000026455500000,0.000067924000000,0.000131923000000,0.000026838000000,0.000051726000000,0.000068714000000,0.000204219000000,0.000077010000000,0.000163528000000 +0.000022307500000,0.000221603000000,0.000063973000000,0.000013423000000,0.000043641000000,0.000073455000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000055282000000,0.000208960000000,0.000076615000000,0.000162343000000 +0.000022110000000,0.000207380000000,0.000063578000000,0.000013818333333,0.000026653500000,0.000065553000000,0.000083331000000,0.000026442000000,0.000052121000000,0.000054886000000,0.000213306000000,0.000075430000000,0.000161553000000 +0.000022505000000,0.000204615000000,0.000063973000000,0.000013423000000,0.000027048500000,0.000065158000000,0.000082540000000,0.000026442000000,0.000053306000000,0.000053307000000,0.000205010000000,0.000141405000000,0.000160763000000 +0.000022505000000,0.000205405000000,0.000065949000000,0.000024616666667,0.000026455500000,0.000068319000000,0.000082540000000,0.000026838000000,0.000052912000000,0.000054886000000,0.000278887000000,0.000078195000000,0.000162738000000 +0.000022505000000,0.000208170000000,0.000063973000000,0.000013423000000,0.000026455500000,0.000066343000000,0.000082540000000,0.000026442000000,0.000052516000000,0.000054886000000,0.000215282000000,0.000075429000000,0.000198294000000 +0.000022702500000,0.000223183000000,0.000065949000000,0.000013423000000,0.000026653000000,0.000068714000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054886000000,0.000205010000000,0.000077405000000,0.000160763000000 +0.000021912500000,0.000214097000000,0.000063973000000,0.000013423000000,0.000026653500000,0.000069109000000,0.000116121000000,0.000027628000000,0.000052121000000,0.000051726000000,0.000278887000000,0.000077009000000,0.000159578000000 +0.000022900000000,0.000210936000000,0.000063577000000,0.000013950000000,0.000026653000000,0.000066739000000,0.000082541000000,0.000026838000000,0.000103479000000,0.000054097000000,0.000205405000000,0.000075825000000,0.000159973000000 +0.000022505000000,0.000213701000000,0.000065553000000,0.000013554666667,0.000026653500000,0.000065553000000,0.000088467000000,0.000026837000000,0.000054096000000,0.000069898000000,0.000208171000000,0.000075430000000,0.000197109000000 +0.000022505000000,0.000206195000000,0.000063973000000,0.000013423000000,0.000045221000000,0.000065948000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000054096000000,0.000211331000000,0.000076615000000,0.000163923000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000014344666667,0.000027838500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000054096000000,0.000053306000000,0.000269405000000,0.000077010000000,0.000167084000000 +0.000022110000000,0.000206195000000,0.000063973000000,0.000013950000000,0.000026850500000,0.000066343000000,0.000083726000000,0.000026837000000,0.000052516000000,0.000051726000000,0.000209356000000,0.000081750000000,0.000161948000000 +0.000167097500000,0.000216467000000,0.000063182000000,0.000013554666667,0.000026455500000,0.000072269000000,0.000082936000000,0.000027232000000,0.000052517000000,0.000051726000000,0.000209751000000,0.000077010000000,0.000160368000000 +0.000025468000000,0.000218837000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000067529000000,0.000104269000000,0.000027627000000,0.000056467000000,0.000052911000000,0.000280467000000,0.000076615000000,0.000163134000000 +0.000024085500000,0.000205800000000,0.000065553000000,0.000013950000000,0.000026850500000,0.000067134000000,0.000095973000000,0.000026442000000,0.000053701000000,0.000052516000000,0.000208566000000,0.000075429000000,0.000173800000000 +0.000024085000000,0.000212911000000,0.000063578000000,0.000013423000000,0.000026653500000,0.000065948000000,0.000084516000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000207381000000,0.000077405000000,0.000163134000000 +0.000029616000000,0.000205800000000,0.000065948000000,0.000013423000000,0.000026456000000,0.000066343000000,0.000083726000000,0.000026837000000,0.000053702000000,0.000106245000000,0.000248071000000,0.000075429000000,0.000161948000000 +0.000021912500000,0.000208565000000,0.000065949000000,0.000013818000000,0.000026653000000,0.000065948000000,0.000082540000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000220022000000,0.000188813000000,0.000194738000000 +0.000021912500000,0.000208960000000,0.000063578000000,0.000013423000000,0.000045023500000,0.000067528000000,0.000084516000000,0.000026837000000,0.000052911000000,0.000058047000000,0.000206986000000,0.000231479000000,0.000160368000000 +0.000022505000000,0.000211330000000,0.000065553000000,0.000013818333333,0.000026653000000,0.000064763000000,0.000083330000000,0.000040664000000,0.000052911000000,0.000054491000000,0.000211331000000,0.000091232000000,0.000161948000000 +0.000023295500000,0.000207380000000,0.000063578000000,0.000013949666667,0.000026850500000,0.000067134000000,0.000117306000000,0.000026838000000,0.000052516000000,0.000052911000000,0.000291133000000,0.000077010000000,0.000161158000000 +0.000022505000000,0.000209751000000,0.000065553000000,0.000013818333333,0.000026456000000,0.000065158000000,0.000084911000000,0.000027232000000,0.000052911000000,0.000054886000000,0.000204615000000,0.000076615000000,0.000204614000000 +0.000022110000000,0.000211331000000,0.000099923000000,0.000014081333333,0.000026456000000,0.000065158000000,0.000084516000000,0.000026442000000,0.000053307000000,0.000054097000000,0.000212121000000,0.000075824000000,0.000159183000000 +0.000022110000000,0.000210936000000,0.000063578000000,0.000013949666667,0.000026456000000,0.000065158000000,0.000083726000000,0.000026442000000,0.000051726000000,0.000054492000000,0.000280071000000,0.000075035000000,0.000162343000000 +0.000022109500000,0.000212516000000,0.000063973000000,0.000025143333333,0.000026851000000,0.000065948000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000071874000000,0.000213701000000,0.000077800000000,0.000164714000000 +0.000022110000000,0.000243725000000,0.000063578000000,0.000013949666667,0.000027641000000,0.000067133000000,0.000082936000000,0.000026838000000,0.000065553000000,0.000054887000000,0.000211726000000,0.000075430000000,0.000183677000000 +0.000022110000000,0.000205010000000,0.000063578000000,0.000013555000000,0.000026653000000,0.000066343000000,0.000082145000000,0.000027627000000,0.000054492000000,0.000054887000000,0.000248862000000,0.000075430000000,0.000163133000000 +0.000022110000000,0.000207776000000,0.000063578000000,0.000013950000000,0.000044826000000,0.000066343000000,0.000116516000000,0.000026442000000,0.000053307000000,0.000052516000000,0.000221207000000,0.000075429000000,0.000165899000000 +0.000022110000000,0.000210146000000,0.000063577000000,0.000013818333333,0.000026851000000,0.000065553000000,0.000084121000000,0.000027628000000,0.000086491000000,0.000052911000000,0.000209750000000,0.000077801000000,0.000162738000000 +0.000022505000000,0.000204615000000,0.000063578000000,0.000014344666667,0.000026455500000,0.000066343000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000054492000000,0.000208960000000,0.000075430000000,0.000162738000000 +0.000022702500000,0.000278491000000,0.000097553000000,0.000013949666667,0.000026653000000,0.000068714000000,0.000083726000000,0.000046590000000,0.000051331000000,0.000051726000000,0.000244121000000,0.000106245000000,0.000176961000000 +0.000024282500000,0.000210935000000,0.000065949000000,0.000013818333333,0.000027640500000,0.000065553000000,0.000084911000000,0.000026442000000,0.000052911000000,0.000054097000000,0.000214886000000,0.000077800000000,0.000161948000000 +0.000022110000000,0.000327478000000,0.000065948000000,0.000013950000000,0.000026455500000,0.000065158000000,0.000082936000000,0.000026442000000,0.000052516000000,0.000054886000000,0.000252023000000,0.000078195000000,0.000165899000000 +0.000022702500000,0.000236615000000,0.000065949000000,0.000013423000000,0.000026653500000,0.000068319000000,0.000084912000000,0.000026837000000,0.000072664000000,0.000148121000000,0.000461010000000,0.000075430000000,0.000165503000000 +0.000022702500000,0.000307726000000,0.000063578000000,0.000013423333333,0.000026653000000,0.000065553000000,0.000129948000000,0.000026838000000,0.000052911000000,0.000136269000000,0.000241355000000,0.000075430000000,0.000302590000000 +0.000022110000000,0.000317998000000,0.000064368000000,0.000013423000000,0.000026850500000,0.000067134000000,0.000085701000000,0.000026837000000,0.000051726000000,0.000071479000000,0.000243331000000,0.000075034000000,0.000173405000000 +0.000023098000000,0.000448762000000,0.000063973000000,0.000013950000000,0.000044628500000,0.000066343000000,0.000084911000000,0.000026442000000,0.000054887000000,0.000054887000000,0.000227528000000,0.000075430000000,0.000166689000000 +0.000022110000000,0.000218442000000,0.000068319000000,0.000013950000000,0.000026653500000,0.000067924000000,0.000082936000000,0.000026442000000,0.000051331000000,0.000054887000000,0.000222393000000,0.000076220000000,0.000163133000000 +0.000022109500000,0.000245701000000,0.000154837000000,0.000013818000000,0.000026455500000,0.000066344000000,0.000084911000000,0.000026838000000,0.000054097000000,0.000051726000000,0.000206985000000,0.000076615000000,0.000175776000000 +0.000022110000000,0.000207775000000,0.000069899000000,0.000013818333333,0.000026653000000,0.000066739000000,0.000083331000000,0.000026837000000,0.000052911000000,0.000068319000000,0.000218047000000,0.000075824000000,0.000161948000000 +0.000024085500000,0.000205010000000,0.000063578000000,0.000013950000000,0.000026653000000,0.000068318000000,0.000082935000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000206195000000,0.000075430000000,0.000163528000000 +0.000022110000000,0.000205010000000,0.000063973000000,0.000014740000000,0.000026653500000,0.000067923000000,0.000171430000000,0.000026837000000,0.000052121000000,0.000054096000000,0.000208565000000,0.000077010000000,0.000161553000000 +0.000022110000000,0.000206590000000,0.000063973000000,0.000013818000000,0.000027641000000,0.000066739000000,0.000083726000000,0.000026442000000,0.000085701000000,0.000053307000000,0.000248072000000,0.000077406000000,0.000229899000000 +0.000022307500000,0.000205405000000,0.000067923000000,0.000013949666667,0.000027048000000,0.000065553000000,0.000082540000000,0.000028022000000,0.000052911000000,0.000051726000000,0.000209751000000,0.000077405000000,0.000163133000000 +0.000022702500000,0.000205010000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000065948000000,0.000082936000000,0.000026837000000,0.000054887000000,0.000051726000000,0.000205800000000,0.000077405000000,0.000163924000000 +0.000023492500000,0.000206590000000,0.000094392000000,0.000013423000000,0.000054702500000,0.000065949000000,0.000082541000000,0.000026837000000,0.000054491000000,0.000053307000000,0.000210540000000,0.000078195000000,0.000165503000000 +0.000022110000000,0.000206590000000,0.000067923000000,0.000013950000000,0.000027048500000,0.000067924000000,0.000082540000000,0.000027232000000,0.000051726000000,0.000052516000000,0.000252812000000,0.000076615000000,0.000203825000000 +0.000022307500000,0.000208565000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000065159000000,0.000154047000000,0.000026837000000,0.000052516000000,0.000124022000000,0.000205009000000,0.000075430000000,0.000161553000000 +0.000023295000000,0.000208961000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000066738000000,0.000099528000000,0.000028022000000,0.000052911000000,0.000056467000000,0.000209750000000,0.000081355000000,0.000161949000000 +0.000022702500000,0.000205800000000,0.000063973000000,0.000013949666667,0.000027048500000,0.000066343000000,0.000084121000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000242541000000,0.000075825000000,0.000161158000000 +0.000022505000000,0.000207775000000,0.000066344000000,0.000013423333333,0.000027048000000,0.000065948000000,0.000159577000000,0.000026442000000,0.000052517000000,0.000057652000000,0.000210936000000,0.000078195000000,0.000218837000000 +0.000022110000000,0.000204615000000,0.000063973000000,0.000013423000000,0.000027838000000,0.000066343000000,0.000095578000000,0.000027232000000,0.000122838000000,0.000054886000000,0.000212516000000,0.000075825000000,0.000164319000000 +0.000022702500000,0.000208566000000,0.000121257000000,0.000013423000000,0.000026653500000,0.000069109000000,0.000082541000000,0.000026442000000,0.000053306000000,0.000053307000000,0.000221602000000,0.000075034000000,0.000161553000000 +0.000022110000000,0.000205010000000,0.000065949000000,0.000013950000000,0.000026653500000,0.000068318000000,0.000116516000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000238590000000,0.000075825000000,0.000163923000000 +0.000022110000000,0.000246096000000,0.000063578000000,0.000013818333333,0.000047789000000,0.000067528000000,0.000082540000000,0.000041455000000,0.000051726000000,0.000053701000000,0.000205010000000,0.000077010000000,0.000161553000000 +0.000022110000000,0.000211331000000,0.000063973000000,0.000013554666667,0.000027246000000,0.000065948000000,0.000084911000000,0.000026442000000,0.000051727000000,0.000054492000000,0.000205010000000,0.000075430000000,0.000160368000000 +0.000022505000000,0.000207775000000,0.000065949000000,0.000033044333333,0.000026455500000,0.000065948000000,0.000083331000000,0.000026442000000,0.000055281000000,0.000051331000000,0.000242146000000,0.000077405000000,0.000161948000000 +0.000032184000000,0.000227133000000,0.000063973000000,0.000013950000000,0.000026455500000,0.000067923000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000206985000000,0.000075430000000,0.000163134000000 +0.000029616000000,0.000253208000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000069898000000,0.000085307000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000206985000000,0.000077010000000,0.000164713000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000013950000000,0.000026850500000,0.000068714000000,0.000083726000000,0.000026442000000,0.000053702000000,0.000052516000000,0.000207381000000,0.000075035000000,0.000250047000000 +0.000022505000000,0.000207380000000,0.000063577000000,0.000013950000000,0.000026456000000,0.000065158000000,0.000118886000000,0.000026442000000,0.000098738000000,0.000052911000000,0.000265454000000,0.000077010000000,0.000169059000000 +0.000022505000000,0.000210935000000,0.000064368000000,0.000013555000000,0.000028036000000,0.000067528000000,0.000084121000000,0.000026838000000,0.000051726000000,0.000054887000000,0.000219627000000,0.000075824000000,0.000163134000000 +0.000022505000000,0.000208565000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000068714000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000051726000000,0.000256367000000,0.000075430000000,0.000163133000000 +0.000023888000000,0.000204614000000,0.000063578000000,0.000013423333333,0.000035344500000,0.000065158000000,0.000082936000000,0.000027628000000,0.000052911000000,0.000053702000000,0.000293504000000,0.000077010000000,0.000195923000000 +0.000022109500000,0.000210541000000,0.000063578000000,0.000013950000000,0.000054900000000,0.000064368000000,0.000082146000000,0.000026837000000,0.000054491000000,0.000103479000000,0.000205009000000,0.000075429000000,0.000165109000000 +0.000022110000000,0.000210935000000,0.000065948000000,0.000013423000000,0.000039492500000,0.000065159000000,0.000083726000000,0.000026838000000,0.000051726000000,0.000054887000000,0.000208565000000,0.000075429000000,0.000166294000000 +0.000022110000000,0.000208565000000,0.000063578000000,0.000024748333333,0.000026653000000,0.000106640000000,0.000082936000000,0.000065553000000,0.000052121000000,0.000052911000000,0.000285207000000,0.000075430000000,0.000165109000000 +0.000023887500000,0.000206195000000,0.000065553000000,0.000013950000000,0.000027048000000,0.000098343000000,0.000156022000000,0.000078590000000,0.000052911000000,0.000054492000000,0.000207775000000,0.000076615000000,0.000362244000000 +0.000022505000000,0.000254787000000,0.000063973000000,0.000013949666667,0.000026455500000,0.000078985000000,0.000187628000000,0.000060812000000,0.000053306000000,0.000054887000000,0.000207775000000,0.000077800000000,0.000263479000000 +0.000022110000000,0.000212121000000,0.000063578000000,0.000014476333333,0.000026653000000,0.000065949000000,0.000128764000000,0.000042640000000,0.000158392000000,0.000054491000000,0.000214096000000,0.000077405000000,0.000161948000000 +0.000022110000000,0.000208566000000,0.000063973000000,0.000013423333333,0.000037517000000,0.000084122000000,0.000082540000000,0.000028417000000,0.000141010000000,0.000051726000000,0.000243726000000,0.000077405000000,0.000161159000000 +0.000022110000000,0.000215281000000,0.000063578000000,0.000013949666667,0.000046011500000,0.000066343000000,0.000082540000000,0.000026442000000,0.000077010000000,0.000054096000000,0.000212121000000,0.000077010000000,0.000162738000000 +0.000022505000000,0.000207380000000,0.000080961000000,0.000013949666667,0.000034554000000,0.000068714000000,0.000091627000000,0.000026838000000,0.000054886000000,0.000109800000000,0.000211331000000,0.000075430000000,0.000163528000000 +0.000022702500000,0.000205800000000,0.000063973000000,0.000013818000000,0.000026653000000,0.000195923000000,0.000096763000000,0.000065158000000,0.000052911000000,0.000054096000000,0.000253998000000,0.000075429000000,0.000165109000000 +0.000022505000000,0.000365405000000,0.000065948000000,0.000013554666667,0.000027640500000,0.000068319000000,0.000082540000000,0.000026442000000,0.000052516000000,0.000053306000000,0.000205800000000,0.000077405000000,0.000209355000000 +0.000023492500000,0.000212911000000,0.000079775000000,0.000013949666667,0.000026653500000,0.000067134000000,0.000084516000000,0.000026837000000,0.000086492000000,0.000051726000000,0.000206985000000,0.000077800000000,0.000162344000000 +0.000022702500000,0.000249652000000,0.000063183000000,0.000013818333333,0.000026851000000,0.000065553000000,0.000082936000000,0.000027232000000,0.000052121000000,0.000051726000000,0.000211331000000,0.000076614000000,0.000227528000000 +0.000023097500000,0.000206985000000,0.000065948000000,0.000013554666667,0.000026455500000,0.000066343000000,0.000084911000000,0.000026837000000,0.000054492000000,0.000052912000000,0.000241751000000,0.000075035000000,0.000162343000000 +0.000023097500000,0.000227133000000,0.000063973000000,0.000013950000000,0.000036529500000,0.000066343000000,0.000082541000000,0.000026838000000,0.000052911000000,0.000052516000000,0.000210936000000,0.000077010000000,0.000210146000000 +0.000028826000000,0.000204615000000,0.000063578000000,0.000013818000000,0.000027048000000,0.000067923000000,0.000084516000000,0.000026442000000,0.000053702000000,0.000054886000000,0.000209750000000,0.000077800000000,0.000165108000000 +0.000022505000000,0.000211330000000,0.000067529000000,0.000013554666667,0.000028233500000,0.000086096000000,0.000098738000000,0.000028023000000,0.000052911000000,0.000056072000000,0.000284812000000,0.000077010000000,0.000161948000000 +0.000022307500000,0.000211331000000,0.000065553000000,0.000013950000000,0.000027048500000,0.000067133000000,0.000082936000000,0.000026837000000,0.000055282000000,0.000054886000000,0.000206590000000,0.000077405000000,0.000163924000000 +0.000022505000000,0.000211331000000,0.000085702000000,0.000013423000000,0.000026653500000,0.000065948000000,0.000084517000000,0.000026442000000,0.000051331000000,0.000057652000000,0.000205010000000,0.000075825000000,0.000229503000000 +0.000022505000000,0.000210936000000,0.000065553000000,0.000014871666667,0.000026653500000,0.000065948000000,0.000083331000000,0.000026442000000,0.000051331000000,0.000054887000000,0.000224762000000,0.000075430000000,0.000163529000000 +0.000022505000000,0.000211726000000,0.000063578000000,0.000013818333333,0.000026653000000,0.000068714000000,0.000083331000000,0.000046195000000,0.000086096000000,0.000053306000000,0.000210541000000,0.000076615000000,0.000169849000000 +0.000022505000000,0.000208566000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000065553000000,0.000084121000000,0.000028022000000,0.000054491000000,0.000054887000000,0.000208960000000,0.000074245000000,0.000163134000000 +0.000022110000000,0.000204615000000,0.000063578000000,0.000013818333333,0.000027048000000,0.000065948000000,0.000084911000000,0.000040664000000,0.000052911000000,0.000054096000000,0.000202640000000,0.000075430000000,0.000195528000000 +0.000022702500000,0.000207381000000,0.000063973000000,0.000024616333333,0.000059640500000,0.000066343000000,0.000153257000000,0.000026837000000,0.000052516000000,0.000054096000000,0.000257553000000,0.000077010000000,0.000160763000000 +0.000023295500000,0.000204615000000,0.000065948000000,0.000013949666667,0.000026455500000,0.000066738000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000205405000000,0.000077010000000,0.000163134000000 +0.000029418500000,0.000204615000000,0.000063973000000,0.000013554666667,0.000026455500000,0.000066343000000,0.000082540000000,0.000027627000000,0.000054096000000,0.000141800000000,0.000205010000000,0.000077010000000,0.000159973000000 +0.000022110000000,0.000210541000000,0.000078985000000,0.000013949666667,0.000026455500000,0.000065158000000,0.000082936000000,0.000026838000000,0.000052911000000,0.000054886000000,0.000213702000000,0.000076615000000,0.000182097000000 +0.000022900000000,0.000209750000000,0.000065949000000,0.000013818333333,0.000026455500000,0.000069109000000,0.000082936000000,0.000027232000000,0.000053702000000,0.000052516000000,0.000203430000000,0.000077010000000,0.000161948000000 +0.000022110000000,0.000212911000000,0.000065948000000,0.000013818000000,0.000026653500000,0.000066739000000,0.000083726000000,0.000026442000000,0.000054096000000,0.000052911000000,0.000208566000000,0.000439676000000,0.000165899000000 +0.000022505000000,0.000211331000000,0.000065553000000,0.000013423333333,0.000026455500000,0.000067529000000,0.000082541000000,0.000026837000000,0.000074244000000,0.000054887000000,0.000206985000000,0.000117306000000,0.000164319000000 +0.000022702500000,0.000213306000000,0.000063578000000,0.000013950000000,0.000026455500000,0.000067923000000,0.000083726000000,0.000026837000000,0.000053306000000,0.000053306000000,0.000240565000000,0.000089257000000,0.000166689000000 +0.000023097500000,0.000221207000000,0.000065948000000,0.000013950000000,0.000026653000000,0.000066343000000,0.000084516000000,0.000026838000000,0.000054097000000,0.000054492000000,0.000205010000000,0.000076615000000,0.000178936000000 +0.000023492500000,0.000204615000000,0.000063973000000,0.000013423000000,0.000026653500000,0.000065553000000,0.000082936000000,0.000040664000000,0.000053306000000,0.000054886000000,0.000208960000000,0.000075825000000,0.000168665000000 +0.000022505000000,0.000209751000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000107034000000,0.000084911000000,0.000026442000000,0.000053307000000,0.000109010000000,0.000211331000000,0.000076615000000,0.000161949000000 +0.000022505000000,0.000208171000000,0.000190788000000,0.000013423333333,0.000026653000000,0.000066343000000,0.000084121000000,0.000026837000000,0.000054096000000,0.000051726000000,0.000221602000000,0.000077405000000,0.000162739000000 +0.000034357000000,0.000355528000000,0.000099924000000,0.000014213333333,0.000026653500000,0.000069504000000,0.000085702000000,0.000026837000000,0.000057652000000,0.000054886000000,0.000204615000000,0.000075825000000,0.000245701000000 +0.000022505000000,0.000255183000000,0.000067528000000,0.000013423333333,0.000026851000000,0.000065948000000,0.000084911000000,0.000026838000000,0.000053307000000,0.000054886000000,0.000212121000000,0.000075825000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000065158000000,0.000098343000000,0.000026837000000,0.000051726000000,0.000054887000000,0.000344071000000,0.000077010000000,0.000164713000000 +0.000022109500000,0.000249257000000,0.000063973000000,0.000013949666667,0.000027641000000,0.000066343000000,0.000084911000000,0.000026837000000,0.000072665000000,0.000051726000000,0.000223183000000,0.000075430000000,0.000162343000000 +0.000023295000000,0.000210935000000,0.000063973000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000083726000000,0.000026837000000,0.000064763000000,0.000053702000000,0.000208565000000,0.000077800000000,0.000195924000000 +0.000023295000000,0.000212121000000,0.000063578000000,0.000013949666667,0.000026850500000,0.000066738000000,0.000082541000000,0.000026443000000,0.000053702000000,0.000055281000000,0.000238986000000,0.000077010000000,0.000163133000000 +0.000022110000000,0.000243330000000,0.000063578000000,0.000013818000000,0.000026653000000,0.000065158000000,0.000082541000000,0.000026442000000,0.000053307000000,0.000143775000000,0.000208565000000,0.000077010000000,0.000163528000000 +0.000022110000000,0.000212912000000,0.000065553000000,0.000013949666667,0.000026653500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000051331000000,0.000067134000000,0.000210541000000,0.000077405000000,0.000162739000000 +0.000022110000000,0.000206195000000,0.000065553000000,0.000013949666667,0.000026653500000,0.000066738000000,0.000082936000000,0.000047380000000,0.000054492000000,0.000051726000000,0.000250047000000,0.000076615000000,0.000202245000000 +0.000022505000000,0.000206195000000,0.000065948000000,0.000026328666667,0.000026653500000,0.000067924000000,0.000097158000000,0.000026442000000,0.000053702000000,0.000051726000000,0.000209750000000,0.000075430000000,0.000164714000000 +0.000031591000000,0.000242146000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000065553000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000052911000000,0.000206985000000,0.000075430000000,0.000160763000000 +0.000023295000000,0.000205010000000,0.000063578000000,0.000013818000000,0.000026456000000,0.000065553000000,0.000082146000000,0.000026443000000,0.000051726000000,0.000052516000000,0.000221207000000,0.000075035000000,0.000160368000000 +0.000023097500000,0.000206591000000,0.000065948000000,0.000013423333333,0.000026653000000,0.000066738000000,0.000082541000000,0.000026442000000,0.000086492000000,0.000054491000000,0.000238985000000,0.000077010000000,0.000159973000000 +0.000022110000000,0.000225158000000,0.000065553000000,0.000013423000000,0.000027641000000,0.000065158000000,0.000082540000000,0.000026837000000,0.000051726000000,0.000055676000000,0.000205010000000,0.000075825000000,0.000164714000000 +0.000022505000000,0.000205010000000,0.000065948000000,0.000013423000000,0.000026850500000,0.000087281000000,0.000083726000000,0.000026837000000,0.000052911000000,0.000109800000000,0.000206985000000,0.000075430000000,0.000163133000000 +0.000022505000000,0.000210935000000,0.000063578000000,0.000013423000000,0.000045616000000,0.000065949000000,0.000084121000000,0.000026443000000,0.000051331000000,0.000057652000000,0.000224368000000,0.000075035000000,0.000162344000000 +0.000022505000000,0.000206985000000,0.000065553000000,0.000013423000000,0.000026653000000,0.000066343000000,0.000083331000000,0.000027232000000,0.000052911000000,0.000054886000000,0.000224368000000,0.000077010000000,0.000161158000000 +0.000022109500000,0.000287973000000,0.000063973000000,0.000013818333333,0.000026653000000,0.000065948000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000053306000000,0.000206985000000,0.000075430000000,0.000233059000000 +0.000022505000000,0.000209355000000,0.000065553000000,0.000013423333333,0.000026455500000,0.000065158000000,0.000082936000000,0.000026838000000,0.000052516000000,0.000055282000000,0.000221207000000,0.000076615000000,0.000162738000000 +0.000022307500000,0.000204220000000,0.000099529000000,0.000013818333333,0.000027443500000,0.000064763000000,0.000082541000000,0.000027627000000,0.000052911000000,0.000053701000000,0.000246887000000,0.000077010000000,0.000163529000000 +0.000022505000000,0.000240565000000,0.000065554000000,0.000023958000000,0.000026653500000,0.000066739000000,0.000084516000000,0.000040269000000,0.000052121000000,0.000054491000000,0.000205009000000,0.000075430000000,0.000164319000000 +0.000057072500000,0.000220022000000,0.000063973000000,0.000013818333333,0.000026653500000,0.000066343000000,0.000082146000000,0.000026442000000,0.000087282000000,0.000051331000000,0.000205010000000,0.000075430000000,0.000196713000000 +0.000025863000000,0.000526589000000,0.000064368000000,0.000013949666667,0.000026455500000,0.000073455000000,0.000082541000000,0.000026837000000,0.000053701000000,0.000054096000000,0.000223577000000,0.000077405000000,0.000161158000000 +0.000029023500000,0.000254787000000,0.000065948000000,0.000013818000000,0.000044628500000,0.000065948000000,0.000084911000000,0.000026837000000,0.000053306000000,0.000069504000000,0.000206985000000,0.000081356000000,0.000166689000000 +0.000022110000000,0.000206985000000,0.000065553000000,0.000014740000000,0.000026653000000,0.000065948000000,0.000084121000000,0.000026442000000,0.000054491000000,0.000071479000000,0.000224763000000,0.000075430000000,0.000163134000000 +0.000022110000000,0.000206195000000,0.000063578000000,0.000014740000000,0.000026455500000,0.000065158000000,0.000084516000000,0.000026837000000,0.000053306000000,0.000067134000000,0.000202640000000,0.000075034000000,0.000234244000000 +0.000022505000000,0.000243726000000,0.000065553000000,0.000013818000000,0.000027640500000,0.000065553000000,0.000083726000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000238195000000,0.000075035000000,0.000159973000000 +0.000022505000000,0.000204615000000,0.000105455000000,0.000013423000000,0.000026653000000,0.000065948000000,0.000082541000000,0.000026838000000,0.000052911000000,0.000053701000000,0.000208961000000,0.000075035000000,0.000164319000000 +0.000022110000000,0.000204615000000,0.000065554000000,0.000013818333333,0.000026653000000,0.000067133000000,0.000081751000000,0.000026837000000,0.000054097000000,0.000054097000000,0.000204615000000,0.000075825000000,0.000163134000000 +0.000024085000000,0.000257948000000,0.000063578000000,0.000014740000000,0.000026653000000,0.000066738000000,0.000082146000000,0.000026837000000,0.000054096000000,0.000054886000000,0.000242541000000,0.000075429000000,0.000196713000000 +0.000022109500000,0.000207380000000,0.000063973000000,0.000014213333333,0.000026653000000,0.000068714000000,0.000120466000000,0.000026442000000,0.000085307000000,0.000054492000000,0.000213306000000,0.000077405000000,0.000161553000000 +0.000022702500000,0.000204615000000,0.000063973000000,0.000013818333333,0.000026456000000,0.000125602000000,0.000082541000000,0.000026442000000,0.000052912000000,0.000065948000000,0.000205405000000,0.000075430000000,0.000161158000000 +0.000022110000000,0.000204615000000,0.000065948000000,0.000013554666667,0.000043246000000,0.000080961000000,0.000082541000000,0.000057652000000,0.000054492000000,0.000054887000000,0.000208960000000,0.000112565000000,0.000163133000000 +0.000022505000000,0.000270590000000,0.000064368000000,0.000013949666667,0.000026456000000,0.000070294000000,0.000082936000000,0.000026837000000,0.000053306000000,0.000054887000000,0.000304566000000,0.000077010000000,0.000251232000000 +0.000022505000000,0.000223183000000,0.000065948000000,0.000015135000000,0.000026653000000,0.000065948000000,0.000084516000000,0.000026837000000,0.000052121000000,0.000054887000000,0.000205010000000,0.000077010000000,0.000316812000000 +0.000022702500000,0.000214096000000,0.000063578000000,0.000013949666667,0.000026653000000,0.000065948000000,0.000082146000000,0.000027628000000,0.000054491000000,0.000051726000000,0.000206985000000,0.000077405000000,0.000173010000000 +0.000022505000000,0.000260713000000,0.000063973000000,0.000013423000000,0.000027048500000,0.000066343000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054096000000,0.000246886000000,0.000075430000000,0.000194343000000 +0.000022505000000,0.000214096000000,0.000065949000000,0.000013950000000,0.000026653000000,0.000068318000000,0.000131134000000,0.000027232000000,0.000054886000000,0.000054886000000,0.000208170000000,0.000075825000000,0.000162738000000 +0.000022307500000,0.000205800000000,0.000063578000000,0.000013423000000,0.000026653000000,0.000069108000000,0.000118491000000,0.000026837000000,0.000051726000000,0.000054097000000,0.000211726000000,0.000077010000000,0.000163924000000 +0.000021912000000,0.000204615000000,0.000063578000000,0.000013818333333,0.000028036000000,0.000065948000000,0.000087677000000,0.000026837000000,0.000120862000000,0.000068713000000,0.000209750000000,0.000078986000000,0.000167874000000 +0.000022505000000,0.000329849000000,0.000063973000000,0.000025143333333,0.000026850500000,0.000066343000000,0.000281257000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000223182000000,0.000077010000000,0.000162738000000 +0.000024480000000,0.000216467000000,0.000063183000000,0.000013818000000,0.000044826000000,0.000065948000000,0.000130344000000,0.000026443000000,0.000053307000000,0.000051726000000,0.000209750000000,0.000075824000000,0.000159972000000 +0.000022505000000,0.000218047000000,0.000065948000000,0.000013423000000,0.000026653500000,0.000067529000000,0.000084912000000,0.000027627000000,0.000052911000000,0.000052911000000,0.000206985000000,0.000075429000000,0.000163134000000 +0.000022505000000,0.000220022000000,0.000065949000000,0.000014608333333,0.000026653000000,0.000067924000000,0.000098343000000,0.000026442000000,0.000052912000000,0.000052516000000,0.000242936000000,0.000077010000000,0.000173010000000 +0.000022110000000,0.000212121000000,0.000063973000000,0.000013423000000,0.000026653000000,0.000065949000000,0.000084121000000,0.000026442000000,0.000052516000000,0.000054887000000,0.000206985000000,0.000077405000000,0.000161158000000 +0.000024283000000,0.000205800000000,0.000065949000000,0.000014739666667,0.000026653000000,0.000065158000000,0.000083726000000,0.000026442000000,0.000053306000000,0.000055282000000,0.000208960000000,0.000075825000000,0.000231084000000 +0.000022505000000,0.000296664000000,0.000065948000000,0.000013554666667,0.000026455500000,0.000067134000000,0.000082936000000,0.000026442000000,0.000055282000000,0.000054491000000,0.000205405000000,0.000077405000000,0.000160763000000 +0.000022702500000,0.000208566000000,0.000063577000000,0.000013818000000,0.000026851000000,0.000068319000000,0.000084516000000,0.000026837000000,0.000072269000000,0.000109010000000,0.000240961000000,0.000075429000000,0.000160368000000 +0.000022900000000,0.000210936000000,0.000065948000000,0.000013950000000,0.000026456000000,0.000067924000000,0.000154047000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000210936000000,0.000075429000000,0.000163134000000 +0.000022110000000,0.000268615000000,0.000063973000000,0.000013949666667,0.000026850500000,0.000064764000000,0.000096763000000,0.000026837000000,0.000053701000000,0.000053307000000,0.000203825000000,0.000075430000000,0.000195133000000 +0.000022110000000,0.000257158000000,0.000085701000000,0.000013818000000,0.000044233500000,0.000065553000000,0.000084912000000,0.000026442000000,0.000056467000000,0.000054887000000,0.000251232000000,0.000077010000000,0.000161553000000 +0.000022505000000,0.000210936000000,0.000065948000000,0.000013423000000,0.000078603500000,0.000066738000000,0.000084911000000,0.000026442000000,0.000054491000000,0.000054097000000,0.000212121000000,0.000075430000000,0.000160368000000 +0.000023887500000,0.000212121000000,0.000063577000000,0.000013423000000,0.000085122000000,0.000065158000000,0.000084517000000,0.000026442000000,0.000055282000000,0.000054491000000,0.000207380000000,0.000077405000000,0.000162738000000 +0.000022702500000,0.000204614000000,0.000063973000000,0.000013950000000,0.000079591500000,0.000065553000000,0.000082541000000,0.000026443000000,0.000052516000000,0.000052121000000,0.000213702000000,0.000075825000000,0.000184862000000 +0.000022110000000,0.000208960000000,0.000063578000000,0.000014740000000,0.000076036000000,0.000069109000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000054491000000,0.000245306000000,0.000075429000000,0.000163133000000 +0.000023097500000,0.000204614000000,0.000063973000000,0.000013423000000,0.000058060500000,0.000065158000000,0.000082936000000,0.000028023000000,0.000052911000000,0.000148121000000,0.000210540000000,0.000075429000000,0.000163133000000 +0.000021912500000,0.000208565000000,0.000063578000000,0.000013423000000,0.000028826000000,0.000067528000000,0.000082541000000,0.000026442000000,0.000071874000000,0.000154047000000,0.000205405000000,0.000075430000000,0.000164319000000 +0.000022505000000,0.000208960000000,0.000063578000000,0.000013423000000,0.000029221000000,0.000065158000000,0.000084121000000,0.000027627000000,0.000052516000000,0.000089257000000,0.000243331000000,0.000077405000000,0.000163133000000 +0.000022505000000,0.000204615000000,0.000097158000000,0.000013949666667,0.000029023500000,0.000067133000000,0.000082146000000,0.000027232000000,0.000052911000000,0.000058047000000,0.000209356000000,0.000075429000000,0.000225948000000 +0.000022110000000,0.000206985000000,0.000063973000000,0.000013423333333,0.000029221000000,0.000067134000000,0.000083331000000,0.000026442000000,0.000051726000000,0.000051726000000,0.000210146000000,0.000075430000000,0.000162739000000 +0.000022110000000,0.000224763000000,0.000065948000000,0.000013949666667,0.000030208500000,0.000068319000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000088072000000,0.000214492000000,0.000077405000000,0.000161949000000 +0.000022505000000,0.000214096000000,0.000065948000000,0.000045423000000,0.000029023500000,0.000066738000000,0.000082541000000,0.000026442000000,0.000051331000000,0.000054887000000,0.000257158000000,0.000117306000000,0.000166294000000 +0.000022702500000,0.000205009000000,0.000065948000000,0.000037653333333,0.000029023500000,0.000065158000000,0.000084516000000,0.000027232000000,0.000051726000000,0.000054886000000,0.000209355000000,0.000077010000000,0.000179726000000 +0.000022110000000,0.000205405000000,0.000063973000000,0.000040945666667,0.000029221000000,0.000066343000000,0.000084516000000,0.000027233000000,0.000052911000000,0.000053701000000,0.000205405000000,0.000075035000000,0.000161553000000 +0.000023295000000,0.000278491000000,0.000063973000000,0.000031069333333,0.000029023500000,0.000067528000000,0.000086096000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000238195000000,0.000077010000000,0.000159578000000 +0.000022505000000,0.000228319000000,0.000063972000000,0.000026592000000,0.000029023500000,0.000067529000000,0.000084911000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000212911000000,0.000075825000000,0.000165503000000 +0.000022702500000,0.000206590000000,0.000117701000000,0.000129571000000,0.000029023500000,0.000065158000000,0.000082146000000,0.000026837000000,0.000052121000000,0.000054886000000,0.000222393000000,0.000075429000000,0.000195924000000 +0.000022110000000,0.000204615000000,0.000065553000000,0.000014739666667,0.000036134500000,0.000066738000000,0.000084911000000,0.000026442000000,0.000052516000000,0.000051727000000,0.000206195000000,0.000076615000000,0.000162738000000 +0.000022505000000,0.000206590000000,0.000065553000000,0.000036205000000,0.000028233500000,0.000066343000000,0.000083331000000,0.000040269000000,0.000052912000000,0.000054097000000,0.000237010000000,0.000146541000000,0.000163528000000 +0.000022702500000,0.000204615000000,0.000063578000000,0.000014213333333,0.000028233000000,0.000065158000000,0.000082541000000,0.000026838000000,0.000051726000000,0.000054887000000,0.000205800000000,0.000150492000000,0.000163529000000 +0.000029418500000,0.000205405000000,0.000063578000000,0.000027513666667,0.000028431000000,0.000066343000000,0.000082145000000,0.000026442000000,0.000051331000000,0.000053701000000,0.000260318000000,0.000090837000000,0.000202639000000 +0.000022505000000,0.000206590000000,0.000063578000000,0.000014740000000,0.000029418500000,0.000067923000000,0.000083726000000,0.000026837000000,0.000053306000000,0.000053306000000,0.000352763000000,0.000075430000000,0.000161158000000 +0.000022505000000,0.000204615000000,0.000067923000000,0.000025933333333,0.000028628500000,0.000067133000000,0.000082541000000,0.000026837000000,0.000051726000000,0.000051726000000,0.000225553000000,0.000075034000000,0.000161948000000 +0.000022900000000,0.000205010000000,0.000080960000000,0.000014344666667,0.000028431000000,0.000065553000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000051331000000,0.000205405000000,0.000075430000000,0.000163528000000 +0.000022307000000,0.000216861000000,0.000063578000000,0.000014608333333,0.000028431000000,0.000064368000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000052516000000,0.000244516000000,0.000076220000000,0.000165899000000 +0.000022702500000,0.000206985000000,0.000068319000000,0.000019612333333,0.000048974000000,0.000065553000000,0.000082541000000,0.000027232000000,0.000052121000000,0.000052516000000,0.000206195000000,0.000075430000000,0.000176565000000 +0.000022110000000,0.000208566000000,0.000063973000000,0.000014740000000,0.000028233500000,0.000067528000000,0.000129158000000,0.000026442000000,0.000054096000000,0.000054886000000,0.000205010000000,0.000075034000000,0.000161158000000 +0.000022110000000,0.000210541000000,0.000063973000000,0.000047003333333,0.000028233500000,0.000065948000000,0.000082146000000,0.000027627000000,0.000052911000000,0.000075824000000,0.000210146000000,0.000075035000000,0.000162739000000 +0.000021912500000,0.000205405000000,0.000063578000000,0.000039629000000,0.000028233500000,0.000066343000000,0.000083726000000,0.000026837000000,0.000052516000000,0.000054491000000,0.000294689000000,0.000074640000000,0.000160763000000 +0.000022110000000,0.000207380000000,0.000065948000000,0.000036863333333,0.000028826000000,0.000103874000000,0.000084516000000,0.000027233000000,0.000053307000000,0.000057652000000,0.000210936000000,0.000075429000000,0.000197109000000 +0.000056875000000,0.000204615000000,0.000063578000000,0.000019349000000,0.000029023500000,0.000065553000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000212911000000,0.000075430000000,0.000163923000000 +0.000023295000000,0.000208960000000,0.000099529000000,0.000019875666667,0.000026653000000,0.000065553000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000052911000000,0.000255182000000,0.000075825000000,0.000161553000000 +0.000022505000000,0.000204614000000,0.000065948000000,0.000013949666667,0.000026455500000,0.000065948000000,0.000082541000000,0.000026837000000,0.000052911000000,0.000054887000000,0.000204615000000,0.000077800000000,0.000167084000000 +0.000022110000000,0.000210145000000,0.000063577000000,0.000020007666667,0.000026456000000,0.000065948000000,0.000097553000000,0.000027628000000,0.000086491000000,0.000054096000000,0.000205010000000,0.000075035000000,0.000245702000000 +0.000022505000000,0.000210936000000,0.000063973000000,0.000017900333333,0.000034159500000,0.000067529000000,0.000084911000000,0.000026442000000,0.000052516000000,0.000054097000000,0.000205010000000,0.000078590000000,0.000160368000000 +0.000024085000000,0.000242936000000,0.000065948000000,0.000013423000000,0.000026850500000,0.000065158000000,0.000082936000000,0.000026838000000,0.000051726000000,0.000051726000000,0.000208961000000,0.000075430000000,0.000161949000000 +0.000022505000000,0.000205800000000,0.000063973000000,0.000013818333333,0.000026455500000,0.000065158000000,0.000082541000000,0.000026442000000,0.000053307000000,0.000087677000000,0.000206985000000,0.000077010000000,0.000163528000000 +0.000022307500000,0.000206195000000,0.000063577000000,0.000013818000000,0.000026455500000,0.000065948000000,0.000084911000000,0.000026837000000,0.000054492000000,0.000054887000000,0.000206985000000,0.000077010000000,0.000225553000000 +0.000022505000000,0.000210541000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000066343000000,0.000084122000000,0.000026837000000,0.000052122000000,0.000052911000000,0.000241355000000,0.000075824000000,0.000178145000000 +0.000022702500000,0.000207381000000,0.000097158000000,0.000014345000000,0.000026850500000,0.000065949000000,0.000084516000000,0.000026443000000,0.000052911000000,0.000052911000000,0.000214096000000,0.000075035000000,0.000168664000000 +0.000029813500000,0.000211331000000,0.000063973000000,0.000014871333333,0.000027838000000,0.000066344000000,0.000246097000000,0.000026442000000,0.000054492000000,0.000054887000000,0.000206590000000,0.000075824000000,0.000162738000000 +0.000040085500000,0.000208961000000,0.000063577000000,0.000013555000000,0.000026455500000,0.000067529000000,0.000102689000000,0.000026442000000,0.000056467000000,0.000051726000000,0.000204615000000,0.000075430000000,0.000197109000000 +0.000029221500000,0.000205405000000,0.000063578000000,0.000013818000000,0.000036924500000,0.000065158000000,0.000097158000000,0.000028023000000,0.000087676000000,0.000053702000000,0.000208565000000,0.000076615000000,0.000161948000000 +0.000023295000000,0.000209355000000,0.000063578000000,0.000020139000000,0.000027641000000,0.000068713000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000205010000000,0.000075430000000,0.000165898000000 +0.000022110000000,0.000210936000000,0.000065553000000,0.000013950000000,0.000037912500000,0.000065158000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000208565000000,0.000075034000000,0.000165503000000 +0.000022109500000,0.000208566000000,0.000063183000000,0.000013423000000,0.000026850500000,0.000066739000000,0.000082540000000,0.000026837000000,0.000054886000000,0.000053306000000,0.000247281000000,0.000075430000000,0.000202640000000 +0.000022110000000,0.000206195000000,0.000065554000000,0.000013950000000,0.000026653000000,0.000068318000000,0.000082541000000,0.000026837000000,0.000054492000000,0.000054886000000,0.000207775000000,0.000076614000000,0.000177356000000 +0.000022505000000,0.000204615000000,0.000097159000000,0.000013818333333,0.000026653500000,0.000065949000000,0.000082541000000,0.000026837000000,0.000052122000000,0.000055281000000,0.000207775000000,0.000077010000000,0.000176960000000 +0.000022505000000,0.000212121000000,0.000063578000000,0.000013555000000,0.000027245500000,0.000065949000000,0.000083726000000,0.000027232000000,0.000051726000000,0.000054887000000,0.000224763000000,0.000076219000000,0.000171825000000 +0.000022505000000,0.000209750000000,0.000063973000000,0.000013423000000,0.000027640500000,0.000065948000000,0.000082936000000,0.000026442000000,0.000052912000000,0.000053306000000,0.000366195000000,0.000077010000000,0.000204614000000 +0.000022110000000,0.000204614000000,0.000063577000000,0.000013818000000,0.000026653000000,0.000066344000000,0.000082541000000,0.000026837000000,0.000052912000000,0.000054097000000,0.000211726000000,0.000077010000000,0.000205010000000 +0.000022110000000,0.000206985000000,0.000063578000000,0.000013818333333,0.000061418500000,0.000067134000000,0.000088071000000,0.000026837000000,0.000085306000000,0.000054886000000,0.000244911000000,0.000076615000000,0.000163529000000 +0.000022505000000,0.000205800000000,0.000063578000000,0.000015003333333,0.000026653000000,0.000065553000000,0.000082936000000,0.000026442000000,0.000051726000000,0.000053701000000,0.000220417000000,0.000077010000000,0.000163528000000 +0.000023492500000,0.000212516000000,0.000065949000000,0.000013818000000,0.000027641000000,0.000065948000000,0.000133109000000,0.000026837000000,0.000051727000000,0.000073059000000,0.000205404000000,0.000077010000000,0.000195924000000 +0.000023295500000,0.000212911000000,0.000063973000000,0.000035151666667,0.000026653500000,0.000066343000000,0.000084516000000,0.000057257000000,0.000054096000000,0.000052121000000,0.000226343000000,0.000076615000000,0.000161948000000 +0.000022110000000,0.000205010000000,0.000093208000000,0.000013554666667,0.000027048000000,0.000069109000000,0.000082936000000,0.000026837000000,0.000052911000000,0.000051726000000,0.000210936000000,0.000075825000000,0.000162738000000 +0.000022505000000,0.000206985000000,0.000065553000000,0.000013950000000,0.000026850500000,0.000066343000000,0.000084121000000,0.000026837000000,0.000051726000000,0.000052911000000,0.000205010000000,0.000077800000000,0.000161948000000 +0.000022702500000,0.000212516000000,0.000063578000000,0.000013423000000,0.000026455500000,0.000066739000000,0.000082541000000,0.000026837000000,0.000052517000000,0.000052912000000,0.000210936000000,0.000075825000000,0.000240170000000 +0.000022505000000,0.000205010000000,0.000063973000000,0.000013818000000,0.000026850500000,0.000066343000000,0.000084516000000,0.000027232000000,0.000051726000000,0.000054887000000,0.000243331000000,0.000076615000000,0.000233850000000 +0.000022109500000,0.000210936000000,0.000067924000000,0.000013949666667,0.000037319500000,0.000067134000000,0.000083726000000,0.000027628000000,0.000051726000000,0.000056467000000,0.000213306000000,0.000077010000000,0.000162738000000 +0.000022702500000,0.000207776000000,0.000065553000000,0.000013949666667,0.000026653500000,0.000066344000000,0.000097158000000,0.000026442000000,0.000132319000000,0.000055282000000,0.000206195000000,0.000075430000000,0.000163528000000 +0.000022505000000,0.000210936000000,0.000065949000000,0.000013818000000,0.000026456000000,0.000067134000000,0.000084516000000,0.000026837000000,0.000069899000000,0.000057652000000,0.000205010000000,0.000077010000000,0.000160763000000 +0.000022702500000,0.000230688000000,0.000065948000000,0.000013818333333,0.000026653000000,0.000066343000000,0.000083331000000,0.000026837000000,0.000064368000000,0.000055282000000,0.000205405000000,0.000077010000000,0.000162739000000 +0.000022702500000,0.000240961000000,0.000063578000000,0.000013554666667,0.000026653000000,0.000067133000000,0.000083331000000,0.000026837000000,0.000054096000000,0.000053306000000,0.000210935000000,0.000077010000000,0.000170244000000 +0.000021912500000,0.000206985000000,0.000065553000000,0.000025275000000,0.000026653000000,0.000068319000000,0.000084911000000,0.000026442000000,0.000052121000000,0.000054887000000,0.000208566000000,0.000077405000000,0.000163133000000 +0.000023295000000,0.000204615000000,0.000063973000000,0.000013818000000,0.000027048000000,0.000068713000000,0.000084122000000,0.000045010000000,0.000052121000000,0.000054096000000,0.000254393000000,0.000075825000000,0.000174985000000 +0.000023295000000,0.000206195000000,0.000063973000000,0.000013949666667,0.000027048500000,0.000066344000000,0.000104269000000,0.000026838000000,0.000053307000000,0.000054096000000,0.000210541000000,0.000076615000000,0.000160763000000 +0.000023097500000,0.000205405000000,0.000065948000000,0.000013554666667,0.000026653500000,0.000066738000000,0.000082541000000,0.000026442000000,0.000053702000000,0.000051331000000,0.000205010000000,0.000075824000000,0.000162738000000 +0.000022505000000,0.000204614000000,0.000063578000000,0.000013950000000,0.000036530000000,0.000066343000000,0.000082936000000,0.000028022000000,0.000066738000000,0.000054491000000,0.000238591000000,0.000075825000000,0.000159973000000 +0.000023097500000,0.000210540000000,0.000065553000000,0.000013423000000,0.000026455500000,0.000069899000000,0.000082541000000,0.000026442000000,0.000054492000000,0.000054887000000,0.000220812000000,0.000075430000000,0.000213701000000 +0.000022505000000,0.000209355000000,0.000099923000000,0.000013950000000,0.000026653000000,0.000068319000000,0.000082146000000,0.000027232000000,0.000052911000000,0.000072665000000,0.000203430000000,0.000075035000000,0.000161948000000 +0.000022703000000,0.000322343000000,0.000065949000000,0.000013423000000,0.000026851000000,0.000067528000000,0.000083726000000,0.000026442000000,0.000052911000000,0.000052516000000,0.000208961000000,0.000075824000000,0.000166689000000 +0.000022505000000,0.000210935000000,0.000065948000000,0.000013949666667,0.000026653000000,0.000068319000000,0.000082541000000,0.000026442000000,0.000052911000000,0.000054887000000,0.000240170000000,0.000077405000000,0.000164318000000 +0.000023097500000,0.000212911000000,0.000063578000000,0.000013950000000,0.000026653500000,0.000068319000000,0.000152072000000,0.000026837000000,0.000051726000000,0.000053306000000,0.000206591000000,0.000077010000000,0.000238590000000 +0.000022702500000,0.000222393000000,0.000066344000000,0.000030279333333,0.000026455500000,0.000068319000000,0.000099133000000,0.000026442000000,0.000052911000000,0.000054096000000,0.000205010000000,0.000076615000000,0.000163134000000 +0.000023097500000,0.000204615000000,0.000063973000000,0.000038443666667,0.000026653000000,0.000066344000000,0.000082935000000,0.000026442000000,0.000052911000000,0.000054886000000,0.000228714000000,0.000077009000000,0.000165899000000 +0.000022110000000,0.000208961000000,0.000063973000000,0.000041340666667,0.000026653000000,0.000065158000000,0.000142590000000,0.000027233000000,0.000054492000000,0.000054491000000,0.000211330000000,0.000075430000000,0.000159578000000 +0.000024085000000,0.000207776000000,0.000063973000000,0.000014345000000,0.000036332500000,0.000069898000000,0.000102689000000,0.000026442000000,0.000073059000000,0.000053307000000,0.000221208000000,0.000075430000000,0.000246886000000 +0.000022505000000,0.000209751000000,0.000110195000000,0.000014740000000,0.000026653000000,0.000067924000000,0.000085306000000,0.000039874000000,0.000052911000000,0.000054886000000,0.000204615000000,0.000077010000000,0.000159973000000 +0.000022307500000,0.000206590000000,0.000063183000000,0.000014476666667,0.000026653000000,0.000068319000000,0.000161553000000,0.000026837000000,0.000054492000000,0.000101504000000,0.000258739000000,0.000076615000000,0.000161553000000 +0.000029813500000,0.000204615000000,0.000065948000000,0.000025143333333,0.000027048500000,0.000065159000000,0.000082541000000,0.000026442000000,0.000051726000000,0.000054887000000,0.000209751000000,0.000075430000000,0.000163134000000 +0.000022110000000,0.000215281000000,0.000063973000000,0.000013950000000,0.000027640500000,0.000067924000000,0.000084911000000,0.000026442000000,0.000054097000000,0.000052121000000,0.000202640000000,0.000076615000000,0.000253603000000 +0.000022505000000,0.000210935000000,0.000063973000000,0.000013818000000,0.000026850500000,0.000065158000000,0.000083726000000,0.000026442000000,0.000053702000000,0.000054097000000,0.000228318000000,0.000075035000000,0.000163528000000 +0.000023492500000,0.000212516000000,0.000063972000000,0.000014345000000,0.000026653000000,0.000065948000000,0.000080961000000,0.000026837000000,0.000052911000000,0.000054886000000,0.000204615000000,0.000077010000000,0.000159973000000 +0.000022702500000,0.000209355000000,0.000063973000000,0.000013950000000,0.000026456000000,0.000065553000000,0.000082936000000,0.000026442000000,0.000052911000000,0.000057257000000,0.000208566000000,0.000075430000000,0.000165109000000 +0.000022110000000,0.000213701000000,0.000065949000000,0.000014871333333,0.000026455500000,0.000066343000000,0.000084122000000,0.000026443000000,0.000055677000000,0.000053306000000,0.000210936000000,0.000093603000000,0.000238985000000 +0.000022505000000,0.000206195000000,0.000079776000000,0.000013949666667,0.000044826000000,0.000066738000000,0.000152072000000,0.000027232000000,0.000086887000000,0.000051726000000,0.000243726000000,0.000075035000000,0.000162739000000 diff --git a/docs/source/media/bench/lua bench tests lua-intf.csv b/docs/source/media/bench/lua bench tests lua-intf.csv new file mode 100644 index 00000000..73a2e318 --- /dev/null +++ b/docs/source/media/bench/lua bench tests lua-intf.csv @@ -0,0 +1,2001 @@ +"lua intf - global get","lua intf - c function","lua intf - many userdata variables access last registered","lua intf - many userdata variables access","lua intf - global set","lua intf - table chained get","lua intf - table get","lua intf - table set","lua intf - lua function","lua intf - table chained set","lua intf - c function through lua","lua intf - member function calls","lua intf - member function calls (simple)","lua intf - userdata variable access","lua intf - userdata variable access (simple)","lua intf - many userdata variable access (simple)","lua intf - many userdata variables access last registered (simple)","lua intf - multi return","lua intf - stateful c function","lua intf - return userdata","lua intf - get optional" +0.000019739500000,0.000046590000000,0.000595330000000,0.031554714000000,0.000017764000000,0.000097158000000,0.000022900000000,0.000020727000000,0.000049355000000,0.000233059000000,0.000050541000000,0.000332615000000,0.000336565000000,0.000600466000000,0.000550294000000,0.031401824000000,0.000594935000000,0.000057257000000,0.000048961000000,0.000145355000000,0.000054887000000 +0.000019739500000,0.000031973000000,0.000556614000000,0.031361924000000,0.000026653000000,0.000095973000000,0.000022307500000,0.000020332000000,0.000050146000000,0.000233059000000,0.000069899000000,0.000330639000000,0.000334985000000,0.000584269000000,0.000545553000000,0.032078565000000,0.000558590000000,0.000056467000000,0.000048960000000,0.000133108000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000557404000000,0.031272639000000,0.000017566500000,0.000095973000000,0.000022702500000,0.000020529500000,0.000069504000000,0.000232269000000,0.000063973000000,0.000364615000000,0.000335380000000,0.000548714000000,0.000579528000000,0.033488144000000,0.000609158000000,0.000056467000000,0.000048171000000,0.000135479000000,0.000055282000000 +0.000019542000000,0.000031973000000,0.000591380000000,0.032715404000000,0.000017567000000,0.000095578000000,0.000023690000000,0.000037912500000,0.000048961000000,0.000299825000000,0.000049751000000,0.000330245000000,0.000376861000000,0.000642738000000,0.000546343000000,0.032071059000000,0.001033059000000,0.000056072000000,0.000048961000000,0.000132714000000,0.000054097000000 +0.000019344500000,0.000031973000000,0.000600071000000,0.031673627000000,0.000017567000000,0.000095183000000,0.000023492500000,0.000027245500000,0.000049356000000,0.000230294000000,0.000052516000000,0.000364615000000,0.000336170000000,0.000635627000000,0.000545948000000,0.033296935000000,0.000558195000000,0.000056467000000,0.000068714000000,0.000132318000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000628911000000,0.031120936000000,0.000017369000000,0.000095578000000,0.000039690000000,0.000021319500000,0.000050541000000,0.000226738000000,0.000049751000000,0.000330244000000,0.000369751000000,0.000547923000000,0.000580318000000,0.032293874000000,0.000626145000000,0.000056467000000,0.000062788000000,0.000130344000000,0.000055281000000 +0.000019542000000,0.000031578000000,0.000558589000000,0.031222467000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020332500000,0.000048960000000,0.000227528000000,0.000050541000000,0.000330244000000,0.000334590000000,0.000592565000000,0.000545158000000,0.031150171000000,0.000591775000000,0.000056072000000,0.000048566000000,0.000241751000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031544047000000,0.000017369500000,0.000166294000000,0.000022505000000,0.000020332000000,0.000049355000000,0.000225158000000,0.000050540000000,0.000398194000000,0.000355133000000,0.000631676000000,0.000545158000000,0.031344146000000,0.000591380000000,0.000056467000000,0.000049356000000,0.000146541000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000591775000000,0.030898912000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000020727000000,0.000049355000000,0.000231083000000,0.000050146000000,0.000330640000000,0.000334590000000,0.000547133000000,0.000632466000000,0.031733677000000,0.000557404000000,0.000056466000000,0.000048565000000,0.000130344000000,0.000090837000000 +0.000019542500000,0.000031578000000,0.000591380000000,0.034351353000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000020925000000,0.000049356000000,0.000229108000000,0.000050146000000,0.000331034000000,0.000334985000000,0.000585059000000,0.000545552000000,0.031292788000000,0.000556219000000,0.000056467000000,0.000048961000000,0.000130738000000,0.000054096000000 +0.000019542500000,0.000084911000000,0.000593355000000,0.032178516000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020924500000,0.000048961000000,0.000230294000000,0.000050541000000,0.000330244000000,0.000369355000000,0.000583479000000,0.000545158000000,0.032174960000000,0.000591775000000,0.000056467000000,0.000048171000000,0.000130739000000,0.000055281000000 +0.000019344500000,0.000031973000000,0.000557009000000,0.033607058000000,0.000017369000000,0.000095973000000,0.000022702500000,0.000020529500000,0.000083726000000,0.000229899000000,0.000049751000000,0.000380022000000,0.000334985000000,0.000547133000000,0.000581504000000,0.031543652000000,0.000591775000000,0.000056467000000,0.000049356000000,0.000130739000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000570837000000,0.031764491000000,0.000026850500000,0.000095183000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000227923000000,0.000049356000000,0.000330244000000,0.000381997000000,0.000583874000000,0.000544763000000,0.031492294000000,0.000557405000000,0.000056466000000,0.000048565000000,0.000143775000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031363109000000,0.000017567000000,0.000129158000000,0.000022505000000,0.000031196500000,0.000049356000000,0.000248071000000,0.000049751000000,0.000363430000000,0.000334590000000,0.000582689000000,0.000621010000000,0.031495455000000,0.000557405000000,0.000056466000000,0.000049750000000,0.000131133000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.031121331000000,0.000018159000000,0.000096368000000,0.000023492500000,0.000020332000000,0.000049355000000,0.000272170000000,0.000050146000000,0.000330244000000,0.000368565000000,0.000547133000000,0.000631677000000,0.031217331000000,0.000603232000000,0.000107429000000,0.000082146000000,0.000131134000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000556614000000,0.031664936000000,0.000017567000000,0.000095578000000,0.000030406500000,0.000021517000000,0.000049751000000,0.000227134000000,0.000050146000000,0.000330244000000,0.000334985000000,0.000616268000000,0.000630096000000,0.031538121000000,0.000626145000000,0.000056467000000,0.000048171000000,0.000131529000000,0.000055676000000 +0.000020529500000,0.000032368000000,0.000557404000000,0.031961627000000,0.000017567000000,0.000096763000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000227923000000,0.000050936000000,0.000364220000000,0.000334985000000,0.000584664000000,0.000545948000000,0.031894466000000,0.000593750000000,0.000059627000000,0.000048566000000,0.000146540000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031650714000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000020924500000,0.000049751000000,0.000227133000000,0.000050936000000,0.000346047000000,0.000629306000000,0.000547528000000,0.000615479000000,0.031868392000000,0.000558985000000,0.000056467000000,0.000048566000000,0.000131133000000,0.000073850000000 +0.000019542000000,0.000032368000000,0.000716220000000,0.032130713000000,0.000017369000000,0.000095183000000,0.000022505000000,0.000020529500000,0.000049355000000,0.000224762000000,0.000050935000000,0.000406886000000,0.000419134000000,0.000584269000000,0.000615478000000,0.031875109000000,0.000557800000000,0.000056861000000,0.000048961000000,0.000201454000000,0.000054887000000 +0.000019344500000,0.000031183000000,0.000609948000000,0.031121726000000,0.000017369000000,0.000095577000000,0.000022900000000,0.000020727000000,0.000050541000000,0.000228318000000,0.000050936000000,0.000329850000000,0.000335776000000,0.000594935000000,0.000545158000000,0.031478862000000,0.000621799000000,0.000056466000000,0.000048566000000,0.000131924000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031074714000000,0.000017369000000,0.000110591000000,0.000023492500000,0.000020529500000,0.000048961000000,0.000353948000000,0.000051331000000,0.000363825000000,0.000336171000000,0.000547923000000,0.000579529000000,0.031672836000000,0.000606392000000,0.000056466000000,0.000048170000000,0.000131529000000,0.000055281000000 +0.000019542000000,0.000033553000000,0.000621009000000,0.031945430000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000241751000000,0.000051331000000,0.000329850000000,0.000349207000000,0.000583479000000,0.000613899000000,0.031310565000000,0.000635627000000,0.000057257000000,0.000049751000000,0.000201059000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000609157000000,0.031812293000000,0.000017369500000,0.000095182000000,0.000023295000000,0.000021517000000,0.000049356000000,0.000225553000000,0.000052516000000,0.000329849000000,0.000334590000000,0.000658146000000,0.000544367000000,0.032218812000000,0.000557404000000,0.000056467000000,0.000048171000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000632861000000,0.032339700000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000050146000000,0.000232269000000,0.000050541000000,0.000364219000000,0.000403725000000,0.000596120000000,0.000579528000000,0.031996392000000,0.000557405000000,0.000085701000000,0.000048961000000,0.000130738000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.031759751000000,0.000018554500000,0.000095183000000,0.000023690000000,0.000057665500000,0.000048960000000,0.000225948000000,0.000051726000000,0.000329849000000,0.000335380000000,0.000561750000000,0.000615873000000,0.032118467000000,0.000590985000000,0.000056862000000,0.000082146000000,0.000185257000000,0.000054886000000 +0.000019542000000,0.000031182000000,0.000556614000000,0.031598565000000,0.000017369500000,0.000095577000000,0.000029813500000,0.000028826000000,0.000050541000000,0.000226739000000,0.000050541000000,0.000365009000000,0.000368960000000,0.000631281000000,0.000544763000000,0.031493479000000,0.000591775000000,0.000056862000000,0.000048171000000,0.000130343000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.032154022000000,0.000017567000000,0.000115331000000,0.000022505000000,0.000027443500000,0.000048961000000,0.000227923000000,0.000050936000000,0.000330244000000,0.000334590000000,0.000548318000000,0.000579133000000,0.031780294000000,0.000557405000000,0.000056467000000,0.000048961000000,0.000129949000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031713134000000,0.000017369500000,0.000095182000000,0.000022505000000,0.000020529500000,0.000048961000000,0.000333800000000,0.000051331000000,0.000349603000000,0.000334590000000,0.000612318000000,0.000630886000000,0.033466021000000,0.000557405000000,0.000056467000000,0.000048171000000,0.000136664000000,0.000088862000000 +0.000019542000000,0.000031973000000,0.000943775000000,0.031983355000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000020529500000,0.000049355000000,0.000229109000000,0.000070294000000,0.000330245000000,0.000381602000000,0.000647874000000,0.000545157000000,0.032438466000000,0.000718195000000,0.000056467000000,0.000048961000000,0.000130343000000,0.000055281000000 +0.000019542000000,0.000031973000000,0.000591380000000,0.032153232000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000021319500000,0.000052121000000,0.000230689000000,0.000064763000000,0.000329454000000,0.000334985000000,0.000567676000000,0.000559380000000,0.031340985000000,0.000591380000000,0.000056467000000,0.000048171000000,0.000130343000000,0.000088072000000 +0.000019542000000,0.000031578000000,0.000609158000000,0.031862862000000,0.000017369000000,0.000095183000000,0.000022505000000,0.000021517500000,0.000082936000000,0.000226738000000,0.000084517000000,0.000398985000000,0.000368961000000,0.000547923000000,0.000621799000000,0.032212096000000,0.000591775000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000069108000000 +0.000019542000000,0.000031577000000,0.000577157000000,0.032021281000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000020530000000,0.000048961000000,0.000226739000000,0.000053306000000,0.000330639000000,0.000334985000000,0.000598491000000,0.000545158000000,0.031128837000000,0.000592170000000,0.000056467000000,0.000048565000000,0.000144961000000,0.000056072000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032047356000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021517500000,0.000052911000000,0.000226738000000,0.000049356000000,0.000364220000000,0.000368960000000,0.000617454000000,0.000557800000000,0.032308096000000,0.000557404000000,0.000072269000000,0.000048170000000,0.000131133000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000627331000000,0.032259898000000,0.000017566500000,0.000129158000000,0.000023295000000,0.000038505000000,0.000054886000000,0.000263479000000,0.000049751000000,0.000330244000000,0.000336171000000,0.000547923000000,0.000612713000000,0.033718860000000,0.000607973000000,0.000056071000000,0.000049356000000,0.000131133000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.034087848000000,0.000027443000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000049751000000,0.000225553000000,0.000050146000000,0.000330640000000,0.000334590000000,0.000615083000000,0.000597306000000,0.034011205000000,0.000591380000000,0.000056071000000,0.000103479000000,0.000163924000000,0.000054887000000 +0.000019542000000,0.000031183000000,0.000603626000000,0.032945724000000,0.000017566500000,0.000096368000000,0.000039690500000,0.000021715000000,0.000049750000000,0.000225553000000,0.000050541000000,0.000343676000000,0.000412813000000,0.000617849000000,0.000545158000000,0.032091602000000,0.000626540000000,0.000056467000000,0.000048171000000,0.000130344000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000556615000000,0.031807158000000,0.000017567000000,0.000095973000000,0.000022307500000,0.000022110000000,0.000049751000000,0.000304960000000,0.000052516000000,0.000330244000000,0.000335380000000,0.000546738000000,0.000893997000000,0.031920145000000,0.000557009000000,0.000056071000000,0.000048566000000,0.000130343000000,0.000088467000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031418022000000,0.000017369500000,0.000097553000000,0.000022702500000,0.000020727000000,0.000049355000000,0.000233060000000,0.000051331000000,0.000363430000000,0.000402935000000,0.000962342000000,0.001414688000000,0.031100788000000,0.000557800000000,0.000056466000000,0.000048961000000,0.000185652000000,0.000054887000000 +0.000019344500000,0.000031577000000,0.000646688000000,0.032331799000000,0.000017567000000,0.000095183000000,0.000023492500000,0.000021319500000,0.000048961000000,0.000229503000000,0.000050540000000,0.000329850000000,0.000334986000000,0.000594935000000,0.000730442000000,0.031420393000000,0.000588615000000,0.000056071000000,0.000048170000000,0.000131133000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031797676000000,0.000017369500000,0.000095578000000,0.000022505000000,0.000020332000000,0.000049355000000,0.000227133000000,0.000050936000000,0.000363429000000,0.000412812000000,0.000617059000000,0.000871873000000,0.032075404000000,0.000592565000000,0.000056071000000,0.000048960000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590195000000,0.034935254000000,0.000017369500000,0.000095578000000,0.000039690000000,0.000020332000000,0.000062788000000,0.000241355000000,0.000097553000000,0.000331429000000,0.000335380000000,0.000547923000000,0.000631676000000,0.031359554000000,0.000598491000000,0.000056072000000,0.000049355000000,0.000129553000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.032351947000000,0.000017369500000,0.000095578000000,0.000022109500000,0.000021714500000,0.000049356000000,0.000225553000000,0.000050936000000,0.000330244000000,0.000334590000000,0.000583479000000,0.000574392000000,0.031369824000000,0.000557800000000,0.000056466000000,0.000049355000000,0.000130344000000,0.000054491000000 +0.000019344500000,0.000065553000000,0.000559380000000,0.031642417000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000021319500000,0.000049356000000,0.000225948000000,0.000050541000000,0.000364615000000,0.000334985000000,0.000618639000000,0.000711874000000,0.031918960000000,0.000557799000000,0.000056466000000,0.000048961000000,0.000136664000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000627330000000,0.030633430000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020529500000,0.000049355000000,0.000285207000000,0.000050936000000,0.000329849000000,0.000334985000000,0.000545948000000,0.000615084000000,0.031707997000000,0.000814985000000,0.000056861000000,0.000048171000000,0.000130344000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.030774862000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000027641000000,0.000049356000000,0.000225949000000,0.000050936000000,0.000378442000000,0.000368961000000,0.000583874000000,0.000578738000000,0.031825331000000,0.000591379000000,0.000056071000000,0.000061998000000,0.000143775000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.030879949000000,0.000017369500000,0.000095182000000,0.000055295000000,0.000021122000000,0.000048960000000,0.000226738000000,0.000049355000000,0.000330244000000,0.000334985000000,0.000584269000000,0.000613899000000,0.031802812000000,0.000641948000000,0.000056467000000,0.000048566000000,0.000131528000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000556614000000,0.030921825000000,0.000051344500000,0.000129158000000,0.000024480000000,0.000020727000000,0.000050146000000,0.000246886000000,0.000050936000000,0.000349603000000,0.000369355000000,0.000547528000000,0.000640368000000,0.032010220000000,0.000592566000000,0.000056467000000,0.000048171000000,0.000129949000000,0.000068714000000 +0.000019344500000,0.000031577000000,0.000626145000000,0.031029677000000,0.000052332000000,0.000095578000000,0.000023097500000,0.000021517000000,0.000049355000000,0.000227528000000,0.000050145000000,0.000331035000000,0.000334590000000,0.000597306000000,0.000666837000000,0.031501775000000,0.000557010000000,0.000056467000000,0.000048170000000,0.000130344000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000899923000000,0.030719949000000,0.000018554000000,0.000095578000000,0.000023690000000,0.000020332000000,0.000049751000000,0.000228714000000,0.000050935000000,0.000384763000000,0.000334985000000,0.000594541000000,0.000578343000000,0.032126367000000,0.000570837000000,0.000059232000000,0.000048565000000,0.000136269000000,0.000054096000000 +0.000061221500000,0.000031578000000,0.000590984000000,0.030745232000000,0.000024480500000,0.000095973000000,0.000023295000000,0.000020529500000,0.000049355000000,0.000226343000000,0.000050936000000,0.000363824000000,0.000376072000000,0.000546738000000,0.000651825000000,0.031451602000000,0.000590985000000,0.000055676000000,0.000048566000000,0.000130738000000,0.000053702000000 +0.000037122500000,0.000031578000000,0.000591775000000,0.031592640000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021517000000,0.000048961000000,0.000262294000000,0.000064763000000,0.000330640000000,0.000334985000000,0.000590985000000,0.000771133000000,0.031054961000000,0.000626935000000,0.000125998000000,0.000050146000000,0.000262294000000,0.000055281000000 +0.000020727000000,0.000031578000000,0.000556614000000,0.030558764000000,0.000017566500000,0.000095578000000,0.000023690000000,0.000021517500000,0.000049750000000,0.000226343000000,0.000050936000000,0.000364220000000,0.000368565000000,0.000633256000000,0.000613504000000,0.031635306000000,0.000592565000000,0.000056467000000,0.000049356000000,0.000166293000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000558195000000,0.030670171000000,0.000017369000000,0.000095577000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000226344000000,0.000050541000000,0.000330640000000,0.000334985000000,0.000546738000000,0.000579133000000,0.031384837000000,0.000623775000000,0.000056467000000,0.000049356000000,0.000163923000000,0.000054491000000 +0.000019542000000,0.000051726000000,0.000590590000000,0.030858221000000,0.000017566500000,0.000186442000000,0.000043443500000,0.000021517500000,0.000049355000000,0.000261898000000,0.000050541000000,0.000330244000000,0.000368565000000,0.000583873000000,0.000626146000000,0.031640047000000,0.000558589000000,0.000056862000000,0.000048961000000,0.000129948000000,0.000056072000000 +0.000019344500000,0.000097948000000,0.000629305000000,0.030584442000000,0.000017369000000,0.000095577000000,0.000022307500000,0.000037715000000,0.000048961000000,0.000225158000000,0.000052516000000,0.000386343000000,0.000334985000000,0.000583479000000,0.000612713000000,0.031554319000000,0.000590590000000,0.000056467000000,0.000098344000000,0.000132713000000,0.000054887000000 +0.000019542000000,0.000101504000000,0.000590590000000,0.030778418000000,0.000025863000000,0.000095973000000,0.000022702500000,0.000020530000000,0.000048960000000,0.000225948000000,0.000050146000000,0.000330640000000,0.000336171000000,0.000547528000000,0.000577948000000,0.031422763000000,0.000639578000000,0.000059232000000,0.000048960000000,0.000130738000000,0.000054886000000 +0.000036332500000,0.000033158000000,0.000556614000000,0.030331208000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000049356000000,0.000226343000000,0.000050541000000,0.000344467000000,0.000368170000000,0.000593750000000,0.000591775000000,0.031899207000000,0.000591775000000,0.000056862000000,0.000048565000000,0.000130343000000,0.000106245000000 +0.000019542000000,0.000046195000000,0.000557009000000,0.030440640000000,0.000017369500000,0.000095973000000,0.000022702500000,0.000020727500000,0.000049355000000,0.000262689000000,0.000051331000000,0.000331035000000,0.000334985000000,0.000583873000000,0.000687775000000,0.031557479000000,0.000556615000000,0.000056467000000,0.000048565000000,0.000149702000000,0.000057652000000 +0.000019937000000,0.000031578000000,0.000676713000000,0.030375851000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000225553000000,0.000051331000000,0.000414392000000,0.000384368000000,0.000547133000000,0.000612318000000,0.031566565000000,0.000584269000000,0.000056072000000,0.000048961000000,0.000130343000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000694491000000,0.030689529000000,0.000018159500000,0.000129948000000,0.000023690000000,0.000020530000000,0.000069504000000,0.000227133000000,0.000050540000000,0.000331034000000,0.000334986000000,0.000585059000000,0.000578343000000,0.032510368000000,0.000598886000000,0.000090442000000,0.000048566000000,0.000130738000000,0.000054491000000 +0.000019542000000,0.000045010000000,0.000634442000000,0.030135258000000,0.000017566500000,0.000095183000000,0.000023690000000,0.000020727500000,0.000049356000000,0.000323528000000,0.000063973000000,0.000363824000000,0.000368170000000,0.000583479000000,0.000610737000000,0.032462564000000,0.000959182000000,0.000056467000000,0.000048566000000,0.000130738000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000560171000000,0.030027406000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000021122500000,0.000049355000000,0.000463775000000,0.000049751000000,0.000330639000000,0.000336960000000,0.000548713000000,0.000611528000000,0.031661380000000,0.000591775000000,0.000056467000000,0.000051331000000,0.000129948000000,0.000054886000000 +0.000020530000000,0.000031973000000,0.000557404000000,0.030655159000000,0.000017369000000,0.000095183000000,0.000022307500000,0.000021517500000,0.000048961000000,0.000227528000000,0.000050541000000,0.000329849000000,0.000335380000000,0.000604021000000,0.000578343000000,0.031152936000000,0.000635232000000,0.000056467000000,0.000048565000000,0.000130343000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.030311456000000,0.000017566500000,0.000095973000000,0.000032381500000,0.000021517500000,0.000049750000000,0.000246887000000,0.000052911000000,0.000420714000000,0.000481157000000,0.000583084000000,0.000611528000000,0.031755800000000,0.000590984000000,0.000056467000000,0.000048565000000,0.000130343000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000590590000000,0.030044393000000,0.000017566500000,0.000095182000000,0.000023295000000,0.000021319500000,0.000048961000000,0.000229109000000,0.000049355000000,0.000331034000000,0.000334590000000,0.000562936000000,0.000645899000000,0.031370219000000,0.000557405000000,0.000056072000000,0.000048170000000,0.000131134000000,0.000088072000000 +0.000019542000000,0.000031578000000,0.000626935000000,0.030026616000000,0.000017566500000,0.000095973000000,0.000022900000000,0.000027640500000,0.000048961000000,0.000226738000000,0.000050145000000,0.000365404000000,0.000404516000000,0.000562936000000,0.000578343000000,0.034681229000000,0.000591775000000,0.000056466000000,0.000048960000000,0.000164318000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032343256000000,0.000017566500000,0.000131528000000,0.000022900000000,0.000020332000000,0.000049355000000,0.000229899000000,0.000050936000000,0.000330639000000,0.000334985000000,0.000990787000000,0.000579133000000,0.033318268000000,0.000591380000000,0.000056466000000,0.000049750000000,0.000129553000000,0.000054096000000 +0.000047393500000,0.000031578000000,0.000557405000000,0.030960541000000,0.000024678000000,0.000097158000000,0.000023295000000,0.000020727000000,0.000049751000000,0.000229504000000,0.000050145000000,0.000437306000000,0.000417158000000,0.000650244000000,0.000624565000000,0.031976639000000,0.000607577000000,0.000056072000000,0.000048170000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.030923800000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000021714500000,0.000050540000000,0.000226343000000,0.000052516000000,0.000566491000000,0.000334590000000,0.000596911000000,0.000648268000000,0.031542861000000,0.000607577000000,0.000056467000000,0.000048566000000,0.000129553000000,0.000055281000000 +0.000019344500000,0.000031578000000,0.000590195000000,0.030453677000000,0.000017567000000,0.000095578000000,0.000023295500000,0.000020529500000,0.000090442000000,0.000234244000000,0.000050936000000,0.000364220000000,0.000376071000000,0.000546738000000,0.000860022000000,0.031348886000000,0.000557009000000,0.000069899000000,0.000049356000000,0.000130343000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.030302369000000,0.000017369500000,0.000095973000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000229504000000,0.000084516000000,0.000330640000000,0.000334985000000,0.000629306000000,0.000592170000000,0.031572096000000,0.000605207000000,0.000056467000000,0.000048961000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000045800000000,0.000606787000000,0.030341480000000,0.000017567000000,0.000097158000000,0.000022702500000,0.000021912000000,0.000049355000000,0.000228714000000,0.000050541000000,0.000376862000000,0.000334590000000,0.000591775000000,0.000638787000000,0.032191948000000,0.000591775000000,0.000056467000000,0.000050146000000,0.000130344000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000591380000000,0.032348787000000,0.000018159500000,0.000144960000000,0.000022900000000,0.000021715000000,0.000049751000000,0.000225948000000,0.000050936000000,0.000330245000000,0.000410837000000,0.000547134000000,0.000640367000000,0.031249331000000,0.000592170000000,0.000056466000000,0.000048566000000,0.000131134000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000716219000000,0.031556689000000,0.000017369000000,0.000095578000000,0.000023493000000,0.000020925000000,0.000050541000000,0.000225553000000,0.000050936000000,0.000329849000000,0.000335380000000,0.000565306000000,0.000578738000000,0.031743553000000,0.000557009000000,0.000056467000000,0.000048565000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000624960000000,0.033218317000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000020530000000,0.000049751000000,0.000228318000000,0.000050541000000,0.000363825000000,0.000419923000000,0.000636022000000,0.000578343000000,0.031717084000000,0.000571232000000,0.000056467000000,0.000061602000000,0.000128763000000,0.000068318000000 +0.000019542000000,0.000031578000000,0.000611923000000,0.031544442000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000054307500000,0.000048960000000,0.000227923000000,0.000050541000000,0.000329849000000,0.000334985000000,0.000547133000000,0.000614294000000,0.031788195000000,0.000662096000000,0.000056467000000,0.000048565000000,0.000147330000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031720639000000,0.000017369500000,0.000095973000000,0.000022307500000,0.000020924500000,0.000049356000000,0.000229109000000,0.000050936000000,0.000364614000000,0.000419924000000,0.000548714000000,0.000659331000000,0.032050516000000,0.000590590000000,0.000088862000000,0.000048566000000,0.000127578000000,0.000055282000000 +0.000019344500000,0.000031973000000,0.000572417000000,0.031301875000000,0.000017962000000,0.000095183000000,0.000022900500000,0.000020529500000,0.000049355000000,0.000227529000000,0.000050935000000,0.000330244000000,0.000335776000000,0.000583084000000,0.000578343000000,0.032400145000000,0.000557404000000,0.000118097000000,0.000050146000000,0.000127578000000,0.000054491000000 +0.000026455500000,0.000031578000000,0.000659330000000,0.031674022000000,0.000024282500000,0.000129158000000,0.000023097500000,0.000022110000000,0.000049751000000,0.000225158000000,0.000050936000000,0.000399775000000,0.000368565000000,0.000547133000000,0.000648664000000,0.030970417000000,0.000584664000000,0.000056467000000,0.000048566000000,0.000164319000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000634047000000,0.031298318000000,0.000017369000000,0.000095973000000,0.000023097500000,0.000021320000000,0.000118887000000,0.000225948000000,0.000050936000000,0.000333010000000,0.000385553000000,0.000597701000000,0.000706343000000,0.031175850000000,0.000557800000000,0.000056072000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000019739500000,0.000031578000000,0.000625356000000,0.031491108000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021715000000,0.000054097000000,0.000227528000000,0.000092023000000,0.000330245000000,0.000335381000000,0.000583874000000,0.000681059000000,0.031211010000000,0.000627331000000,0.000059232000000,0.000048566000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031377331000000,0.000017961500000,0.000095578000000,0.000022307500000,0.000020924500000,0.000050541000000,0.000229899000000,0.000050146000000,0.000363825000000,0.000402146000000,0.000601652000000,0.000600072000000,0.032002318000000,0.000591775000000,0.000056072000000,0.000048565000000,0.000129553000000,0.000055281000000 +0.000019542000000,0.000033553000000,0.000557800000000,0.031393134000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000021319500000,0.000049356000000,0.000229109000000,0.000049356000000,0.000329849000000,0.000334985000000,0.000643528000000,0.000614689000000,0.030934467000000,0.000557010000000,0.000057257000000,0.000048565000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031557479000000,0.000017566500000,0.000096763000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000229108000000,0.000050146000000,0.000363825000000,0.000420319000000,0.000690541000000,0.000612318000000,0.031292788000000,0.000575972000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000087281000000 +0.000019542000000,0.000031973000000,0.000641947000000,0.032374465000000,0.000017566500000,0.000095973000000,0.000029023500000,0.000020332000000,0.000048960000000,0.000225553000000,0.000049750000000,0.000329850000000,0.000334195000000,0.000629701000000,0.000577947000000,0.031491504000000,0.000557010000000,0.000056466000000,0.000081751000000,0.000129949000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000651824000000,0.031348096000000,0.000017369000000,0.000129158000000,0.000023097500000,0.000030801000000,0.000048961000000,0.000229899000000,0.000050936000000,0.000329454000000,0.000410441000000,0.000547528000000,0.000632862000000,0.031080640000000,0.000646293000000,0.000056861000000,0.000048171000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000636417000000,0.031557084000000,0.000017567000000,0.000095182000000,0.000023098000000,0.000063789000000,0.000048960000000,0.000227923000000,0.000052121000000,0.000329849000000,0.000357108000000,0.000630491000000,0.000700417000000,0.031046664000000,0.000592170000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000027443500000,0.000031183000000,0.000677503000000,0.031764096000000,0.000017764500000,0.000095183000000,0.000023295000000,0.000062011500000,0.000082936000000,0.000270986000000,0.000050145000000,0.000330245000000,0.000529355000000,0.000626145000000,0.000671182000000,0.031529034000000,0.000591380000000,0.000071874000000,0.000048960000000,0.000127577000000,0.000054492000000 +0.000027443500000,0.000031183000000,0.000557009000000,0.031393923000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000029023500000,0.000049355000000,0.000229109000000,0.000050541000000,0.000364615000000,0.000477207000000,0.000547528000000,0.000578343000000,0.030873232000000,0.000558985000000,0.000055677000000,0.000048170000000,0.000179726000000,0.000054491000000 +0.000020727000000,0.000031578000000,0.000569257000000,0.031915404000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020332000000,0.000083331000000,0.000225948000000,0.000050936000000,0.000340516000000,0.000356319000000,0.000584664000000,0.000577948000000,0.031371010000000,0.000557405000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054887000000 +0.000020727000000,0.000031578000000,0.000591775000000,0.031489133000000,0.000025468000000,0.000095578000000,0.000023098000000,0.000020727000000,0.000064763000000,0.000230294000000,0.000120467000000,0.000398985000000,0.000355924000000,0.000630886000000,0.000614294000000,0.031888541000000,0.000607577000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000055281000000 +0.000020727500000,0.000031578000000,0.000590985000000,0.031480837000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000037319500000,0.000049356000000,0.000226343000000,0.000050541000000,0.000329850000000,0.000357109000000,0.000547528000000,0.000611924000000,0.030990566000000,0.000590195000000,0.000056467000000,0.000048566000000,0.000149701000000,0.000054492000000 +0.000020529500000,0.000031578000000,0.000557009000000,0.031831651000000,0.000017369500000,0.000095578000000,0.000023492500000,0.000020332000000,0.000048960000000,0.000226738000000,0.000050541000000,0.000330244000000,0.000355923000000,0.000576763000000,0.000578343000000,0.031593429000000,0.000591379000000,0.000056466000000,0.000048565000000,0.000130738000000,0.000054491000000 +0.000020727500000,0.000031578000000,0.000557404000000,0.031865627000000,0.000017567000000,0.000095973000000,0.000023097500000,0.000021320000000,0.000048961000000,0.000225553000000,0.000049751000000,0.000379627000000,0.000360665000000,0.000623380000000,0.000611528000000,0.031524689000000,0.000556219000000,0.000056071000000,0.000049356000000,0.000127578000000,0.000054886000000 +0.000034554500000,0.000031183000000,0.000590985000000,0.032353923000000,0.000017567000000,0.000095183000000,0.000040085000000,0.000020530000000,0.000048961000000,0.000276516000000,0.000050936000000,0.000329849000000,0.000355923000000,0.000547133000000,0.000611923000000,0.031681924000000,0.000591775000000,0.000056072000000,0.000082936000000,0.000127182000000,0.000054492000000 +0.000019344500000,0.000031973000000,0.000590590000000,0.031216541000000,0.000018159500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000048960000000,0.000226739000000,0.000052516000000,0.000364219000000,0.000355923000000,0.000560960000000,0.000591380000000,0.030967652000000,0.000626541000000,0.000056467000000,0.000048170000000,0.000126787000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000600861000000,0.031329923000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000020529500000,0.000067924000000,0.000228318000000,0.000050146000000,0.000330244000000,0.000349208000000,0.000616664000000,0.000614294000000,0.033173280000000,0.000599281000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000055282000000 +0.000019344500000,0.000031182000000,0.000556614000000,0.032192738000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000022110000000,0.000062392000000,0.000230689000000,0.000050541000000,0.000370936000000,0.000335380000000,0.000566491000000,0.000613503000000,0.031750269000000,0.000556220000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054886000000 +0.000026456000000,0.000031973000000,0.000572022000000,0.032237380000000,0.000017567000000,0.000129553000000,0.000022505000000,0.000020727500000,0.000048961000000,0.000225948000000,0.000050146000000,0.000329849000000,0.000369750000000,0.000547133000000,0.000578343000000,0.032718564000000,0.000557405000000,0.000056467000000,0.000048566000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031517182000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000020530000000,0.000049750000000,0.000227924000000,0.000050936000000,0.000330244000000,0.000334985000000,0.000623775000000,0.000691725000000,0.031736442000000,0.000663281000000,0.000056072000000,0.000048566000000,0.000128763000000,0.000055676000000 +0.000019542000000,0.000031973000000,0.000606787000000,0.032103849000000,0.000027443500000,0.000097554000000,0.000022702500000,0.000020530000000,0.000052516000000,0.000226343000000,0.000103480000000,0.000364220000000,0.000370936000000,0.000589010000000,0.000613108000000,0.031058912000000,0.000591380000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000557009000000,0.031312146000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000020530000000,0.000048960000000,0.000230294000000,0.000086097000000,0.000330245000000,0.000334985000000,0.000560565000000,0.000612713000000,0.030893776000000,0.000637207000000,0.000056466000000,0.000048565000000,0.000212121000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031630961000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000029418500000,0.000054887000000,0.000225553000000,0.000122838000000,0.000364615000000,0.000334590000000,0.000626540000000,0.000578738000000,0.031348096000000,0.000557800000000,0.000056072000000,0.000049355000000,0.000135084000000,0.000074639000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.032738712000000,0.000017566500000,0.000095183000000,0.000022307500000,0.000035147000000,0.000049356000000,0.000228713000000,0.000052911000000,0.000330640000000,0.000368960000000,0.000632071000000,0.000613109000000,0.031247751000000,0.000557405000000,0.000056467000000,0.000049355000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000642738000000,0.032567256000000,0.000017369000000,0.000095578000000,0.000039492500000,0.000029023500000,0.000050936000000,0.000225158000000,0.000109405000000,0.000330244000000,0.000334590000000,0.000547133000000,0.000625355000000,0.031446862000000,0.000590985000000,0.000056467000000,0.000082936000000,0.000161948000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000592565000000,0.030714418000000,0.000017567000000,0.000145355000000,0.000022505000000,0.000021714500000,0.000049356000000,0.000229504000000,0.000086492000000,0.000330244000000,0.000381207000000,0.000837503000000,0.000652614000000,0.031363109000000,0.000590194000000,0.000133109000000,0.000048170000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000031973000000,0.000557009000000,0.030595109000000,0.000017567000000,0.000096368000000,0.000022702500000,0.000020332000000,0.000049751000000,0.000223578000000,0.000099923000000,0.000330639000000,0.000334590000000,0.000580714000000,0.000837898000000,0.031169924000000,0.000590590000000,0.000155627000000,0.000049751000000,0.000130344000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000557010000000,0.030262468000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000020529500000,0.000049355000000,0.000230293000000,0.000105060000000,0.000377652000000,0.000368960000000,0.000583479000000,0.000579528000000,0.031083010000000,0.000558195000000,0.000123232000000,0.000048565000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.030233628000000,0.000017567000000,0.000095972000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000229109000000,0.000141010000000,0.000330640000000,0.000334985000000,0.000580713000000,0.000626541000000,0.031190071000000,0.000715430000000,0.000060022000000,0.000048171000000,0.000127183000000,0.000055282000000 +0.000044628500000,0.000031183000000,0.000626146000000,0.031165974000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000226343000000,0.000101898000000,0.000364220000000,0.000385553000000,0.000580713000000,0.000611528000000,0.030904837000000,0.000592565000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000054491000000 +0.000019542500000,0.000031183000000,0.000596121000000,0.030548887000000,0.000017369500000,0.000095183000000,0.000022900000000,0.000020529500000,0.000049355000000,0.000261504000000,0.000089257000000,0.000383183000000,0.000378441000000,0.000581899000000,0.000577553000000,0.033138515000000,0.000624960000000,0.000075824000000,0.000049751000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.001074145000000,0.030365183000000,0.000017567000000,0.000114936000000,0.000022505000000,0.000021517000000,0.000051331000000,0.000225553000000,0.000052516000000,0.000330639000000,0.000334985000000,0.000580318000000,0.000622590000000,0.032105824000000,0.000593750000000,0.000056071000000,0.000048961000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000645503000000,0.030386122000000,0.000042060500000,0.000095973000000,0.000023097500000,0.000037912500000,0.000048960000000,0.000226738000000,0.000053701000000,0.000344467000000,0.000368961000000,0.000581108000000,0.000612318000000,0.032451898000000,0.000558590000000,0.000059232000000,0.000048961000000,0.000127183000000,0.000089652000000 +0.000019542000000,0.000031183000000,0.000644713000000,0.030462369000000,0.000018159500000,0.000095183000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000227923000000,0.000087281000000,0.000330639000000,0.000334985000000,0.000582294000000,0.000577948000000,0.031892887000000,0.000572417000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000688170000000,0.030618417000000,0.000017369500000,0.000095183000000,0.000032974000000,0.000021517500000,0.000052122000000,0.000228714000000,0.000053701000000,0.000491034000000,0.000368960000000,0.000581109000000,0.000579529000000,0.032538811000000,0.000591775000000,0.000056466000000,0.000090837000000,0.000216072000000,0.000055676000000 +0.000019542000000,0.000033553000000,0.000591380000000,0.030501874000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000021517500000,0.000085702000000,0.000227923000000,0.000150492000000,0.000330245000000,0.000334590000000,0.000588219000000,0.000613503000000,0.032033528000000,0.000653009000000,0.000056071000000,0.000048961000000,0.000127183000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000556220000000,0.030281826000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000228319000000,0.000113356000000,0.000364220000000,0.000334590000000,0.000581109000000,0.000577948000000,0.032209725000000,0.000591380000000,0.000056467000000,0.000048566000000,0.000134689000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000626935000000,0.031011109000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020925000000,0.000054096000000,0.000227923000000,0.000142195000000,0.000330639000000,0.000334985000000,0.000580714000000,0.000578738000000,0.032702367000000,0.000558195000000,0.000056862000000,0.000048961000000,0.000197108000000,0.000055282000000 +0.000019542000000,0.000031183000000,0.000605207000000,0.031074714000000,0.000017369000000,0.000184467000000,0.000023295000000,0.000021715000000,0.000049356000000,0.000228319000000,0.000082146000000,0.000364614000000,0.000335775000000,0.000581898000000,0.000611528000000,0.032943354000000,0.000910590000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000608762000000,0.029941283000000,0.000017566500000,0.000114936000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000225553000000,0.000073454000000,0.000329849000000,0.000368961000000,0.000616664000000,0.000579134000000,0.031882615000000,0.000557009000000,0.000059232000000,0.000048961000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000573602000000,0.030460394000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021517000000,0.000049355000000,0.000229108000000,0.000052121000000,0.000330244000000,0.000335775000000,0.000596516000000,0.000578738000000,0.031964392000000,0.000592170000000,0.000071084000000,0.000048961000000,0.000165899000000,0.000054097000000 +0.000019542000000,0.000031182000000,0.000556615000000,0.030580492000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000021517000000,0.000049751000000,0.000229504000000,0.000050145000000,0.000414392000000,0.000368565000000,0.000547133000000,0.000579529000000,0.033211996000000,0.000589800000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000055281000000 +0.000019344500000,0.000031578000000,0.000557799000000,0.030092987000000,0.000017369000000,0.000095577000000,0.000023295500000,0.000021517500000,0.000049750000000,0.000229503000000,0.000050541000000,0.000329849000000,0.000334590000000,0.000594935000000,0.000578343000000,0.032837478000000,0.000556615000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000054886000000 +0.000019542000000,0.000031577000000,0.000590985000000,0.030748393000000,0.000040875000000,0.000095578000000,0.000022505000000,0.000020332500000,0.000048961000000,0.000227528000000,0.000050541000000,0.000364220000000,0.000334985000000,0.000549503000000,0.000567281000000,0.032059602000000,0.000557800000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000809454000000,0.030482122000000,0.000017369000000,0.000129553000000,0.000022702500000,0.000021912500000,0.000050146000000,0.000225948000000,0.000050540000000,0.000331035000000,0.000368566000000,0.000593355000000,0.000748219000000,0.032341281000000,0.000591775000000,0.000056466000000,0.000069109000000,0.000129948000000,0.000054491000000 +0.000019542000000,0.000031577000000,0.000656170000000,0.030202813000000,0.000017566500000,0.000095578000000,0.000031394000000,0.000020332000000,0.000064763000000,0.000225948000000,0.000050540000000,0.000347627000000,0.000334985000000,0.000583083000000,0.000593750000000,0.032015750000000,0.000591775000000,0.000056466000000,0.000049356000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000640762000000,0.030338714000000,0.000018949500000,0.000095183000000,0.000042850500000,0.000021517000000,0.000049751000000,0.000228713000000,0.000050935000000,0.000329849000000,0.000368170000000,0.000547528000000,0.000545157000000,0.032123207000000,0.000594936000000,0.000056072000000,0.000048566000000,0.000133109000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.030136838000000,0.000017567000000,0.000095578000000,0.000024085000000,0.000021517500000,0.000048961000000,0.000225554000000,0.000053306000000,0.000330244000000,0.000335380000000,0.000583874000000,0.000709109000000,0.036166265000000,0.000557799000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000556615000000,0.030144739000000,0.000017567000000,0.000095973000000,0.000023097500000,0.000021715000000,0.000049355000000,0.000226739000000,0.000049356000000,0.000363825000000,0.000334985000000,0.000583873000000,0.000578738000000,0.031868787000000,0.000557800000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000626936000000,0.030425628000000,0.000017369500000,0.000095577000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000297849000000,0.000050541000000,0.000329849000000,0.000334590000000,0.000546343000000,0.000544762000000,0.031181380000000,0.000590590000000,0.000111775000000,0.000069504000000,0.000126788000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000626145000000,0.032883700000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000021517000000,0.000048961000000,0.000247676000000,0.000052911000000,0.000363824000000,0.000334590000000,0.000583479000000,0.000578738000000,0.031138714000000,0.000652614000000,0.000056466000000,0.000048566000000,0.000164714000000,0.000054886000000 +0.000035344500000,0.000031578000000,0.000626540000000,0.030015949000000,0.000017369500000,0.000126393000000,0.000023493000000,0.000021517500000,0.000049355000000,0.000229899000000,0.000050541000000,0.000329849000000,0.000368565000000,0.000584663000000,0.000613503000000,0.031006368000000,0.000578343000000,0.000056466000000,0.000048961000000,0.000129553000000,0.000081751000000 +0.000026653500000,0.000031578000000,0.000634047000000,0.030410616000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020727500000,0.000049751000000,0.000234244000000,0.000053307000000,0.000331035000000,0.000334590000000,0.000547923000000,0.000545552000000,0.031021381000000,0.000557405000000,0.000056467000000,0.000048566000000,0.000129553000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000589800000000,0.030214270000000,0.000017567000000,0.000095577000000,0.000039295000000,0.000031394000000,0.000050935000000,0.000225553000000,0.000050936000000,0.000370936000000,0.000455084000000,0.000583083000000,0.000587034000000,0.031290418000000,0.000590985000000,0.000056072000000,0.000049356000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.030190961000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000021714500000,0.000049356000000,0.000228319000000,0.000050936000000,0.000330244000000,0.000354738000000,0.000655380000000,0.000595726000000,0.030922220000000,0.000598096000000,0.000056467000000,0.000099528000000,0.000127183000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000625750000000,0.031356393000000,0.000044036000000,0.000095973000000,0.000022900500000,0.000021715000000,0.000048960000000,0.000225948000000,0.000050936000000,0.000433355000000,0.000368566000000,0.000547133000000,0.000545553000000,0.031199158000000,0.000640368000000,0.000056467000000,0.000052911000000,0.000127577000000,0.000055677000000 +0.000019344500000,0.000031578000000,0.000624960000000,0.034206366000000,0.000051147000000,0.000095578000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000289948000000,0.000049355000000,0.000330244000000,0.000334985000000,0.000563726000000,0.000613899000000,0.030905628000000,0.000557010000000,0.000056467000000,0.000061998000000,0.000127578000000,0.000054096000000 +0.000019542500000,0.000076220000000,0.000624565000000,0.030602221000000,0.000031789000000,0.000129159000000,0.000023295000000,0.000021517500000,0.000049750000000,0.000227133000000,0.000050145000000,0.000401751000000,0.000354739000000,0.000590985000000,0.000579528000000,0.030959356000000,0.000557800000000,0.000056071000000,0.000049356000000,0.000128763000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000591380000000,0.032414762000000,0.000017369500000,0.000095578000000,0.000022307500000,0.000020529500000,0.000048961000000,0.000228714000000,0.000065949000000,0.000330245000000,0.000334985000000,0.000546343000000,0.000544367000000,0.030954220000000,0.000591380000000,0.000076615000000,0.000048566000000,0.000127973000000,0.000055281000000 +0.000019344500000,0.000031578000000,0.000591379000000,0.030687554000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000021715000000,0.000050146000000,0.000254392000000,0.000054097000000,0.000329454000000,0.000334590000000,0.000593750000000,0.000578738000000,0.031027702000000,0.000591775000000,0.000056467000000,0.000048565000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000626145000000,0.030237578000000,0.000017567000000,0.000095578000000,0.000022110000000,0.000020332000000,0.000048960000000,0.000229503000000,0.000054096000000,0.000330244000000,0.000440467000000,0.000614688000000,0.000628911000000,0.031113035000000,0.000590985000000,0.000056467000000,0.000048960000000,0.000176960000000,0.000053701000000 +0.000029616000000,0.000031973000000,0.000625751000000,0.030487653000000,0.000017369500000,0.000095972000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000227528000000,0.000105454000000,0.000385158000000,0.000334590000000,0.000547133000000,0.000545948000000,0.030590764000000,0.000557800000000,0.000056072000000,0.000049356000000,0.000127182000000,0.000069899000000 +0.000019344500000,0.000031578000000,0.000965503000000,0.030907208000000,0.000018159500000,0.000095183000000,0.000022900000000,0.000020727000000,0.000048961000000,0.000225553000000,0.000054492000000,0.000363824000000,0.000368960000000,0.000547133000000,0.000577948000000,0.030088641000000,0.000591775000000,0.000056466000000,0.000048961000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031577000000,0.000681454000000,0.030401925000000,0.000017566500000,0.000095578000000,0.000031591500000,0.000021517000000,0.000049356000000,0.000228319000000,0.000054887000000,0.000329849000000,0.000334590000000,0.000632071000000,0.000579923000000,0.030832147000000,0.000696071000000,0.000056862000000,0.000061998000000,0.000128368000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000592960000000,0.030297233000000,0.000017369000000,0.000097158000000,0.000029813500000,0.000055295000000,0.000069109000000,0.000227133000000,0.000054097000000,0.000364220000000,0.000368961000000,0.000546738000000,0.000546342000000,0.030390863000000,0.000590985000000,0.000059233000000,0.000048960000000,0.000159578000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000592170000000,0.030377035000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000226343000000,0.000054097000000,0.000329849000000,0.000334590000000,0.000547528000000,0.000693701000000,0.030226517000000,0.000557800000000,0.000056071000000,0.000049355000000,0.000130343000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.030203208000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000228713000000,0.000053306000000,0.000330640000000,0.000334985000000,0.000583083000000,0.000613899000000,0.030279851000000,0.000556219000000,0.000056862000000,0.000049355000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000590985000000,0.030171208000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000021517500000,0.000050541000000,0.000228714000000,0.000054491000000,0.000344467000000,0.000368960000000,0.000547528000000,0.000545158000000,0.030518072000000,0.000591380000000,0.000056467000000,0.000048960000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000591775000000,0.030238369000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021517500000,0.000048960000000,0.000227528000000,0.000053701000000,0.000330244000000,0.000334590000000,0.000560565000000,0.000546343000000,0.030769332000000,0.000591380000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000591380000000,0.030518862000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000021517000000,0.000049356000000,0.000229109000000,0.000053701000000,0.000379627000000,0.000404121000000,0.000598886000000,0.000620220000000,0.030430369000000,0.000591379000000,0.000056862000000,0.000048566000000,0.000130344000000,0.000055677000000 +0.000019542000000,0.000031973000000,0.000599281000000,0.030488443000000,0.000017567000000,0.000149306000000,0.000022702500000,0.000021319500000,0.000049751000000,0.000280861000000,0.000056861000000,0.000330244000000,0.000335381000000,0.000547528000000,0.000599676000000,0.029725579000000,0.000558195000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000055282000000 +0.000019542000000,0.000031577000000,0.000590194000000,0.029964987000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000021715000000,0.000050145000000,0.000226343000000,0.000053701000000,0.000364615000000,0.000369355000000,0.000564516000000,0.000544763000000,0.030601430000000,0.000557800000000,0.000059232000000,0.000048565000000,0.000127972000000,0.000070294000000 +0.000029418500000,0.000031578000000,0.000590985000000,0.031230368000000,0.000017369500000,0.000116516000000,0.000023492500000,0.000020530000000,0.000048961000000,0.000225158000000,0.000054096000000,0.000329849000000,0.000334590000000,0.000816565000000,0.000630886000000,0.030665035000000,0.000675133000000,0.000056862000000,0.000049355000000,0.000127578000000,0.000055281000000 +0.000026653500000,0.000031973000000,0.000624960000000,0.030503851000000,0.000034554500000,0.000095578000000,0.000039492500000,0.000020529500000,0.000050541000000,0.000229899000000,0.000053701000000,0.000331035000000,0.000334590000000,0.000597305000000,0.000628516000000,0.031826121000000,0.000600466000000,0.000056467000000,0.000063183000000,0.000161553000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000624170000000,0.030450912000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000038110000000,0.000082936000000,0.000225158000000,0.000054491000000,0.000363429000000,0.000385553000000,0.000547923000000,0.000545553000000,0.030610912000000,0.000612714000000,0.000056467000000,0.000048961000000,0.000133899000000,0.000055676000000 +0.000019542000000,0.000031578000000,0.000624960000000,0.030601825000000,0.000017369000000,0.000095973000000,0.000022702500000,0.000021715000000,0.000048961000000,0.000225553000000,0.000053306000000,0.000330244000000,0.000334590000000,0.000598096000000,0.000635627000000,0.030212295000000,0.000557010000000,0.000056467000000,0.000048565000000,0.000134293000000,0.000074245000000 +0.000019344500000,0.000031973000000,0.000557009000000,0.030504245000000,0.000017566500000,0.000163923000000,0.000022110000000,0.000020925000000,0.000049355000000,0.000229108000000,0.000053701000000,0.000364220000000,0.000485503000000,0.000617454000000,0.000628516000000,0.029848838000000,0.000571627000000,0.000056467000000,0.000048565000000,0.000161158000000,0.000070294000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.030347011000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021517500000,0.000052121000000,0.000259528000000,0.000077405000000,0.000330244000000,0.000334590000000,0.000546343000000,0.000544762000000,0.030214270000000,0.000590985000000,0.000145750000000,0.000048171000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.030511752000000,0.000017566500000,0.000095578000000,0.000022110000000,0.000020529500000,0.000049356000000,0.000225948000000,0.000058442000000,0.000329849000000,0.000419924000000,0.000628516000000,0.000626540000000,0.030150666000000,0.000592170000000,0.000056466000000,0.000048566000000,0.000126393000000,0.000054887000000 +0.000019542000000,0.000044615000000,0.000591380000000,0.030229283000000,0.000017369000000,0.000095973000000,0.000023097500000,0.000021517000000,0.000049356000000,0.000225948000000,0.000056466000000,0.000343676000000,0.000334985000000,0.000605997000000,0.000627331000000,0.032242515000000,0.000558195000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000074639000000 +0.000019542500000,0.000031578000000,0.000591775000000,0.030527554000000,0.000017567000000,0.000095577000000,0.000022307500000,0.000020332000000,0.000052516000000,0.000229504000000,0.000054491000000,0.000329454000000,0.000406491000000,0.000547528000000,0.000545553000000,0.033080835000000,0.000557405000000,0.000056467000000,0.000048960000000,0.000127577000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000556219000000,0.030221777000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000020727000000,0.000055281000000,0.000225553000000,0.000053306000000,0.000488269000000,0.000338540000000,0.000624170000000,0.000559775000000,0.030975159000000,0.000590590000000,0.000056467000000,0.000048960000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000570441000000,0.032098713000000,0.000017369500000,0.000129553000000,0.000023097500000,0.000021517000000,0.000049751000000,0.000229109000000,0.000053701000000,0.000329849000000,0.000334590000000,0.000583874000000,0.000596121000000,0.030310270000000,0.000647083000000,0.000056467000000,0.000049356000000,0.000127183000000,0.000054886000000 +0.000026653500000,0.000031973000000,0.000591775000000,0.030695455000000,0.000017567000000,0.000095578000000,0.000031986500000,0.000020332000000,0.000049751000000,0.000228713000000,0.000053701000000,0.000364220000000,0.000349603000000,0.000548713000000,0.000613108000000,0.030508196000000,0.000590985000000,0.000056467000000,0.000048566000000,0.000162343000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.030518863000000,0.000017369500000,0.000096763000000,0.000022307500000,0.000021319500000,0.000063183000000,0.000262689000000,0.000055676000000,0.000330245000000,0.000334195000000,0.000630886000000,0.000544368000000,0.030409430000000,0.000557404000000,0.000056071000000,0.000048170000000,0.000127578000000,0.000056071000000 +0.000019344500000,0.000031578000000,0.000556220000000,0.030657134000000,0.000017566500000,0.000095183000000,0.000023492500000,0.000027838500000,0.000048960000000,0.000230294000000,0.000052911000000,0.000329849000000,0.000419528000000,0.000584269000000,0.000992763000000,0.030815159000000,0.000556615000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.030365579000000,0.000017369000000,0.000095578000000,0.000023295500000,0.000020332000000,0.000049356000000,0.000225553000000,0.000054096000000,0.000344862000000,0.000334590000000,0.000547924000000,0.000630886000000,0.030574961000000,0.000592565000000,0.000070689000000,0.000048171000000,0.000163923000000,0.000055282000000 +0.000020134500000,0.000031183000000,0.000718590000000,0.030570616000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000021517500000,0.000048961000000,0.000233849000000,0.000052516000000,0.000330245000000,0.000420318000000,0.000618244000000,0.000595331000000,0.030273924000000,0.000591775000000,0.000056072000000,0.000048566000000,0.000126787000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000627330000000,0.032705923000000,0.000025467500000,0.000095577000000,0.000023097500000,0.000020727500000,0.000049355000000,0.000229108000000,0.000054097000000,0.000370540000000,0.000335380000000,0.000583479000000,0.000545948000000,0.030086270000000,0.000556614000000,0.000055677000000,0.000048565000000,0.000127182000000,0.000054097000000 +0.000019344500000,0.000051331000000,0.000633651000000,0.031410516000000,0.000017567000000,0.000240961000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000226739000000,0.000053307000000,0.000330640000000,0.000419529000000,0.000546343000000,0.000579528000000,0.030407850000000,0.000639183000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000088071000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.032952440000000,0.000017567000000,0.000161949000000,0.000023295000000,0.000021715000000,0.000049356000000,0.000226344000000,0.000052121000000,0.000399380000000,0.000365800000000,0.000616664000000,0.000698837000000,0.030052690000000,0.000557799000000,0.000056072000000,0.000048170000000,0.000144566000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000557009000000,0.032180096000000,0.000017567000000,0.000096368000000,0.000023098000000,0.000021517500000,0.000049750000000,0.000230293000000,0.000054096000000,0.000330639000000,0.000370540000000,0.000583084000000,0.000544762000000,0.029992246000000,0.000626935000000,0.000056071000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000590985000000,0.031575257000000,0.000017567000000,0.000095578000000,0.000024678000000,0.000020727500000,0.000049356000000,0.000225949000000,0.000053306000000,0.000401751000000,0.000334195000000,0.000547134000000,0.000559380000000,0.030388097000000,0.000616269000000,0.000056467000000,0.000082146000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031623454000000,0.000017567000000,0.000095973000000,0.000039492500000,0.000021715000000,0.000049751000000,0.000225553000000,0.000053306000000,0.000330640000000,0.000334986000000,0.000933898000000,0.000594540000000,0.030853085000000,0.000639972000000,0.000056467000000,0.000061207000000,0.000129948000000,0.000054491000000 +0.000044036000000,0.000031578000000,0.000589800000000,0.031826121000000,0.000017369500000,0.000109800000000,0.000022307500000,0.000021715000000,0.000114541000000,0.000225949000000,0.000054097000000,0.000330244000000,0.000436516000000,0.000546738000000,0.000544763000000,0.031084590000000,0.000557009000000,0.000056467000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000557010000000,0.031786615000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000065553000000,0.000226343000000,0.000054097000000,0.000398985000000,0.000334590000000,0.000632861000000,0.000595725000000,0.031101973000000,0.000556615000000,0.000076615000000,0.000048961000000,0.000127182000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.031700096000000,0.000024282500000,0.000095578000000,0.000023097500000,0.000020529500000,0.000048960000000,0.000226343000000,0.000053307000000,0.000329849000000,0.000422294000000,0.000547133000000,0.000585454000000,0.031262763000000,0.000976565000000,0.000059627000000,0.000048171000000,0.000180516000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000590984000000,0.031644787000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021517000000,0.000048961000000,0.000226344000000,0.000053702000000,0.000364219000000,0.000334986000000,0.000546343000000,0.000545158000000,0.031273035000000,0.000557404000000,0.000056071000000,0.000048565000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031923700000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000020332000000,0.000048566000000,0.000228714000000,0.000053701000000,0.000329849000000,0.000404121000000,0.000632071000000,0.000579529000000,0.031896837000000,0.000590985000000,0.000056862000000,0.000049355000000,0.000127183000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031286862000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020332000000,0.000049751000000,0.000223973000000,0.000053701000000,0.000330245000000,0.000334985000000,0.000585454000000,0.000628516000000,0.031471750000000,0.000590195000000,0.000056467000000,0.000048960000000,0.000148912000000,0.000068713000000 +0.000019542000000,0.000032368000000,0.000557010000000,0.031371800000000,0.000017566500000,0.000199479000000,0.000022900000000,0.000020727500000,0.000048961000000,0.000228713000000,0.000053306000000,0.000590194000000,0.000368961000000,0.000546738000000,0.000544762000000,0.031130813000000,0.000557800000000,0.000056862000000,0.000049355000000,0.000143775000000,0.000055676000000 +0.000019344500000,0.000031973000000,0.000626541000000,0.031424738000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000020332500000,0.000049355000000,0.000225158000000,0.000054097000000,0.000365009000000,0.000334195000000,0.000590590000000,0.000579133000000,0.031398664000000,0.000557010000000,0.000056862000000,0.000049751000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000626936000000,0.031551553000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000021517500000,0.000082936000000,0.000227924000000,0.000055282000000,0.000329849000000,0.000334985000000,0.000566096000000,0.000717009000000,0.031731306000000,0.000591775000000,0.000056467000000,0.000087677000000,0.000165108000000,0.000054886000000 +0.000019542000000,0.000031973000000,0.000590985000000,0.031380887000000,0.000018356500000,0.000095578000000,0.000032974000000,0.000021122500000,0.000048960000000,0.000225553000000,0.000052517000000,0.000330244000000,0.000404121000000,0.000547923000000,0.000564515000000,0.030954615000000,0.000591380000000,0.000059232000000,0.000049356000000,0.000127577000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000556614000000,0.031807948000000,0.000017369000000,0.000095973000000,0.000021714500000,0.000020530000000,0.000049356000000,0.000227923000000,0.000053306000000,0.000330639000000,0.000335380000000,0.000583083000000,0.000544762000000,0.031061676000000,0.000591775000000,0.000057257000000,0.000048171000000,0.000127577000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000607183000000,0.030981875000000,0.000017566500000,0.000095183000000,0.000023492500000,0.000021517500000,0.000049750000000,0.000230294000000,0.000052121000000,0.000329849000000,0.000403726000000,0.000546738000000,0.000578738000000,0.032509182000000,0.000577552000000,0.000087282000000,0.000048960000000,0.000127577000000,0.000054097000000 +0.000019344500000,0.000031973000000,0.000591380000000,0.032222368000000,0.000017566500000,0.000129553000000,0.000022505000000,0.000020727500000,0.000048961000000,0.000225948000000,0.000054491000000,0.000364220000000,0.000334985000000,0.000547133000000,0.000545158000000,0.031408146000000,0.000681849000000,0.000056467000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.032107404000000,0.000019147000000,0.000095578000000,0.000022900000000,0.000028628500000,0.000049355000000,0.000229504000000,0.000053306000000,0.000330244000000,0.000404120000000,0.000616269000000,0.000544368000000,0.031583158000000,0.000571232000000,0.000056071000000,0.000048960000000,0.000164714000000,0.000054097000000 +0.000019542500000,0.000031973000000,0.000612714000000,0.031263158000000,0.000017567000000,0.000095578000000,0.000023295500000,0.000020332500000,0.000048961000000,0.000225553000000,0.000054097000000,0.000399380000000,0.000334590000000,0.000546738000000,0.000579134000000,0.031123306000000,0.000626145000000,0.000056466000000,0.000048566000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031690219000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000227923000000,0.000052121000000,0.000330245000000,0.000334590000000,0.000548713000000,0.000545948000000,0.031162812000000,0.000591775000000,0.000056467000000,0.000048961000000,0.000129158000000,0.000054887000000 +0.000020529500000,0.000031578000000,0.000557009000000,0.032074219000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000049355000000,0.000225553000000,0.000053306000000,0.000329454000000,0.000636022000000,0.000582689000000,0.000558985000000,0.031305430000000,0.000557404000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031787404000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000020332500000,0.000049356000000,0.000226738000000,0.000055676000000,0.000343676000000,0.000381602000000,0.000547133000000,0.000578738000000,0.033897428000000,0.000557800000000,0.000056467000000,0.000048565000000,0.000127973000000,0.000053702000000 +0.000019344500000,0.000031182000000,0.000684615000000,0.031647553000000,0.000017369000000,0.000095183000000,0.000022505000000,0.000020727500000,0.000088071000000,0.000228319000000,0.000052911000000,0.000330244000000,0.000335775000000,0.000546738000000,0.000545158000000,0.033110071000000,0.000594935000000,0.000056467000000,0.000062787000000,0.000199084000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000591380000000,0.032062368000000,0.000017566500000,0.000095183000000,0.000039690000000,0.000020530000000,0.000049356000000,0.000226343000000,0.000053306000000,0.000380417000000,0.000334194000000,0.000583479000000,0.000591775000000,0.031839552000000,0.000591775000000,0.000056072000000,0.000048565000000,0.000126787000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000558195000000,0.032198268000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020529500000,0.000049355000000,0.000228318000000,0.000053307000000,0.000330244000000,0.000368960000000,0.000546738000000,0.000680664000000,0.032275306000000,0.000604021000000,0.000083726000000,0.000048171000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000642343000000,0.031393528000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021517500000,0.000049356000000,0.000238590000000,0.000053702000000,0.000414787000000,0.000334590000000,0.000566886000000,0.000559380000000,0.031123701000000,0.000557010000000,0.000073454000000,0.000048566000000,0.000203825000000,0.000054096000000 +0.000062208500000,0.000032368000000,0.000591380000000,0.031884589000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021320000000,0.000051331000000,0.000227529000000,0.000056072000000,0.000417553000000,0.000368565000000,0.000584269000000,0.000545553000000,0.030915505000000,0.000715035000000,0.000070294000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000061418500000,0.000031578000000,0.000626540000000,0.031092096000000,0.000017566500000,0.000095577000000,0.000023098000000,0.000027640500000,0.000048961000000,0.000227923000000,0.000053702000000,0.000385553000000,0.000334195000000,0.000547134000000,0.000578738000000,0.031210615000000,0.000558195000000,0.000056072000000,0.000049356000000,0.000126788000000,0.000054491000000 +0.000036530000000,0.000031973000000,0.000557800000000,0.031635306000000,0.000027640500000,0.000095973000000,0.000023097500000,0.000020529500000,0.000049751000000,0.000225553000000,0.000054097000000,0.000330245000000,0.000355528000000,0.000603232000000,0.000544368000000,0.031069973000000,0.000591380000000,0.000056071000000,0.000048960000000,0.000161948000000,0.000088467000000 +0.000020529500000,0.000031973000000,0.000557405000000,0.032953231000000,0.000017566500000,0.000142195000000,0.000023097500000,0.000021517500000,0.000049355000000,0.000225948000000,0.000052911000000,0.000329849000000,0.000335380000000,0.000596516000000,0.000545158000000,0.031540492000000,0.000605207000000,0.000056466000000,0.000049355000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000625751000000,0.032407651000000,0.000018159500000,0.000095578000000,0.000022702500000,0.000020925000000,0.000049751000000,0.000353158000000,0.000054096000000,0.000364220000000,0.000366195000000,0.000547133000000,0.000578343000000,0.031341381000000,0.000590985000000,0.000056467000000,0.000048565000000,0.000126787000000,0.000053701000000 +0.000029418500000,0.000031578000000,0.000591380000000,0.033134565000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000020332000000,0.000071479000000,0.000225948000000,0.000053701000000,0.000329850000000,0.000371725000000,0.000563331000000,0.000545948000000,0.031254072000000,0.000557009000000,0.000056467000000,0.000048171000000,0.000126787000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000724120000000,0.032828392000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000020727000000,0.000049750000000,0.000226738000000,0.000053702000000,0.000392664000000,0.000335380000000,0.000674343000000,0.000587824000000,0.030816344000000,0.000620614000000,0.000056467000000,0.000118096000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000033948000000,0.000591379000000,0.031643998000000,0.000017369000000,0.000095578000000,0.000043246000000,0.000021517000000,0.000050146000000,0.000229504000000,0.000053307000000,0.000330640000000,0.000368566000000,0.000547923000000,0.000614293000000,0.031226417000000,0.000608367000000,0.000071875000000,0.000048171000000,0.000130738000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000556614000000,0.031488343000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021912500000,0.000049356000000,0.000255972000000,0.000052121000000,0.000364615000000,0.000334985000000,0.000547528000000,0.000545553000000,0.030763011000000,0.000607972000000,0.000056862000000,0.000048960000000,0.000127182000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000557404000000,0.031591059000000,0.000017961500000,0.000095183000000,0.000022110000000,0.000020530000000,0.000049355000000,0.000229109000000,0.000064368000000,0.000330639000000,0.000355529000000,0.000582688000000,0.000545948000000,0.030526369000000,0.000590589000000,0.000056467000000,0.000049750000000,0.000405306000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000590985000000,0.031622269000000,0.000017566500000,0.000112171000000,0.000022900000000,0.000021517500000,0.000048961000000,0.000279676000000,0.000053306000000,0.000329849000000,0.000335380000000,0.000547133000000,0.000578738000000,0.030275109000000,0.000556614000000,0.000056467000000,0.000048170000000,0.000129553000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000598492000000,0.031542072000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000046208500000,0.000049356000000,0.000225553000000,0.000052911000000,0.000416367000000,0.000334590000000,0.000546343000000,0.000544368000000,0.030154221000000,0.000591775000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031726170000000,0.000017369000000,0.000095973000000,0.000023295000000,0.000020727500000,0.000050936000000,0.000225948000000,0.000054097000000,0.000329849000000,0.000392269000000,0.000583084000000,0.000613504000000,0.030305134000000,0.000591775000000,0.000058442000000,0.000048566000000,0.000127578000000,0.000090047000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031469775000000,0.000018159000000,0.000095578000000,0.000023295000000,0.000021517500000,0.000050936000000,0.000229108000000,0.000053702000000,0.000364220000000,0.000335775000000,0.000547923000000,0.000578343000000,0.030162517000000,0.000598491000000,0.000056072000000,0.000048961000000,0.000129158000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000572417000000,0.031200739000000,0.000024480000000,0.000095182000000,0.000023492500000,0.000021122500000,0.000049356000000,0.000227528000000,0.000052911000000,0.000330245000000,0.000369356000000,0.000546738000000,0.000545553000000,0.029838962000000,0.000557799000000,0.000056862000000,0.000049355000000,0.000161158000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000626146000000,0.031626220000000,0.000017369000000,0.000095578000000,0.000021912000000,0.000021517500000,0.000137455000000,0.000231084000000,0.000054096000000,0.000349602000000,0.000334590000000,0.000583478000000,0.000579133000000,0.030970813000000,0.000556219000000,0.000056466000000,0.000048565000000,0.000127973000000,0.000054097000000 +0.000028826000000,0.000031972000000,0.000590985000000,0.031763701000000,0.000017566500000,0.000129948000000,0.000022702500000,0.000021122500000,0.000049356000000,0.000229504000000,0.000053701000000,0.000330245000000,0.000335380000000,0.000547133000000,0.000814984000000,0.031581183000000,0.000592170000000,0.000138639000000,0.000048960000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000557404000000,0.031344540000000,0.000017566500000,0.000096368000000,0.000040085000000,0.000021715000000,0.000048961000000,0.000262294000000,0.000053701000000,0.000330244000000,0.000349998000000,0.000596516000000,0.000611924000000,0.030340690000000,0.000592171000000,0.000056862000000,0.000048565000000,0.000127578000000,0.000054097000000 +0.000019344500000,0.000061997000000,0.000557405000000,0.031144245000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021714500000,0.000048960000000,0.000226344000000,0.000056072000000,0.000363824000000,0.000334590000000,0.000584664000000,0.000545158000000,0.030315406000000,0.000596121000000,0.000056072000000,0.000048566000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031422763000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021517000000,0.000068319000000,0.000225948000000,0.000054097000000,0.000329454000000,0.000368961000000,0.000547528000000,0.000613898000000,0.030409826000000,0.000558195000000,0.000059627000000,0.000048566000000,0.000126788000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000626540000000,0.030941183000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000227923000000,0.000052911000000,0.000477602000000,0.000336961000000,0.000583479000000,0.000579528000000,0.030159751000000,0.000570837000000,0.000056071000000,0.000048566000000,0.000129949000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000604022000000,0.031710368000000,0.000017566500000,0.000095183000000,0.000023097500000,0.000040875000000,0.000049355000000,0.000230294000000,0.000053701000000,0.000348812000000,0.000421503000000,0.000617849000000,0.000545158000000,0.031817034000000,0.000591775000000,0.000056862000000,0.000049355000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.031166764000000,0.000018159000000,0.000095182000000,0.000023295000000,0.000020530000000,0.000048961000000,0.000224763000000,0.000054096000000,0.000379232000000,0.000334590000000,0.000583874000000,0.000628911000000,0.030089826000000,0.000802737000000,0.000056467000000,0.000048960000000,0.000126393000000,0.000055676000000 +0.000019542000000,0.000031578000000,0.000621010000000,0.031890911000000,0.000017566500000,0.000129158000000,0.000022900000000,0.000021912500000,0.000048961000000,0.000225948000000,0.000053701000000,0.000329849000000,0.000368565000000,0.000547133000000,0.000579528000000,0.030109974000000,0.000642343000000,0.000056467000000,0.000048565000000,0.000129948000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.031614368000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020530000000,0.000049751000000,0.000277306000000,0.000052911000000,0.000330245000000,0.000334590000000,0.000593750000000,0.000544763000000,0.030333578000000,0.000557010000000,0.000056467000000,0.000048961000000,0.000165899000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.031445677000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021122500000,0.000049356000000,0.000225158000000,0.000052516000000,0.000330245000000,0.000336171000000,0.000546738000000,0.000654589000000,0.030129332000000,0.000558195000000,0.000089652000000,0.000049356000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000604022000000,0.030961726000000,0.000017369500000,0.000095182000000,0.000023295000000,0.000020332500000,0.000049355000000,0.000226343000000,0.000053306000000,0.000329454000000,0.000368960000000,0.000578738000000,0.000613504000000,0.029937727000000,0.000573602000000,0.000056467000000,0.000097553000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031258812000000,0.000018159500000,0.000095578000000,0.000033172000000,0.000021912500000,0.000048961000000,0.000226344000000,0.000054886000000,0.000363825000000,0.000334985000000,0.000594146000000,0.000545157000000,0.032977330000000,0.000643528000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031862466000000,0.000017369500000,0.000095578000000,0.000023493000000,0.000020925000000,0.000049356000000,0.000227924000000,0.000054096000000,0.000330640000000,0.000368961000000,0.000547528000000,0.000628911000000,0.032751354000000,0.000646689000000,0.000056467000000,0.000048566000000,0.000130343000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.032304935000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000021715000000,0.000049355000000,0.000225158000000,0.000053701000000,0.000364220000000,0.000334985000000,0.000583479000000,0.000579133000000,0.030346616000000,0.000610738000000,0.000056467000000,0.000048566000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000612713000000,0.030811208000000,0.000017567000000,0.000095973000000,0.000022900000000,0.000021714500000,0.000049356000000,0.000226738000000,0.000053701000000,0.000330244000000,0.000352762000000,0.000590984000000,0.000545948000000,0.030581282000000,0.000556615000000,0.000056467000000,0.000048171000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000046986000000,0.000556614000000,0.030928146000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020727000000,0.000049356000000,0.000307331000000,0.000054096000000,0.000329849000000,0.000335775000000,0.000547923000000,0.000608763000000,0.030257332000000,0.000572022000000,0.000056466000000,0.000048170000000,0.000128763000000,0.000088467000000 +0.000019344500000,0.000033948000000,0.000557405000000,0.030985430000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020925000000,0.000052516000000,0.000462985000000,0.000056071000000,0.000399380000000,0.000334985000000,0.000583478000000,0.000579133000000,0.030241135000000,0.000639973000000,0.000056071000000,0.000048170000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000032368000000,0.000804713000000,0.031717084000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020529500000,0.000067528000000,0.000228318000000,0.000054096000000,0.000330244000000,0.000368565000000,0.000583479000000,0.000546738000000,0.030858220000000,0.000641157000000,0.000056467000000,0.000048961000000,0.000126393000000,0.000055281000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031276590000000,0.000017566500000,0.000097553000000,0.000022307500000,0.000020529500000,0.000068713000000,0.000231874000000,0.000052911000000,0.000363825000000,0.000334590000000,0.000547529000000,0.000576368000000,0.029989085000000,0.000640367000000,0.000075430000000,0.000048961000000,0.000168664000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.034253378000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000021517000000,0.000049356000000,0.000227528000000,0.000054491000000,0.000330640000000,0.000421899000000,0.000583874000000,0.000594146000000,0.030038863000000,0.000555035000000,0.000055676000000,0.000049356000000,0.000129554000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000626145000000,0.032038664000000,0.000017566500000,0.000129553000000,0.000022702500000,0.000021122000000,0.000050541000000,0.000228319000000,0.000052911000000,0.000349998000000,0.000334590000000,0.000689750000000,0.000545158000000,0.030297233000000,0.000555429000000,0.000056467000000,0.000048171000000,0.000126788000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031966763000000,0.000018554500000,0.000095578000000,0.000022703000000,0.000021715000000,0.000049356000000,0.000230294000000,0.000065159000000,0.000349602000000,0.000368960000000,0.000546738000000,0.000559380000000,0.030862961000000,0.000640368000000,0.000056072000000,0.000049356000000,0.000146936000000,0.000053701000000 +0.000020135000000,0.000031577000000,0.000557404000000,0.031216146000000,0.000017567000000,0.000095973000000,0.000023295500000,0.000020727500000,0.000049751000000,0.000229898000000,0.000070294000000,0.000346837000000,0.000339330000000,0.000547528000000,0.000579133000000,0.029855554000000,0.001007379000000,0.000056467000000,0.000049355000000,0.000129553000000,0.000054887000000 +0.000019542000000,0.000052121000000,0.000590985000000,0.031511652000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021122500000,0.000049355000000,0.000225948000000,0.000050541000000,0.000364219000000,0.000334985000000,0.000635232000000,0.000545553000000,0.030183455000000,0.000572022000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000594145000000,0.031564195000000,0.000017566500000,0.000095183000000,0.000022307500000,0.000021517500000,0.000049356000000,0.000229109000000,0.000049750000000,0.000330244000000,0.000482343000000,0.000546738000000,0.000906639000000,0.030583258000000,0.000605602000000,0.000056467000000,0.000048170000000,0.000126788000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000576763000000,0.031497035000000,0.000017369000000,0.000126788000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000225949000000,0.000050936000000,0.000370936000000,0.000334985000000,0.000547133000000,0.000545948000000,0.031032443000000,0.000589009000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000088072000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031076294000000,0.000017566500000,0.000115726000000,0.000022702500000,0.000021517000000,0.000049355000000,0.000225158000000,0.000050936000000,0.000331034000000,0.000368961000000,0.000655775000000,0.000642738000000,0.032800737000000,0.000555430000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000604022000000,0.031230368000000,0.000017369000000,0.000095973000000,0.000022307000000,0.000021517500000,0.000084911000000,0.000226344000000,0.000050146000000,0.000331035000000,0.000334985000000,0.000582689000000,0.000565701000000,0.031447257000000,0.000555824000000,0.000056862000000,0.000048960000000,0.000126788000000,0.000054886000000 +0.000019344500000,0.000031973000000,0.000592565000000,0.031209035000000,0.000017566500000,0.000096763000000,0.000022505000000,0.000021517500000,0.000048960000000,0.000229108000000,0.000049751000000,0.000329849000000,0.000368565000000,0.000547133000000,0.000544762000000,0.030302764000000,0.000589010000000,0.000167874000000,0.000048960000000,0.000140615000000,0.000054096000000 +0.000019344500000,0.000031183000000,0.000650244000000,0.031366664000000,0.000018159500000,0.000095183000000,0.000023097500000,0.000020529500000,0.000048961000000,0.000226343000000,0.000050146000000,0.000329849000000,0.000334195000000,0.000632072000000,0.000579528000000,0.030735356000000,0.000588614000000,0.000142195000000,0.000048960000000,0.000126787000000,0.000053306000000 +0.000019344500000,0.000031182000000,0.000557404000000,0.030773677000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000021715000000,0.000051331000000,0.000226739000000,0.000050541000000,0.000376862000000,0.000335775000000,0.000583479000000,0.000545158000000,0.030548492000000,0.000589405000000,0.000060417000000,0.000140615000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031342566000000,0.000017369500000,0.000095183000000,0.000022900000000,0.000022900000000,0.000052516000000,0.000225553000000,0.000050541000000,0.000330245000000,0.000334985000000,0.000547133000000,0.000545158000000,0.030781974000000,0.000557009000000,0.000056071000000,0.000133504000000,0.000168665000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000634837000000,0.031335059000000,0.000027443500000,0.000095578000000,0.000055690000000,0.000021517500000,0.000049750000000,0.000267034000000,0.000070294000000,0.000379627000000,0.000334985000000,0.000973799000000,0.000579133000000,0.031281331000000,0.000588220000000,0.000056071000000,0.000084912000000,0.000134689000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000633652000000,0.031773182000000,0.000017566500000,0.000179726000000,0.000024480000000,0.000020332000000,0.000053701000000,0.000225948000000,0.000049750000000,0.000329849000000,0.000384763000000,0.000583084000000,0.000545553000000,0.031444097000000,0.000596911000000,0.000056862000000,0.000051726000000,0.000127578000000,0.000054492000000 +0.000034159000000,0.000050541000000,0.000642343000000,0.031733281000000,0.000017566500000,0.000097553000000,0.000029814000000,0.000021517500000,0.000049751000000,0.000228318000000,0.000052121000000,0.000330244000000,0.000334590000000,0.000584269000000,0.000544763000000,0.031084195000000,0.000625751000000,0.000090442000000,0.000048961000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000557009000000,0.031451998000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000230294000000,0.000050146000000,0.000329850000000,0.000368961000000,0.000546738000000,0.000578738000000,0.030847554000000,0.000555034000000,0.000055676000000,0.000049356000000,0.000127578000000,0.000110195000000 +0.000019542500000,0.000031578000000,0.000557010000000,0.031825330000000,0.000017567000000,0.000095577000000,0.000023295000000,0.000030999000000,0.000049355000000,0.000230294000000,0.000050541000000,0.000329849000000,0.000334985000000,0.000623775000000,0.000545158000000,0.031329924000000,0.000555429000000,0.000056862000000,0.000083726000000,0.000126788000000,0.000104269000000 +0.000019542000000,0.000031578000000,0.000626146000000,0.031993232000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020530000000,0.000065158000000,0.000276516000000,0.000050541000000,0.000364615000000,0.000334985000000,0.000622589000000,0.000544763000000,0.031532985000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000126787000000,0.000057256000000 +0.000019542000000,0.000031183000000,0.000590985000000,0.032935848000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000020332500000,0.000049356000000,0.000226739000000,0.000050146000000,0.000330640000000,0.000368565000000,0.000546738000000,0.000629306000000,0.031842318000000,0.000588614000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000594540000000,0.031679553000000,0.000017567000000,0.000164319000000,0.000023098000000,0.000021320000000,0.000048960000000,0.000227133000000,0.000049751000000,0.000393059000000,0.000335775000000,0.000689750000000,0.000547133000000,0.031162813000000,0.000592960000000,0.000056467000000,0.000048565000000,0.000126393000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000594146000000,0.032118466000000,0.000017369000000,0.000094788000000,0.000022702500000,0.000020530000000,0.000050541000000,0.000229109000000,0.000050146000000,0.000330639000000,0.000418344000000,0.000632466000000,0.000545158000000,0.030435900000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000129948000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.032098713000000,0.000017369000000,0.000094787000000,0.000022307500000,0.000020332000000,0.000049751000000,0.000226738000000,0.000050145000000,0.000328664000000,0.000336565000000,0.000548713000000,0.000590984000000,0.030941578000000,0.000555824000000,0.000056467000000,0.000050146000000,0.000161553000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000625750000000,0.031839948000000,0.000017566500000,0.000094788000000,0.000023492500000,0.000021517500000,0.000049751000000,0.000227924000000,0.000120071000000,0.000364219000000,0.000368565000000,0.000564911000000,0.000545553000000,0.030977134000000,0.000624960000000,0.000056466000000,0.000048961000000,0.000133108000000,0.000087282000000 +0.000019542000000,0.000031578000000,0.000590194000000,0.031217726000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020727000000,0.000048961000000,0.000225553000000,0.000067923000000,0.000330245000000,0.000334590000000,0.000583479000000,0.000559775000000,0.034842019000000,0.000624565000000,0.000056071000000,0.000048566000000,0.000127183000000,0.000067133000000 +0.000038505000000,0.000031973000000,0.000613503000000,0.033232539000000,0.000017567000000,0.000095183000000,0.000023295000000,0.000021715000000,0.000049355000000,0.000227528000000,0.000050936000000,0.000364220000000,0.000334590000000,0.000547133000000,0.000580318000000,0.031995997000000,0.000575578000000,0.000056071000000,0.000064763000000,0.000127578000000,0.000054096000000 +0.000019542500000,0.000031578000000,0.000557009000000,0.031643208000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000020332000000,0.000050146000000,0.000229504000000,0.000050146000000,0.000330639000000,0.000348812000000,0.000669207000000,0.000545552000000,0.030785924000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000019344500000,0.000031973000000,0.000558195000000,0.031716689000000,0.000017369500000,0.000096368000000,0.000023097500000,0.000020332000000,0.000069109000000,0.000227528000000,0.000050146000000,0.000330244000000,0.000334195000000,0.000597306000000,0.000579133000000,0.030426023000000,0.000589799000000,0.000056467000000,0.000062393000000,0.000131133000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000810244000000,0.031843108000000,0.000017369500000,0.000095577000000,0.000023097500000,0.000037714500000,0.000049356000000,0.000225158000000,0.000050146000000,0.000329849000000,0.000406097000000,0.000549504000000,0.000578738000000,0.031050615000000,0.000767973000000,0.000056466000000,0.000048566000000,0.000129949000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000590195000000,0.031830071000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000020727000000,0.000049356000000,0.000228714000000,0.000052121000000,0.000330639000000,0.000335775000000,0.000547133000000,0.000545553000000,0.031021381000000,0.000589404000000,0.000056466000000,0.000048171000000,0.000129158000000,0.000056072000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031443701000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000021320000000,0.000050935000000,0.000261108000000,0.000050146000000,0.000377257000000,0.000368170000000,0.000618639000000,0.000609552000000,0.031423158000000,0.000627726000000,0.000056466000000,0.000049751000000,0.000126787000000,0.000054097000000 +0.000019542500000,0.000031578000000,0.000557404000000,0.033872934000000,0.000017369500000,0.000095577000000,0.000022900000000,0.000021122500000,0.000048961000000,0.000229504000000,0.000050541000000,0.000329850000000,0.000349997000000,0.000547923000000,0.000630491000000,0.031961232000000,0.000555430000000,0.000056467000000,0.000048171000000,0.000127973000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000556614000000,0.032969034000000,0.000017567000000,0.000096368000000,0.000048184000000,0.000021517500000,0.000049355000000,0.000226738000000,0.000069109000000,0.000470491000000,0.000334590000000,0.000547529000000,0.000545157000000,0.030678468000000,0.000555429000000,0.000056072000000,0.000049751000000,0.000160763000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000600071000000,0.032204194000000,0.000017567000000,0.000129158000000,0.000022307500000,0.000020332500000,0.000049356000000,0.000230689000000,0.000049356000000,0.000344467000000,0.000334590000000,0.000582689000000,0.000578738000000,0.030685974000000,0.000596911000000,0.000056862000000,0.000048961000000,0.000127183000000,0.000090442000000 +0.000019542000000,0.000031183000000,0.000591380000000,0.031512047000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000021122500000,0.000049356000000,0.000289158000000,0.000051331000000,0.000445603000000,0.000334195000000,0.000549504000000,0.000687380000000,0.031254862000000,0.000589405000000,0.000090047000000,0.000048565000000,0.000129553000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000629306000000,0.031819800000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000021715000000,0.000048960000000,0.000229899000000,0.000050146000000,0.000329850000000,0.000368960000000,0.000797207000000,0.000545157000000,0.030916294000000,0.000611133000000,0.000056862000000,0.000048960000000,0.000127578000000,0.000054096000000 +0.000033369500000,0.000031578000000,0.000557010000000,0.031217331000000,0.000027443500000,0.000096368000000,0.000022702500000,0.000021715000000,0.000050146000000,0.000224763000000,0.000070689000000,0.000385158000000,0.000334985000000,0.000583083000000,0.000560170000000,0.031099603000000,0.000555035000000,0.000056467000000,0.000068318000000,0.000127972000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031841133000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000021122000000,0.000118097000000,0.000228714000000,0.000070294000000,0.000330244000000,0.000403726000000,0.000584269000000,0.000578738000000,0.030979900000000,0.000605998000000,0.000056467000000,0.000048960000000,0.000126787000000,0.000053701000000 +0.000019542000000,0.000052121000000,0.000642738000000,0.032342861000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021122000000,0.000049356000000,0.000225948000000,0.000052911000000,0.000329850000000,0.000334985000000,0.000547133000000,0.000545158000000,0.030161332000000,0.000588614000000,0.000056467000000,0.000049750000000,0.000127182000000,0.000055282000000 +0.000029023500000,0.000098739000000,0.000626541000000,0.031586714000000,0.000018159500000,0.000096368000000,0.000022703000000,0.000028826000000,0.000049356000000,0.000228318000000,0.000053702000000,0.000409256000000,0.000334985000000,0.000604022000000,0.000545158000000,0.030081135000000,0.000625355000000,0.000056467000000,0.000048960000000,0.000183677000000,0.000053701000000 +0.000020727500000,0.000033553000000,0.000590195000000,0.031671256000000,0.000017567000000,0.000124023000000,0.000023295000000,0.000020530000000,0.000049751000000,0.000229109000000,0.000053702000000,0.000330244000000,0.000334985000000,0.000583479000000,0.000578343000000,0.030645677000000,0.000589405000000,0.000056467000000,0.000048170000000,0.000128763000000,0.000055282000000 +0.000019542000000,0.000033554000000,0.000556614000000,0.031901972000000,0.000017567000000,0.000096368000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000226738000000,0.000209750000000,0.000430590000000,0.000334985000000,0.000547923000000,0.000544762000000,0.030484097000000,0.000557800000000,0.000060022000000,0.000048961000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000045010000000,0.000557010000000,0.031662960000000,0.000017369500000,0.000095578000000,0.000023690500000,0.000021715000000,0.000049751000000,0.000226738000000,0.000133899000000,0.000329850000000,0.000368565000000,0.000583874000000,0.000594145000000,0.030160937000000,0.000589800000000,0.000056072000000,0.000049356000000,0.000159182000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000626541000000,0.031487553000000,0.000017369500000,0.000095578000000,0.000022505000000,0.000021517000000,0.000049356000000,0.000226739000000,0.000048961000000,0.000412812000000,0.000334195000000,0.000583874000000,0.000579133000000,0.030574566000000,0.000801157000000,0.000056862000000,0.000048961000000,0.000127182000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000590985000000,0.032022467000000,0.000017369500000,0.000095577000000,0.000023097500000,0.000020727000000,0.000050541000000,0.000229108000000,0.000050541000000,0.000329849000000,0.000369750000000,0.000547923000000,0.000545158000000,0.030690714000000,0.000627331000000,0.000070689000000,0.000048171000000,0.000130343000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000556615000000,0.031347702000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000021517000000,0.000049356000000,0.000228714000000,0.000050936000000,0.000329850000000,0.000336170000000,0.000595725000000,0.000578343000000,0.030280641000000,0.000634441000000,0.000056071000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000029023500000,0.000031973000000,0.000557800000000,0.031559454000000,0.000017567000000,0.000129553000000,0.000023098000000,0.000021912500000,0.000068713000000,0.000227923000000,0.000050541000000,0.000343282000000,0.000334985000000,0.000660120000000,0.000578343000000,0.030478566000000,0.000555034000000,0.000057257000000,0.000048170000000,0.000129554000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000626146000000,0.031732491000000,0.000017567000000,0.000095973000000,0.000023097500000,0.000020530000000,0.000049356000000,0.000225948000000,0.000068714000000,0.000329454000000,0.000375676000000,0.000546738000000,0.000545158000000,0.030055061000000,0.000555034000000,0.000056072000000,0.000048960000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000626541000000,0.031110270000000,0.000024282500000,0.000095183000000,0.000022702500000,0.000020332000000,0.000050541000000,0.000233454000000,0.000064368000000,0.000412022000000,0.000334985000000,0.000596516000000,0.000579923000000,0.030531505000000,0.000606393000000,0.000059628000000,0.000048170000000,0.000196713000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031645182000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000021122000000,0.000048961000000,0.000226738000000,0.000049355000000,0.000330244000000,0.000368565000000,0.000616268000000,0.000692515000000,0.031565380000000,0.000624565000000,0.000056862000000,0.000049355000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000557010000000,0.031375356000000,0.000017566500000,0.000095578000000,0.000022109500000,0.000021715000000,0.000050541000000,0.000229503000000,0.000050935000000,0.000415577000000,0.000334985000000,0.000547133000000,0.000545158000000,0.032052886000000,0.000624170000000,0.000056466000000,0.000049355000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000800367000000,0.031521923000000,0.000017369000000,0.000095183000000,0.000022505000000,0.000020332500000,0.000049356000000,0.000229504000000,0.000050145000000,0.000329849000000,0.000369356000000,0.000583874000000,0.000545948000000,0.030533085000000,0.000555824000000,0.000056072000000,0.000048170000000,0.000182096000000,0.000069504000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031652689000000,0.000017566500000,0.000095577000000,0.000050357000000,0.000020332500000,0.000048960000000,0.000229898000000,0.000051331000000,0.000420318000000,0.000370541000000,0.000583479000000,0.000613108000000,0.030561529000000,0.000555430000000,0.000056467000000,0.000048961000000,0.000134689000000,0.000086097000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031752245000000,0.000017567000000,0.000239380000000,0.000023097500000,0.000020529500000,0.000049751000000,0.000224763000000,0.000049750000000,0.000329850000000,0.000334590000000,0.000547528000000,0.000544763000000,0.031072344000000,0.000624566000000,0.000070689000000,0.000049356000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031973000000,0.000591380000000,0.031761331000000,0.000017567000000,0.000114146000000,0.000023097500000,0.000021320000000,0.000052517000000,0.000228319000000,0.000050146000000,0.000330244000000,0.000334985000000,0.000583478000000,0.000545158000000,0.029893480000000,0.000624170000000,0.000056467000000,0.000049356000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000590985000000,0.031656639000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000264270000000,0.000051331000000,0.000521454000000,0.000334985000000,0.000584664000000,0.000613503000000,0.030837677000000,0.000645504000000,0.000056467000000,0.000048171000000,0.000126788000000,0.000054886000000 +0.000019542000000,0.000031183000000,0.000556615000000,0.032118862000000,0.000017567000000,0.000095183000000,0.000023098000000,0.000020530000000,0.000118491000000,0.000225948000000,0.000052122000000,0.000364220000000,0.000404121000000,0.000547529000000,0.000545158000000,0.032481528000000,0.000594540000000,0.000056467000000,0.000048170000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000558195000000,0.032359454000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000021715000000,0.000052911000000,0.000227133000000,0.000050541000000,0.000330244000000,0.000334985000000,0.000585059000000,0.000545158000000,0.032438466000000,0.000555429000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031281331000000,0.000017567000000,0.000095973000000,0.000022900000000,0.000021517500000,0.000054886000000,0.000225158000000,0.000050936000000,0.000329850000000,0.000382392000000,0.000584269000000,0.000613504000000,0.031226812000000,0.000570047000000,0.000056466000000,0.000048960000000,0.000129553000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031864836000000,0.000024875500000,0.000101504000000,0.000023295500000,0.000021715000000,0.000049751000000,0.000228319000000,0.000050936000000,0.000363825000000,0.000335380000000,0.000547133000000,0.000566886000000,0.030313430000000,0.000641157000000,0.000056072000000,0.000048960000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000576763000000,0.031408935000000,0.000017567000000,0.000115726000000,0.000022307500000,0.000030208500000,0.000050146000000,0.000227528000000,0.000051726000000,0.000330244000000,0.000344072000000,0.000584269000000,0.000545158000000,0.029850024000000,0.000639973000000,0.000056072000000,0.000048565000000,0.000127578000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031064838000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000047986500000,0.000049751000000,0.000228714000000,0.000052121000000,0.000363824000000,0.000370936000000,0.000590195000000,0.000614294000000,0.031110665000000,0.000748219000000,0.000056467000000,0.000048566000000,0.000169454000000,0.000088071000000 +0.000019344500000,0.000031577000000,0.000590985000000,0.033983156000000,0.000017567000000,0.000097159000000,0.000023295500000,0.000021912500000,0.000049751000000,0.000228713000000,0.000051331000000,0.000330244000000,0.000334590000000,0.000547924000000,0.000564121000000,0.030826615000000,0.000612318000000,0.000077010000000,0.000049356000000,0.000127972000000,0.000053702000000 +0.000019344500000,0.000031973000000,0.000641947000000,0.033260589000000,0.000017369000000,0.000108614000000,0.000022110000000,0.000022110000000,0.000049355000000,0.000226344000000,0.000050541000000,0.000330245000000,0.000334985000000,0.000585059000000,0.000545553000000,0.030003307000000,0.000575183000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000626145000000,0.032355503000000,0.000017566500000,0.000095973000000,0.000022702500000,0.000020530000000,0.000048961000000,0.000225554000000,0.000050936000000,0.000348022000000,0.000335775000000,0.000673552000000,0.000634837000000,0.030348196000000,0.000555429000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000053702000000 +0.000019344500000,0.000032368000000,0.000556614000000,0.031561035000000,0.000017566500000,0.000095183000000,0.000023097500000,0.000020332000000,0.000069504000000,0.000276516000000,0.000051331000000,0.000330640000000,0.000402936000000,0.000559775000000,0.000585058000000,0.030975554000000,0.000589404000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031555899000000,0.000017566500000,0.000095577000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000284417000000,0.000050541000000,0.000363824000000,0.000334590000000,0.000689355000000,0.000545948000000,0.030650813000000,0.000589405000000,0.000055677000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000593750000000,0.031324393000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000226739000000,0.000051726000000,0.000329454000000,0.000384368000000,0.000616269000000,0.000613898000000,0.030636986000000,0.000605207000000,0.000056466000000,0.000061998000000,0.000130739000000,0.000053701000000 +0.000019344500000,0.000033158000000,0.000592960000000,0.032086466000000,0.000017566500000,0.000095182000000,0.000022505000000,0.000021517000000,0.000049355000000,0.000230689000000,0.000064368000000,0.000364615000000,0.000335381000000,0.000546343000000,0.000579923000000,0.029917579000000,0.000555825000000,0.000056467000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000039295000000,0.000031578000000,0.000590984000000,0.031357183000000,0.000017566500000,0.000129948000000,0.000022702500000,0.000048579000000,0.000049751000000,0.000226343000000,0.000049750000000,0.000330244000000,0.000334590000000,0.000546343000000,0.000559775000000,0.030591554000000,0.000555034000000,0.000056072000000,0.000048960000000,0.000129553000000,0.000054492000000 +0.000019542500000,0.000031973000000,0.000557405000000,0.031472936000000,0.000017369000000,0.000216467000000,0.000023295000000,0.000021517000000,0.000048960000000,0.000225948000000,0.000050541000000,0.000330639000000,0.000710688000000,0.000614689000000,0.000632466000000,0.030523604000000,0.000777058000000,0.000056467000000,0.000048170000000,0.000129553000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000572022000000,0.032249626000000,0.000017566500000,0.000095578000000,0.000032974000000,0.000021715000000,0.000049751000000,0.000226343000000,0.000050936000000,0.000344466000000,0.000368960000000,0.000565306000000,0.000578343000000,0.030235208000000,0.000603231000000,0.000056072000000,0.000048961000000,0.000232269000000,0.000135875000000 +0.000019542000000,0.000031183000000,0.000591380000000,0.031534960000000,0.000017566500000,0.000095183000000,0.000024678000000,0.000021517500000,0.000048961000000,0.000230689000000,0.000050541000000,0.000330244000000,0.000334985000000,0.000547924000000,0.000545553000000,0.030374270000000,0.000589010000000,0.000070294000000,0.000048566000000,0.000127578000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.031518763000000,0.000017566500000,0.000095578000000,0.000029221000000,0.000021517500000,0.000048960000000,0.000226738000000,0.000050936000000,0.000377651000000,0.000368565000000,0.000616269000000,0.000738738000000,0.030288937000000,0.000555824000000,0.000059232000000,0.000049356000000,0.000133899000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000556219000000,0.031843898000000,0.000017369000000,0.000095577000000,0.000022702500000,0.000022307500000,0.000049356000000,0.000227923000000,0.000051331000000,0.000329849000000,0.000340516000000,0.000565701000000,0.000592170000000,0.029947999000000,0.000555824000000,0.000056072000000,0.000048960000000,0.000161949000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031868392000000,0.000017566500000,0.000109010000000,0.000022900500000,0.000020332000000,0.000107430000000,0.000227529000000,0.000051331000000,0.000370936000000,0.000334195000000,0.000547133000000,0.000545553000000,0.030241134000000,0.000589405000000,0.000057257000000,0.000050541000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000704367000000,0.032245676000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000227528000000,0.000050540000000,0.000329849000000,0.000368960000000,0.000627331000000,0.000594935000000,0.030299209000000,0.000589010000000,0.000056467000000,0.000067923000000,0.000130343000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000626145000000,0.031129628000000,0.000017566500000,0.000095578000000,0.000022307500000,0.000021517500000,0.000048960000000,0.000224763000000,0.000050541000000,0.000330639000000,0.000334591000000,0.000586244000000,0.000627725000000,0.030049924000000,0.000602047000000,0.000056072000000,0.000049355000000,0.000147331000000,0.000054491000000 +0.000019344500000,0.000032368000000,0.000626540000000,0.031774763000000,0.000017369000000,0.000096763000000,0.000023295500000,0.000021122000000,0.000048961000000,0.000225948000000,0.000051331000000,0.000364220000000,0.000404516000000,0.000547133000000,0.000545158000000,0.030651998000000,0.000554639000000,0.000057257000000,0.000049355000000,0.000127182000000,0.000054097000000 +0.000036332500000,0.000045010000000,0.000577553000000,0.031708392000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000021714500000,0.000049356000000,0.000228319000000,0.000052121000000,0.000330245000000,0.000334986000000,0.000631281000000,0.000546343000000,0.030687554000000,0.000555034000000,0.000056467000000,0.000049355000000,0.000130738000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031057726000000,0.000018554500000,0.000095973000000,0.000023295500000,0.000021715000000,0.000049355000000,0.000226343000000,0.000050541000000,0.000364220000000,0.000377257000000,0.000583083000000,0.000578738000000,0.029844492000000,0.000590195000000,0.000059627000000,0.000049356000000,0.000127973000000,0.000067529000000 +0.000019542000000,0.000031578000000,0.000718589000000,0.031923306000000,0.000017369000000,0.000115331000000,0.000039492500000,0.000020530000000,0.000049356000000,0.000227528000000,0.000050541000000,0.000330639000000,0.000334985000000,0.000546343000000,0.000545158000000,0.030209135000000,0.000644319000000,0.000110986000000,0.000048961000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031724195000000,0.000034949000000,0.000095578000000,0.000022900000000,0.000020727500000,0.000049751000000,0.000231084000000,0.000050936000000,0.000349602000000,0.000334590000000,0.000784170000000,0.000980120000000,0.031374171000000,0.000575183000000,0.000056467000000,0.000048170000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000660121000000,0.031586318000000,0.000045813500000,0.000095973000000,0.000022702500000,0.000021517500000,0.000049750000000,0.000228319000000,0.000050936000000,0.000330244000000,0.000384763000000,0.000590984000000,0.000545158000000,0.031515998000000,0.000555429000000,0.000056467000000,0.000048960000000,0.000126787000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031497825000000,0.000019147000000,0.000095578000000,0.000023295500000,0.000021517500000,0.000103874000000,0.000226738000000,0.000050936000000,0.000330245000000,0.000334985000000,0.000548713000000,0.000581898000000,0.030313826000000,0.000602441000000,0.000056467000000,0.000048565000000,0.000176960000000,0.000054097000000 +0.000019542000000,0.000031182000000,0.000558194000000,0.031322417000000,0.000018357000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000048960000000,0.000231874000000,0.000050541000000,0.000363825000000,0.000385553000000,0.000616664000000,0.000545157000000,0.030396788000000,0.000604812000000,0.000091627000000,0.000048171000000,0.000163134000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000573207000000,0.031550763000000,0.000027245500000,0.000095577000000,0.000022110000000,0.000021517500000,0.000049356000000,0.000225553000000,0.000050146000000,0.000330244000000,0.000337356000000,0.000703577000000,0.000557799000000,0.029875703000000,0.000725701000000,0.000056467000000,0.000049751000000,0.000129158000000,0.000054492000000 +0.000020529500000,0.000031578000000,0.000591380000000,0.031963207000000,0.000018357000000,0.000095578000000,0.000022505000000,0.000020530000000,0.000048961000000,0.000227924000000,0.000050936000000,0.000398590000000,0.000368566000000,0.000584664000000,0.000594540000000,0.030179504000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000142195000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000976959000000,0.033321429000000,0.000017369000000,0.000164318000000,0.000023295000000,0.000021517500000,0.000049355000000,0.000227923000000,0.000085306000000,0.000330244000000,0.000334985000000,0.000547528000000,0.000560960000000,0.032355107000000,0.000556615000000,0.000056467000000,0.000048566000000,0.000128763000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000599281000000,0.031294368000000,0.000017171500000,0.000095578000000,0.000023492500000,0.000020727500000,0.000048961000000,0.000225948000000,0.000105850000000,0.000330639000000,0.000334590000000,0.000583084000000,0.000545158000000,0.032646268000000,0.000555430000000,0.000056467000000,0.000048565000000,0.000129554000000,0.000054491000000 +0.000036529500000,0.000065159000000,0.000592170000000,0.031537726000000,0.000027245500000,0.000095578000000,0.000023295000000,0.000037912500000,0.000049751000000,0.000229504000000,0.000081751000000,0.000331824000000,0.000416763000000,0.000582293000000,0.000631676000000,0.030422072000000,0.000589799000000,0.000071084000000,0.000048960000000,0.000195923000000,0.000157998000000 +0.000019542500000,0.000031578000000,0.000590985000000,0.031779899000000,0.000017369000000,0.000095577000000,0.000032579500000,0.000020727500000,0.000049355000000,0.000227923000000,0.000050541000000,0.000330245000000,0.000371726000000,0.000547923000000,0.000545553000000,0.030594715000000,0.000589010000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000176171000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031992441000000,0.000017369000000,0.000096368000000,0.000067542000000,0.000020332500000,0.000049751000000,0.000229109000000,0.000050936000000,0.000379627000000,0.000404121000000,0.000634442000000,0.000545157000000,0.029820789000000,0.000555825000000,0.000056072000000,0.000048961000000,0.000126788000000,0.000069899000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.033951156000000,0.000017369000000,0.000095183000000,0.000062603500000,0.000021320000000,0.000070689000000,0.000225553000000,0.000052121000000,0.000413603000000,0.000334590000000,0.000584269000000,0.000580318000000,0.030234813000000,0.000556614000000,0.000056467000000,0.000048566000000,0.000126392000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000590589000000,0.031962021000000,0.000017566500000,0.000129553000000,0.000030801500000,0.000020332500000,0.000122442000000,0.000302985000000,0.000053701000000,0.000423479000000,0.000381603000000,0.000546738000000,0.000545553000000,0.030582072000000,0.000589405000000,0.000056862000000,0.000049356000000,0.000127183000000,0.000055677000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.032843404000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000021320000000,0.000150097000000,0.000226343000000,0.000053307000000,0.000329849000000,0.000334590000000,0.000584268000000,0.000545948000000,0.030056245000000,0.000589405000000,0.000056071000000,0.000049751000000,0.000127182000000,0.000074244000000 +0.000019344500000,0.000031578000000,0.000556615000000,0.031658615000000,0.000017566500000,0.000097553000000,0.000022900000000,0.000020727500000,0.000101899000000,0.000225948000000,0.000054492000000,0.000363824000000,0.000334985000000,0.000616269000000,0.000596516000000,0.030101283000000,0.000590194000000,0.000056467000000,0.000050146000000,0.000127973000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000557800000000,0.031856541000000,0.000017961500000,0.000095578000000,0.000022702500000,0.000021517500000,0.000125998000000,0.000227528000000,0.000052912000000,0.000329849000000,0.000334985000000,0.000547528000000,0.000544368000000,0.030376245000000,0.000555430000000,0.000056072000000,0.000048961000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590195000000,0.031529034000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020727500000,0.000134689000000,0.000228713000000,0.000052911000000,0.000330245000000,0.000335380000000,0.000584268000000,0.000547133000000,0.030052295000000,0.000690541000000,0.000056467000000,0.000048171000000,0.000127577000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000603626000000,0.031618713000000,0.000017369000000,0.000095577000000,0.000022900000000,0.000020332500000,0.000129948000000,0.000229109000000,0.000053701000000,0.000364220000000,0.000367775000000,0.000583874000000,0.000679083000000,0.030339900000000,0.000606787000000,0.000076220000000,0.000048170000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.032410812000000,0.000017567000000,0.000095183000000,0.000022900500000,0.000020332500000,0.000066739000000,0.000225948000000,0.000053701000000,0.000330244000000,0.000334590000000,0.000547924000000,0.000589009000000,0.030945924000000,0.000590195000000,0.000056466000000,0.000048960000000,0.000165899000000,0.000053701000000 +0.000029419000000,0.000067134000000,0.000557010000000,0.031376146000000,0.000017369500000,0.000145355000000,0.000023295000000,0.000037715000000,0.000052516000000,0.000342886000000,0.000053701000000,0.000364220000000,0.000368960000000,0.000598886000000,0.000545948000000,0.030237578000000,0.000591380000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031520738000000,0.000025270500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000065553000000,0.000228714000000,0.000054097000000,0.000329850000000,0.000334590000000,0.000616663000000,0.000578738000000,0.030870072000000,0.000555429000000,0.000056467000000,0.000049751000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000590984000000,0.031972293000000,0.000017566500000,0.000095578000000,0.000023492500000,0.000021715000000,0.000085306000000,0.000227528000000,0.000053702000000,0.000329849000000,0.000334985000000,0.000546343000000,0.000577948000000,0.031077084000000,0.000619429000000,0.000056467000000,0.000048566000000,0.000149702000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.032588194000000,0.000017566500000,0.000095577000000,0.000022702500000,0.000021714500000,0.000052517000000,0.000229504000000,0.000053702000000,0.000944565000000,0.000334195000000,0.000583873000000,0.000547133000000,0.030552048000000,0.000589009000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031182000000,0.000584664000000,0.031678762000000,0.000017566500000,0.000095578000000,0.000022900500000,0.000020924500000,0.000054096000000,0.000228713000000,0.000053701000000,0.000575577000000,0.000335380000000,0.000675133000000,0.000577948000000,0.031563800000000,0.000590195000000,0.000059627000000,0.000048565000000,0.000127578000000,0.000087282000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031545627000000,0.000017962000000,0.000095578000000,0.000022702500000,0.000020529500000,0.000053306000000,0.000224368000000,0.000053701000000,0.000385158000000,0.000385158000000,0.000547133000000,0.000544762000000,0.030294073000000,0.000554639000000,0.000056467000000,0.000048565000000,0.000128763000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000592565000000,0.031709973000000,0.000017369000000,0.000122047000000,0.000022900000000,0.000021912000000,0.000052911000000,0.000248862000000,0.000053701000000,0.000349998000000,0.000334985000000,0.000583479000000,0.000547133000000,0.030530320000000,0.000555429000000,0.000056862000000,0.000051331000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000598491000000,0.030817133000000,0.000017567000000,0.000097553000000,0.000022307500000,0.000020332000000,0.000052517000000,0.000225158000000,0.000052911000000,0.000422688000000,0.000369355000000,0.000585059000000,0.000594145000000,0.030489628000000,0.000632071000000,0.000075035000000,0.000048566000000,0.000128368000000,0.000052911000000 +0.000019542000000,0.000031973000000,0.000591775000000,0.032210121000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000020529500000,0.000052121000000,0.000227133000000,0.000053702000000,0.000350392000000,0.000334986000000,0.000547133000000,0.000545158000000,0.030502270000000,0.000602442000000,0.000056072000000,0.000048961000000,0.000129948000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000556615000000,0.031696541000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000020332500000,0.000052121000000,0.000226343000000,0.000054097000000,0.000385157000000,0.000334985000000,0.000615084000000,0.000546738000000,0.030720343000000,0.000589800000000,0.000056862000000,0.000048960000000,0.000144960000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000557009000000,0.031463849000000,0.000017567000000,0.000095973000000,0.000022900000000,0.000021715000000,0.000052517000000,0.000266245000000,0.000054492000000,0.000350392000000,0.000488269000000,0.000851330000000,0.000578738000000,0.030647257000000,0.000555035000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000053701000000 +0.000042850500000,0.000031578000000,0.000606787000000,0.030701381000000,0.000017567000000,0.000095183000000,0.000022110000000,0.000020529500000,0.000052516000000,0.000225553000000,0.000055677000000,0.000348022000000,0.000336565000000,0.001435626000000,0.000545553000000,0.030471060000000,0.000666047000000,0.000059627000000,0.000048566000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000998294000000,0.031145825000000,0.000017369500000,0.000095578000000,0.000022505000000,0.000021715000000,0.000049355000000,0.000228714000000,0.000053306000000,0.000344466000000,0.000368960000000,0.000686589000000,0.000544367000000,0.030455257000000,0.000555429000000,0.000057257000000,0.000048961000000,0.000199084000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.001375972000000,0.031518368000000,0.000024875000000,0.000178936000000,0.000023493000000,0.000020529500000,0.000048961000000,0.000261898000000,0.000052911000000,0.000330639000000,0.000334590000000,0.000992762000000,0.000613898000000,0.030951455000000,0.000625355000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000712663000000,0.030988590000000,0.000017961500000,0.000095577000000,0.000023295000000,0.000021517500000,0.000049355000000,0.000240170000000,0.000054491000000,0.000413602000000,0.000496170000000,0.000547923000000,0.000545948000000,0.032587009000000,0.000589800000000,0.000056072000000,0.000048565000000,0.000126788000000,0.000067923000000 +0.000019542000000,0.000031578000000,0.000716614000000,0.031327158000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021319500000,0.000048961000000,0.000225158000000,0.000086886000000,0.000330245000000,0.000335380000000,0.000575973000000,0.000545553000000,0.030572591000000,0.000556614000000,0.000056467000000,0.000048961000000,0.000201455000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000617849000000,0.031702071000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020727000000,0.000049751000000,0.000225158000000,0.000065948000000,0.000364220000000,0.000368961000000,0.000575578000000,0.000590984000000,0.030879949000000,0.000556220000000,0.000054887000000,0.000110986000000,0.000129948000000,0.000054886000000 +0.000019542500000,0.000031578000000,0.000618639000000,0.030799356000000,0.000017566500000,0.000095972000000,0.000050949500000,0.000020529500000,0.000049355000000,0.000278887000000,0.000053306000000,0.000330245000000,0.000338146000000,0.000546738000000,0.000544763000000,0.030965282000000,0.000627726000000,0.000090047000000,0.000048170000000,0.000126787000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000780219000000,0.032482712000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020727500000,0.000048961000000,0.000227528000000,0.000054096000000,0.000329849000000,0.000355924000000,0.000577552000000,0.000579133000000,0.030524393000000,0.000606787000000,0.000056071000000,0.000048961000000,0.000167479000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000595726000000,0.031608837000000,0.000018159000000,0.000129553000000,0.000022900000000,0.000021715000000,0.000049355000000,0.000225554000000,0.000056072000000,0.000365009000000,0.000334590000000,0.000561751000000,0.000579133000000,0.030543751000000,0.000639972000000,0.000056071000000,0.000048961000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031577000000,0.000560170000000,0.031846664000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020727500000,0.000049751000000,0.000266639000000,0.000053306000000,0.000330244000000,0.000331035000000,0.000547528000000,0.000545947000000,0.033554119000000,0.000611528000000,0.000056467000000,0.000048171000000,0.000130343000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000604022000000,0.031268689000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000020530000000,0.000082935000000,0.000224762000000,0.000052911000000,0.000399775000000,0.000512367000000,0.000712664000000,0.000579133000000,0.030579306000000,0.000660910000000,0.000056467000000,0.000048565000000,0.000221207000000,0.000054887000000 +0.000039690500000,0.000033553000000,0.000591775000000,0.031318467000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020727500000,0.000048961000000,0.000226738000000,0.000052516000000,0.000329849000000,0.000332219000000,0.000677899000000,0.000586245000000,0.032212096000000,0.000555430000000,0.000056467000000,0.000049356000000,0.000197898000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000637207000000,0.032595305000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021715000000,0.000049750000000,0.000227528000000,0.000054887000000,0.000531331000000,0.000364615000000,0.000547924000000,0.000545552000000,0.030960541000000,0.000557009000000,0.000056466000000,0.000049356000000,0.000163134000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000709898000000,0.031982170000000,0.000025073000000,0.000097158000000,0.000023097500000,0.000020727000000,0.000052516000000,0.000227923000000,0.000056072000000,0.000330244000000,0.000331430000000,0.000548318000000,0.000612318000000,0.030599850000000,0.000588615000000,0.000055676000000,0.000049356000000,0.000127578000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.032690515000000,0.000017566500000,0.000096368000000,0.000023098000000,0.000021517000000,0.000049355000000,0.000226343000000,0.000053701000000,0.000363824000000,0.000365404000000,0.000829997000000,0.000613108000000,0.030755504000000,0.000597306000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031705627000000,0.000017369000000,0.000129158000000,0.000022702500000,0.000021912500000,0.000054097000000,0.000227529000000,0.000052911000000,0.000329849000000,0.000331430000000,0.000596515000000,0.000545553000000,0.030565874000000,0.000590195000000,0.000056072000000,0.000064763000000,0.000134689000000,0.000055677000000 +0.000019344500000,0.000031973000000,0.000591775000000,0.031421973000000,0.000017369000000,0.000095577000000,0.000030011000000,0.000020727500000,0.000049751000000,0.000262688000000,0.000053702000000,0.000330245000000,0.000331035000000,0.000547923000000,0.000593751000000,0.031067998000000,0.000555430000000,0.000095182000000,0.000048170000000,0.000128368000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000592565000000,0.031588689000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000050936000000,0.000226343000000,0.000053701000000,0.000844614000000,0.000331429000000,0.000615478000000,0.000662096000000,0.030734961000000,0.000554639000000,0.000056072000000,0.000048171000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000625750000000,0.030960936000000,0.000017567000000,0.000095183000000,0.000023097500000,0.000020727000000,0.000048961000000,0.000227133000000,0.000053306000000,0.000412417000000,0.000331824000000,0.000583084000000,0.000546343000000,0.030382962000000,0.000589800000000,0.000056862000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542500000,0.000032368000000,0.000591775000000,0.031436195000000,0.000017567000000,0.000096368000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000229109000000,0.000052121000000,0.000330640000000,0.000400960000000,0.000547134000000,0.000545158000000,0.030686368000000,0.000603232000000,0.000056467000000,0.000048170000000,0.000129554000000,0.000053702000000 +0.000019739500000,0.000031973000000,0.000590195000000,0.032095158000000,0.000017567000000,0.000095578000000,0.000023098000000,0.000020529500000,0.000048961000000,0.000226343000000,0.000053307000000,0.000418738000000,0.000331824000000,0.000635627000000,0.000614688000000,0.030608542000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000590590000000,0.031197578000000,0.000017567000000,0.000095973000000,0.000022900000000,0.000030604000000,0.000049356000000,0.000225553000000,0.000052911000000,0.000330244000000,0.000365800000000,0.000583478000000,0.000545553000000,0.030563109000000,0.000555429000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000036530000000,0.000045800000000,0.000578738000000,0.031287652000000,0.000017567000000,0.000109800000000,0.000023295000000,0.000020529500000,0.000048961000000,0.000225948000000,0.000053701000000,0.000368961000000,0.000332615000000,0.000547528000000,0.000546343000000,0.031384837000000,0.000639183000000,0.000056466000000,0.000048961000000,0.000209356000000,0.000071084000000 +0.000019542000000,0.000031183000000,0.000701997000000,0.032172985000000,0.000017567000000,0.000095183000000,0.000022307500000,0.000021912500000,0.000050146000000,0.000280467000000,0.000055281000000,0.000331035000000,0.000331824000000,0.000634836000000,0.000628911000000,0.030367949000000,0.000589009000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000053702000000 +0.000019344500000,0.000031973000000,0.000716614000000,0.031095258000000,0.000017369000000,0.000095182000000,0.000022307500000,0.000021517000000,0.000065158000000,0.000226738000000,0.000053701000000,0.000330244000000,0.000331824000000,0.000634047000000,0.000545552000000,0.030267209000000,0.000624170000000,0.000070689000000,0.000082146000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031753035000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049355000000,0.000226344000000,0.000054096000000,0.000390293000000,0.000331429000000,0.000546738000000,0.000545553000000,0.030260492000000,0.000555825000000,0.000059627000000,0.000049751000000,0.000161553000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000626540000000,0.032095948000000,0.000018159500000,0.000095183000000,0.000029418500000,0.000020529500000,0.000049356000000,0.000226343000000,0.000052911000000,0.000349998000000,0.000490639000000,0.000547923000000,0.000632071000000,0.030305529000000,0.000555824000000,0.000056072000000,0.000048171000000,0.000127182000000,0.000054886000000 +0.000019344500000,0.000031182000000,0.000557799000000,0.030938418000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021517500000,0.000051726000000,0.000224763000000,0.000053307000000,0.000384762000000,0.000331429000000,0.000617059000000,0.000545552000000,0.030895751000000,0.000590195000000,0.000057652000000,0.000050146000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000033158000000,0.000557009000000,0.030889035000000,0.000017369500000,0.000129553000000,0.000023295500000,0.000021517000000,0.000052516000000,0.000226343000000,0.000054097000000,0.000349997000000,0.000421109000000,0.000547133000000,0.000545947000000,0.030507801000000,0.000590195000000,0.000056072000000,0.000048566000000,0.000127182000000,0.000056072000000 +0.000019344500000,0.000031578000000,0.000638392000000,0.031450813000000,0.000017369500000,0.000095973000000,0.000022702500000,0.000020332000000,0.000107430000000,0.000229504000000,0.000052911000000,0.000390689000000,0.000333800000000,0.000646293000000,0.000613503000000,0.030434320000000,0.000575577000000,0.000056466000000,0.000048566000000,0.000135084000000,0.000054096000000 +0.000019542000000,0.000032368000000,0.000601651000000,0.031526665000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000020530000000,0.000054887000000,0.000261898000000,0.000052911000000,0.000350788000000,0.000413998000000,0.000637602000000,0.000544368000000,0.030184246000000,0.000555825000000,0.000056862000000,0.000048960000000,0.000127973000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000703183000000,0.030929331000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000049355000000,0.000225949000000,0.000053306000000,0.000349997000000,0.000342886000000,0.000629306000000,0.000545552000000,0.030599455000000,0.000605207000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000072665000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.031821380000000,0.000017567000000,0.000095578000000,0.000022110000000,0.000041073000000,0.000048960000000,0.000225949000000,0.000053307000000,0.000349997000000,0.000331034000000,0.000567281000000,0.000752565000000,0.030350566000000,0.000589800000000,0.000056467000000,0.000048961000000,0.000143775000000,0.000056862000000 +0.000036332000000,0.000031973000000,0.000556614000000,0.031858121000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000021122000000,0.000048961000000,0.000226343000000,0.000052911000000,0.000351183000000,0.000331429000000,0.000547528000000,0.000586639000000,0.029962221000000,0.000596515000000,0.000077010000000,0.000048961000000,0.000126787000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000591775000000,0.031139109000000,0.000017369000000,0.000095578000000,0.000022703000000,0.000021122000000,0.000049356000000,0.000228713000000,0.000052911000000,0.000384368000000,0.000331824000000,0.000987627000000,0.000546343000000,0.030068492000000,0.000555429000000,0.000056862000000,0.000068714000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031453578000000,0.000017369000000,0.000109010000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000227529000000,0.000054096000000,0.000350392000000,0.000415972000000,0.000617059000000,0.000578738000000,0.031816244000000,0.000838293000000,0.000056467000000,0.000049355000000,0.000182886000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031762911000000,0.000034356500000,0.000095577000000,0.000056875000000,0.000020529500000,0.000048961000000,0.000230688000000,0.000053702000000,0.000402541000000,0.000332614000000,0.000584664000000,0.000594541000000,0.030367554000000,0.000554639000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.030961331000000,0.000024085500000,0.000095973000000,0.000023295500000,0.000020530000000,0.000050936000000,0.000262294000000,0.000052912000000,0.000351182000000,0.000372516000000,0.000547923000000,0.000545948000000,0.030408245000000,0.000569652000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.033155502000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021517500000,0.000083726000000,0.000225553000000,0.000054096000000,0.000384763000000,0.000331429000000,0.000579924000000,0.000580713000000,0.030707306000000,0.000588614000000,0.000056467000000,0.000050541000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000701207000000,0.031414862000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049750000000,0.000227134000000,0.000054096000000,0.000349998000000,0.000331429000000,0.000671577000000,0.000578738000000,0.030299208000000,0.000589800000000,0.000056072000000,0.000048565000000,0.000133109000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000590590000000,0.031393924000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000029418500000,0.000048961000000,0.000226343000000,0.000057257000000,0.000384762000000,0.000396219000000,0.000580713000000,0.000545948000000,0.031113825000000,0.000555034000000,0.000056466000000,0.000048170000000,0.000127183000000,0.000053702000000 +0.000019542500000,0.000031578000000,0.000590590000000,0.031488343000000,0.000017567000000,0.000129158000000,0.000022702500000,0.000020925000000,0.000049356000000,0.000227528000000,0.000053701000000,0.000349997000000,0.000332219000000,0.000581108000000,0.000578738000000,0.031943849000000,0.000738343000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.032110170000000,0.000017567000000,0.000095973000000,0.000023097500000,0.000031196500000,0.000049750000000,0.000226343000000,0.000053306000000,0.000349997000000,0.000366985000000,0.000581108000000,0.000578343000000,0.030587603000000,0.000570046000000,0.000056467000000,0.000049356000000,0.000156417000000,0.000054887000000 +0.000019542500000,0.000031578000000,0.000624960000000,0.031446071000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000227134000000,0.000055281000000,0.000384763000000,0.000331825000000,0.000580713000000,0.000545157000000,0.032672737000000,0.000569652000000,0.000069899000000,0.000049356000000,0.000131529000000,0.000054096000000 +0.000029813500000,0.000046985000000,0.000590984000000,0.034396785000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000020530000000,0.000049356000000,0.000269404000000,0.000052911000000,0.000349998000000,0.000400170000000,0.000581899000000,0.000595330000000,0.032078565000000,0.000589404000000,0.000056467000000,0.000082146000000,0.000130343000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.033002614000000,0.000017566500000,0.000095182000000,0.000022900000000,0.000020332500000,0.000049750000000,0.000484714000000,0.000055676000000,0.000719775000000,0.000332219000000,0.000582689000000,0.000579133000000,0.031624639000000,0.000624170000000,0.000056467000000,0.000065158000000,0.000171429000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000607183000000,0.032873033000000,0.000017566500000,0.000095973000000,0.000022702500000,0.000020332000000,0.000050541000000,0.000226344000000,0.000053701000000,0.000350788000000,0.000365404000000,0.000580319000000,0.000545553000000,0.031425528000000,0.000554640000000,0.000056467000000,0.000049750000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000556615000000,0.031185331000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021715000000,0.000049355000000,0.000229504000000,0.000052516000000,0.000349997000000,0.000331429000000,0.000580318000000,0.000626936000000,0.031079455000000,0.000570441000000,0.000056467000000,0.000049356000000,0.000127973000000,0.000055676000000 +0.000019344500000,0.000031578000000,0.000570837000000,0.031300689000000,0.000017369500000,0.000129158000000,0.000022505000000,0.000020925000000,0.000082936000000,0.000227923000000,0.000054097000000,0.000350392000000,0.000332614000000,0.000618244000000,0.000579133000000,0.031803602000000,0.000589800000000,0.000056862000000,0.000049751000000,0.000182887000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000600071000000,0.031749478000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000020727500000,0.000049355000000,0.000225948000000,0.000104664000000,0.000350788000000,0.000381997000000,0.000581503000000,0.000545553000000,0.031672047000000,0.000605997000000,0.000056861000000,0.000048961000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000590195000000,0.031632936000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000020332500000,0.000048961000000,0.000228714000000,0.000054097000000,0.000350788000000,0.000332615000000,0.000581108000000,0.000579133000000,0.031695751000000,0.000602441000000,0.000056466000000,0.000048961000000,0.000128368000000,0.000073850000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031605676000000,0.000017566500000,0.000095182000000,0.000022307500000,0.000021122500000,0.000049356000000,0.000229504000000,0.000054492000000,0.000350787000000,0.000381603000000,0.000581503000000,0.000565701000000,0.031359948000000,0.000555034000000,0.000056862000000,0.000048961000000,0.000127973000000,0.000067923000000 +0.000019542000000,0.000031183000000,0.000556615000000,0.031769627000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000022110000000,0.000049751000000,0.000229898000000,0.000053701000000,0.000349603000000,0.000331430000000,0.000614294000000,0.000544763000000,0.031455948000000,0.000555429000000,0.000082146000000,0.000048170000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000592565000000,0.031067603000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000047986500000,0.000049356000000,0.000225948000000,0.000054096000000,0.000350787000000,0.000343281000000,0.000547924000000,0.000579924000000,0.031265924000000,0.000604812000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000695676000000,0.031303850000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000261899000000,0.000053701000000,0.000349998000000,0.000331035000000,0.000583084000000,0.000545948000000,0.030996887000000,0.000637207000000,0.000056467000000,0.000063577000000,0.000127578000000,0.000054492000000 +0.000029418500000,0.000071479000000,0.000590589000000,0.031439355000000,0.000017961500000,0.000095973000000,0.000022900000000,0.000021714500000,0.000048961000000,0.000225158000000,0.000053701000000,0.000350392000000,0.000331824000000,0.000590589000000,0.000544763000000,0.032214466000000,0.000589800000000,0.000055677000000,0.000048170000000,0.000129948000000,0.000053701000000 +0.000019542000000,0.000034344000000,0.000662096000000,0.031137528000000,0.000017566500000,0.000095973000000,0.000039295000000,0.000021715000000,0.000048961000000,0.000226343000000,0.000053702000000,0.000350788000000,0.000365800000000,0.000547924000000,0.000602047000000,0.033099404000000,0.000555825000000,0.000056862000000,0.000048566000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000046985000000,0.000557010000000,0.031731306000000,0.000017566500000,0.000096368000000,0.000022505000000,0.000021122500000,0.000050935000000,0.000235035000000,0.000052912000000,0.000350392000000,0.000331034000000,0.000593751000000,0.000547133000000,0.032035503000000,0.000578343000000,0.000059232000000,0.000048566000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000033553000000,0.000625751000000,0.032099108000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000020529500000,0.000082540000000,0.000229109000000,0.000055282000000,0.000350788000000,0.000405306000000,0.000583479000000,0.000545948000000,0.031872738000000,0.000945355000000,0.000056467000000,0.000048961000000,0.000217651000000,0.000054096000000 +0.000019344500000,0.000033553000000,0.000607578000000,0.031623059000000,0.000027443500000,0.000095578000000,0.000022702500000,0.000022110000000,0.000049356000000,0.000227924000000,0.000052516000000,0.000350787000000,0.000331035000000,0.000547133000000,0.000581108000000,0.032043800000000,0.000555824000000,0.000056862000000,0.000048961000000,0.000126787000000,0.000054887000000 +0.000019542000000,0.000033553000000,0.000641948000000,0.031612788000000,0.000017566500000,0.000095973000000,0.000022505000000,0.000020727500000,0.000050936000000,0.000228318000000,0.000052911000000,0.000349602000000,0.000350788000000,0.000584269000000,0.000544763000000,0.031473726000000,0.000642343000000,0.000056467000000,0.000048960000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000033553000000,0.000556220000000,0.031172294000000,0.000017566500000,0.000129159000000,0.000022900000000,0.000021122500000,0.000049356000000,0.000229109000000,0.000054096000000,0.000351578000000,0.000331825000000,0.000583479000000,0.000558590000000,0.032368540000000,0.000589404000000,0.000089652000000,0.000048170000000,0.000204220000000,0.000072269000000 +0.000019344500000,0.000064368000000,0.000557010000000,0.031328739000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000020530000000,0.000049750000000,0.000231084000000,0.000053306000000,0.000349997000000,0.000331430000000,0.000547923000000,0.000708713000000,0.032369330000000,0.000605602000000,0.000057257000000,0.000048171000000,0.000150886000000,0.000054096000000 +0.000019344500000,0.000033158000000,0.000591380000000,0.031983355000000,0.000017567000000,0.000132319000000,0.000023295000000,0.000030999000000,0.000049356000000,0.000227528000000,0.000055677000000,0.000390689000000,0.000533306000000,0.000737552000000,0.000579133000000,0.032677478000000,0.000555430000000,0.000056072000000,0.000048566000000,0.000127973000000,0.000054097000000 +0.000019542000000,0.000066739000000,0.000590985000000,0.032140984000000,0.000017567000000,0.000095578000000,0.000022703000000,0.000020332000000,0.000050146000000,0.000248072000000,0.000053701000000,0.000350392000000,0.000345652000000,0.000584664000000,0.000545553000000,0.031310565000000,0.000555429000000,0.000059627000000,0.000088071000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000033553000000,0.000590985000000,0.030963307000000,0.000017369500000,0.000095182000000,0.000023097500000,0.000021517000000,0.000049355000000,0.000225948000000,0.000053702000000,0.000351183000000,0.000365010000000,0.000548318000000,0.000582293000000,0.031982565000000,0.001057947000000,0.000057256000000,0.000048171000000,0.000126788000000,0.000056072000000 +0.000029418500000,0.000033553000000,0.000557405000000,0.031141084000000,0.000017369500000,0.000095183000000,0.000042653000000,0.000020529500000,0.000050541000000,0.000229109000000,0.000053702000000,0.000351182000000,0.000331430000000,0.000599677000000,0.000545158000000,0.032954416000000,0.000555429000000,0.000056466000000,0.000048170000000,0.000127182000000,0.000054097000000 +0.000036529500000,0.000033553000000,0.000587034000000,0.031150170000000,0.000017567000000,0.000095183000000,0.000029813500000,0.000020727000000,0.000082935000000,0.000227924000000,0.000054492000000,0.000385158000000,0.000364615000000,0.000649454000000,0.000546738000000,0.032536836000000,0.000680269000000,0.000056467000000,0.000048960000000,0.000160763000000,0.000053701000000 +0.000020529500000,0.000033554000000,0.000715825000000,0.031399455000000,0.000017567000000,0.000147331000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000227923000000,0.000053702000000,0.000349998000000,0.000331430000000,0.000547528000000,0.000639182000000,0.032061182000000,0.000622985000000,0.000056467000000,0.000048565000000,0.000134294000000,0.000054096000000 +0.000019542000000,0.000033553000000,0.000603626000000,0.032372886000000,0.000017566500000,0.000108615000000,0.000022702500000,0.000021715000000,0.000049355000000,0.000226343000000,0.000053701000000,0.000349997000000,0.000332220000000,0.000584664000000,0.000566886000000,0.032481133000000,0.000598491000000,0.000056072000000,0.000048566000000,0.000127578000000,0.000093208000000 +0.000019344500000,0.000033948000000,0.000591380000000,0.032436491000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020727000000,0.000052121000000,0.000224763000000,0.000053306000000,0.000388319000000,0.000346442000000,0.000583479000000,0.000546738000000,0.031762121000000,0.000589404000000,0.000076220000000,0.000048566000000,0.000126787000000,0.000054887000000 +0.000019542000000,0.000034344000000,0.000557010000000,0.031555504000000,0.000034357000000,0.000095577000000,0.000022900000000,0.000021517000000,0.000049355000000,0.000228714000000,0.000066738000000,0.000329849000000,0.000383578000000,0.000547133000000,0.000629306000000,0.031740788000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000027246000000,0.000034738000000,0.000557404000000,0.030803307000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000020529500000,0.000048961000000,0.000224763000000,0.000055676000000,0.000364219000000,0.000372121000000,0.000583084000000,0.000578738000000,0.034307501000000,0.000624565000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000055282000000 +0.000019542000000,0.000033553000000,0.000626540000000,0.031832837000000,0.000017566500000,0.000129553000000,0.000022702500000,0.000021517500000,0.000052516000000,0.000227133000000,0.000052516000000,0.000330244000000,0.000332220000000,0.000584269000000,0.000545158000000,0.034123403000000,0.000668812000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000033553000000,0.000626936000000,0.031286862000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000043838000000,0.000055677000000,0.000225158000000,0.000052911000000,0.000363824000000,0.000365800000000,0.000547923000000,0.000628516000000,0.032394219000000,0.000589799000000,0.000056467000000,0.000120466000000,0.000130738000000,0.000054492000000 +0.000019344500000,0.000033158000000,0.000591380000000,0.033901773000000,0.000017566500000,0.000095578000000,0.000022900500000,0.000021715000000,0.000049751000000,0.000261899000000,0.000053702000000,0.000329849000000,0.000331824000000,0.000583478000000,0.000578343000000,0.032370910000000,0.000622590000000,0.000056466000000,0.000065553000000,0.000127182000000,0.000054491000000 +0.000019344500000,0.000033553000000,0.000557009000000,0.032262663000000,0.000017369000000,0.000095973000000,0.000039295000000,0.000021517500000,0.000049356000000,0.000227923000000,0.000053701000000,0.000330640000000,0.000332220000000,0.000583874000000,0.000559775000000,0.031915010000000,0.000589010000000,0.000056071000000,0.000075824000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000033949000000,0.000557405000000,0.033553724000000,0.000017369000000,0.000097159000000,0.000022307500000,0.000021320000000,0.000062788000000,0.000225948000000,0.000054491000000,0.000363824000000,0.000344861000000,0.000547133000000,0.000586244000000,0.031906713000000,0.000588220000000,0.000056072000000,0.000049355000000,0.000161948000000,0.000054097000000 +0.000046011000000,0.000034343000000,0.000603232000000,0.031219701000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000020332500000,0.000049356000000,0.000225948000000,0.000066343000000,0.000330244000000,0.000331034000000,0.000641157000000,0.000579923000000,0.032801923000000,0.000590195000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000718195000000,0.032049330000000,0.000017369000000,0.000095578000000,0.000023492500000,0.000020530000000,0.000049356000000,0.000227528000000,0.000050541000000,0.000363824000000,0.000378442000000,0.000686195000000,0.000545948000000,0.031938318000000,0.000628516000000,0.000056072000000,0.000048565000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031630960000000,0.000017567000000,0.000180121000000,0.000023492500000,0.000020529500000,0.000049355000000,0.000226738000000,0.000084516000000,0.000329850000000,0.000331430000000,0.000783380000000,0.000854096000000,0.031859701000000,0.000589799000000,0.000141800000000,0.000049356000000,0.000160763000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031734467000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000021122000000,0.000049751000000,0.000227134000000,0.000050936000000,0.000330639000000,0.000365405000000,0.000999083000000,0.000579133000000,0.031953330000000,0.000555430000000,0.000059627000000,0.000049356000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031585923000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000229504000000,0.000050146000000,0.000329849000000,0.000333800000000,0.000649059000000,0.000545157000000,0.032288343000000,0.000555430000000,0.000056071000000,0.000048566000000,0.000127182000000,0.000056072000000 +0.000019542000000,0.000031578000000,0.000782195000000,0.031122516000000,0.000017369500000,0.000095182000000,0.000023097500000,0.000021517500000,0.000048961000000,0.000226343000000,0.000050541000000,0.000330245000000,0.000333009000000,0.000547529000000,0.000559775000000,0.031844293000000,0.000623380000000,0.000056467000000,0.000062393000000,0.000132318000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.001142491000000,0.031285282000000,0.000017567000000,0.000096368000000,0.000022505000000,0.000021517500000,0.000049356000000,0.000227134000000,0.000050541000000,0.000363825000000,0.000350392000000,0.000561356000000,0.000594936000000,0.032005083000000,0.000603232000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000701997000000,0.031800837000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020727000000,0.000049355000000,0.000229108000000,0.000049751000000,0.000331034000000,0.000333405000000,0.000799577000000,0.000545158000000,0.032383552000000,0.000555429000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031634121000000,0.000017369500000,0.000129158000000,0.000050159000000,0.000021517500000,0.000048961000000,0.000261899000000,0.000050146000000,0.000364614000000,0.000365405000000,0.000695676000000,0.000545553000000,0.032137824000000,0.000556219000000,0.000056072000000,0.000048960000000,0.000129948000000,0.000054097000000 +0.000019542500000,0.000031577000000,0.000557405000000,0.031382467000000,0.000017567000000,0.000095578000000,0.000028826000000,0.000020924500000,0.000063183000000,0.000225948000000,0.000050540000000,0.000329454000000,0.000331824000000,0.000547528000000,0.000615083000000,0.030872048000000,0.000949306000000,0.000056467000000,0.000048170000000,0.000160763000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000749404000000,0.031130417000000,0.000017369500000,0.000095973000000,0.000023295000000,0.000020727000000,0.000048960000000,0.000227924000000,0.000050935000000,0.000330245000000,0.000365799000000,0.000583874000000,0.000566491000000,0.031371800000000,0.000554639000000,0.000090442000000,0.000049356000000,0.000127183000000,0.000087677000000 +0.000019542000000,0.000031973000000,0.000923627000000,0.031724195000000,0.000017369500000,0.000095973000000,0.000023690000000,0.000020727500000,0.000049751000000,0.000227923000000,0.000050145000000,0.000363824000000,0.000331825000000,0.000582688000000,0.000545552000000,0.032485479000000,0.000660911000000,0.000059627000000,0.000048566000000,0.000133899000000,0.000067529000000 +0.000019542000000,0.000031973000000,0.000556219000000,0.031631356000000,0.000017567000000,0.000095973000000,0.000037122000000,0.000020530000000,0.000049751000000,0.000229504000000,0.000084122000000,0.000330244000000,0.000331429000000,0.000547133000000,0.000579133000000,0.031858516000000,0.000685404000000,0.000056072000000,0.000048170000000,0.000162738000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000591775000000,0.032155997000000,0.000017369500000,0.000095578000000,0.000022307500000,0.000021517500000,0.000048960000000,0.000227923000000,0.000050145000000,0.000471282000000,0.000362244000000,0.000723726000000,0.000584268000000,0.031342960000000,0.000589405000000,0.000057257000000,0.000049355000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.032749775000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000020530000000,0.000049751000000,0.000260714000000,0.000050146000000,0.000345256000000,0.000331035000000,0.000584664000000,0.000545158000000,0.031485183000000,0.000555825000000,0.000056072000000,0.000048960000000,0.000129949000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000555824000000,0.032803108000000,0.000017567000000,0.000171034000000,0.000022702500000,0.000020727500000,0.000048960000000,0.000239380000000,0.000049356000000,0.000363824000000,0.000384368000000,0.000565306000000,0.000579133000000,0.031382072000000,0.000556615000000,0.000056862000000,0.000048960000000,0.000127182000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000557405000000,0.031937133000000,0.000018554500000,0.000095578000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000226343000000,0.000049751000000,0.000330639000000,0.000331825000000,0.000546738000000,0.000600861000000,0.031497035000000,0.000602442000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000607972000000,0.031741578000000,0.000017566500000,0.000095183000000,0.000042060500000,0.000021715000000,0.000049356000000,0.000231084000000,0.000052516000000,0.000330245000000,0.000365405000000,0.000617454000000,0.000560961000000,0.031333874000000,0.000590195000000,0.000090442000000,0.000048961000000,0.000130739000000,0.000055282000000 +0.000019542000000,0.000059628000000,0.000591380000000,0.032062763000000,0.000018554000000,0.000095182000000,0.000029616500000,0.000021122500000,0.000083331000000,0.000346837000000,0.000051331000000,0.000399380000000,0.000331825000000,0.000625355000000,0.000578343000000,0.031512442000000,0.000589800000000,0.000072665000000,0.000049356000000,0.000127183000000,0.000055281000000 +0.000027443500000,0.000031578000000,0.000590590000000,0.032300195000000,0.000017369000000,0.000095973000000,0.000023690500000,0.000021715000000,0.000048961000000,0.000255578000000,0.000050146000000,0.000330245000000,0.000331824000000,0.000546738000000,0.000617059000000,0.031994417000000,0.000555429000000,0.000125997000000,0.000048565000000,0.000127577000000,0.000054887000000 +0.000019542500000,0.000031578000000,0.000557800000000,0.031544442000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000050146000000,0.000225158000000,0.000049751000000,0.000370540000000,0.000806688000000,0.000583479000000,0.000545947000000,0.032154417000000,0.000555034000000,0.000056862000000,0.000048565000000,0.000128763000000,0.000067923000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.032347602000000,0.000017566500000,0.000142985000000,0.000023097500000,0.000020925000000,0.000049356000000,0.000229899000000,0.000051726000000,0.000330245000000,0.000379232000000,0.000677503000000,0.000586639000000,0.031138319000000,0.000625751000000,0.000056071000000,0.000048171000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.032562910000000,0.000017961500000,0.000095183000000,0.000022110000000,0.000021517500000,0.000049355000000,0.000228713000000,0.000105455000000,0.000363825000000,0.000332614000000,0.000664466000000,0.000714244000000,0.031276590000000,0.000589405000000,0.000056466000000,0.000048961000000,0.000197108000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000608763000000,0.032692095000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020530000000,0.000048961000000,0.000228714000000,0.000098738000000,0.000330244000000,0.000404516000000,0.000547528000000,0.000563725000000,0.031531010000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000130343000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.032154021000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000022110000000,0.000049751000000,0.000225948000000,0.000053701000000,0.000346837000000,0.000332220000000,0.000615874000000,0.000546738000000,0.031182961000000,0.000555429000000,0.000056467000000,0.000049751000000,0.000129158000000,0.000054096000000 +0.000020530000000,0.000031578000000,0.000557010000000,0.031972689000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000021319500000,0.000049750000000,0.000227133000000,0.000050146000000,0.000343281000000,0.000331035000000,0.000593750000000,0.000578342000000,0.033874514000000,0.000589009000000,0.000056467000000,0.000048565000000,0.000161948000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000678293000000,0.031384442000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021122000000,0.000049751000000,0.000227924000000,0.000053307000000,0.000330245000000,0.000345652000000,0.000640367000000,0.000545553000000,0.032380391000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000830392000000,0.032473627000000,0.000034554000000,0.000095183000000,0.000030011000000,0.000020529500000,0.000049356000000,0.000229108000000,0.000050540000000,0.000364615000000,0.000334590000000,0.000620220000000,0.000545158000000,0.032199849000000,0.000589404000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000065158000000,0.000622195000000,0.034996884000000,0.000017566500000,0.000144565000000,0.000022702500000,0.000037319500000,0.000076220000000,0.000238195000000,0.000050540000000,0.000331035000000,0.000372121000000,0.000615479000000,0.000578738000000,0.031081825000000,0.000627726000000,0.000090047000000,0.000048961000000,0.000147331000000,0.000053701000000 +0.000038900000000,0.000031578000000,0.000592170000000,0.032926761000000,0.000017369000000,0.000095973000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000228318000000,0.000050936000000,0.000363825000000,0.000331430000000,0.000631281000000,0.000546343000000,0.031385627000000,0.000555034000000,0.000056467000000,0.000049355000000,0.000126787000000,0.000053701000000 +0.000026455500000,0.000031578000000,0.000557405000000,0.033526070000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020529500000,0.000049750000000,0.000231084000000,0.000050541000000,0.000330245000000,0.000366195000000,0.000573603000000,0.000558985000000,0.031410121000000,0.000589010000000,0.000056467000000,0.000048565000000,0.000126787000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.031927257000000,0.000017566500000,0.000095577000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000228714000000,0.000086097000000,0.000330244000000,0.000331825000000,0.000581108000000,0.000578738000000,0.031367454000000,0.000589404000000,0.000056861000000,0.000048566000000,0.000126787000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000591775000000,0.031857726000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021122500000,0.000049356000000,0.000228318000000,0.000050146000000,0.000401750000000,0.000331429000000,0.000581898000000,0.000545553000000,0.032126367000000,0.000589800000000,0.000056071000000,0.000050146000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.031796096000000,0.000017566500000,0.000095183000000,0.000023295500000,0.000021320000000,0.000048960000000,0.000225553000000,0.000049751000000,0.000330244000000,0.000383972000000,0.000579528000000,0.000579134000000,0.031302664000000,0.000555429000000,0.000056072000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031608047000000,0.000017369500000,0.000164714000000,0.000022307500000,0.000020530000000,0.000049356000000,0.000225553000000,0.000050540000000,0.000399380000000,0.000331824000000,0.000580714000000,0.000578738000000,0.030804097000000,0.000830392000000,0.000056072000000,0.000049751000000,0.000127183000000,0.000054492000000 +0.000019739500000,0.000031973000000,0.000557010000000,0.031673232000000,0.000017962000000,0.000095578000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000229899000000,0.000050541000000,0.000330244000000,0.000366195000000,0.000581108000000,0.000545552000000,0.031412096000000,0.000568861000000,0.000056467000000,0.000082541000000,0.000161554000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000692911000000,0.031871553000000,0.000017567000000,0.000095578000000,0.000023098000000,0.000020332000000,0.000051331000000,0.000313256000000,0.000050541000000,0.000385158000000,0.000332614000000,0.000579923000000,0.000595331000000,0.031279356000000,0.000639578000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.032063158000000,0.000017567000000,0.000095183000000,0.000039690500000,0.000021517000000,0.000049356000000,0.000225949000000,0.000050936000000,0.000331035000000,0.000331429000000,0.000581109000000,0.000654590000000,0.031205480000000,0.000590194000000,0.000056466000000,0.000048171000000,0.000127973000000,0.000055281000000 +0.000019542000000,0.000031973000000,0.000656960000000,0.032733577000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021319500000,0.000130343000000,0.000226344000000,0.000050936000000,0.000331035000000,0.000332220000000,0.000618244000000,0.000545157000000,0.030979899000000,0.000555034000000,0.000070689000000,0.000048961000000,0.000163923000000,0.000054097000000 +0.000019344500000,0.000069899000000,0.000593355000000,0.031133183000000,0.000032776500000,0.000095182000000,0.000023492500000,0.000027443000000,0.000081751000000,0.000264269000000,0.000050541000000,0.000364220000000,0.000331824000000,0.000580714000000,0.000580318000000,0.031020985000000,0.000555430000000,0.000055677000000,0.000048961000000,0.000126787000000,0.000074639000000 +0.000026455500000,0.000045010000000,0.000557800000000,0.031760541000000,0.000017962000000,0.000095973000000,0.000023097500000,0.000020332000000,0.000053702000000,0.000225948000000,0.000049751000000,0.000330244000000,0.000365800000000,0.000581108000000,0.000579923000000,0.030731801000000,0.000602442000000,0.000056072000000,0.000050145000000,0.000127182000000,0.000054887000000 +0.000019542500000,0.000031578000000,0.000557799000000,0.032266614000000,0.000017369000000,0.000291134000000,0.000022900000000,0.000021912000000,0.000048961000000,0.000227923000000,0.000162738000000,0.000363429000000,0.000331430000000,0.000581899000000,0.000544762000000,0.031323207000000,0.000643924000000,0.000056467000000,0.000048960000000,0.000129948000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000590985000000,0.031003998000000,0.000017566500000,0.000134688000000,0.000022702500000,0.000020727000000,0.000048961000000,0.000556220000000,0.000097948000000,0.000333010000000,0.000399380000000,0.000579528000000,0.000578738000000,0.031615948000000,0.000604812000000,0.000056466000000,0.000048960000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000828417000000,0.031069973000000,0.000017369000000,0.000111380000000,0.000022900000000,0.000021122000000,0.000051331000000,0.000307331000000,0.000054097000000,0.000329850000000,0.000333404000000,0.000579923000000,0.000586639000000,0.030994911000000,0.000555429000000,0.000056466000000,0.000048961000000,0.000127182000000,0.000054096000000 +0.000019344500000,0.000032368000000,0.000601652000000,0.031267504000000,0.000017961500000,0.000095578000000,0.000022702500000,0.000021714500000,0.000050145000000,0.000229109000000,0.000086097000000,0.000329850000000,0.000331034000000,0.000617454000000,0.000545948000000,0.032070269000000,0.000555034000000,0.000056072000000,0.000048566000000,0.000129158000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.030638566000000,0.000017566500000,0.000109010000000,0.000023097500000,0.000020529500000,0.000093998000000,0.000226738000000,0.000065949000000,0.000330244000000,0.000332614000000,0.000716219000000,0.000688960000000,0.031624639000000,0.000590985000000,0.000056862000000,0.000049356000000,0.000176961000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031641627000000,0.000017369000000,0.000096368000000,0.000023295000000,0.000021517000000,0.000049356000000,0.000231084000000,0.000052516000000,0.000364219000000,0.000332219000000,0.000547528000000,0.000615874000000,0.031096047000000,0.001012120000000,0.000056862000000,0.000048961000000,0.000128368000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000606392000000,0.032148490000000,0.000017369000000,0.000095972000000,0.000032381500000,0.000021517000000,0.000048960000000,0.000229504000000,0.000073849000000,0.000330639000000,0.000365800000000,0.000709898000000,0.000580319000000,0.031334665000000,0.000623775000000,0.000072665000000,0.000048566000000,0.000130344000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000664861000000,0.031113825000000,0.000017369000000,0.000096763000000,0.000040085000000,0.000020332000000,0.000049356000000,0.000228319000000,0.000086492000000,0.000366985000000,0.000331825000000,0.000583874000000,0.000580318000000,0.031312145000000,0.000589009000000,0.000056862000000,0.000048961000000,0.000218442000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031308195000000,0.000018554000000,0.000095578000000,0.000047789000000,0.000021714500000,0.000049356000000,0.000227923000000,0.000108615000000,0.000330639000000,0.000366590000000,0.000547923000000,0.000615874000000,0.031216146000000,0.000589010000000,0.000056467000000,0.000048960000000,0.000141010000000,0.000130738000000 +0.000019344500000,0.000045405000000,0.000557010000000,0.031652689000000,0.000017764500000,0.000095578000000,0.000055690000000,0.000020530000000,0.000049355000000,0.000226739000000,0.000055676000000,0.000329455000000,0.000331430000000,0.000546343000000,0.000611133000000,0.031111455000000,0.000558590000000,0.000058837000000,0.000048961000000,0.000126788000000,0.000157602000000 +0.000036332000000,0.000031578000000,0.000571232000000,0.031185726000000,0.000017369500000,0.000129553000000,0.000024085500000,0.000020529500000,0.000049751000000,0.000227924000000,0.000131924000000,0.000363825000000,0.000331825000000,0.000583873000000,0.000545948000000,0.032041034000000,0.000555824000000,0.000056862000000,0.000049356000000,0.000188812000000,0.000071084000000 +0.000019344500000,0.000031183000000,0.000591775000000,0.031396294000000,0.000017369500000,0.000095578000000,0.000029418500000,0.000020529500000,0.000049356000000,0.000240566000000,0.000069108000000,0.000339331000000,0.000365405000000,0.000548713000000,0.000721355000000,0.031152146000000,0.000589405000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000069109000000 +0.000019542000000,0.000031973000000,0.000626935000000,0.032262268000000,0.000018159500000,0.000095578000000,0.000022900000000,0.000020529500000,0.000049355000000,0.000226343000000,0.000126788000000,0.000363825000000,0.000331825000000,0.000549899000000,0.000578343000000,0.031292787000000,0.000624961000000,0.000056466000000,0.000048960000000,0.000127578000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031613973000000,0.000017567000000,0.000095973000000,0.000039493000000,0.000021517500000,0.000048961000000,0.000225948000000,0.000053702000000,0.000329849000000,0.000365010000000,0.000583874000000,0.000547133000000,0.031485577000000,0.000605998000000,0.000056467000000,0.000048960000000,0.000150491000000,0.000055676000000 +0.000019542500000,0.000031578000000,0.000558195000000,0.031302664000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000020529500000,0.000049750000000,0.000227923000000,0.000053307000000,0.000434540000000,0.000346441000000,0.000547133000000,0.000578343000000,0.031322417000000,0.000556614000000,0.000056467000000,0.000061997000000,0.000129553000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000556220000000,0.031468590000000,0.000017567000000,0.000095182000000,0.000023097500000,0.000021714500000,0.000049356000000,0.000226343000000,0.000053307000000,0.000330244000000,0.000365010000000,0.000547133000000,0.000577947000000,0.031041134000000,0.000555035000000,0.000124813000000,0.000048170000000,0.000127973000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000645108000000,0.031094467000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020727000000,0.000049751000000,0.000228319000000,0.000053702000000,0.000329849000000,0.000332219000000,0.000583479000000,0.000628121000000,0.033387009000000,0.000588219000000,0.000056466000000,0.000048566000000,0.000127577000000,0.000054886000000 +0.000019542000000,0.000031973000000,0.000643923000000,0.031069183000000,0.000018159500000,0.000129158000000,0.000023295000000,0.000020727000000,0.000049355000000,0.000261898000000,0.000055677000000,0.000417158000000,0.000332615000000,0.000547528000000,0.000614689000000,0.031268689000000,0.000589405000000,0.000056072000000,0.000048171000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000641157000000,0.034040440000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000240960000000,0.000091627000000,0.000330244000000,0.000365404000000,0.000564911000000,0.000578343000000,0.033026318000000,0.000556220000000,0.000056072000000,0.000048170000000,0.000130343000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000557010000000,0.032263849000000,0.000017566500000,0.000095972000000,0.000022900000000,0.000021715000000,0.000048961000000,0.000225553000000,0.000050541000000,0.000456664000000,0.000331429000000,0.000583874000000,0.000545553000000,0.031379306000000,0.000555429000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000071084000000,0.000557800000000,0.031309380000000,0.000027641000000,0.000095183000000,0.000022505000000,0.000021517500000,0.000049356000000,0.000227529000000,0.000050541000000,0.000330639000000,0.000401355000000,0.000546738000000,0.000595725000000,0.032105824000000,0.000688565000000,0.000056467000000,0.000048961000000,0.000127577000000,0.000053701000000 +0.000036530000000,0.000031973000000,0.000591380000000,0.031600145000000,0.000017567000000,0.000095973000000,0.000022307500000,0.000020727000000,0.000049750000000,0.000227923000000,0.000051331000000,0.000364219000000,0.000331430000000,0.000639578000000,0.000579133000000,0.031165973000000,0.000606788000000,0.000056072000000,0.000048961000000,0.000129158000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000652614000000,0.031608442000000,0.000017369500000,0.000095577000000,0.000023097500000,0.000021715000000,0.000052516000000,0.000225158000000,0.000051726000000,0.000330244000000,0.000331035000000,0.000584268000000,0.000545158000000,0.031071948000000,0.000589010000000,0.000056072000000,0.000048170000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031774763000000,0.000017369500000,0.000095578000000,0.000039295500000,0.000020727000000,0.000049751000000,0.000226738000000,0.000050146000000,0.000329849000000,0.000332219000000,0.000546738000000,0.000578738000000,0.031233924000000,0.000555429000000,0.000056466000000,0.000048565000000,0.000157208000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000557010000000,0.031404590000000,0.000017567000000,0.000111381000000,0.000022702500000,0.000020332000000,0.000054096000000,0.000233454000000,0.000049355000000,0.000344072000000,0.000331429000000,0.000616664000000,0.000590195000000,0.030857430000000,0.000557405000000,0.000090047000000,0.000082146000000,0.000134689000000,0.000073059000000 +0.000019542000000,0.000031578000000,0.000572022000000,0.031322417000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000021912500000,0.000049356000000,0.000226739000000,0.000051726000000,0.000329850000000,0.000504466000000,0.000583479000000,0.000545157000000,0.031891701000000,0.000610738000000,0.000056467000000,0.000048565000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031393529000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000020332000000,0.000050541000000,0.000224763000000,0.000050541000000,0.000364219000000,0.000331429000000,0.000548713000000,0.000616269000000,0.031757775000000,0.000590195000000,0.000056466000000,0.000048566000000,0.000190393000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000750194000000,0.031360738000000,0.000017566500000,0.000117306000000,0.000023492500000,0.000020727000000,0.000048960000000,0.000228319000000,0.000050146000000,0.000330244000000,0.000365010000000,0.000562935000000,0.000579528000000,0.030628294000000,0.000701997000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000626541000000,0.031739997000000,0.000017369000000,0.000109010000000,0.000022702500000,0.000020529500000,0.000049751000000,0.000228713000000,0.000049356000000,0.000401356000000,0.000331825000000,0.000583084000000,0.000545553000000,0.031355603000000,0.000589404000000,0.000056862000000,0.000048566000000,0.000129948000000,0.000053701000000 +0.000019542500000,0.000031578000000,0.000604022000000,0.031131998000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000021320000000,0.000049356000000,0.000225948000000,0.000051331000000,0.000330244000000,0.000400565000000,0.000547528000000,0.000578737000000,0.031244590000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000199084000000,0.000055282000000 +0.000020727000000,0.000031578000000,0.000559380000000,0.031455553000000,0.000017369000000,0.000110985000000,0.000023097500000,0.000030603500000,0.000048960000000,0.000227529000000,0.000070689000000,0.000330245000000,0.000332615000000,0.000546738000000,0.000577948000000,0.031328739000000,0.000555429000000,0.000056467000000,0.000048565000000,0.000126787000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000576367000000,0.031125676000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021517000000,0.000048961000000,0.000227923000000,0.000050936000000,0.000330640000000,0.000331825000000,0.000582689000000,0.000544762000000,0.031453578000000,0.000588614000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000054097000000 +0.000036332000000,0.000031578000000,0.000625355000000,0.031647158000000,0.000033961500000,0.000095578000000,0.000023295500000,0.000020332000000,0.000096368000000,0.000230294000000,0.000051726000000,0.000331034000000,0.000361849000000,0.000547529000000,0.000594935000000,0.032065923000000,0.000623775000000,0.000056467000000,0.000049356000000,0.000182886000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000590589000000,0.031850219000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021912000000,0.000050936000000,0.000227528000000,0.000049751000000,0.000414787000000,0.000332219000000,0.000583084000000,0.000594540000000,0.030971998000000,0.000555034000000,0.000056466000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.031527059000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021517500000,0.000049751000000,0.000230294000000,0.000051331000000,0.000330245000000,0.000401356000000,0.000596121000000,0.000544367000000,0.031035208000000,0.000555825000000,0.000105454000000,0.000083331000000,0.000127578000000,0.000087676000000 +0.000019344500000,0.000031578000000,0.000642343000000,0.031910269000000,0.000017961500000,0.000095578000000,0.000023492500000,0.000020332000000,0.000049356000000,0.000297454000000,0.000050936000000,0.000364220000000,0.000331825000000,0.000547529000000,0.000579133000000,0.031145825000000,0.000589405000000,0.000056467000000,0.000049751000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000571232000000,0.031867602000000,0.000017566500000,0.000129158000000,0.000023295000000,0.000020727000000,0.000051331000000,0.000225553000000,0.000050541000000,0.000329849000000,0.000400170000000,0.000707133000000,0.000591775000000,0.031574072000000,0.000589010000000,0.000056862000000,0.000049356000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000626540000000,0.031794911000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000052516000000,0.000225553000000,0.000050541000000,0.000330639000000,0.000334590000000,0.000583084000000,0.000545553000000,0.032221972000000,0.000671182000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000592565000000,0.031579207000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020529500000,0.000048961000000,0.000225553000000,0.000050146000000,0.000560171000000,0.000334195000000,0.000548319000000,0.000578738000000,0.031776738000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000134689000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032646268000000,0.000017566500000,0.000095577000000,0.000023493000000,0.000021517000000,0.000054887000000,0.000226343000000,0.000049751000000,0.000330244000000,0.000331430000000,0.000561750000000,0.000581898000000,0.031237480000000,0.000555824000000,0.000056862000000,0.000048960000000,0.000280467000000,0.000052912000000 +0.000019542500000,0.000031578000000,0.000556615000000,0.031760936000000,0.000017566500000,0.000097948000000,0.000023493000000,0.000022110000000,0.000049355000000,0.000226739000000,0.000071874000000,0.000330639000000,0.000331429000000,0.000583873000000,0.000545158000000,0.031628195000000,0.000624565000000,0.000056071000000,0.000048961000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000598491000000,0.031374961000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000064579000000,0.000049751000000,0.000227528000000,0.000050936000000,0.000329849000000,0.000365405000000,0.000547133000000,0.000694886000000,0.031868787000000,0.000626540000000,0.000059233000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000048171000000,0.000643923000000,0.031695355000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000028826000000,0.000049355000000,0.000228713000000,0.000050936000000,0.000364615000000,0.000332219000000,0.000562936000000,0.000613899000000,0.032037874000000,0.000736762000000,0.000056861000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000036332000000,0.000031578000000,0.000592171000000,0.031642417000000,0.000043443500000,0.000095578000000,0.000022702500000,0.000021715000000,0.000048961000000,0.000225554000000,0.000050541000000,0.000330640000000,0.000403330000000,0.000611923000000,0.000545553000000,0.031217726000000,0.000612714000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.033645774000000,0.000017566500000,0.000095973000000,0.000023295000000,0.000021912500000,0.000048961000000,0.000224763000000,0.000051331000000,0.000363824000000,0.000395429000000,0.000617454000000,0.000614294000000,0.031454763000000,0.000554639000000,0.000056466000000,0.000082145000000,0.000160368000000,0.000082146000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031260393000000,0.000017369500000,0.000095578000000,0.000022900500000,0.000021517000000,0.000049750000000,0.000225553000000,0.000049750000000,0.000348023000000,0.000366195000000,0.000547528000000,0.000579529000000,0.031003208000000,0.000555034000000,0.000056466000000,0.000048170000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031479651000000,0.000017567000000,0.000095182000000,0.000022505000000,0.000020727000000,0.000050541000000,0.000466936000000,0.000049750000000,0.000330639000000,0.000332614000000,0.000583479000000,0.000545158000000,0.031408936000000,0.000589800000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000765997000000,0.031637676000000,0.000017369500000,0.000095578000000,0.000022505000000,0.000020332000000,0.000049750000000,0.000257553000000,0.000050541000000,0.000329454000000,0.000332220000000,0.000617454000000,0.000603627000000,0.034037674000000,0.000639182000000,0.000056467000000,0.000049751000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031583948000000,0.000017369500000,0.000095578000000,0.000023098000000,0.000020530000000,0.000049751000000,0.000229108000000,0.000054886000000,0.000330244000000,0.000416368000000,0.000547528000000,0.000594936000000,0.034235995000000,0.000590195000000,0.000056467000000,0.000048566000000,0.000131924000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031801627000000,0.000017566500000,0.000150096000000,0.000022307500000,0.000020529500000,0.000048960000000,0.000225553000000,0.000055281000000,0.000370936000000,0.000331825000000,0.000995132000000,0.000544368000000,0.032607947000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000557799000000,0.033830267000000,0.000017369000000,0.000108615000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000226739000000,0.000101503000000,0.000330244000000,0.000365800000000,0.000579528000000,0.000917701000000,0.031937133000000,0.000555429000000,0.000056072000000,0.000048170000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000051726000000,0.000590985000000,0.030402320000000,0.000017369000000,0.000095578000000,0.000023493000000,0.000027838500000,0.000049751000000,0.000226344000000,0.000052516000000,0.000364220000000,0.000332219000000,0.000584269000000,0.000579133000000,0.031453183000000,0.000603232000000,0.000056467000000,0.000048171000000,0.000127577000000,0.000054492000000 +0.000019344500000,0.000045800000000,0.000592170000000,0.030759060000000,0.000017566500000,0.000095973000000,0.000022703000000,0.000020727500000,0.000049356000000,0.000263874000000,0.000053701000000,0.000330245000000,0.000385948000000,0.000548713000000,0.000578738000000,0.031047060000000,0.000624960000000,0.000133899000000,0.000048171000000,0.000131923000000,0.000054886000000 +0.000019542000000,0.000031183000000,0.000590985000000,0.031735651000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021715000000,0.000049356000000,0.000227528000000,0.000054491000000,0.000329849000000,0.000573997000000,0.000585849000000,0.000545948000000,0.032161528000000,0.000640763000000,0.000107035000000,0.000048960000000,0.000129553000000,0.000054492000000 +0.000050159000000,0.000031578000000,0.000556219000000,0.031584343000000,0.000034356500000,0.000095973000000,0.000029418500000,0.000020332000000,0.000049355000000,0.000228713000000,0.000055676000000,0.000363824000000,0.000379232000000,0.000616269000000,0.000580319000000,0.031719454000000,0.000555429000000,0.000071874000000,0.000068713000000,0.000200664000000,0.000053306000000 +0.000019542000000,0.000031973000000,0.000572812000000,0.031763701000000,0.000017566500000,0.000095578000000,0.000022307500000,0.000021517500000,0.000050541000000,0.000227529000000,0.000054097000000,0.000330244000000,0.000331430000000,0.000546738000000,0.000630096000000,0.031295553000000,0.000555430000000,0.000056072000000,0.000049750000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000592170000000,0.032668786000000,0.000017566500000,0.000095183000000,0.000022505000000,0.000021517000000,0.000049356000000,0.000226738000000,0.000052517000000,0.000363825000000,0.000365010000000,0.000584664000000,0.000545552000000,0.031448442000000,0.000589405000000,0.000056466000000,0.000048170000000,0.000126788000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000590589000000,0.031590664000000,0.000017566500000,0.000096368000000,0.000022900500000,0.000021517500000,0.000048960000000,0.000226738000000,0.000052911000000,0.000330245000000,0.000331429000000,0.000584269000000,0.000613503000000,0.032400145000000,0.000637207000000,0.000056466000000,0.000049751000000,0.000161158000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.031478072000000,0.000017566500000,0.000095577000000,0.000023493000000,0.000021517500000,0.000049356000000,0.000231479000000,0.000067529000000,0.000329849000000,0.000331430000000,0.000547528000000,0.000613108000000,0.030986221000000,0.000613899000000,0.000056862000000,0.000082541000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.031960837000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000021122500000,0.000048961000000,0.000261899000000,0.000052911000000,0.000331429000000,0.000346442000000,0.000585454000000,0.000544763000000,0.031878268000000,0.000555035000000,0.000056072000000,0.000061602000000,0.000128763000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000599677000000,0.031864442000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000021517500000,0.000049355000000,0.000227528000000,0.000052516000000,0.000331034000000,0.000331034000000,0.000635232000000,0.000578343000000,0.031681924000000,0.000555825000000,0.000056071000000,0.000048960000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000591380000000,0.031626219000000,0.000017567000000,0.000096368000000,0.000022109500000,0.000058653500000,0.000069899000000,0.000227528000000,0.000052911000000,0.000414393000000,0.000365800000000,0.000546738000000,0.000579923000000,0.031364689000000,0.000589404000000,0.000056072000000,0.000048171000000,0.000127578000000,0.000055677000000 +0.000019542000000,0.000031577000000,0.000632466000000,0.031802812000000,0.000017369500000,0.000129158000000,0.000022702500000,0.000035344500000,0.000049355000000,0.000228319000000,0.000052516000000,0.000330640000000,0.000331035000000,0.000615874000000,0.000545553000000,0.030984244000000,0.000776269000000,0.000056467000000,0.000048961000000,0.000128368000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031877084000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021517500000,0.000049356000000,0.000227529000000,0.000054097000000,0.000363824000000,0.000378047000000,0.000797998000000,0.000578738000000,0.031508097000000,0.000589405000000,0.000056072000000,0.000050146000000,0.000127577000000,0.000074639000000 +0.000019542000000,0.000045010000000,0.000558195000000,0.031570516000000,0.000018159500000,0.000095973000000,0.000039295000000,0.000021517500000,0.000048960000000,0.000256368000000,0.000054097000000,0.000330244000000,0.000331825000000,0.000590985000000,0.000578738000000,0.030922221000000,0.000590985000000,0.000056072000000,0.000082146000000,0.000129948000000,0.000057652000000 +0.000027443500000,0.000031578000000,0.000592170000000,0.031738022000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020530000000,0.000048960000000,0.000226343000000,0.000052911000000,0.000329850000000,0.000342096000000,0.000547133000000,0.000544368000000,0.031927257000000,0.000555824000000,0.000056467000000,0.000049356000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000590195000000,0.032264639000000,0.000024085500000,0.000096368000000,0.000023295500000,0.000020727500000,0.000051331000000,0.000262689000000,0.000054096000000,0.000344072000000,0.000331035000000,0.000617454000000,0.000590985000000,0.031120146000000,0.000570837000000,0.000056467000000,0.000048170000000,0.000127577000000,0.000053306000000 +0.000019344500000,0.000031578000000,0.000557800000000,0.031935157000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000229898000000,0.000053306000000,0.000329849000000,0.000331429000000,0.000583873000000,0.000612713000000,0.031232738000000,0.000588614000000,0.000056466000000,0.000048960000000,0.000153652000000,0.000070689000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.032276096000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020529500000,0.000048961000000,0.000229504000000,0.000053307000000,0.000364220000000,0.000365799000000,0.000548318000000,0.000545948000000,0.031534170000000,0.000589405000000,0.000056861000000,0.000048566000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000571627000000,0.031805183000000,0.000017567000000,0.000196319000000,0.000022900000000,0.000020529500000,0.000050936000000,0.000229899000000,0.000052911000000,0.000329849000000,0.000331824000000,0.000602442000000,0.000586244000000,0.031275010000000,0.000557800000000,0.000095578000000,0.000048961000000,0.000131528000000,0.000055677000000 +0.000019542500000,0.000031578000000,0.000803923000000,0.031371800000000,0.000017369500000,0.000095973000000,0.000022702500000,0.000021517000000,0.000049356000000,0.000227923000000,0.000052911000000,0.000349602000000,0.000365799000000,0.000584664000000,0.000591380000000,0.031665330000000,0.000573997000000,0.000056071000000,0.000048961000000,0.000162739000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000640367000000,0.032019701000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000057665500000,0.000083331000000,0.000226738000000,0.000053701000000,0.000330244000000,0.000331034000000,0.000546738000000,0.000545158000000,0.031630960000000,0.000588219000000,0.000056861000000,0.000048565000000,0.000129948000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000626541000000,0.032308095000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000021715000000,0.000048961000000,0.000225948000000,0.000055281000000,0.000329850000000,0.000331825000000,0.000864368000000,0.000578738000000,0.031434220000000,0.000632466000000,0.000056072000000,0.000048565000000,0.000127577000000,0.000088072000000 +0.000019542000000,0.000031578000000,0.000555825000000,0.032209725000000,0.000017567000000,0.000095182000000,0.000023295000000,0.000021517000000,0.000050146000000,0.000265850000000,0.000052911000000,0.000363824000000,0.000365405000000,0.000584269000000,0.000579923000000,0.033029083000000,0.000589010000000,0.000059233000000,0.000048961000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031972294000000,0.000017369500000,0.000095578000000,0.000039493000000,0.000020727000000,0.000048960000000,0.000225948000000,0.000053306000000,0.000330244000000,0.000331430000000,0.000567281000000,0.000546738000000,0.030813579000000,0.000554639000000,0.000056862000000,0.000103084000000,0.000126788000000,0.000054096000000 +0.000036332500000,0.000031578000000,0.000590985000000,0.032964293000000,0.000017369500000,0.000164714000000,0.000023098000000,0.000020529500000,0.000050936000000,0.000226343000000,0.000053701000000,0.000365405000000,0.000447577000000,0.000546343000000,0.000593750000000,0.031006764000000,0.000568861000000,0.000056466000000,0.000049355000000,0.000128368000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000641948000000,0.031683504000000,0.000017369500000,0.000095577000000,0.000023097500000,0.000020924500000,0.000048960000000,0.000228713000000,0.000053702000000,0.000380417000000,0.000331034000000,0.000595330000000,0.000675528000000,0.031325577000000,0.000939429000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000643133000000,0.032477972000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000227134000000,0.000088467000000,0.000331034000000,0.000365009000000,0.000583479000000,0.000565305000000,0.031056146000000,0.000570441000000,0.000056467000000,0.000048171000000,0.000134689000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.032147701000000,0.000028233500000,0.000095183000000,0.000022505000000,0.000020332000000,0.000048961000000,0.000229108000000,0.000052911000000,0.000329849000000,0.000331824000000,0.000546738000000,0.000545158000000,0.031007554000000,0.000588615000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000557800000000,0.032317577000000,0.000025270500000,0.000095578000000,0.000023295500000,0.000020530000000,0.000052517000000,0.000227924000000,0.000052122000000,0.000330640000000,0.000331825000000,0.000583873000000,0.000578342000000,0.036295451000000,0.000588614000000,0.000056862000000,0.000048961000000,0.000126788000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000601257000000,0.031534961000000,0.000018554500000,0.000095973000000,0.000023097500000,0.000020727500000,0.000049356000000,0.000280467000000,0.000052911000000,0.000364220000000,0.000365800000000,0.000568071000000,0.000545158000000,0.031820985000000,0.000555429000000,0.000056467000000,0.000049355000000,0.000161553000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000626541000000,0.034761032000000,0.000017566500000,0.000116121000000,0.000022702500000,0.000030011000000,0.000063972000000,0.000226343000000,0.000055676000000,0.000329849000000,0.000331430000000,0.000547924000000,0.000590590000000,0.031460689000000,0.000555429000000,0.000056467000000,0.000048565000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000626936000000,0.033275206000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000028628500000,0.000052121000000,0.000226343000000,0.000052516000000,0.000364219000000,0.000365800000000,0.000927577000000,0.000578343000000,0.031237084000000,0.000590194000000,0.000056467000000,0.000049356000000,0.000126788000000,0.000067528000000 +0.000019542000000,0.000031973000000,0.000612713000000,0.032662466000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000020727500000,0.000054491000000,0.000227924000000,0.000053701000000,0.000331034000000,0.000331430000000,0.000599676000000,0.000545158000000,0.031445677000000,0.000589405000000,0.000056467000000,0.000048171000000,0.000130343000000,0.000054887000000 +0.000019542500000,0.000031183000000,0.000556615000000,0.031915800000000,0.000017566500000,0.000095183000000,0.000031986500000,0.000020727500000,0.000049751000000,0.000228713000000,0.000053307000000,0.000330244000000,0.000331429000000,0.000584269000000,0.000579528000000,0.032372491000000,0.000555034000000,0.000056467000000,0.000117306000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000743478000000,0.032200244000000,0.000017566500000,0.000096763000000,0.000029221000000,0.000020529500000,0.000049751000000,0.000229109000000,0.000053307000000,0.000509602000000,0.000331824000000,0.000547923000000,0.000580319000000,0.031652689000000,0.000555034000000,0.000056071000000,0.000048960000000,0.000127973000000,0.000054492000000 +0.000029616000000,0.000045010000000,0.000571232000000,0.031378121000000,0.000017369000000,0.000095973000000,0.000022110000000,0.000020332000000,0.000049751000000,0.000227923000000,0.000056862000000,0.000329849000000,0.000331429000000,0.000639973000000,0.000545158000000,0.031114220000000,0.000621799000000,0.000056466000000,0.000049751000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031977430000000,0.000024875000000,0.000097949000000,0.000023295500000,0.000020727000000,0.000049356000000,0.000366590000000,0.000054096000000,0.000363429000000,0.000381208000000,0.000584664000000,0.000578343000000,0.031904738000000,0.000788911000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000604022000000,0.032561330000000,0.000017566500000,0.000128763000000,0.000022900000000,0.000021319500000,0.000049355000000,0.000426244000000,0.000053701000000,0.000329849000000,0.000331430000000,0.000547923000000,0.000579133000000,0.032714614000000,0.000589009000000,0.000090047000000,0.000048961000000,0.000129949000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000556614000000,0.032666416000000,0.000017369000000,0.000095183000000,0.000022505000000,0.000021319500000,0.000048961000000,0.000235825000000,0.000053701000000,0.000363824000000,0.000371726000000,0.000584269000000,0.000545553000000,0.031163602000000,0.000589800000000,0.000055677000000,0.000048961000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031507701000000,0.000017566500000,0.000095578000000,0.000022900500000,0.000021517000000,0.000048961000000,0.000225158000000,0.000052912000000,0.000330640000000,0.000331825000000,0.000594540000000,0.000578738000000,0.031243010000000,0.000555429000000,0.000056072000000,0.000048565000000,0.000176960000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000608762000000,0.031967553000000,0.000017566500000,0.000095578000000,0.000023492500000,0.000020727000000,0.000078590000000,0.000229898000000,0.000053306000000,0.000330245000000,0.000333800000000,0.000547923000000,0.000622985000000,0.031958861000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000072664000000 +0.000019344500000,0.000031578000000,0.000608763000000,0.031724985000000,0.000017369000000,0.000095973000000,0.000022702500000,0.000022307500000,0.000048961000000,0.000226739000000,0.000052911000000,0.000345257000000,0.000332220000000,0.000583479000000,0.000544763000000,0.031815849000000,0.000589800000000,0.000056072000000,0.000048961000000,0.000130739000000,0.000069504000000 +0.000019542000000,0.000031183000000,0.000592170000000,0.032059602000000,0.000017369000000,0.000095577000000,0.000022505000000,0.000021715000000,0.000048960000000,0.000233454000000,0.000052912000000,0.000329849000000,0.000331824000000,0.000583479000000,0.000579528000000,0.031493874000000,0.000590194000000,0.000056862000000,0.000048566000000,0.000146936000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032210516000000,0.000017567000000,0.000095973000000,0.000022505000000,0.000020529500000,0.000049356000000,0.000226738000000,0.000052911000000,0.000365010000000,0.000366195000000,0.000547528000000,0.000578343000000,0.032020096000000,0.000594541000000,0.000056466000000,0.000048961000000,0.000129553000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000557800000000,0.031737232000000,0.000017567000000,0.000125602000000,0.000023097500000,0.000020530000000,0.000048961000000,0.000226344000000,0.000053701000000,0.000330639000000,0.000331825000000,0.000583084000000,0.000560170000000,0.031734071000000,0.000555035000000,0.000056466000000,0.000048961000000,0.000129554000000,0.000054096000000 +0.000019542000000,0.000051331000000,0.000599282000000,0.031601726000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020530000000,0.000049355000000,0.000230293000000,0.000087281000000,0.000376467000000,0.000365405000000,0.000565700000000,0.000579133000000,0.031465034000000,0.000555034000000,0.000056467000000,0.000048961000000,0.000126787000000,0.000053702000000 +0.000045814000000,0.000031577000000,0.000636812000000,0.031719454000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020332000000,0.000048961000000,0.000226739000000,0.000054096000000,0.000330245000000,0.000331035000000,0.000547133000000,0.000617454000000,0.031726565000000,0.000625750000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000054491000000 +0.000019740000000,0.000031973000000,0.000577553000000,0.031649923000000,0.000024678000000,0.000095577000000,0.000023098000000,0.000020529500000,0.000048961000000,0.000225948000000,0.000052911000000,0.000329849000000,0.000331429000000,0.000583873000000,0.000546343000000,0.031768837000000,0.000643924000000,0.000077010000000,0.000048170000000,0.000133899000000,0.000054097000000 +0.000020134500000,0.000031577000000,0.000557010000000,0.031307405000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020529500000,0.000048960000000,0.000225948000000,0.000053701000000,0.000361059000000,0.000365404000000,0.000546738000000,0.000579528000000,0.031681133000000,0.000576368000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.032061577000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020530000000,0.000109010000000,0.000227923000000,0.000052912000000,0.000330244000000,0.000331429000000,0.000547528000000,0.000579528000000,0.032241725000000,0.000555429000000,0.000056862000000,0.000050145000000,0.000160763000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031885775000000,0.000017567000000,0.000205800000000,0.000023295000000,0.000020925000000,0.000049355000000,0.000226738000000,0.000052516000000,0.000364614000000,0.000365405000000,0.000767182000000,0.000545552000000,0.031846663000000,0.000555429000000,0.000056466000000,0.000048170000000,0.000130343000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000604022000000,0.031916985000000,0.000017369500000,0.000179331000000,0.000023887500000,0.000030999000000,0.000048961000000,0.000225158000000,0.000054491000000,0.000329849000000,0.000331429000000,0.000630096000000,0.000580713000000,0.031702861000000,0.000589800000000,0.000056071000000,0.000048171000000,0.000127183000000,0.000054492000000 +0.000019345000000,0.000031578000000,0.000556614000000,0.031788985000000,0.000017567000000,0.000113356000000,0.000022900000000,0.000020925000000,0.000049751000000,0.000228319000000,0.000053306000000,0.000364615000000,0.000331825000000,0.000547133000000,0.000578343000000,0.032248441000000,0.000640367000000,0.000056862000000,0.000048565000000,0.000147331000000,0.000053306000000 +0.000019542000000,0.000031577000000,0.000557800000000,0.032153626000000,0.000017567000000,0.000095578000000,0.000043443000000,0.000020727000000,0.000049355000000,0.000224763000000,0.000055281000000,0.000330244000000,0.000506837000000,0.000629701000000,0.000545948000000,0.033678564000000,0.000555429000000,0.000056072000000,0.000061998000000,0.000129948000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.032557379000000,0.000018554500000,0.000095972000000,0.000028825500000,0.000020727000000,0.000049356000000,0.000225553000000,0.000053701000000,0.000330244000000,0.000365800000000,0.000617059000000,0.000591380000000,0.031570120000000,0.000555825000000,0.000056072000000,0.000048960000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.033110860000000,0.000017567000000,0.000131924000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000226344000000,0.000054096000000,0.000364220000000,0.000359874000000,0.000547133000000,0.000599676000000,0.031542467000000,0.000590195000000,0.000076615000000,0.000048170000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000086886000000,0.000590984000000,0.031891701000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000021517500000,0.000049750000000,0.000228319000000,0.000052516000000,0.000329850000000,0.000331430000000,0.000626936000000,0.000563726000000,0.031806367000000,0.000589404000000,0.000056072000000,0.000049356000000,0.000214887000000,0.000053702000000 +0.000026258500000,0.000099924000000,0.000557800000000,0.032101083000000,0.000017567000000,0.000095182000000,0.000023097500000,0.000020529500000,0.000048961000000,0.000229504000000,0.000053307000000,0.000376861000000,0.000344862000000,0.000624170000000,0.000578343000000,0.032729626000000,0.000590195000000,0.000056466000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000046985000000,0.000590985000000,0.031645577000000,0.000018159500000,0.000095183000000,0.000023295000000,0.000020332500000,0.000082936000000,0.000278492000000,0.000053702000000,0.000330244000000,0.000332220000000,0.000548319000000,0.000612319000000,0.031197973000000,0.000555034000000,0.000056466000000,0.000048565000000,0.000148516000000,0.000055677000000 +0.000019542000000,0.000033554000000,0.000702392000000,0.031687454000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000020332000000,0.000049356000000,0.000228318000000,0.000054096000000,0.000330245000000,0.000378837000000,0.000560170000000,0.000545158000000,0.032931898000000,0.000569257000000,0.000056467000000,0.000048565000000,0.000144170000000,0.000101109000000 +0.000019344500000,0.000033553000000,0.000593355000000,0.033316293000000,0.000017369500000,0.000095973000000,0.000022307500000,0.000020529500000,0.000049356000000,0.000229109000000,0.000053701000000,0.000330639000000,0.000331430000000,0.000617454000000,0.000592170000000,0.032581478000000,0.000589799000000,0.000056467000000,0.000050936000000,0.000129553000000,0.000054096000000 +0.000020529500000,0.000031577000000,0.000556614000000,0.032150466000000,0.000017567000000,0.000133109000000,0.000023295000000,0.000020529500000,0.000049750000000,0.000225158000000,0.000052516000000,0.000330640000000,0.000393849000000,0.000568071000000,0.000614293000000,0.030893776000000,0.000999083000000,0.000056072000000,0.000048565000000,0.000128763000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000557800000000,0.032854861000000,0.000017567000000,0.000095973000000,0.000023295000000,0.000027443500000,0.000049751000000,0.000226344000000,0.000056071000000,0.000560960000000,0.000331429000000,0.000546738000000,0.000545553000000,0.030359257000000,0.000625355000000,0.000056862000000,0.000048171000000,0.000128368000000,0.000054492000000 +0.000019344500000,0.000065554000000,0.000641553000000,0.032671157000000,0.000017369500000,0.000095578000000,0.000030406000000,0.000020727500000,0.000048961000000,0.000229109000000,0.000052911000000,0.000330244000000,0.000334590000000,0.000616664000000,0.000601256000000,0.030777627000000,0.000629306000000,0.000056467000000,0.000139035000000,0.000131134000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000598492000000,0.031499405000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020530000000,0.000049355000000,0.000227133000000,0.000054096000000,0.000365010000000,0.000378441000000,0.000629701000000,0.000627726000000,0.030226121000000,0.000573997000000,0.000056071000000,0.000105454000000,0.000126788000000,0.000054097000000 +0.000019542500000,0.000031578000000,0.000604022000000,0.031471356000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000048961000000,0.000225553000000,0.000053701000000,0.000330245000000,0.000331429000000,0.000547924000000,0.000546343000000,0.030991751000000,0.000555824000000,0.000056072000000,0.000065553000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032046960000000,0.000017369000000,0.000097158000000,0.000022307500000,0.000020529500000,0.000049356000000,0.000227924000000,0.000054491000000,0.000399380000000,0.000378047000000,0.000951676000000,0.000613899000000,0.030749183000000,0.000624170000000,0.000056072000000,0.000065158000000,0.000127183000000,0.000054492000000 +0.000019345000000,0.000031973000000,0.000577158000000,0.032000738000000,0.000017566500000,0.000095972000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000225158000000,0.000056467000000,0.000330245000000,0.000331825000000,0.000594146000000,0.000628121000000,0.030332788000000,0.000596516000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054096000000 +0.000026455500000,0.000031578000000,0.000603627000000,0.031864046000000,0.000017369000000,0.000129158000000,0.000022900000000,0.000021122000000,0.000082936000000,0.000229108000000,0.000052516000000,0.000386738000000,0.000365800000000,0.000596516000000,0.000544762000000,0.030696245000000,0.000647478000000,0.000056072000000,0.000049751000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000639183000000,0.032035108000000,0.000024480500000,0.000095183000000,0.000023492500000,0.000020924500000,0.000049355000000,0.000225553000000,0.000053701000000,0.000330244000000,0.000331825000000,0.000618639000000,0.000579528000000,0.032188392000000,0.000555430000000,0.000056071000000,0.000048960000000,0.000127577000000,0.000113356000000 +0.000019542000000,0.000031578000000,0.000642343000000,0.032149281000000,0.000017567000000,0.000097553000000,0.000022900000000,0.000020530000000,0.000049356000000,0.000261899000000,0.000054096000000,0.000330639000000,0.000331825000000,0.000617058000000,0.000933898000000,0.030144739000000,0.000556614000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.032018910000000,0.000018159500000,0.000095578000000,0.000022900000000,0.000020727500000,0.000049751000000,0.000226343000000,0.000052516000000,0.000398985000000,0.000415973000000,0.000581108000000,0.000594145000000,0.030527554000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000161158000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000556615000000,0.032114910000000,0.000017369500000,0.000095183000000,0.000022307500000,0.000020332000000,0.000067528000000,0.000225553000000,0.000053702000000,0.000329849000000,0.000331429000000,0.000581503000000,0.000545553000000,0.030564294000000,0.000822095000000,0.000056072000000,0.000049355000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.032187207000000,0.000017567000000,0.000095577000000,0.000039690500000,0.000058258000000,0.000049751000000,0.000225158000000,0.000054097000000,0.000379627000000,0.000371725000000,0.000581108000000,0.000578343000000,0.030704541000000,0.000623775000000,0.000056862000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000020530000000,0.000050936000000,0.000846984000000,0.031529825000000,0.000017567000000,0.000095578000000,0.000022703000000,0.000055295000000,0.000048961000000,0.000230294000000,0.000053306000000,0.000330245000000,0.000331825000000,0.000580319000000,0.000594540000000,0.030971603000000,0.000594540000000,0.000056467000000,0.000048171000000,0.000130739000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000625750000000,0.032047355000000,0.000017369500000,0.000095973000000,0.000023097500000,0.000038900000000,0.000049750000000,0.000227923000000,0.000053701000000,0.000368960000000,0.000352368000000,0.000582294000000,0.000545553000000,0.031176245000000,0.000555825000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000626935000000,0.031894466000000,0.000018159500000,0.000095578000000,0.000023690000000,0.000022702500000,0.000049751000000,0.000226343000000,0.000052911000000,0.000329454000000,0.000331034000000,0.000580318000000,0.000614293000000,0.030230467000000,0.000555035000000,0.000055677000000,0.000050541000000,0.000127973000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000556219000000,0.031368639000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000020332000000,0.000069504000000,0.000231479000000,0.000054096000000,0.000330245000000,0.000331430000000,0.000580318000000,0.000578343000000,0.031002023000000,0.000589405000000,0.000056466000000,0.000048961000000,0.000129949000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000558195000000,0.031597775000000,0.000017369500000,0.000095578000000,0.000022110000000,0.000020332000000,0.000049356000000,0.000226343000000,0.000053701000000,0.000366985000000,0.000378047000000,0.000580319000000,0.000547133000000,0.030667405000000,0.000589009000000,0.000055281000000,0.000048565000000,0.000127183000000,0.000088072000000 +0.000042653000000,0.000031578000000,0.000626146000000,0.031482812000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000038109500000,0.000050935000000,0.000227134000000,0.000053702000000,0.000329454000000,0.000333010000000,0.000581109000000,0.000634046000000,0.030768937000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000641553000000,0.031324392000000,0.000042653500000,0.000095183000000,0.000022900000000,0.000021517500000,0.000050541000000,0.000229108000000,0.000053702000000,0.000417948000000,0.000517503000000,0.000616664000000,0.000613108000000,0.031368244000000,0.000555035000000,0.000056467000000,0.000049356000000,0.000129553000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000642737000000,0.031423948000000,0.000017369500000,0.000129554000000,0.000022110000000,0.000021320000000,0.000049355000000,0.000228714000000,0.000054097000000,0.000329849000000,0.000351183000000,0.000579528000000,0.000548318000000,0.031363109000000,0.000607578000000,0.000056862000000,0.000063183000000,0.000161158000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031125677000000,0.000017567000000,0.000097159000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000226738000000,0.000053701000000,0.000388714000000,0.000365010000000,0.000581108000000,0.000594540000000,0.030524393000000,0.000589009000000,0.000056072000000,0.000048171000000,0.000127577000000,0.000054097000000 +0.000019542500000,0.000031577000000,0.000557405000000,0.031090517000000,0.000017567000000,0.000095578000000,0.000033172000000,0.000020530000000,0.000048961000000,0.000226343000000,0.000053306000000,0.000343677000000,0.000331034000000,0.000580713000000,0.000592960000000,0.030636591000000,0.000644318000000,0.000090047000000,0.000048170000000,0.000129948000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000664861000000,0.031700886000000,0.000017567000000,0.000095578000000,0.000022900500000,0.000020530000000,0.000049355000000,0.000228714000000,0.000105849000000,0.000329849000000,0.000400566000000,0.000584664000000,0.000545948000000,0.030764591000000,0.000554639000000,0.000057257000000,0.000048565000000,0.000181306000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000639972000000,0.031641232000000,0.000017567000000,0.000096763000000,0.000023492500000,0.000022307500000,0.000049356000000,0.000225158000000,0.000152862000000,0.000379232000000,0.000381998000000,0.000547924000000,0.000545157000000,0.032388689000000,0.000607182000000,0.000056862000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000642738000000,0.031871553000000,0.000017764500000,0.000095578000000,0.000022900000000,0.000020925000000,0.000049356000000,0.000229108000000,0.000068318000000,0.000330245000000,0.000331429000000,0.000583874000000,0.000578343000000,0.031376935000000,0.000598886000000,0.000058837000000,0.000048566000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000596516000000,0.032251602000000,0.000017567000000,0.000095578000000,0.000023690000000,0.000021517500000,0.000082936000000,0.000226343000000,0.000052516000000,0.000425454000000,0.000331825000000,0.000582689000000,0.000544762000000,0.031072344000000,0.000590984000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031692985000000,0.000017567000000,0.000129158000000,0.000023492500000,0.000020332500000,0.000048961000000,0.000227924000000,0.000053702000000,0.000330245000000,0.000332219000000,0.000547923000000,0.000623380000000,0.031068788000000,0.000589010000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000101503000000 +0.000019542000000,0.000031578000000,0.000556220000000,0.031165973000000,0.000018159500000,0.000095578000000,0.000022702500000,0.000020332500000,0.000049356000000,0.000228318000000,0.000053702000000,0.000398985000000,0.000400565000000,0.000634837000000,0.000579528000000,0.030608146000000,0.000555824000000,0.000056467000000,0.000048170000000,0.000127577000000,0.000054096000000 +0.000036529500000,0.000031578000000,0.000635627000000,0.031362319000000,0.000017567000000,0.000095183000000,0.000023493000000,0.000045616000000,0.000049356000000,0.000227528000000,0.000054097000000,0.000330245000000,0.000331824000000,0.000584269000000,0.000545553000000,0.030653579000000,0.000556220000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000626146000000,0.031243010000000,0.000207591500000,0.000095578000000,0.000023492500000,0.000021122000000,0.000049355000000,0.000225949000000,0.000053306000000,0.000330244000000,0.000365010000000,0.000546738000000,0.000559380000000,0.036155203000000,0.000590195000000,0.000056466000000,0.000049356000000,0.000143776000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000577553000000,0.034332390000000,0.000024085000000,0.000095973000000,0.000022900000000,0.000020529500000,0.000049751000000,0.000228714000000,0.000052516000000,0.000343282000000,0.000331824000000,0.000582689000000,0.000579134000000,0.032351947000000,0.000589800000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000674738000000,0.032108589000000,0.000017369000000,0.000095577000000,0.000022702500000,0.000020530000000,0.000049356000000,0.000229504000000,0.000052516000000,0.000330244000000,0.000331430000000,0.000584268000000,0.000545158000000,0.032310466000000,0.000555429000000,0.000086096000000,0.000048171000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000577553000000,0.032499701000000,0.000018159500000,0.000095578000000,0.000030406000000,0.000020332500000,0.000049355000000,0.000226343000000,0.000056072000000,0.000658145000000,0.000361849000000,0.000546738000000,0.000865553000000,0.031801627000000,0.000554639000000,0.000056466000000,0.000048961000000,0.000263874000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000559775000000,0.031431849000000,0.000017566500000,0.000096368000000,0.000023295000000,0.000021320000000,0.000048961000000,0.000227923000000,0.000053701000000,0.000397010000000,0.000331034000000,0.000717404000000,0.000579528000000,0.032188788000000,0.000590195000000,0.000056862000000,0.000048565000000,0.000144171000000,0.000054096000000 +0.000019542000000,0.000051726000000,0.000590590000000,0.031090911000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020530000000,0.000048961000000,0.000228714000000,0.000052911000000,0.000331035000000,0.000365800000000,0.000637602000000,0.000579133000000,0.032178515000000,0.000588614000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000652219000000,0.031576047000000,0.000018554500000,0.000095972000000,0.000023295000000,0.000021715000000,0.000063182000000,0.000226738000000,0.000054097000000,0.000330244000000,0.000330639000000,0.000547133000000,0.000545947000000,0.031692985000000,0.000610343000000,0.000056467000000,0.000049356000000,0.000127577000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000591380000000,0.032137825000000,0.000018554000000,0.000095578000000,0.000022505000000,0.000021517500000,0.000049751000000,0.000225948000000,0.000052516000000,0.000357503000000,0.000402541000000,0.000583874000000,0.000578738000000,0.032037083000000,0.000593751000000,0.000056072000000,0.000048566000000,0.000129158000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000557010000000,0.031021776000000,0.000017369000000,0.000097553000000,0.000023097500000,0.000021715000000,0.000052517000000,0.000261504000000,0.000056862000000,0.000330245000000,0.000331430000000,0.000632466000000,0.000578738000000,0.031986911000000,0.000555429000000,0.000056467000000,0.000048960000000,0.000126787000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000608368000000,0.031209430000000,0.000017566500000,0.000095973000000,0.000023295000000,0.000030603500000,0.000048961000000,0.000227133000000,0.000053701000000,0.000488269000000,0.000331035000000,0.000547924000000,0.000545553000000,0.032005083000000,0.000589009000000,0.000056071000000,0.000048565000000,0.000194738000000,0.000054096000000 +0.000036332000000,0.000031577000000,0.000649849000000,0.031427899000000,0.000017566500000,0.000129553000000,0.000023295000000,0.000020727000000,0.000055676000000,0.000228319000000,0.000061998000000,0.000329849000000,0.000345651000000,0.000589800000000,0.000579528000000,0.031397874000000,0.000590985000000,0.000056072000000,0.000064763000000,0.000169849000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000625750000000,0.031342961000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000020529500000,0.000049356000000,0.000231479000000,0.000054097000000,0.000370935000000,0.000331429000000,0.000584269000000,0.000578738000000,0.032262268000000,0.000641157000000,0.000056466000000,0.000048961000000,0.000128368000000,0.000053307000000 +0.000019542000000,0.000031183000000,0.000591380000000,0.031471356000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020332000000,0.000050541000000,0.000225948000000,0.000053307000000,0.000330244000000,0.000415973000000,0.000547134000000,0.000562145000000,0.038245473000000,0.000555034000000,0.000056071000000,0.000048171000000,0.000197109000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.032403305000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020924500000,0.000048960000000,0.000227923000000,0.000052516000000,0.000330244000000,0.000331825000000,0.000615874000000,0.000593356000000,0.039495448000000,0.000555429000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031445676000000,0.000017567000000,0.000096368000000,0.000023097500000,0.000020332500000,0.000049356000000,0.000249257000000,0.000053306000000,0.000330244000000,0.000366590000000,0.000583873000000,0.000579528000000,0.043885371000000,0.000633256000000,0.000056467000000,0.000048565000000,0.000129553000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000591380000000,0.031567356000000,0.000017567000000,0.000095577000000,0.000023097500000,0.000020332500000,0.000049356000000,0.000356714000000,0.000052911000000,0.000329849000000,0.000331825000000,0.000549109000000,0.000544763000000,0.038883103000000,0.000589799000000,0.000056467000000,0.000048170000000,0.000185652000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031764096000000,0.000017567000000,0.000095578000000,0.000022900500000,0.000021912500000,0.000049355000000,0.000225948000000,0.000054491000000,0.000417158000000,0.000331825000000,0.000615874000000,0.000612318000000,0.045407542000000,0.000589010000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000074245000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.032240145000000,0.000017369000000,0.000147331000000,0.000023295000000,0.000020530000000,0.000048961000000,0.000225553000000,0.000053306000000,0.000331035000000,0.000801553000000,0.000636022000000,0.000613899000000,0.035493475000000,0.000555034000000,0.000056467000000,0.000048170000000,0.000127577000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000557800000000,0.031711553000000,0.000018554000000,0.000095578000000,0.000022505000000,0.000020529500000,0.000049356000000,0.000227924000000,0.000054096000000,0.000365010000000,0.000331429000000,0.000547923000000,0.000545553000000,0.032940589000000,0.000555430000000,0.000056466000000,0.000048960000000,0.000129158000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000621404000000,0.032043009000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000226738000000,0.000053702000000,0.000330245000000,0.000331430000000,0.000561750000000,0.000579133000000,0.034022662000000,0.000589010000000,0.000056467000000,0.000067924000000,0.000127183000000,0.000055281000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031391158000000,0.000017369000000,0.000095973000000,0.000023295000000,0.000047591500000,0.000049356000000,0.000227133000000,0.000067529000000,0.000329849000000,0.000378047000000,0.000583874000000,0.000579133000000,0.034072835000000,0.000589800000000,0.000092813000000,0.000048566000000,0.000127973000000,0.000054492000000 +0.000029221000000,0.000031578000000,0.000604417000000,0.031513232000000,0.000017961500000,0.000095578000000,0.000023098000000,0.000021912500000,0.000049355000000,0.000228318000000,0.000052517000000,0.000329849000000,0.000331429000000,0.000547923000000,0.000544763000000,0.030894566000000,0.000555824000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000054491000000 +0.000021912500000,0.000031578000000,0.000591380000000,0.032171010000000,0.000017566500000,0.000095183000000,0.000023492500000,0.000020332000000,0.000051726000000,0.000228318000000,0.000054096000000,0.000330640000000,0.000365404000000,0.000645108000000,0.000579923000000,0.030845973000000,0.000625356000000,0.000056862000000,0.000050146000000,0.000127182000000,0.000054097000000 +0.000021912500000,0.000031578000000,0.000591775000000,0.031675602000000,0.000017566500000,0.000176566000000,0.000023098000000,0.000021517500000,0.000052121000000,0.000227133000000,0.000054096000000,0.000398590000000,0.000333800000000,0.000634837000000,0.000565306000000,0.031669281000000,0.000555824000000,0.000056071000000,0.000048961000000,0.000127972000000,0.000055282000000 +0.000028826000000,0.000031578000000,0.000556220000000,0.031550367000000,0.000017566500000,0.000095183000000,0.000022110000000,0.000020529500000,0.000049356000000,0.000225158000000,0.000052911000000,0.000330244000000,0.000505652000000,0.000615479000000,0.000545158000000,0.031230368000000,0.000643528000000,0.000056467000000,0.000048961000000,0.000136664000000,0.000053701000000 +0.000033566500000,0.000031973000000,0.000577553000000,0.031529034000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020727500000,0.000080170000000,0.000229899000000,0.000054096000000,0.000363824000000,0.000431380000000,0.000547528000000,0.000632861000000,0.030775653000000,0.000589799000000,0.000056862000000,0.000048565000000,0.000127577000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000728466000000,0.032584244000000,0.000017369000000,0.000095578000000,0.000023493000000,0.000021715000000,0.000049356000000,0.000226738000000,0.000053701000000,0.000472861000000,0.000331429000000,0.000616664000000,0.000626540000000,0.030582467000000,0.000624960000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000088467000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031927256000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020529500000,0.000048960000000,0.000225553000000,0.000053307000000,0.000409257000000,0.000331429000000,0.000615874000000,0.000545948000000,0.031122121000000,0.000575183000000,0.000056467000000,0.000048961000000,0.000127577000000,0.000054492000000 +0.000019344500000,0.000046195000000,0.000599282000000,0.031473726000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000229108000000,0.000053702000000,0.000330244000000,0.000331034000000,0.000546343000000,0.000579133000000,0.030938418000000,0.000556220000000,0.000056467000000,0.000048566000000,0.000142591000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.032280836000000,0.000017369000000,0.000114146000000,0.000022307500000,0.000020727000000,0.000049751000000,0.000257948000000,0.000054491000000,0.000329850000000,0.000365800000000,0.000616268000000,0.000713454000000,0.034449723000000,0.000624960000000,0.000056466000000,0.000048566000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000557800000000,0.032388688000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020925000000,0.000048960000000,0.000225949000000,0.000054097000000,0.000347232000000,0.000331824000000,0.000616664000000,0.000545553000000,0.032215257000000,0.000589009000000,0.000056467000000,0.000061998000000,0.000126788000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000604813000000,0.031828096000000,0.000017369000000,0.000095973000000,0.000023492500000,0.000027443500000,0.000048961000000,0.000225554000000,0.000053701000000,0.000329849000000,0.000394639000000,0.000547924000000,0.000578738000000,0.030676492000000,0.000624170000000,0.000056466000000,0.000048961000000,0.000212516000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.033937724000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000020529500000,0.000050146000000,0.000230689000000,0.000074640000000,0.000365404000000,0.000331825000000,0.000624565000000,0.000706738000000,0.030476986000000,0.000555429000000,0.000056072000000,0.000048961000000,0.000130344000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.032796786000000,0.000017566500000,0.000095578000000,0.000030011000000,0.000020727000000,0.000049751000000,0.000225158000000,0.000053701000000,0.000329849000000,0.000331430000000,0.000629701000000,0.000565306000000,0.030859801000000,0.000554640000000,0.000056862000000,0.000048960000000,0.000126788000000,0.000054096000000 +0.000019344500000,0.000031972000000,0.000557009000000,0.031936343000000,0.000017369500000,0.000095183000000,0.000022702500000,0.000021517500000,0.000050146000000,0.000229109000000,0.000054096000000,0.000376467000000,0.000331430000000,0.000547133000000,0.000545158000000,0.030810418000000,0.000639972000000,0.000056467000000,0.000049355000000,0.000149306000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031675603000000,0.000017567000000,0.000095973000000,0.000023098000000,0.000020529500000,0.000082936000000,0.000225158000000,0.000056072000000,0.000330244000000,0.000331430000000,0.000629701000000,0.000631281000000,0.030672541000000,0.000589405000000,0.000056072000000,0.000048565000000,0.000127182000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000604022000000,0.031929231000000,0.000017567000000,0.000129159000000,0.000022702500000,0.000021320000000,0.000048961000000,0.000225948000000,0.000197899000000,0.000330244000000,0.000364615000000,0.000630095000000,0.000617849000000,0.030992146000000,0.000555430000000,0.000056072000000,0.000048961000000,0.000127182000000,0.000147331000000 +0.000019344500000,0.000031578000000,0.000607182000000,0.031291208000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000020332000000,0.000049750000000,0.000229109000000,0.000100319000000,0.000562935000000,0.000331429000000,0.000596121000000,0.000548318000000,0.030693875000000,0.000640763000000,0.000056466000000,0.000049356000000,0.000195528000000,0.000090047000000 +0.000019344500000,0.000050541000000,0.000557404000000,0.031826911000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020924500000,0.000049751000000,0.000232664000000,0.000053306000000,0.000363035000000,0.000400565000000,0.000646688000000,0.000637997000000,0.030290121000000,0.000555429000000,0.000056466000000,0.000048566000000,0.000131134000000,0.000086886000000 +0.000019344500000,0.000032368000000,0.000557405000000,0.031934367000000,0.000017566500000,0.000095577000000,0.000023098000000,0.000020727000000,0.000049356000000,0.000229108000000,0.000054492000000,0.000330245000000,0.000331430000000,0.000631676000000,0.000630886000000,0.031004788000000,0.000555034000000,0.000090047000000,0.000104269000000,0.000129948000000,0.000054492000000 +0.000019344500000,0.000031973000000,0.000590985000000,0.031626219000000,0.000036727000000,0.000095578000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000227529000000,0.000056072000000,0.000330244000000,0.000331430000000,0.000632466000000,0.000548318000000,0.030475801000000,0.000589404000000,0.000056467000000,0.000048565000000,0.000164714000000,0.000056072000000 +0.000028826000000,0.000031578000000,0.000590590000000,0.032249626000000,0.000024282500000,0.000095183000000,0.000023097500000,0.000037715000000,0.000050541000000,0.000229503000000,0.000053306000000,0.000376861000000,0.000365010000000,0.000546738000000,0.000632071000000,0.030389677000000,0.000624960000000,0.000056862000000,0.000050145000000,0.000127577000000,0.000056467000000 +0.000019542000000,0.000031578000000,0.000641158000000,0.032315206000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000021122000000,0.000048961000000,0.000226739000000,0.000052517000000,0.000330245000000,0.000331430000000,0.000631676000000,0.000632862000000,0.030974368000000,0.000589405000000,0.000056467000000,0.000048170000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031149380000000,0.000017566500000,0.000109010000000,0.000049567000000,0.000020529500000,0.000048960000000,0.000300219000000,0.000052516000000,0.000382392000000,0.000365010000000,0.000584269000000,0.000548713000000,0.030980689000000,0.000556219000000,0.000056072000000,0.000050541000000,0.000126788000000,0.000125207000000 +0.000019345000000,0.000031578000000,0.000556614000000,0.032004688000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020727500000,0.000049356000000,0.000229109000000,0.000055677000000,0.000330244000000,0.000331430000000,0.000547924000000,0.000563725000000,0.030297233000000,0.000640763000000,0.000056071000000,0.000048961000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000031972000000,0.000635231000000,0.032345231000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000133899000000,0.000225948000000,0.000053701000000,0.000330640000000,0.000352368000000,0.000860812000000,0.000633257000000,0.030858615000000,0.000625751000000,0.000056466000000,0.000048566000000,0.000128763000000,0.000054886000000 +0.000019542500000,0.000031578000000,0.000590985000000,0.031727751000000,0.000017369000000,0.000095183000000,0.000023098000000,0.000020727000000,0.000052121000000,0.000228319000000,0.000052911000000,0.000329849000000,0.000331430000000,0.000583083000000,0.000582293000000,0.030224937000000,0.000641158000000,0.000056466000000,0.000063973000000,0.000127972000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031691404000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000021517500000,0.000049750000000,0.000228318000000,0.000053306000000,0.000330245000000,0.000331430000000,0.000582689000000,0.000549109000000,0.030088246000000,0.000595330000000,0.000056072000000,0.000048170000000,0.000383577000000,0.000053306000000 +0.000019542500000,0.000032368000000,0.000558195000000,0.031952145000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000049356000000,0.000225553000000,0.000053701000000,0.000363825000000,0.000365800000000,0.000547529000000,0.000804318000000,0.030748788000000,0.000555034000000,0.000056467000000,0.000069109000000,0.000143381000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.031257233000000,0.000017369500000,0.000115726000000,0.000023295000000,0.000020529500000,0.000048960000000,0.000225553000000,0.000054886000000,0.000330245000000,0.000331430000000,0.000583874000000,0.000582689000000,0.030332394000000,0.000554640000000,0.000145750000000,0.000062788000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031969133000000,0.000018159500000,0.000095578000000,0.000022702500000,0.000020727000000,0.000049356000000,0.000226344000000,0.000054491000000,0.000363824000000,0.000372516000000,0.000631282000000,0.000549503000000,0.030735356000000,0.000590195000000,0.000056072000000,0.000048961000000,0.000130343000000,0.000070294000000 +0.000019542000000,0.000033158000000,0.000682639000000,0.031730911000000,0.000027443500000,0.000095578000000,0.000023690500000,0.000020727000000,0.000048961000000,0.000225948000000,0.000053701000000,0.000330244000000,0.000331430000000,0.000546738000000,0.000562540000000,0.030191752000000,0.000615083000000,0.000056467000000,0.000048961000000,0.000191973000000,0.000055281000000 +0.000019344500000,0.000031578000000,0.000576368000000,0.031662960000000,0.000050949500000,0.000096368000000,0.000023098000000,0.000037517500000,0.000050936000000,0.000227133000000,0.000052912000000,0.000330245000000,0.000331430000000,0.000583083000000,0.000583479000000,0.029963801000000,0.000557799000000,0.000056467000000,0.000048565000000,0.000127182000000,0.000125603000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.031828886000000,0.000050554500000,0.000095973000000,0.000039493000000,0.000020529500000,0.000050146000000,0.000267825000000,0.000053701000000,0.000363429000000,0.000344862000000,0.000602442000000,0.000550294000000,0.029897826000000,0.000555430000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000641948000000,0.032162318000000,0.000033566500000,0.000095578000000,0.000023098000000,0.000020530000000,0.000048960000000,0.000225553000000,0.000053306000000,0.000330244000000,0.000331035000000,0.000547924000000,0.000600072000000,0.030416147000000,0.000590195000000,0.000056862000000,0.000048961000000,0.000126788000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.032079750000000,0.000018554500000,0.000095577000000,0.000023295000000,0.000030999000000,0.000050146000000,0.000225948000000,0.000054096000000,0.000376072000000,0.000479578000000,0.000583874000000,0.000583478000000,0.030943554000000,0.000662491000000,0.000056467000000,0.000049356000000,0.000164319000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000640763000000,0.031084591000000,0.000017566500000,0.000165899000000,0.000023690000000,0.000027838500000,0.000049750000000,0.000225553000000,0.000053306000000,0.000329849000000,0.000587429000000,0.000606392000000,0.000549899000000,0.031173874000000,0.000796417000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000055281000000 +0.000019344500000,0.000031578000000,0.000556614000000,0.032731206000000,0.000017566500000,0.000101109000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000524219000000,0.000055676000000,0.000378837000000,0.000381602000000,0.000589010000000,0.000582688000000,0.030051110000000,0.000589405000000,0.000071874000000,0.000049750000000,0.000129948000000,0.000053702000000 +0.000019542500000,0.000031973000000,0.000557405000000,0.031723404000000,0.000017369000000,0.000101504000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000244911000000,0.000055677000000,0.000398590000000,0.000331824000000,0.000580713000000,0.000582689000000,0.029961826000000,0.000555429000000,0.000056072000000,0.000081751000000,0.000146936000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000677108000000,0.031320837000000,0.000017369000000,0.000101109000000,0.000023492500000,0.000020530000000,0.000050146000000,0.000227924000000,0.000052516000000,0.000483924000000,0.000415973000000,0.000633256000000,0.000548713000000,0.030097727000000,0.000555825000000,0.000059232000000,0.000048961000000,0.000127577000000,0.000054096000000 +0.000019542000000,0.000070294000000,0.000591380000000,0.031403010000000,0.000017566500000,0.000101109000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000277701000000,0.000052516000000,0.000330245000000,0.000331034000000,0.000547528000000,0.000591775000000,0.030806072000000,0.000641158000000,0.000056861000000,0.000049751000000,0.000127578000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000710689000000,0.031644787000000,0.000017369000000,0.000142591000000,0.000022702500000,0.000020529500000,0.000050936000000,0.000224763000000,0.000052912000000,0.000365800000000,0.000529751000000,0.000581503000000,0.000617059000000,0.032722119000000,0.000589009000000,0.000056466000000,0.000048566000000,0.000128368000000,0.000073454000000 +0.000019542000000,0.000031578000000,0.000606787000000,0.031943454000000,0.000017566500000,0.000115726000000,0.000022702500000,0.000030801000000,0.000048961000000,0.000225553000000,0.000053701000000,0.000330245000000,0.000347232000000,0.000581503000000,0.000548713000000,0.032207355000000,0.000589010000000,0.000056466000000,0.000048565000000,0.000127973000000,0.000058047000000 +0.000026653000000,0.000031183000000,0.000591380000000,0.034316983000000,0.000017566500000,0.000101504000000,0.000042258000000,0.000027048000000,0.000103874000000,0.000225553000000,0.000053306000000,0.000330639000000,0.000365800000000,0.000546738000000,0.000636812000000,0.031229578000000,0.000555035000000,0.000056466000000,0.000048565000000,0.000134689000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000556615000000,0.032964293000000,0.000017369500000,0.000101504000000,0.000040480000000,0.000021320000000,0.000048960000000,0.000226738000000,0.000053701000000,0.000329849000000,0.000331430000000,0.000617849000000,0.000582689000000,0.031126467000000,0.000554639000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000557010000000,0.032561330000000,0.000017369500000,0.000101504000000,0.000025073000000,0.000020529500000,0.000052121000000,0.000225948000000,0.000054492000000,0.000330244000000,0.000366195000000,0.000594145000000,0.000548713000000,0.031235504000000,0.000589405000000,0.000056862000000,0.000048171000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000598096000000,0.031568146000000,0.000017567000000,0.000101504000000,0.000023097500000,0.000021912500000,0.000049750000000,0.000280861000000,0.000053702000000,0.000416763000000,0.000331429000000,0.000546738000000,0.000562935000000,0.031258022000000,0.000589010000000,0.000083331000000,0.000048565000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000591380000000,0.031520343000000,0.000017567000000,0.000101503000000,0.000022505000000,0.000021517500000,0.000048961000000,0.000225158000000,0.000055677000000,0.000330244000000,0.000331430000000,0.000581109000000,0.000583479000000,0.031216541000000,0.000555430000000,0.000056467000000,0.000049355000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000557405000000,0.031551158000000,0.000017566500000,0.000135084000000,0.000023098000000,0.000021715000000,0.000052121000000,0.000228318000000,0.000053307000000,0.000364219000000,0.000365800000000,0.000581899000000,0.000548713000000,0.031135158000000,0.000555035000000,0.000056467000000,0.000103875000000,0.000168269000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.032178911000000,0.000027641000000,0.000102294000000,0.000022505000000,0.000021319500000,0.000058047000000,0.000227923000000,0.000052516000000,0.000330244000000,0.000331035000000,0.000547923000000,0.000583083000000,0.031197578000000,0.000624170000000,0.000056466000000,0.000048566000000,0.000129948000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000589800000000,0.031635701000000,0.000017567000000,0.000101503000000,0.000023097500000,0.000021714500000,0.000050145000000,0.000226738000000,0.000054886000000,0.000330640000000,0.000365405000000,0.000580714000000,0.000589010000000,0.031208640000000,0.000597306000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000076220000000,0.000604022000000,0.031729331000000,0.000017567000000,0.000124022000000,0.000022900000000,0.000020727000000,0.000049751000000,0.000226343000000,0.000052911000000,0.000343677000000,0.000331825000000,0.000582689000000,0.000549108000000,0.031275800000000,0.000588615000000,0.000056466000000,0.000048961000000,0.000128368000000,0.000057257000000 +0.000063393500000,0.000031973000000,0.000626541000000,0.031267109000000,0.000017567000000,0.000103084000000,0.000042258000000,0.000030011000000,0.000068714000000,0.000228319000000,0.000057652000000,0.000329850000000,0.000331430000000,0.000547133000000,0.000581899000000,0.031806762000000,0.000555035000000,0.000056071000000,0.000048170000000,0.000128368000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000556220000000,0.031476887000000,0.000017567000000,0.000101503000000,0.000023097500000,0.000020332000000,0.000048961000000,0.000228713000000,0.000054492000000,0.000364615000000,0.000331825000000,0.000582689000000,0.000582293000000,0.031132393000000,0.000555034000000,0.000056071000000,0.000048960000000,0.000127182000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000557009000000,0.031803603000000,0.000017369000000,0.000129553000000,0.000023690000000,0.000020727000000,0.000049356000000,0.000225553000000,0.000053701000000,0.000330245000000,0.000331429000000,0.000657751000000,0.000549899000000,0.030686369000000,0.000604812000000,0.000056072000000,0.000048961000000,0.000130343000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000610738000000,0.031574466000000,0.000017566500000,0.000095182000000,0.000023295000000,0.000020529500000,0.000049751000000,0.000227924000000,0.000053702000000,0.000351183000000,0.000378441000000,0.000564516000000,0.000599281000000,0.031980590000000,0.000589010000000,0.000056467000000,0.000048961000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.032039059000000,0.000017369000000,0.000095578000000,0.000023493000000,0.000020727500000,0.000049356000000,0.000228713000000,0.000053702000000,0.000330244000000,0.000331429000000,0.000605603000000,0.000583479000000,0.031064837000000,0.000555429000000,0.000056072000000,0.000048961000000,0.000126787000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000591775000000,0.031064837000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000226738000000,0.000053701000000,0.000330244000000,0.000415973000000,0.000580713000000,0.000549898000000,0.031344936000000,0.000575972000000,0.000056467000000,0.000048960000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000556220000000,0.030720344000000,0.000017566500000,0.000095577000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000228318000000,0.000053701000000,0.000363825000000,0.000332219000000,0.000547924000000,0.000711478000000,0.031683898000000,0.000588614000000,0.000056862000000,0.000081750000000,0.000198689000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000557009000000,0.031494269000000,0.000017369000000,0.000096368000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000225553000000,0.000053701000000,0.000330245000000,0.000331430000000,0.000625356000000,0.000582689000000,0.031495849000000,0.000589799000000,0.000059627000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.030885084000000,0.000017567000000,0.000095183000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000228714000000,0.000053306000000,0.000372911000000,0.000332615000000,0.000597306000000,0.000548713000000,0.030816344000000,0.000589405000000,0.000055676000000,0.000049751000000,0.000129948000000,0.000125603000000 +0.000019542000000,0.000031973000000,0.000590590000000,0.030934862000000,0.000024480000000,0.000095578000000,0.000023295500000,0.000020332000000,0.000048961000000,0.000226739000000,0.000052912000000,0.000330639000000,0.000331430000000,0.000547133000000,0.000550689000000,0.031766861000000,0.000555429000000,0.000056467000000,0.000048171000000,0.000150096000000,0.000055282000000 +0.000019542000000,0.000031577000000,0.000557010000000,0.030644492000000,0.000017369000000,0.000095578000000,0.000050159500000,0.000020529500000,0.000102294000000,0.000226343000000,0.000054097000000,0.000330245000000,0.000365405000000,0.000581108000000,0.000661306000000,0.031970318000000,0.000573207000000,0.000056072000000,0.000048171000000,0.000126787000000,0.000053701000000 +0.000046998500000,0.000031183000000,0.000557404000000,0.031684688000000,0.000017369000000,0.000095973000000,0.000022505000000,0.000050752000000,0.000049750000000,0.000225948000000,0.000054097000000,0.000453108000000,0.000331430000000,0.000580713000000,0.000583478000000,0.031493479000000,0.000555824000000,0.000056467000000,0.000048170000000,0.000126787000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000606787000000,0.030479751000000,0.000017369500000,0.000095182000000,0.000023295000000,0.000020727000000,0.000049356000000,0.000240171000000,0.000054887000000,0.000330244000000,0.000374097000000,0.000547133000000,0.000548714000000,0.031576837000000,0.000617849000000,0.000059627000000,0.000048171000000,0.000133899000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000598886000000,0.030992936000000,0.000017567000000,0.000095973000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000228318000000,0.000053306000000,0.000363825000000,0.000459430000000,0.000581108000000,0.000595331000000,0.031513627000000,0.000641552000000,0.000056071000000,0.000048171000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000646688000000,0.030916295000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000021122000000,0.000049355000000,0.000225553000000,0.000053306000000,0.000330245000000,0.000365799000000,0.000580713000000,0.000605997000000,0.030877578000000,0.000639973000000,0.000056862000000,0.000049751000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000605997000000,0.030695060000000,0.000017567000000,0.000134689000000,0.000022702500000,0.000020727000000,0.000049751000000,0.000231479000000,0.000053701000000,0.000477207000000,0.000332220000000,0.000547923000000,0.000548713000000,0.032885675000000,0.000596120000000,0.000056467000000,0.000048960000000,0.000129948000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000556614000000,0.031903948000000,0.000017567000000,0.000130343000000,0.000023295500000,0.000020727000000,0.000049356000000,0.000266244000000,0.000053306000000,0.000330244000000,0.000331034000000,0.000581108000000,0.000597306000000,0.031544442000000,0.000555825000000,0.000056467000000,0.000102294000000,0.000161553000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000607577000000,0.032084491000000,0.000017369500000,0.000095973000000,0.000022702500000,0.000021319500000,0.000048960000000,0.000246491000000,0.000052912000000,0.000363825000000,0.000365404000000,0.000674343000000,0.000584664000000,0.031301084000000,0.000616664000000,0.000056862000000,0.000048961000000,0.000127182000000,0.000079775000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.030500294000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000021517000000,0.000048961000000,0.000262689000000,0.000055677000000,0.000329850000000,0.000331429000000,0.000561355000000,0.000564516000000,0.031554318000000,0.000637602000000,0.000056467000000,0.000048170000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000590985000000,0.030994912000000,0.000018554500000,0.000095973000000,0.000022505000000,0.000021122500000,0.000049356000000,0.000226738000000,0.000052516000000,0.000330244000000,0.000365800000000,0.000582293000000,0.000617454000000,0.032312441000000,0.000607577000000,0.000056862000000,0.000048960000000,0.000173800000000,0.000054096000000 +0.000019344500000,0.000031183000000,0.000606392000000,0.030823059000000,0.000017369500000,0.000095578000000,0.000046801500000,0.000021715000000,0.000063973000000,0.000227133000000,0.000049750000000,0.000359874000000,0.000331825000000,0.000615478000000,0.000585454000000,0.031055355000000,0.000607182000000,0.000056862000000,0.000048566000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000061998000000,0.000557404000000,0.030933677000000,0.000017566500000,0.000177356000000,0.000029023500000,0.000020530000000,0.000050146000000,0.000227529000000,0.000051331000000,0.000330639000000,0.000331429000000,0.000546343000000,0.000549503000000,0.035501377000000,0.000555824000000,0.000056862000000,0.000049356000000,0.000127183000000,0.000054886000000 +0.000026456000000,0.000031578000000,0.000590985000000,0.032276096000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021517000000,0.000049355000000,0.000265059000000,0.000065949000000,0.000364614000000,0.000563726000000,0.000561750000000,0.000691725000000,0.032303750000000,0.000555430000000,0.000130738000000,0.000048170000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.032562910000000,0.000018159000000,0.000095577000000,0.000023295000000,0.000020332000000,0.000048961000000,0.000227133000000,0.000050541000000,0.000330244000000,0.000366590000000,0.000651034000000,0.000872664000000,0.032461775000000,0.001048071000000,0.000147331000000,0.000048960000000,0.000143380000000,0.000054096000000 +0.000036134500000,0.000031578000000,0.000591775000000,0.032267800000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020530000000,0.000048961000000,0.000229109000000,0.000050146000000,0.000398985000000,0.000332615000000,0.000547528000000,0.000619430000000,0.031164788000000,0.000555825000000,0.000073455000000,0.000048566000000,0.000129553000000,0.000054491000000 +0.000026455500000,0.000031183000000,0.000557405000000,0.031421183000000,0.000017566500000,0.000095973000000,0.000023295000000,0.000022110000000,0.000048960000000,0.000264269000000,0.000050935000000,0.000330244000000,0.000331429000000,0.000548319000000,0.000549503000000,0.031204294000000,0.000589405000000,0.000056862000000,0.000049751000000,0.000129158000000,0.000054492000000 +0.000020529500000,0.000031578000000,0.000570441000000,0.031244591000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000020332000000,0.000049356000000,0.000227133000000,0.000050540000000,0.000329850000000,0.000400960000000,0.000636417000000,0.000598886000000,0.031103949000000,0.000589010000000,0.000056072000000,0.000091232000000,0.000142590000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000696071000000,0.031003208000000,0.000017369500000,0.000134689000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000229899000000,0.000054097000000,0.000344466000000,0.000342096000000,0.000566886000000,0.000616664000000,0.031471750000000,0.000590194000000,0.000056466000000,0.000049356000000,0.000127973000000,0.000107430000000 +0.000019344500000,0.000031578000000,0.000592565000000,0.030995702000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020727000000,0.000049750000000,0.000229504000000,0.000049751000000,0.000331430000000,0.000367775000000,0.000546738000000,0.000548713000000,0.031376936000000,0.000555430000000,0.000056467000000,0.000048565000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000612318000000,0.031386813000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000020332000000,0.000103874000000,0.000228319000000,0.000050541000000,0.000400565000000,0.000331430000000,0.000630491000000,0.000562540000000,0.031681528000000,0.000555824000000,0.000056072000000,0.000048565000000,0.000160763000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000558195000000,0.030755899000000,0.000017567000000,0.000095182000000,0.000030011500000,0.000021517500000,0.000049356000000,0.000225948000000,0.000050936000000,0.000329849000000,0.000331825000000,0.000581108000000,0.000627725000000,0.031105133000000,0.000589405000000,0.000056466000000,0.000048961000000,0.000126788000000,0.000055281000000 +0.000019542000000,0.000031973000000,0.000571232000000,0.030893381000000,0.000017566500000,0.000095183000000,0.000023493000000,0.000020530000000,0.000049750000000,0.000233059000000,0.000050146000000,0.000364220000000,0.000331034000000,0.000549898000000,0.000549109000000,0.031489528000000,0.000589010000000,0.000056467000000,0.000048171000000,0.000126788000000,0.000053702000000 +0.000028826000000,0.000031973000000,0.000660515000000,0.031077084000000,0.000034554500000,0.000095183000000,0.000023295000000,0.000050159500000,0.000050936000000,0.000359874000000,0.000127973000000,0.000330245000000,0.000332219000000,0.000615874000000,0.000548713000000,0.031207455000000,0.000555824000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054886000000 +0.000062011000000,0.000031578000000,0.000633651000000,0.030597480000000,0.000017567000000,0.000095973000000,0.000022110000000,0.000020924500000,0.000049355000000,0.000312862000000,0.000049355000000,0.000331429000000,0.000365405000000,0.000593751000000,0.000627726000000,0.031291603000000,0.000555429000000,0.000056862000000,0.000049356000000,0.000127183000000,0.000054096000000 +0.000062603500000,0.000031578000000,0.000607182000000,0.030806072000000,0.000017567000000,0.000144566000000,0.000033171500000,0.000021517000000,0.000049356000000,0.000263084000000,0.000051331000000,0.000419924000000,0.000331429000000,0.000546343000000,0.000617058000000,0.031586713000000,0.000624960000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000054097000000 +0.000061221000000,0.000031577000000,0.000557010000000,0.030954615000000,0.000017567000000,0.000095577000000,0.000030209000000,0.000020727000000,0.000049356000000,0.000242936000000,0.000050540000000,0.000329849000000,0.000425455000000,0.000617454000000,0.000549504000000,0.032171010000000,0.000643923000000,0.000056467000000,0.000049750000000,0.000127183000000,0.000053701000000 +0.000055492500000,0.000031578000000,0.000556615000000,0.031051405000000,0.000017962000000,0.000095578000000,0.000022505000000,0.000020332000000,0.000065948000000,0.000240170000000,0.000051331000000,0.000363824000000,0.000332219000000,0.000581109000000,0.000632071000000,0.031294763000000,0.000589010000000,0.000056072000000,0.000157602000000,0.000127973000000,0.000054492000000 +0.000020727000000,0.000031578000000,0.000676713000000,0.031126072000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021517500000,0.000064763000000,0.000240170000000,0.000050541000000,0.000330640000000,0.000351577000000,0.000547529000000,0.000649454000000,0.031911059000000,0.000555824000000,0.000056072000000,0.000148121000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031477677000000,0.000017567000000,0.000095183000000,0.000023097500000,0.000021319500000,0.000083331000000,0.000243331000000,0.000050936000000,0.000368960000000,0.000331429000000,0.000632071000000,0.000549898000000,0.032157578000000,0.000606787000000,0.000056861000000,0.000070294000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000626541000000,0.031162023000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000020332000000,0.000049356000000,0.000282046000000,0.000050540000000,0.000586244000000,0.000331034000000,0.000581503000000,0.000632466000000,0.032040639000000,0.000640368000000,0.000090047000000,0.000052121000000,0.000235035000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000556220000000,0.031784244000000,0.000017369000000,0.000174985000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000249257000000,0.000050935000000,0.000371726000000,0.000414393000000,0.000546738000000,0.000634441000000,0.031843108000000,0.000589009000000,0.000056071000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000557009000000,0.031912639000000,0.000018159500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000049355000000,0.000227528000000,0.000069899000000,0.000329849000000,0.000331430000000,0.000899528000000,0.000549108000000,0.032390663000000,0.000589010000000,0.000055676000000,0.000069504000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031182000000,0.000641552000000,0.030967652000000,0.000017567000000,0.000095578000000,0.000023295500000,0.000040283000000,0.000049356000000,0.000229108000000,0.000050936000000,0.000364220000000,0.000365010000000,0.000581503000000,0.000548318000000,0.031447257000000,0.000555034000000,0.000056467000000,0.000049356000000,0.000163924000000,0.000104665000000 +0.000019345000000,0.000045010000000,0.000590985000000,0.031295553000000,0.000017369000000,0.000095973000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000225553000000,0.000050146000000,0.000333010000000,0.000350392000000,0.000632466000000,0.000968663000000,0.032404490000000,0.000555429000000,0.000056467000000,0.000048171000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000625750000000,0.031212986000000,0.000017567000000,0.000095973000000,0.000023295000000,0.000020332000000,0.000051331000000,0.000229899000000,0.000051726000000,0.000330245000000,0.000397800000000,0.000546738000000,0.000582688000000,0.031924096000000,0.000589405000000,0.000059232000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000556614000000,0.031850614000000,0.000018159500000,0.000095578000000,0.000022702500000,0.000021320000000,0.000050540000000,0.000229109000000,0.000050936000000,0.000482738000000,0.000331035000000,0.000582294000000,0.000549109000000,0.032197478000000,0.000640368000000,0.000056072000000,0.000048565000000,0.000129553000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000558195000000,0.031103158000000,0.000017369500000,0.000156417000000,0.000022900500000,0.000020924500000,0.000049356000000,0.000229108000000,0.000050541000000,0.000347627000000,0.000332220000000,0.000580318000000,0.000549108000000,0.032494564000000,0.000575972000000,0.000056862000000,0.000048565000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000962738000000,0.031369035000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000231479000000,0.000050145000000,0.000330244000000,0.000331430000000,0.000547133000000,0.000582688000000,0.032085676000000,0.000555035000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000604021000000,0.032227108000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021319500000,0.000111380000000,0.000227924000000,0.000050541000000,0.000330244000000,0.000331034000000,0.000587429000000,0.000549109000000,0.031642417000000,0.001286293000000,0.000056072000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000591380000000,0.031365874000000,0.000017567000000,0.000096368000000,0.000029814000000,0.000020529500000,0.000048961000000,0.000225158000000,0.000050936000000,0.000364615000000,0.000416368000000,0.000566096000000,0.000548713000000,0.031284096000000,0.000602836000000,0.000057257000000,0.000048565000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000648664000000,0.031685874000000,0.000017369500000,0.000095973000000,0.000023493000000,0.000021517000000,0.000049356000000,0.000229898000000,0.000052516000000,0.000329850000000,0.000333009000000,0.000547924000000,0.000582689000000,0.032446762000000,0.000555430000000,0.000056467000000,0.000048170000000,0.000126787000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000557404000000,0.031265923000000,0.000017567000000,0.000095577000000,0.000023097500000,0.000020529500000,0.000048960000000,0.000225948000000,0.000050541000000,0.000363825000000,0.000400170000000,0.000580714000000,0.000549504000000,0.031811898000000,0.000588614000000,0.000056467000000,0.000048961000000,0.000127182000000,0.000092022000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031062072000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000229899000000,0.000049751000000,0.000330245000000,0.000331430000000,0.000547528000000,0.000549503000000,0.034688736000000,0.000611528000000,0.000056862000000,0.000048170000000,0.000163923000000,0.000057257000000 +0.000019344500000,0.000031578000000,0.000654590000000,0.031391553000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000021122000000,0.000048961000000,0.000225158000000,0.000050146000000,0.000340121000000,0.000331825000000,0.000548318000000,0.000606392000000,0.033255847000000,0.000619825000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019344500000,0.000086491000000,0.000641552000000,0.033478268000000,0.000017962000000,0.000095183000000,0.000022703000000,0.000021320000000,0.000049355000000,0.000226738000000,0.000050541000000,0.000380417000000,0.000646688000000,0.000619034000000,0.000548713000000,0.032418318000000,0.000688565000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000099924000000,0.000591380000000,0.031433824000000,0.000027245500000,0.000094788000000,0.000023690000000,0.000020529500000,0.000049751000000,0.000226343000000,0.000051331000000,0.000330244000000,0.000365405000000,0.000546738000000,0.000550294000000,0.032751749000000,0.000556614000000,0.000056072000000,0.000048170000000,0.000149306000000,0.000054887000000 +0.000019542000000,0.000048170000000,0.000558195000000,0.032837873000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000049355000000,0.000225553000000,0.000050146000000,0.000379627000000,0.000331825000000,0.000560565000000,0.000596910000000,0.031721034000000,0.000555430000000,0.000056467000000,0.000049355000000,0.000129948000000,0.000054096000000 +0.000019344500000,0.000033553000000,0.000556614000000,0.031901182000000,0.000017369500000,0.000095183000000,0.000023097500000,0.000020727000000,0.000082541000000,0.000225553000000,0.000050541000000,0.000329849000000,0.000365405000000,0.000581109000000,0.000549503000000,0.031814663000000,0.000589009000000,0.000056466000000,0.000049750000000,0.000126787000000,0.000053702000000 +0.000019344500000,0.000033553000000,0.000641948000000,0.031786219000000,0.000017369500000,0.000094788000000,0.000022505000000,0.000020529500000,0.000048960000000,0.000229108000000,0.000049751000000,0.000349602000000,0.000331035000000,0.000547133000000,0.000563331000000,0.032491405000000,0.000639973000000,0.000125602000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590195000000,0.031161628000000,0.000018159500000,0.000145750000000,0.000023492500000,0.000021517000000,0.000049751000000,0.000227924000000,0.000052516000000,0.000330244000000,0.000331035000000,0.000546738000000,0.000583084000000,0.031446467000000,0.000588614000000,0.000056072000000,0.000049751000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031071948000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000021319500000,0.000049356000000,0.000227923000000,0.000050541000000,0.000330639000000,0.000381208000000,0.000581503000000,0.000567676000000,0.031911454000000,0.000555824000000,0.000056467000000,0.000048566000000,0.000130344000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.030932097000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000021517000000,0.000048960000000,0.000226738000000,0.000050541000000,0.000414788000000,0.000331429000000,0.000547923000000,0.000549899000000,0.032044590000000,0.000589800000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000119677000000 +0.000019542000000,0.000032368000000,0.000557010000000,0.031573281000000,0.000017369500000,0.000095973000000,0.000023097500000,0.000021320000000,0.000049751000000,0.000226343000000,0.000091232000000,0.000330639000000,0.000364614000000,0.000561750000000,0.000632862000000,0.031500590000000,0.001025158000000,0.000056072000000,0.000048961000000,0.000197504000000,0.000173800000000 +0.000019344500000,0.000031578000000,0.000607578000000,0.031169529000000,0.000017369000000,0.000095183000000,0.000023295500000,0.000030604000000,0.000049356000000,0.000227924000000,0.000133504000000,0.000364219000000,0.000331824000000,0.000613898000000,0.000617454000000,0.031847059000000,0.000628911000000,0.000056466000000,0.000048565000000,0.000128763000000,0.000090837000000 +0.000019344500000,0.000031973000000,0.000626541000000,0.031175454000000,0.000017369000000,0.000095578000000,0.000023295500000,0.000020925000000,0.000052516000000,0.000226343000000,0.000068319000000,0.000330245000000,0.000331429000000,0.000568861000000,0.000549504000000,0.031670466000000,0.000624960000000,0.000056466000000,0.000048170000000,0.000126393000000,0.000057652000000 +0.000019542000000,0.000031578000000,0.000651825000000,0.031461479000000,0.000017566500000,0.000115726000000,0.000022702500000,0.000020727500000,0.000049356000000,0.000228714000000,0.000065553000000,0.000329849000000,0.000331429000000,0.000546738000000,0.000583083000000,0.030964097000000,0.000606392000000,0.000056072000000,0.000048566000000,0.000161158000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000621799000000,0.031275801000000,0.000017566500000,0.000097948000000,0.000023097500000,0.000021320000000,0.000058047000000,0.000306540000000,0.000050146000000,0.000344862000000,0.000331035000000,0.000616664000000,0.000583084000000,0.031427899000000,0.000557010000000,0.000055677000000,0.000049356000000,0.000154442000000,0.000073060000000 +0.000020924500000,0.000031183000000,0.000557009000000,0.030934862000000,0.000024678000000,0.000095182000000,0.000023097500000,0.000020530000000,0.000100319000000,0.000229899000000,0.000049355000000,0.000329850000000,0.000365405000000,0.000566887000000,0.000549108000000,0.031298318000000,0.000555430000000,0.000090047000000,0.000048171000000,0.000128368000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031546417000000,0.000017567000000,0.000129948000000,0.000022900500000,0.000020530000000,0.000050541000000,0.000226739000000,0.000083726000000,0.000364219000000,0.000331034000000,0.000548713000000,0.000582294000000,0.031042319000000,0.000642738000000,0.000056467000000,0.000048170000000,0.000127182000000,0.000054491000000 +0.000026455500000,0.000031973000000,0.000598096000000,0.031472936000000,0.000017567000000,0.000108615000000,0.000038702500000,0.000020530000000,0.000048961000000,0.000225948000000,0.000050540000000,0.000330244000000,0.000365010000000,0.000593750000000,0.000582688000000,0.031280146000000,0.000624170000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000056072000000 +0.000019344500000,0.000031578000000,0.000642343000000,0.031118961000000,0.000017566500000,0.000095578000000,0.000023887500000,0.000020332000000,0.000049355000000,0.000227133000000,0.000050145000000,0.000364219000000,0.000331824000000,0.000547133000000,0.000549503000000,0.032088441000000,0.000630886000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054096000000 +0.000019542500000,0.000031578000000,0.000590589000000,0.031007554000000,0.000017566500000,0.000095578000000,0.000022110000000,0.000020332000000,0.000048961000000,0.000224368000000,0.000050541000000,0.000330244000000,0.000331034000000,0.000581898000000,0.000598096000000,0.031469381000000,0.000623380000000,0.000056466000000,0.000048171000000,0.000127973000000,0.000054097000000 +0.000019344500000,0.000031973000000,0.000559380000000,0.031188887000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021319500000,0.000049356000000,0.000227133000000,0.000050541000000,0.000330244000000,0.000366195000000,0.000594540000000,0.000588219000000,0.032438466000000,0.000588220000000,0.000056466000000,0.000061998000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000556614000000,0.030898122000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000022110000000,0.000049355000000,0.000229504000000,0.000050541000000,0.000344862000000,0.000331429000000,0.000928367000000,0.000572812000000,0.031616343000000,0.000588219000000,0.000056072000000,0.000049356000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000590195000000,0.031874318000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000040283000000,0.000049356000000,0.000226738000000,0.000050541000000,0.000330640000000,0.000473652000000,0.000647874000000,0.000582688000000,0.031535750000000,0.000626935000000,0.000056072000000,0.000048565000000,0.000127182000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000590590000000,0.031557479000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000063591500000,0.000050936000000,0.000225948000000,0.000050936000000,0.000371331000000,0.000331429000000,0.000547133000000,0.000603232000000,0.031338615000000,0.000627725000000,0.000056467000000,0.000048565000000,0.000174195000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000557800000000,0.031603306000000,0.000017566500000,0.000095183000000,0.000023493000000,0.000029813500000,0.000082936000000,0.000229899000000,0.000050936000000,0.000415972000000,0.000415973000000,0.000581503000000,0.000563726000000,0.032057232000000,0.000623380000000,0.000059627000000,0.000048566000000,0.000127578000000,0.000087677000000 +0.000019542000000,0.000031577000000,0.000558195000000,0.031089727000000,0.000018159000000,0.000095578000000,0.000022505000000,0.000021715000000,0.000049355000000,0.000229503000000,0.000049751000000,0.000364219000000,0.000331430000000,0.000581503000000,0.000582688000000,0.032044985000000,0.000588219000000,0.000056071000000,0.000048566000000,0.000127182000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000626540000000,0.031274220000000,0.000017369000000,0.000164319000000,0.000032579000000,0.000020727000000,0.000051726000000,0.000229899000000,0.000127578000000,0.000329849000000,0.000331035000000,0.000547133000000,0.000582689000000,0.031163208000000,0.000589010000000,0.000056862000000,0.000050146000000,0.000162344000000,0.000053702000000 +0.000019542000000,0.000031183000000,0.000592170000000,0.031394714000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000021122500000,0.000052516000000,0.000228714000000,0.000097158000000,0.000329850000000,0.000333800000000,0.000581504000000,0.000548713000000,0.031310565000000,0.000623775000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000053701000000 +0.000026456000000,0.000031973000000,0.000591775000000,0.033050021000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000020332500000,0.000049750000000,0.000259133000000,0.000049751000000,0.000344072000000,0.000333800000000,0.000627726000000,0.000582294000000,0.031476491000000,0.000791676000000,0.000056467000000,0.000048960000000,0.000135479000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000557405000000,0.031342565000000,0.000017567000000,0.000095183000000,0.000022900500000,0.000020332500000,0.000057652000000,0.000229109000000,0.000050146000000,0.000329849000000,0.000372121000000,0.000547923000000,0.000582688000000,0.031140294000000,0.000589405000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019740000000,0.000031183000000,0.000570441000000,0.031553528000000,0.000017566500000,0.000097948000000,0.000023690500000,0.000020727500000,0.000049751000000,0.000226343000000,0.000085701000000,0.000364219000000,0.000331429000000,0.000632467000000,0.000548714000000,0.031675603000000,0.000589010000000,0.000056072000000,0.000095183000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000590590000000,0.030572591000000,0.000017567000000,0.000095972000000,0.000022110000000,0.000020332500000,0.000050146000000,0.000225948000000,0.000083331000000,0.000330244000000,0.000421898000000,0.000581899000000,0.000594541000000,0.033037379000000,0.000588615000000,0.000060022000000,0.000049356000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000031183000000,0.000590590000000,0.031132788000000,0.000018554500000,0.000130343000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000269800000000,0.000065948000000,0.000384368000000,0.000331429000000,0.000546738000000,0.000583478000000,0.033139305000000,0.000589009000000,0.000056862000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000557800000000,0.032925972000000,0.000024283000000,0.000273356000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000227924000000,0.000090047000000,0.001046095000000,0.000331429000000,0.000616269000000,0.000548713000000,0.032020886000000,0.000589800000000,0.000056862000000,0.000048565000000,0.000157208000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031849825000000,0.000017369500000,0.000110195000000,0.000023295000000,0.000021912500000,0.000155628000000,0.000228318000000,0.000051331000000,0.000669997000000,0.000331034000000,0.000599677000000,0.000583874000000,0.031381281000000,0.000589799000000,0.000124813000000,0.000048960000000,0.000126392000000,0.000122838000000 +0.000019344500000,0.000031578000000,0.000655775000000,0.032989181000000,0.000017369500000,0.000095183000000,0.000023492500000,0.000021517000000,0.000150492000000,0.000227924000000,0.000052121000000,0.000418343000000,0.000331430000000,0.000664467000000,0.000634047000000,0.031235504000000,0.000589404000000,0.000056467000000,0.000049356000000,0.000127182000000,0.000054886000000 +0.000019344500000,0.000031973000000,0.000597306000000,0.032074219000000,0.000017567000000,0.000115331000000,0.000023690000000,0.000021319500000,0.000098738000000,0.000227923000000,0.000049751000000,0.000715429000000,0.000365405000000,0.000575973000000,0.000550293000000,0.031896047000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000214096000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000603627000000,0.031256047000000,0.000017369500000,0.000095578000000,0.000029616000000,0.000020529500000,0.000077800000000,0.000230689000000,0.000050146000000,0.000344072000000,0.000331430000000,0.000594146000000,0.000583084000000,0.031958861000000,0.000589009000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000557404000000,0.031832441000000,0.000018554500000,0.000095183000000,0.000023295000000,0.000020529500000,0.000049751000000,0.000225158000000,0.000049751000000,0.000414392000000,0.000365010000000,0.000548319000000,0.000583084000000,0.031231949000000,0.000590590000000,0.000056072000000,0.000048565000000,0.000132714000000,0.000054096000000 +0.000047196000000,0.000031578000000,0.000642343000000,0.031822565000000,0.000017567000000,0.000095183000000,0.000023492500000,0.000020727000000,0.000088467000000,0.000228714000000,0.000053306000000,0.000329849000000,0.000331430000000,0.000547133000000,0.000548713000000,0.031741578000000,0.000590195000000,0.000056072000000,0.000048566000000,0.000161553000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031179405000000,0.000017567000000,0.000095183000000,0.000023097500000,0.000037517500000,0.000049355000000,0.000227528000000,0.000050541000000,0.000364614000000,0.000331825000000,0.000587824000000,0.000583873000000,0.031294763000000,0.000624565000000,0.000056466000000,0.000082541000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000640763000000,0.031195208000000,0.000017567000000,0.000095182000000,0.000022505000000,0.000020332000000,0.000049751000000,0.000226738000000,0.000050936000000,0.000330244000000,0.000383182000000,0.000547923000000,0.000582294000000,0.031916985000000,0.000575182000000,0.000056071000000,0.000049356000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000591379000000,0.031043899000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000021517000000,0.000049750000000,0.000231479000000,0.000049751000000,0.000363430000000,0.000331824000000,0.000548318000000,0.000548713000000,0.031180195000000,0.000555430000000,0.000056072000000,0.000048566000000,0.000131134000000,0.000053702000000 +0.000019344500000,0.000045800000000,0.000557010000000,0.031096837000000,0.000017369000000,0.000129158000000,0.000022307500000,0.000021517000000,0.000049356000000,0.000227528000000,0.000084121000000,0.000329454000000,0.000380812000000,0.000596515000000,0.000583083000000,0.031617528000000,0.000589010000000,0.000128368000000,0.000048961000000,0.000130343000000,0.000073454000000 +0.000019344500000,0.000031578000000,0.000557010000000,0.031711948000000,0.000017369000000,0.000095578000000,0.000023098000000,0.000021122000000,0.000049751000000,0.000231084000000,0.000052911000000,0.000330245000000,0.000331035000000,0.000546738000000,0.000647084000000,0.031010714000000,0.000624170000000,0.000056467000000,0.000048170000000,0.000129158000000,0.000074640000000 +0.000019542000000,0.000031578000000,0.000591775000000,0.031405380000000,0.000017566500000,0.000095182000000,0.000022900000000,0.000020924500000,0.000050541000000,0.000228714000000,0.000050541000000,0.000363825000000,0.000351183000000,0.000547133000000,0.000550688000000,0.031753824000000,0.000589404000000,0.000056467000000,0.000049751000000,0.000126787000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000635231000000,0.031166368000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021319500000,0.000049751000000,0.000229503000000,0.000050146000000,0.000357899000000,0.000331035000000,0.000581898000000,0.000624170000000,0.031468985000000,0.000555430000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000590195000000,0.031389973000000,0.000017566500000,0.000096368000000,0.000030208500000,0.000021517500000,0.000048961000000,0.000227134000000,0.000050936000000,0.000501701000000,0.000331429000000,0.000546738000000,0.000598491000000,0.031757380000000,0.000570442000000,0.000056467000000,0.000049356000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000557800000000,0.032251997000000,0.000017369000000,0.000095577000000,0.000023295000000,0.000020529500000,0.000048961000000,0.000233059000000,0.000050146000000,0.000330245000000,0.000365009000000,0.000707528000000,0.000548318000000,0.031374960000000,0.000589404000000,0.000056466000000,0.000048565000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000641553000000,0.031101183000000,0.000017369000000,0.000094788000000,0.000022900000000,0.000021122000000,0.000077800000000,0.000227923000000,0.000050541000000,0.000378047000000,0.000332219000000,0.000582688000000,0.000582689000000,0.031377726000000,0.000603627000000,0.000056467000000,0.000048960000000,0.000162738000000,0.000054886000000 +0.000026258500000,0.000031578000000,0.000593355000000,0.031192442000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021517500000,0.000049356000000,0.000374096000000,0.000050145000000,0.000536071000000,0.000447577000000,0.000632466000000,0.000693700000000,0.031734467000000,0.000555429000000,0.000056467000000,0.000116122000000,0.000127973000000,0.000053702000000 +0.000019344500000,0.000031973000000,0.000628515000000,0.031553923000000,0.000017566500000,0.000096763000000,0.000023295000000,0.000028233500000,0.000050145000000,0.000229109000000,0.000049751000000,0.000512762000000,0.000349997000000,0.000547133000000,0.000551084000000,0.031460294000000,0.000605602000000,0.000056862000000,0.000062393000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000606392000000,0.031412887000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000249652000000,0.000049356000000,0.000330244000000,0.000435331000000,0.000581108000000,0.000548318000000,0.031594615000000,0.000568467000000,0.000071479000000,0.000048171000000,0.000126787000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000556219000000,0.031421183000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000020529500000,0.000049355000000,0.000228318000000,0.000084516000000,0.000374886000000,0.000331429000000,0.000632071000000,0.000641157000000,0.032273725000000,0.000715430000000,0.000056467000000,0.000050541000000,0.000146936000000,0.000067528000000 +0.000019542000000,0.000065159000000,0.001105750000000,0.031739207000000,0.000018159500000,0.000096368000000,0.000022702500000,0.000020332500000,0.000049356000000,0.000230689000000,0.000050541000000,0.000329849000000,0.000365010000000,0.000547529000000,0.000549109000000,0.031154516000000,0.000645109000000,0.000056072000000,0.000048170000000,0.000129554000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031435405000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020925000000,0.000049356000000,0.000227924000000,0.000050936000000,0.000476812000000,0.000331824000000,0.000581108000000,0.000548713000000,0.031496639000000,0.000596516000000,0.000056467000000,0.000048566000000,0.000128368000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000557799000000,0.031510071000000,0.000017566500000,0.000143380000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000229108000000,0.000051331000000,0.000346441000000,0.000331430000000,0.000764417000000,0.000617849000000,0.031569726000000,0.000557405000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031741182000000,0.000017566500000,0.000097158000000,0.000065764000000,0.000020925000000,0.000049356000000,0.000225553000000,0.000051331000000,0.000377257000000,0.000346442000000,0.000600071000000,0.000566886000000,0.031645182000000,0.000555430000000,0.000056071000000,0.000048566000000,0.000130344000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031715109000000,0.000017567000000,0.000095183000000,0.000024283000000,0.000020332000000,0.000083331000000,0.000225553000000,0.000050541000000,0.000330640000000,0.000331035000000,0.000547529000000,0.000549899000000,0.031675207000000,0.000602837000000,0.000056466000000,0.000049355000000,0.000140220000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032313231000000,0.000017567000000,0.000095578000000,0.000029023500000,0.000020727000000,0.000050541000000,0.000226343000000,0.000050936000000,0.000385158000000,0.000365405000000,0.000580713000000,0.000878985000000,0.031606072000000,0.000605207000000,0.000056466000000,0.000049355000000,0.000129553000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.032367750000000,0.000034357000000,0.000095183000000,0.000023295000000,0.000020332000000,0.000049355000000,0.000227133000000,0.000050936000000,0.000329849000000,0.000331430000000,0.000566491000000,0.000583084000000,0.031084985000000,0.000555429000000,0.000056467000000,0.000062392000000,0.000127578000000,0.000054096000000 +0.000026653500000,0.000031578000000,0.000642343000000,0.031746319000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000020332500000,0.000048961000000,0.000225949000000,0.000050936000000,0.000330244000000,0.000365800000000,0.000547133000000,0.000548714000000,0.031345331000000,0.000555429000000,0.000076220000000,0.000048960000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000033158000000,0.000625750000000,0.030921035000000,0.000017566500000,0.000095578000000,0.000022110000000,0.000027246000000,0.000049356000000,0.000227134000000,0.000053306000000,0.000363824000000,0.000331430000000,0.000615873000000,0.000549108000000,0.033257428000000,0.000589009000000,0.000056467000000,0.000048566000000,0.000127973000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000590589000000,0.031923306000000,0.000017369000000,0.000108615000000,0.000023690000000,0.000021320000000,0.000050541000000,0.000232664000000,0.000097553000000,0.000330639000000,0.000331825000000,0.000581899000000,0.000597306000000,0.033805378000000,0.000589010000000,0.000059233000000,0.000048171000000,0.000127578000000,0.000053306000000 +0.000019542000000,0.000031973000000,0.000557009000000,0.031408146000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020332500000,0.000049356000000,0.000225553000000,0.000049751000000,0.000414788000000,0.000433750000000,0.000547923000000,0.000549108000000,0.031940294000000,0.000589009000000,0.000056861000000,0.000048961000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000050936000000,0.000556614000000,0.033752440000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000020332500000,0.000050541000000,0.000225553000000,0.000048960000000,0.000331034000000,0.000331034000000,0.000629305000000,0.000547923000000,0.031722614000000,0.000555430000000,0.000056467000000,0.000048170000000,0.000196714000000,0.000054096000000 +0.000019344500000,0.000031577000000,0.000590590000000,0.032210121000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000227923000000,0.000050936000000,0.000364220000000,0.000365405000000,0.000582294000000,0.000581503000000,0.030971998000000,0.000554639000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.032125578000000,0.000017567000000,0.000095577000000,0.000023097500000,0.000021122500000,0.000049355000000,0.000228714000000,0.000050541000000,0.000329850000000,0.000331035000000,0.000546738000000,0.000549898000000,0.031226022000000,0.000602047000000,0.000056467000000,0.000048961000000,0.000134294000000,0.000054887000000 +0.000019542000000,0.000031973000000,0.000593355000000,0.031633330000000,0.000017369500000,0.000095578000000,0.000023493000000,0.000038307500000,0.000049751000000,0.000226738000000,0.000050146000000,0.000329849000000,0.000365405000000,0.000581898000000,0.000549898000000,0.031631356000000,0.000653799000000,0.000056072000000,0.000048566000000,0.000146936000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000557404000000,0.031561429000000,0.000017369500000,0.000115726000000,0.000022307500000,0.000034554500000,0.000051726000000,0.000225948000000,0.000049356000000,0.000420318000000,0.000331825000000,0.000618639000000,0.000581899000000,0.031539306000000,0.000589800000000,0.000056467000000,0.000048960000000,0.000127577000000,0.000053702000000 +0.000019542000000,0.000033949000000,0.000590985000000,0.031545628000000,0.000017567000000,0.000095973000000,0.000023295000000,0.000020529500000,0.000050146000000,0.000227528000000,0.000050541000000,0.000329849000000,0.000331034000000,0.000547529000000,0.000548318000000,0.031916195000000,0.000555034000000,0.000056466000000,0.000113355000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031183000000,0.000590985000000,0.031952540000000,0.000017369000000,0.000095183000000,0.000023492500000,0.000021517500000,0.000049356000000,0.000229109000000,0.000053701000000,0.000363825000000,0.000365404000000,0.000630096000000,0.000599676000000,0.031491109000000,0.000555429000000,0.000070293000000,0.000063577000000,0.000127578000000,0.000054097000000 +0.000047196500000,0.000031578000000,0.000591380000000,0.031865232000000,0.000017567000000,0.000095578000000,0.000023295500000,0.000027641000000,0.000052121000000,0.000226738000000,0.000049751000000,0.000330244000000,0.000331034000000,0.000581899000000,0.000582293000000,0.031300294000000,0.000589800000000,0.000056071000000,0.000048960000000,0.000140219000000,0.000075034000000 +0.000019542000000,0.000031183000000,0.000557799000000,0.031486763000000,0.000017567000000,0.000095183000000,0.000022307500000,0.000021517500000,0.000054491000000,0.000227528000000,0.000084121000000,0.000383973000000,0.000489849000000,0.000547923000000,0.000548713000000,0.030955010000000,0.000589404000000,0.000056072000000,0.000048170000000,0.000129553000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.031858911000000,0.000017369500000,0.000095183000000,0.000023097500000,0.000020727500000,0.000049751000000,0.000312467000000,0.000050146000000,0.000350392000000,0.000349208000000,0.000631676000000,0.000598886000000,0.031932787000000,0.000555034000000,0.000056467000000,0.000049356000000,0.000126788000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000626936000000,0.031578023000000,0.000017567000000,0.000096368000000,0.000023295000000,0.000020727500000,0.000049750000000,0.000226738000000,0.000052516000000,0.000349998000000,0.000365800000000,0.000632071000000,0.000582688000000,0.031500590000000,0.000555035000000,0.000056072000000,0.000049356000000,0.000128763000000,0.000054097000000 +0.000019542000000,0.000065948000000,0.000777454000000,0.031415257000000,0.000017567000000,0.000129158000000,0.000022505000000,0.000021517500000,0.000049356000000,0.000227923000000,0.000052516000000,0.000350787000000,0.000331035000000,0.000546343000000,0.000549108000000,0.030866911000000,0.000602837000000,0.000056862000000,0.000048961000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.032311256000000,0.000017369000000,0.000097554000000,0.000022505000000,0.000020530000000,0.000068319000000,0.000260714000000,0.000050541000000,0.000351183000000,0.000365405000000,0.000580318000000,0.000549109000000,0.031335454000000,0.000589009000000,0.000073059000000,0.000049356000000,0.000126788000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031149381000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020925000000,0.000049751000000,0.000225553000000,0.000050146000000,0.000384368000000,0.000331824000000,0.000582689000000,0.000596121000000,0.031230763000000,0.000610738000000,0.000056072000000,0.000048960000000,0.000242541000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000557009000000,0.031728145000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000049750000000,0.000226738000000,0.000050936000000,0.000350787000000,0.000331034000000,0.000547923000000,0.000549503000000,0.030698615000000,0.000568861000000,0.000056467000000,0.000080960000000,0.000142591000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000570441000000,0.031566961000000,0.000017566500000,0.000095182000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000226738000000,0.000050541000000,0.000351183000000,0.000378047000000,0.000816960000000,0.000562540000000,0.031297134000000,0.000555429000000,0.000170639000000,0.000049355000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000635627000000,0.031300294000000,0.000017566500000,0.000095578000000,0.000023492500000,0.000020727000000,0.000049356000000,0.000228714000000,0.000050146000000,0.000368171000000,0.000333405000000,0.000582293000000,0.000583084000000,0.031098418000000,0.000645503000000,0.000148516000000,0.000048960000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000032368000000,0.000594146000000,0.031565776000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020727000000,0.000049750000000,0.000227133000000,0.000050541000000,0.000417157000000,0.000401356000000,0.000547528000000,0.000548713000000,0.030653578000000,0.000589010000000,0.000073059000000,0.000048566000000,0.000130738000000,0.000088072000000 +0.000043838500000,0.000031183000000,0.000557010000000,0.032213676000000,0.000027443000000,0.000110195000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000231084000000,0.000084121000000,0.000350392000000,0.000382787000000,0.000546738000000,0.000611133000000,0.031481232000000,0.000625355000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000053306000000 +0.000019542500000,0.000031973000000,0.000556615000000,0.030906418000000,0.000024085000000,0.000095973000000,0.000023295500000,0.000020332000000,0.000049750000000,0.000267824000000,0.000051331000000,0.000389109000000,0.000450343000000,0.000588615000000,0.000617849000000,0.031261973000000,0.000555430000000,0.000056467000000,0.000048961000000,0.000163924000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000608367000000,0.031543652000000,0.000017566500000,0.000095182000000,0.000029419000000,0.000020727500000,0.000049356000000,0.000225948000000,0.000049751000000,0.000350788000000,0.000331034000000,0.000546738000000,0.000548714000000,0.030674517000000,0.000592170000000,0.000056071000000,0.000048961000000,0.000129948000000,0.000053307000000 +0.000019542000000,0.000031973000000,0.000642738000000,0.031483603000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020332500000,0.000049356000000,0.000227133000000,0.000050936000000,0.000350392000000,0.000331824000000,0.000546738000000,0.000563331000000,0.031828491000000,0.000639973000000,0.000090047000000,0.000048960000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000050146000000,0.000590985000000,0.031388393000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020925000000,0.000082541000000,0.000226343000000,0.000050145000000,0.000350393000000,0.000345257000000,0.000616664000000,0.000582294000000,0.031954516000000,0.000590589000000,0.000056466000000,0.000048960000000,0.000147331000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000558195000000,0.031664145000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000228714000000,0.000051331000000,0.000349997000000,0.000331035000000,0.000547528000000,0.000549898000000,0.031773577000000,0.000649454000000,0.000059627000000,0.000068714000000,0.000133898000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000557010000000,0.032193133000000,0.000017566500000,0.000150887000000,0.000022702500000,0.000022505000000,0.000049355000000,0.000226343000000,0.000050146000000,0.000604417000000,0.000365010000000,0.000565701000000,0.000637207000000,0.033021577000000,0.000604417000000,0.000056467000000,0.000049751000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000591380000000,0.031553924000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000021715000000,0.000049356000000,0.000227134000000,0.000050936000000,0.000350788000000,0.000331824000000,0.000581108000000,0.000590590000000,0.031219307000000,0.000555429000000,0.000056862000000,0.000049751000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000806294000000,0.032185231000000,0.000017566500000,0.000096368000000,0.000023295000000,0.000020924500000,0.000049356000000,0.000228319000000,0.000050541000000,0.000364220000000,0.000400565000000,0.000547923000000,0.000582689000000,0.031003998000000,0.000641947000000,0.000056071000000,0.000048566000000,0.000130343000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000598886000000,0.031395898000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020727000000,0.000049751000000,0.000227133000000,0.000050146000000,0.000350787000000,0.000330640000000,0.000547133000000,0.000550688000000,0.031281331000000,0.000590195000000,0.000056466000000,0.000048565000000,0.000127973000000,0.000088071000000 +0.000019542000000,0.000031578000000,0.000557405000000,0.031945429000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000030998500000,0.000049356000000,0.000226343000000,0.000069899000000,0.000350788000000,0.000331430000000,0.000580319000000,0.000594936000000,0.031139109000000,0.000596516000000,0.000056467000000,0.000048170000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000557800000000,0.031367455000000,0.000017566500000,0.000095182000000,0.000022505000000,0.000020727500000,0.000049355000000,0.000225948000000,0.000051331000000,0.000350392000000,0.000344861000000,0.000547528000000,0.000595330000000,0.033315897000000,0.000602047000000,0.000056467000000,0.000048171000000,0.000146146000000,0.000054886000000 +0.000019542000000,0.000031577000000,0.000590985000000,0.032070269000000,0.000019542000000,0.000095578000000,0.000039887500000,0.000020925000000,0.000049356000000,0.000231479000000,0.000050936000000,0.000350393000000,0.000331429000000,0.000560961000000,0.000548713000000,0.031137924000000,0.000556219000000,0.000058837000000,0.000049356000000,0.000127973000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000642738000000,0.034070070000000,0.000017566500000,0.000111380000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000225553000000,0.000050936000000,0.000350392000000,0.000415973000000,0.000581504000000,0.000598096000000,0.031140294000000,0.000568861000000,0.000101898000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019344500000,0.000031973000000,0.000591775000000,0.032446368000000,0.000017369000000,0.000095183000000,0.000023492500000,0.000020727000000,0.000083331000000,0.000225554000000,0.000050146000000,0.000350392000000,0.000331430000000,0.000548318000000,0.000582293000000,0.029996592000000,0.000589800000000,0.000055676000000,0.000048565000000,0.000162343000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000558195000000,0.032430169000000,0.000017566500000,0.000095578000000,0.000031789000000,0.000021320000000,0.000048961000000,0.000229108000000,0.000050541000000,0.000349998000000,0.000372516000000,0.000561355000000,0.000549108000000,0.030328048000000,0.000589800000000,0.000056467000000,0.000103085000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000556220000000,0.031815454000000,0.000017961500000,0.000095973000000,0.000023295500000,0.000022307500000,0.000049355000000,0.000281257000000,0.000050541000000,0.000349997000000,0.000332220000000,0.000581898000000,0.000581898000000,0.030193727000000,0.000555034000000,0.000056072000000,0.000048566000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000591380000000,0.031549182000000,0.000017566500000,0.000128763000000,0.000022900000000,0.000020332500000,0.000049356000000,0.000227529000000,0.000050540000000,0.000351183000000,0.000351577000000,0.000546738000000,0.000582689000000,0.030106023000000,0.000555825000000,0.000056467000000,0.000048566000000,0.000183281000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000680268000000,0.031873133000000,0.000017369000000,0.000109405000000,0.000022505000000,0.000020530000000,0.000049751000000,0.000225554000000,0.000049356000000,0.000349997000000,0.000331429000000,0.000547923000000,0.000548713000000,0.030644492000000,0.000662886000000,0.000056467000000,0.000049355000000,0.000128763000000,0.000053701000000 +0.000020530000000,0.000031973000000,0.000590985000000,0.031515998000000,0.000017369000000,0.000095578000000,0.000023295500000,0.000020332000000,0.000048961000000,0.000226343000000,0.000050541000000,0.000351972000000,0.000331825000000,0.000636022000000,0.000582688000000,0.029995011000000,0.000589009000000,0.000056071000000,0.000048565000000,0.000127578000000,0.000067529000000 +0.000019542000000,0.000031578000000,0.000557799000000,0.031407750000000,0.000017566500000,0.000095972000000,0.000023493000000,0.000021715000000,0.000049751000000,0.000232269000000,0.000052911000000,0.000349998000000,0.000365010000000,0.000546738000000,0.000597701000000,0.030695455000000,0.000590195000000,0.000056466000000,0.000048566000000,0.000127973000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000556219000000,0.031634911000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000043838500000,0.000049355000000,0.000225948000000,0.000050146000000,0.000350392000000,0.000334195000000,0.000546738000000,0.000548713000000,0.030862961000000,0.000555034000000,0.000056072000000,0.000048171000000,0.000130739000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000608368000000,0.032585034000000,0.000017566500000,0.000095973000000,0.000028826000000,0.000021715000000,0.000048961000000,0.000263479000000,0.000050146000000,0.000351973000000,0.000400170000000,0.000581108000000,0.000582294000000,0.030730615000000,0.000568862000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031577000000,0.000639578000000,0.031645182000000,0.000045221000000,0.000095577000000,0.000022505000000,0.000020332500000,0.000048961000000,0.000226738000000,0.000050936000000,0.000351578000000,0.000331035000000,0.000546738000000,0.000583083000000,0.029913629000000,0.000589800000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031482022000000,0.000017566500000,0.000096763000000,0.000023097500000,0.000020332500000,0.000088466000000,0.000228714000000,0.000050935000000,0.000351183000000,0.000365405000000,0.000547528000000,0.000548714000000,0.029996986000000,0.000624565000000,0.000056467000000,0.000048171000000,0.000160763000000,0.000056466000000 +0.000019542000000,0.000031578000000,0.000556614000000,0.031273430000000,0.000017369000000,0.000129158000000,0.000023097500000,0.000020529500000,0.000051331000000,0.000226738000000,0.000052121000000,0.000349997000000,0.000331034000000,0.000581898000000,0.000583479000000,0.031073924000000,0.000555034000000,0.000056072000000,0.000062393000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000556615000000,0.031380096000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000235429000000,0.000050541000000,0.000350788000000,0.000331430000000,0.000564911000000,0.000582293000000,0.030407060000000,0.000555824000000,0.000056072000000,0.000050146000000,0.000127578000000,0.000054096000000 +0.000028826000000,0.000062393000000,0.000591380000000,0.032043010000000,0.000017566500000,0.000095578000000,0.000022110000000,0.000020332000000,0.000048960000000,0.000225554000000,0.000050540000000,0.000402540000000,0.000794837000000,0.000636812000000,0.000550689000000,0.030606961000000,0.000590195000000,0.000056467000000,0.000048566000000,0.000168269000000,0.000054492000000 +0.000027048000000,0.000031578000000,0.000829997000000,0.031377726000000,0.000017566500000,0.000097554000000,0.000023097500000,0.000020530000000,0.000049751000000,0.000226344000000,0.000050541000000,0.000349997000000,0.000380417000000,0.000596515000000,0.000596910000000,0.030661084000000,0.000589405000000,0.000056466000000,0.000049751000000,0.000127183000000,0.000129158000000 +0.000019344500000,0.000031578000000,0.000592170000000,0.031684688000000,0.000017962000000,0.000095973000000,0.000023493000000,0.000020332000000,0.000049750000000,0.000261504000000,0.000050541000000,0.000349998000000,0.000381603000000,0.000616269000000,0.000589405000000,0.030168048000000,0.000596515000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031033627000000,0.000017369500000,0.000095183000000,0.000022702500000,0.000020529500000,0.000050541000000,0.000225948000000,0.000083726000000,0.000350787000000,0.000418343000000,0.000548319000000,0.000548713000000,0.031060096000000,0.000555429000000,0.000056467000000,0.000048960000000,0.000127182000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000557009000000,0.031323603000000,0.000017567000000,0.000095577000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000229504000000,0.000050541000000,0.000351578000000,0.000368170000000,0.000581108000000,0.000598096000000,0.030668986000000,0.000677503000000,0.000111381000000,0.000048961000000,0.000126788000000,0.000053701000000 +0.000036727000000,0.000031578000000,0.000557010000000,0.031633331000000,0.000017567000000,0.000109405000000,0.000046011000000,0.000030603500000,0.000048961000000,0.000229108000000,0.000050541000000,0.000349602000000,0.000331429000000,0.000617454000000,0.000596121000000,0.030665430000000,0.000568862000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000590590000000,0.031429479000000,0.000017369000000,0.000095973000000,0.000023097500000,0.000020924500000,0.000125998000000,0.000312862000000,0.000050936000000,0.000350787000000,0.000331429000000,0.000549108000000,0.000547923000000,0.030559554000000,0.000588614000000,0.000056862000000,0.000048566000000,0.000126788000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000591775000000,0.031500195000000,0.000034949500000,0.000095973000000,0.000023098000000,0.000021319500000,0.000048960000000,0.000226738000000,0.000051726000000,0.000362245000000,0.000331430000000,0.000581504000000,0.000582294000000,0.030171208000000,0.000643923000000,0.000056467000000,0.000049355000000,0.000127577000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000608763000000,0.032137034000000,0.000017369500000,0.000095973000000,0.000023295000000,0.000020727000000,0.000049751000000,0.000226343000000,0.000050936000000,0.000378442000000,0.000381997000000,0.000618245000000,0.000603232000000,0.030418912000000,0.000629701000000,0.000056071000000,0.000088466000000,0.000129948000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000556615000000,0.031153331000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000021517500000,0.000048961000000,0.000262689000000,0.000050936000000,0.000441652000000,0.000331034000000,0.000546738000000,0.000568071000000,0.030607751000000,0.000555429000000,0.000056072000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000590985000000,0.031613577000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020529500000,0.000050936000000,0.000263084000000,0.000049751000000,0.000759281000000,0.000380022000000,0.000581108000000,0.000582688000000,0.031598170000000,0.000589405000000,0.000059628000000,0.000048566000000,0.000161158000000,0.000073850000000 +0.000019542000000,0.000031578000000,0.000601257000000,0.032432935000000,0.000018159500000,0.000115726000000,0.000022307500000,0.000020924500000,0.000050541000000,0.000227923000000,0.000050936000000,0.000686985000000,0.000331034000000,0.000616664000000,0.000617454000000,0.031604491000000,0.000588219000000,0.000056466000000,0.000048170000000,0.000129949000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.032337725000000,0.000017567000000,0.000095578000000,0.000021912500000,0.000020332000000,0.000049356000000,0.000230294000000,0.000050936000000,0.000396614000000,0.000331824000000,0.000547133000000,0.000551479000000,0.030701776000000,0.000588614000000,0.000056862000000,0.000049750000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.031662565000000,0.000017567000000,0.000097158000000,0.000022900000000,0.000021715000000,0.000049751000000,0.000223973000000,0.000083726000000,0.000381998000000,0.000345651000000,0.000581899000000,0.000605207000000,0.031044689000000,0.000556220000000,0.000090442000000,0.000048565000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000618245000000,0.031883800000000,0.000019344500000,0.000095183000000,0.000023097500000,0.000020727000000,0.000048960000000,0.000226343000000,0.000051331000000,0.000349997000000,0.000331034000000,0.000597701000000,0.000599281000000,0.030503455000000,0.000556219000000,0.000056467000000,0.000048961000000,0.000129554000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.031112640000000,0.000017369000000,0.000095578000000,0.000040085000000,0.000020529500000,0.000087677000000,0.000226738000000,0.000050541000000,0.000385158000000,0.000365010000000,0.000547133000000,0.000549109000000,0.031288442000000,0.000605207000000,0.000055676000000,0.000048171000000,0.000127578000000,0.000054096000000 +0.000036530000000,0.000031578000000,0.000602836000000,0.031815454000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000028431000000,0.000062787000000,0.000261899000000,0.000053306000000,0.000349998000000,0.000332614000000,0.000582293000000,0.000617849000000,0.034436292000000,0.000675923000000,0.000056862000000,0.000048566000000,0.000126787000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000586244000000,0.032624934000000,0.000017566500000,0.000095577000000,0.000023295500000,0.000021912500000,0.000049356000000,0.000225948000000,0.000050540000000,0.000385158000000,0.000369751000000,0.000688960000000,0.000617849000000,0.031569726000000,0.000592170000000,0.000059233000000,0.000048565000000,0.000126392000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000553850000000,0.032247256000000,0.000017369000000,0.000142195000000,0.000023097500000,0.000021319500000,0.000049356000000,0.000225158000000,0.000051726000000,0.000350393000000,0.000331035000000,0.000708714000000,0.000548318000000,0.030766171000000,0.000555430000000,0.000056862000000,0.000082145000000,0.000129553000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000568861000000,0.033023947000000,0.000033961500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000225948000000,0.000050541000000,0.000349998000000,0.000331430000000,0.000548318000000,0.000582688000000,0.030627899000000,0.000569651000000,0.000056862000000,0.000048960000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000594936000000,0.031061281000000,0.000017961500000,0.000095577000000,0.000023492500000,0.000020332000000,0.000049751000000,0.000226343000000,0.000051331000000,0.000381603000000,0.000365405000000,0.000581109000000,0.000807874000000,0.030255752000000,0.000625750000000,0.000056071000000,0.000048565000000,0.000160763000000,0.000088071000000 +0.000019542000000,0.000031577000000,0.000624565000000,0.030139998000000,0.000017566500000,0.000095183000000,0.000022505000000,0.000021517000000,0.000049355000000,0.000229504000000,0.000051331000000,0.000331035000000,0.000331825000000,0.000582689000000,0.000582689000000,0.030229678000000,0.000632466000000,0.000056467000000,0.000048566000000,0.000130343000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031572886000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000021320000000,0.000049751000000,0.000227133000000,0.000051331000000,0.000554244000000,0.000371726000000,0.000547133000000,0.000549504000000,0.030962911000000,0.000589800000000,0.000091628000000,0.000049356000000,0.000129948000000,0.000054096000000 +0.000019344500000,0.000031973000000,0.000553454000000,0.031760540000000,0.000017369000000,0.000096368000000,0.000023097500000,0.000021517500000,0.000048565000000,0.000263084000000,0.000096764000000,0.000330244000000,0.000331824000000,0.000580713000000,0.000582688000000,0.030201629000000,0.000555824000000,0.000069504000000,0.000048170000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031749874000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000020332000000,0.000048960000000,0.000225948000000,0.000050145000000,0.000379232000000,0.000351182000000,0.000580713000000,0.000628516000000,0.030613282000000,0.000620220000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000652220000000,0.031549973000000,0.000018159000000,0.000095973000000,0.000032184000000,0.000021517500000,0.000048960000000,0.000226343000000,0.000052517000000,0.000330244000000,0.000331429000000,0.000547528000000,0.000549109000000,0.030507011000000,0.000661306000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000686985000000,0.032455059000000,0.000017369000000,0.000095577000000,0.000023098000000,0.000028233500000,0.000049356000000,0.000227133000000,0.000051331000000,0.000364220000000,0.000331824000000,0.000580713000000,0.000583083000000,0.030333974000000,0.000624565000000,0.000056466000000,0.000048171000000,0.000129948000000,0.000053702000000 +0.000038702500000,0.000031973000000,0.000552664000000,0.031699306000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021320000000,0.000049356000000,0.000225553000000,0.000050145000000,0.000330639000000,0.000436911000000,0.000581503000000,0.000582294000000,0.031591850000000,0.000588614000000,0.000056467000000,0.000048171000000,0.000127577000000,0.000055281000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031725775000000,0.000017566500000,0.000095973000000,0.000023097500000,0.000021122000000,0.000048960000000,0.000227529000000,0.000050935000000,0.000461405000000,0.000331430000000,0.000546738000000,0.000548713000000,0.030704936000000,0.000555825000000,0.000056072000000,0.000082936000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.032338120000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000225553000000,0.000051331000000,0.000419133000000,0.000364615000000,0.000581109000000,0.000615478000000,0.030104838000000,0.000586639000000,0.000056072000000,0.000048566000000,0.000128368000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.032050911000000,0.000024677500000,0.000097949000000,0.000022900500000,0.000021715000000,0.000052122000000,0.000281256000000,0.000052122000000,0.000363825000000,0.000331430000000,0.000581504000000,0.000594935000000,0.030139603000000,0.000589404000000,0.000056862000000,0.000048565000000,0.000168269000000,0.000107035000000 +0.000019345000000,0.000031578000000,0.000587034000000,0.032007849000000,0.000017369000000,0.000129159000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000229504000000,0.000050540000000,0.000329850000000,0.000350788000000,0.000547133000000,0.000548714000000,0.030465924000000,0.000625750000000,0.000056467000000,0.000048565000000,0.000126787000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032013379000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021320000000,0.000056071000000,0.000225158000000,0.000050146000000,0.000330244000000,0.000331429000000,0.000596911000000,0.000601652000000,0.030438665000000,0.000576368000000,0.000056467000000,0.000048961000000,0.000134688000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000566491000000,0.032522614000000,0.000017369000000,0.000095183000000,0.000023492500000,0.000020925000000,0.000049356000000,0.000228318000000,0.000084121000000,0.000364219000000,0.000331430000000,0.000581899000000,0.000630096000000,0.030267603000000,0.000556220000000,0.000056862000000,0.000048566000000,0.000129158000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000587430000000,0.031482022000000,0.000017566500000,0.000095183000000,0.000022900500000,0.000021320000000,0.000071085000000,0.000226344000000,0.000050936000000,0.000329849000000,0.000416763000000,0.000547133000000,0.000550688000000,0.029901776000000,0.000638393000000,0.000056466000000,0.000048566000000,0.000144961000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000588615000000,0.032137824000000,0.000017566500000,0.000095182000000,0.000023097500000,0.000021320000000,0.000049356000000,0.000225949000000,0.000050541000000,0.000376862000000,0.000331035000000,0.000580714000000,0.000618244000000,0.029913628000000,0.000590195000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000552664000000,0.031890121000000,0.000017566500000,0.000096763000000,0.000022505000000,0.000021122000000,0.000049355000000,0.000226344000000,0.000049356000000,0.000330640000000,0.000608367000000,0.000566887000000,0.000581899000000,0.030439455000000,0.000865552000000,0.000056467000000,0.000049355000000,0.000163529000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.032103849000000,0.000017566500000,0.000095578000000,0.000023690000000,0.000020332000000,0.000049356000000,0.000478787000000,0.000050936000000,0.000330639000000,0.000351973000000,0.000548713000000,0.000549108000000,0.030235999000000,0.000603627000000,0.000056467000000,0.000048960000000,0.000127973000000,0.000053702000000 +0.000027048000000,0.000031973000000,0.000600862000000,0.031803207000000,0.000017567000000,0.000179331000000,0.000022702500000,0.000021319500000,0.000049356000000,0.000362244000000,0.000050146000000,0.000330244000000,0.000365010000000,0.000600467000000,0.000617454000000,0.030479356000000,0.000605997000000,0.000056072000000,0.000068714000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000642738000000,0.031645973000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000021517000000,0.000048960000000,0.000229109000000,0.000051331000000,0.000330244000000,0.000331035000000,0.000547528000000,0.000583084000000,0.030448542000000,0.000555824000000,0.000056071000000,0.000048960000000,0.000127578000000,0.000087677000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.031737626000000,0.000017567000000,0.000095578000000,0.000023690000000,0.000021319500000,0.000050146000000,0.000229504000000,0.000050936000000,0.000365010000000,0.000380812000000,0.000547923000000,0.000547923000000,0.029725974000000,0.000554244000000,0.000056071000000,0.000049751000000,0.000127578000000,0.000055676000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.031472541000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000050936000000,0.000227528000000,0.000051726000000,0.000330640000000,0.000331430000000,0.000589405000000,0.000582689000000,0.030291702000000,0.000643528000000,0.000125603000000,0.000048566000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.032125182000000,0.000035542000000,0.000095182000000,0.000022505000000,0.000021320000000,0.000049356000000,0.000229899000000,0.000050146000000,0.000372516000000,0.000331035000000,0.000566886000000,0.000851330000000,0.030930912000000,0.000589800000000,0.000059233000000,0.000048171000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000588219000000,0.033394515000000,0.000019147000000,0.000095183000000,0.000023097500000,0.000020530000000,0.000049751000000,0.000227528000000,0.000071084000000,0.000329454000000,0.000331825000000,0.000547923000000,0.000612319000000,0.030264048000000,0.000637602000000,0.000056466000000,0.000048960000000,0.000161158000000,0.000053702000000 +0.000019542000000,0.000078590000000,0.000600071000000,0.031554714000000,0.000018554000000,0.000164713000000,0.000023492500000,0.000021517500000,0.000084911000000,0.000225553000000,0.000050541000000,0.000330639000000,0.000331430000000,0.000581108000000,0.000549503000000,0.030336344000000,0.000555429000000,0.000056466000000,0.000050145000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000553059000000,0.032500096000000,0.000017567000000,0.000097553000000,0.000023295000000,0.000021320000000,0.000052516000000,0.000226343000000,0.000050541000000,0.000398985000000,0.000367775000000,0.000547133000000,0.000594935000000,0.030606961000000,0.000556219000000,0.000056862000000,0.000048565000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031973000000,0.000553059000000,0.031756590000000,0.000017566500000,0.000095578000000,0.000024283000000,0.000020530000000,0.000048960000000,0.000229109000000,0.000050146000000,0.000329849000000,0.000333800000000,0.000547528000000,0.000589405000000,0.029816838000000,0.000589405000000,0.000056072000000,0.000048171000000,0.000168269000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000589010000000,0.032069873000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000038307500000,0.000056072000000,0.000225553000000,0.000050936000000,0.000376862000000,0.000365800000000,0.000707528000000,0.000548713000000,0.030356097000000,0.000630886000000,0.000056862000000,0.000048566000000,0.000127578000000,0.000052911000000 +0.000019542000000,0.000031973000000,0.000639577000000,0.034184242000000,0.000017369000000,0.000095577000000,0.000023097500000,0.000027048500000,0.000049751000000,0.000228713000000,0.000053306000000,0.000329850000000,0.000331034000000,0.000582294000000,0.000626935000000,0.031359948000000,0.000589009000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000054097000000 +0.000036332500000,0.000031183000000,0.000588219000000,0.033757971000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000227529000000,0.000050146000000,0.000364615000000,0.000331429000000,0.000547133000000,0.000618244000000,0.033552539000000,0.000555825000000,0.000056467000000,0.000048961000000,0.000127182000000,0.000088071000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.032572392000000,0.000017369000000,0.000095183000000,0.000023098000000,0.000020332000000,0.000048961000000,0.000226343000000,0.000050936000000,0.000329850000000,0.000365405000000,0.000581108000000,0.000549503000000,0.030620393000000,0.000555429000000,0.000090442000000,0.000048170000000,0.000142986000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031961627000000,0.000017369000000,0.000148121000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000226343000000,0.000050936000000,0.000329849000000,0.000331035000000,0.000582688000000,0.000577948000000,0.030527554000000,0.000623775000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000054096000000 +0.000019937000000,0.000031578000000,0.000715034000000,0.031956095000000,0.000017369000000,0.000110590000000,0.000022505000000,0.000021320000000,0.000049751000000,0.000224763000000,0.000071874000000,0.000363824000000,0.000365405000000,0.000548318000000,0.000583083000000,0.029653678000000,0.000604813000000,0.000056072000000,0.000048961000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.031795701000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000020530000000,0.000049356000000,0.000229504000000,0.000063183000000,0.000330244000000,0.000331825000000,0.000598886000000,0.000549109000000,0.030211900000000,0.000573998000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000622985000000,0.031614763000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000020925000000,0.000050541000000,0.000225948000000,0.000050936000000,0.000415182000000,0.000331430000000,0.000594935000000,0.000564120000000,0.030097332000000,0.000555824000000,0.000056072000000,0.000048170000000,0.000129948000000,0.000054491000000 +0.000019344500000,0.000065158000000,0.000553454000000,0.032170219000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000049750000000,0.000225158000000,0.000050541000000,0.000329849000000,0.000331034000000,0.000547133000000,0.000583084000000,0.029697530000000,0.001012120000000,0.000056466000000,0.000050146000000,0.000160763000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032285577000000,0.000017369500000,0.000095578000000,0.000029616000000,0.000020925000000,0.000049751000000,0.000242936000000,0.000049355000000,0.000363825000000,0.000331430000000,0.000581504000000,0.000548713000000,0.029826715000000,0.000555824000000,0.000056466000000,0.000048961000000,0.000132319000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000622985000000,0.031546417000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000021320000000,0.000049356000000,0.000227133000000,0.000052517000000,0.000329849000000,0.000372121000000,0.000566887000000,0.000636417000000,0.030144344000000,0.000590195000000,0.000056467000000,0.000049751000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000031577000000,0.000594541000000,0.032361034000000,0.000017369500000,0.000095183000000,0.000022307500000,0.000028036000000,0.000048960000000,0.000225948000000,0.000052121000000,0.000330244000000,0.000342096000000,0.000597306000000,0.000583479000000,0.029905332000000,0.000596910000000,0.000056862000000,0.000048171000000,0.000161158000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000638392000000,0.031707997000000,0.000017567000000,0.000095578000000,0.000022900500000,0.000020332000000,0.000049356000000,0.000228319000000,0.000050146000000,0.000472467000000,0.000416368000000,0.000630886000000,0.000549108000000,0.030141578000000,0.000624960000000,0.000056072000000,0.000049751000000,0.000126788000000,0.000053307000000 +0.000036530000000,0.000031183000000,0.000553059000000,0.031674417000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020727500000,0.000048961000000,0.000229108000000,0.000049750000000,0.000622590000000,0.000331035000000,0.000581108000000,0.000562145000000,0.029895455000000,0.000555824000000,0.000071479000000,0.000048961000000,0.000131134000000,0.000054491000000 +0.000020925000000,0.000031973000000,0.000588219000000,0.032688144000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000020727500000,0.000049355000000,0.000225554000000,0.000050935000000,0.000379627000000,0.000351578000000,0.000548318000000,0.000583084000000,0.030059011000000,0.000555430000000,0.000056467000000,0.000048960000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031973000000,0.000924417000000,0.031738813000000,0.000017369000000,0.000095972000000,0.000022703000000,0.000020332000000,0.000049356000000,0.000226344000000,0.000052517000000,0.000330244000000,0.000331035000000,0.000581899000000,0.000549503000000,0.031176639000000,0.000625356000000,0.000056467000000,0.000048565000000,0.000129553000000,0.000071479000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031460294000000,0.000027245500000,0.000129158000000,0.000022702500000,0.000022110000000,0.000050541000000,0.000225553000000,0.000072269000000,0.000330244000000,0.000331429000000,0.000588220000000,0.000583874000000,0.031541677000000,0.000602442000000,0.000056467000000,0.000049751000000,0.000126392000000,0.000053306000000 +0.000019344500000,0.000031578000000,0.000621010000000,0.031836392000000,0.000017369500000,0.000095578000000,0.000023492500000,0.000020530000000,0.000049356000000,0.000229898000000,0.000050935000000,0.000329850000000,0.000365010000000,0.000547529000000,0.000582293000000,0.030972788000000,0.000602046000000,0.000056466000000,0.000048566000000,0.000127182000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000600466000000,0.031574862000000,0.000017567000000,0.000095577000000,0.000022702500000,0.000020925000000,0.000048960000000,0.000229504000000,0.000049355000000,0.000364220000000,0.000383973000000,0.000829997000000,0.000549108000000,0.030837677000000,0.000555824000000,0.000056071000000,0.000050541000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000051726000000,0.000553849000000,0.032308096000000,0.000017567000000,0.000095578000000,0.000039295000000,0.000020529500000,0.000049356000000,0.000225158000000,0.000050541000000,0.000329849000000,0.000365010000000,0.000625355000000,0.000596121000000,0.030459998000000,0.000555430000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031573676000000,0.000017369500000,0.000095973000000,0.000022505000000,0.000020529500000,0.000049356000000,0.000365405000000,0.000050541000000,0.000371725000000,0.000332220000000,0.000548318000000,0.000583479000000,0.031314911000000,0.000639972000000,0.000056467000000,0.000048961000000,0.000129158000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.031540097000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021122000000,0.000049355000000,0.000226343000000,0.000049751000000,0.000366195000000,0.000331429000000,0.000547133000000,0.000549503000000,0.030546517000000,0.000589405000000,0.000056467000000,0.000048960000000,0.000161948000000,0.000087677000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031670071000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000020529500000,0.000050146000000,0.000225553000000,0.000050541000000,0.000329059000000,0.000331430000000,0.000582293000000,0.000590590000000,0.030517283000000,0.000555429000000,0.000055282000000,0.000118886000000,0.000127577000000,0.000054886000000 +0.000019542500000,0.000031578000000,0.000588220000000,0.031352047000000,0.000017369000000,0.000179725000000,0.000022307500000,0.000021122000000,0.000048961000000,0.000228319000000,0.000049751000000,0.000329849000000,0.000331825000000,0.000547528000000,0.000582689000000,0.031205479000000,0.000554639000000,0.000056862000000,0.000065553000000,0.000127182000000,0.000054096000000 +0.000029418500000,0.000031578000000,0.000553059000000,0.031389578000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020332000000,0.000049355000000,0.000227134000000,0.000051331000000,0.000330245000000,0.000365405000000,0.000547133000000,0.000564121000000,0.030939998000000,0.000569651000000,0.000056467000000,0.000064763000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000659725000000,0.032002318000000,0.000018159000000,0.000095183000000,0.000022505000000,0.000021319500000,0.000049356000000,0.000225158000000,0.000049356000000,0.000398590000000,0.000331035000000,0.000581108000000,0.000720960000000,0.030364789000000,0.000589799000000,0.000056466000000,0.000048961000000,0.000203430000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.031333479000000,0.000018554500000,0.000095973000000,0.000022702500000,0.000021517000000,0.000089256000000,0.000225948000000,0.000077800000000,0.000330245000000,0.000388318000000,0.000547528000000,0.000582293000000,0.030940788000000,0.000602837000000,0.000056072000000,0.000048171000000,0.000127973000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000637602000000,0.032720539000000,0.000027443000000,0.000096763000000,0.000023097500000,0.000021912500000,0.000050541000000,0.000230688000000,0.000051331000000,0.000376467000000,0.000331034000000,0.000547133000000,0.000549898000000,0.030717578000000,0.000576762000000,0.000059627000000,0.000048566000000,0.000161553000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000639578000000,0.031821775000000,0.000017566500000,0.000095577000000,0.000022702500000,0.000021320000000,0.000049356000000,0.000225948000000,0.000049751000000,0.000330244000000,0.000331429000000,0.000581109000000,0.000549503000000,0.032644688000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.031119355000000,0.000017566500000,0.000154837000000,0.000033172000000,0.000021517500000,0.000049356000000,0.000225158000000,0.000050936000000,0.000329849000000,0.000346047000000,0.000547528000000,0.000584269000000,0.031246566000000,0.000589405000000,0.000056862000000,0.000048565000000,0.000140615000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031631750000000,0.000017566500000,0.000110590000000,0.000022703000000,0.000022110000000,0.000050541000000,0.000228318000000,0.000049751000000,0.000329849000000,0.000331034000000,0.000598886000000,0.000587429000000,0.030555209000000,0.000599281000000,0.000056467000000,0.000068714000000,0.000209356000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000622985000000,0.032638762000000,0.000017566500000,0.000095183000000,0.000023097500000,0.000020529500000,0.000048961000000,0.000226739000000,0.000050145000000,0.000330245000000,0.000365009000000,0.000581108000000,0.000550293000000,0.030329233000000,0.000589800000000,0.000125603000000,0.000048565000000,0.000127973000000,0.000067529000000 +0.000019344500000,0.000031578000000,0.000602836000000,0.031466615000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000020529500000,0.000049356000000,0.000232664000000,0.000050145000000,0.000502886000000,0.000331824000000,0.000616269000000,0.000583479000000,0.031713133000000,0.000554639000000,0.000056862000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032658120000000,0.000017369000000,0.000095183000000,0.000022307500000,0.000021517000000,0.000049356000000,0.000229109000000,0.000052912000000,0.000330244000000,0.000351972000000,0.000547528000000,0.000618244000000,0.030686764000000,0.000820121000000,0.000056467000000,0.000048961000000,0.000147331000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032797182000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020332000000,0.000050145000000,0.000229108000000,0.000050540000000,0.000621404000000,0.000331824000000,0.000582294000000,0.000548714000000,0.033541082000000,0.000569256000000,0.000059232000000,0.000048961000000,0.000127182000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.032364590000000,0.000017567000000,0.000115331000000,0.000022505000000,0.000020529500000,0.000048961000000,0.000227528000000,0.000049751000000,0.000329850000000,0.000331034000000,0.000618244000000,0.000583874000000,0.031988491000000,0.000624960000000,0.000056862000000,0.000049356000000,0.000127182000000,0.000056071000000 +0.000046801000000,0.000031973000000,0.000587825000000,0.031629380000000,0.000017567000000,0.000095578000000,0.000023295500000,0.000021517000000,0.000084122000000,0.000229108000000,0.000063973000000,0.000330640000000,0.000502887000000,0.000547133000000,0.000626540000000,0.031896441000000,0.000589010000000,0.000056862000000,0.000049355000000,0.000127973000000,0.000054097000000 +0.000020727500000,0.000031578000000,0.000587429000000,0.031837577000000,0.000017369500000,0.000095183000000,0.000023097500000,0.000021319500000,0.000049356000000,0.000225159000000,0.000051331000000,0.000330244000000,0.000331430000000,0.000617059000000,0.000549899000000,0.030565084000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031182000000,0.000553850000000,0.031423948000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000021122000000,0.000049750000000,0.000233060000000,0.000050540000000,0.000364614000000,0.000415578000000,0.000735182000000,0.000582294000000,0.030706122000000,0.000554244000000,0.000056072000000,0.000048566000000,0.000134294000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000568071000000,0.031669676000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021122000000,0.000049356000000,0.000226738000000,0.000049751000000,0.000330244000000,0.000331429000000,0.000671577000000,0.000617849000000,0.031345330000000,0.000605602000000,0.000075430000000,0.000048566000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000711874000000,0.031941873000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020924500000,0.000052121000000,0.000229109000000,0.000050146000000,0.000363429000000,0.000416763000000,0.000547133000000,0.000548713000000,0.031281331000000,0.000624565000000,0.000084121000000,0.000048565000000,0.000141010000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000600467000000,0.031505331000000,0.000017567000000,0.000095577000000,0.000022900000000,0.000021122000000,0.000049356000000,0.000262294000000,0.000049751000000,0.000450343000000,0.000331429000000,0.000580713000000,0.000582293000000,0.030770912000000,0.000590195000000,0.000056071000000,0.000048565000000,0.000127183000000,0.000088861000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031233529000000,0.000017369500000,0.000166689000000,0.000022307500000,0.000021517000000,0.000048960000000,0.000225948000000,0.000052911000000,0.000349997000000,0.000370145000000,0.000581503000000,0.000665256000000,0.030800937000000,0.000555429000000,0.000056467000000,0.000049750000000,0.000127578000000,0.000057652000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031584343000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000037912500000,0.000052516000000,0.000227133000000,0.000050936000000,0.000329849000000,0.000331429000000,0.000547133000000,0.000712664000000,0.030752343000000,0.000568466000000,0.000056862000000,0.000048960000000,0.000312072000000,0.000053702000000 +0.000029418500000,0.000031578000000,0.000620614000000,0.031933577000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020529500000,0.000054096000000,0.000228319000000,0.000049751000000,0.000330245000000,0.000331430000000,0.000667627000000,0.000550294000000,0.030396788000000,0.000640367000000,0.000056072000000,0.000048566000000,0.000129553000000,0.000054096000000 +0.000026258000000,0.000031578000000,0.000640367000000,0.031362714000000,0.000017369500000,0.000095578000000,0.000022703000000,0.000021517500000,0.000050146000000,0.000227923000000,0.000050936000000,0.000417158000000,0.000422689000000,0.000581109000000,0.000582689000000,0.031102368000000,0.000754145000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000588219000000,0.032075799000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020529500000,0.000049750000000,0.000225948000000,0.000138244000000,0.000329454000000,0.000331429000000,0.000547923000000,0.000582688000000,0.030461183000000,0.000588614000000,0.000056072000000,0.000048170000000,0.000142195000000,0.000054096000000 +0.000019542500000,0.000031578000000,0.000553059000000,0.031961232000000,0.000017369500000,0.000097158000000,0.000023295000000,0.000021320000000,0.000048961000000,0.000228319000000,0.000069109000000,0.000376466000000,0.000769947000000,0.000617059000000,0.000549109000000,0.030459604000000,0.000589010000000,0.000055677000000,0.000048565000000,0.000127577000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.032297034000000,0.000017369500000,0.000129158000000,0.000023295000000,0.000020332000000,0.000049751000000,0.000229108000000,0.000065553000000,0.000329849000000,0.000400565000000,0.000600466000000,0.000582688000000,0.030335949000000,0.000733207000000,0.000056466000000,0.000048171000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000595331000000,0.031430664000000,0.000017369500000,0.000095183000000,0.000023493000000,0.000020924500000,0.000049355000000,0.000227134000000,0.000049356000000,0.000329850000000,0.000331429000000,0.000544762000000,0.000583084000000,0.031253676000000,0.000589009000000,0.000125997000000,0.000048566000000,0.000168269000000,0.000087677000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031723010000000,0.000043246000000,0.000095577000000,0.000022307500000,0.000021319500000,0.000049356000000,0.000228713000000,0.000050541000000,0.000329850000000,0.000331035000000,0.000560170000000,0.000549503000000,0.030355307000000,0.000555825000000,0.000056861000000,0.000048960000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000586640000000,0.031542862000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000021319500000,0.000048961000000,0.000225948000000,0.000050936000000,0.000330639000000,0.000380022000000,0.000665256000000,0.000583479000000,0.030384937000000,0.000571232000000,0.000056071000000,0.000048565000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032197873000000,0.000017567000000,0.000095183000000,0.000023492500000,0.000021715000000,0.000049355000000,0.000229504000000,0.000050541000000,0.000364220000000,0.000333405000000,0.000543578000000,0.000583083000000,0.030563504000000,0.000589404000000,0.000055282000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000045405000000,0.000553454000000,0.032087651000000,0.000017369500000,0.000095973000000,0.000023097500000,0.000037715000000,0.000048961000000,0.000226343000000,0.000050541000000,0.000330640000000,0.000400565000000,0.000543973000000,0.000549108000000,0.030161332000000,0.000589010000000,0.000056467000000,0.000048961000000,0.000130739000000,0.000053701000000 +0.000019542500000,0.000031578000000,0.000600071000000,0.031787800000000,0.000017369500000,0.000096367000000,0.000023295000000,0.000021715000000,0.000048961000000,0.000227528000000,0.000050541000000,0.000363825000000,0.000331429000000,0.000596911000000,0.000583479000000,0.030762615000000,0.000555824000000,0.000056467000000,0.000048171000000,0.000128368000000,0.000053702000000 +0.000029418500000,0.000031578000000,0.000774689000000,0.031675602000000,0.000017567000000,0.000142591000000,0.000023098000000,0.000022110000000,0.000049355000000,0.000264269000000,0.000063973000000,0.000331034000000,0.000419923000000,0.000544763000000,0.000567677000000,0.030548492000000,0.000555429000000,0.000056467000000,0.000048960000000,0.000130343000000,0.000053701000000 +0.000019542000000,0.000031577000000,0.000605207000000,0.032080145000000,0.000017369500000,0.000095577000000,0.000022702500000,0.000021517000000,0.000049355000000,0.000240960000000,0.000050540000000,0.000331034000000,0.000331035000000,0.000592960000000,0.000549503000000,0.030493184000000,0.000589010000000,0.000056466000000,0.000048170000000,0.000159578000000,0.000054887000000 +0.000019542500000,0.000031578000000,0.000553059000000,0.031348097000000,0.000017369500000,0.000095973000000,0.000023492500000,0.000022307500000,0.000049751000000,0.000225949000000,0.000050541000000,0.000413998000000,0.000331429000000,0.000578737000000,0.000617454000000,0.030215060000000,0.000603231000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000553850000000,0.032968244000000,0.000017567000000,0.000095578000000,0.000022110000000,0.000021320000000,0.000048960000000,0.000225158000000,0.000050146000000,0.000329850000000,0.000693701000000,0.000543578000000,0.000570441000000,0.030423258000000,0.000589405000000,0.000095973000000,0.000048171000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031471356000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000021517500000,0.000049355000000,0.000337750000000,0.000050146000000,0.000364219000000,0.000365405000000,0.000558985000000,0.000549109000000,0.030390863000000,0.000555824000000,0.000058837000000,0.000048961000000,0.000224763000000,0.000067529000000 +0.000019542000000,0.000031578000000,0.000640368000000,0.031874318000000,0.000017567000000,0.000095578000000,0.000032974000000,0.000020925000000,0.000048566000000,0.000242145000000,0.000050146000000,0.000329849000000,0.000331035000000,0.000584664000000,0.000582689000000,0.031973083000000,0.000687775000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000047380000000,0.000587035000000,0.031316886000000,0.000042455500000,0.000095578000000,0.000023098000000,0.000020530000000,0.000048566000000,0.000225553000000,0.000049750000000,0.000363825000000,0.000365010000000,0.000543577000000,0.000549898000000,0.030639356000000,0.000587824000000,0.000057257000000,0.000066343000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000570047000000,0.031685874000000,0.000017369000000,0.000110195000000,0.000022900500000,0.000020924500000,0.000049355000000,0.000228714000000,0.000050935000000,0.000329849000000,0.000331035000000,0.000578343000000,0.000547924000000,0.030633430000000,0.000589405000000,0.000056862000000,0.000049356000000,0.000198294000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.034105230000000,0.000017566500000,0.000095577000000,0.000022702500000,0.000021320000000,0.000049356000000,0.000226343000000,0.000049751000000,0.000330244000000,0.000331034000000,0.000578343000000,0.000583479000000,0.030329628000000,0.000555824000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000052517000000,0.000587825000000,0.033766663000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000038307500000,0.000049751000000,0.000226343000000,0.000050146000000,0.000372516000000,0.000345257000000,0.000544763000000,0.000570047000000,0.030410220000000,0.000555824000000,0.000056862000000,0.000048171000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000033553000000,0.000641157000000,0.032268589000000,0.000017369000000,0.000095973000000,0.000022505000000,0.000020332500000,0.000123233000000,0.000225948000000,0.000121257000000,0.000329849000000,0.000331429000000,0.000736762000000,0.000551084000000,0.030384936000000,0.000589010000000,0.000056072000000,0.000048960000000,0.000165109000000,0.000054491000000 +0.000029221000000,0.000045010000000,0.000587824000000,0.032028392000000,0.000018751500000,0.000095972000000,0.000023493000000,0.000020925000000,0.000084516000000,0.000229109000000,0.000050146000000,0.000364219000000,0.000400170000000,0.000579133000000,0.000589009000000,0.032341676000000,0.000590589000000,0.000059232000000,0.000049750000000,0.000127578000000,0.000054097000000 +0.000026455500000,0.000031578000000,0.000553059000000,0.031390368000000,0.000017566500000,0.000095973000000,0.000023493000000,0.000021320000000,0.000052121000000,0.000225158000000,0.000050541000000,0.000329849000000,0.000331035000000,0.000543973000000,0.000568862000000,0.033355403000000,0.000612713000000,0.000095578000000,0.000048565000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000627330000000,0.031515603000000,0.000017566500000,0.000142195000000,0.000022900000000,0.000021517500000,0.000063973000000,0.000228714000000,0.000050936000000,0.000330245000000,0.000365405000000,0.000544367000000,0.000549504000000,0.032076195000000,0.000555824000000,0.000130738000000,0.000048171000000,0.000128368000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.032368540000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000021122500000,0.000049356000000,0.000231479000000,0.000050540000000,0.000329849000000,0.000331429000000,0.000660911000000,0.000582293000000,0.031340195000000,0.000555034000000,0.000105849000000,0.000049356000000,0.000360664000000,0.000069899000000 +0.000019542000000,0.000031578000000,0.000607183000000,0.031618713000000,0.000018159000000,0.000095182000000,0.000039492500000,0.000020332500000,0.000049356000000,0.000225948000000,0.000049751000000,0.000330244000000,0.000332219000000,0.000578737000000,0.000549503000000,0.031597380000000,0.000589800000000,0.000060022000000,0.000048961000000,0.000202244000000,0.000055282000000 +0.000019344500000,0.000031577000000,0.000553454000000,0.031444491000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000225553000000,0.000050541000000,0.000397405000000,0.000400565000000,0.000544368000000,0.000548714000000,0.031584343000000,0.000589009000000,0.000069899000000,0.000097948000000,0.000130343000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.032142960000000,0.000034159500000,0.000095578000000,0.000022505000000,0.000022110000000,0.000069504000000,0.000224763000000,0.000051331000000,0.000414393000000,0.000331035000000,0.000577948000000,0.000711479000000,0.031898417000000,0.000554639000000,0.000056862000000,0.000050146000000,0.000128763000000,0.000053701000000 +0.000020530000000,0.000065554000000,0.000806293000000,0.031668886000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000022307500000,0.000049751000000,0.000261899000000,0.000051331000000,0.000364220000000,0.000365010000000,0.000543973000000,0.000582293000000,0.032422269000000,0.001385453000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000607182000000,0.031272245000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000020332500000,0.000049356000000,0.000228714000000,0.000052516000000,0.000329849000000,0.000331429000000,0.000544762000000,0.000548714000000,0.031832837000000,0.000692515000000,0.000056862000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.032312836000000,0.000017369500000,0.000095183000000,0.000023690000000,0.000022702500000,0.000070294000000,0.000225553000000,0.000063973000000,0.000349997000000,0.000354343000000,0.000597306000000,0.000616663000000,0.031811503000000,0.000871084000000,0.000056072000000,0.000048960000000,0.000129948000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031835207000000,0.000017369500000,0.000095972000000,0.000030998500000,0.000038900000000,0.000049751000000,0.000227923000000,0.000050146000000,0.000331034000000,0.000331825000000,0.000543577000000,0.000618640000000,0.031440541000000,0.000605207000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000026455500000,0.000031578000000,0.000555430000000,0.031165974000000,0.000017567000000,0.000095578000000,0.000029023500000,0.000021912000000,0.000049356000000,0.000224763000000,0.000050541000000,0.000330244000000,0.000331825000000,0.000544368000000,0.000549108000000,0.031707207000000,0.000555430000000,0.000056466000000,0.000048566000000,0.000229504000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000604812000000,0.031197183000000,0.000017566500000,0.000095973000000,0.000023492500000,0.000021517500000,0.000049750000000,0.000230294000000,0.000050936000000,0.000376861000000,0.000417553000000,0.000616269000000,0.000619824000000,0.031657429000000,0.000568466000000,0.000056071000000,0.000048171000000,0.000127183000000,0.000067924000000 +0.000019542000000,0.000031973000000,0.000587034000000,0.031034813000000,0.000017566500000,0.000095182000000,0.000023295000000,0.000020332500000,0.000050146000000,0.000225553000000,0.000052121000000,0.000330244000000,0.000331430000000,0.000545157000000,0.000582293000000,0.031216936000000,0.000723330000000,0.000056467000000,0.000048171000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000587035000000,0.031026912000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021122500000,0.000048960000000,0.000228319000000,0.000050936000000,0.000457454000000,0.000400170000000,0.000544763000000,0.000548318000000,0.031707207000000,0.000589009000000,0.000056467000000,0.000049355000000,0.000176566000000,0.000054492000000 +0.000019344500000,0.000031577000000,0.000573602000000,0.031904343000000,0.000017566500000,0.000172219000000,0.000022505000000,0.000021320000000,0.000049356000000,0.000226343000000,0.000050936000000,0.000346047000000,0.000331430000000,0.000578738000000,0.000582689000000,0.031621874000000,0.000619824000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054491000000 +0.000019739500000,0.000031183000000,0.000552664000000,0.030785924000000,0.000017566500000,0.000251628000000,0.000022900500000,0.000021517500000,0.000049355000000,0.000225553000000,0.000050541000000,0.000364220000000,0.000364615000000,0.000543973000000,0.000582689000000,0.032458219000000,0.000556614000000,0.000056862000000,0.000049750000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000622195000000,0.030784739000000,0.000018159000000,0.000115726000000,0.000022702500000,0.000040085500000,0.000049751000000,0.000227133000000,0.000050541000000,0.000329849000000,0.000331825000000,0.000544367000000,0.000564120000000,0.031747898000000,0.000555429000000,0.000090047000000,0.000048960000000,0.000147331000000,0.000054096000000 +0.000019542000000,0.000051331000000,0.000587430000000,0.030898912000000,0.000017369500000,0.000095973000000,0.000023492500000,0.000021517500000,0.000050541000000,0.000227134000000,0.000049750000000,0.000330244000000,0.000331429000000,0.000577553000000,0.000655775000000,0.031595800000000,0.000629306000000,0.000056467000000,0.000048566000000,0.000127182000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000588614000000,0.031840343000000,0.000017567000000,0.000115331000000,0.000022307500000,0.000021715000000,0.000049356000000,0.000226343000000,0.000100714000000,0.000376862000000,0.000381603000000,0.000543577000000,0.000595330000000,0.031704837000000,0.000589405000000,0.000056862000000,0.000048961000000,0.000130343000000,0.000054491000000 +0.000019344500000,0.000031577000000,0.000553454000000,0.030551652000000,0.000017567000000,0.000094788000000,0.000022900000000,0.000021122000000,0.000048961000000,0.000227924000000,0.000050936000000,0.000329850000000,0.000331034000000,0.000545553000000,0.000548713000000,0.031296343000000,0.000667231000000,0.000056072000000,0.000049356000000,0.000130343000000,0.000053701000000 +0.000019542500000,0.000032368000000,0.000553454000000,0.031067603000000,0.000017567000000,0.000095972000000,0.000023097500000,0.000021517000000,0.000049355000000,0.000230293000000,0.000050936000000,0.000364219000000,0.000365404000000,0.000578738000000,0.000590985000000,0.031723010000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000140614000000,0.000053702000000 +0.000053912500000,0.000031973000000,0.000621405000000,0.031335060000000,0.000018159500000,0.000095183000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000228713000000,0.000050146000000,0.000330244000000,0.000331429000000,0.000543972000000,0.000583084000000,0.032219997000000,0.000555035000000,0.000056862000000,0.000050145000000,0.000127973000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.032008244000000,0.000017369500000,0.000095578000000,0.000023493000000,0.000020529500000,0.000048961000000,0.000225553000000,0.000050936000000,0.000330245000000,0.000331429000000,0.000629306000000,0.000548318000000,0.031088936000000,0.000639972000000,0.000056071000000,0.000048960000000,0.000129553000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000573602000000,0.031752244000000,0.000017369500000,0.000095578000000,0.000036332500000,0.000020530000000,0.000049355000000,0.000228714000000,0.000050541000000,0.000333009000000,0.000331429000000,0.000577947000000,0.000846590000000,0.031485183000000,0.000779824000000,0.000056861000000,0.000048170000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030883504000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020727500000,0.000084516000000,0.000229503000000,0.000050936000000,0.000329849000000,0.000333405000000,0.000543183000000,0.000583084000000,0.032120046000000,0.000765603000000,0.000059232000000,0.000062393000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.030478171000000,0.000018159500000,0.000144565000000,0.000022702500000,0.000020925000000,0.000050936000000,0.000229109000000,0.000051726000000,0.000364220000000,0.000365404000000,0.000578738000000,0.000633256000000,0.031906318000000,0.000697256000000,0.000056072000000,0.000048961000000,0.000129554000000,0.000053307000000 +0.000019344500000,0.000031578000000,0.000925997000000,0.031359948000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000020924500000,0.000049750000000,0.000226343000000,0.000050146000000,0.000330245000000,0.000332219000000,0.000622195000000,0.000549109000000,0.031553133000000,0.000635232000000,0.000056862000000,0.000048171000000,0.000161158000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000623380000000,0.031173479000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021517000000,0.000048961000000,0.000324318000000,0.000071479000000,0.000363429000000,0.000397009000000,0.000544762000000,0.000581899000000,0.031788195000000,0.000622590000000,0.000056467000000,0.000048961000000,0.000128368000000,0.000053702000000 +0.000019344500000,0.000065553000000,0.000650244000000,0.033047256000000,0.000045023500000,0.000095578000000,0.000022900000000,0.000021715000000,0.000048961000000,0.000327084000000,0.000051331000000,0.000330244000000,0.000331429000000,0.000697256000000,0.000633256000000,0.031361528000000,0.000588614000000,0.000056072000000,0.000048565000000,0.000129554000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.032276491000000,0.000017369500000,0.000096368000000,0.000023295500000,0.000020332500000,0.000049355000000,0.000228319000000,0.000050936000000,0.000330244000000,0.000331429000000,0.000577553000000,0.000551084000000,0.031306615000000,0.000589009000000,0.000056862000000,0.000048565000000,0.000128368000000,0.000054097000000 +0.000027443000000,0.000031578000000,0.000553059000000,0.031477676000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000048961000000,0.000227923000000,0.000052516000000,0.000329454000000,0.000717800000000,0.000583083000000,0.000582293000000,0.033462466000000,0.000588219000000,0.000056466000000,0.000048961000000,0.000126787000000,0.000108614000000 +0.000054110000000,0.000031578000000,0.000553849000000,0.029747308000000,0.000017567000000,0.000164319000000,0.000023295000000,0.000020529500000,0.000048961000000,0.000225948000000,0.000052121000000,0.000329849000000,0.000396219000000,0.000543973000000,0.000633256000000,0.033661576000000,0.000660515000000,0.000059232000000,0.000048566000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000587825000000,0.030065332000000,0.000017567000000,0.000095183000000,0.000022307500000,0.000021517500000,0.000049355000000,0.000227134000000,0.000050540000000,0.000370936000000,0.000331429000000,0.000577948000000,0.000549109000000,0.032576343000000,0.000623380000000,0.000056862000000,0.000049355000000,0.000130343000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000587430000000,0.030106813000000,0.000017369000000,0.000095578000000,0.000067344500000,0.000021320000000,0.000049356000000,0.000226343000000,0.000050145000000,0.000329850000000,0.000365405000000,0.000601651000000,0.000582294000000,0.032242120000000,0.000656960000000,0.000056466000000,0.000049355000000,0.000127973000000,0.000054096000000 +0.000019542500000,0.000031578000000,0.000553454000000,0.029990665000000,0.000017962000000,0.000095577000000,0.000037912500000,0.000021517500000,0.000118887000000,0.000260319000000,0.000051331000000,0.000365405000000,0.000331430000000,0.000543973000000,0.000632861000000,0.032053676000000,0.000589405000000,0.000056466000000,0.000082540000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030541776000000,0.000017566500000,0.000095578000000,0.000029418500000,0.000021122500000,0.000049356000000,0.000241751000000,0.000051331000000,0.000329850000000,0.000331430000000,0.000578342000000,0.000549108000000,0.031130023000000,0.000589799000000,0.000090047000000,0.000048170000000,0.000130738000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.029835407000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000227923000000,0.000049751000000,0.000363825000000,0.000489849000000,0.000583084000000,0.000575183000000,0.031834022000000,0.000656170000000,0.000056071000000,0.000048961000000,0.000143380000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.029944443000000,0.000017566500000,0.000095577000000,0.000022702500000,0.000045023500000,0.000048960000000,0.000227529000000,0.000050146000000,0.000344467000000,0.000331034000000,0.000543578000000,0.000632072000000,0.031999553000000,0.000622984000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000552663000000,0.030102073000000,0.000017567000000,0.000095578000000,0.000023295500000,0.000020529500000,0.000049751000000,0.000226343000000,0.000050936000000,0.000329849000000,0.000365405000000,0.000584664000000,0.000550293000000,0.031474911000000,0.000622590000000,0.000056467000000,0.000048565000000,0.000128368000000,0.000054096000000 +0.000019542000000,0.000065158000000,0.000552664000000,0.029850419000000,0.000035344000000,0.000095577000000,0.000022900000000,0.000021319500000,0.000049355000000,0.000227133000000,0.000052516000000,0.000377256000000,0.000331824000000,0.000565701000000,0.000549109000000,0.031810713000000,0.000622589000000,0.000056072000000,0.000048960000000,0.000195923000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000622195000000,0.029535555000000,0.000017369500000,0.000095183000000,0.000022307500000,0.000021517000000,0.000049356000000,0.000227529000000,0.000050541000000,0.000330244000000,0.000365010000000,0.000642343000000,0.000632862000000,0.031287652000000,0.000945750000000,0.000056072000000,0.000048566000000,0.000129554000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.029960640000000,0.000017369000000,0.000095973000000,0.000023493000000,0.000021517500000,0.000048960000000,0.000226343000000,0.000050936000000,0.000364220000000,0.000381998000000,0.000545157000000,0.000550294000000,0.031394714000000,0.000626935000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.030161727000000,0.000017566500000,0.000095577000000,0.000039097500000,0.000020529500000,0.000049356000000,0.000227528000000,0.000050146000000,0.000329849000000,0.000331035000000,0.000629306000000,0.000550293000000,0.031438170000000,0.000622985000000,0.000056467000000,0.000049751000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030216641000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021320000000,0.000069109000000,0.000228714000000,0.000050936000000,0.000330244000000,0.000344861000000,0.000544763000000,0.000998293000000,0.031983751000000,0.000623775000000,0.000056467000000,0.000048171000000,0.000128368000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000553059000000,0.030335159000000,0.000017566500000,0.000177356000000,0.000023295000000,0.000020529500000,0.000052516000000,0.000228318000000,0.000053701000000,0.000363430000000,0.000331429000000,0.000544763000000,0.000600467000000,0.031671257000000,0.000588614000000,0.000075824000000,0.000088071000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000637997000000,0.030389283000000,0.000017566500000,0.000095577000000,0.000023295000000,0.000020727000000,0.000048960000000,0.000223973000000,0.000049751000000,0.000330244000000,0.000372516000000,0.000577948000000,0.000582688000000,0.031557479000000,0.000588614000000,0.000055677000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000019344500000,0.000031183000000,0.000587429000000,0.030449332000000,0.000017369000000,0.000134689000000,0.000023097500000,0.000021517000000,0.000057257000000,0.000231874000000,0.000050936000000,0.000363824000000,0.000331430000000,0.000544368000000,0.000549899000000,0.031371010000000,0.000623380000000,0.000056861000000,0.000048960000000,0.000197899000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000572812000000,0.031280541000000,0.000017369000000,0.000095577000000,0.000023493000000,0.000051344500000,0.000049750000000,0.000225553000000,0.000083726000000,0.000330245000000,0.000365405000000,0.000577948000000,0.000594936000000,0.031053776000000,0.000657355000000,0.000056071000000,0.000048565000000,0.000128763000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030607357000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000021715000000,0.000050936000000,0.000225158000000,0.000051331000000,0.000330639000000,0.000331430000000,0.000579133000000,0.000618639000000,0.031570516000000,0.000724910000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000054886000000 +0.000019542500000,0.000031183000000,0.000587035000000,0.030408640000000,0.000017566500000,0.000095578000000,0.000023492500000,0.000020727500000,0.000048960000000,0.000227923000000,0.000051331000000,0.000343281000000,0.000331034000000,0.000543972000000,0.000549503000000,0.031949380000000,0.000712269000000,0.000056072000000,0.000048961000000,0.000240170000000,0.000073850000000 +0.000019344500000,0.000078590000000,0.000587034000000,0.030280245000000,0.000017566500000,0.000164318000000,0.000021715000000,0.000020332500000,0.000049356000000,0.000227924000000,0.000050146000000,0.000330245000000,0.000331824000000,0.000594145000000,0.000582689000000,0.031306615000000,0.000622195000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054097000000 +0.000019344500000,0.000031182000000,0.000668416000000,0.030141974000000,0.000018554500000,0.000095973000000,0.000022505000000,0.000021320000000,0.000049356000000,0.000228713000000,0.000050541000000,0.000363824000000,0.000331429000000,0.000578343000000,0.000641553000000,0.031759355000000,0.000589404000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000735972000000,0.030490813000000,0.000017369000000,0.000095578000000,0.000039295000000,0.000021517500000,0.000049355000000,0.000225553000000,0.000050541000000,0.000330639000000,0.000365405000000,0.000543578000000,0.000548713000000,0.031719454000000,0.000589800000000,0.000056467000000,0.000048170000000,0.000126787000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000624565000000,0.030467900000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021517000000,0.000082936000000,0.000225158000000,0.000050541000000,0.000401750000000,0.000331429000000,0.000577552000000,0.000583084000000,0.031145035000000,0.000621800000000,0.000056466000000,0.000049356000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000553454000000,0.029786023000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000021517000000,0.000049750000000,0.000226343000000,0.000050936000000,0.000331034000000,0.000365009000000,0.000615084000000,0.000583084000000,0.031509282000000,0.000622195000000,0.000090047000000,0.000086492000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000566886000000,0.032713428000000,0.000017566500000,0.000095182000000,0.000022900000000,0.000020529500000,0.000050541000000,0.000238195000000,0.000050935000000,0.000330245000000,0.000331824000000,0.000543973000000,0.000732022000000,0.031429084000000,0.000830392000000,0.000056466000000,0.000099133000000,0.000160763000000,0.000055677000000 +0.000019542000000,0.000031182000000,0.000623775000000,0.030408640000000,0.000017566500000,0.000156813000000,0.000022307500000,0.000021319500000,0.000048961000000,0.000227133000000,0.000049356000000,0.000329849000000,0.000331429000000,0.000590985000000,0.000549504000000,0.032991947000000,0.000626145000000,0.000059232000000,0.000052911000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000642342000000,0.030500295000000,0.000018159000000,0.000095578000000,0.000023295500000,0.000031986500000,0.000049355000000,0.000229109000000,0.000084516000000,0.000329849000000,0.000414788000000,0.000578738000000,0.000927182000000,0.031087355000000,0.000621799000000,0.000056467000000,0.000053306000000,0.000126788000000,0.000054097000000 +0.000019344500000,0.000031183000000,0.000590985000000,0.030164493000000,0.000017369000000,0.000095578000000,0.000022307500000,0.000020727500000,0.000051726000000,0.000228319000000,0.000063973000000,0.000364615000000,0.000331430000000,0.000544368000000,0.000581899000000,0.031391949000000,0.000590195000000,0.000057257000000,0.000064368000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030712047000000,0.000017566500000,0.000095577000000,0.000023098000000,0.000021517500000,0.000052516000000,0.000229504000000,0.000050541000000,0.000330245000000,0.000367380000000,0.000585849000000,0.000604417000000,0.031710368000000,0.000633256000000,0.000056466000000,0.000049355000000,0.000127578000000,0.000109405000000 +0.000019542000000,0.000031578000000,0.000568466000000,0.032390663000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021517500000,0.000048960000000,0.000226738000000,0.000050540000000,0.000419923000000,0.000334195000000,0.000577553000000,0.000549898000000,0.031350862000000,0.000589010000000,0.000056467000000,0.000048171000000,0.000134689000000,0.000054887000000 +0.000019542000000,0.000066343000000,0.000604022000000,0.031611998000000,0.000017369000000,0.000095973000000,0.000023295000000,0.000021912500000,0.000054097000000,0.000230689000000,0.000050145000000,0.000425454000000,0.000365010000000,0.000543578000000,0.000582294000000,0.031602516000000,0.000622194000000,0.000057257000000,0.000049356000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000744269000000,0.032719750000000,0.000045221000000,0.000097158000000,0.000023097500000,0.000021319500000,0.000049751000000,0.000259528000000,0.000052912000000,0.000363035000000,0.000331430000000,0.000630491000000,0.000603627000000,0.035531007000000,0.000621800000000,0.000056467000000,0.000049356000000,0.000127182000000,0.000053702000000 +0.000019542000000,0.000031577000000,0.000660516000000,0.030472640000000,0.000051147000000,0.000109010000000,0.000022307500000,0.000021517500000,0.000049356000000,0.000225949000000,0.000050145000000,0.000330244000000,0.000331429000000,0.000577948000000,0.000549503000000,0.031691404000000,0.000622985000000,0.000078985000000,0.000062788000000,0.000127578000000,0.000054491000000 +0.000026456000000,0.000031578000000,0.000602837000000,0.030552443000000,0.000051937500000,0.000095183000000,0.000023493000000,0.000021122500000,0.000049356000000,0.000225158000000,0.000050541000000,0.000330245000000,0.000508812000000,0.000543578000000,0.000598491000000,0.031325973000000,0.000589800000000,0.000057257000000,0.000049356000000,0.000127577000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.030930911000000,0.000026653000000,0.000095578000000,0.000023492500000,0.000020727500000,0.000048960000000,0.000296269000000,0.000050936000000,0.000344862000000,0.000331430000000,0.000578738000000,0.000581503000000,0.031912639000000,0.000589405000000,0.000056466000000,0.000048566000000,0.000173405000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030516887000000,0.000018554500000,0.000095182000000,0.000022900000000,0.000022110000000,0.000049751000000,0.000225948000000,0.000050541000000,0.000329850000000,0.000415577000000,0.000577948000000,0.000549899000000,0.032319947000000,0.000602442000000,0.000056071000000,0.000048960000000,0.000127182000000,0.000054096000000 +0.000021122500000,0.000031578000000,0.000587429000000,0.030384147000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000048961000000,0.000227923000000,0.000105455000000,0.000408071000000,0.000331034000000,0.000543577000000,0.000617454000000,0.031669676000000,0.000658145000000,0.000056072000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586244000000,0.030585628000000,0.000017567000000,0.000095973000000,0.000023493000000,0.000028431000000,0.000050541000000,0.000224763000000,0.000070689000000,0.000331035000000,0.000415577000000,0.000579133000000,0.000662096000000,0.032075799000000,0.000622590000000,0.000056072000000,0.000048566000000,0.000163528000000,0.000087676000000 +0.000019542000000,0.000031973000000,0.000552664000000,0.030555603000000,0.000024283000000,0.000163924000000,0.000022702500000,0.000020727000000,0.000049751000000,0.000241355000000,0.000063578000000,0.000380812000000,0.000331034000000,0.000613898000000,0.000570047000000,0.031803207000000,0.000633257000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.030429974000000,0.000017567000000,0.000095578000000,0.000023690000000,0.000021715000000,0.000049750000000,0.000227133000000,0.000050936000000,0.000330245000000,0.000402541000000,0.000576763000000,0.000562540000000,0.031137923000000,0.000589404000000,0.000056467000000,0.000049356000000,0.000133109000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000587034000000,0.030844788000000,0.000017567000000,0.000095182000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000229108000000,0.000053306000000,0.000329849000000,0.000363825000000,0.000577948000000,0.000582689000000,0.031768836000000,0.000589800000000,0.000056466000000,0.000048170000000,0.000127183000000,0.000055282000000 +0.000019542000000,0.000065553000000,0.000590985000000,0.029885974000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000021320000000,0.000048961000000,0.000227924000000,0.000050541000000,0.000329850000000,0.000366590000000,0.000577553000000,0.000549504000000,0.031496640000000,0.000589800000000,0.000055677000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000607577000000,0.030176344000000,0.000017369500000,0.000095578000000,0.000024678000000,0.000021122000000,0.000049750000000,0.000226343000000,0.000049751000000,0.000330244000000,0.000332220000000,0.000544763000000,0.000564120000000,0.031063652000000,0.000637208000000,0.000070689000000,0.000117702000000,0.000126788000000,0.000053702000000 +0.000019344500000,0.000031183000000,0.000554640000000,0.030411801000000,0.000017369500000,0.000095973000000,0.000023492500000,0.000020924500000,0.000049356000000,0.000225158000000,0.000050541000000,0.000399775000000,0.000331034000000,0.000595331000000,0.000907034000000,0.032903058000000,0.000683825000000,0.000056072000000,0.000048171000000,0.000131134000000,0.000075034000000 +0.000053517000000,0.000031973000000,0.000567676000000,0.029885974000000,0.000017567000000,0.000115726000000,0.000022900500000,0.000021320000000,0.000049356000000,0.000225553000000,0.000050541000000,0.000330640000000,0.000415972000000,0.000593355000000,0.000596911000000,0.032809034000000,0.000782194000000,0.000056862000000,0.000048565000000,0.000143380000000,0.000068714000000 +0.000055097500000,0.000031578000000,0.000622195000000,0.030546517000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000020529500000,0.000048960000000,0.000226738000000,0.000144960000000,0.000364219000000,0.000331429000000,0.000544368000000,0.000583084000000,0.031441726000000,0.000623380000000,0.000056072000000,0.000048565000000,0.000130738000000,0.000053701000000 +0.000020727500000,0.000031578000000,0.000587825000000,0.030642516000000,0.000017369000000,0.000095183000000,0.000022307500000,0.000020530000000,0.000050936000000,0.000225948000000,0.000154443000000,0.000330639000000,0.000415578000000,0.000578343000000,0.000550689000000,0.031888936000000,0.000669997000000,0.000056072000000,0.000049356000000,0.000127183000000,0.000088072000000 +0.000019542000000,0.000031578000000,0.000656565000000,0.029816048000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000055097500000,0.000049355000000,0.000229899000000,0.000066344000000,0.000329850000000,0.000331430000000,0.000578343000000,0.000582293000000,0.031776343000000,0.000589009000000,0.000056467000000,0.000049356000000,0.000160763000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000727281000000,0.030504640000000,0.000017369000000,0.000096368000000,0.000022900000000,0.000021517500000,0.000049751000000,0.000228713000000,0.000063973000000,0.000767182000000,0.000407677000000,0.000543972000000,0.000603627000000,0.031746318000000,0.000589010000000,0.000056071000000,0.000049751000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.030015949000000,0.000032579000000,0.000095182000000,0.000023492500000,0.000021320000000,0.000049750000000,0.000230294000000,0.000050936000000,0.000363034000000,0.000331034000000,0.000578343000000,0.000549503000000,0.031668491000000,0.000658935000000,0.000056467000000,0.000048171000000,0.000127973000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.030284986000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000021122500000,0.000048961000000,0.000276121000000,0.000051331000000,0.000331034000000,0.000332220000000,0.000623380000000,0.000617059000000,0.031595405000000,0.000624565000000,0.000056467000000,0.000048961000000,0.000128763000000,0.000054886000000 +0.000019344500000,0.000031577000000,0.000590195000000,0.031342566000000,0.000017369000000,0.000159973000000,0.000032974500000,0.000020530000000,0.000052516000000,0.000267825000000,0.000070689000000,0.000363824000000,0.000395824000000,0.000593355000000,0.000618244000000,0.032490219000000,0.000658936000000,0.000090047000000,0.000048565000000,0.000128763000000,0.000054096000000 +0.000019542000000,0.000050936000000,0.000588219000000,0.030656344000000,0.000017567000000,0.000096368000000,0.000022505000000,0.000021122500000,0.000050146000000,0.000642738000000,0.000051726000000,0.000330640000000,0.000331429000000,0.000578343000000,0.000551479000000,0.031768047000000,0.000623380000000,0.000056072000000,0.000078590000000,0.000127183000000,0.000054887000000 +0.000026455500000,0.000031578000000,0.000553454000000,0.030189777000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000049751000000,0.000245701000000,0.000050936000000,0.000329454000000,0.000415183000000,0.000611923000000,0.000591380000000,0.031704047000000,0.000602837000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030465530000000,0.000017567000000,0.000095577000000,0.000022702500000,0.000020332500000,0.000049355000000,0.000228319000000,0.000050541000000,0.000364220000000,0.000331825000000,0.000544763000000,0.000598491000000,0.031585133000000,0.000588615000000,0.000056467000000,0.000050145000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.029964591000000,0.000018159500000,0.000096763000000,0.000023097500000,0.000021517500000,0.000049356000000,0.000231874000000,0.000050936000000,0.000330244000000,0.000416368000000,0.000612713000000,0.000548713000000,0.031589874000000,0.000725701000000,0.000056467000000,0.000048960000000,0.000129949000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000588615000000,0.032162317000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000021912500000,0.000049356000000,0.000232269000000,0.000050936000000,0.000401355000000,0.000331825000000,0.000591775000000,0.000582294000000,0.032754515000000,0.000833158000000,0.000056467000000,0.000048565000000,0.000127973000000,0.000148121000000 +0.000019542000000,0.000031182000000,0.000593355000000,0.030333579000000,0.000017567000000,0.000178146000000,0.000023097500000,0.000038307500000,0.000050936000000,0.000227528000000,0.000051726000000,0.000329850000000,0.000370541000000,0.000545158000000,0.000582688000000,0.031664936000000,0.000625750000000,0.000058837000000,0.000069109000000,0.000161553000000,0.000143380000000 +0.000019542000000,0.000031578000000,0.000640367000000,0.030360443000000,0.000017369500000,0.000095183000000,0.000022900500000,0.000020530000000,0.000049356000000,0.000227529000000,0.000050541000000,0.000363824000000,0.000331825000000,0.000594936000000,0.000549504000000,0.031398269000000,0.000589405000000,0.000055676000000,0.000062788000000,0.000129949000000,0.000071085000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.029905332000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000021320000000,0.000049355000000,0.000229109000000,0.000049356000000,0.000330244000000,0.000331035000000,0.000594541000000,0.000582689000000,0.031698516000000,0.000772713000000,0.000056861000000,0.000048171000000,0.000126787000000,0.000068714000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.030166073000000,0.000039888000000,0.000095973000000,0.000023690000000,0.000020332000000,0.000050541000000,0.000226738000000,0.000050541000000,0.000329455000000,0.000416763000000,0.000545157000000,0.000583479000000,0.031876294000000,0.000593355000000,0.000056071000000,0.000048961000000,0.000163923000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000621800000000,0.029967752000000,0.000017369000000,0.000095182000000,0.000023492500000,0.000020332000000,0.000049355000000,0.000225553000000,0.000069503000000,0.000363824000000,0.000331430000000,0.000578343000000,0.000549109000000,0.030971208000000,0.000590195000000,0.000071084000000,0.000083726000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000611923000000,0.034506217000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000021517000000,0.000049356000000,0.000227529000000,0.000049751000000,0.000329849000000,0.000415973000000,0.000577552000000,0.000666836000000,0.034466711000000,0.000589010000000,0.000056862000000,0.000048961000000,0.000129553000000,0.000053701000000 +0.000019542500000,0.000046590000000,0.000552664000000,0.030777628000000,0.000017566500000,0.000115726000000,0.000022307500000,0.000022110000000,0.000048960000000,0.000226739000000,0.000051331000000,0.000418343000000,0.000331430000000,0.000543973000000,0.000583479000000,0.033386613000000,0.000589009000000,0.000059628000000,0.000048171000000,0.000127973000000,0.000122837000000 +0.000028036000000,0.000031578000000,0.000571232000000,0.030796986000000,0.000017369000000,0.000094788000000,0.000023295000000,0.000021517500000,0.000049751000000,0.000267429000000,0.000050541000000,0.000330244000000,0.000527775000000,0.000578343000000,0.000549898000000,0.031715503000000,0.000589800000000,0.000059232000000,0.000048171000000,0.000127578000000,0.000053306000000 +0.000019542500000,0.000031578000000,0.000567281000000,0.030219801000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020530000000,0.000049751000000,0.000227528000000,0.000049751000000,0.000330245000000,0.000462590000000,0.000578738000000,0.000596516000000,0.031520343000000,0.000589405000000,0.000056862000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000603232000000,0.030367554000000,0.000017566500000,0.000095183000000,0.000022109500000,0.000021517500000,0.000050541000000,0.000230294000000,0.000050541000000,0.000345257000000,0.000332220000000,0.000544367000000,0.000694096000000,0.031954120000000,0.000610343000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.030308690000000,0.000017369000000,0.000095182000000,0.000022702500000,0.000021517500000,0.000048961000000,0.000227528000000,0.000050145000000,0.000358294000000,0.000330639000000,0.000594540000000,0.000562540000000,0.031768837000000,0.000588614000000,0.000056467000000,0.000048565000000,0.000141405000000,0.000054492000000 +0.000019542000000,0.000031577000000,0.000553454000000,0.030861776000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000027838500000,0.000050145000000,0.000224763000000,0.000049751000000,0.000364220000000,0.000365010000000,0.000598886000000,0.000550293000000,0.031849429000000,0.000588615000000,0.000056072000000,0.000048961000000,0.000134689000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.030814763000000,0.000017369000000,0.000095577000000,0.000023295500000,0.000020530000000,0.000048961000000,0.000234640000000,0.000050541000000,0.000329850000000,0.000331429000000,0.000564911000000,0.000620220000000,0.031984541000000,0.000589009000000,0.000056071000000,0.000048961000000,0.000127182000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000634837000000,0.030235208000000,0.000017566500000,0.000275331000000,0.000023295000000,0.000021320000000,0.000092023000000,0.000227133000000,0.000050541000000,0.000386343000000,0.000429405000000,0.000632467000000,0.000548714000000,0.031822566000000,0.000590195000000,0.000056467000000,0.000048171000000,0.000160763000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000638393000000,0.030545727000000,0.000039887500000,0.000148911000000,0.000023097500000,0.000020529500000,0.000048960000000,0.000228714000000,0.000050541000000,0.000330244000000,0.000331034000000,0.000679478000000,0.000548318000000,0.031550368000000,0.000998293000000,0.000056467000000,0.000083331000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000822491000000,0.030404690000000,0.000024677500000,0.000109800000000,0.000029023500000,0.000020332500000,0.000049751000000,0.000225553000000,0.000052516000000,0.000329850000000,0.000331034000000,0.000545158000000,0.000598886000000,0.032691700000000,0.000591380000000,0.000056071000000,0.000048171000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000621800000000,0.030570220000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020727500000,0.000052121000000,0.000228713000000,0.000049751000000,0.000329850000000,0.000331034000000,0.000545948000000,0.000549108000000,0.032421478000000,0.000599676000000,0.000056466000000,0.000048566000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000070294000000,0.000622985000000,0.030429183000000,0.000017369000000,0.000129158000000,0.000022702500000,0.000022110000000,0.000054886000000,0.000226343000000,0.000050541000000,0.000330244000000,0.000331430000000,0.000579528000000,0.000562935000000,0.031727751000000,0.000589405000000,0.000056466000000,0.000048170000000,0.000129554000000,0.000054492000000 +0.000026258000000,0.000031578000000,0.000553059000000,0.030550862000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000022109500000,0.000049751000000,0.000226343000000,0.000050146000000,0.000415182000000,0.000365010000000,0.000544368000000,0.000640368000000,0.032310071000000,0.000588219000000,0.000056467000000,0.000048565000000,0.000127973000000,0.000053701000000 +0.000019542000000,0.000032368000000,0.000567281000000,0.030167653000000,0.000017566500000,0.000096368000000,0.000022900000000,0.000020529500000,0.000049751000000,0.000226343000000,0.000050936000000,0.000330244000000,0.000331824000000,0.000613109000000,0.000569651000000,0.032011404000000,0.000589800000000,0.000056072000000,0.000049356000000,0.000127973000000,0.000054097000000 +0.000019542500000,0.000031973000000,0.000641947000000,0.030189777000000,0.000017566500000,0.000096368000000,0.000023295500000,0.000020529500000,0.000049355000000,0.000225158000000,0.000052121000000,0.000363825000000,0.000365009000000,0.000590984000000,0.000549109000000,0.031799257000000,0.000609553000000,0.000056467000000,0.000048566000000,0.000127972000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000624170000000,0.030283011000000,0.000017566500000,0.000097553000000,0.000023295500000,0.000059245500000,0.000049356000000,0.000278887000000,0.000050541000000,0.000329850000000,0.000331429000000,0.000545158000000,0.000918886000000,0.032334959000000,0.000588615000000,0.000056862000000,0.000048565000000,0.000127578000000,0.000054096000000 +0.000019542500000,0.000031578000000,0.000628911000000,0.029761134000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000029418500000,0.000048961000000,0.000226343000000,0.000049356000000,0.000330244000000,0.000331430000000,0.000861207000000,0.000583478000000,0.031945034000000,0.000555034000000,0.000090047000000,0.000049355000000,0.000129948000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000621800000000,0.030122221000000,0.000017369000000,0.000095183000000,0.000023492500000,0.000021517500000,0.000137454000000,0.000225553000000,0.000050541000000,0.000329849000000,0.000381602000000,0.000578343000000,0.000568467000000,0.031393923000000,0.000570047000000,0.000056072000000,0.000048960000000,0.000160368000000,0.000053701000000 +0.000019344500000,0.000031577000000,0.000587035000000,0.030324097000000,0.000036727000000,0.000094787000000,0.000022702500000,0.000020332000000,0.000118887000000,0.000226343000000,0.000050541000000,0.000330245000000,0.000331825000000,0.000577948000000,0.000639182000000,0.031808343000000,0.000589010000000,0.000056467000000,0.000130739000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000621799000000,0.029922715000000,0.000024085000000,0.000095973000000,0.000057468000000,0.000021320000000,0.000052516000000,0.000224763000000,0.000050936000000,0.000379627000000,0.000374492000000,0.000545158000000,0.000583084000000,0.032350367000000,0.000588614000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000067528000000 +0.000019542000000,0.000031973000000,0.000624170000000,0.030348591000000,0.000017566500000,0.000095578000000,0.000030406500000,0.000021517500000,0.000049355000000,0.000226739000000,0.000050541000000,0.000329849000000,0.000331825000000,0.000578343000000,0.000633651000000,0.032018515000000,0.000554639000000,0.000056467000000,0.000048565000000,0.000150492000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000622589000000,0.030008838000000,0.000017369000000,0.000095973000000,0.000022505000000,0.000021517000000,0.000049751000000,0.000235034000000,0.000050541000000,0.000443232000000,0.000365405000000,0.000612713000000,0.000549899000000,0.032520638000000,0.000591775000000,0.000056466000000,0.000048565000000,0.000144566000000,0.000054886000000 +0.000019542000000,0.000031577000000,0.000586639000000,0.030258517000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020727000000,0.000049355000000,0.000229899000000,0.000050146000000,0.000470491000000,0.000333010000000,0.000543973000000,0.000582688000000,0.032057232000000,0.000589009000000,0.000056071000000,0.000048566000000,0.000129948000000,0.000053702000000 +0.000054307500000,0.000031578000000,0.000586639000000,0.030881529000000,0.000017566500000,0.000095578000000,0.000022110000000,0.000020924500000,0.000068714000000,0.000227923000000,0.000050541000000,0.000364220000000,0.000331034000000,0.000577948000000,0.000582689000000,0.032129132000000,0.000590590000000,0.000056467000000,0.000047776000000,0.000164713000000,0.000054491000000 +0.000019542000000,0.000031577000000,0.000600071000000,0.030322122000000,0.000017566500000,0.000129158000000,0.000022702500000,0.000020529500000,0.000049355000000,0.000227134000000,0.000051726000000,0.000329849000000,0.000420319000000,0.000656960000000,0.000548713000000,0.032667602000000,0.000643528000000,0.000056467000000,0.000048170000000,0.000127182000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000623775000000,0.031579998000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021319500000,0.000049751000000,0.000226738000000,0.000049751000000,0.000364220000000,0.000331430000000,0.000580318000000,0.000581898000000,0.031969923000000,0.000555430000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000621800000000,0.031386812000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000020529500000,0.000049751000000,0.000226343000000,0.000050146000000,0.000331035000000,0.000365405000000,0.000577948000000,0.000583084000000,0.032917675000000,0.000554639000000,0.000059232000000,0.000049356000000,0.000133504000000,0.000056862000000 +0.000019542000000,0.000031183000000,0.000675923000000,0.030418122000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000021912500000,0.000049355000000,0.000229108000000,0.000050146000000,0.000329455000000,0.000331035000000,0.000641553000000,0.000548713000000,0.031245775000000,0.000589800000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000058047000000 +0.000019344500000,0.000031578000000,0.000641157000000,0.030076789000000,0.000017566500000,0.000095973000000,0.000023097500000,0.000021319500000,0.000048961000000,0.000225158000000,0.000069899000000,0.000344467000000,0.000365010000000,0.000745454000000,0.000598096000000,0.031805577000000,0.000589009000000,0.000056862000000,0.000050146000000,0.000127183000000,0.000125602000000 +0.000019542000000,0.000031578000000,0.000585849000000,0.030443406000000,0.000036925000000,0.000095578000000,0.000023295000000,0.000020529500000,0.000049750000000,0.000263874000000,0.000063578000000,0.000329849000000,0.000331430000000,0.000559380000000,0.000616664000000,0.033662367000000,0.000597306000000,0.000056467000000,0.000048170000000,0.000130343000000,0.000069504000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.030281036000000,0.000017567000000,0.000095973000000,0.000022900500000,0.000021122500000,0.000048961000000,0.000224763000000,0.000050541000000,0.000364219000000,0.000331825000000,0.000558985000000,0.000549898000000,0.034605378000000,0.000555430000000,0.000056466000000,0.000048961000000,0.000142590000000,0.000053701000000 +0.000019542500000,0.000031973000000,0.000587429000000,0.032342466000000,0.000017369500000,0.000129158000000,0.000022900000000,0.000020925000000,0.000048961000000,0.000225949000000,0.000051331000000,0.000330244000000,0.000400565000000,0.000637997000000,0.000581899000000,0.032142565000000,0.000568072000000,0.000056861000000,0.000049356000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031282912000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000020530000000,0.000048960000000,0.000280071000000,0.000050936000000,0.000363430000000,0.000331430000000,0.000545157000000,0.000583084000000,0.032151651000000,0.000590194000000,0.000056072000000,0.000048961000000,0.000131134000000,0.000054096000000 +0.000019344500000,0.000108220000000,0.000623775000000,0.031643603000000,0.000018554500000,0.000095183000000,0.000023295500000,0.000020530000000,0.000103874000000,0.000228319000000,0.000050146000000,0.000329849000000,0.000365800000000,0.000544762000000,0.000549503000000,0.032375256000000,0.000677899000000,0.000059628000000,0.000049355000000,0.000196713000000,0.000054887000000 +0.000019344500000,0.000087281000000,0.000586244000000,0.031843503000000,0.000017566500000,0.000095577000000,0.000023097500000,0.000020530000000,0.000062393000000,0.000227133000000,0.000050146000000,0.000380812000000,0.000331824000000,0.000613898000000,0.000590985000000,0.031318072000000,0.000589404000000,0.000056861000000,0.000048960000000,0.000127973000000,0.000054491000000 +0.000019344500000,0.000047775000000,0.000587825000000,0.030390072000000,0.000017566500000,0.000115331000000,0.000023295000000,0.000027246000000,0.000049751000000,0.000225553000000,0.000050146000000,0.000376862000000,0.000331824000000,0.000544763000000,0.000582689000000,0.032224738000000,0.000555034000000,0.000056467000000,0.000049355000000,0.000126787000000,0.000054492000000 +0.000019344500000,0.000033553000000,0.000627726000000,0.030172394000000,0.000017566500000,0.000110590000000,0.000022900000000,0.000021320000000,0.000048961000000,0.000227133000000,0.000050936000000,0.000329849000000,0.000331824000000,0.000544763000000,0.000548714000000,0.032005083000000,0.000586244000000,0.000056467000000,0.000048960000000,0.000146935000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.030105628000000,0.000018159000000,0.000129158000000,0.000022702500000,0.000021517500000,0.000049355000000,0.000227529000000,0.000050146000000,0.000363825000000,0.000332219000000,0.000579528000000,0.000595330000000,0.032092787000000,0.000589010000000,0.000056071000000,0.000048171000000,0.000128368000000,0.000123232000000 +0.000019542500000,0.000031578000000,0.000587824000000,0.030843998000000,0.000017369000000,0.000095182000000,0.000022110000000,0.000021517500000,0.000049356000000,0.000229108000000,0.000069504000000,0.000329850000000,0.000414787000000,0.000543182000000,0.000617059000000,0.032332194000000,0.000638787000000,0.000056466000000,0.000099134000000,0.000129948000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.030441431000000,0.000017369000000,0.000095578000000,0.000046011000000,0.000020529500000,0.000052516000000,0.000226343000000,0.000051726000000,0.000350392000000,0.000331429000000,0.000578343000000,0.000549108000000,0.032094367000000,0.000554640000000,0.000056467000000,0.000049751000000,0.000149306000000,0.000054096000000 +0.000020530000000,0.000031973000000,0.000594935000000,0.030889035000000,0.000048381500000,0.000095578000000,0.000023098000000,0.000020727500000,0.000048961000000,0.000226738000000,0.000050541000000,0.000330244000000,0.000365405000000,0.000836713000000,0.000581898000000,0.031239850000000,0.000555429000000,0.000056467000000,0.000048170000000,0.000127973000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000587034000000,0.030311060000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000020530000000,0.000050146000000,0.000225158000000,0.000054492000000,0.000329849000000,0.000331429000000,0.000594936000000,0.000582294000000,0.032371306000000,0.000694886000000,0.000056072000000,0.000049355000000,0.000127972000000,0.000056071000000 +0.000019344500000,0.000033554000000,0.000587824000000,0.030092592000000,0.000017567000000,0.000095973000000,0.000023492500000,0.000020925000000,0.000076220000000,0.000226343000000,0.000049356000000,0.000371331000000,0.000334195000000,0.000544368000000,0.000548713000000,0.032610317000000,0.000588614000000,0.000056467000000,0.000048961000000,0.000129553000000,0.000054492000000 +0.000019542000000,0.000045010000000,0.000553059000000,0.029976838000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020727000000,0.000049750000000,0.000438886000000,0.000050145000000,0.000331824000000,0.000346047000000,0.000577553000000,0.000582293000000,0.031929231000000,0.000623775000000,0.000056072000000,0.000049356000000,0.000126788000000,0.000055676000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.030655948000000,0.000017369500000,0.000166689000000,0.000023492500000,0.000020727000000,0.000049751000000,0.000263874000000,0.000051331000000,0.000380812000000,0.000331430000000,0.000578343000000,0.000641553000000,0.031480047000000,0.000574393000000,0.000090047000000,0.000048566000000,0.000127183000000,0.000054492000000 +0.000032777000000,0.000031578000000,0.000586639000000,0.030695850000000,0.000017369500000,0.000097553000000,0.000022505000000,0.000021320000000,0.000049356000000,0.000228714000000,0.000050541000000,0.000330245000000,0.000365010000000,0.000543577000000,0.000563726000000,0.031599751000000,0.000555035000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000696467000000,0.030657924000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021122500000,0.000050541000000,0.000229504000000,0.000052912000000,0.000329849000000,0.000331825000000,0.000643133000000,0.000617849000000,0.031780688000000,0.000639183000000,0.000056072000000,0.000048960000000,0.000157603000000,0.000073059000000 +0.000019542000000,0.000032763000000,0.000587034000000,0.032670762000000,0.000017369500000,0.000095183000000,0.000023492500000,0.000021319500000,0.000049356000000,0.000232270000000,0.000050145000000,0.000329849000000,0.000417948000000,0.000577947000000,0.000581898000000,0.035190464000000,0.000588614000000,0.000056071000000,0.000050540000000,0.000126788000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.030685578000000,0.000017369500000,0.000095578000000,0.000030406000000,0.000021319500000,0.000049355000000,0.000225949000000,0.000084122000000,0.000329849000000,0.000353158000000,0.000543973000000,0.000549503000000,0.034115106000000,0.000646689000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.030282616000000,0.000017567000000,0.000097553000000,0.000037320000000,0.000020529500000,0.000049356000000,0.000231874000000,0.000050541000000,0.000363825000000,0.000351577000000,0.000613504000000,0.000581898000000,0.032865132000000,0.000555429000000,0.000056467000000,0.000049355000000,0.000161158000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000639182000000,0.031300294000000,0.000018159500000,0.000129948000000,0.000022702500000,0.000021122000000,0.000049356000000,0.000225948000000,0.000051331000000,0.000330245000000,0.000332614000000,0.000578343000000,0.000581899000000,0.031647948000000,0.000555429000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.030320936000000,0.000052134500000,0.000095183000000,0.000022900000000,0.000020924500000,0.000050936000000,0.000225553000000,0.000050540000000,0.000364220000000,0.000331429000000,0.000544763000000,0.000549108000000,0.031333874000000,0.000639182000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000086492000000,0.000591775000000,0.030486072000000,0.000017369000000,0.000095577000000,0.000023097500000,0.000020529500000,0.000064763000000,0.000228318000000,0.000051331000000,0.000330245000000,0.000365009000000,0.000613109000000,0.000582293000000,0.031636886000000,0.000589010000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000568467000000,0.030825035000000,0.000017566500000,0.000095578000000,0.000022110000000,0.000020727000000,0.000048960000000,0.000230294000000,0.000050936000000,0.000330639000000,0.000331429000000,0.000585454000000,0.000582294000000,0.031908689000000,0.000759281000000,0.000056071000000,0.000048960000000,0.000129948000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.030166468000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020727500000,0.000049356000000,0.000226343000000,0.000050145000000,0.000364614000000,0.000381602000000,0.000545948000000,0.000549109000000,0.033112835000000,0.000605207000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000029616000000,0.000031578000000,0.000595330000000,0.030583652000000,0.000018159000000,0.000095578000000,0.000023295500000,0.000021320000000,0.000048961000000,0.000225158000000,0.000049356000000,0.000330639000000,0.000331429000000,0.000578738000000,0.000582294000000,0.032690910000000,0.000555034000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000587824000000,0.031106319000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000030801500000,0.000049355000000,0.000228318000000,0.000049751000000,0.000364220000000,0.000331034000000,0.000577947000000,0.000589404000000,0.031310565000000,0.000555035000000,0.000056466000000,0.000048960000000,0.000129948000000,0.000105060000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.030629480000000,0.000017566500000,0.000163134000000,0.000022702500000,0.000021319500000,0.000048961000000,0.000225158000000,0.000050541000000,0.000333010000000,0.000459429000000,0.000543183000000,0.000561751000000,0.031412096000000,0.000637207000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000553059000000,0.032945724000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000020529500000,0.000050936000000,0.000226739000000,0.000084121000000,0.000329849000000,0.000333404000000,0.000616269000000,0.000583479000000,0.032006268000000,0.000624170000000,0.000056467000000,0.000062788000000,0.000127973000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000603232000000,0.030418517000000,0.000018159000000,0.000095578000000,0.000051542000000,0.000020332000000,0.000050146000000,0.000226738000000,0.000050936000000,0.000330245000000,0.000365009000000,0.000577158000000,0.000636022000000,0.031737627000000,0.000587824000000,0.000056467000000,0.000048170000000,0.000325899000000,0.000054491000000 +0.000019542500000,0.000031578000000,0.000587429000000,0.030417331000000,0.000017369000000,0.000095578000000,0.000048184000000,0.000021320000000,0.000048961000000,0.000229109000000,0.000050146000000,0.000329849000000,0.000332614000000,0.000543973000000,0.000551874000000,0.032754515000000,0.000555429000000,0.000056862000000,0.000048961000000,0.000126788000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.030582863000000,0.000017566500000,0.000097158000000,0.000030604000000,0.000020924500000,0.000082936000000,0.000224763000000,0.000050936000000,0.000365405000000,0.000365404000000,0.000592565000000,0.000618639000000,0.032909774000000,0.000555824000000,0.000056072000000,0.000048566000000,0.000127578000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031395109000000,0.000051937000000,0.000095182000000,0.000022702500000,0.000020529500000,0.000048961000000,0.000227924000000,0.000051331000000,0.000331429000000,0.000331034000000,0.000578343000000,0.000587824000000,0.032097528000000,0.000589009000000,0.000056466000000,0.000048565000000,0.000130343000000,0.000054886000000 +0.000019344500000,0.000045405000000,0.000553059000000,0.030165678000000,0.000017369000000,0.000129158000000,0.000022307500000,0.000020530000000,0.000049355000000,0.000225158000000,0.000050540000000,0.000363429000000,0.000331429000000,0.000543972000000,0.000549109000000,0.031236294000000,0.000638787000000,0.000090838000000,0.000048565000000,0.000128368000000,0.000054887000000 +0.000019542000000,0.000031973000000,0.000586639000000,0.034655551000000,0.000017566500000,0.000095183000000,0.000023492500000,0.000020530000000,0.000048961000000,0.000226738000000,0.000052122000000,0.000329849000000,0.000332219000000,0.000577947000000,0.000581899000000,0.031905528000000,0.000589405000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000637602000000,0.031281331000000,0.000017764000000,0.000095182000000,0.000023492500000,0.000021122500000,0.000049356000000,0.000227134000000,0.000049750000000,0.000329454000000,0.000331429000000,0.000613899000000,0.000581898000000,0.031458318000000,0.000558195000000,0.000058837000000,0.000048961000000,0.000127578000000,0.000114541000000 +0.000053912000000,0.000031577000000,0.000572417000000,0.030677677000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000225553000000,0.000049751000000,0.000414392000000,0.000365405000000,0.000595726000000,0.000549108000000,0.032190762000000,0.000556220000000,0.000056862000000,0.000048565000000,0.000130343000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000602837000000,0.030604590000000,0.000017369000000,0.000095183000000,0.000029418500000,0.000037122000000,0.000048961000000,0.000227924000000,0.000048961000000,0.000331035000000,0.000331034000000,0.000797602000000,0.000582294000000,0.031561034000000,0.000596515000000,0.000056862000000,0.000048565000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030701776000000,0.000017961500000,0.000094788000000,0.000022702500000,0.000020332000000,0.000049355000000,0.000225948000000,0.000084911000000,0.000522244000000,0.000365405000000,0.000613504000000,0.000583874000000,0.031231948000000,0.000624170000000,0.000056466000000,0.000049355000000,0.000160763000000,0.000054887000000 +0.000019542000000,0.000031182000000,0.000622194000000,0.030742862000000,0.000017566500000,0.000094788000000,0.000022900000000,0.000022110000000,0.000048961000000,0.000226343000000,0.000050541000000,0.000330245000000,0.000369355000000,0.000564120000000,0.000548318000000,0.031223652000000,0.000555824000000,0.000055676000000,0.000049356000000,0.000129553000000,0.000054886000000 +0.000019542000000,0.000031183000000,0.000622590000000,0.030368344000000,0.000017369000000,0.000167084000000,0.000022900000000,0.000020924500000,0.000049356000000,0.000225948000000,0.000050146000000,0.000408071000000,0.000331824000000,0.000544368000000,0.000582688000000,0.032308096000000,0.000555430000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030459603000000,0.000017369000000,0.000095973000000,0.000023492500000,0.000020727000000,0.000131528000000,0.000229109000000,0.000049751000000,0.000330244000000,0.000345257000000,0.000612714000000,0.000582689000000,0.031337034000000,0.000601652000000,0.000056862000000,0.000048565000000,0.000127577000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030565480000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000021517500000,0.000048961000000,0.000228714000000,0.000049751000000,0.000399381000000,0.000331825000000,0.000613898000000,0.000549503000000,0.031252492000000,0.000623775000000,0.000075430000000,0.000048565000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031031653000000,0.000046011500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000227134000000,0.000052517000000,0.000330244000000,0.000378047000000,0.000544367000000,0.000582293000000,0.031154911000000,0.000669602000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000065158000000,0.000598491000000,0.031853380000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000021517500000,0.000049355000000,0.000229108000000,0.000050540000000,0.000331034000000,0.000331034000000,0.000627726000000,0.000691330000000,0.031488738000000,0.000622194000000,0.000056467000000,0.000048566000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.030210714000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021320000000,0.000049356000000,0.000227529000000,0.000050935000000,0.000360269000000,0.000365009000000,0.000620219000000,0.000563726000000,0.031724985000000,0.000555429000000,0.000056072000000,0.000048565000000,0.000142590000000,0.000067924000000 +0.000019542000000,0.000031183000000,0.000553454000000,0.030655159000000,0.000017567000000,0.000129158000000,0.000023492500000,0.000021320000000,0.000048961000000,0.000225554000000,0.000050145000000,0.000330244000000,0.000331034000000,0.000543973000000,0.000645898000000,0.031381677000000,0.000556220000000,0.000056072000000,0.000048171000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.030354122000000,0.000017567000000,0.000095578000000,0.000022110000000,0.000020332500000,0.000049355000000,0.000225553000000,0.000050541000000,0.000437701000000,0.000331430000000,0.000628516000000,0.000732022000000,0.031694565000000,0.000592170000000,0.000056862000000,0.000048171000000,0.000128368000000,0.000055282000000 +0.000020529500000,0.000031973000000,0.000698836000000,0.029815653000000,0.000017567000000,0.000097158000000,0.000021912500000,0.000045813500000,0.000052516000000,0.000303381000000,0.000090837000000,0.000330245000000,0.000345652000000,0.000628910000000,0.000590195000000,0.031779109000000,0.000623775000000,0.000056071000000,0.000100714000000,0.000161158000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000602047000000,0.030542567000000,0.000017567000000,0.000095973000000,0.000023492500000,0.000022307500000,0.000048960000000,0.000224368000000,0.000049751000000,0.000400565000000,0.000331430000000,0.000544368000000,0.000549503000000,0.031084986000000,0.000602836000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030391653000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000021320000000,0.000087677000000,0.000228714000000,0.000049751000000,0.000330245000000,0.000365405000000,0.000733602000000,0.000583083000000,0.031595010000000,0.000555825000000,0.000056072000000,0.000048960000000,0.000134689000000,0.000056467000000 +0.000019542000000,0.000031577000000,0.000553454000000,0.029703061000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000263084000000,0.000050936000000,0.000364220000000,0.000331430000000,0.000613898000000,0.000617454000000,0.031717873000000,0.000555824000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000620614000000,0.030019505000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000020924500000,0.000050541000000,0.000229899000000,0.000051331000000,0.000330245000000,0.000351578000000,0.000582689000000,0.000550294000000,0.031354022000000,0.000589404000000,0.000089652000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000602046000000,0.030427603000000,0.000017566500000,0.000164714000000,0.000023097500000,0.000020529500000,0.000049751000000,0.000225158000000,0.000049750000000,0.000330244000000,0.000331035000000,0.000544368000000,0.000582689000000,0.031388787000000,0.000589010000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000638393000000,0.029740196000000,0.000036727000000,0.000096763000000,0.000023492500000,0.000021320000000,0.000048960000000,0.000226343000000,0.000049751000000,0.000398985000000,0.000332220000000,0.001039380000000,0.000901108000000,0.032046565000000,0.000556220000000,0.000056862000000,0.000048171000000,0.000129158000000,0.000135874000000 +0.000019542000000,0.000049751000000,0.000587034000000,0.030406270000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000021319500000,0.000049356000000,0.000229504000000,0.000050936000000,0.000330244000000,0.000365405000000,0.000562145000000,0.000598096000000,0.030971603000000,0.000555034000000,0.000055677000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000554639000000,0.030461578000000,0.000017567000000,0.000095578000000,0.000032974000000,0.000021517000000,0.000049355000000,0.000226343000000,0.000050541000000,0.000398985000000,0.000331825000000,0.000594540000000,0.000548713000000,0.032354318000000,0.000644713000000,0.000056072000000,0.000049356000000,0.000126788000000,0.000054097000000 +0.000047196500000,0.000031578000000,0.000788120000000,0.030052690000000,0.000017369500000,0.000095973000000,0.000023295000000,0.000020529500000,0.000048960000000,0.000230294000000,0.000050146000000,0.000330639000000,0.000365405000000,0.000544368000000,0.000583084000000,0.032542367000000,0.000588614000000,0.000056466000000,0.000067528000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000588614000000,0.030094567000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000048381500000,0.000049356000000,0.000227923000000,0.000084516000000,0.000386343000000,0.000331429000000,0.000578343000000,0.000582293000000,0.031493874000000,0.000588220000000,0.000056467000000,0.000048566000000,0.000142590000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000602836000000,0.030017530000000,0.000017567000000,0.000129158000000,0.000023097500000,0.000021517500000,0.000050936000000,0.000226344000000,0.000050541000000,0.000330245000000,0.000331430000000,0.000577948000000,0.000548714000000,0.031630566000000,0.000555429000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000053702000000 +0.000019344500000,0.000031183000000,0.000587824000000,0.032377627000000,0.000017369000000,0.000095183000000,0.000022703000000,0.000020332500000,0.000118492000000,0.000227528000000,0.000050936000000,0.000329849000000,0.000331429000000,0.000543973000000,0.000617453000000,0.031849034000000,0.000554639000000,0.000059232000000,0.000048565000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000555035000000,0.030998467000000,0.000018159500000,0.000095183000000,0.000022702500000,0.000021517500000,0.000048960000000,0.000229504000000,0.000050146000000,0.000785355000000,0.000331824000000,0.000591380000000,0.000582689000000,0.031410517000000,0.000603627000000,0.000075825000000,0.000048566000000,0.000183281000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000554244000000,0.030145134000000,0.000017566500000,0.000095972000000,0.000022900000000,0.000021320000000,0.000051331000000,0.000227923000000,0.000049355000000,0.000416763000000,0.000365799000000,0.000578738000000,0.000549503000000,0.033638268000000,0.000589010000000,0.000133503000000,0.000049356000000,0.000126787000000,0.000054887000000 +0.000019542500000,0.000031972000000,0.000595725000000,0.029821974000000,0.000017566500000,0.000095973000000,0.000022505000000,0.000021122500000,0.000052516000000,0.000229109000000,0.000050541000000,0.000329849000000,0.000333800000000,0.000544367000000,0.000594935000000,0.032370515000000,0.000555824000000,0.000060023000000,0.000048565000000,0.000127182000000,0.000092417000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.030486862000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000226738000000,0.000050936000000,0.000364220000000,0.000434146000000,0.000578343000000,0.000583084000000,0.032693281000000,0.000554244000000,0.000070689000000,0.000049355000000,0.000135874000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.029873728000000,0.000017566500000,0.000095973000000,0.000023492500000,0.000022307500000,0.000054096000000,0.000274541000000,0.000050541000000,0.000369751000000,0.000350392000000,0.000578343000000,0.000549503000000,0.031636096000000,0.000588219000000,0.000056862000000,0.000048566000000,0.000127183000000,0.000055676000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.034098909000000,0.000024678000000,0.000129158000000,0.000023492500000,0.000020332000000,0.000049751000000,0.000253997000000,0.000051331000000,0.000329849000000,0.000364614000000,0.000544763000000,0.000647084000000,0.031578418000000,0.000623380000000,0.000056467000000,0.000048961000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000031577000000,0.000589010000000,0.030516097000000,0.000017567000000,0.000095973000000,0.000030011500000,0.000020332000000,0.000049356000000,0.000240170000000,0.000049356000000,0.000343676000000,0.000331430000000,0.000585059000000,0.000582688000000,0.031497035000000,0.000605998000000,0.000059232000000,0.000092022000000,0.000128368000000,0.000054096000000 +0.000019542000000,0.000032368000000,0.000587430000000,0.031898022000000,0.000017567000000,0.000095973000000,0.000022110000000,0.000030999000000,0.000049355000000,0.000251627000000,0.000084121000000,0.000330244000000,0.000331429000000,0.000599281000000,0.000549109000000,0.031659405000000,0.000554640000000,0.000056862000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.030538616000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000021517000000,0.000082936000000,0.000225553000000,0.000049356000000,0.000363430000000,0.000415577000000,0.000543972000000,0.000582688000000,0.032139009000000,0.000626540000000,0.000071084000000,0.000048170000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000554245000000,0.030324888000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000020727000000,0.000048960000000,0.000228714000000,0.000050936000000,0.000330244000000,0.000350787000000,0.000577948000000,0.000608368000000,0.031767652000000,0.000638392000000,0.000056072000000,0.000048170000000,0.000126788000000,0.000054492000000 +0.000019739500000,0.000031578000000,0.000553059000000,0.029791554000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000227528000000,0.000050146000000,0.000365009000000,0.000379232000000,0.000578343000000,0.000549503000000,0.031587504000000,0.000638787000000,0.000056466000000,0.000048566000000,0.000160763000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.030084690000000,0.000017369000000,0.000095973000000,0.000023690000000,0.000022110000000,0.000050146000000,0.000328269000000,0.000050540000000,0.000331034000000,0.000331824000000,0.000544763000000,0.000598886000000,0.031690220000000,0.000639182000000,0.000056466000000,0.000048566000000,0.000130343000000,0.000093603000000 +0.000019542000000,0.000031973000000,0.000586244000000,0.030603800000000,0.000017369000000,0.000095973000000,0.000022702500000,0.000020727000000,0.000049751000000,0.000228318000000,0.000053306000000,0.000329850000000,0.000401355000000,0.000577553000000,0.000582689000000,0.032093182000000,0.000604022000000,0.000056071000000,0.000050936000000,0.000127973000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030352541000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000020727000000,0.000050146000000,0.000226738000000,0.000050541000000,0.000363824000000,0.000331824000000,0.000543577000000,0.000549108000000,0.031696540000000,0.000555034000000,0.000056467000000,0.000048566000000,0.000132714000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030210320000000,0.000017566500000,0.000095183000000,0.000023690000000,0.000021517000000,0.000048960000000,0.000261504000000,0.000053701000000,0.000330244000000,0.000331430000000,0.000596516000000,0.000548714000000,0.032262663000000,0.000556219000000,0.000056862000000,0.000048565000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.030224542000000,0.000017369000000,0.000095182000000,0.000032381500000,0.000021319500000,0.000049356000000,0.000225553000000,0.000050145000000,0.000363430000000,0.000345652000000,0.000577553000000,0.000582294000000,0.031638072000000,0.000624565000000,0.000056072000000,0.000048565000000,0.000126787000000,0.000055676000000 +0.000019542000000,0.000031578000000,0.000622195000000,0.029688048000000,0.000042258000000,0.000095578000000,0.000024678000000,0.000022307500000,0.000049751000000,0.000226344000000,0.000049751000000,0.000329849000000,0.000332219000000,0.000563725000000,0.000549108000000,0.031500195000000,0.000623380000000,0.000056072000000,0.000082541000000,0.000126787000000,0.000054492000000 +0.000019542000000,0.000045800000000,0.000587825000000,0.031192837000000,0.000017369500000,0.000095578000000,0.000022307500000,0.000020332000000,0.000048960000000,0.000227528000000,0.000064368000000,0.000329849000000,0.000403726000000,0.000543973000000,0.000887676000000,0.031715504000000,0.000607972000000,0.000090047000000,0.000048566000000,0.000131528000000,0.000054886000000 +0.000026653000000,0.000031578000000,0.000553454000000,0.030849134000000,0.000017567000000,0.000129554000000,0.000023295000000,0.000041073000000,0.000119281000000,0.000228319000000,0.000050145000000,0.000344862000000,0.000331429000000,0.000579528000000,0.000582689000000,0.031388393000000,0.000554640000000,0.000056072000000,0.000048961000000,0.000130343000000,0.000053702000000 +0.000019542000000,0.000032368000000,0.000566886000000,0.030548492000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000021320000000,0.000048961000000,0.000229108000000,0.000052517000000,0.000330245000000,0.000365010000000,0.000544368000000,0.000582688000000,0.030966862000000,0.000555034000000,0.000056072000000,0.000048566000000,0.000128763000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.030538615000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000020332500000,0.000050541000000,0.000227134000000,0.000049355000000,0.000370541000000,0.000331430000000,0.000543577000000,0.000549503000000,0.031483998000000,0.000825652000000,0.000056466000000,0.000049356000000,0.000168269000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000756121000000,0.030302764000000,0.000017369500000,0.000095182000000,0.000023295500000,0.000021517500000,0.000048961000000,0.000318787000000,0.000051331000000,0.000330244000000,0.000331430000000,0.000577948000000,0.000582294000000,0.031886566000000,0.000589009000000,0.000056071000000,0.000048960000000,0.000127183000000,0.000068319000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.030249826000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000021122500000,0.000049355000000,0.000257553000000,0.000050935000000,0.000369751000000,0.000667232000000,0.000544763000000,0.000582294000000,0.031694565000000,0.000589800000000,0.000056467000000,0.000049355000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000032368000000,0.000553454000000,0.030418517000000,0.000017566500000,0.000095973000000,0.000022900000000,0.000020530000000,0.000049356000000,0.000225158000000,0.000050541000000,0.000329849000000,0.000365800000000,0.000669998000000,0.000549504000000,0.031628195000000,0.000573997000000,0.000056467000000,0.000049356000000,0.000148121000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.030300394000000,0.000017369000000,0.000095578000000,0.000023295000000,0.000020727500000,0.000048961000000,0.000262294000000,0.000050146000000,0.000330640000000,0.000333009000000,0.000592170000000,0.000583873000000,0.031449627000000,0.000555825000000,0.000056467000000,0.000048566000000,0.000128368000000,0.000054096000000 +0.000019344500000,0.000031973000000,0.000587825000000,0.029867801000000,0.000017369000000,0.000128763000000,0.000032974500000,0.000021715000000,0.000049751000000,0.000228714000000,0.000049751000000,0.000408861000000,0.000331824000000,0.000563331000000,0.000632072000000,0.031250121000000,0.000589009000000,0.000056072000000,0.000048566000000,0.000129158000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000624960000000,0.030755900000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020332500000,0.000050146000000,0.000227923000000,0.000051331000000,0.000329059000000,0.000365404000000,0.000545158000000,0.000549108000000,0.032408046000000,0.000601256000000,0.000076220000000,0.000068319000000,0.000127578000000,0.000054886000000 +0.000019542000000,0.000031577000000,0.000587035000000,0.029857530000000,0.000044826000000,0.000095578000000,0.000022505000000,0.000020529500000,0.000069504000000,0.000227134000000,0.000064763000000,0.000380022000000,0.000331824000000,0.000628515000000,0.000583084000000,0.031774763000000,0.000588615000000,0.000056862000000,0.000101109000000,0.000127577000000,0.000054096000000 +0.000028826000000,0.000065553000000,0.000554244000000,0.030047554000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000021320000000,0.000049751000000,0.000278491000000,0.000050541000000,0.000330244000000,0.000365010000000,0.000572022000000,0.000617849000000,0.031324392000000,0.000554639000000,0.000056467000000,0.000101108000000,0.000127182000000,0.000053306000000 +0.000019542000000,0.000031973000000,0.000940220000000,0.030414171000000,0.000018159500000,0.000095577000000,0.000023493000000,0.000027641000000,0.000049356000000,0.000226343000000,0.000051331000000,0.000363824000000,0.000331429000000,0.000544367000000,0.000548713000000,0.032067108000000,0.000555429000000,0.000056071000000,0.000065553000000,0.000129553000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000553454000000,0.030269184000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000020727500000,0.000048960000000,0.000215281000000,0.000050146000000,0.000329849000000,0.000341306000000,0.000577553000000,0.000582689000000,0.031755404000000,0.000589010000000,0.000056467000000,0.000048960000000,0.000141010000000,0.000054491000000 +0.000019542000000,0.000031182000000,0.000587430000000,0.031662170000000,0.000017567000000,0.000134294000000,0.000022900000000,0.000020529500000,0.000050541000000,0.000254392000000,0.000051331000000,0.000329850000000,0.000331429000000,0.000543577000000,0.000606393000000,0.032360639000000,0.000598491000000,0.000095183000000,0.000048960000000,0.000127182000000,0.000069899000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031141084000000,0.000017567000000,0.000109405000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000214887000000,0.000050541000000,0.000364220000000,0.000331429000000,0.000543973000000,0.000550293000000,0.033368045000000,0.000555429000000,0.000056072000000,0.000083331000000,0.000130343000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000622194000000,0.029914024000000,0.000017567000000,0.000095577000000,0.000022307500000,0.000021122500000,0.000049751000000,0.000246492000000,0.000083331000000,0.000331429000000,0.000407677000000,0.000590984000000,0.000584269000000,0.033020392000000,0.000571231000000,0.000056862000000,0.000062393000000,0.000217652000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030452097000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020727500000,0.000050541000000,0.000209356000000,0.000053701000000,0.000363824000000,0.000331429000000,0.000610343000000,0.000634046000000,0.032262664000000,0.000607577000000,0.000056467000000,0.000048171000000,0.000146540000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.031218911000000,0.000017567000000,0.000095578000000,0.000041665500000,0.000020529500000,0.000048960000000,0.000212516000000,0.000071874000000,0.000329850000000,0.000413997000000,0.000544367000000,0.000549899000000,0.031026517000000,0.000589404000000,0.000092417000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031577000000,0.000587430000000,0.030167653000000,0.000017566500000,0.000095577000000,0.000023492500000,0.000020924500000,0.000049356000000,0.000210541000000,0.000084911000000,0.000402541000000,0.000331430000000,0.000638787000000,0.000582689000000,0.031683899000000,0.000589800000000,0.000056862000000,0.000049355000000,0.000163923000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.032152442000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000021517000000,0.000118492000000,0.000210146000000,0.000052517000000,0.000329849000000,0.000365405000000,0.000578343000000,0.000583084000000,0.032006664000000,0.000575578000000,0.000056467000000,0.000048960000000,0.000127973000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031868392000000,0.000027245500000,0.000129158000000,0.000022702500000,0.000020727000000,0.000050145000000,0.000267825000000,0.000050935000000,0.000329454000000,0.000331430000000,0.000544762000000,0.000548714000000,0.031297529000000,0.000555429000000,0.000058442000000,0.000048961000000,0.000127182000000,0.000054887000000 +0.000029418500000,0.000051331000000,0.000552664000000,0.031367059000000,0.000050949500000,0.000095578000000,0.000023295500000,0.000021319500000,0.000049751000000,0.000210146000000,0.000050541000000,0.000380022000000,0.000331035000000,0.000579133000000,0.000596120000000,0.031640047000000,0.000639182000000,0.000056862000000,0.000048961000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000595331000000,0.030928541000000,0.000051147000000,0.000095578000000,0.000022702500000,0.000020529500000,0.000050146000000,0.000209751000000,0.000050936000000,0.000331035000000,0.000417553000000,0.000581898000000,0.000582689000000,0.031693380000000,0.000588615000000,0.000056467000000,0.000048566000000,0.000128368000000,0.000144961000000 +0.000019542000000,0.000031578000000,0.000637998000000,0.030147900000000,0.000026851000000,0.000095578000000,0.000022110000000,0.000021319500000,0.000049356000000,0.000210146000000,0.000051331000000,0.000363825000000,0.000331430000000,0.000687775000000,0.000549504000000,0.030964097000000,0.000588614000000,0.000056467000000,0.000049751000000,0.000127183000000,0.000135874000000 +0.000019344500000,0.000031578000000,0.000622590000000,0.031679948000000,0.000018554000000,0.000095578000000,0.000023295500000,0.000021517500000,0.000048961000000,0.000246491000000,0.000049751000000,0.000329850000000,0.000365405000000,0.000544367000000,0.000636812000000,0.031368640000000,0.000555034000000,0.000056071000000,0.000048565000000,0.000134689000000,0.000102689000000 +0.000019542000000,0.000031578000000,0.000605207000000,0.031599355000000,0.000017567000000,0.000095972000000,0.000022900000000,0.000020925000000,0.000048960000000,0.000211330000000,0.000049751000000,0.000329454000000,0.000331034000000,0.000629701000000,0.000731627000000,0.031288443000000,0.000555035000000,0.000056071000000,0.000082541000000,0.000127183000000,0.000085702000000 +0.000019542000000,0.000031578000000,0.000553850000000,0.031795306000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000022110000000,0.000052516000000,0.000208960000000,0.000050541000000,0.000329849000000,0.000351183000000,0.000613503000000,0.000634836000000,0.031572096000000,0.000588615000000,0.000076615000000,0.000049355000000,0.000126788000000,0.000053701000000 +0.000019542500000,0.000031577000000,0.000587429000000,0.031405776000000,0.000017566500000,0.000136269000000,0.000050356500000,0.000020332500000,0.000049355000000,0.000231479000000,0.000050541000000,0.000330640000000,0.000331034000000,0.000543973000000,0.000548713000000,0.032383552000000,0.000715429000000,0.000056466000000,0.000049356000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000700417000000,0.031029281000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000020530000000,0.000049356000000,0.000210936000000,0.000086491000000,0.000437306000000,0.000331430000000,0.000613503000000,0.000633651000000,0.032768737000000,0.000588614000000,0.000056467000000,0.000049751000000,0.000212121000000,0.000087677000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.031350072000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021320000000,0.000052516000000,0.000210936000000,0.000049751000000,0.000329849000000,0.000365405000000,0.000622984000000,0.000632467000000,0.031869578000000,0.000555825000000,0.000056467000000,0.000048171000000,0.000126392000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030846764000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020727500000,0.000054096000000,0.000210541000000,0.000050146000000,0.000380417000000,0.000331825000000,0.000545158000000,0.000549898000000,0.031652688000000,0.000554639000000,0.000056862000000,0.000049355000000,0.000129949000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000568466000000,0.030927751000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000021517500000,0.000049751000000,0.000246491000000,0.000050541000000,0.000330640000000,0.000420318000000,0.000613109000000,0.000632861000000,0.032211306000000,0.000624170000000,0.000056467000000,0.000048565000000,0.000161158000000,0.000054492000000 +0.000036134500000,0.000031578000000,0.000587035000000,0.031250911000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000030209000000,0.000049751000000,0.000212516000000,0.000049751000000,0.000330244000000,0.000331429000000,0.000632467000000,0.000637602000000,0.032271750000000,0.000609948000000,0.000056072000000,0.000048171000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000636417000000,0.031666516000000,0.000017566500000,0.000097158000000,0.000022307500000,0.000027048000000,0.000049355000000,0.000208960000000,0.000054096000000,0.000330244000000,0.000331035000000,0.000543972000000,0.000548714000000,0.031483207000000,0.000591380000000,0.000056467000000,0.000048171000000,0.000128368000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031301480000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000210146000000,0.000049751000000,0.000329850000000,0.000331429000000,0.000596121000000,0.000577948000000,0.031958862000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000554244000000,0.031235504000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000300220000000,0.000050936000000,0.000415183000000,0.000331430000000,0.000663676000000,0.000624566000000,0.031850219000000,0.000555034000000,0.000056071000000,0.000082145000000,0.000129554000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.001006985000000,0.031485578000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000021517500000,0.000048961000000,0.000211331000000,0.000050541000000,0.000329849000000,0.000365800000000,0.000544763000000,0.000604812000000,0.031272639000000,0.000589405000000,0.000070294000000,0.000048960000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000553454000000,0.031305430000000,0.000017369500000,0.000095183000000,0.000039295500000,0.000020924500000,0.000049355000000,0.000213701000000,0.000050146000000,0.000408466000000,0.000331430000000,0.000595331000000,0.000549108000000,0.032197874000000,0.000589010000000,0.000056071000000,0.000048566000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.031881430000000,0.000027641000000,0.000095973000000,0.000022702500000,0.000020530000000,0.000148911000000,0.000246886000000,0.000131923000000,0.000330244000000,0.000367775000000,0.000613108000000,0.000618244000000,0.031564590000000,0.000554639000000,0.000056071000000,0.000048961000000,0.000141010000000,0.000067528000000 +0.000019344500000,0.000031578000000,0.000637997000000,0.031271455000000,0.000017369000000,0.000162738000000,0.000023097500000,0.000021320000000,0.000147726000000,0.000209750000000,0.000050146000000,0.000329849000000,0.000331825000000,0.000544762000000,0.000617849000000,0.032799552000000,0.000554639000000,0.000056467000000,0.000048171000000,0.000130738000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000594541000000,0.030801331000000,0.000017566500000,0.000096368000000,0.000022505000000,0.000021517500000,0.000083726000000,0.000209356000000,0.000050146000000,0.000330640000000,0.000331825000000,0.000628911000000,0.000549899000000,0.031875503000000,0.000589405000000,0.000056467000000,0.000048565000000,0.000127577000000,0.000053701000000 +0.000019542000000,0.000032368000000,0.000603627000000,0.031579207000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000021320000000,0.000078986000000,0.000213306000000,0.000050145000000,0.000331034000000,0.000366590000000,0.000628910000000,0.000617454000000,0.031800047000000,0.000588219000000,0.000056467000000,0.000048565000000,0.000199084000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031198763000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000020530000000,0.000049356000000,0.000447183000000,0.000049355000000,0.000415972000000,0.000331430000000,0.000543973000000,0.000618244000000,0.031657824000000,0.000769158000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054097000000 +0.000038900000000,0.000051726000000,0.000638392000000,0.031462269000000,0.000025270500000,0.000095578000000,0.000023097500000,0.000037320000000,0.000082936000000,0.000227924000000,0.000050541000000,0.000330244000000,0.000365800000000,0.000559775000000,0.000549504000000,0.032114910000000,0.000639182000000,0.000056071000000,0.000048171000000,0.000126788000000,0.000054491000000 +0.000062998500000,0.000031578000000,0.000587429000000,0.031431059000000,0.000017566500000,0.000095578000000,0.000022307500000,0.000020727500000,0.000049355000000,0.000210936000000,0.000050541000000,0.000364219000000,0.000331430000000,0.000883330000000,0.001003825000000,0.032921626000000,0.000554244000000,0.000056466000000,0.000049355000000,0.000127183000000,0.000054492000000 +0.000054110000000,0.000031578000000,0.000587034000000,0.032032342000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000209751000000,0.000049751000000,0.000330244000000,0.000331034000000,0.000616268000000,0.000578343000000,0.035835204000000,0.000556219000000,0.000092418000000,0.000067923000000,0.000133899000000,0.000055281000000 +0.000035344500000,0.000031578000000,0.000553059000000,0.031027306000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021715000000,0.000049751000000,0.000210540000000,0.000050541000000,0.000329850000000,0.000466936000000,0.000577553000000,0.000582689000000,0.032209330000000,0.000640368000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000020727000000,0.000031183000000,0.000569652000000,0.031489923000000,0.000017369000000,0.000095578000000,0.000042061000000,0.000021517000000,0.000049750000000,0.000209356000000,0.000050541000000,0.000330245000000,0.000367380000000,0.000577158000000,0.000549898000000,0.032268589000000,0.000632072000000,0.000057257000000,0.000050146000000,0.000127182000000,0.000072269000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031524294000000,0.000017369000000,0.000095578000000,0.000030801500000,0.000021319500000,0.000049751000000,0.000212516000000,0.000050541000000,0.000330244000000,0.000331034000000,0.000578342000000,0.000562935000000,0.031670467000000,0.000623380000000,0.000055677000000,0.000048171000000,0.000129948000000,0.000054097000000 +0.000029419000000,0.000031578000000,0.000587429000000,0.031384047000000,0.000034356500000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000208961000000,0.000050146000000,0.000415578000000,0.000331035000000,0.000577553000000,0.000582689000000,0.031989677000000,0.000575973000000,0.000056467000000,0.000048961000000,0.000127577000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.031799651000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000210936000000,0.000050146000000,0.000330245000000,0.000372516000000,0.000577553000000,0.000549898000000,0.031797281000000,0.000554639000000,0.000057652000000,0.000049355000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000685404000000,0.033443502000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000210145000000,0.000052121000000,0.000363824000000,0.000331824000000,0.000577948000000,0.000583084000000,0.032031948000000,0.000582293000000,0.000056071000000,0.000049355000000,0.000172220000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.032882910000000,0.000018554500000,0.000129158000000,0.000023097500000,0.000021319500000,0.000065553000000,0.000213307000000,0.000050541000000,0.000331034000000,0.000365404000000,0.000577553000000,0.000582689000000,0.031318467000000,0.000637602000000,0.000059232000000,0.000048960000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.032183651000000,0.000017566500000,0.000095183000000,0.000022307000000,0.000020332000000,0.000076615000000,0.000210936000000,0.000050541000000,0.000330245000000,0.000382787000000,0.000576367000000,0.000549503000000,0.031803602000000,0.000639578000000,0.000056862000000,0.000048961000000,0.000127973000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000706738000000,0.031660590000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000036332000000,0.000049751000000,0.000210935000000,0.000050146000000,0.000329850000000,0.000410442000000,0.000633256000000,0.000582689000000,0.031957676000000,0.000626146000000,0.000056862000000,0.000048566000000,0.000166294000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031397084000000,0.000017369000000,0.000095973000000,0.000023295000000,0.000020727500000,0.000049356000000,0.000209751000000,0.000050936000000,0.000329849000000,0.000331430000000,0.000577948000000,0.000582293000000,0.031681133000000,0.000554639000000,0.000056072000000,0.000048961000000,0.000135084000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031331899000000,0.000018159000000,0.000095183000000,0.000023888000000,0.000021320000000,0.000048960000000,0.000211726000000,0.000050145000000,0.000594146000000,0.000332220000000,0.000576367000000,0.000549108000000,0.031995207000000,0.000555824000000,0.000056467000000,0.000049356000000,0.000128763000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000553849000000,0.031697726000000,0.000017566500000,0.000095183000000,0.000030406500000,0.000020332500000,0.000049356000000,0.000217257000000,0.000050540000000,0.000330245000000,0.000331034000000,0.000577948000000,0.000589800000000,0.031999158000000,0.000643133000000,0.000056072000000,0.000048961000000,0.000129948000000,0.000087677000000 +0.000019542000000,0.000031578000000,0.000991578000000,0.033160243000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000021320000000,0.000049356000000,0.000211331000000,0.000050936000000,0.000398590000000,0.000331825000000,0.000611133000000,0.000636812000000,0.031078664000000,0.000639577000000,0.000056862000000,0.000048960000000,0.000128763000000,0.000054491000000 +0.000020530000000,0.000031578000000,0.000553059000000,0.031055356000000,0.000017369000000,0.000095183000000,0.000023098000000,0.000029023500000,0.000048960000000,0.000210540000000,0.000050146000000,0.000330245000000,0.000365010000000,0.000562145000000,0.000549109000000,0.031019801000000,0.000589405000000,0.000056466000000,0.000048170000000,0.000141010000000,0.000054887000000 +0.000029221000000,0.000031183000000,0.000553454000000,0.031355998000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000021122500000,0.000049751000000,0.000211726000000,0.000052516000000,0.000381207000000,0.000341306000000,0.000577948000000,0.000582293000000,0.031864047000000,0.000556615000000,0.000056071000000,0.000048961000000,0.000158787000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031839948000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020727500000,0.000049356000000,0.000211331000000,0.000050541000000,0.000330245000000,0.000367775000000,0.000614293000000,0.000581899000000,0.031763305000000,0.000781010000000,0.000056072000000,0.000048566000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000586244000000,0.030661874000000,0.000017567000000,0.000095183000000,0.000023097500000,0.000020332500000,0.000068713000000,0.000208961000000,0.000050936000000,0.000331034000000,0.000331430000000,0.000544368000000,0.000549504000000,0.031322023000000,0.000555035000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031577000000,0.000553454000000,0.031842318000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000021122500000,0.000062787000000,0.000255577000000,0.000050541000000,0.000330244000000,0.000331429000000,0.000577948000000,0.000583083000000,0.031473331000000,0.000555034000000,0.000056467000000,0.000048170000000,0.000196318000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000553850000000,0.031169529000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000217256000000,0.000050541000000,0.000329850000000,0.000364614000000,0.000580318000000,0.000583084000000,0.030956196000000,0.000589009000000,0.000122837000000,0.000048566000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.030992146000000,0.000017567000000,0.000129158000000,0.000022307500000,0.000020727500000,0.000050541000000,0.000211726000000,0.000052516000000,0.000399775000000,0.000331429000000,0.000543973000000,0.000564516000000,0.031744738000000,0.000592960000000,0.000056466000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019344500000,0.000078985000000,0.000587430000000,0.031062467000000,0.000017566500000,0.000095578000000,0.000022307500000,0.000020925000000,0.000049356000000,0.000210146000000,0.000050146000000,0.000329455000000,0.000365800000000,0.000578343000000,0.000583874000000,0.031948195000000,0.000555034000000,0.000056861000000,0.000050146000000,0.000161553000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.032374466000000,0.000017566500000,0.000095578000000,0.000050159500000,0.000020332000000,0.000048961000000,0.000212911000000,0.000050145000000,0.000713849000000,0.000331429000000,0.000578343000000,0.000597700000000,0.031143059000000,0.000555824000000,0.000056466000000,0.000048566000000,0.000126788000000,0.000087676000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030842812000000,0.000017566500000,0.000095578000000,0.000032776500000,0.000020727000000,0.000049355000000,0.000210936000000,0.000120072000000,0.000345257000000,0.000331430000000,0.000544368000000,0.000548714000000,0.031296739000000,0.000589010000000,0.000056466000000,0.000049751000000,0.000127973000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000566886000000,0.031271060000000,0.000018159000000,0.000095578000000,0.000030801000000,0.000020529500000,0.000049751000000,0.000211331000000,0.000053307000000,0.000330639000000,0.000332220000000,0.000628911000000,0.000582294000000,0.031339405000000,0.000596516000000,0.000056072000000,0.000048961000000,0.000126788000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000604022000000,0.031338615000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020727000000,0.000050541000000,0.000211726000000,0.000063578000000,0.000329849000000,0.000331035000000,0.000577948000000,0.000583478000000,0.032453874000000,0.000602442000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054492000000 +0.000019345000000,0.000031577000000,0.000588615000000,0.031028887000000,0.000017566500000,0.000095182000000,0.000023492500000,0.000021320000000,0.000049751000000,0.000212516000000,0.000050541000000,0.000405306000000,0.000365405000000,0.000543578000000,0.000550689000000,0.031075899000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031634516000000,0.000027443000000,0.000125603000000,0.000023492500000,0.000021319500000,0.000084121000000,0.000209355000000,0.000050936000000,0.000330244000000,0.000331430000000,0.000579133000000,0.000582293000000,0.031473726000000,0.000568862000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031470960000000,0.000017566500000,0.000095183000000,0.000023295500000,0.000021122000000,0.000049356000000,0.000211726000000,0.000050541000000,0.000399380000000,0.000401355000000,0.000600466000000,0.000718194000000,0.031470961000000,0.000639183000000,0.000114541000000,0.000048961000000,0.000142590000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000688960000000,0.030807652000000,0.000018159500000,0.000095973000000,0.000023295500000,0.000040085000000,0.000049356000000,0.000212121000000,0.000049356000000,0.000330244000000,0.000331429000000,0.000577947000000,0.001138145000000,0.031238664000000,0.000875035000000,0.000071085000000,0.000049751000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.031491504000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021517000000,0.000049751000000,0.000252022000000,0.000050540000000,0.000348812000000,0.000331429000000,0.000663281000000,0.000892812000000,0.031095257000000,0.000588615000000,0.000056071000000,0.000048565000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031986120000000,0.000017566500000,0.000095183000000,0.000032579000000,0.000020727000000,0.000049355000000,0.000210145000000,0.000050540000000,0.000333010000000,0.000331824000000,0.000585849000000,0.000625355000000,0.033814464000000,0.000588614000000,0.000056072000000,0.000061602000000,0.000176960000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031708788000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020727000000,0.000050541000000,0.000213307000000,0.000050936000000,0.000329849000000,0.000333010000000,0.000544368000000,0.000589799000000,0.032517478000000,0.000555034000000,0.000059628000000,0.000048960000000,0.000127183000000,0.000070294000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031173084000000,0.000018159000000,0.000116121000000,0.000022900000000,0.000021319500000,0.000049751000000,0.000209750000000,0.000050145000000,0.000484713000000,0.000365405000000,0.000578343000000,0.000549898000000,0.031220492000000,0.000568466000000,0.000056466000000,0.000048961000000,0.000129158000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000586639000000,0.031638071000000,0.000017566500000,0.000095182000000,0.000022702500000,0.000021320000000,0.000049356000000,0.000209750000000,0.000050146000000,0.000329850000000,0.000332219000000,0.000578738000000,0.000582689000000,0.031263158000000,0.000589010000000,0.000057256000000,0.000048566000000,0.000126787000000,0.000054492000000 +0.000019542500000,0.000046195000000,0.000587429000000,0.030756689000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000021517500000,0.000049751000000,0.000214887000000,0.000050146000000,0.000398985000000,0.000365010000000,0.000544367000000,0.000617849000000,0.031293578000000,0.000588219000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031188097000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020530000000,0.000049355000000,0.000210541000000,0.000050146000000,0.000329849000000,0.000331824000000,0.000578343000000,0.000549108000000,0.031506911000000,0.000570047000000,0.000056467000000,0.000048565000000,0.000129949000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000554639000000,0.033695551000000,0.000017566500000,0.000096368000000,0.000022900000000,0.000020332000000,0.000061997000000,0.000210936000000,0.000050936000000,0.000398985000000,0.000331429000000,0.000577947000000,0.000618244000000,0.031457134000000,0.000555429000000,0.000110590000000,0.000048171000000,0.000127578000000,0.000054491000000 +0.000026258000000,0.000031578000000,0.000788911000000,0.033744144000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000212516000000,0.000050936000000,0.000330244000000,0.000366590000000,0.000544763000000,0.000597306000000,0.030981480000000,0.000589800000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.032078960000000,0.000024677500000,0.000095973000000,0.000023295000000,0.000021319500000,0.000049356000000,0.000211331000000,0.000051331000000,0.000330245000000,0.000382392000000,0.000577947000000,0.000549108000000,0.031374170000000,0.000591380000000,0.000059232000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031182000000,0.000641157000000,0.031450022000000,0.000017369000000,0.000129553000000,0.000023097500000,0.000020529500000,0.000049751000000,0.000209356000000,0.000050936000000,0.000330244000000,0.000407282000000,0.000594145000000,0.000632862000000,0.031413676000000,0.000589800000000,0.000056862000000,0.000049751000000,0.000129948000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000572812000000,0.031141479000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020727500000,0.000048961000000,0.000210935000000,0.000051331000000,0.000329849000000,0.000331035000000,0.000545553000000,0.000582293000000,0.031463454000000,0.000555825000000,0.000056072000000,0.000063973000000,0.000211331000000,0.000074245000000 +0.000019542000000,0.000065553000000,0.000553454000000,0.030630665000000,0.000018159000000,0.000095973000000,0.000073270500000,0.000020332500000,0.000049355000000,0.000210540000000,0.000050146000000,0.000685010000000,0.000380812000000,0.000578738000000,0.000549109000000,0.031225627000000,0.000556219000000,0.000056466000000,0.000048565000000,0.000126787000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000622590000000,0.031607652000000,0.000017369000000,0.000095577000000,0.000036925000000,0.000020529500000,0.000049356000000,0.000213701000000,0.000050541000000,0.000377652000000,0.000331824000000,0.000629306000000,0.000583873000000,0.031189676000000,0.000631676000000,0.000056466000000,0.000048170000000,0.000129948000000,0.000054097000000 +0.000019344500000,0.000031973000000,0.000587825000000,0.031118566000000,0.000017566500000,0.000095578000000,0.000030406500000,0.000021319500000,0.000049356000000,0.000209751000000,0.000050145000000,0.000330245000000,0.000331824000000,0.000543973000000,0.000801553000000,0.031079849000000,0.000590195000000,0.000056466000000,0.000049356000000,0.000198689000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000637997000000,0.030996492000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000021320000000,0.000049355000000,0.000212516000000,0.000050541000000,0.000330245000000,0.000331034000000,0.000612714000000,0.000735577000000,0.031579602000000,0.000588615000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000639972000000,0.031047455000000,0.000017566500000,0.000095578000000,0.000023295000000,0.000020529500000,0.000082936000000,0.000209355000000,0.000050541000000,0.000363824000000,0.000331429000000,0.000578343000000,0.000550294000000,0.031717084000000,0.000554639000000,0.000090442000000,0.000048171000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.031501776000000,0.000018159500000,0.000109405000000,0.000023492500000,0.000020727000000,0.000049355000000,0.000210541000000,0.000053306000000,0.000330244000000,0.000475232000000,0.000543577000000,0.000549899000000,0.031655059000000,0.000555825000000,0.000069504000000,0.000049355000000,0.000146936000000,0.000054492000000 +0.000029221000000,0.000032368000000,0.000635627000000,0.030864541000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000211726000000,0.000050936000000,0.000364220000000,0.000331430000000,0.000578343000000,0.000616268000000,0.030965282000000,0.000590590000000,0.000056072000000,0.000048170000000,0.000130343000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000587429000000,0.031566961000000,0.000017566500000,0.000095577000000,0.000033171500000,0.000020530000000,0.000048961000000,0.000210540000000,0.000050936000000,0.000330245000000,0.000378442000000,0.000630491000000,0.000608763000000,0.032125182000000,0.000589010000000,0.000056467000000,0.000048566000000,0.000126787000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000765207000000,0.031205084000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000027641000000,0.000048960000000,0.000210541000000,0.000050936000000,0.000330245000000,0.000331430000000,0.000544368000000,0.000550294000000,0.031896837000000,0.000555429000000,0.000056071000000,0.000048961000000,0.000127578000000,0.000054097000000 +0.000019542500000,0.000031578000000,0.000594936000000,0.031706812000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000020727500000,0.000049751000000,0.000210145000000,0.000050936000000,0.000329849000000,0.000385948000000,0.000578343000000,0.000658145000000,0.031115405000000,0.000556614000000,0.000056072000000,0.000081751000000,0.000128368000000,0.000094392000000 +0.000019542000000,0.000032368000000,0.000573602000000,0.031461084000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020925000000,0.000052516000000,0.000212516000000,0.000052516000000,0.000331034000000,0.000331429000000,0.000590985000000,0.000618639000000,0.032023256000000,0.000602047000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000084911000000,0.000553849000000,0.031282516000000,0.000017566500000,0.000142196000000,0.000023097500000,0.000021517500000,0.000048961000000,0.000210145000000,0.000050541000000,0.000399775000000,0.000331429000000,0.000543973000000,0.000583083000000,0.032385133000000,0.000639182000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031167158000000,0.000017566500000,0.000097554000000,0.000023295000000,0.000021320000000,0.000054887000000,0.000216072000000,0.000050936000000,0.000330244000000,0.000380812000000,0.000601256000000,0.000626540000000,0.031308195000000,0.000590195000000,0.000056467000000,0.000048961000000,0.000355528000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.032012985000000,0.000017369000000,0.000125207000000,0.000023492500000,0.000021517000000,0.000049355000000,0.000210935000000,0.000050541000000,0.000363824000000,0.000331035000000,0.000577948000000,0.000619035000000,0.031342170000000,0.000555429000000,0.000056467000000,0.000048566000000,0.000274540000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000602837000000,0.032065132000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000020727000000,0.000050936000000,0.000210936000000,0.000049750000000,0.000330639000000,0.000400565000000,0.000545158000000,0.000581899000000,0.031869182000000,0.000555035000000,0.000071479000000,0.000048961000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000552269000000,0.031189282000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000020727000000,0.000049356000000,0.000212516000000,0.000050541000000,0.000329849000000,0.000331429000000,0.000577948000000,0.000599676000000,0.031750269000000,0.000638788000000,0.000056072000000,0.000049355000000,0.000143380000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031400245000000,0.000017369000000,0.000095577000000,0.000022307500000,0.000020530000000,0.000049356000000,0.000208566000000,0.000049751000000,0.000330245000000,0.000403725000000,0.000628120000000,0.000619429000000,0.031613973000000,0.000590194000000,0.000056467000000,0.000048565000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000587034000000,0.031245381000000,0.000017567000000,0.000130739000000,0.000023295500000,0.000020332500000,0.000049356000000,0.000212516000000,0.000050936000000,0.000330244000000,0.000331429000000,0.000562145000000,0.000619429000000,0.031626219000000,0.000575183000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000589405000000,0.031761331000000,0.000017764500000,0.000095578000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000212121000000,0.000050936000000,0.000371725000000,0.000331429000000,0.000577948000000,0.000583083000000,0.030983060000000,0.000555429000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000553059000000,0.031379306000000,0.000017369500000,0.000095578000000,0.000022307500000,0.000022110000000,0.000049356000000,0.000210540000000,0.000050146000000,0.000329850000000,0.000400565000000,0.000628515000000,0.000620614000000,0.031175059000000,0.000601651000000,0.000056467000000,0.000083331000000,0.000161948000000,0.000067924000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031590664000000,0.000034159500000,0.000095183000000,0.000022702500000,0.000021320000000,0.000049750000000,0.000209356000000,0.000078986000000,0.000400170000000,0.000331430000000,0.000544763000000,0.000619034000000,0.033482614000000,0.000595726000000,0.000056466000000,0.000061998000000,0.000128368000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000639577000000,0.032374861000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000020529500000,0.000050936000000,0.000210146000000,0.000050936000000,0.000330244000000,0.000364615000000,0.000577948000000,0.000583084000000,0.033599156000000,0.000588614000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000053702000000 +0.000020727000000,0.000065553000000,0.000603627000000,0.031586713000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000020332500000,0.000049355000000,0.000212121000000,0.000051331000000,0.000359478000000,0.000331430000000,0.000613898000000,0.000788516000000,0.031195998000000,0.000555430000000,0.000059233000000,0.000048961000000,0.000168664000000,0.000054096000000 +0.000020727500000,0.000031578000000,0.000589010000000,0.031348096000000,0.000017962000000,0.000095972000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000210540000000,0.000051331000000,0.000345651000000,0.000422293000000,0.000544367000000,0.000576762000000,0.031708788000000,0.000555825000000,0.000138244000000,0.000048960000000,0.000148911000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031012689000000,0.000017369000000,0.000145356000000,0.000022900000000,0.000021715000000,0.000051331000000,0.000209356000000,0.000050540000000,0.000330244000000,0.000739923000000,0.000578343000000,0.000581898000000,0.031593430000000,0.000717404000000,0.000056467000000,0.000049355000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.031179010000000,0.000017369500000,0.000095577000000,0.000023097500000,0.000021319500000,0.000052516000000,0.000211331000000,0.000050145000000,0.000377257000000,0.000333405000000,0.000744663000000,0.000736763000000,0.031232344000000,0.000589800000000,0.000056072000000,0.000048961000000,0.000146936000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031493084000000,0.000017369500000,0.000095578000000,0.000023690000000,0.000020924500000,0.000049356000000,0.000275725000000,0.000049751000000,0.000329849000000,0.000333800000000,0.000762441000000,0.000549108000000,0.031409331000000,0.000623379000000,0.000056467000000,0.000048566000000,0.000135479000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.034132490000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000020529500000,0.000055677000000,0.000211725000000,0.000050146000000,0.000364220000000,0.000431380000000,0.000543973000000,0.000582294000000,0.031223652000000,0.000555825000000,0.000056862000000,0.000048170000000,0.000127183000000,0.000054491000000 +0.000026851000000,0.000031973000000,0.000553454000000,0.031322023000000,0.000017567000000,0.000097554000000,0.000038307500000,0.000022110000000,0.000049751000000,0.000210541000000,0.000099133000000,0.000330244000000,0.000331429000000,0.000544762000000,0.000548714000000,0.031139504000000,0.000570046000000,0.000056467000000,0.000048170000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031973000000,0.000553454000000,0.033914416000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000030406000000,0.000049751000000,0.000268220000000,0.000050541000000,0.000330244000000,0.000400565000000,0.000578738000000,0.000548713000000,0.031528244000000,0.000639972000000,0.000056467000000,0.000069109000000,0.000127183000000,0.000055281000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.032419898000000,0.000017369000000,0.000115726000000,0.000022505000000,0.000020332000000,0.000048960000000,0.000230689000000,0.000050540000000,0.000363825000000,0.000331825000000,0.000544762000000,0.000599281000000,0.031507306000000,0.000589010000000,0.000056862000000,0.000048171000000,0.000127183000000,0.000074640000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031734071000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020529500000,0.000048961000000,0.000208565000000,0.000050541000000,0.000331035000000,0.000372121000000,0.000544763000000,0.000548713000000,0.030829381000000,0.000623775000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000068319000000 +0.000019344500000,0.000031182000000,0.000553849000000,0.031643602000000,0.000017567000000,0.000095577000000,0.000022900500000,0.000020332000000,0.000049356000000,0.000211726000000,0.000051331000000,0.000364615000000,0.000331034000000,0.000632071000000,0.000563726000000,0.031233924000000,0.000554640000000,0.000090047000000,0.000048960000000,0.000161158000000,0.000053306000000 +0.000019344500000,0.000051726000000,0.000553059000000,0.032055256000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000021517500000,0.000082936000000,0.000208170000000,0.000050541000000,0.000330244000000,0.000351973000000,0.000544367000000,0.000590985000000,0.031488343000000,0.000555430000000,0.000056072000000,0.000048566000000,0.000127578000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000796812000000,0.030955405000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000020727500000,0.000050541000000,0.000209751000000,0.000050541000000,0.000349207000000,0.000331430000000,0.000558985000000,0.000564516000000,0.031804788000000,0.000896368000000,0.000056071000000,0.000048566000000,0.000129949000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000586639000000,0.031795701000000,0.000017567000000,0.000095578000000,0.000023098000000,0.000021122500000,0.000049751000000,0.000210145000000,0.000049356000000,0.000329454000000,0.000331429000000,0.000578738000000,0.000549108000000,0.031552344000000,0.000555429000000,0.000056466000000,0.000048565000000,0.000165503000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000603627000000,0.031643998000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000021320000000,0.000050146000000,0.000214096000000,0.000068714000000,0.000331430000000,0.000418738000000,0.000544368000000,0.000598886000000,0.032001923000000,0.000589404000000,0.000056071000000,0.000048170000000,0.000132319000000,0.000055282000000 +0.000019344500000,0.000031578000000,0.000588614000000,0.031275405000000,0.000017369000000,0.000128763000000,0.000022307500000,0.000020530000000,0.000049355000000,0.000209750000000,0.000068319000000,0.000377652000000,0.000369356000000,0.000544367000000,0.000548713000000,0.031195602000000,0.000588615000000,0.000056862000000,0.000048171000000,0.000127973000000,0.000087282000000 +0.000019344500000,0.000031183000000,0.000571232000000,0.031340196000000,0.000017369000000,0.000095973000000,0.000023690000000,0.000020529500000,0.000049356000000,0.000210541000000,0.000069504000000,0.000330245000000,0.000478787000000,0.000577948000000,0.000565306000000,0.031743157000000,0.000555824000000,0.000056467000000,0.000048566000000,0.000167479000000,0.000055282000000 +0.000047196500000,0.000031578000000,0.000553849000000,0.032731206000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021517500000,0.000049356000000,0.000210146000000,0.000050146000000,0.000377652000000,0.000332219000000,0.000545553000000,0.000581899000000,0.031433430000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000031577000000,0.000600861000000,0.032351552000000,0.000017566500000,0.000095973000000,0.000022505000000,0.000039690000000,0.000048960000000,0.000246886000000,0.000050541000000,0.000330244000000,0.000365404000000,0.000613504000000,0.000549898000000,0.032013380000000,0.000590195000000,0.000056467000000,0.000048565000000,0.000131133000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000587034000000,0.031274220000000,0.000017566500000,0.000095973000000,0.000023493000000,0.000038900000000,0.000048961000000,0.000210146000000,0.000051331000000,0.000330244000000,0.000331429000000,0.000579923000000,0.000562936000000,0.032358664000000,0.000622195000000,0.000075430000000,0.000048566000000,0.000129948000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000553849000000,0.031512442000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000029813500000,0.000049751000000,0.000210145000000,0.000052121000000,0.000330245000000,0.000331034000000,0.000543578000000,0.000583478000000,0.031454368000000,0.000601257000000,0.000069899000000,0.000049356000000,0.000129553000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031785825000000,0.000027246000000,0.000095578000000,0.000023097500000,0.000022702500000,0.000118491000000,0.000209356000000,0.000050146000000,0.000330244000000,0.000331825000000,0.000578343000000,0.000550689000000,0.031460294000000,0.000555034000000,0.000056071000000,0.000049356000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000623380000000,0.031250911000000,0.000017567000000,0.000125602000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000250837000000,0.000050146000000,0.000364614000000,0.000331429000000,0.000577948000000,0.000582293000000,0.031693775000000,0.000555034000000,0.000056466000000,0.000048960000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000600071000000,0.032020491000000,0.000017369500000,0.000096763000000,0.000022702500000,0.000021517500000,0.000048961000000,0.000212121000000,0.000049750000000,0.000329849000000,0.000378046000000,0.000544367000000,0.000582689000000,0.031800047000000,0.000590590000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000588219000000,0.032048540000000,0.000017567000000,0.000095577000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000214491000000,0.000049751000000,0.000438491000000,0.000331034000000,0.000628120000000,0.000549898000000,0.032718169000000,0.000588614000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031593824000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000210936000000,0.000051726000000,0.000349997000000,0.000383972000000,0.000580713000000,0.000583084000000,0.031542071000000,0.000555429000000,0.000056467000000,0.000048566000000,0.000128763000000,0.000087282000000 +0.000019542000000,0.000031577000000,0.000555429000000,0.032070269000000,0.000017566500000,0.000094787000000,0.000022900000000,0.000021319500000,0.000049751000000,0.000210541000000,0.000048961000000,0.000363824000000,0.000331429000000,0.000543972000000,0.000598096000000,0.031623849000000,0.000555825000000,0.000056862000000,0.000048565000000,0.000161949000000,0.000054491000000 +0.000019542500000,0.000031578000000,0.000857651000000,0.031514812000000,0.000017369000000,0.000096763000000,0.000023295500000,0.000021517500000,0.000049751000000,0.000210145000000,0.000050936000000,0.000329455000000,0.000331430000000,0.000592960000000,0.000550294000000,0.031169924000000,0.000623775000000,0.000060022000000,0.000048961000000,0.000127973000000,0.000053702000000 +0.000025863000000,0.000031578000000,0.000623380000000,0.031371010000000,0.000017566500000,0.000142195000000,0.000023295000000,0.000021320000000,0.000049751000000,0.000213702000000,0.000050146000000,0.000330244000000,0.000340911000000,0.000577947000000,0.000594935000000,0.031531405000000,0.000589009000000,0.000090442000000,0.000049355000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000622195000000,0.031807948000000,0.000017369000000,0.000095973000000,0.000023492500000,0.000021517500000,0.000049356000000,0.000231084000000,0.000050146000000,0.000364219000000,0.000331430000000,0.000544763000000,0.000670787000000,0.031306615000000,0.000589010000000,0.000056466000000,0.000050145000000,0.000147726000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.032059997000000,0.000018159000000,0.000096368000000,0.000023097500000,0.000021517500000,0.000068713000000,0.000210936000000,0.000050541000000,0.000329454000000,0.000365405000000,0.000577947000000,0.000562540000000,0.034462761000000,0.000555035000000,0.000056467000000,0.000048565000000,0.000129948000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031610417000000,0.000017369000000,0.000095578000000,0.000023492500000,0.000020727000000,0.000062392000000,0.000211330000000,0.000050541000000,0.000423084000000,0.000331429000000,0.000579133000000,0.000549108000000,0.032841429000000,0.000554640000000,0.000056467000000,0.000049751000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000669602000000,0.031624244000000,0.000017566500000,0.000096368000000,0.000022307500000,0.000021320000000,0.000050541000000,0.000209356000000,0.000050146000000,0.000330244000000,0.000365404000000,0.000544763000000,0.000597306000000,0.032059998000000,0.000590590000000,0.000059232000000,0.000048566000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000604022000000,0.031367850000000,0.000017567000000,0.000097553000000,0.000022702500000,0.000020530000000,0.000048960000000,0.000214886000000,0.000049355000000,0.000349997000000,0.000332219000000,0.000911380000000,0.000548714000000,0.031587504000000,0.000588220000000,0.000056467000000,0.000048566000000,0.000164713000000,0.000054096000000 +0.000019542000000,0.000047381000000,0.000636417000000,0.031583158000000,0.000017369000000,0.000095577000000,0.000023493000000,0.000021320000000,0.000049356000000,0.000210541000000,0.000049356000000,0.000330639000000,0.000331429000000,0.000613108000000,0.000549899000000,0.031847454000000,0.000555430000000,0.000056862000000,0.000048565000000,0.000135874000000,0.000055282000000 +0.000019542000000,0.000033158000000,0.000587824000000,0.031176245000000,0.000017369000000,0.000095182000000,0.000023098000000,0.000020530000000,0.000050936000000,0.000210541000000,0.000050541000000,0.000329849000000,0.000634836000000,0.000578343000000,0.000582689000000,0.032022861000000,0.000620220000000,0.000056072000000,0.000048565000000,0.000199479000000,0.000067133000000 +0.000019542000000,0.000033553000000,0.000553454000000,0.033050021000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000021320000000,0.000048961000000,0.000209750000000,0.000050936000000,0.000363825000000,0.000417553000000,0.000544367000000,0.000549503000000,0.031830861000000,0.000555429000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000056071000000 +0.000019542000000,0.000031578000000,0.000599281000000,0.031157677000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000020332500000,0.000048961000000,0.000215282000000,0.000063973000000,0.000330245000000,0.000331429000000,0.000577948000000,0.000548318000000,0.031167159000000,0.000641948000000,0.000076615000000,0.000048961000000,0.000130344000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.033275601000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020332500000,0.000049355000000,0.000215281000000,0.000052516000000,0.000415183000000,0.000365405000000,0.000578343000000,0.000583873000000,0.031406566000000,0.000589010000000,0.000069899000000,0.000062393000000,0.000161553000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000654194000000,0.031687059000000,0.000017566500000,0.000095578000000,0.000022702500000,0.000020529500000,0.000049751000000,0.000220812000000,0.000050541000000,0.000330244000000,0.000331825000000,0.000544763000000,0.000549504000000,0.031783849000000,0.000594935000000,0.000059232000000,0.000068319000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000572022000000,0.031368244000000,0.000017566500000,0.000095578000000,0.000023295500000,0.000020529500000,0.000083331000000,0.000214492000000,0.000051331000000,0.000329849000000,0.000331034000000,0.000594541000000,0.000549503000000,0.031615948000000,0.000555825000000,0.000056862000000,0.000063183000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000031577000000,0.000553454000000,0.031762121000000,0.000017566500000,0.000129158000000,0.000022307500000,0.000021319500000,0.000050936000000,0.000245306000000,0.000050145000000,0.000331824000000,0.000344862000000,0.000579133000000,0.000595726000000,0.031469380000000,0.000555034000000,0.000056467000000,0.000048961000000,0.000166689000000,0.000055281000000 +0.000019542000000,0.000031973000000,0.000621405000000,0.031665330000000,0.000017567000000,0.000095973000000,0.000022900500000,0.000020332000000,0.000048960000000,0.000215676000000,0.000051331000000,0.000330639000000,0.000331034000000,0.000544763000000,0.000550294000000,0.031374565000000,0.000589405000000,0.000056467000000,0.000048171000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031536541000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000048961000000,0.000212516000000,0.000050146000000,0.000364220000000,0.000372515000000,0.001053997000000,0.000549503000000,0.030977529000000,0.000589010000000,0.000056071000000,0.000048565000000,0.000134689000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000781404000000,0.030908393000000,0.000034554500000,0.000095973000000,0.000022702500000,0.000021320000000,0.000049356000000,0.000215677000000,0.000050541000000,0.000330245000000,0.000331430000000,0.000634442000000,0.000632467000000,0.031045875000000,0.000555429000000,0.000056466000000,0.000048566000000,0.000127182000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000600862000000,0.031533380000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000020529500000,0.000051726000000,0.000210145000000,0.000049751000000,0.000379627000000,0.000378837000000,0.000613504000000,0.000549109000000,0.031083010000000,0.000554640000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000070689000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.032341676000000,0.000017567000000,0.000095578000000,0.000039690000000,0.000020530000000,0.000049355000000,0.000209751000000,0.000069504000000,0.000330245000000,0.000331430000000,0.000544762000000,0.000562541000000,0.030997677000000,0.000600862000000,0.000075825000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553850000000,0.030840047000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000020530000000,0.000048961000000,0.000212516000000,0.000052911000000,0.000330244000000,0.000331430000000,0.000607577000000,0.000582688000000,0.031074319000000,0.000647478000000,0.000056072000000,0.000048565000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000600466000000,0.032501676000000,0.000017567000000,0.000221208000000,0.000023097500000,0.000040085500000,0.000052122000000,0.000253997000000,0.000050541000000,0.000363825000000,0.000365800000000,0.000579133000000,0.000548713000000,0.031542466000000,0.000604417000000,0.000056467000000,0.000063183000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000654590000000,0.031847059000000,0.000017369500000,0.000101504000000,0.000023690000000,0.000020924500000,0.000054097000000,0.000208960000000,0.000050541000000,0.000329850000000,0.000331035000000,0.000545947000000,0.000562540000000,0.030857430000000,0.000555824000000,0.000056072000000,0.000048565000000,0.000129948000000,0.000054491000000 +0.000026455500000,0.000031973000000,0.000587034000000,0.031406960000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000021319500000,0.000063578000000,0.000210145000000,0.000051331000000,0.000364220000000,0.000365010000000,0.000543973000000,0.000583084000000,0.031621874000000,0.000604812000000,0.000056071000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000553849000000,0.031656640000000,0.000017567000000,0.000096368000000,0.000022702500000,0.000020529500000,0.000049355000000,0.000210541000000,0.000051331000000,0.000330244000000,0.000331825000000,0.000578738000000,0.000549899000000,0.031529035000000,0.000588220000000,0.000056862000000,0.000048961000000,0.000220022000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031961232000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000464170000000,0.000051331000000,0.000329850000000,0.000331430000000,0.000543973000000,0.000556614000000,0.031598170000000,0.000588615000000,0.000056467000000,0.000048961000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031329923000000,0.000017567000000,0.000097553000000,0.000023295000000,0.000020529500000,0.000048961000000,0.000227923000000,0.000050541000000,0.000447973000000,0.000331825000000,0.000577948000000,0.000582688000000,0.031076294000000,0.000588219000000,0.000055677000000,0.000048170000000,0.000127182000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031437380000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000021122000000,0.000050145000000,0.000209355000000,0.000050936000000,0.000364220000000,0.000331034000000,0.000579528000000,0.000549503000000,0.031427898000000,0.000555034000000,0.000056467000000,0.000049355000000,0.000164318000000,0.000068318000000 +0.000019344500000,0.000031973000000,0.000553849000000,0.031147010000000,0.000017369500000,0.000095183000000,0.000023295500000,0.000020529500000,0.000048961000000,0.000209750000000,0.000049751000000,0.000330244000000,0.000365010000000,0.000544762000000,0.000551084000000,0.031479651000000,0.000569651000000,0.000076615000000,0.000049356000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031182000000,0.000553059000000,0.031327553000000,0.000017567000000,0.000095578000000,0.000033171500000,0.000020332500000,0.000049356000000,0.000210541000000,0.000070294000000,0.000330639000000,0.000331429000000,0.000620219000000,0.000602837000000,0.031199949000000,0.000618244000000,0.000069899000000,0.000048171000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000648664000000,0.032067503000000,0.000017567000000,0.000095183000000,0.000023295000000,0.000020727500000,0.000049355000000,0.000210146000000,0.000065553000000,0.000398590000000,0.000402936000000,0.000579529000000,0.000549898000000,0.031452787000000,0.000588219000000,0.000056467000000,0.000048171000000,0.000146541000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000589404000000,0.032368935000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000020925000000,0.000049356000000,0.000250442000000,0.000050541000000,0.000330640000000,0.000332220000000,0.000544762000000,0.000549109000000,0.031522714000000,0.000555430000000,0.000056466000000,0.000048171000000,0.000130738000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000587430000000,0.031383652000000,0.000017567000000,0.000095577000000,0.000023492500000,0.000021517500000,0.000082935000000,0.000216072000000,0.000051331000000,0.000380022000000,0.000331825000000,0.000590985000000,0.000682244000000,0.031012294000000,0.000556219000000,0.000056071000000,0.000048565000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031322022000000,0.000017369000000,0.000164319000000,0.000022702500000,0.000021122000000,0.000049356000000,0.000210936000000,0.000050146000000,0.000331430000000,0.000391084000000,0.000578343000000,0.000604022000000,0.031357577000000,0.000705553000000,0.000056467000000,0.000048960000000,0.000129553000000,0.000054492000000 +0.000053714500000,0.000031578000000,0.000552664000000,0.032304935000000,0.000017566500000,0.000095973000000,0.000022110000000,0.000020727000000,0.000049355000000,0.000210540000000,0.000050145000000,0.000369751000000,0.000331430000000,0.000544763000000,0.000548713000000,0.034330415000000,0.000602442000000,0.000056467000000,0.000048961000000,0.000130343000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.032558170000000,0.000017369000000,0.000095973000000,0.000022702500000,0.000020727000000,0.000049356000000,0.000265850000000,0.000050145000000,0.000346442000000,0.000365800000000,0.000690145000000,0.000627330000000,0.031841133000000,0.000623775000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000053307000000 +0.000019542000000,0.000031183000000,0.000594935000000,0.031698911000000,0.000017566500000,0.000095578000000,0.000022307500000,0.000021122500000,0.000049356000000,0.000209750000000,0.000049751000000,0.000330639000000,0.000331430000000,0.000918490000000,0.000583084000000,0.031364294000000,0.000555035000000,0.000056072000000,0.000049356000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000555035000000,0.031823355000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000020332500000,0.000049751000000,0.000211331000000,0.000050541000000,0.000361455000000,0.000401355000000,0.000582689000000,0.000548714000000,0.031463850000000,0.000555034000000,0.000079775000000,0.000048170000000,0.000167874000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031777923000000,0.000017369000000,0.000095578000000,0.000023492500000,0.000020925000000,0.000049356000000,0.000231874000000,0.000050541000000,0.000329849000000,0.000364219000000,0.000615083000000,0.000617454000000,0.031192838000000,0.000640763000000,0.000056466000000,0.000048171000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000045405000000,0.000637602000000,0.031004788000000,0.000017566500000,0.000095578000000,0.000022307500000,0.000020530000000,0.000048960000000,0.000211330000000,0.000051331000000,0.000406096000000,0.000346442000000,0.000543973000000,0.000596121000000,0.031858516000000,0.000588614000000,0.000057257000000,0.000050146000000,0.000127577000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000666837000000,0.033418218000000,0.000027640500000,0.000095578000000,0.000023493000000,0.000020332000000,0.000049751000000,0.000208566000000,0.000050541000000,0.000330245000000,0.000331430000000,0.000614293000000,0.000548713000000,0.031511257000000,0.000639578000000,0.000056467000000,0.000048566000000,0.000150491000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000587035000000,0.030729430000000,0.000017567000000,0.000095973000000,0.000022702500000,0.000020727000000,0.000049356000000,0.000209355000000,0.000049751000000,0.000365010000000,0.000331034000000,0.000630096000000,0.000617454000000,0.031292787000000,0.000555824000000,0.000056072000000,0.000061998000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.032292688000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000031196000000,0.000084121000000,0.000282442000000,0.000050146000000,0.000330640000000,0.000365404000000,0.000543972000000,0.000583083000000,0.031679157000000,0.000555429000000,0.000057257000000,0.000048566000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000573997000000,0.030923405000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000027443500000,0.000067923000000,0.000211331000000,0.000051726000000,0.000330639000000,0.000331429000000,0.000579528000000,0.000550293000000,0.031414862000000,0.000988022000000,0.000056467000000,0.000049355000000,0.000130344000000,0.000054096000000 +0.000029221000000,0.000031578000000,0.000568072000000,0.030363209000000,0.000018554500000,0.000095973000000,0.000023493000000,0.000020530000000,0.000077010000000,0.000210146000000,0.000050541000000,0.000413997000000,0.000365010000000,0.000758491000000,0.000991577000000,0.031261578000000,0.000555824000000,0.000059232000000,0.000048960000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000032368000000,0.000603627000000,0.030088641000000,0.000017567000000,0.000095578000000,0.000023690000000,0.000021517500000,0.000049355000000,0.000209750000000,0.000052121000000,0.000330245000000,0.000331825000000,0.000673948000000,0.000582688000000,0.031075109000000,0.000589010000000,0.000056862000000,0.000048961000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030347010000000,0.000017567000000,0.000165109000000,0.000023492500000,0.000021122500000,0.000049356000000,0.000244911000000,0.000050541000000,0.000363825000000,0.000331429000000,0.000544368000000,0.000582294000000,0.031590269000000,0.000652219000000,0.000056862000000,0.000048566000000,0.000126788000000,0.000073455000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030798961000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000021320000000,0.000048960000000,0.000208566000000,0.000050936000000,0.000329849000000,0.000365800000000,0.000558590000000,0.000549108000000,0.031000047000000,0.000589404000000,0.000101504000000,0.000048566000000,0.000161554000000,0.000055281000000 +0.000019542500000,0.000031578000000,0.000553850000000,0.030806863000000,0.000017962000000,0.000095973000000,0.000023295500000,0.000020530000000,0.000049356000000,0.000210541000000,0.000052121000000,0.000385948000000,0.000332615000000,0.000614688000000,0.000582688000000,0.031271849000000,0.000555035000000,0.000056467000000,0.000048565000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000587824000000,0.030404690000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000022110000000,0.000049356000000,0.000252418000000,0.000151677000000,0.000329850000000,0.000365010000000,0.000543972000000,0.000598886000000,0.031133973000000,0.000555429000000,0.000056467000000,0.000048566000000,0.000152466000000,0.000053701000000 +0.000019542000000,0.000070689000000,0.000588220000000,0.030426418000000,0.000017566500000,0.000124023000000,0.000052134500000,0.000020530000000,0.000049750000000,0.000211726000000,0.000072664000000,0.000329849000000,0.000331034000000,0.000568466000000,0.000548713000000,0.031047455000000,0.000624170000000,0.000056467000000,0.000049751000000,0.000180121000000,0.000053702000000 +0.000020530000000,0.000031578000000,0.000553059000000,0.029856740000000,0.000017369000000,0.000095577000000,0.000023098000000,0.000020332000000,0.000062393000000,0.000211331000000,0.000053306000000,0.000365800000000,0.000331034000000,0.000591775000000,0.000590194000000,0.031048244000000,0.000589010000000,0.000056467000000,0.000082146000000,0.000127973000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000553849000000,0.030635801000000,0.000024283000000,0.000129948000000,0.000023295000000,0.000021517000000,0.000049751000000,0.000212516000000,0.000054096000000,0.000330244000000,0.000331430000000,0.000544368000000,0.000581898000000,0.031362318000000,0.000575577000000,0.000056072000000,0.000048961000000,0.000127182000000,0.000054096000000 +0.000019542500000,0.000031182000000,0.000637997000000,0.030313036000000,0.000017567000000,0.000095577000000,0.000022900000000,0.000061813500000,0.000049356000000,0.000246886000000,0.000050936000000,0.000380812000000,0.000333800000000,0.000613109000000,0.000548318000000,0.030706121000000,0.000555430000000,0.000056466000000,0.000048961000000,0.000199084000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000589404000000,0.030183850000000,0.000017566500000,0.000095183000000,0.000022307500000,0.000020727000000,0.000048960000000,0.000215281000000,0.000050146000000,0.000331034000000,0.000586244000000,0.000659331000000,0.000582689000000,0.031246170000000,0.000625751000000,0.000056071000000,0.000048565000000,0.000126788000000,0.000053701000000 +0.000029419000000,0.000031578000000,0.000594935000000,0.031030072000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000020727500000,0.000049751000000,0.000213306000000,0.000050936000000,0.000349997000000,0.000331429000000,0.000543973000000,0.000583084000000,0.031658220000000,0.000589405000000,0.000056862000000,0.000048566000000,0.000126788000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000605207000000,0.030211110000000,0.000017566500000,0.000096763000000,0.000029616000000,0.000021517500000,0.000049355000000,0.000210541000000,0.000064763000000,0.000329849000000,0.000365404000000,0.000544367000000,0.000548713000000,0.031263948000000,0.000605207000000,0.000056861000000,0.000048566000000,0.000160763000000,0.000087677000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.030518073000000,0.000017566500000,0.000095973000000,0.000032776500000,0.000020529500000,0.000050936000000,0.000295874000000,0.000052516000000,0.000329455000000,0.000331824000000,0.000613898000000,0.000598491000000,0.030996887000000,0.000555429000000,0.000056466000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030297628000000,0.000017369000000,0.000095578000000,0.000030406500000,0.000020727500000,0.000049355000000,0.000216467000000,0.000050936000000,0.000399380000000,0.000400565000000,0.000577553000000,0.000617454000000,0.032272145000000,0.000555825000000,0.000056467000000,0.000049750000000,0.000126788000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000603627000000,0.030149480000000,0.000017369500000,0.000127578000000,0.000022900000000,0.000021517500000,0.000048961000000,0.000212912000000,0.000050541000000,0.000329850000000,0.000331430000000,0.000544367000000,0.000549503000000,0.031254072000000,0.000589405000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000592170000000,0.030518468000000,0.000018554000000,0.000097948000000,0.000022702500000,0.000020332500000,0.000067923000000,0.000246491000000,0.000049751000000,0.000364220000000,0.000351578000000,0.000577553000000,0.000582688000000,0.032804292000000,0.000589799000000,0.000056072000000,0.000049356000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000045405000000,0.001082441000000,0.030528344000000,0.000018159500000,0.000095578000000,0.000022307500000,0.000031196500000,0.000049356000000,0.000210541000000,0.000049751000000,0.000330245000000,0.000331825000000,0.000544368000000,0.000581899000000,0.031253677000000,0.000648269000000,0.000056072000000,0.000082146000000,0.000127183000000,0.000054097000000 +0.000019542500000,0.000031578000000,0.000641158000000,0.030478566000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000022505000000,0.000051331000000,0.000210145000000,0.000049751000000,0.000330639000000,0.000330639000000,0.000558590000000,0.000548714000000,0.031554319000000,0.000620614000000,0.000056072000000,0.000048171000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000646294000000,0.030463949000000,0.000078011500000,0.000095578000000,0.000022702500000,0.000021320000000,0.000049356000000,0.000211331000000,0.000050146000000,0.000725701000000,0.000400170000000,0.000628911000000,0.000582294000000,0.031145035000000,0.000555034000000,0.000056466000000,0.000048960000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000621800000000,0.030611306000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000020332500000,0.000049356000000,0.000261899000000,0.000051726000000,0.000364220000000,0.000331430000000,0.000578343000000,0.000641157000000,0.031245381000000,0.000555429000000,0.000056466000000,0.000048565000000,0.000130344000000,0.000053701000000 +0.000019344500000,0.000031577000000,0.000553059000000,0.031153726000000,0.000017369500000,0.000129553000000,0.000023097500000,0.000021320000000,0.000049356000000,0.000209355000000,0.000050146000000,0.000380417000000,0.000365010000000,0.000545948000000,0.000549108000000,0.031939109000000,0.000596516000000,0.000117702000000,0.000048171000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031804392000000,0.000018159500000,0.000095182000000,0.000023097500000,0.000021517500000,0.000048960000000,0.000209751000000,0.000119282000000,0.000363430000000,0.000331430000000,0.000629701000000,0.000582689000000,0.032944145000000,0.000589010000000,0.000056072000000,0.000049356000000,0.000176961000000,0.000090047000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031204294000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000211331000000,0.000050541000000,0.000329849000000,0.000331430000000,0.000577553000000,0.000617849000000,0.032008639000000,0.000555824000000,0.000056072000000,0.000048170000000,0.000129948000000,0.000053702000000 +0.000019344500000,0.000033158000000,0.000638393000000,0.030051504000000,0.000017567000000,0.000095183000000,0.000023493000000,0.000021320000000,0.000048960000000,0.000222787000000,0.000050146000000,0.000333404000000,0.000331824000000,0.000543577000000,0.000549503000000,0.031739207000000,0.000556220000000,0.000056467000000,0.000048960000000,0.000128763000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.030563109000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021715000000,0.000050541000000,0.000210936000000,0.000050936000000,0.000329849000000,0.000353157000000,0.000577948000000,0.000582293000000,0.030793825000000,0.000588614000000,0.000059627000000,0.000049356000000,0.000127578000000,0.000054887000000 +0.000019739500000,0.000031578000000,0.000553454000000,0.030551653000000,0.000018159500000,0.000095578000000,0.000023295000000,0.000020332000000,0.000084121000000,0.000208170000000,0.000050145000000,0.000329849000000,0.000365010000000,0.000583479000000,0.000583084000000,0.031282911000000,0.000587825000000,0.000056467000000,0.000049751000000,0.000128763000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030266418000000,0.000017369500000,0.000095577000000,0.000022702500000,0.000021715000000,0.000049356000000,0.000261109000000,0.000049355000000,0.000363825000000,0.000332615000000,0.000638788000000,0.000551084000000,0.031462270000000,0.000589405000000,0.000057257000000,0.000082541000000,0.000126393000000,0.000054096000000 +0.000019542500000,0.000065554000000,0.000587429000000,0.031717479000000,0.000017369500000,0.000209751000000,0.000022703000000,0.000020924500000,0.000048960000000,0.000212121000000,0.000050541000000,0.000329849000000,0.000413603000000,0.000545553000000,0.000582688000000,0.030942368000000,0.000555429000000,0.000056467000000,0.000134294000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000629701000000,0.031856146000000,0.000024678000000,0.000198294000000,0.000023295000000,0.000031196000000,0.000049751000000,0.000245306000000,0.000050146000000,0.000370540000000,0.000331430000000,0.000578738000000,0.000698442000000,0.031163602000000,0.000556220000000,0.000056467000000,0.000065949000000,0.000129948000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000621799000000,0.031782269000000,0.000017567000000,0.000110985000000,0.000023492500000,0.000021517500000,0.000049356000000,0.000208961000000,0.000050146000000,0.000330244000000,0.000365010000000,0.000641158000000,0.000562935000000,0.031575651000000,0.000623379000000,0.000090837000000,0.000064368000000,0.000127973000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031148195000000,0.000017369500000,0.000095577000000,0.000023097500000,0.000020529500000,0.000048960000000,0.000541208000000,0.000051331000000,0.000330244000000,0.000332615000000,0.000545158000000,0.000548714000000,0.031662170000000,0.000604022000000,0.000056467000000,0.000048170000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.001133405000000,0.030650022000000,0.000017764500000,0.000095578000000,0.000022505000000,0.000020529500000,0.000048961000000,0.000228319000000,0.000064368000000,0.000399381000000,0.000331430000000,0.000578738000000,0.000582689000000,0.031222467000000,0.000557405000000,0.000059232000000,0.000048171000000,0.000161158000000,0.000105850000000 +0.000019542000000,0.000032763000000,0.000589800000000,0.030486863000000,0.000017369500000,0.000095578000000,0.000023098000000,0.000020332000000,0.000049355000000,0.000244911000000,0.000050541000000,0.000331034000000,0.000415577000000,0.000578343000000,0.000549503000000,0.031336245000000,0.000556219000000,0.000056861000000,0.000048170000000,0.000129553000000,0.000058047000000 +0.000045221000000,0.000031577000000,0.000552664000000,0.030520443000000,0.000017567000000,0.000096368000000,0.000022702500000,0.000020332500000,0.000049356000000,0.000214886000000,0.000050936000000,0.000404121000000,0.000331429000000,0.000544367000000,0.000562540000000,0.031266713000000,0.000653799000000,0.000056861000000,0.000048170000000,0.000127183000000,0.000054097000000 +0.000060628000000,0.000031578000000,0.000567676000000,0.031333874000000,0.000018159500000,0.000095578000000,0.000023295000000,0.000020727500000,0.000049356000000,0.000211331000000,0.000050936000000,0.000329849000000,0.000365405000000,0.000578738000000,0.000583479000000,0.031827700000000,0.000604022000000,0.000056467000000,0.000082936000000,0.000126788000000,0.000054886000000 +0.000027245500000,0.000032368000000,0.000587034000000,0.030113924000000,0.000017566500000,0.000095578000000,0.000023690000000,0.000021320000000,0.000063973000000,0.000211726000000,0.000050146000000,0.000363824000000,0.000331430000000,0.000544762000000,0.000549108000000,0.032228293000000,0.000590195000000,0.000056072000000,0.000048171000000,0.000129949000000,0.000054097000000 +0.000026653000000,0.000031578000000,0.000587824000000,0.031034813000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021517500000,0.000048961000000,0.000210145000000,0.000049750000000,0.000329849000000,0.000331430000000,0.000544762000000,0.000582688000000,0.031702466000000,0.000555429000000,0.000056467000000,0.000048961000000,0.000129948000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000566886000000,0.031337429000000,0.000017567000000,0.000096763000000,0.000022702500000,0.000020530000000,0.000048960000000,0.000210541000000,0.000051726000000,0.000330245000000,0.000651034000000,0.000578738000000,0.000583084000000,0.031465825000000,0.000554640000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000051726000000,0.000587035000000,0.030210714000000,0.000017567000000,0.000129949000000,0.000022702500000,0.000020332500000,0.000049356000000,0.000210936000000,0.000050936000000,0.000377256000000,0.000372121000000,0.000545553000000,0.000549108000000,0.031730911000000,0.000589010000000,0.000056467000000,0.000048960000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000588614000000,0.030405480000000,0.000018159500000,0.000096368000000,0.000023097500000,0.000049962000000,0.000049355000000,0.000213306000000,0.000052912000000,0.000330244000000,0.000331429000000,0.000543578000000,0.000588220000000,0.031749083000000,0.000595726000000,0.000112565000000,0.000048566000000,0.000126788000000,0.000100319000000 +0.000042850500000,0.000031578000000,0.000591380000000,0.030411801000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000027048000000,0.000049356000000,0.000209356000000,0.000050145000000,0.000399776000000,0.000365404000000,0.000611923000000,0.000583084000000,0.031583553000000,0.000589009000000,0.000161948000000,0.000049751000000,0.000130344000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.030051900000000,0.000017369000000,0.000095578000000,0.000029814000000,0.000021517000000,0.000049356000000,0.000210146000000,0.000109010000000,0.000330244000000,0.000331824000000,0.000543578000000,0.000549109000000,0.031978615000000,0.000554639000000,0.000092022000000,0.000048565000000,0.000160368000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.030768541000000,0.000017566500000,0.000095578000000,0.000023493000000,0.000021319500000,0.000049750000000,0.000211725000000,0.000050541000000,0.000350392000000,0.000331429000000,0.000544762000000,0.000598491000000,0.031227207000000,0.000685404000000,0.000072269000000,0.000048960000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.030407850000000,0.000017566500000,0.000095973000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000212121000000,0.000050146000000,0.000330639000000,0.000331034000000,0.000577948000000,0.000673948000000,0.031512047000000,0.000607183000000,0.000056467000000,0.000048961000000,0.000128763000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030328838000000,0.000017566500000,0.000097553000000,0.000022900000000,0.000020529500000,0.000052516000000,0.000210541000000,0.000054096000000,0.000330245000000,0.000331429000000,0.000543182000000,0.000548713000000,0.031881034000000,0.000624565000000,0.000056862000000,0.000049356000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000051726000000,0.000587429000000,0.030675702000000,0.000017369000000,0.000109405000000,0.000022703000000,0.000020332000000,0.000104664000000,0.000213306000000,0.000050146000000,0.000365010000000,0.000382392000000,0.000579133000000,0.000549109000000,0.031564195000000,0.000605208000000,0.000090047000000,0.000048566000000,0.000362639000000,0.000054886000000 +0.000019542000000,0.000045010000000,0.000595330000000,0.031070763000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000020332500000,0.000061207000000,0.000210146000000,0.000050936000000,0.000329849000000,0.000331035000000,0.000590984000000,0.000617059000000,0.033373577000000,0.000557010000000,0.000056467000000,0.000048961000000,0.000387528000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000586244000000,0.030121036000000,0.000017369500000,0.000095578000000,0.000023887500000,0.000020530000000,0.000048961000000,0.000210540000000,0.000050541000000,0.000363825000000,0.000365405000000,0.000543578000000,0.000549504000000,0.032303355000000,0.000555035000000,0.000056862000000,0.000048960000000,0.000153652000000,0.000054886000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.030328443000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000021320000000,0.000050541000000,0.000210541000000,0.000050540000000,0.000330245000000,0.000331430000000,0.000577948000000,0.000550294000000,0.031408936000000,0.000589800000000,0.000056467000000,0.000048170000000,0.000174985000000,0.000054096000000 +0.000019542000000,0.000080961000000,0.000589010000000,0.030934862000000,0.000017567000000,0.000095578000000,0.000022702500000,0.000031196500000,0.000048961000000,0.000211331000000,0.000050541000000,0.000329849000000,0.000331430000000,0.000671183000000,0.000600862000000,0.031356788000000,0.000640368000000,0.000056467000000,0.000048566000000,0.000138639000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000619429000000,0.030320146000000,0.000017567000000,0.000096368000000,0.000023295500000,0.000021714500000,0.000048960000000,0.000213701000000,0.000070294000000,0.000363430000000,0.000366590000000,0.000544763000000,0.000549108000000,0.032140195000000,0.000589405000000,0.000056467000000,0.000048170000000,0.000141800000000,0.000054492000000 +0.000036332000000,0.000031578000000,0.000739923000000,0.030495554000000,0.000034357000000,0.000115331000000,0.000053912500000,0.000020529500000,0.000048961000000,0.000210541000000,0.000050936000000,0.000364220000000,0.000331430000000,0.000544762000000,0.000548713000000,0.031686269000000,0.000570837000000,0.000056466000000,0.000048565000000,0.000174590000000,0.000054096000000 +0.000020332000000,0.000031577000000,0.000553454000000,0.030427208000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000049751000000,0.000208170000000,0.000050146000000,0.000376467000000,0.000365800000000,0.000577553000000,0.000632861000000,0.034382168000000,0.000584664000000,0.000056467000000,0.000048961000000,0.000138640000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000554244000000,0.030214665000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000021320000000,0.000082936000000,0.000208565000000,0.000050936000000,0.000330245000000,0.000331430000000,0.000543972000000,0.000582689000000,0.032000343000000,0.000588220000000,0.000056072000000,0.000048961000000,0.000139824000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.032944539000000,0.000017566500000,0.000095972000000,0.000023492500000,0.000021517000000,0.000049356000000,0.000212516000000,0.000050936000000,0.000365405000000,0.000349998000000,0.000578343000000,0.000549108000000,0.031673627000000,0.000642738000000,0.000075035000000,0.000049356000000,0.000169060000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000744269000000,0.030427208000000,0.000017567000000,0.000095973000000,0.000022900000000,0.000020332000000,0.000050936000000,0.000211331000000,0.000049751000000,0.000330244000000,0.000383183000000,0.000680268000000,0.000632861000000,0.031326368000000,0.000588614000000,0.000056467000000,0.000048961000000,0.000134688000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.030608541000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020529500000,0.000048961000000,0.000212121000000,0.000050936000000,0.000329849000000,0.000331035000000,0.000543973000000,0.000583479000000,0.031685874000000,0.000555429000000,0.000059627000000,0.000048961000000,0.000135084000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000554244000000,0.030604591000000,0.000018159500000,0.000096368000000,0.000023295000000,0.000020332500000,0.000049751000000,0.000212516000000,0.000050541000000,0.000405306000000,0.000365405000000,0.000545553000000,0.000549108000000,0.031974663000000,0.000730836000000,0.000056467000000,0.000049356000000,0.000177356000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030756690000000,0.000017567000000,0.000162739000000,0.000022900000000,0.000021122500000,0.000051331000000,0.000219232000000,0.000049355000000,0.000330244000000,0.000331825000000,0.000612714000000,0.000647083000000,0.031963207000000,0.000622985000000,0.000056862000000,0.000050146000000,0.000134689000000,0.000073849000000 +0.000019542000000,0.000031578000000,0.000653405000000,0.030288936000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020332500000,0.000052516000000,0.000210541000000,0.000050146000000,0.000363430000000,0.000415973000000,0.000544763000000,0.000582294000000,0.031024541000000,0.000589800000000,0.000056072000000,0.000048170000000,0.000134689000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000600071000000,0.033482613000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000037517500000,0.000049355000000,0.000210541000000,0.000071874000000,0.000330245000000,0.000334985000000,0.000557799000000,0.000549108000000,0.031435405000000,0.000588614000000,0.000056467000000,0.000048171000000,0.000143380000000,0.000056072000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.032373281000000,0.000017369500000,0.000095972000000,0.000030406500000,0.000020727500000,0.000054887000000,0.000212911000000,0.000064763000000,0.000364220000000,0.000365010000000,0.000613108000000,0.000627726000000,0.031958071000000,0.000555824000000,0.000056862000000,0.000067924000000,0.000135084000000,0.000054096000000 +0.000046999000000,0.000031973000000,0.000552664000000,0.030766961000000,0.000017369500000,0.000095578000000,0.000022307000000,0.000021715000000,0.000049751000000,0.000212121000000,0.000052517000000,0.000329849000000,0.000330639000000,0.000545553000000,0.000617849000000,0.031182171000000,0.000555429000000,0.000056467000000,0.000051726000000,0.000135874000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000568861000000,0.030650023000000,0.000034554500000,0.000096368000000,0.000022505000000,0.000020925000000,0.000062393000000,0.000210936000000,0.000050936000000,0.000329849000000,0.000331430000000,0.000543972000000,0.000549504000000,0.032763206000000,0.000589010000000,0.000059627000000,0.000065948000000,0.000135084000000,0.000073454000000 +0.000019542000000,0.000031578000000,0.000622985000000,0.030761825000000,0.000018554500000,0.000115331000000,0.000022702500000,0.000020530000000,0.000049356000000,0.000208960000000,0.000050145000000,0.000509602000000,0.000400960000000,0.000615874000000,0.000636417000000,0.031909873000000,0.000641948000000,0.000071084000000,0.000095183000000,0.000331825000000,0.000068713000000 +0.000019542000000,0.000031578000000,0.000594541000000,0.029984344000000,0.000018357000000,0.000095578000000,0.000022110000000,0.000020332000000,0.000048960000000,0.000210936000000,0.000050541000000,0.000329849000000,0.000331429000000,0.000543578000000,0.000583479000000,0.031343751000000,0.000556219000000,0.000056467000000,0.000048961000000,0.000135084000000,0.000053702000000 +0.000019542000000,0.000032368000000,0.000553849000000,0.030855850000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020529500000,0.000048961000000,0.000264664000000,0.000050541000000,0.000364220000000,0.000365800000000,0.000544367000000,0.000549898000000,0.031596590000000,0.000554640000000,0.000056467000000,0.000048960000000,0.000135479000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000553849000000,0.030128937000000,0.000017567000000,0.000095578000000,0.000023493000000,0.000020332000000,0.000049750000000,0.000211726000000,0.000050146000000,0.000330639000000,0.000331035000000,0.000613898000000,0.000971824000000,0.031586318000000,0.000589405000000,0.000056862000000,0.000049750000000,0.000135084000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000622984000000,0.030554418000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021517000000,0.000050146000000,0.000210146000000,0.000050936000000,0.000364614000000,0.000331430000000,0.000543972000000,0.000562936000000,0.032240145000000,0.000604416000000,0.000056467000000,0.000048566000000,0.000137455000000,0.000055281000000 +0.000019542000000,0.000031577000000,0.000602837000000,0.030686369000000,0.000017566500000,0.000095973000000,0.000023097500000,0.000021517000000,0.000049750000000,0.000212516000000,0.000050936000000,0.000329849000000,0.000331430000000,0.000543973000000,0.000583479000000,0.031845083000000,0.000613108000000,0.000056467000000,0.000050541000000,0.000134293000000,0.000054492000000 +0.000020530000000,0.000031578000000,0.000587429000000,0.030545727000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000021517500000,0.000049751000000,0.000210145000000,0.000103874000000,0.000330245000000,0.000331035000000,0.000683034000000,0.000549108000000,0.031879059000000,0.000555825000000,0.000056466000000,0.000048961000000,0.000140615000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031481232000000,0.000017566500000,0.000165899000000,0.000039295000000,0.000068332000000,0.000048961000000,0.000210146000000,0.000069899000000,0.000364219000000,0.000366590000000,0.000585454000000,0.000616664000000,0.031256837000000,0.000555429000000,0.000056466000000,0.000049751000000,0.000135479000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030433134000000,0.000017566500000,0.000109800000000,0.000023690000000,0.000046603500000,0.000049355000000,0.000214491000000,0.000052121000000,0.000329849000000,0.000331825000000,0.000544367000000,0.000590194000000,0.031876688000000,0.000601257000000,0.000056862000000,0.000048565000000,0.000134689000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.030246270000000,0.000025665500000,0.000095183000000,0.000022702500000,0.000035542000000,0.000063578000000,0.000212121000000,0.000050541000000,0.000379627000000,0.000389899000000,0.000577948000000,0.000549109000000,0.031692590000000,0.000588219000000,0.000076615000000,0.000048170000000,0.000135084000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.030989381000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000028036000000,0.000049750000000,0.000212121000000,0.000050541000000,0.000330244000000,0.000331035000000,0.000577948000000,0.000562935000000,0.031624639000000,0.000555825000000,0.000076219000000,0.000081751000000,0.000139035000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030735751000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000020530000000,0.000049356000000,0.000210146000000,0.000050935000000,0.000350788000000,0.000331824000000,0.000544367000000,0.000617059000000,0.031591059000000,0.000555429000000,0.000070689000000,0.000048961000000,0.000138639000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000590590000000,0.030757480000000,0.000017567000000,0.000095182000000,0.000022307500000,0.000021320000000,0.000048565000000,0.000209750000000,0.000051726000000,0.000330639000000,0.000380417000000,0.000591775000000,0.000549503000000,0.031732491000000,0.000589010000000,0.000056467000000,0.000048961000000,0.000137455000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000604417000000,0.030295258000000,0.000017567000000,0.000116911000000,0.000022505000000,0.000022110000000,0.000050541000000,0.000242541000000,0.000049750000000,0.000330244000000,0.000331825000000,0.000577948000000,0.000578738000000,0.031851800000000,0.000596911000000,0.000056072000000,0.000050146000000,0.000134688000000,0.000073455000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030491603000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020925000000,0.000049356000000,0.000212516000000,0.000049751000000,0.000364220000000,0.000365010000000,0.000543972000000,0.000582688000000,0.031917380000000,0.000589010000000,0.000056467000000,0.000048961000000,0.000136269000000,0.000054096000000 +0.000019937000000,0.000031578000000,0.000586244000000,0.030045579000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000035937500000,0.000049355000000,0.000210936000000,0.000050541000000,0.000330244000000,0.000331035000000,0.000614293000000,0.000549109000000,0.032905429000000,0.000555034000000,0.000056467000000,0.000049356000000,0.000135874000000,0.000054492000000 +0.000019542500000,0.000031973000000,0.000553849000000,0.030325677000000,0.000017369500000,0.000095973000000,0.000023295000000,0.000021517500000,0.000048961000000,0.000212121000000,0.000050936000000,0.000363824000000,0.000402146000000,0.000577948000000,0.000580318000000,0.031718269000000,0.000554639000000,0.000056466000000,0.000048565000000,0.000134689000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000688960000000,0.030803702000000,0.000017567000000,0.000095578000000,0.000033369500000,0.000021320000000,0.000048961000000,0.000212911000000,0.000050936000000,0.000331430000000,0.000332615000000,0.000544762000000,0.000586244000000,0.031583553000000,0.000589009000000,0.000056467000000,0.000049356000000,0.000136270000000,0.000054887000000 +0.000019344500000,0.000072269000000,0.000587034000000,0.030382171000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020530000000,0.000063578000000,0.000212121000000,0.000049751000000,0.000330640000000,0.000331430000000,0.000578343000000,0.000549504000000,0.031739207000000,0.000689355000000,0.000076220000000,0.000048961000000,0.000136269000000,0.000053306000000 +0.000019542000000,0.000031973000000,0.000639972000000,0.030412196000000,0.000017369500000,0.000095578000000,0.000023098000000,0.000020925000000,0.000050146000000,0.000210936000000,0.000050540000000,0.000405701000000,0.000555429000000,0.000544762000000,0.000549898000000,0.033691601000000,0.000592170000000,0.000056466000000,0.000048961000000,0.000137454000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000581109000000,0.030286172000000,0.000026850500000,0.000129553000000,0.000023295000000,0.000020529500000,0.000049751000000,0.000212911000000,0.000050936000000,0.000330639000000,0.000331825000000,0.000544763000000,0.000634442000000,0.032165873000000,0.000555034000000,0.000056467000000,0.000101899000000,0.000134689000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030206369000000,0.000017566500000,0.000095578000000,0.000022505000000,0.000021319500000,0.000049356000000,0.000212516000000,0.000050146000000,0.000363824000000,0.000350788000000,0.000630491000000,0.000549898000000,0.031631355000000,0.000570046000000,0.000056072000000,0.000049356000000,0.000170639000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000622194000000,0.031960046000000,0.000018159500000,0.000095577000000,0.000023492500000,0.000020727000000,0.000048960000000,0.000210146000000,0.000050541000000,0.000329849000000,0.000346047000000,0.000563726000000,0.000548713000000,0.031176640000000,0.000687379000000,0.000056072000000,0.000048565000000,0.000137455000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000606392000000,0.030901282000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021319500000,0.000049356000000,0.000210145000000,0.000051726000000,0.000410442000000,0.000366985000000,0.000543578000000,0.000582294000000,0.031308985000000,0.000624565000000,0.000056467000000,0.000048565000000,0.000135874000000,0.000101108000000 +0.000019344500000,0.000031578000000,0.000820121000000,0.030715603000000,0.000017567000000,0.000096763000000,0.000022505000000,0.000020529500000,0.000050541000000,0.000211726000000,0.000050936000000,0.000364220000000,0.000331825000000,0.000676713000000,0.000550294000000,0.031748293000000,0.000590985000000,0.000058837000000,0.000048961000000,0.000135084000000,0.000054887000000 +0.000019542500000,0.000031183000000,0.000616269000000,0.030659109000000,0.000017567000000,0.000095577000000,0.000023492500000,0.000039690000000,0.000049751000000,0.000210936000000,0.000084911000000,0.000397010000000,0.000365800000000,0.000591380000000,0.000564121000000,0.031534961000000,0.000555824000000,0.000056467000000,0.000048171000000,0.000138245000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030554418000000,0.000017567000000,0.000146146000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000212516000000,0.000050541000000,0.000426244000000,0.000331824000000,0.000544367000000,0.000602442000000,0.031046664000000,0.000555825000000,0.000056467000000,0.000049356000000,0.000134689000000,0.000054097000000 +0.000019542500000,0.000031973000000,0.000553059000000,0.029921134000000,0.000017567000000,0.000095578000000,0.000022900000000,0.000022110000000,0.000050540000000,0.000210936000000,0.000050146000000,0.000472467000000,0.000331035000000,0.000591775000000,0.000549898000000,0.031653084000000,0.000626541000000,0.000056466000000,0.000048170000000,0.000139824000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032469281000000,0.000017369500000,0.000095183000000,0.000023493000000,0.000020332000000,0.000049356000000,0.000214096000000,0.000050146000000,0.000329849000000,0.000346047000000,0.000593355000000,0.000563726000000,0.031604886000000,0.000624170000000,0.000105454000000,0.000048566000000,0.000134689000000,0.000054492000000 +0.000019542000000,0.000066343000000,0.000662096000000,0.032378021000000,0.000017369500000,0.000095182000000,0.000023493000000,0.000021122000000,0.000049751000000,0.000210541000000,0.000050541000000,0.000349602000000,0.000331430000000,0.000545157000000,0.000883726000000,0.031632145000000,0.000601256000000,0.000057257000000,0.000049356000000,0.000137454000000,0.000053702000000 +0.000019542000000,0.000097948000000,0.000587034000000,0.031038763000000,0.000017369500000,0.000095183000000,0.000023097500000,0.000021319500000,0.000048961000000,0.000211725000000,0.000052516000000,0.000330244000000,0.000365405000000,0.000605602000000,0.000590194000000,0.031525084000000,0.000554639000000,0.000056467000000,0.000083726000000,0.000135084000000,0.000054491000000 +0.000019542000000,0.000065948000000,0.000587034000000,0.030665825000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000020529500000,0.000049751000000,0.000211331000000,0.000050541000000,0.000329849000000,0.000331430000000,0.000667627000000,0.000548714000000,0.031698516000000,0.000571231000000,0.000059627000000,0.000048961000000,0.000135479000000,0.000054887000000 +0.000019542000000,0.000033158000000,0.000553059000000,0.030763405000000,0.000017567000000,0.000095577000000,0.000023295000000,0.000021320000000,0.000049356000000,0.000212516000000,0.000050936000000,0.000398590000000,0.000365800000000,0.000545158000000,0.000550293000000,0.032010614000000,0.000596911000000,0.000056862000000,0.000049356000000,0.000135084000000,0.000056071000000 +0.000019542000000,0.000031182000000,0.000553059000000,0.029920344000000,0.000017567000000,0.000109010000000,0.000023295500000,0.000021517500000,0.000051331000000,0.000209751000000,0.000050936000000,0.000331034000000,0.000331824000000,0.000778244000000,0.000597701000000,0.031856541000000,0.000688170000000,0.000056467000000,0.000048566000000,0.000135479000000,0.000070689000000 +0.000019344500000,0.000031183000000,0.000622985000000,0.030823850000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000021517500000,0.000049355000000,0.000210540000000,0.000050936000000,0.000374096000000,0.000331824000000,0.000577948000000,0.000549898000000,0.031308195000000,0.000588614000000,0.000056467000000,0.000067923000000,0.000135084000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000588219000000,0.030365184000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000030604000000,0.000048961000000,0.000210146000000,0.000104664000000,0.000330244000000,0.000365800000000,0.000543972000000,0.000548319000000,0.031282517000000,0.000554639000000,0.000056467000000,0.000052121000000,0.000142590000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030103258000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000027641000000,0.000048961000000,0.000210146000000,0.000064368000000,0.000329850000000,0.000331429000000,0.000545158000000,0.000582294000000,0.031149380000000,0.000587035000000,0.000055677000000,0.000048170000000,0.000134688000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.030810023000000,0.000017369500000,0.000095973000000,0.000022702500000,0.000021517500000,0.000071084000000,0.000214886000000,0.000049356000000,0.000344466000000,0.000415973000000,0.000578738000000,0.000548318000000,0.031742368000000,0.000592565000000,0.000147726000000,0.000048171000000,0.000134689000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.030406665000000,0.000017567000000,0.000095183000000,0.000055492500000,0.000021319500000,0.000048960000000,0.000210936000000,0.000050540000000,0.000330639000000,0.000331430000000,0.000544368000000,0.000579133000000,0.031457133000000,0.000624565000000,0.000073455000000,0.000048961000000,0.000134689000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000629701000000,0.029780888000000,0.000017369500000,0.000115726000000,0.000023492500000,0.000020924500000,0.000049356000000,0.000235034000000,0.000053702000000,0.000363825000000,0.000391874000000,0.000559775000000,0.000582688000000,0.030920640000000,0.000574788000000,0.000056467000000,0.000048565000000,0.000135084000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.030734566000000,0.000017567000000,0.000096368000000,0.000031196500000,0.000020529500000,0.000052121000000,0.000340516000000,0.000050146000000,0.000330245000000,0.000331824000000,0.000577948000000,0.000549109000000,0.031693775000000,0.000555429000000,0.000056072000000,0.000048170000000,0.000144171000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000553059000000,0.031007158000000,0.000017369500000,0.000095578000000,0.000022900500000,0.000021319500000,0.000055282000000,0.000210936000000,0.000050541000000,0.000399380000000,0.000331430000000,0.000545948000000,0.000548713000000,0.031794516000000,0.000624170000000,0.000056467000000,0.000048565000000,0.000137849000000,0.000055282000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.031267899000000,0.000017567000000,0.000095578000000,0.000023690500000,0.000021319500000,0.000049751000000,0.000212516000000,0.000049750000000,0.000329850000000,0.000365405000000,0.000543973000000,0.000601256000000,0.031115010000000,0.000588219000000,0.000056071000000,0.000048566000000,0.000134689000000,0.000073454000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.031239060000000,0.000034357000000,0.000095183000000,0.000022900000000,0.000020727000000,0.000049751000000,0.000211726000000,0.000049751000000,0.000329849000000,0.000331825000000,0.000591380000000,0.000549109000000,0.031305430000000,0.000638392000000,0.000056466000000,0.000048961000000,0.000136664000000,0.000054492000000 +0.000019344500000,0.000031973000000,0.000830787000000,0.030985430000000,0.000017567000000,0.000096763000000,0.000022505000000,0.000020924500000,0.000049356000000,0.000210541000000,0.000052121000000,0.000329849000000,0.000371726000000,0.000595726000000,0.000578343000000,0.032334960000000,0.000555430000000,0.000056467000000,0.000048565000000,0.000135874000000,0.000056071000000 +0.000019542000000,0.000031578000000,0.000636812000000,0.030524789000000,0.000017369500000,0.000095578000000,0.000023295500000,0.000021319500000,0.000049355000000,0.000211726000000,0.000050146000000,0.000331034000000,0.000331429000000,0.000545158000000,0.000582294000000,0.031796096000000,0.000555034000000,0.000090047000000,0.000049355000000,0.000135084000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000588219000000,0.031830071000000,0.000017369500000,0.000142195000000,0.000023690500000,0.000029616500000,0.000049751000000,0.000212121000000,0.000050936000000,0.000398590000000,0.000369750000000,0.000578738000000,0.000549898000000,0.031693380000000,0.000623775000000,0.000056467000000,0.000048565000000,0.000140219000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030897726000000,0.000017369500000,0.000095578000000,0.000023098000000,0.000021517500000,0.000104665000000,0.000209750000000,0.000050146000000,0.000330244000000,0.000483924000000,0.000544763000000,0.000549109000000,0.031996788000000,0.000589009000000,0.000056072000000,0.000048566000000,0.000135084000000,0.000054096000000 +0.000019542000000,0.000080960000000,0.000553059000000,0.030730615000000,0.000017567000000,0.000095183000000,0.000022702500000,0.000020925000000,0.000049751000000,0.000210146000000,0.000050146000000,0.000364220000000,0.000365405000000,0.000544368000000,0.000583874000000,0.030833331000000,0.000624565000000,0.000056467000000,0.000048566000000,0.000134689000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031084591000000,0.000017369500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000049356000000,0.000212121000000,0.000051331000000,0.000381208000000,0.000333800000000,0.000578343000000,0.000549504000000,0.032291108000000,0.000555824000000,0.000056467000000,0.000049356000000,0.000143775000000,0.000054096000000 +0.000019344500000,0.000031577000000,0.000587430000000,0.030754320000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000021122500000,0.000049751000000,0.000218047000000,0.000050541000000,0.000331035000000,0.000332219000000,0.000543972000000,0.000562935000000,0.033794712000000,0.000555429000000,0.000056862000000,0.000048961000000,0.000130738000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030384541000000,0.000017567000000,0.000096763000000,0.000022702500000,0.000021517500000,0.000048960000000,0.000212121000000,0.000050541000000,0.000330244000000,0.000331429000000,0.000877404000000,0.000582688000000,0.034243502000000,0.000969058000000,0.000056467000000,0.000048171000000,0.000127973000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000553454000000,0.030694665000000,0.000017369500000,0.000114146000000,0.000022307500000,0.000020727500000,0.000049356000000,0.000209355000000,0.000050145000000,0.000330640000000,0.000384368000000,0.000543973000000,0.000549109000000,0.031858516000000,0.000568466000000,0.000056467000000,0.000049751000000,0.000130344000000,0.000087677000000 +0.000026455500000,0.000031578000000,0.000587035000000,0.031177035000000,0.000017369500000,0.000116121000000,0.000022702500000,0.000021320000000,0.000049751000000,0.000210936000000,0.000050935000000,0.000365010000000,0.000362245000000,0.000613898000000,0.000619825000000,0.031593034000000,0.000624960000000,0.000056071000000,0.000048565000000,0.000164318000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.032373676000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000211726000000,0.000050146000000,0.000329850000000,0.000331825000000,0.000544367000000,0.000583478000000,0.030940393000000,0.000603232000000,0.000056072000000,0.000048961000000,0.000126787000000,0.000053702000000 +0.000019542000000,0.000031183000000,0.000553850000000,0.031146615000000,0.000017566500000,0.000095183000000,0.000022307500000,0.000020332500000,0.000048961000000,0.000209751000000,0.000064368000000,0.000399775000000,0.000414393000000,0.000543973000000,0.000549899000000,0.031124491000000,0.000555429000000,0.000072664000000,0.000048566000000,0.000128368000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.031331109000000,0.000017566500000,0.000095578000000,0.000022900000000,0.000028628500000,0.000049355000000,0.000209750000000,0.000051331000000,0.000329849000000,0.000331430000000,0.000614688000000,0.000562935000000,0.031999157000000,0.000555430000000,0.000059232000000,0.000048961000000,0.000167874000000,0.000053701000000 +0.000019542000000,0.000032368000000,0.000622985000000,0.030400344000000,0.000017566500000,0.000095973000000,0.000030011500000,0.000021320000000,0.000049356000000,0.000210936000000,0.000050936000000,0.000329849000000,0.000365800000000,0.000544367000000,0.000617059000000,0.031356788000000,0.000590985000000,0.000056072000000,0.000048170000000,0.000127577000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000629306000000,0.031627800000000,0.000017566500000,0.000159182000000,0.000023097500000,0.000021320000000,0.000048960000000,0.000210936000000,0.000050936000000,0.000329849000000,0.000331825000000,0.000544763000000,0.000550294000000,0.031041923000000,0.000588615000000,0.000057257000000,0.000050145000000,0.000127577000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000606787000000,0.031460294000000,0.000017566500000,0.000095973000000,0.000022307500000,0.000020530000000,0.000049356000000,0.000211726000000,0.000050936000000,0.000329849000000,0.000331825000000,0.000628515000000,0.000680664000000,0.031718664000000,0.000589405000000,0.000056862000000,0.000048170000000,0.000130343000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000552664000000,0.033855551000000,0.000017566500000,0.000095578000000,0.000023098000000,0.000021912500000,0.000048566000000,0.000211330000000,0.000050541000000,0.000514343000000,0.000416368000000,0.000543577000000,0.000596515000000,0.031506911000000,0.000555824000000,0.000056072000000,0.000064368000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.033483403000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000020727000000,0.000068713000000,0.000208961000000,0.000050541000000,0.000345257000000,0.000331034000000,0.000543578000000,0.000587035000000,0.031058122000000,0.000554639000000,0.000056862000000,0.000048565000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000608367000000,0.032056442000000,0.000017567000000,0.000095578000000,0.000023492500000,0.000020332000000,0.000062393000000,0.000244911000000,0.000052516000000,0.000363430000000,0.000365010000000,0.000628516000000,0.000550688000000,0.031348886000000,0.000588614000000,0.000056072000000,0.000049355000000,0.000130739000000,0.000123233000000 +0.000019344500000,0.000031182000000,0.000600072000000,0.031742762000000,0.000018554500000,0.000095183000000,0.000023690000000,0.000020925000000,0.000048960000000,0.000207775000000,0.000050936000000,0.000329849000000,0.000331429000000,0.000597701000000,0.000582689000000,0.031574072000000,0.000643923000000,0.000059627000000,0.000048960000000,0.000268219000000,0.000054096000000 +0.000036332000000,0.000031183000000,0.000587429000000,0.032129133000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000021122500000,0.000048961000000,0.000209751000000,0.000050541000000,0.000364219000000,0.000400565000000,0.000543973000000,0.000618639000000,0.031796491000000,0.000555430000000,0.000092812000000,0.000048566000000,0.000142985000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553850000000,0.032117281000000,0.000017567000000,0.000109010000000,0.000022505000000,0.000020530000000,0.000049750000000,0.000213306000000,0.000118886000000,0.000329454000000,0.000341306000000,0.000613504000000,0.000549504000000,0.032657330000000,0.000553850000000,0.000056467000000,0.000048171000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.032310861000000,0.000034357000000,0.000095973000000,0.000023097500000,0.000048184000000,0.000082936000000,0.000211331000000,0.000051330000000,0.000329849000000,0.000331825000000,0.000564516000000,0.000583084000000,0.032141775000000,0.000589009000000,0.000056466000000,0.000048565000000,0.000127578000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000588219000000,0.031319651000000,0.000018159000000,0.000095578000000,0.000039295000000,0.000020332000000,0.000049355000000,0.000209355000000,0.000050540000000,0.000402936000000,0.000346047000000,0.000544368000000,0.000618244000000,0.030975158000000,0.000588219000000,0.000056071000000,0.000049355000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000588615000000,0.031851010000000,0.000017566500000,0.000095973000000,0.000023492500000,0.000021319500000,0.000048961000000,0.000210146000000,0.000050541000000,0.000330639000000,0.000331825000000,0.000613109000000,0.000548713000000,0.031807553000000,0.000588219000000,0.000056072000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.032218022000000,0.000017369000000,0.000095577000000,0.000022307500000,0.000020332000000,0.000048961000000,0.000211726000000,0.000050541000000,0.000371330000000,0.000400565000000,0.000577948000000,0.000583083000000,0.031583158000000,0.000555034000000,0.000056862000000,0.000048961000000,0.000143381000000,0.000053701000000 +0.000020530000000,0.000065158000000,0.000649849000000,0.032096738000000,0.000017566500000,0.000095973000000,0.000023097500000,0.000020924500000,0.000048960000000,0.000211726000000,0.000050541000000,0.000330245000000,0.000331430000000,0.000543972000000,0.000636022000000,0.031482812000000,0.000554244000000,0.000056467000000,0.000062393000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031577000000,0.000553454000000,0.031894071000000,0.000017369000000,0.000129948000000,0.000022702500000,0.000020530000000,0.000049751000000,0.000211331000000,0.000052121000000,0.000364220000000,0.000388318000000,0.000613503000000,0.000549108000000,0.031639651000000,0.000619035000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000087676000000 +0.000019542000000,0.000031183000000,0.000622590000000,0.032278070000000,0.000017567000000,0.000095973000000,0.000022900000000,0.000021320000000,0.000049356000000,0.000209751000000,0.000049751000000,0.000330640000000,0.000334195000000,0.000579923000000,0.000631676000000,0.031461479000000,0.000588614000000,0.000056467000000,0.000049356000000,0.000163923000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.031570911000000,0.000017369500000,0.000095577000000,0.000023493000000,0.000020727500000,0.000049355000000,0.000212516000000,0.000050936000000,0.000331035000000,0.000331430000000,0.000544367000000,0.000649058000000,0.030893776000000,0.000554244000000,0.000089652000000,0.000048960000000,0.000126787000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000624170000000,0.031621084000000,0.000017567000000,0.000095183000000,0.000023295500000,0.000021320000000,0.000048961000000,0.000211331000000,0.000050936000000,0.000401356000000,0.000400565000000,0.001016466000000,0.000549503000000,0.032204590000000,0.000554639000000,0.000056467000000,0.000048170000000,0.000126787000000,0.000054097000000 +0.000057270500000,0.000031578000000,0.000553454000000,0.032480737000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000021122500000,0.000049751000000,0.000216071000000,0.000049751000000,0.000329849000000,0.000331035000000,0.000581898000000,0.000550293000000,0.031450418000000,0.000588219000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542500000,0.000031973000000,0.000553059000000,0.031438566000000,0.000017369000000,0.000095578000000,0.000023690000000,0.000039492500000,0.000063973000000,0.000210541000000,0.000054887000000,0.000363429000000,0.000365010000000,0.000591380000000,0.000582294000000,0.032532096000000,0.000687380000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000642738000000,0.031328343000000,0.000017369000000,0.000095578000000,0.000032381500000,0.000021517500000,0.000049355000000,0.000210146000000,0.000050146000000,0.000330639000000,0.000331035000000,0.000544763000000,0.000547923000000,0.031623454000000,0.000588220000000,0.000056071000000,0.000049356000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.031869577000000,0.000024283000000,0.000109800000000,0.000023098000000,0.000021320000000,0.000049751000000,0.000210145000000,0.000049750000000,0.000363825000000,0.000431775000000,0.000615084000000,0.000562935000000,0.031486763000000,0.000555035000000,0.000056072000000,0.000048565000000,0.000127578000000,0.000055282000000 +0.000019542000000,0.000031973000000,0.000682639000000,0.031526664000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020530000000,0.000049355000000,0.000210541000000,0.000050936000000,0.000329849000000,0.000568466000000,0.000641158000000,0.000617454000000,0.031391554000000,0.000554245000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000552664000000,0.031677183000000,0.000018159500000,0.000095183000000,0.000023097500000,0.000020530000000,0.000049356000000,0.000210936000000,0.000051331000000,0.000380022000000,0.000366195000000,0.000543973000000,0.000548714000000,0.031200343000000,0.000600862000000,0.000056072000000,0.000160763000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000045800000000,0.000553849000000,0.031629775000000,0.000017567000000,0.000095578000000,0.000023097500000,0.000020530000000,0.000050541000000,0.000210146000000,0.000049356000000,0.000416368000000,0.000331430000000,0.000577948000000,0.000549898000000,0.031256837000000,0.000589010000000,0.000056862000000,0.000084121000000,0.000127183000000,0.000088467000000 +0.000019344500000,0.000031578000000,0.000640368000000,0.031357972000000,0.000017369500000,0.000095578000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000210935000000,0.000050146000000,0.000330244000000,0.000426245000000,0.000612318000000,0.000618244000000,0.036637574000000,0.000555429000000,0.000056467000000,0.000051726000000,0.000161158000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000801553000000,0.031017825000000,0.000017567000000,0.000096368000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000210146000000,0.000049751000000,0.000364219000000,0.000331035000000,0.000544763000000,0.000548318000000,0.032076194000000,0.000554639000000,0.000089257000000,0.000049356000000,0.000130343000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000603232000000,0.031917775000000,0.000017369500000,0.000115726000000,0.000022702500000,0.000020332000000,0.000049355000000,0.000211331000000,0.000050936000000,0.000329454000000,0.000402541000000,0.000578343000000,0.000550293000000,0.031541676000000,0.000587824000000,0.000056467000000,0.000049356000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000587034000000,0.031565775000000,0.000017962000000,0.000095578000000,0.000032974500000,0.000020332000000,0.000049356000000,0.000211331000000,0.000130344000000,0.000399380000000,0.000331035000000,0.000577553000000,0.000583084000000,0.031415652000000,0.000587429000000,0.000056072000000,0.000049751000000,0.000127183000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.031378911000000,0.000017369500000,0.000095578000000,0.000030011000000,0.000020529500000,0.000049750000000,0.000210936000000,0.000156022000000,0.000329849000000,0.000331824000000,0.000543578000000,0.000549109000000,0.032491799000000,0.000600862000000,0.000056466000000,0.000048565000000,0.000130343000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031575257000000,0.000017567000000,0.000095577000000,0.000039295000000,0.000028431000000,0.000049356000000,0.000210541000000,0.000067529000000,0.000333010000000,0.000331430000000,0.000577948000000,0.000561751000000,0.031770417000000,0.000554640000000,0.000056466000000,0.000048961000000,0.000127182000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.031344936000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000028628500000,0.000051331000000,0.000212121000000,0.000052912000000,0.000379232000000,0.000332614000000,0.000637602000000,0.000582293000000,0.031823355000000,0.000583479000000,0.000058838000000,0.000048960000000,0.000127183000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000602047000000,0.031226418000000,0.000027443500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000049751000000,0.000210935000000,0.000050541000000,0.000330245000000,0.000365010000000,0.000543972000000,0.000549899000000,0.031256837000000,0.000629701000000,0.000056466000000,0.000049356000000,0.000129553000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.031418813000000,0.000024282500000,0.000095577000000,0.000023097500000,0.000020530000000,0.000049355000000,0.000210146000000,0.000069899000000,0.000376467000000,0.000332220000000,0.000578343000000,0.000583084000000,0.031695751000000,0.000588615000000,0.000057651000000,0.000048961000000,0.000126787000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.034427601000000,0.000017566500000,0.000193158000000,0.000022900000000,0.000021320000000,0.000049356000000,0.000214886000000,0.000050541000000,0.000329849000000,0.000365405000000,0.000578738000000,0.000618244000000,0.032048541000000,0.000555035000000,0.000056071000000,0.000048961000000,0.000127578000000,0.000069504000000 +0.000019344500000,0.000033554000000,0.000622590000000,0.031909083000000,0.000017369000000,0.000114146000000,0.000022505000000,0.000021320000000,0.000048961000000,0.000245701000000,0.000049751000000,0.000376861000000,0.000331429000000,0.000543973000000,0.000564120000000,0.031470961000000,0.000555430000000,0.000070689000000,0.000048960000000,0.000163924000000,0.000056467000000 +0.000019344500000,0.000031578000000,0.000588615000000,0.032059997000000,0.000017369000000,0.000096368000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000210936000000,0.000050146000000,0.000330244000000,0.000331429000000,0.000597306000000,0.000549504000000,0.031472145000000,0.000588219000000,0.000057257000000,0.000048960000000,0.000127578000000,0.000054886000000 +0.000019344500000,0.000031183000000,0.000594145000000,0.031471356000000,0.000017566500000,0.000095578000000,0.000023492500000,0.000021122500000,0.000049751000000,0.000212516000000,0.000052121000000,0.000329850000000,0.000366195000000,0.000632466000000,0.000582688000000,0.031495849000000,0.000623380000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000053702000000 +0.000019344500000,0.000031183000000,0.000553454000000,0.031497034000000,0.000017764000000,0.000095578000000,0.000022702500000,0.000020530000000,0.000069504000000,0.000212516000000,0.000050541000000,0.000626145000000,0.000331034000000,0.000544367000000,0.000548713000000,0.031017430000000,0.000626541000000,0.000059628000000,0.000048171000000,0.000127578000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000572417000000,0.031990466000000,0.000017566500000,0.000095973000000,0.000023097500000,0.000021517500000,0.000049355000000,0.000210541000000,0.000050541000000,0.000363429000000,0.000365405000000,0.000612713000000,0.000583479000000,0.031254862000000,0.000555035000000,0.000056862000000,0.000048565000000,0.000129553000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031765281000000,0.000017369000000,0.000109010000000,0.000032579000000,0.000036332500000,0.000049356000000,0.000212911000000,0.000050541000000,0.000330244000000,0.000331429000000,0.000598096000000,0.000589799000000,0.031718664000000,0.000554640000000,0.000056466000000,0.000048566000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000600071000000,0.031175060000000,0.000017961500000,0.000095578000000,0.000023295000000,0.000021122500000,0.000049356000000,0.000212911000000,0.000050146000000,0.000331035000000,0.000331430000000,0.000544368000000,0.000549108000000,0.031847059000000,0.000601652000000,0.000056071000000,0.000098343000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.031619503000000,0.000017369000000,0.000095973000000,0.000022900000000,0.000020332000000,0.000049355000000,0.000212516000000,0.000049750000000,0.000364220000000,0.000346047000000,0.000578343000000,0.000583479000000,0.031614367000000,0.000587825000000,0.000056467000000,0.000048960000000,0.000130343000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000554639000000,0.031554714000000,0.000045023500000,0.000095973000000,0.000022505000000,0.000020332500000,0.000049356000000,0.000210146000000,0.000084121000000,0.000330244000000,0.000331824000000,0.000577552000000,0.000953652000000,0.032573972000000,0.000555825000000,0.000056072000000,0.000048961000000,0.000129949000000,0.000073850000000 +0.000019542000000,0.000031578000000,0.000567281000000,0.031912639000000,0.000024282500000,0.000096368000000,0.000022900000000,0.000020332500000,0.000049751000000,0.000210541000000,0.000063183000000,0.000364219000000,0.000400170000000,0.000544368000000,0.001556120000000,0.031378912000000,0.000554244000000,0.000056862000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000051726000000,0.000587429000000,0.031355208000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000209356000000,0.000049751000000,0.000329849000000,0.000331825000000,0.000596911000000,0.000765997000000,0.031639257000000,0.000714244000000,0.000055677000000,0.000048961000000,0.000161553000000,0.000054097000000 +0.000019937000000,0.000031578000000,0.000587430000000,0.031255257000000,0.000018159500000,0.000128763000000,0.000022702500000,0.000021320000000,0.000048961000000,0.000214886000000,0.000052121000000,0.000329849000000,0.000365405000000,0.000718589000000,0.000861997000000,0.032012195000000,0.000600467000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031399059000000,0.000017567000000,0.000095578000000,0.000022307500000,0.000020530000000,0.000049750000000,0.000210146000000,0.000049356000000,0.000344467000000,0.000331035000000,0.000544368000000,0.000598491000000,0.031276986000000,0.000623775000000,0.000056862000000,0.000048961000000,0.000131529000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.031859700000000,0.000017369500000,0.000095973000000,0.000023097500000,0.000020529500000,0.000083331000000,0.000208171000000,0.000050540000000,0.000330244000000,0.000331035000000,0.000543973000000,0.000549898000000,0.031307010000000,0.000602836000000,0.000056467000000,0.000049356000000,0.000160763000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000588219000000,0.031804392000000,0.000017369500000,0.000097158000000,0.000023295000000,0.000021517500000,0.000049355000000,0.000210935000000,0.000051331000000,0.000364615000000,0.000345257000000,0.000577948000000,0.000598886000000,0.031346517000000,0.000554640000000,0.000056467000000,0.000048961000000,0.000127577000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031849824000000,0.000017369500000,0.000095183000000,0.000022307500000,0.000052727000000,0.000049356000000,0.000218442000000,0.000051331000000,0.000330640000000,0.000331430000000,0.000543972000000,0.000570836000000,0.032141380000000,0.000641948000000,0.000056466000000,0.000048565000000,0.000128368000000,0.000054096000000 +0.000035147000000,0.000031578000000,0.000553849000000,0.032120047000000,0.000017567000000,0.000094788000000,0.000030406000000,0.000021320000000,0.000052121000000,0.000210541000000,0.000052911000000,0.000388319000000,0.000365405000000,0.000544368000000,0.000561751000000,0.031338615000000,0.000595725000000,0.000056467000000,0.000049355000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000574392000000,0.031495059000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000020727500000,0.000049356000000,0.000212121000000,0.000050146000000,0.000330244000000,0.000331035000000,0.000612319000000,0.000766787000000,0.031505726000000,0.000641948000000,0.000056072000000,0.000048960000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031723009000000,0.000017369000000,0.000110986000000,0.000022702500000,0.000020925000000,0.000057652000000,0.000213701000000,0.000088466000000,0.000329849000000,0.000370145000000,0.000543578000000,0.000619430000000,0.031482022000000,0.000556615000000,0.000090837000000,0.000048566000000,0.000149306000000,0.000087677000000 +0.000019344500000,0.000031183000000,0.000587035000000,0.031469380000000,0.000027443500000,0.000112566000000,0.000022703000000,0.000020727500000,0.000049356000000,0.000209750000000,0.000049356000000,0.000330245000000,0.000331430000000,0.000578343000000,0.000598491000000,0.031205084000000,0.000554639000000,0.000056467000000,0.000048171000000,0.000162343000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000622195000000,0.032462170000000,0.000024480500000,0.000094788000000,0.000022900000000,0.000021517500000,0.000050936000000,0.000210541000000,0.000050541000000,0.000330245000000,0.000331430000000,0.000579528000000,0.000549109000000,0.031405776000000,0.000807479000000,0.000056467000000,0.000048565000000,0.000128368000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000584269000000,0.032013774000000,0.000017567000000,0.000096763000000,0.000023097500000,0.000020530000000,0.000048961000000,0.000241751000000,0.000051331000000,0.000363825000000,0.000407676000000,0.000543578000000,0.000599676000000,0.036199846000000,0.000604022000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031384047000000,0.000017369000000,0.000094788000000,0.000023097500000,0.000020332500000,0.000048961000000,0.000302590000000,0.000050540000000,0.000329849000000,0.000332219000000,0.000558195000000,0.000592960000000,0.031578813000000,0.000588615000000,0.000056862000000,0.000048566000000,0.000129948000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.031395109000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000021320000000,0.000155627000000,0.000227924000000,0.000050541000000,0.000377256000000,0.000365800000000,0.000578343000000,0.000549504000000,0.032020490000000,0.000587430000000,0.000056467000000,0.000048566000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000606392000000,0.032749379000000,0.000017369000000,0.000167479000000,0.000023295500000,0.000020332000000,0.000066739000000,0.000208960000000,0.000050936000000,0.000330244000000,0.000331430000000,0.000543972000000,0.000797997000000,0.031227208000000,0.000553849000000,0.000056072000000,0.000048170000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000600861000000,0.031965972000000,0.000017566500000,0.000094788000000,0.000039492500000,0.000030406000000,0.000076615000000,0.000210936000000,0.000050146000000,0.000330245000000,0.000365800000000,0.000577552000000,0.000582293000000,0.031549973000000,0.000553454000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000054887000000 +0.000029221000000,0.000031578000000,0.000553850000000,0.031265924000000,0.000017566500000,0.000095183000000,0.000023097500000,0.000020530000000,0.000050146000000,0.000210540000000,0.000050541000000,0.000400170000000,0.000331035000000,0.000621405000000,0.000549504000000,0.030842417000000,0.000588220000000,0.000056071000000,0.000065158000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031896837000000,0.000017369000000,0.000094788000000,0.000022702500000,0.000020925000000,0.000050541000000,0.000210936000000,0.000049751000000,0.000330639000000,0.000331035000000,0.000543973000000,0.000564120000000,0.031258813000000,0.000587824000000,0.000056466000000,0.000048170000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000638787000000,0.031329528000000,0.000017369500000,0.000095183000000,0.000023690000000,0.000020925000000,0.000049751000000,0.000212121000000,0.000084121000000,0.000364220000000,0.000365405000000,0.000578738000000,0.000582294000000,0.031514022000000,0.000554244000000,0.000059232000000,0.000048171000000,0.000127578000000,0.000123232000000 +0.000019542000000,0.000031578000000,0.000588614000000,0.031534960000000,0.000018159500000,0.000094788000000,0.000023492500000,0.000020332500000,0.000049356000000,0.000245306000000,0.000050936000000,0.000330245000000,0.000331430000000,0.000578343000000,0.000548713000000,0.031158467000000,0.000554639000000,0.000056467000000,0.000048171000000,0.000160763000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.033964983000000,0.000027246000000,0.000165899000000,0.000023097500000,0.000020529500000,0.000051331000000,0.000212516000000,0.000050146000000,0.000350788000000,0.000365010000000,0.000594936000000,0.000549899000000,0.031060097000000,0.000593356000000,0.000057257000000,0.000050146000000,0.000127578000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.032003108000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020529500000,0.000067134000000,0.000210935000000,0.000050541000000,0.000330244000000,0.000333405000000,0.000558590000000,0.000581109000000,0.031967948000000,0.000588614000000,0.000056072000000,0.000048565000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000067528000000,0.000884120000000,0.033228984000000,0.000017566500000,0.000094787000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000211726000000,0.000050540000000,0.000330244000000,0.000333405000000,0.000643133000000,0.000568466000000,0.030756690000000,0.000624170000000,0.000056071000000,0.000048565000000,0.000134689000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000604812000000,0.032348787000000,0.000017566500000,0.000094788000000,0.000023295000000,0.000020529500000,0.000054491000000,0.000246491000000,0.000049750000000,0.000363825000000,0.000474837000000,0.000544367000000,0.000549108000000,0.031132788000000,0.000555034000000,0.000057256000000,0.000048171000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000643923000000,0.031768442000000,0.000017566500000,0.000096763000000,0.000022702500000,0.000020530000000,0.000048961000000,0.000210935000000,0.000052516000000,0.000330245000000,0.000351972000000,0.000558195000000,0.000583083000000,0.031422763000000,0.000554244000000,0.000056467000000,0.000048171000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000623380000000,0.031078270000000,0.000017566500000,0.000094788000000,0.000042060500000,0.000020332500000,0.000048961000000,0.000209356000000,0.000050541000000,0.000363825000000,0.000331034000000,0.000577157000000,0.000570047000000,0.031834022000000,0.000666046000000,0.000056862000000,0.000048961000000,0.000127578000000,0.000054097000000 +0.000019344500000,0.000031183000000,0.000553059000000,0.031639652000000,0.000017566500000,0.000115331000000,0.000023492500000,0.000047789000000,0.000049355000000,0.000211331000000,0.000050541000000,0.000330244000000,0.000331824000000,0.000543183000000,0.000787331000000,0.032106614000000,0.000587824000000,0.000057257000000,0.000117306000000,0.000229109000000,0.000071874000000 +0.000042850500000,0.000031578000000,0.000604417000000,0.032267799000000,0.000017566500000,0.000094788000000,0.000022900000000,0.000022900000000,0.000049356000000,0.000225158000000,0.000051331000000,0.000330245000000,0.000378442000000,0.000578738000000,0.000610738000000,0.032291108000000,0.000589404000000,0.000090442000000,0.000048961000000,0.000127183000000,0.000093603000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.031332294000000,0.000017369000000,0.000094787000000,0.000022307000000,0.000028431000000,0.000049356000000,0.000210936000000,0.000084516000000,0.000344862000000,0.000331034000000,0.000577948000000,0.000619035000000,0.031642417000000,0.000554245000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000637998000000,0.031664146000000,0.000017566500000,0.000094788000000,0.000023097500000,0.000021517000000,0.000048961000000,0.000210541000000,0.000050145000000,0.000329849000000,0.000400565000000,0.000544762000000,0.000751775000000,0.032128342000000,0.000568467000000,0.000056072000000,0.000049750000000,0.000126787000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000645898000000,0.031682319000000,0.000017567000000,0.000094788000000,0.000022110000000,0.000020332000000,0.000105455000000,0.000212121000000,0.000049751000000,0.000415182000000,0.000331035000000,0.000578738000000,0.000549503000000,0.032366169000000,0.000587429000000,0.000056467000000,0.000048565000000,0.000130738000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000622984000000,0.031026517000000,0.000017567000000,0.000094788000000,0.000022110000000,0.000020332000000,0.000049751000000,0.000208961000000,0.000049751000000,0.000329849000000,0.000331430000000,0.001073750000000,0.000548713000000,0.032451898000000,0.000588220000000,0.000091627000000,0.000049356000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000553059000000,0.032095157000000,0.000024875500000,0.000094787000000,0.000022900000000,0.000020332500000,0.000050541000000,0.000210936000000,0.000079776000000,0.000364220000000,0.000345256000000,0.000976170000000,0.000583479000000,0.032097133000000,0.000554639000000,0.000056466000000,0.000048566000000,0.000202640000000,0.000053701000000 +0.000019344500000,0.000065553000000,0.000567677000000,0.032110170000000,0.000017369000000,0.000128368000000,0.000023492500000,0.000020925000000,0.000049356000000,0.000210146000000,0.000054096000000,0.000330639000000,0.000331429000000,0.000607183000000,0.000633651000000,0.032752145000000,0.000554244000000,0.000056466000000,0.000049751000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000626540000000,0.031655850000000,0.000017369000000,0.000094788000000,0.000022900000000,0.000020332000000,0.000049355000000,0.000246886000000,0.000050146000000,0.000330639000000,0.000367775000000,0.000577947000000,0.000724515000000,0.031922120000000,0.000587824000000,0.000056467000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000019937500000,0.000031578000000,0.000635627000000,0.031659404000000,0.000017369000000,0.000094788000000,0.000040085500000,0.000020529500000,0.000049356000000,0.000209751000000,0.000049751000000,0.000363825000000,0.000332615000000,0.000545158000000,0.000549503000000,0.031903158000000,0.000704367000000,0.000056467000000,0.000048170000000,0.000189208000000,0.000054096000000 +0.000019344500000,0.000031183000000,0.000626146000000,0.031861282000000,0.000017566500000,0.000095182000000,0.000023493000000,0.000035937000000,0.000049356000000,0.000210541000000,0.000050146000000,0.000330245000000,0.000365405000000,0.000619825000000,0.000583084000000,0.033418613000000,0.000589009000000,0.000133899000000,0.000114145000000,0.000131528000000,0.000054492000000 +0.000019542000000,0.000032368000000,0.000553849000000,0.031382072000000,0.000017566500000,0.000094788000000,0.000023493000000,0.000021122000000,0.000048960000000,0.000210936000000,0.000049355000000,0.000370935000000,0.000331430000000,0.000587825000000,0.000549898000000,0.032153231000000,0.000554244000000,0.000092023000000,0.000048960000000,0.000129948000000,0.000069504000000 +0.000036529500000,0.000031578000000,0.000553059000000,0.031795701000000,0.000017369500000,0.000094393000000,0.000022702500000,0.000020332000000,0.000048961000000,0.000212121000000,0.000065158000000,0.000330640000000,0.000331429000000,0.000543973000000,0.000579528000000,0.031891305000000,0.000554244000000,0.000059627000000,0.000048961000000,0.000131133000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000637602000000,0.032048145000000,0.000017369500000,0.000094787000000,0.000023097500000,0.000020530000000,0.000050541000000,0.000210541000000,0.000050935000000,0.000330639000000,0.000365009000000,0.001136169000000,0.000620615000000,0.032075404000000,0.000587824000000,0.000056467000000,0.000050146000000,0.000127183000000,0.000054887000000 +0.000019542000000,0.000031183000000,0.000691725000000,0.031936738000000,0.000017567000000,0.000109009000000,0.000023097500000,0.000020925000000,0.000063973000000,0.000209356000000,0.000050541000000,0.000387529000000,0.000331429000000,0.000545158000000,0.000583084000000,0.031957676000000,0.000600071000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031892491000000,0.000017567000000,0.000098344000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000208565000000,0.000050541000000,0.000330639000000,0.000365405000000,0.000578343000000,0.000581503000000,0.031765282000000,0.000555429000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031585923000000,0.000017567000000,0.000096368000000,0.000023295000000,0.000021517500000,0.000048961000000,0.000573603000000,0.000050146000000,0.000329849000000,0.000350392000000,0.000544368000000,0.000582294000000,0.034934464000000,0.000555034000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.031302269000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000021122500000,0.000049356000000,0.000238590000000,0.000050541000000,0.000331429000000,0.000366195000000,0.000546343000000,0.000582294000000,0.034153822000000,0.000589010000000,0.000056072000000,0.000048170000000,0.000129158000000,0.000054491000000 +0.000019542000000,0.000065158000000,0.000641948000000,0.032011009000000,0.000017567000000,0.000094788000000,0.000023295000000,0.000038702500000,0.000049356000000,0.000210936000000,0.000050146000000,0.000399380000000,0.000331429000000,0.000578343000000,0.000649454000000,0.032751750000000,0.000596121000000,0.000056467000000,0.000048961000000,0.000129553000000,0.000054096000000 +0.000019542000000,0.000044615000000,0.000587429000000,0.031634516000000,0.000017567000000,0.000095578000000,0.000032974000000,0.000029023500000,0.000049751000000,0.000210541000000,0.000050541000000,0.000329454000000,0.000331035000000,0.000543973000000,0.000583874000000,0.031795306000000,0.000588220000000,0.000055677000000,0.000068714000000,0.000321158000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000553850000000,0.033359354000000,0.000017567000000,0.000128763000000,0.000023492500000,0.000028036000000,0.000049355000000,0.000210540000000,0.000050936000000,0.000365010000000,0.000422294000000,0.000543972000000,0.000582689000000,0.032956787000000,0.000554245000000,0.000056466000000,0.000048566000000,0.000156813000000,0.000073849000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031319652000000,0.000017567000000,0.000094788000000,0.000023493000000,0.000021517000000,0.000049356000000,0.000210935000000,0.000083726000000,0.000330244000000,0.000331034000000,0.000577158000000,0.000582689000000,0.031186516000000,0.000567677000000,0.000056071000000,0.000050541000000,0.000197899000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.031454763000000,0.000018159500000,0.000095183000000,0.000023098000000,0.000020332000000,0.000048961000000,0.000214491000000,0.000050935000000,0.000329849000000,0.000365010000000,0.000570047000000,0.000619034000000,0.030806072000000,0.000742293000000,0.000056072000000,0.000048566000000,0.000129948000000,0.000053701000000 +0.000050356500000,0.000031183000000,0.000594540000000,0.031559059000000,0.000017567000000,0.000096763000000,0.000023492500000,0.000020727000000,0.000084121000000,0.000209751000000,0.000049751000000,0.000398985000000,0.000331825000000,0.000592170000000,0.000582688000000,0.030655949000000,0.000589009000000,0.000056467000000,0.000048960000000,0.000127973000000,0.000054097000000 +0.000020727500000,0.000031183000000,0.000587429000000,0.031455158000000,0.000017567000000,0.000095182000000,0.000023295000000,0.000021517000000,0.000063578000000,0.000209750000000,0.000050936000000,0.000330639000000,0.000365405000000,0.000578738000000,0.000582293000000,0.030921035000000,0.000625750000000,0.000059232000000,0.000048565000000,0.000161553000000,0.000054491000000 +0.000019542500000,0.000031578000000,0.000553454000000,0.032703947000000,0.000017567000000,0.000094393000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000212121000000,0.000049751000000,0.000363430000000,0.000331429000000,0.000577157000000,0.000582688000000,0.031024541000000,0.000554639000000,0.000056467000000,0.000048566000000,0.000130343000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000592566000000,0.032801923000000,0.000017567000000,0.000093998000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000210936000000,0.000050541000000,0.000330640000000,0.000331430000000,0.000577948000000,0.000583874000000,0.030746813000000,0.000555429000000,0.000057257000000,0.000049356000000,0.000126788000000,0.000054492000000 +0.000019344500000,0.000031183000000,0.000647478000000,0.032917280000000,0.000017369000000,0.000218442000000,0.000022702500000,0.000020727000000,0.000050541000000,0.000210146000000,0.000049751000000,0.000369355000000,0.000410047000000,0.000612318000000,0.000576762000000,0.030937628000000,0.000625356000000,0.000090047000000,0.000048171000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000586640000000,0.032212095000000,0.000017566500000,0.000100714000000,0.000022900500000,0.000021320000000,0.000049355000000,0.000209355000000,0.000050936000000,0.000331430000000,0.000331430000000,0.000577553000000,0.000549109000000,0.030567060000000,0.000589404000000,0.000056466000000,0.000048566000000,0.000126788000000,0.000053702000000 +0.000019344500000,0.000051331000000,0.000553849000000,0.031730120000000,0.000027640500000,0.000094788000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000284813000000,0.000049751000000,0.000330244000000,0.000365405000000,0.000576763000000,0.000617850000000,0.031159652000000,0.000609948000000,0.000057257000000,0.000048170000000,0.000129158000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031854960000000,0.000017566500000,0.000094788000000,0.000022110000000,0.000040480500000,0.000048961000000,0.000210145000000,0.000052516000000,0.000363824000000,0.000331430000000,0.000577948000000,0.000549503000000,0.030914714000000,0.000554640000000,0.000056072000000,0.000063578000000,0.000127578000000,0.000128368000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.031355998000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000062209000000,0.000049750000000,0.000215282000000,0.000070294000000,0.000329849000000,0.000351973000000,0.000587034000000,0.000563726000000,0.030093382000000,0.000555034000000,0.000056467000000,0.000048565000000,0.000196714000000,0.000072664000000 +0.000019542000000,0.000032368000000,0.000587035000000,0.032073034000000,0.000017369000000,0.000094787000000,0.000022900000000,0.000063393500000,0.000049356000000,0.000262294000000,0.000050541000000,0.000399380000000,0.000331035000000,0.000577553000000,0.000583084000000,0.030505825000000,0.000635626000000,0.000056862000000,0.000049356000000,0.000127183000000,0.000085702000000 +0.000019542000000,0.000031973000000,0.000621799000000,0.031472145000000,0.000017369500000,0.000108615000000,0.000022702500000,0.000029418500000,0.000065158000000,0.000210936000000,0.000050936000000,0.000331034000000,0.000331430000000,0.000612318000000,0.000548319000000,0.029845283000000,0.000589404000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000027443500000,0.000031183000000,0.000553849000000,0.031612393000000,0.000017567000000,0.000094788000000,0.000023097500000,0.000027443000000,0.000049355000000,0.000209356000000,0.000050936000000,0.000349998000000,0.000365405000000,0.000578343000000,0.000549898000000,0.030064937000000,0.000554244000000,0.000056467000000,0.000048170000000,0.000210146000000,0.000053307000000 +0.000019344500000,0.000031578000000,0.000603627000000,0.031681923000000,0.000017567000000,0.000094788000000,0.000023295000000,0.000021517500000,0.000049751000000,0.000210145000000,0.000049750000000,0.000330245000000,0.000331430000000,0.000576763000000,0.000582689000000,0.030664245000000,0.000555035000000,0.000056071000000,0.000048960000000,0.000135084000000,0.000054096000000 +0.000019542000000,0.000031577000000,0.000603232000000,0.031635701000000,0.000017369500000,0.000095183000000,0.000023690500000,0.000054900000000,0.000049356000000,0.000245702000000,0.000049751000000,0.000330244000000,0.000365405000000,0.000578343000000,0.000549504000000,0.030150270000000,0.000587034000000,0.000056466000000,0.000048566000000,0.000126788000000,0.000054096000000 +0.000019542500000,0.000031578000000,0.000587430000000,0.031404985000000,0.000017567000000,0.000094788000000,0.000022900500000,0.000021320000000,0.000052121000000,0.000211331000000,0.000050541000000,0.000399380000000,0.000332220000000,0.000600466000000,0.000696071000000,0.030996492000000,0.000630096000000,0.000056862000000,0.000064368000000,0.000161158000000,0.000055677000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.031659800000000,0.000017369500000,0.000094788000000,0.000022702500000,0.000021517500000,0.000049356000000,0.000211330000000,0.000049751000000,0.000330244000000,0.000331430000000,0.000545157000000,0.001042146000000,0.030354121000000,0.000587429000000,0.000056466000000,0.000048565000000,0.000126788000000,0.000073454000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031416442000000,0.000017369000000,0.000127973000000,0.000023492500000,0.000021122500000,0.000048960000000,0.000211726000000,0.000052516000000,0.000363430000000,0.000345652000000,0.000632071000000,0.000562936000000,0.030243110000000,0.000554640000000,0.000056071000000,0.000048170000000,0.000127183000000,0.000056072000000 +0.000019344500000,0.000031183000000,0.000702787000000,0.030987010000000,0.000017369000000,0.000110985000000,0.000029813500000,0.000020727500000,0.000051726000000,0.000211726000000,0.000050936000000,0.000329849000000,0.000331430000000,0.000579923000000,0.000581898000000,0.029952739000000,0.000555429000000,0.000056862000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000035133000000,0.000588220000000,0.031594615000000,0.000024480000000,0.000094393000000,0.000023492500000,0.000020530000000,0.000054491000000,0.000211331000000,0.000068319000000,0.000329849000000,0.000365010000000,0.000545552000000,0.000548318000000,0.030067307000000,0.000587430000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000594146000000,0.031605281000000,0.000017566500000,0.000094788000000,0.000023295000000,0.000021320000000,0.000050145000000,0.000210541000000,0.000050540000000,0.000541602000000,0.000331430000000,0.000703972000000,0.000582689000000,0.031722220000000,0.000792071000000,0.000056072000000,0.000048566000000,0.000126788000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.031448442000000,0.000017369000000,0.000096368000000,0.000023295500000,0.000020530000000,0.000049356000000,0.000210146000000,0.000049356000000,0.000370936000000,0.000406096000000,0.000579133000000,0.000582293000000,0.030192541000000,0.000588219000000,0.000056467000000,0.000048960000000,0.000128763000000,0.000054097000000 +0.000029813500000,0.000031578000000,0.000553059000000,0.031747108000000,0.000017566500000,0.000095182000000,0.000023492500000,0.000020530000000,0.000049356000000,0.000211331000000,0.000052911000000,0.000330244000000,0.000398985000000,0.000543973000000,0.000548319000000,0.030022270000000,0.000603627000000,0.000056467000000,0.000048170000000,0.000173800000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031358368000000,0.000017369500000,0.000097553000000,0.000022702500000,0.000020727500000,0.000049355000000,0.000210541000000,0.000050541000000,0.000346442000000,0.000365010000000,0.000577948000000,0.000583084000000,0.029982369000000,0.000554639000000,0.000056467000000,0.000048961000000,0.000127182000000,0.000054492000000 +0.000019344500000,0.000032763000000,0.000587824000000,0.032136639000000,0.000017567000000,0.000128368000000,0.000023295000000,0.000030801500000,0.000048961000000,0.000209355000000,0.000050146000000,0.000364220000000,0.000331034000000,0.000592565000000,0.000582689000000,0.030322912000000,0.000554639000000,0.000090047000000,0.000048171000000,0.000129948000000,0.000054887000000 +0.000019542000000,0.000031577000000,0.000553849000000,0.032051701000000,0.000017369500000,0.000094393000000,0.000023295000000,0.000022110000000,0.000049355000000,0.000210146000000,0.000050541000000,0.000330244000000,0.000364220000000,0.000545553000000,0.000548713000000,0.030030171000000,0.000624565000000,0.000056467000000,0.000048565000000,0.000161158000000,0.000053701000000 +0.000019542500000,0.000031578000000,0.000552269000000,0.031523899000000,0.000017566500000,0.000094787000000,0.000023098000000,0.000020529500000,0.000049356000000,0.000210145000000,0.000049751000000,0.000381207000000,0.000347627000000,0.000578343000000,0.000582293000000,0.034987008000000,0.000589799000000,0.000056466000000,0.000048170000000,0.000126788000000,0.000109405000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.031342960000000,0.000017566500000,0.000094393000000,0.000023492500000,0.000021319500000,0.000049751000000,0.000210936000000,0.000050146000000,0.000330640000000,0.000333404000000,0.000579923000000,0.000701207000000,0.031276986000000,0.000555429000000,0.000056466000000,0.000099529000000,0.000127973000000,0.000054096000000 +0.000019344500000,0.000031183000000,0.000589800000000,0.031471356000000,0.000017566500000,0.000094787000000,0.000059640500000,0.000021122000000,0.000049355000000,0.000210936000000,0.000050540000000,0.000350392000000,0.000366194000000,0.000544762000000,0.000715034000000,0.030591949000000,0.000555035000000,0.000056467000000,0.000048170000000,0.000130739000000,0.000053701000000 +0.000019542000000,0.000107430000000,0.000588219000000,0.033381477000000,0.000017566500000,0.000094788000000,0.000034554000000,0.000021319500000,0.000049751000000,0.000216071000000,0.000084121000000,0.000329849000000,0.000331429000000,0.000627725000000,0.001072170000000,0.029896641000000,0.000589010000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000052516000000,0.000604812000000,0.031243801000000,0.000017566500000,0.000095183000000,0.000024677500000,0.000022307500000,0.000082936000000,0.000211726000000,0.000050936000000,0.000331035000000,0.000402146000000,0.000641553000000,0.000623775000000,0.030098913000000,0.000632071000000,0.000056467000000,0.000048961000000,0.000130343000000,0.000054096000000 +0.000019344500000,0.000031973000000,0.000552664000000,0.031262368000000,0.000017566500000,0.000095578000000,0.000028826000000,0.000021517500000,0.000049356000000,0.000210936000000,0.000050541000000,0.000365010000000,0.000331429000000,0.000543973000000,0.000548713000000,0.030706121000000,0.000587824000000,0.000056467000000,0.000048961000000,0.000129553000000,0.000053701000000 +0.000019542500000,0.000031578000000,0.000586639000000,0.031557874000000,0.000017566500000,0.000096763000000,0.000023295000000,0.000020530000000,0.000048961000000,0.000212516000000,0.000050540000000,0.000329850000000,0.000331035000000,0.000586244000000,0.000632466000000,0.031063652000000,0.000554639000000,0.000056072000000,0.000048565000000,0.000126788000000,0.000054097000000 +0.000029418500000,0.000031578000000,0.000587429000000,0.031845873000000,0.000017566500000,0.000094788000000,0.000022307000000,0.000021122500000,0.000049750000000,0.000214491000000,0.000050541000000,0.000364219000000,0.000353158000000,0.000578343000000,0.000583479000000,0.030019504000000,0.000553849000000,0.000075825000000,0.000048170000000,0.000127183000000,0.000054886000000 +0.000039690000000,0.000031578000000,0.000592961000000,0.031409726000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020925000000,0.000049356000000,0.000212912000000,0.000050146000000,0.000330244000000,0.000331034000000,0.000543972000000,0.000724911000000,0.030309875000000,0.000596120000000,0.000059627000000,0.000048566000000,0.000133899000000,0.000055282000000 +0.000020727000000,0.000031578000000,0.000553059000000,0.032601231000000,0.000017567000000,0.000095183000000,0.000023097500000,0.000037320000000,0.000049356000000,0.000209751000000,0.000050936000000,0.000330245000000,0.000400565000000,0.000578343000000,0.000549504000000,0.030119060000000,0.000637208000000,0.000056467000000,0.000048566000000,0.000219627000000,0.000054491000000 +0.000020727500000,0.000031578000000,0.000569257000000,0.031719059000000,0.000017369500000,0.000094393000000,0.000030603500000,0.000020332500000,0.000048961000000,0.000218442000000,0.000050541000000,0.000380417000000,0.000331430000000,0.000593355000000,0.000583479000000,0.030001332000000,0.000587825000000,0.000056862000000,0.000049751000000,0.000127578000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000603232000000,0.030674516000000,0.000017566500000,0.000134294000000,0.000023295000000,0.000020727500000,0.000049750000000,0.000247281000000,0.000050936000000,0.000330244000000,0.000368170000000,0.000544367000000,0.000582294000000,0.030377430000000,0.000555035000000,0.000056072000000,0.000048566000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000587429000000,0.030083110000000,0.000017369000000,0.000096763000000,0.000022900500000,0.000020529500000,0.000065158000000,0.000216071000000,0.000050541000000,0.000363825000000,0.000331035000000,0.000799577000000,0.000549503000000,0.029984739000000,0.000555429000000,0.000056072000000,0.000048171000000,0.000161554000000,0.000053702000000 +0.000019542500000,0.000088862000000,0.000748615000000,0.030386517000000,0.000017369000000,0.000094788000000,0.000023097500000,0.000020924500000,0.000068319000000,0.000211331000000,0.000070294000000,0.000329850000000,0.000331034000000,0.000577948000000,0.000582689000000,0.029864246000000,0.000603627000000,0.000056862000000,0.000048960000000,0.000127578000000,0.000055676000000 +0.000019542000000,0.000098344000000,0.000554245000000,0.029844098000000,0.000017369000000,0.000094787000000,0.000023295000000,0.000045221000000,0.000049356000000,0.000210145000000,0.000050936000000,0.000377257000000,0.000593355000000,0.000544763000000,0.000583083000000,0.030223357000000,0.000701602000000,0.000056071000000,0.000048960000000,0.000130738000000,0.000054097000000 +0.000019542000000,0.000046985000000,0.000553059000000,0.031118171000000,0.000018554500000,0.000094393000000,0.000022900000000,0.000022702500000,0.000049355000000,0.000211726000000,0.000049751000000,0.000330244000000,0.000350392000000,0.000543577000000,0.000549109000000,0.030027801000000,0.000588615000000,0.000059233000000,0.000049356000000,0.000126788000000,0.000054096000000 +0.000036530000000,0.000033948000000,0.000587034000000,0.030280641000000,0.000037319500000,0.000094393000000,0.000023295500000,0.000021912500000,0.000048961000000,0.000210936000000,0.000050935000000,0.000329849000000,0.000331824000000,0.000577948000000,0.000595330000000,0.030419307000000,0.000555430000000,0.000056862000000,0.000048961000000,0.000146145000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000810244000000,0.030503455000000,0.000017369500000,0.000094788000000,0.000024283000000,0.000021122500000,0.000050146000000,0.000210936000000,0.000049356000000,0.000399380000000,0.000341306000000,0.000544762000000,0.000622195000000,0.031179800000000,0.000554245000000,0.000070689000000,0.000048961000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.001166194000000,0.030392838000000,0.000017172000000,0.000107825000000,0.000023098000000,0.000020925000000,0.000049356000000,0.000210540000000,0.000052516000000,0.000330245000000,0.000365010000000,0.000543577000000,0.000567677000000,0.030130912000000,0.000587429000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000976960000000,0.030679653000000,0.000017962000000,0.000094392000000,0.000022900000000,0.000020530000000,0.000048961000000,0.000210936000000,0.000049356000000,0.000364220000000,0.000332219000000,0.000596121000000,0.000586244000000,0.030946714000000,0.000588219000000,0.000056071000000,0.000048960000000,0.000127973000000,0.000074244000000 +0.000019344500000,0.000031577000000,0.000624170000000,0.030316986000000,0.000017172000000,0.000129158000000,0.000058653000000,0.000020530000000,0.000049356000000,0.000210541000000,0.000050541000000,0.000329849000000,0.000365405000000,0.000543577000000,0.000619429000000,0.030283801000000,0.000554244000000,0.000056466000000,0.000049355000000,0.000129948000000,0.000067924000000 +0.000019542000000,0.000052121000000,0.000555034000000,0.030378221000000,0.000017171500000,0.000094787000000,0.000023295500000,0.000021715000000,0.000048960000000,0.000213306000000,0.000050146000000,0.000349997000000,0.000331825000000,0.000544367000000,0.000548713000000,0.030766171000000,0.000554639000000,0.000056467000000,0.000064368000000,0.000129158000000,0.000054491000000 +0.000020529500000,0.000031578000000,0.000553454000000,0.029983160000000,0.000017171500000,0.000094788000000,0.000022110000000,0.000020530000000,0.000048961000000,0.000212911000000,0.000050936000000,0.000331034000000,0.000330639000000,0.000578343000000,0.000617454000000,0.030380986000000,0.000588219000000,0.000056467000000,0.000048566000000,0.000355133000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000587035000000,0.030001332000000,0.000017171500000,0.000094393000000,0.000023295000000,0.000021320000000,0.000049355000000,0.000212121000000,0.000071874000000,0.000330245000000,0.000353948000000,0.000579133000000,0.000625355000000,0.031254466000000,0.000589009000000,0.000056467000000,0.000048961000000,0.000156417000000,0.000053701000000 +0.000019542000000,0.000031577000000,0.000803528000000,0.030317777000000,0.000017172000000,0.000095183000000,0.000022703000000,0.000020925000000,0.000049356000000,0.000208566000000,0.000064368000000,0.000364220000000,0.000334590000000,0.000543182000000,0.000548713000000,0.030717974000000,0.000555034000000,0.000056467000000,0.000049356000000,0.000130343000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000589009000000,0.029857925000000,0.000017172000000,0.000094787000000,0.000022110000000,0.000021122500000,0.000049355000000,0.000210936000000,0.000052121000000,0.000331825000000,0.000365800000000,0.000613503000000,0.000582293000000,0.030904047000000,0.000554640000000,0.000056467000000,0.000048566000000,0.000126787000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000573207000000,0.030149875000000,0.000017171500000,0.000094788000000,0.000022307500000,0.000021320000000,0.000049355000000,0.000214096000000,0.000049750000000,0.000399775000000,0.000331429000000,0.000544368000000,0.001008960000000,0.031104343000000,0.000604417000000,0.000089652000000,0.000048565000000,0.000127182000000,0.000054096000000 +0.000027246000000,0.000031578000000,0.000553059000000,0.030061381000000,0.000017369000000,0.000096763000000,0.000022900000000,0.000020530000000,0.000049751000000,0.000210146000000,0.000050541000000,0.000330245000000,0.000365009000000,0.000544367000000,0.000892417000000,0.031359948000000,0.000631281000000,0.000056467000000,0.000048170000000,0.000160763000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000624565000000,0.029651307000000,0.000025665500000,0.000094787000000,0.000023097500000,0.000020332500000,0.000050541000000,0.000209751000000,0.000052516000000,0.000401750000000,0.000331824000000,0.000620615000000,0.000595331000000,0.030972788000000,0.000588615000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000587034000000,0.030472245000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020529500000,0.000049356000000,0.000214491000000,0.000050936000000,0.000331034000000,0.000331035000000,0.000543972000000,0.000582688000000,0.030293283000000,0.000554640000000,0.000056467000000,0.000049751000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000597306000000,0.030475406000000,0.000017369000000,0.000149306000000,0.000022702500000,0.000020530000000,0.000049751000000,0.000211726000000,0.000050936000000,0.000329455000000,0.000415182000000,0.000544762000000,0.000549109000000,0.030230468000000,0.000569652000000,0.000056466000000,0.000082541000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000551874000000,0.030256542000000,0.000017566500000,0.000097158000000,0.000023097500000,0.000021320000000,0.000049355000000,0.000209750000000,0.000051331000000,0.000370936000000,0.000331429000000,0.000612318000000,0.000582293000000,0.030790665000000,0.000589010000000,0.000056072000000,0.000049356000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030772887000000,0.000018159000000,0.000094788000000,0.000023492500000,0.000021517500000,0.000049751000000,0.000208171000000,0.000050146000000,0.000329849000000,0.000365800000000,0.000543972000000,0.000582689000000,0.031804787000000,0.000588220000000,0.000056467000000,0.000049356000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000587034000000,0.030711258000000,0.000017566500000,0.000095578000000,0.000023097500000,0.000020530000000,0.000065554000000,0.000209355000000,0.000071084000000,0.000364219000000,0.000331824000000,0.000544762000000,0.000549109000000,0.033034218000000,0.000555034000000,0.000056072000000,0.000049356000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.030192542000000,0.000017566500000,0.000094392000000,0.000023492500000,0.000020332000000,0.000049356000000,0.000405306000000,0.000050541000000,0.000330244000000,0.000365010000000,0.001027528000000,0.000618245000000,0.032276885000000,0.000555824000000,0.000056467000000,0.000048565000000,0.000141405000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031137528000000,0.000017369000000,0.000096763000000,0.000023097500000,0.000020529500000,0.000048960000000,0.000226738000000,0.000049751000000,0.000329849000000,0.000331035000000,0.000577948000000,0.000620219000000,0.031092096000000,0.000603231000000,0.000056072000000,0.000048566000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000032368000000,0.000764417000000,0.030722714000000,0.000017566500000,0.000094788000000,0.000023295500000,0.000020924500000,0.000049751000000,0.000211331000000,0.000051331000000,0.000344862000000,0.000331430000000,0.000616269000000,0.000582293000000,0.030968047000000,0.000587034000000,0.000056467000000,0.000049356000000,0.000127182000000,0.000054096000000 +0.000019344500000,0.000059628000000,0.000554244000000,0.030182665000000,0.000018159000000,0.000095183000000,0.000023097500000,0.000021517000000,0.000049356000000,0.000212121000000,0.000050541000000,0.000329455000000,0.000400170000000,0.000545157000000,0.000582689000000,0.031637282000000,0.000587429000000,0.000056072000000,0.000050146000000,0.000161949000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000604022000000,0.030019109000000,0.000017369000000,0.000095182000000,0.000023295000000,0.000021517000000,0.000049750000000,0.000209750000000,0.000051726000000,0.000363825000000,0.000331825000000,0.000577553000000,0.000583479000000,0.032071058000000,0.000554244000000,0.000056466000000,0.000048565000000,0.000130343000000,0.000074244000000 +0.000019542000000,0.000031973000000,0.000647478000000,0.029958666000000,0.000033764000000,0.000095578000000,0.000023492500000,0.000021319500000,0.000049356000000,0.000210146000000,0.000050936000000,0.000333405000000,0.000381207000000,0.000628911000000,0.000583083000000,0.030939208000000,0.000554640000000,0.000056466000000,0.000048565000000,0.000126788000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000622985000000,0.029943653000000,0.000017369000000,0.000094788000000,0.000060826000000,0.000034159000000,0.000050936000000,0.000211330000000,0.000049751000000,0.000368961000000,0.000333009000000,0.000543973000000,0.000618639000000,0.032445973000000,0.000718985000000,0.000059233000000,0.000068319000000,0.000132713000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.032188392000000,0.000018159000000,0.000095182000000,0.000030406500000,0.000020530000000,0.000050936000000,0.000250837000000,0.000049750000000,0.000365010000000,0.000331034000000,0.000578343000000,0.000583478000000,0.032245676000000,0.000637998000000,0.000056467000000,0.000048566000000,0.000129553000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000552664000000,0.031984540000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000212121000000,0.000050146000000,0.000329850000000,0.000332615000000,0.000578343000000,0.000584664000000,0.031446862000000,0.000636812000000,0.000056861000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031182000000,0.000587429000000,0.030539406000000,0.000017369000000,0.000151676000000,0.000022900000000,0.000022505000000,0.000049355000000,0.000210936000000,0.000069109000000,0.000330245000000,0.000331034000000,0.000608367000000,0.000583874000000,0.031747504000000,0.000555035000000,0.000056466000000,0.000048566000000,0.000127973000000,0.000055282000000 +0.000019344500000,0.000031973000000,0.000587430000000,0.030755900000000,0.000017567000000,0.000094787000000,0.000023295000000,0.000030011000000,0.000048961000000,0.000213307000000,0.000050541000000,0.000330244000000,0.000380417000000,0.000611923000000,0.000591380000000,0.031663356000000,0.000555035000000,0.000056467000000,0.000048961000000,0.000145356000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000573207000000,0.029753233000000,0.000017567000000,0.000095183000000,0.000023097500000,0.000020727500000,0.000049356000000,0.000211330000000,0.000050146000000,0.000364219000000,0.000331825000000,0.000612318000000,0.000628515000000,0.031626615000000,0.000642343000000,0.000090442000000,0.000048961000000,0.000127973000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030297629000000,0.000017369500000,0.000095578000000,0.000023295000000,0.000021122500000,0.000049355000000,0.000209356000000,0.000052121000000,0.000331430000000,0.000366195000000,0.000543973000000,0.000584269000000,0.032039454000000,0.000632861000000,0.000056466000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000835527000000,0.029946023000000,0.000017567000000,0.000094787000000,0.000023492500000,0.000020332500000,0.000048961000000,0.000212121000000,0.000050541000000,0.000364219000000,0.000331035000000,0.000590984000000,0.000583874000000,0.031758566000000,0.000639577000000,0.000059627000000,0.000048565000000,0.000196713000000,0.000054492000000 +0.000038900000000,0.000031578000000,0.000603627000000,0.030226912000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000020332500000,0.000049356000000,0.000213701000000,0.000050146000000,0.000331034000000,0.000331430000000,0.000615084000000,0.000583478000000,0.031568935000000,0.000555430000000,0.000056862000000,0.000048171000000,0.000129948000000,0.000130343000000 +0.000019542000000,0.000031578000000,0.000743874000000,0.030430763000000,0.000017566500000,0.000094788000000,0.000040085500000,0.000021320000000,0.000048960000000,0.000211726000000,0.000050146000000,0.000339330000000,0.000331430000000,0.000545553000000,0.000577948000000,0.031295553000000,0.000555034000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000159972000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031007949000000,0.000053319500000,0.000095183000000,0.000022702500000,0.000030801500000,0.000049356000000,0.000210541000000,0.000050146000000,0.000420319000000,0.000331430000000,0.000586244000000,0.000584269000000,0.031852985000000,0.000623380000000,0.000056071000000,0.000117701000000,0.000147331000000,0.000156813000000 +0.000019542000000,0.000031182000000,0.000587429000000,0.030328442000000,0.000025468000000,0.000096764000000,0.000023097500000,0.000021319500000,0.000048961000000,0.000210145000000,0.000050541000000,0.000329850000000,0.000365405000000,0.000629701000000,0.000598096000000,0.031468985000000,0.000622985000000,0.000056466000000,0.000048170000000,0.000129948000000,0.000071084000000 +0.000020529500000,0.000031973000000,0.000651429000000,0.030073628000000,0.000018554500000,0.000094788000000,0.000022900000000,0.000020332000000,0.000063182000000,0.000212912000000,0.000051331000000,0.000364220000000,0.000331430000000,0.000544368000000,0.000548713000000,0.031807553000000,0.000849355000000,0.000056467000000,0.000048566000000,0.000129553000000,0.000067134000000 +0.000019542000000,0.000031578000000,0.000631677000000,0.030169234000000,0.000017369000000,0.000094788000000,0.000023295000000,0.000021319500000,0.000048961000000,0.000211726000000,0.000050936000000,0.000329849000000,0.000367380000000,0.000577948000000,0.000583479000000,0.032162713000000,0.000600861000000,0.000056467000000,0.000048961000000,0.000126788000000,0.000087282000000 +0.000019344500000,0.000045800000000,0.000552664000000,0.030308690000000,0.000017369000000,0.000094787000000,0.000023295000000,0.000020529500000,0.000049356000000,0.000213307000000,0.000050936000000,0.000364615000000,0.000331429000000,0.000578343000000,0.000658936000000,0.031797676000000,0.000573997000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000602836000000,0.030519652000000,0.000018159000000,0.000095183000000,0.000023097500000,0.000021122000000,0.000049355000000,0.000211330000000,0.000052516000000,0.000330245000000,0.000331430000000,0.000543973000000,0.000581108000000,0.031371010000000,0.000554244000000,0.000071479000000,0.000049356000000,0.000126788000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000590590000000,0.031205479000000,0.000017566500000,0.000129158000000,0.000023492500000,0.000020924500000,0.000049356000000,0.000214887000000,0.000050541000000,0.000330639000000,0.000417158000000,0.000578738000000,0.000595330000000,0.031631356000000,0.000589010000000,0.000056862000000,0.000049356000000,0.000129553000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.030298418000000,0.000017566500000,0.000094788000000,0.000023295500000,0.000021319500000,0.000048960000000,0.000212516000000,0.000050146000000,0.000364220000000,0.000331035000000,0.000790491000000,0.000583479000000,0.033374762000000,0.000587825000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000031577000000,0.000553059000000,0.030744047000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000021714500000,0.000048961000000,0.000210936000000,0.000051331000000,0.000329850000000,0.000365405000000,0.000596120000000,0.000549109000000,0.032395799000000,0.000589010000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000054886000000 +0.000057073000000,0.000031578000000,0.000597701000000,0.030370319000000,0.000017567000000,0.000094788000000,0.000039690000000,0.000021319500000,0.000049751000000,0.000211330000000,0.000049751000000,0.000434541000000,0.000331035000000,0.000544368000000,0.000583083000000,0.031986516000000,0.000556220000000,0.000056467000000,0.000048566000000,0.000142195000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000587034000000,0.030500295000000,0.000040875500000,0.000097158000000,0.000030209000000,0.000020529500000,0.000052516000000,0.000211726000000,0.000052121000000,0.000330245000000,0.000419133000000,0.000578343000000,0.000582294000000,0.032090812000000,0.000554639000000,0.000056072000000,0.000155232000000,0.000142590000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000600466000000,0.030602221000000,0.000017566500000,0.000094392000000,0.000022900500000,0.000055295000000,0.000077405000000,0.000210935000000,0.000048961000000,0.000363825000000,0.000402146000000,0.000592960000000,0.000549898000000,0.031401430000000,0.000588219000000,0.000056072000000,0.000154047000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000552664000000,0.030596690000000,0.000017567000000,0.000094788000000,0.000023295000000,0.000021122500000,0.000053702000000,0.000210936000000,0.000049355000000,0.000330244000000,0.000365405000000,0.000594936000000,0.000595726000000,0.031975849000000,0.000588614000000,0.000056467000000,0.000080170000000,0.000134689000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000553059000000,0.030863356000000,0.000017567000000,0.000123627000000,0.000022900000000,0.000020727500000,0.000048961000000,0.000213701000000,0.000050146000000,0.000329850000000,0.000331034000000,0.000593355000000,0.000620219000000,0.033705033000000,0.000554244000000,0.000076219000000,0.000063183000000,0.000162738000000,0.000067923000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.030730615000000,0.000017369500000,0.000094788000000,0.000023492500000,0.000021320000000,0.000050936000000,0.000210541000000,0.000051331000000,0.000364220000000,0.000331430000000,0.000622590000000,0.000550689000000,0.034098909000000,0.000556219000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000070294000000,0.000588614000000,0.030616443000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000021517500000,0.000048961000000,0.000210541000000,0.000050541000000,0.000330244000000,0.000365405000000,0.000544367000000,0.000768762000000,0.031953330000000,0.000605207000000,0.000056466000000,0.000082541000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031972000000,0.000587430000000,0.030190172000000,0.000017567000000,0.000097949000000,0.000022702500000,0.000021320000000,0.000048960000000,0.000210146000000,0.000052516000000,0.000370935000000,0.000332220000000,0.000578738000000,0.000607578000000,0.032132293000000,0.000601651000000,0.000056466000000,0.000048960000000,0.000129948000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.031743158000000,0.000017369500000,0.000094393000000,0.000023492500000,0.000020530000000,0.000049356000000,0.000212516000000,0.000050936000000,0.000329849000000,0.000380812000000,0.000580318000000,0.000582294000000,0.031263158000000,0.000590985000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000596120000000,0.033164589000000,0.000017369500000,0.000094788000000,0.000022900000000,0.000021122500000,0.000049751000000,0.000210146000000,0.000050541000000,0.000330244000000,0.000331825000000,0.000543183000000,0.000549108000000,0.031783849000000,0.000555430000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000054492000000 +0.000028826000000,0.000031973000000,0.000650244000000,0.030299603000000,0.000017567000000,0.000149701000000,0.000039492500000,0.000021320000000,0.000048960000000,0.000210935000000,0.000050541000000,0.000473257000000,0.000331429000000,0.000577948000000,0.000632861000000,0.032032343000000,0.000553849000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030864146000000,0.000017567000000,0.000094788000000,0.000029221000000,0.000020530000000,0.000068714000000,0.000210146000000,0.000050541000000,0.000331825000000,0.000331034000000,0.000579133000000,0.000582689000000,0.031763701000000,0.000622985000000,0.000056467000000,0.000048566000000,0.000142590000000,0.000054491000000 +0.000019542000000,0.000031577000000,0.000554244000000,0.030501875000000,0.000017566500000,0.000094787000000,0.000023097500000,0.000031196500000,0.000121652000000,0.000246096000000,0.000050541000000,0.000331035000000,0.000331429000000,0.000543972000000,0.000549503000000,0.031685874000000,0.000588220000000,0.000057257000000,0.000048565000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000571627000000,0.030618418000000,0.000018554500000,0.000094788000000,0.000023295000000,0.000020529500000,0.000154047000000,0.000210146000000,0.000051331000000,0.000329849000000,0.000400961000000,0.000620219000000,0.000805503000000,0.031868787000000,0.000554245000000,0.000059627000000,0.000048170000000,0.000129553000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030875997000000,0.000017961500000,0.000096368000000,0.000023098000000,0.000021320000000,0.000084911000000,0.000209750000000,0.000050936000000,0.000398590000000,0.000331035000000,0.000579528000000,0.000582689000000,0.032557774000000,0.000554244000000,0.000070689000000,0.000048961000000,0.000161158000000,0.000073059000000 +0.000019542000000,0.000031578000000,0.000632071000000,0.033740588000000,0.000027048000000,0.000094788000000,0.000023493000000,0.000020530000000,0.000054492000000,0.000208961000000,0.000050936000000,0.000330245000000,0.000365800000000,0.000545158000000,0.000549503000000,0.031320442000000,0.000589009000000,0.000056862000000,0.000050146000000,0.000127183000000,0.000069899000000 +0.000019542000000,0.000031578000000,0.000588219000000,0.030279060000000,0.000018554500000,0.000094788000000,0.000023492500000,0.000022307500000,0.000052516000000,0.000212121000000,0.000050146000000,0.000363824000000,0.000333405000000,0.000579133000000,0.000549108000000,0.031858911000000,0.000589800000000,0.000056072000000,0.000082146000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000065553000000,0.000553454000000,0.032260689000000,0.000017369000000,0.000108219000000,0.000023097500000,0.000020924500000,0.000062392000000,0.000209750000000,0.000050936000000,0.000329849000000,0.000334195000000,0.000578343000000,0.000583874000000,0.031852590000000,0.000600861000000,0.000056467000000,0.000048566000000,0.000134689000000,0.000056466000000 +0.000019344500000,0.000031973000000,0.000553454000000,0.030873232000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000021122000000,0.000055677000000,0.000209751000000,0.000049750000000,0.000329850000000,0.000331429000000,0.000544763000000,0.000568861000000,0.031554318000000,0.000555035000000,0.000057257000000,0.000048566000000,0.000127972000000,0.000054887000000 +0.000019542000000,0.000031183000000,0.000586639000000,0.030511751000000,0.000017369000000,0.000094788000000,0.000023097500000,0.000021517000000,0.000049355000000,0.000208960000000,0.000051727000000,0.000345257000000,0.000331034000000,0.000579528000000,0.000549109000000,0.032658515000000,0.000664071000000,0.000056072000000,0.000048960000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000623380000000,0.030686368000000,0.000017566500000,0.000094787000000,0.000032974500000,0.000020332000000,0.000049751000000,0.000212517000000,0.000050935000000,0.000329850000000,0.000400960000000,0.000543973000000,0.000583479000000,0.031397874000000,0.000589009000000,0.000056467000000,0.000049355000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031577000000,0.000586639000000,0.030990961000000,0.000017566500000,0.000094788000000,0.000022307500000,0.000021320000000,0.000048961000000,0.000211330000000,0.000050540000000,0.000364220000000,0.000331825000000,0.000543182000000,0.000617849000000,0.031341775000000,0.000588219000000,0.000074244000000,0.000048566000000,0.000191577000000,0.000054886000000 +0.000026653000000,0.000031578000000,0.000553454000000,0.030739702000000,0.000017566500000,0.000094392000000,0.000023097500000,0.000038505000000,0.000049355000000,0.000212911000000,0.000050146000000,0.000330244000000,0.000365405000000,0.000577158000000,0.000548713000000,0.031996787000000,0.000554244000000,0.000056466000000,0.000048961000000,0.000127972000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.001021602000000,0.030744442000000,0.000027443500000,0.000135084000000,0.000022702500000,0.000027443000000,0.000049356000000,0.000213702000000,0.000051331000000,0.000423874000000,0.000331824000000,0.000570837000000,0.000583084000000,0.031479257000000,0.000555034000000,0.000070293000000,0.000048566000000,0.000126392000000,0.000067923000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031141084000000,0.000017369000000,0.000181701000000,0.000022900000000,0.000021319500000,0.000049355000000,0.000212912000000,0.000050146000000,0.000331035000000,0.000331429000000,0.000543973000000,0.000618639000000,0.031564985000000,0.000554639000000,0.000056466000000,0.000049356000000,0.000160763000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000591380000000,0.031494270000000,0.000017566500000,0.000112960000000,0.000023690500000,0.000020924500000,0.000050541000000,0.000259924000000,0.000141405000000,0.000351183000000,0.000476812000000,0.000577948000000,0.000636022000000,0.032128342000000,0.000588220000000,0.000056071000000,0.000048170000000,0.000129553000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000715034000000,0.030466319000000,0.000017369500000,0.000094788000000,0.000023295500000,0.000020332000000,0.000049751000000,0.000211726000000,0.000099133000000,0.000331035000000,0.000331035000000,0.000543972000000,0.000583873000000,0.031666911000000,0.000621405000000,0.000056467000000,0.000069109000000,0.000127973000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000596121000000,0.030919060000000,0.000017567000000,0.000095183000000,0.000023690500000,0.000021517000000,0.000050541000000,0.000212911000000,0.000053701000000,0.000330640000000,0.000365405000000,0.000543973000000,0.000632467000000,0.031393134000000,0.000555034000000,0.000056467000000,0.000048960000000,0.000132319000000,0.000054886000000 +0.000019542500000,0.000045800000000,0.000587824000000,0.030322912000000,0.000017567000000,0.000094788000000,0.000022702500000,0.000021319500000,0.000048960000000,0.000210145000000,0.000052121000000,0.000414788000000,0.000331034000000,0.000690146000000,0.000549109000000,0.031800837000000,0.000554244000000,0.000056467000000,0.000048565000000,0.000144171000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000660121000000,0.030699800000000,0.000017369500000,0.000094788000000,0.000022702500000,0.000021122000000,0.000048961000000,0.000210146000000,0.000053702000000,0.000330639000000,0.000400565000000,0.000562936000000,0.000590195000000,0.031849824000000,0.000588220000000,0.000056072000000,0.000048961000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000045800000000,0.000751380000000,0.030671751000000,0.000017369500000,0.000095183000000,0.000056085500000,0.000021517000000,0.000049751000000,0.000209355000000,0.000050541000000,0.000364614000000,0.000332220000000,0.000543972000000,0.000632071000000,0.033838563000000,0.000604812000000,0.000056467000000,0.000048566000000,0.000166294000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000756910000000,0.030198467000000,0.000017369500000,0.000094392000000,0.000022900000000,0.000021122000000,0.000049355000000,0.000212911000000,0.000050146000000,0.000394244000000,0.000331430000000,0.000595330000000,0.000549108000000,0.031809528000000,0.000589009000000,0.000056466000000,0.000048170000000,0.000130738000000,0.000054492000000 +0.000047393500000,0.000031973000000,0.000586244000000,0.030506220000000,0.000017369000000,0.000094788000000,0.000023493000000,0.000020727000000,0.000049356000000,0.000211726000000,0.000084516000000,0.000399775000000,0.000331430000000,0.000544763000000,0.000549109000000,0.031553529000000,0.000554244000000,0.000090047000000,0.000048960000000,0.000129158000000,0.000053701000000 +0.000025863000000,0.000031578000000,0.000587429000000,0.031045479000000,0.000017566500000,0.000095182000000,0.000022900000000,0.000037517000000,0.000048961000000,0.000210541000000,0.000052911000000,0.000329849000000,0.000353158000000,0.000544763000000,0.000784960000000,0.031766071000000,0.000569651000000,0.000069899000000,0.000048566000000,0.000128763000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.030154221000000,0.000017566500000,0.000094788000000,0.000023492500000,0.000021715000000,0.000051331000000,0.000210146000000,0.000050146000000,0.000330245000000,0.000557010000000,0.000613899000000,0.000634836000000,0.031476886000000,0.000792072000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000587825000000,0.030135653000000,0.000042653000000,0.000129158000000,0.000023295000000,0.000021320000000,0.000048961000000,0.000211330000000,0.000049356000000,0.000381997000000,0.000331825000000,0.000605603000000,0.000549108000000,0.033072145000000,0.000604417000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000053306000000 +0.000019344500000,0.000031578000000,0.000621405000000,0.030524394000000,0.000017566500000,0.000094788000000,0.000023097500000,0.000020332000000,0.000069899000000,0.000211330000000,0.000050936000000,0.000330245000000,0.000408862000000,0.000545553000000,0.000803133000000,0.034547699000000,0.000623380000000,0.000056467000000,0.000049355000000,0.000127577000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586244000000,0.030197678000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000021912500000,0.000049356000000,0.000210541000000,0.000050936000000,0.000398590000000,0.000331825000000,0.000578738000000,0.000583084000000,0.031378911000000,0.000554244000000,0.000056466000000,0.000064368000000,0.000126788000000,0.000053306000000 +0.000019542000000,0.000045405000000,0.000586245000000,0.030339900000000,0.000017566500000,0.000094788000000,0.000022505000000,0.000022307500000,0.000049750000000,0.000208960000000,0.000050541000000,0.000331430000000,0.000416763000000,0.000614689000000,0.000583083000000,0.031522714000000,0.000569652000000,0.000056467000000,0.000048565000000,0.000128368000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000587429000000,0.030218221000000,0.000017566500000,0.000094393000000,0.000023295000000,0.000020925000000,0.000049751000000,0.000210936000000,0.000050146000000,0.000364220000000,0.000330639000000,0.000543972000000,0.000548713000000,0.031487158000000,0.000623775000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000621010000000,0.030175554000000,0.000017567000000,0.000094393000000,0.000036529500000,0.000021517500000,0.000050146000000,0.000210541000000,0.000050540000000,0.000330639000000,0.000365404000000,0.000630096000000,0.000583084000000,0.031816244000000,0.000628516000000,0.000056467000000,0.000048171000000,0.000195924000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000621800000000,0.031918960000000,0.000017567000000,0.000096763000000,0.000022900000000,0.000020332500000,0.000048961000000,0.000211331000000,0.000050146000000,0.000330639000000,0.000331429000000,0.000629700000000,0.000587430000000,0.031766466000000,0.000638392000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.001085602000000,0.030977529000000,0.000017567000000,0.000165504000000,0.000023492500000,0.000020727500000,0.000049356000000,0.000212121000000,0.000109405000000,0.000805899000000,0.000330639000000,0.000544368000000,0.000549899000000,0.031842713000000,0.000616269000000,0.000056467000000,0.000049750000000,0.000127578000000,0.000087676000000 +0.000034949000000,0.000031578000000,0.000811824000000,0.030744837000000,0.000018159500000,0.000095183000000,0.000022900000000,0.000020727500000,0.000049355000000,0.000211331000000,0.000050935000000,0.000364219000000,0.000360664000000,0.000693701000000,0.000598491000000,0.031331504000000,0.000555430000000,0.000056072000000,0.000048960000000,0.000220417000000,0.000054492000000 +0.000019542000000,0.000031577000000,0.000601651000000,0.030499505000000,0.000017567000000,0.000096763000000,0.000023295000000,0.000021912500000,0.000048961000000,0.000210540000000,0.000049750000000,0.000330244000000,0.000331034000000,0.000862787000000,0.000648664000000,0.031380096000000,0.000570047000000,0.000056862000000,0.000048566000000,0.000129158000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000588614000000,0.030703356000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000020332000000,0.000051331000000,0.000211331000000,0.000050936000000,0.000364219000000,0.000365009000000,0.000578342000000,0.000549504000000,0.031552343000000,0.000649454000000,0.000059627000000,0.000048566000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.030387702000000,0.000027641000000,0.000096763000000,0.000023295000000,0.000020332500000,0.000082936000000,0.000246492000000,0.000050541000000,0.000330244000000,0.000331429000000,0.000544763000000,0.000582688000000,0.031422368000000,0.000623380000000,0.000056072000000,0.000082146000000,0.000200269000000,0.000053702000000 +0.000019542000000,0.000031577000000,0.000587034000000,0.033075700000000,0.000017566500000,0.000111380000000,0.000023295000000,0.000020530000000,0.000049750000000,0.000209751000000,0.000050936000000,0.000330245000000,0.000400960000000,0.000578343000000,0.000643528000000,0.031632540000000,0.000624170000000,0.000057257000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.032326268000000,0.000017369000000,0.000134689000000,0.000023295000000,0.000020529500000,0.000050541000000,0.000209750000000,0.000050146000000,0.000449553000000,0.000331429000000,0.000578738000000,0.000549504000000,0.032017726000000,0.000557010000000,0.000056466000000,0.000048171000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000046195000000,0.000587824000000,0.030425233000000,0.000017369000000,0.000094788000000,0.000032974000000,0.000020332000000,0.000049750000000,0.000210541000000,0.000051331000000,0.000330244000000,0.000331430000000,0.000544367000000,0.000618639000000,0.031509281000000,0.000554244000000,0.000056861000000,0.000048960000000,0.000149702000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.030269184000000,0.000017567000000,0.000094788000000,0.000023492500000,0.000021122000000,0.000048961000000,0.000399775000000,0.000050936000000,0.000364219000000,0.000427035000000,0.000613898000000,0.000605207000000,0.030970023000000,0.000635627000000,0.000057257000000,0.000048565000000,0.000129553000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030251406000000,0.000017369500000,0.000094393000000,0.000023295000000,0.000021517000000,0.000049356000000,0.000210146000000,0.000053306000000,0.000329849000000,0.000331824000000,0.000578738000000,0.000549899000000,0.031630961000000,0.000636417000000,0.000124813000000,0.000048566000000,0.000127973000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000585849000000,0.030026220000000,0.000017369500000,0.000094788000000,0.000022702500000,0.000021319500000,0.000049750000000,0.000212121000000,0.000066738000000,0.000364219000000,0.000347232000000,0.000545158000000,0.000582688000000,0.031927651000000,0.000757305000000,0.000059232000000,0.000048961000000,0.000128368000000,0.000122837000000 +0.000019542500000,0.000031182000000,0.000587429000000,0.030883109000000,0.000017567000000,0.000094787000000,0.000023295000000,0.000021714500000,0.000048961000000,0.000209356000000,0.000050146000000,0.000329849000000,0.000331429000000,0.000578343000000,0.000634047000000,0.031550368000000,0.000633256000000,0.000056862000000,0.000048961000000,0.000126788000000,0.000053701000000 +0.000026258000000,0.000031578000000,0.000587430000000,0.030296443000000,0.000017566500000,0.000094788000000,0.000023295000000,0.000021912500000,0.000050936000000,0.000213306000000,0.000050541000000,0.000331035000000,0.000400565000000,0.000578343000000,0.000549108000000,0.031239455000000,0.000694491000000,0.000056467000000,0.000048961000000,0.000127973000000,0.000054887000000 +0.000019344500000,0.000031578000000,0.000587034000000,0.030268789000000,0.000017369000000,0.000094788000000,0.000023295000000,0.000021122500000,0.000049356000000,0.000210145000000,0.000050146000000,0.000376862000000,0.000331429000000,0.000545158000000,0.000584269000000,0.031352442000000,0.000651825000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000028826000000,0.000031578000000,0.000587430000000,0.030548492000000,0.000017369000000,0.000094787000000,0.000023097500000,0.000021122500000,0.000062788000000,0.000230689000000,0.000050936000000,0.000330245000000,0.000415972000000,0.000578738000000,0.000582293000000,0.031629380000000,0.000554244000000,0.000056071000000,0.000068714000000,0.000136269000000,0.000054096000000 +0.000027048000000,0.000031973000000,0.000588615000000,0.030550467000000,0.000017566500000,0.000094788000000,0.000023295500000,0.000020925000000,0.000049356000000,0.000210145000000,0.000050541000000,0.000364615000000,0.000331429000000,0.000586244000000,0.000548318000000,0.031445281000000,0.000588614000000,0.000056466000000,0.000064763000000,0.000127183000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000845405000000,0.030276689000000,0.000054110000000,0.000094788000000,0.000023295000000,0.000020727500000,0.000052517000000,0.000210541000000,0.000049750000000,0.000330245000000,0.000365800000000,0.000544368000000,0.000582294000000,0.031091306000000,0.000589009000000,0.000056072000000,0.000048171000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.031290417000000,0.000034357000000,0.000094787000000,0.000023690000000,0.000021320000000,0.000049356000000,0.000210540000000,0.000050541000000,0.000348812000000,0.000331430000000,0.000628516000000,0.000824861000000,0.031383652000000,0.000639182000000,0.000056467000000,0.000048566000000,0.000142195000000,0.000053701000000 +0.000019344500000,0.000068318000000,0.000588614000000,0.029987505000000,0.000018357000000,0.000094788000000,0.000059246000000,0.000021320000000,0.000049750000000,0.000210936000000,0.000053307000000,0.000335775000000,0.000331035000000,0.000578343000000,0.000626541000000,0.031568146000000,0.000554244000000,0.000090047000000,0.000048961000000,0.000128368000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000572022000000,0.030939998000000,0.000024678000000,0.000165504000000,0.000040283000000,0.000020727500000,0.000052516000000,0.000210146000000,0.000050145000000,0.000456664000000,0.000364615000000,0.000544367000000,0.000549899000000,0.032446367000000,0.000555429000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030448937000000,0.000017567000000,0.000107430000000,0.000023888000000,0.000020530000000,0.000056467000000,0.000211331000000,0.000050936000000,0.000335381000000,0.000331825000000,0.000579133000000,0.000595725000000,0.031274615000000,0.000588614000000,0.000056467000000,0.000049355000000,0.000232269000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000622985000000,0.030373085000000,0.000017369500000,0.000095183000000,0.000023690000000,0.000020529500000,0.000050146000000,0.000210146000000,0.000050541000000,0.000334590000000,0.000509997000000,0.000628911000000,0.000632862000000,0.031546812000000,0.000622985000000,0.000056072000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000053912500000,0.000031973000000,0.000587824000000,0.031190862000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000021517500000,0.000049751000000,0.000244911000000,0.000050541000000,0.000412417000000,0.000692910000000,0.000544762000000,0.000549504000000,0.032237775000000,0.000587824000000,0.000056072000000,0.000048566000000,0.000128368000000,0.000054887000000 +0.000037320000000,0.000031973000000,0.000587034000000,0.030403110000000,0.000017567000000,0.000096368000000,0.000022702500000,0.000031394000000,0.000049751000000,0.000210936000000,0.000053306000000,0.000334590000000,0.000533701000000,0.000578738000000,0.000595330000000,0.031506121000000,0.000554244000000,0.000056467000000,0.000048961000000,0.000174591000000,0.000054886000000 +0.000027245500000,0.000031578000000,0.000553454000000,0.030059011000000,0.000027838500000,0.000095182000000,0.000023097500000,0.000020925000000,0.000048961000000,0.000209355000000,0.000050146000000,0.000368960000000,0.000385158000000,0.000591775000000,0.000582293000000,0.031553133000000,0.000589010000000,0.000056071000000,0.000082146000000,0.000127183000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000553849000000,0.030552443000000,0.000017567000000,0.000094788000000,0.000023295500000,0.000021517500000,0.000048961000000,0.000210936000000,0.000049355000000,0.000334985000000,0.000540417000000,0.000543973000000,0.000549504000000,0.033384243000000,0.000622195000000,0.000056467000000,0.000049356000000,0.000130344000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000779825000000,0.030902467000000,0.000017369500000,0.000094788000000,0.000022307500000,0.000020530000000,0.000049355000000,0.000224763000000,0.000050936000000,0.000368960000000,0.000331430000000,0.000577948000000,0.000582689000000,0.033650119000000,0.000589405000000,0.000056467000000,0.000048960000000,0.000161158000000,0.000054491000000 +0.000019542000000,0.000031183000000,0.000586639000000,0.030493974000000,0.000017369500000,0.000095578000000,0.000022900000000,0.000021517500000,0.000049356000000,0.000210146000000,0.000050541000000,0.000334986000000,0.000331430000000,0.000577553000000,0.000583478000000,0.031461084000000,0.000556219000000,0.000056467000000,0.000048565000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000646689000000,0.030546122000000,0.000017369500000,0.000094788000000,0.000023493000000,0.000021320000000,0.000049751000000,0.000211726000000,0.000051331000000,0.000334590000000,0.000492615000000,0.000542788000000,0.000549898000000,0.031700887000000,0.000554639000000,0.000069504000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000640762000000,0.030854664000000,0.000017567000000,0.000094788000000,0.000023493000000,0.000020727500000,0.000049751000000,0.000246096000000,0.000050146000000,0.000384367000000,0.000333010000000,0.000578343000000,0.000595331000000,0.031704442000000,0.000722541000000,0.000056862000000,0.000048566000000,0.000130344000000,0.000092418000000 +0.000029221000000,0.000031973000000,0.000553454000000,0.030235604000000,0.000017369000000,0.000095577000000,0.000023097500000,0.000021320000000,0.000049751000000,0.000210146000000,0.000050936000000,0.000335380000000,0.000365405000000,0.000563726000000,0.000589799000000,0.030891801000000,0.000566491000000,0.000056072000000,0.000048961000000,0.000127973000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000581899000000,0.031874713000000,0.000017369000000,0.000095183000000,0.000022505000000,0.000020925000000,0.000049750000000,0.000212516000000,0.000050936000000,0.000384763000000,0.000332615000000,0.000543972000000,0.000549108000000,0.031406171000000,0.000588220000000,0.000056467000000,0.000048565000000,0.000129553000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000709503000000,0.030543751000000,0.000017369000000,0.000128368000000,0.000023295000000,0.000020530000000,0.000049356000000,0.000261504000000,0.000050541000000,0.000334985000000,0.000365404000000,0.000704763000000,0.000803528000000,0.031483603000000,0.000699627000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000621799000000,0.030390072000000,0.000017566500000,0.000094787000000,0.000022702500000,0.000021517500000,0.000082936000000,0.000212516000000,0.000050146000000,0.000403330000000,0.000331825000000,0.000578343000000,0.000583083000000,0.031216541000000,0.000587824000000,0.000056466000000,0.000048566000000,0.000160763000000,0.000055281000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.030778023000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000037320000000,0.000065949000000,0.000209356000000,0.000050541000000,0.000334985000000,0.000332220000000,0.000543578000000,0.000583084000000,0.031336245000000,0.000554244000000,0.000056466000000,0.000103479000000,0.000127578000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000553454000000,0.031220887000000,0.000017369000000,0.000094788000000,0.000040085000000,0.000021517500000,0.000049355000000,0.000210145000000,0.000050936000000,0.000335380000000,0.000345652000000,0.000591775000000,0.000549504000000,0.031636491000000,0.000554639000000,0.000058047000000,0.000048961000000,0.000133899000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000566491000000,0.030258912000000,0.000024282500000,0.000096763000000,0.000023295000000,0.000021517000000,0.000049356000000,0.000210146000000,0.000050936000000,0.000384763000000,0.000331429000000,0.000626145000000,0.000582293000000,0.030811208000000,0.000604812000000,0.000056071000000,0.000048566000000,0.000160763000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.033343947000000,0.000017566500000,0.000094393000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000578738000000,0.000050146000000,0.000334985000000,0.000399380000000,0.000544367000000,0.000596121000000,0.031440541000000,0.000597306000000,0.000090047000000,0.000049356000000,0.000127182000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000867923000000,0.032664836000000,0.000017566500000,0.000094787000000,0.000022702500000,0.000020332000000,0.000049355000000,0.000210146000000,0.000050541000000,0.000368565000000,0.000331035000000,0.000639182000000,0.000548318000000,0.031382467000000,0.000555035000000,0.000056071000000,0.000049356000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000595725000000,0.030691110000000,0.000017566500000,0.000163529000000,0.000022702500000,0.000022110000000,0.000049356000000,0.000211331000000,0.000049355000000,0.000334985000000,0.000365405000000,0.000577948000000,0.000583479000000,0.032126368000000,0.000554639000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000068318000000 +0.000019542000000,0.000031973000000,0.000587824000000,0.030873628000000,0.000017369000000,0.000096763000000,0.000023097500000,0.000020332000000,0.000048961000000,0.000211726000000,0.000096763000000,0.000403331000000,0.000331430000000,0.000595331000000,0.000584269000000,0.031348097000000,0.000587825000000,0.000057257000000,0.000048566000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000552269000000,0.030430368000000,0.000017369500000,0.000096763000000,0.000022703000000,0.000021320000000,0.000049355000000,0.000210540000000,0.000050936000000,0.000335381000000,0.000331430000000,0.000612318000000,0.000615873000000,0.031810714000000,0.000603231000000,0.000056072000000,0.000048961000000,0.000129948000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.030328048000000,0.000018554500000,0.000094788000000,0.000023295000000,0.000021122500000,0.000069109000000,0.000210541000000,0.000050145000000,0.000334985000000,0.000425059000000,0.000578738000000,0.000581899000000,0.031194023000000,0.000589800000000,0.000056862000000,0.000048960000000,0.000127972000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000587034000000,0.031244196000000,0.000017566500000,0.000094788000000,0.000022505000000,0.000020925000000,0.000052516000000,0.000212121000000,0.000050541000000,0.000369750000000,0.000331824000000,0.000544367000000,0.000582293000000,0.031862071000000,0.000554639000000,0.000056862000000,0.000048565000000,0.000216071000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000587824000000,0.030458813000000,0.000017566500000,0.000095183000000,0.000022900500000,0.000020530000000,0.000049751000000,0.000210146000000,0.000049751000000,0.000335381000000,0.000365010000000,0.000577553000000,0.000549504000000,0.031368245000000,0.000553454000000,0.000056467000000,0.000081751000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030234814000000,0.000017369000000,0.000128368000000,0.000039493000000,0.000027443500000,0.000049355000000,0.000210540000000,0.000050936000000,0.000560960000000,0.000331825000000,0.000613108000000,0.000581898000000,0.031831652000000,0.000624565000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000553849000000,0.030441430000000,0.000018159000000,0.000095183000000,0.000023097500000,0.000020530000000,0.000048961000000,0.000209751000000,0.000050936000000,0.000348813000000,0.000402146000000,0.000544763000000,0.000747824000000,0.031602911000000,0.000602047000000,0.000056467000000,0.000048171000000,0.000196319000000,0.000054097000000 +0.000019344500000,0.000031973000000,0.000588615000000,0.030618813000000,0.000026850500000,0.000095183000000,0.000023690000000,0.000021715000000,0.000049751000000,0.000244121000000,0.000050541000000,0.000369355000000,0.000331430000000,0.000578343000000,0.000639183000000,0.032136638000000,0.000588614000000,0.000126788000000,0.000048565000000,0.000130343000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000588220000000,0.030197677000000,0.000017369000000,0.000094392000000,0.000023887500000,0.000020332000000,0.000049355000000,0.000209750000000,0.000050541000000,0.000334590000000,0.000331825000000,0.000594145000000,0.000549108000000,0.031435405000000,0.000555034000000,0.000060022000000,0.000049750000000,0.000129553000000,0.000088862000000 +0.000020530000000,0.000031578000000,0.000623775000000,0.030495159000000,0.000017566500000,0.000096763000000,0.000022307500000,0.000020529500000,0.000049356000000,0.000210146000000,0.000070689000000,0.000415183000000,0.000345652000000,0.000543973000000,0.000620614000000,0.031705627000000,0.000554244000000,0.000056072000000,0.000048171000000,0.000204615000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553849000000,0.030652788000000,0.000017566500000,0.000094788000000,0.000022505000000,0.000020529500000,0.000049356000000,0.000251232000000,0.000052911000000,0.000334985000000,0.000536862000000,0.000871874000000,0.000632467000000,0.032717380000000,0.000601651000000,0.000056072000000,0.000048171000000,0.000127578000000,0.000052517000000 +0.000019542000000,0.000045010000000,0.000566096000000,0.031164393000000,0.000017566500000,0.000094787000000,0.000022900000000,0.000020727000000,0.000048961000000,0.000208961000000,0.000050541000000,0.000334985000000,0.000334590000000,0.000613504000000,0.000549503000000,0.031704837000000,0.000587824000000,0.000056862000000,0.000048565000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.031057727000000,0.000017369000000,0.000130739000000,0.000023097500000,0.000020530000000,0.000082936000000,0.000209751000000,0.000052121000000,0.000337355000000,0.000331824000000,0.000612319000000,0.000639577000000,0.031444491000000,0.000554244000000,0.000056072000000,0.000048565000000,0.000145751000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000602047000000,0.030903653000000,0.000017369000000,0.000095183000000,0.000023295000000,0.000021715000000,0.000048960000000,0.000208566000000,0.000050541000000,0.000334195000000,0.000365800000000,0.000543973000000,0.000631281000000,0.031378516000000,0.000554245000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000573207000000,0.030165283000000,0.000017567000000,0.000094788000000,0.000022702500000,0.000020530000000,0.000048961000000,0.000216862000000,0.000051331000000,0.000368960000000,0.000331825000000,0.000614688000000,0.000550689000000,0.031512442000000,0.000587824000000,0.000056071000000,0.000091232000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000552269000000,0.030448146000000,0.000017369500000,0.000095183000000,0.000022702500000,0.000021320000000,0.000050541000000,0.000211331000000,0.000052121000000,0.000334195000000,0.000580318000000,0.000613108000000,0.000616664000000,0.031518763000000,0.000587824000000,0.000089256000000,0.000049356000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.031075504000000,0.000017369500000,0.000097158000000,0.000022702500000,0.000020924500000,0.000049356000000,0.000209355000000,0.000049356000000,0.000368960000000,0.000366195000000,0.000544367000000,0.000618244000000,0.034167650000000,0.000609552000000,0.000056466000000,0.000050541000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000587034000000,0.030550072000000,0.000017369000000,0.000094787000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000212516000000,0.000052516000000,0.000334985000000,0.000365405000000,0.000613898000000,0.000548713000000,0.033982366000000,0.000554244000000,0.000056071000000,0.000048171000000,0.000127578000000,0.000056072000000 +0.000019542000000,0.000031578000000,0.000621404000000,0.031426713000000,0.000017369000000,0.000094788000000,0.000023097500000,0.000021517500000,0.000049355000000,0.000245701000000,0.000049356000000,0.000335380000000,0.000331430000000,0.000613108000000,0.000579923000000,0.031928046000000,0.000698046000000,0.000056467000000,0.000049356000000,0.000129949000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.030348986000000,0.000034949500000,0.000126393000000,0.000023295000000,0.000020727000000,0.000049751000000,0.000211726000000,0.000070294000000,0.000334590000000,0.000378837000000,0.000543973000000,0.000616269000000,0.031844294000000,0.000587824000000,0.000056862000000,0.000129553000000,0.000142590000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030429183000000,0.000017567000000,0.000094788000000,0.000023295000000,0.000020925000000,0.000051331000000,0.000210935000000,0.000050541000000,0.000334985000000,0.000331429000000,0.000680269000000,0.000656565000000,0.031552738000000,0.000623380000000,0.000056467000000,0.000075824000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000639972000000,0.030661084000000,0.000017567000000,0.000094788000000,0.000023097500000,0.000020530000000,0.000049751000000,0.000210541000000,0.000050541000000,0.000370146000000,0.000331430000000,0.000615479000000,0.000838688000000,0.031282516000000,0.000588615000000,0.000056467000000,0.000048565000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000045405000000,0.000639577000000,0.030934467000000,0.000017567000000,0.000094788000000,0.000023097500000,0.000021517500000,0.000081751000000,0.000211331000000,0.000051331000000,0.000335380000000,0.000331034000000,0.000543972000000,0.000548713000000,0.031979800000000,0.000604812000000,0.000056467000000,0.000048565000000,0.000163133000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000641553000000,0.031638071000000,0.000017567000000,0.000095183000000,0.000023295000000,0.000021517500000,0.000049751000000,0.000211331000000,0.000050146000000,0.000421898000000,0.000331429000000,0.000558590000000,0.000583479000000,0.031637282000000,0.000554639000000,0.000056467000000,0.000082146000000,0.000126787000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000602442000000,0.031235504000000,0.000017962000000,0.000094788000000,0.000022900000000,0.000020530000000,0.000049356000000,0.000211726000000,0.000050541000000,0.000335775000000,0.000380813000000,0.000613504000000,0.000617849000000,0.031384837000000,0.000588615000000,0.000075824000000,0.000049751000000,0.000127578000000,0.000054096000000 +0.000019344500000,0.000031577000000,0.000625750000000,0.030387307000000,0.000017369500000,0.000108615000000,0.000022307500000,0.000021320000000,0.000049355000000,0.000234639000000,0.000050541000000,0.000334985000000,0.000331034000000,0.000544763000000,0.000548713000000,0.031457528000000,0.000623379000000,0.000056072000000,0.000048566000000,0.000129553000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030790664000000,0.000017369000000,0.000094788000000,0.000023295500000,0.000021122500000,0.000049356000000,0.000209356000000,0.000050541000000,0.000334985000000,0.000365404000000,0.000543578000000,0.000582293000000,0.031638467000000,0.000587825000000,0.000056862000000,0.000048171000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.030597874000000,0.000017369000000,0.000094788000000,0.000023295500000,0.000028826000000,0.000050541000000,0.000210145000000,0.000049356000000,0.000336961000000,0.000333010000000,0.000613108000000,0.000582689000000,0.031524293000000,0.000555430000000,0.000059232000000,0.000048170000000,0.000127578000000,0.000054097000000 +0.000019542500000,0.000031578000000,0.000621800000000,0.031107109000000,0.000017961500000,0.000095183000000,0.000022702500000,0.000020332500000,0.000050146000000,0.000210936000000,0.000050936000000,0.000394639000000,0.000331429000000,0.000599676000000,0.000549108000000,0.031255652000000,0.000570442000000,0.000056071000000,0.000048566000000,0.000128764000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000574393000000,0.033060293000000,0.000017369000000,0.000094787000000,0.000033369000000,0.000021122500000,0.000048961000000,0.000246491000000,0.000050541000000,0.000334590000000,0.000332220000000,0.000544368000000,0.000582293000000,0.031768047000000,0.000622590000000,0.000056072000000,0.000049356000000,0.000464565000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031056146000000,0.000017369000000,0.000095183000000,0.000029813500000,0.000020529500000,0.000049355000000,0.000216467000000,0.000050541000000,0.000381602000000,0.000331034000000,0.000614294000000,0.000582689000000,0.032204194000000,0.000797997000000,0.000056072000000,0.000048566000000,0.000178541000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000602441000000,0.032586614000000,0.000017567000000,0.000115331000000,0.000023295000000,0.000021517000000,0.000082936000000,0.000210146000000,0.000049751000000,0.000334985000000,0.000365009000000,0.000656170000000,0.000549109000000,0.031017825000000,0.000604812000000,0.000056467000000,0.000048565000000,0.000164713000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000588219000000,0.030382171000000,0.000017369500000,0.000095182000000,0.000023295000000,0.000020332000000,0.000048960000000,0.000209355000000,0.000050145000000,0.000335380000000,0.000331429000000,0.000627725000000,0.000583479000000,0.032421874000000,0.000587824000000,0.000057257000000,0.000048960000000,0.000128368000000,0.000053701000000 +0.000019344500000,0.000067528000000,0.000637602000000,0.030642122000000,0.000017566500000,0.000096763000000,0.000023295000000,0.000021517000000,0.000048961000000,0.000210541000000,0.000052121000000,0.000334590000000,0.000378836000000,0.000544763000000,0.000589800000000,0.031687454000000,0.000554639000000,0.000056467000000,0.000117307000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031058121000000,0.000017566500000,0.000096763000000,0.000023493000000,0.000020529500000,0.000049751000000,0.000210936000000,0.000050541000000,0.000334986000000,0.000331429000000,0.000577552000000,0.000549108000000,0.031269084000000,0.000557800000000,0.000059232000000,0.000049356000000,0.000146145000000,0.000054097000000 +0.000027246000000,0.000031578000000,0.000554639000000,0.030291307000000,0.000017369000000,0.000095183000000,0.000032184000000,0.000020529500000,0.000049751000000,0.000212516000000,0.000049750000000,0.000368565000000,0.000331429000000,0.000543973000000,0.000619034000000,0.031411306000000,0.000595330000000,0.000056861000000,0.000048961000000,0.000129553000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031573677000000,0.000017369000000,0.000097158000000,0.000023097500000,0.000020530000000,0.000048961000000,0.000210935000000,0.000049356000000,0.000334590000000,0.000373701000000,0.000546343000000,0.000582689000000,0.031589084000000,0.000587825000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000594541000000,0.030505826000000,0.000017962000000,0.000094788000000,0.000023295000000,0.000037912500000,0.000049355000000,0.000212516000000,0.000050936000000,0.000368961000000,0.000331430000000,0.000577553000000,0.000549108000000,0.031601725000000,0.000555430000000,0.000056467000000,0.000048565000000,0.000126787000000,0.000088071000000 +0.000019344500000,0.000031578000000,0.000553058000000,0.030535456000000,0.000017567000000,0.000189602000000,0.000023097500000,0.000021517500000,0.000048961000000,0.000209751000000,0.000050936000000,0.000336171000000,0.000413997000000,0.000545157000000,0.000635627000000,0.031415257000000,0.000554244000000,0.000056862000000,0.000048960000000,0.000129948000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000759676000000,0.030880739000000,0.000017566500000,0.000115726000000,0.000022703000000,0.000021517500000,0.000049356000000,0.000211331000000,0.000049751000000,0.000334985000000,0.000331825000000,0.000628516000000,0.000655379000000,0.031460294000000,0.000649849000000,0.000056467000000,0.000048961000000,0.000129949000000,0.000053701000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.030409035000000,0.000017566500000,0.000094788000000,0.000023097500000,0.000021517500000,0.000049355000000,0.000251233000000,0.000066739000000,0.000385158000000,0.000431775000000,0.000577947000000,0.000548319000000,0.031775948000000,0.000587824000000,0.000056072000000,0.000049356000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.030420097000000,0.000017566500000,0.000095182000000,0.000023295000000,0.000020332500000,0.000062788000000,0.000212911000000,0.000050540000000,0.000334985000000,0.000570441000000,0.000544368000000,0.000582689000000,0.031945429000000,0.000588614000000,0.000056467000000,0.000048171000000,0.000160763000000,0.000053307000000 +0.000019542000000,0.000031578000000,0.000603231000000,0.030891800000000,0.000031196000000,0.000095183000000,0.000023097500000,0.000020727500000,0.000049751000000,0.000210146000000,0.000053307000000,0.000383577000000,0.000437306000000,0.000584664000000,0.000583083000000,0.032069083000000,0.000554639000000,0.000056466000000,0.000049355000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000621799000000,0.030109974000000,0.000017567000000,0.000094392000000,0.000022703000000,0.000022307500000,0.000049356000000,0.000210540000000,0.000050541000000,0.000335380000000,0.000331034000000,0.000631676000000,0.000548713000000,0.031331503000000,0.000554639000000,0.000092812000000,0.000061602000000,0.000130739000000,0.000056072000000 +0.000019542000000,0.000058442000000,0.000587429000000,0.030341875000000,0.000017369000000,0.000094392000000,0.000022900000000,0.000031196500000,0.000049356000000,0.000211331000000,0.000049750000000,0.000368961000000,0.000381208000000,0.000544367000000,0.000596121000000,0.031426318000000,0.000637998000000,0.000056467000000,0.000048960000000,0.000146540000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030961726000000,0.000017369000000,0.000096763000000,0.000023097500000,0.000027838500000,0.000048961000000,0.000212516000000,0.000051331000000,0.000338936000000,0.000331430000000,0.000558195000000,0.000599676000000,0.031544442000000,0.000588615000000,0.000056467000000,0.000048960000000,0.000144566000000,0.000054096000000 +0.000036332500000,0.000031578000000,0.000553849000000,0.030845578000000,0.000017566500000,0.000095183000000,0.000023295500000,0.000021320000000,0.000049355000000,0.000210541000000,0.000050146000000,0.000334590000000,0.000331430000000,0.000614294000000,0.000548713000000,0.031372195000000,0.000589405000000,0.000056072000000,0.000048566000000,0.000128763000000,0.000053702000000 +0.000019542000000,0.000031973000000,0.000604417000000,0.030402715000000,0.000017567000000,0.000095182000000,0.000022505000000,0.000056283000000,0.000052516000000,0.000210540000000,0.000052911000000,0.000334590000000,0.000331825000000,0.000544762000000,0.000617849000000,0.033571107000000,0.000554244000000,0.000056467000000,0.000049751000000,0.000176565000000,0.000087676000000 +0.000019344500000,0.000031973000000,0.000636022000000,0.031106319000000,0.000017369500000,0.000094788000000,0.000023097500000,0.000029418500000,0.000049356000000,0.000210145000000,0.000050146000000,0.000336565000000,0.000331430000000,0.000558590000000,0.000597701000000,0.033577033000000,0.000568071000000,0.000055282000000,0.000048565000000,0.000126787000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.030152246000000,0.000017567000000,0.000096763000000,0.000022307500000,0.000027443500000,0.000057257000000,0.000214887000000,0.000083726000000,0.000369751000000,0.000381207000000,0.000592170000000,0.000548713000000,0.032266614000000,0.000588614000000,0.000056466000000,0.000048565000000,0.000134293000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.030706516000000,0.000017567000000,0.000147331000000,0.000022505000000,0.000020332000000,0.000068713000000,0.000210541000000,0.000050541000000,0.000334985000000,0.000331034000000,0.000544762000000,0.000901108000000,0.031129628000000,0.000588219000000,0.000056466000000,0.000048565000000,0.000161949000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030870467000000,0.000017369500000,0.000111380000000,0.000022900000000,0.000020727000000,0.000064368000000,0.000250047000000,0.000049356000000,0.000439281000000,0.000365800000000,0.000579133000000,0.000582688000000,0.031700492000000,0.000555825000000,0.000056467000000,0.000049356000000,0.000126787000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000587034000000,0.030245875000000,0.000017369500000,0.000096763000000,0.000023492500000,0.000020924500000,0.000049355000000,0.000387134000000,0.000051726000000,0.000349997000000,0.000331034000000,0.000577947000000,0.000583084000000,0.031531405000000,0.000555034000000,0.000103479000000,0.000048566000000,0.000126393000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000622985000000,0.030428788000000,0.000017567000000,0.000094393000000,0.000022703000000,0.000020332000000,0.000049356000000,0.000208960000000,0.000049751000000,0.000369356000000,0.000332220000000,0.000545158000000,0.000549108000000,0.031964788000000,0.000589404000000,0.000056072000000,0.000063578000000,0.000129553000000,0.000053702000000 +0.000019542000000,0.000078195000000,0.000587430000000,0.030479752000000,0.000032579000000,0.000094788000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000212516000000,0.000049750000000,0.000344467000000,0.000346047000000,0.000577553000000,0.000615874000000,0.031519948000000,0.000596910000000,0.000056467000000,0.000048566000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031973000000,0.000555429000000,0.029898221000000,0.000017566500000,0.000094788000000,0.000032381500000,0.000020530000000,0.000049355000000,0.000210146000000,0.000051331000000,0.000334590000000,0.000331824000000,0.000614689000000,0.000590195000000,0.031328739000000,0.000592170000000,0.000056072000000,0.000049751000000,0.000127578000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000798393000000,0.032671157000000,0.000017369000000,0.000094393000000,0.000023295500000,0.000040480500000,0.000049751000000,0.000210146000000,0.000049751000000,0.000418738000000,0.000365405000000,0.000544368000000,0.000549899000000,0.031188886000000,0.000582688000000,0.000056467000000,0.000048565000000,0.000127577000000,0.000054492000000 +0.000038702500000,0.000031578000000,0.000587430000000,0.030394418000000,0.000017566500000,0.000094787000000,0.000022702500000,0.000020529500000,0.000049751000000,0.000210540000000,0.000050541000000,0.000334985000000,0.000331429000000,0.000591380000000,0.000597306000000,0.031717874000000,0.000555824000000,0.000056466000000,0.000049751000000,0.000127578000000,0.000068713000000 +0.000019542000000,0.000031578000000,0.000639578000000,0.030151061000000,0.000017369000000,0.000095183000000,0.000022307500000,0.000020530000000,0.000050936000000,0.000212911000000,0.000051331000000,0.000368565000000,0.000365010000000,0.000578738000000,0.000667626000000,0.031425134000000,0.000588219000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000588219000000,0.030351357000000,0.000017567000000,0.000095183000000,0.000023295500000,0.000020727500000,0.000049356000000,0.000210540000000,0.000076220000000,0.000334985000000,0.000331035000000,0.000595726000000,0.000703577000000,0.031444096000000,0.000587429000000,0.000059233000000,0.000049356000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000555034000000,0.030841627000000,0.000018159500000,0.000094788000000,0.000022900000000,0.000020530000000,0.000083331000000,0.000212121000000,0.000050936000000,0.000402936000000,0.000331035000000,0.000694491000000,0.000548713000000,0.031401034000000,0.000574392000000,0.000056466000000,0.000048171000000,0.000160763000000,0.000054097000000 +0.000019344500000,0.000031183000000,0.000553059000000,0.030095752000000,0.000017369000000,0.000097158000000,0.000023097500000,0.000020530000000,0.000051726000000,0.000211726000000,0.000050936000000,0.000334985000000,0.000582293000000,0.000716219000000,0.000583084000000,0.031335850000000,0.000555034000000,0.000118491000000,0.000050146000000,0.000127183000000,0.000070689000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.033124292000000,0.000017369500000,0.000094787000000,0.000022900000000,0.000020332000000,0.000052121000000,0.000217257000000,0.000050936000000,0.000334986000000,0.000642738000000,0.000578343000000,0.000619825000000,0.031267899000000,0.000986442000000,0.000070294000000,0.000048960000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000587824000000,0.032753330000000,0.000017567000000,0.000109800000000,0.000022900000000,0.000020332000000,0.000049355000000,0.000213701000000,0.000050146000000,0.000351182000000,0.000508022000000,0.000543972000000,0.000549503000000,0.031344936000000,0.000554640000000,0.000056467000000,0.000095182000000,0.000134689000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000552663000000,0.031988096000000,0.000017567000000,0.000094393000000,0.000022505000000,0.000020924500000,0.000054887000000,0.000211331000000,0.000049750000000,0.000336170000000,0.000477207000000,0.000584664000000,0.000582688000000,0.031792145000000,0.000588614000000,0.000056861000000,0.000049355000000,0.000127578000000,0.000053702000000 +0.000019542500000,0.000066343000000,0.000553454000000,0.031877478000000,0.000034357000000,0.000097553000000,0.000042258000000,0.000021517000000,0.000049356000000,0.000211331000000,0.000052121000000,0.000404121000000,0.000460615000000,0.000590590000000,0.000582294000000,0.032477181000000,0.000587824000000,0.000056466000000,0.000048565000000,0.000127578000000,0.000053701000000 +0.000019739500000,0.000031183000000,0.000587824000000,0.031725380000000,0.000017567000000,0.000095183000000,0.000022505000000,0.000020332000000,0.000049355000000,0.000209356000000,0.000050936000000,0.000334985000000,0.000351578000000,0.000543577000000,0.000549504000000,0.031651504000000,0.000588614000000,0.000059628000000,0.000048961000000,0.000127183000000,0.000142195000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031096442000000,0.000017369500000,0.000096763000000,0.000023295500000,0.000028233000000,0.000049356000000,0.000210541000000,0.000050540000000,0.000369750000000,0.000351973000000,0.000577553000000,0.000788910000000,0.031499800000000,0.000554244000000,0.000056862000000,0.000048961000000,0.000127578000000,0.000055282000000 +0.000026850500000,0.000031578000000,0.000622195000000,0.031602120000000,0.000017567000000,0.000094787000000,0.000022307500000,0.000020924500000,0.000049356000000,0.000208565000000,0.000051726000000,0.000334985000000,0.000416368000000,0.000578738000000,0.000632071000000,0.031857331000000,0.000705553000000,0.000056467000000,0.000048566000000,0.000126788000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031403010000000,0.000017567000000,0.000114936000000,0.000023492500000,0.000021320000000,0.000048960000000,0.000246886000000,0.000070689000000,0.000334590000000,0.000386738000000,0.000544368000000,0.000550293000000,0.031769232000000,0.000600467000000,0.000056071000000,0.000048565000000,0.000127578000000,0.000054887000000 +0.000019344500000,0.000031577000000,0.000552664000000,0.031996392000000,0.000017567000000,0.000094788000000,0.000023492500000,0.000021517500000,0.000079380000000,0.000210146000000,0.000049751000000,0.000564516000000,0.000351183000000,0.000578738000000,0.000548714000000,0.031553923000000,0.000636812000000,0.000090442000000,0.000048170000000,0.000161158000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000587034000000,0.031380097000000,0.000017567000000,0.000095183000000,0.000023690500000,0.000020530000000,0.000050146000000,0.000210936000000,0.000050541000000,0.000370146000000,0.000351578000000,0.000563331000000,0.000598491000000,0.031561035000000,0.000588220000000,0.000056467000000,0.000048171000000,0.000129553000000,0.000053701000000 +0.000019344500000,0.000031577000000,0.000604022000000,0.031942663000000,0.000017369000000,0.000094787000000,0.000022900000000,0.000021320000000,0.000050145000000,0.000210541000000,0.000050936000000,0.000334985000000,0.000351578000000,0.000544762000000,0.000583874000000,0.031098813000000,0.000569257000000,0.000056072000000,0.000049356000000,0.000127183000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000552664000000,0.031336245000000,0.000017566500000,0.000095183000000,0.000022900000000,0.000020332000000,0.000049751000000,0.000211330000000,0.000050541000000,0.000334985000000,0.000351578000000,0.000577553000000,0.000549504000000,0.031760541000000,0.000555034000000,0.000056071000000,0.000083331000000,0.000152467000000,0.000054491000000 +0.000019344500000,0.000031577000000,0.000554245000000,0.030944738000000,0.000017566500000,0.000094788000000,0.000022900000000,0.000020529500000,0.000048960000000,0.000208960000000,0.000053701000000,0.000347627000000,0.000427824000000,0.000563726000000,0.000618244000000,0.031882220000000,0.000690935000000,0.000056467000000,0.000149307000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000631676000000,0.032059207000000,0.000017566500000,0.000094787000000,0.000047591500000,0.000020332000000,0.000049751000000,0.000210936000000,0.000050146000000,0.000334985000000,0.000381207000000,0.000544367000000,0.000619034000000,0.031169134000000,0.000639182000000,0.000056862000000,0.000065158000000,0.000127578000000,0.000088072000000 +0.000019344500000,0.000046590000000,0.000587034000000,0.031757380000000,0.000017566500000,0.000128368000000,0.000022900000000,0.000020727500000,0.000049751000000,0.000210540000000,0.000049751000000,0.000368565000000,0.000353158000000,0.000613503000000,0.000549503000000,0.031457134000000,0.000588219000000,0.000056072000000,0.000063578000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000587824000000,0.031738812000000,0.000017566500000,0.000094788000000,0.000022703000000,0.000021122500000,0.000048960000000,0.000212516000000,0.000050935000000,0.000335380000000,0.000351182000000,0.000544763000000,0.000645108000000,0.031867997000000,0.000555429000000,0.000056467000000,0.000048565000000,0.000130739000000,0.000054097000000 +0.000019344500000,0.000031183000000,0.000553059000000,0.031515998000000,0.000017566500000,0.000094787000000,0.000023097500000,0.000021319500000,0.000049751000000,0.000212911000000,0.000049751000000,0.000369355000000,0.000384368000000,0.000546343000000,0.000848960000000,0.032490614000000,0.000554639000000,0.000056862000000,0.000048565000000,0.000129553000000,0.000054096000000 +0.000039295000000,0.000031578000000,0.000567281000000,0.032159947000000,0.000017566500000,0.000094393000000,0.000022900000000,0.000021319500000,0.000082541000000,0.000210541000000,0.000106640000000,0.000334590000000,0.000351972000000,0.000596911000000,0.000647873000000,0.033824341000000,0.000588220000000,0.000056071000000,0.000048171000000,0.000129553000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.031894466000000,0.000017566500000,0.000094788000000,0.000022703000000,0.000020332000000,0.000050541000000,0.000213306000000,0.000049751000000,0.000334590000000,0.000351973000000,0.000545553000000,0.000550294000000,0.031967157000000,0.000639183000000,0.000070689000000,0.000083331000000,0.000191182000000,0.000054491000000 +0.000019542000000,0.000031577000000,0.000679874000000,0.031837973000000,0.000017566500000,0.000094393000000,0.000022702500000,0.000021517000000,0.000049355000000,0.000210146000000,0.000049751000000,0.000368170000000,0.000534887000000,0.000545553000000,0.000594936000000,0.032133478000000,0.000630096000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000572022000000,0.032164293000000,0.000017369000000,0.000098343000000,0.000022900000000,0.000020529500000,0.000049751000000,0.000209750000000,0.000050541000000,0.000334590000000,0.000351973000000,0.000578343000000,0.000581898000000,0.031808343000000,0.000554639000000,0.000056467000000,0.000049751000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031941479000000,0.000027245500000,0.000110590000000,0.000023493000000,0.000020530000000,0.000049356000000,0.000214492000000,0.000050145000000,0.000424269000000,0.000351577000000,0.000544763000000,0.000549503000000,0.031987701000000,0.000554639000000,0.000056072000000,0.000048961000000,0.000302590000000,0.000054096000000 +0.000019542000000,0.000032368000000,0.000647083000000,0.031802022000000,0.000024085500000,0.000095183000000,0.000023493000000,0.000020925000000,0.000049355000000,0.000211330000000,0.000050936000000,0.000334590000000,0.000352368000000,0.000546343000000,0.000563331000000,0.031378516000000,0.000589010000000,0.000056467000000,0.000048565000000,0.000145355000000,0.000054097000000 +0.000019542500000,0.000031578000000,0.000624565000000,0.031672837000000,0.000017567000000,0.000094788000000,0.000029418500000,0.000020332500000,0.000049751000000,0.000210935000000,0.000050146000000,0.000368565000000,0.000352368000000,0.000578738000000,0.000632467000000,0.031404985000000,0.000637207000000,0.000056467000000,0.000048566000000,0.000127182000000,0.000068319000000 +0.000019344500000,0.000031577000000,0.000587429000000,0.031427108000000,0.000017567000000,0.000095577000000,0.000023295000000,0.000020529500000,0.000050540000000,0.000210936000000,0.000050541000000,0.000335380000000,0.000351578000000,0.000543973000000,0.000627330000000,0.031777528000000,0.000622985000000,0.000056466000000,0.000048566000000,0.000127578000000,0.000054097000000 +0.000019542500000,0.000086492000000,0.000553455000000,0.032986416000000,0.000017369000000,0.000095183000000,0.000022702500000,0.000020529500000,0.000049751000000,0.000210541000000,0.000050146000000,0.000335381000000,0.000352763000000,0.000558590000000,0.000705553000000,0.031517578000000,0.000554639000000,0.000056071000000,0.000048961000000,0.000126788000000,0.000053701000000 +0.000019344500000,0.000047775000000,0.000553059000000,0.031930417000000,0.000024677500000,0.000094788000000,0.000023295500000,0.000021319500000,0.000049355000000,0.000245701000000,0.000049356000000,0.000369355000000,0.000350788000000,0.000615083000000,0.000548318000000,0.031331109000000,0.000718985000000,0.000056072000000,0.000049355000000,0.000178540000000,0.000054491000000 +0.000019345000000,0.000033554000000,0.000587824000000,0.031709183000000,0.000018159500000,0.000129158000000,0.000022900000000,0.000021320000000,0.000064368000000,0.000245701000000,0.000051331000000,0.000334590000000,0.000352367000000,0.000543578000000,0.000582688000000,0.031909083000000,0.000555825000000,0.000069899000000,0.000048171000000,0.000129948000000,0.000053702000000 +0.000042850500000,0.000031577000000,0.000587429000000,0.031397874000000,0.000017369000000,0.000096763000000,0.000023097500000,0.000021715000000,0.000048960000000,0.000211726000000,0.000050146000000,0.000368961000000,0.000351578000000,0.000544367000000,0.000548713000000,0.031501775000000,0.000588615000000,0.000056466000000,0.000068319000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000051331000000,0.000553850000000,0.031653084000000,0.000017566500000,0.000095577000000,0.000022702500000,0.000022505000000,0.000050541000000,0.000211331000000,0.000050146000000,0.000335381000000,0.000351578000000,0.001037009000000,0.000549109000000,0.031177825000000,0.000633257000000,0.000059627000000,0.000062393000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000033159000000,0.000602837000000,0.031626615000000,0.000017369000000,0.000095578000000,0.000023295500000,0.000020529500000,0.000049355000000,0.000210541000000,0.000050145000000,0.000354343000000,0.000351972000000,0.001158688000000,0.000582689000000,0.031806368000000,0.000554244000000,0.000056862000000,0.000048960000000,0.000144565000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000553455000000,0.032346417000000,0.000017369000000,0.000095183000000,0.000022900000000,0.000021319500000,0.000049356000000,0.000209750000000,0.000051331000000,0.000334591000000,0.000351578000000,0.000733207000000,0.000549503000000,0.031770417000000,0.000555429000000,0.000056862000000,0.000048565000000,0.000127182000000,0.000054492000000 +0.000019344500000,0.000031578000000,0.000645503000000,0.033226613000000,0.000017369000000,0.000095182000000,0.000023097500000,0.000021715000000,0.000050541000000,0.000211726000000,0.000049356000000,0.000334590000000,0.000352368000000,0.000546343000000,0.000549109000000,0.031805972000000,0.000590195000000,0.000056072000000,0.000048171000000,0.000130343000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031425133000000,0.000017369000000,0.000094788000000,0.000039295000000,0.000020529500000,0.000049751000000,0.000209356000000,0.000050541000000,0.000368961000000,0.000351578000000,0.000578343000000,0.000617059000000,0.031423158000000,0.000638787000000,0.000056467000000,0.000048961000000,0.000211726000000,0.000102689000000 +0.000019344500000,0.000052516000000,0.000554244000000,0.030992541000000,0.000017369000000,0.000178146000000,0.000023098000000,0.000020529500000,0.000049356000000,0.000255973000000,0.000050936000000,0.000334590000000,0.000351973000000,0.000577948000000,0.000676318000000,0.031680343000000,0.000588220000000,0.000056862000000,0.000048961000000,0.000129553000000,0.000057257000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031524689000000,0.000017369000000,0.000095182000000,0.000023888000000,0.000020332000000,0.000049750000000,0.000209356000000,0.000052121000000,0.000426244000000,0.000447577000000,0.000713454000000,0.000548714000000,0.031409726000000,0.000554245000000,0.000056071000000,0.000048170000000,0.000127973000000,0.000054492000000 +0.000019740000000,0.000031973000000,0.000587429000000,0.031818614000000,0.000017566500000,0.000094788000000,0.000023097500000,0.000020925000000,0.000050146000000,0.000215676000000,0.000050541000000,0.000334985000000,0.000693701000000,0.000643923000000,0.000591380000000,0.032343651000000,0.000554639000000,0.000136270000000,0.000048566000000,0.000199479000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000587430000000,0.031256837000000,0.000024480000000,0.000094788000000,0.000023295000000,0.000030604000000,0.000048960000000,0.000211726000000,0.000063578000000,0.000389898000000,0.000366195000000,0.000927577000000,0.000583084000000,0.032850910000000,0.000623775000000,0.000177356000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031874318000000,0.000017369000000,0.000095183000000,0.000023097500000,0.000021517500000,0.000050936000000,0.000211726000000,0.000049751000000,0.000335775000000,0.000376862000000,0.000579133000000,0.000548713000000,0.031957281000000,0.000601257000000,0.000122442000000,0.000082146000000,0.000127973000000,0.000054097000000 +0.000036332000000,0.000031578000000,0.000553059000000,0.032176935000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020924500000,0.000049355000000,0.000208566000000,0.000050936000000,0.000368170000000,0.000331824000000,0.000564516000000,0.000599281000000,0.031941479000000,0.000554639000000,0.000073059000000,0.000048566000000,0.000182096000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000567281000000,0.031374566000000,0.000017566500000,0.000150096000000,0.000023098000000,0.000021517000000,0.000049356000000,0.000209750000000,0.000050541000000,0.000357108000000,0.000402936000000,0.000543973000000,0.000583084000000,0.031799652000000,0.000554639000000,0.000056467000000,0.000048961000000,0.000134689000000,0.000054492000000 +0.000019542500000,0.000031973000000,0.000637998000000,0.031652294000000,0.000017369000000,0.000095578000000,0.000022900000000,0.000021517000000,0.000049751000000,0.000211331000000,0.000050936000000,0.000334590000000,0.000332219000000,0.000578343000000,0.000548713000000,0.031582368000000,0.000623380000000,0.000092023000000,0.000067528000000,0.000127183000000,0.000087676000000 +0.000019344500000,0.000031973000000,0.000587824000000,0.031600541000000,0.000017369000000,0.000094788000000,0.000022900000000,0.000021122000000,0.000052516000000,0.000211331000000,0.000050146000000,0.000368960000000,0.000332219000000,0.000544763000000,0.000583084000000,0.033283107000000,0.000604022000000,0.000056862000000,0.000051331000000,0.000126788000000,0.000055282000000 +0.000019542000000,0.000031183000000,0.000553454000000,0.031885775000000,0.000017369000000,0.000094788000000,0.000056085000000,0.000020332000000,0.000048960000000,0.000210146000000,0.000050541000000,0.000334590000000,0.000331825000000,0.000544367000000,0.000582688000000,0.032095948000000,0.000588614000000,0.000056467000000,0.000048961000000,0.000127182000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031160837000000,0.000017369000000,0.000094787000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000210541000000,0.000052911000000,0.000369750000000,0.000331825000000,0.000616269000000,0.000548713000000,0.031993231000000,0.000555034000000,0.000056467000000,0.000048961000000,0.000127973000000,0.000054887000000 +0.000019542000000,0.000065158000000,0.000713454000000,0.031710368000000,0.000017567000000,0.000094788000000,0.000023492500000,0.000020727500000,0.000052517000000,0.000212911000000,0.000050541000000,0.000335775000000,0.000365405000000,0.000545158000000,0.000581504000000,0.031265923000000,0.000677504000000,0.000056466000000,0.000048170000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.030938418000000,0.000017369500000,0.000094392000000,0.000022505000000,0.000021320000000,0.000074245000000,0.000210936000000,0.000050936000000,0.000334986000000,0.000331034000000,0.000545158000000,0.000581899000000,0.031877084000000,0.000553454000000,0.000056071000000,0.000048960000000,0.000129948000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000646293000000,0.030877973000000,0.000017567000000,0.000094788000000,0.000039295000000,0.000021320000000,0.000050145000000,0.000210145000000,0.000063578000000,0.000368960000000,0.000365404000000,0.000577553000000,0.000549108000000,0.034064144000000,0.000587825000000,0.000056072000000,0.000048961000000,0.000127578000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000554244000000,0.031178615000000,0.000017567000000,0.000095578000000,0.000025073000000,0.000037319500000,0.000049751000000,0.000210541000000,0.000050936000000,0.000334590000000,0.000331824000000,0.000545553000000,0.000620614000000,0.033827897000000,0.000594935000000,0.000056072000000,0.000048565000000,0.000128367000000,0.000054492000000 +0.000019542000000,0.000031973000000,0.000552664000000,0.030994121000000,0.000017566500000,0.000095182000000,0.000024678000000,0.000020727000000,0.000049355000000,0.000211331000000,0.000052911000000,0.000655380000000,0.000331824000000,0.000577948000000,0.000619034000000,0.031653479000000,0.000588615000000,0.000056072000000,0.000048171000000,0.000142590000000,0.000054491000000 +0.000029418500000,0.000031973000000,0.000623380000000,0.031133578000000,0.000017566500000,0.000097158000000,0.000024480000000,0.000021517000000,0.000049356000000,0.000209751000000,0.000050541000000,0.000460615000000,0.000381208000000,0.000579528000000,0.000549504000000,0.032045380000000,0.000554639000000,0.000076615000000,0.000048170000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000594541000000,0.032152836000000,0.000017369000000,0.000095183000000,0.000040085500000,0.000021122000000,0.000049356000000,0.000209750000000,0.000052911000000,0.000334590000000,0.000331429000000,0.000576763000000,0.000583874000000,0.031196392000000,0.000554244000000,0.000056467000000,0.000048565000000,0.000129948000000,0.000069109000000 +0.000019542000000,0.000031578000000,0.000629306000000,0.030813578000000,0.000017369000000,0.000095182000000,0.000030011500000,0.000021319500000,0.000049355000000,0.000215677000000,0.000050541000000,0.000334590000000,0.000365405000000,0.000578343000000,0.000583084000000,0.031798862000000,0.000641948000000,0.000056467000000,0.000048961000000,0.000160763000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.030955405000000,0.000017566500000,0.000128368000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000208960000000,0.000049356000000,0.000334985000000,0.000331034000000,0.000577948000000,0.000548318000000,0.032466121000000,0.000589799000000,0.000055282000000,0.000048171000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031325578000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000020727000000,0.000049751000000,0.000210146000000,0.000050541000000,0.000340516000000,0.000333799000000,0.000829998000000,0.000754936000000,0.031591849000000,0.000554244000000,0.000056467000000,0.000048961000000,0.000127183000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000830393000000,0.031404985000000,0.000017567000000,0.000094788000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000209356000000,0.000050541000000,0.000369356000000,0.000332220000000,0.000592565000000,0.000583083000000,0.031705232000000,0.000554640000000,0.000056467000000,0.000048170000000,0.000186442000000,0.000054887000000 +0.000019542000000,0.000051726000000,0.000587824000000,0.031559454000000,0.000017567000000,0.000094787000000,0.000022900000000,0.000021320000000,0.000104269000000,0.000256762000000,0.000050146000000,0.000334590000000,0.000331429000000,0.000576762000000,0.000549503000000,0.031778319000000,0.000589009000000,0.000056071000000,0.000048170000000,0.000127972000000,0.000055676000000 +0.000030011000000,0.000031973000000,0.000603231000000,0.032018516000000,0.000017567000000,0.000094788000000,0.000022702500000,0.000020529500000,0.000066343000000,0.000208565000000,0.000063973000000,0.000368961000000,0.000366590000000,0.000664071000000,0.000582293000000,0.031889331000000,0.000587824000000,0.000056072000000,0.000048961000000,0.000129948000000,0.000053702000000 +0.000026456000000,0.000031578000000,0.000553059000000,0.030734961000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000021517500000,0.000064763000000,0.000209751000000,0.000049750000000,0.000334985000000,0.000331034000000,0.000578343000000,0.000590590000000,0.031701676000000,0.000836318000000,0.000056467000000,0.000062788000000,0.000129948000000,0.000053701000000 +0.000019344500000,0.000031183000000,0.000553454000000,0.031008343000000,0.000017369500000,0.000096763000000,0.000022702500000,0.000028430500000,0.000052516000000,0.000213701000000,0.000050146000000,0.000335380000000,0.000381208000000,0.000576367000000,0.000549108000000,0.031822960000000,0.000623379000000,0.000056467000000,0.000048566000000,0.000126392000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000586639000000,0.031062467000000,0.000034554500000,0.000162344000000,0.000023097500000,0.000020529500000,0.000049356000000,0.000211726000000,0.000050541000000,0.000351183000000,0.000331429000000,0.000577948000000,0.000582689000000,0.031735256000000,0.000570047000000,0.000070294000000,0.000048171000000,0.000126788000000,0.000073455000000 +0.000026653500000,0.000031183000000,0.000708713000000,0.030997282000000,0.000017566500000,0.000094788000000,0.000022900000000,0.000020727000000,0.000048961000000,0.000210936000000,0.000050936000000,0.000334985000000,0.000331430000000,0.000577948000000,0.000582688000000,0.031451602000000,0.000555035000000,0.000059232000000,0.000048565000000,0.000134294000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000587035000000,0.033087552000000,0.000017567000000,0.000094788000000,0.000032579000000,0.000021319500000,0.000049355000000,0.000210146000000,0.000050146000000,0.000404121000000,0.000365010000000,0.000577553000000,0.000549109000000,0.031242220000000,0.000604812000000,0.000056071000000,0.000049355000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000552664000000,0.032837478000000,0.000017567000000,0.000095182000000,0.000023097500000,0.000020727000000,0.000048961000000,0.000208565000000,0.000050146000000,0.000335380000000,0.000331430000000,0.000575183000000,0.000595726000000,0.031798071000000,0.000632466000000,0.000056862000000,0.000050540000000,0.000127182000000,0.000054096000000 +0.000019344500000,0.000031577000000,0.000589405000000,0.031334664000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000020332500000,0.000082936000000,0.000436516000000,0.000050145000000,0.000369355000000,0.000591775000000,0.000629701000000,0.000583084000000,0.031240244000000,0.000588614000000,0.000056072000000,0.000048565000000,0.000129553000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000600862000000,0.030702566000000,0.000017567000000,0.000096763000000,0.000023295000000,0.000020332500000,0.000049356000000,0.000208960000000,0.000050936000000,0.000335776000000,0.000449158000000,0.000545553000000,0.000549109000000,0.031895652000000,0.000556614000000,0.000056467000000,0.000048961000000,0.000141800000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.030901282000000,0.000017567000000,0.000133504000000,0.000023492500000,0.000020727000000,0.000049356000000,0.000212121000000,0.000049751000000,0.000336960000000,0.000431775000000,0.000698441000000,0.000581504000000,0.031631356000000,0.000555035000000,0.000057257000000,0.000048961000000,0.000127182000000,0.000054492000000 +0.000019344500000,0.000050146000000,0.000636021000000,0.031630565000000,0.000017369500000,0.000094788000000,0.000023295500000,0.000021715000000,0.000049355000000,0.000210145000000,0.000085701000000,0.000335775000000,0.000403726000000,0.000579133000000,0.000582688000000,0.031335454000000,0.000797207000000,0.000056072000000,0.000049356000000,0.000131528000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031549973000000,0.000018554500000,0.000095577000000,0.000023295500000,0.000020727500000,0.000048961000000,0.000210541000000,0.000049355000000,0.000334986000000,0.000331430000000,0.000543578000000,0.000549503000000,0.032045775000000,0.000588615000000,0.000059627000000,0.000082936000000,0.000249652000000,0.000054491000000 +0.000019345000000,0.000031578000000,0.000553454000000,0.030843207000000,0.000017369500000,0.000094788000000,0.000022702500000,0.000020332000000,0.000049356000000,0.000212121000000,0.000050541000000,0.000445997000000,0.000351183000000,0.000578738000000,0.000617454000000,0.031943849000000,0.000637997000000,0.000111776000000,0.000048961000000,0.000127973000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000594146000000,0.031302665000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000020529500000,0.000049751000000,0.000247676000000,0.000050146000000,0.000368170000000,0.000341306000000,0.000578343000000,0.000595330000000,0.031658615000000,0.000588219000000,0.000069899000000,0.000048960000000,0.000127578000000,0.000087677000000 +0.000019542500000,0.000031578000000,0.000587429000000,0.030695455000000,0.000017369500000,0.000095578000000,0.000022900500000,0.000020332000000,0.000048961000000,0.000211330000000,0.000050936000000,0.000399380000000,0.000331035000000,0.000543577000000,0.000548319000000,0.031586319000000,0.000555034000000,0.000056072000000,0.000048960000000,0.000126788000000,0.000054492000000 +0.000054110000000,0.000031973000000,0.000552664000000,0.031532195000000,0.000018159500000,0.000094393000000,0.000022900000000,0.000021122000000,0.000048960000000,0.000210936000000,0.000050146000000,0.000334985000000,0.000374886000000,0.000591775000000,0.000598096000000,0.031968343000000,0.000623380000000,0.000056467000000,0.000048565000000,0.000128368000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031197183000000,0.000017567000000,0.000109405000000,0.000023097500000,0.000021122000000,0.000049356000000,0.000209356000000,0.000050146000000,0.000368566000000,0.000331430000000,0.000671972000000,0.000581898000000,0.032564886000000,0.000603232000000,0.000056467000000,0.000048566000000,0.000130738000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000624961000000,0.030794220000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000020727000000,0.000064368000000,0.000211726000000,0.000049750000000,0.000334590000000,0.000415578000000,0.000544368000000,0.000637207000000,0.031905923000000,0.000623380000000,0.000056862000000,0.000049751000000,0.000198294000000,0.000054492000000 +0.000020529500000,0.000031578000000,0.000588219000000,0.031120146000000,0.000017567000000,0.000131924000000,0.000023295000000,0.000020530000000,0.000049751000000,0.000209750000000,0.000050541000000,0.000422689000000,0.000331430000000,0.000560170000000,0.000579133000000,0.031529430000000,0.000554244000000,0.000056071000000,0.000048171000000,0.000127578000000,0.000055676000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.031485183000000,0.000017369500000,0.000094393000000,0.000022900000000,0.000021715000000,0.000049751000000,0.000231084000000,0.000052517000000,0.000335380000000,0.000410837000000,0.000577553000000,0.000582293000000,0.031579997000000,0.000555825000000,0.000056072000000,0.000048565000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.030907998000000,0.000017369500000,0.000094788000000,0.000023295000000,0.000020727500000,0.000048960000000,0.000211726000000,0.000124022000000,0.000334590000000,0.000334194000000,0.000543972000000,0.000548714000000,0.031786219000000,0.000638392000000,0.000056467000000,0.000048960000000,0.000166689000000,0.000053701000000 +0.000019542000000,0.000031577000000,0.000585849000000,0.031800047000000,0.000017567000000,0.000094393000000,0.000023295000000,0.000021122500000,0.000049356000000,0.000245306000000,0.000155232000000,0.000335380000000,0.000331429000000,0.000559380000000,0.000582294000000,0.031786219000000,0.000588219000000,0.000089652000000,0.000082540000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000648663000000,0.031489528000000,0.000017369000000,0.000128368000000,0.000023097500000,0.000021320000000,0.000049356000000,0.000210145000000,0.000053306000000,0.000334590000000,0.000357504000000,0.000579528000000,0.000583479000000,0.033707798000000,0.000623775000000,0.000056072000000,0.000048565000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000683824000000,0.031636491000000,0.000017566500000,0.000096368000000,0.000022703000000,0.000021320000000,0.000049750000000,0.000211331000000,0.000049751000000,0.000368565000000,0.000351973000000,0.000544367000000,0.000548714000000,0.032857626000000,0.000554244000000,0.000056072000000,0.000048170000000,0.000126788000000,0.000068319000000 +0.000019542000000,0.000031973000000,0.000638787000000,0.031542861000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020529500000,0.000050541000000,0.000245306000000,0.000052516000000,0.000334985000000,0.000351973000000,0.000649059000000,0.000589404000000,0.031782664000000,0.000554639000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000552663000000,0.031191652000000,0.000017369000000,0.000094393000000,0.000022900000000,0.000021517000000,0.000049750000000,0.000217652000000,0.000049751000000,0.000368565000000,0.000351578000000,0.000594540000000,0.000582689000000,0.031362318000000,0.000622984000000,0.000056071000000,0.000050146000000,0.000126788000000,0.000053702000000 +0.000019344500000,0.000031182000000,0.000553059000000,0.031357972000000,0.000027245500000,0.000095183000000,0.000022307500000,0.000021320000000,0.000049356000000,0.000210541000000,0.000050541000000,0.000334985000000,0.000390294000000,0.000543972000000,0.000549108000000,0.031627010000000,0.000604022000000,0.000055282000000,0.000049356000000,0.000126393000000,0.000054886000000 +0.000019542000000,0.000031973000000,0.000586639000000,0.032443997000000,0.000017566500000,0.000097553000000,0.000023295000000,0.000020529500000,0.000064763000000,0.000209750000000,0.000049751000000,0.000334590000000,0.000351577000000,0.000558590000000,0.000688960000000,0.031870368000000,0.000594145000000,0.000056467000000,0.000049356000000,0.000126788000000,0.000105849000000 +0.000019542000000,0.000031578000000,0.000622984000000,0.031201529000000,0.000018159500000,0.000094788000000,0.000023690500000,0.000020924500000,0.000049751000000,0.000261899000000,0.000050541000000,0.000368566000000,0.000352763000000,0.000578738000000,0.000582293000000,0.032604392000000,0.000642738000000,0.000056072000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031337430000000,0.000017369500000,0.000108615000000,0.000022307500000,0.000020924500000,0.000051331000000,0.000212121000000,0.000050936000000,0.000335775000000,0.000351973000000,0.000545553000000,0.000548714000000,0.031520739000000,0.000555035000000,0.000056071000000,0.000048565000000,0.000127183000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031455948000000,0.000017369000000,0.000095183000000,0.000022110000000,0.000020332000000,0.000049751000000,0.000209356000000,0.000051331000000,0.000368565000000,0.000351577000000,0.000578343000000,0.000549503000000,0.031427109000000,0.000555035000000,0.000056466000000,0.000048566000000,0.000161553000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587825000000,0.032407256000000,0.000017369000000,0.000096763000000,0.000022307500000,0.000020529500000,0.000048565000000,0.000212911000000,0.000049356000000,0.000334985000000,0.000351973000000,0.000587035000000,0.000582294000000,0.031573281000000,0.000588219000000,0.000070293000000,0.000069109000000,0.000130344000000,0.000054886000000 +0.000019542000000,0.000031973000000,0.000594145000000,0.031347702000000,0.000017566500000,0.000095183000000,0.000022307500000,0.000021122000000,0.000049356000000,0.000210935000000,0.000050145000000,0.000369355000000,0.000351578000000,0.000545947000000,0.000548713000000,0.031239849000000,0.000600861000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000046590000000,0.000904664000000,0.031617134000000,0.000018159000000,0.000094788000000,0.000023295500000,0.000020727000000,0.000048961000000,0.000210541000000,0.000050145000000,0.000335380000000,0.000484714000000,0.000579133000000,0.000549108000000,0.031603701000000,0.000587824000000,0.000056072000000,0.000050541000000,0.000127973000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.031509282000000,0.000017566500000,0.000094393000000,0.000023295500000,0.000040678000000,0.000049355000000,0.000210936000000,0.000050936000000,0.000335380000000,0.000361059000000,0.000577948000000,0.000598491000000,0.031490318000000,0.000553454000000,0.000056467000000,0.000048566000000,0.000129948000000,0.000055282000000 +0.000019542500000,0.000031183000000,0.000553454000000,0.031608441000000,0.000017566500000,0.000137059000000,0.000022307500000,0.000062208500000,0.000048961000000,0.000210145000000,0.000050146000000,0.000370540000000,0.000385158000000,0.000543578000000,0.000569651000000,0.031488343000000,0.000568466000000,0.000056467000000,0.000048566000000,0.000129158000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000570047000000,0.031322022000000,0.000017369000000,0.000094393000000,0.000039492500000,0.000038110000000,0.000071084000000,0.000210146000000,0.000050936000000,0.000334985000000,0.000353158000000,0.000676318000000,0.000584269000000,0.032450713000000,0.000638392000000,0.000059232000000,0.000049355000000,0.000127578000000,0.000054097000000 +0.000027443000000,0.000031577000000,0.000552664000000,0.033161428000000,0.000018159000000,0.000094393000000,0.000023295000000,0.000022702500000,0.000050146000000,0.000211725000000,0.000050541000000,0.000461010000000,0.000390293000000,0.000577948000000,0.000582293000000,0.032039059000000,0.000587825000000,0.000056467000000,0.000048960000000,0.000144566000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000639972000000,0.032690910000000,0.000034356500000,0.000094787000000,0.000022307500000,0.000027838500000,0.000049355000000,0.000212121000000,0.000077800000000,0.000348022000000,0.000568071000000,0.000543972000000,0.000663281000000,0.031952935000000,0.000554244000000,0.000057257000000,0.000048565000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587429000000,0.031685873000000,0.000017369000000,0.000096763000000,0.000022702500000,0.000021715000000,0.000048961000000,0.000212121000000,0.000050540000000,0.000368961000000,0.000385948000000,0.000690145000000,0.000579528000000,0.031543652000000,0.000555430000000,0.000056072000000,0.000049356000000,0.000127578000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000636812000000,0.031730911000000,0.000017566500000,0.000093998000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000210541000000,0.000050541000000,0.000334985000000,0.000351972000000,0.000730837000000,0.000549899000000,0.031718664000000,0.000624170000000,0.000090047000000,0.000048961000000,0.000163529000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031683109000000,0.000017566500000,0.000094393000000,0.000022307500000,0.000021517000000,0.000049355000000,0.000208960000000,0.000050541000000,0.000337355000000,0.000385948000000,0.000628121000000,0.000583084000000,0.031843898000000,0.000587429000000,0.000056862000000,0.000067529000000,0.000128368000000,0.000073850000000 +0.000019542000000,0.000031578000000,0.000566887000000,0.030793430000000,0.000017566500000,0.000128368000000,0.000022307500000,0.000021122500000,0.000049356000000,0.000210936000000,0.000052516000000,0.000381603000000,0.000352762000000,0.000543577000000,0.000548318000000,0.032059602000000,0.000588220000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000622590000000,0.031926466000000,0.000017764000000,0.000094788000000,0.000031591500000,0.000020332000000,0.000049356000000,0.000244516000000,0.000050146000000,0.000406491000000,0.000351578000000,0.000577948000000,0.000548318000000,0.032046565000000,0.000557800000000,0.000059232000000,0.000048566000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000605207000000,0.031909479000000,0.000017566500000,0.000095183000000,0.000022505000000,0.000020529500000,0.000049355000000,0.000210936000000,0.000050146000000,0.000479578000000,0.000349207000000,0.000614689000000,0.000581898000000,0.031659405000000,0.000555034000000,0.000056862000000,0.000048960000000,0.000130343000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031310960000000,0.000017369000000,0.000094392000000,0.000023097500000,0.000020332000000,0.000049356000000,0.000211725000000,0.000048961000000,0.000412417000000,0.000331429000000,0.000545158000000,0.000549108000000,0.032597281000000,0.000588220000000,0.000056467000000,0.000048960000000,0.000127182000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000567281000000,0.031851009000000,0.000018159000000,0.000094393000000,0.000023493000000,0.000020727500000,0.000088862000000,0.000282047000000,0.000051331000000,0.000334590000000,0.000416368000000,0.000594146000000,0.000550294000000,0.031932787000000,0.000861602000000,0.000056467000000,0.000048565000000,0.000126787000000,0.000054887000000 +0.000029418500000,0.000031578000000,0.000587034000000,0.031563800000000,0.000017566500000,0.000096763000000,0.000022110000000,0.000021320000000,0.000049356000000,0.000212516000000,0.000070689000000,0.000334985000000,0.000331430000000,0.000826442000000,0.000583083000000,0.032675898000000,0.000595725000000,0.000056071000000,0.000048171000000,0.000129949000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000586639000000,0.031083405000000,0.000017369500000,0.000114540000000,0.000022900000000,0.000020530000000,0.000049356000000,0.000208961000000,0.000049355000000,0.000336960000000,0.000424664000000,0.000795231000000,0.000548713000000,0.031790960000000,0.000573602000000,0.000056071000000,0.000048171000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000607972000000,0.031410517000000,0.000017369500000,0.000134294000000,0.000022900500000,0.000020530000000,0.000048960000000,0.000210935000000,0.000049751000000,0.000334985000000,0.000331429000000,0.001206490000000,0.000562146000000,0.032017331000000,0.000554639000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000553059000000,0.031824935000000,0.000017566500000,0.000109010000000,0.000023295000000,0.000021517500000,0.000049356000000,0.000304961000000,0.000050541000000,0.000419134000000,0.000351578000000,0.000734787000000,0.000583084000000,0.032321133000000,0.000588220000000,0.000086887000000,0.000048565000000,0.000129554000000,0.000054491000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.032171405000000,0.000018159000000,0.000094788000000,0.000022900000000,0.000020332500000,0.000049751000000,0.000230689000000,0.000053306000000,0.000334985000000,0.000331429000000,0.000647874000000,0.000549108000000,0.032083701000000,0.000600467000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000087677000000 +0.000019542000000,0.000031578000000,0.000626935000000,0.032002713000000,0.000017566500000,0.000094787000000,0.000022900000000,0.000021517500000,0.000049355000000,0.000210935000000,0.000050541000000,0.000368960000000,0.000331034000000,0.000577158000000,0.000618244000000,0.031596195000000,0.000678689000000,0.000056466000000,0.000048565000000,0.000130343000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.032119256000000,0.000017369000000,0.000094393000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000210936000000,0.000050541000000,0.000335381000000,0.000365405000000,0.000700417000000,0.000633257000000,0.033932193000000,0.000587429000000,0.000056466000000,0.000049750000000,0.000160368000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031882220000000,0.000017567000000,0.000128763000000,0.000023097500000,0.000021715000000,0.000049355000000,0.000210936000000,0.000050146000000,0.000334985000000,0.000331429000000,0.000685009000000,0.000548713000000,0.034424440000000,0.000556614000000,0.000056072000000,0.000048960000000,0.000147331000000,0.000055281000000 +0.000019542000000,0.000031577000000,0.000588615000000,0.031475701000000,0.000017567000000,0.000095578000000,0.000022505000000,0.000020529500000,0.000069504000000,0.000212121000000,0.000049356000000,0.000694886000000,0.000413207000000,0.000604022000000,0.000549108000000,0.031896837000000,0.000589404000000,0.000056072000000,0.000048961000000,0.000128763000000,0.000054096000000 +0.000019542000000,0.000031973000000,0.000552664000000,0.031903553000000,0.000017567000000,0.000096763000000,0.000067739500000,0.000020529500000,0.000052517000000,0.000211330000000,0.000051331000000,0.000369355000000,0.000331825000000,0.000544368000000,0.000632071000000,0.032275305000000,0.000603232000000,0.000056072000000,0.000048566000000,0.000159973000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000637997000000,0.032686169000000,0.000017567000000,0.000094788000000,0.000031591500000,0.000021122000000,0.000048961000000,0.000212516000000,0.000070294000000,0.000370145000000,0.000399775000000,0.000544763000000,0.000549108000000,0.032328244000000,0.000631676000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000053306000000 +0.000028628500000,0.000031578000000,0.000587034000000,0.031907503000000,0.000017567000000,0.000094788000000,0.000028628500000,0.000020332000000,0.000054491000000,0.000207776000000,0.000063973000000,0.000389108000000,0.000331035000000,0.000656170000000,0.000550294000000,0.032046960000000,0.000555034000000,0.000056466000000,0.000048960000000,0.000134689000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000622194000000,0.031970318000000,0.000017567000000,0.000096764000000,0.000022900000000,0.000021320000000,0.000049355000000,0.000210541000000,0.000050541000000,0.000355133000000,0.000331034000000,0.000544368000000,0.000581898000000,0.031792936000000,0.000554639000000,0.000070689000000,0.000048960000000,0.000128763000000,0.000054886000000 +0.000019542000000,0.000031183000000,0.000553849000000,0.032344442000000,0.000017369500000,0.000095183000000,0.000022505000000,0.000020332500000,0.000050936000000,0.000210540000000,0.000050540000000,0.000368565000000,0.000346837000000,0.000544367000000,0.000551479000000,0.032180491000000,0.000635627000000,0.000056071000000,0.000049356000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000554639000000,0.032438466000000,0.000027641000000,0.000165504000000,0.000022702500000,0.000020332500000,0.000048960000000,0.000210936000000,0.000050936000000,0.000334195000000,0.000331429000000,0.000578738000000,0.000548713000000,0.032505626000000,0.000588615000000,0.000056467000000,0.000082541000000,0.000127183000000,0.000071085000000 +0.000019344500000,0.000031578000000,0.000601256000000,0.033711353000000,0.000017567000000,0.000098738000000,0.000023097500000,0.000020529500000,0.000049355000000,0.000210936000000,0.000050146000000,0.000334590000000,0.000413602000000,0.000544367000000,0.000582688000000,0.032325084000000,0.000623775000000,0.000060022000000,0.000061997000000,0.000129948000000,0.000053701000000 +0.000019542500000,0.000031577000000,0.000606787000000,0.032314416000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000044826000000,0.000048961000000,0.000210936000000,0.000050146000000,0.000365800000000,0.000331035000000,0.000590985000000,0.000548713000000,0.032372886000000,0.000554639000000,0.000056072000000,0.000049355000000,0.000161553000000,0.000053701000000 +0.000020925000000,0.000031578000000,0.000553849000000,0.032088836000000,0.000017567000000,0.000094787000000,0.000023493000000,0.000028036000000,0.000049751000000,0.000210145000000,0.000050541000000,0.000334590000000,0.000408072000000,0.000579528000000,0.000548713000000,0.031574466000000,0.000553850000000,0.000056862000000,0.000049356000000,0.000127578000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.032094367000000,0.000017369500000,0.000094788000000,0.000030011000000,0.000021517500000,0.000088861000000,0.000212516000000,0.000050146000000,0.000368565000000,0.000526985000000,0.000578343000000,0.000633256000000,0.031841923000000,0.000587430000000,0.000056467000000,0.000048171000000,0.000127183000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000623775000000,0.031954120000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000021715000000,0.000049355000000,0.000208566000000,0.000050540000000,0.000335775000000,0.000440071000000,0.000577553000000,0.000549109000000,0.032920836000000,0.000622195000000,0.000056466000000,0.000048961000000,0.000161158000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031451602000000,0.000017369000000,0.000128368000000,0.000023690000000,0.000021320000000,0.000050936000000,0.000211330000000,0.000084121000000,0.000368566000000,0.000351577000000,0.000643528000000,0.000549503000000,0.031904343000000,0.000554639000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000588615000000,0.034820686000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000020529500000,0.000049355000000,0.000245702000000,0.000050540000000,0.000334590000000,0.000351973000000,0.000577553000000,0.000700022000000,0.032093577000000,0.000681453000000,0.000077010000000,0.000048565000000,0.000127578000000,0.000071874000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.034966859000000,0.000018159500000,0.000095973000000,0.000023493000000,0.000020530000000,0.000049356000000,0.000210146000000,0.000049750000000,0.000335380000000,0.000351578000000,0.000577947000000,0.000581504000000,0.031964788000000,0.000568862000000,0.000056466000000,0.000048961000000,0.000127183000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.034921822000000,0.000017567000000,0.000095183000000,0.000022110000000,0.000020332500000,0.000051331000000,0.000209355000000,0.000050146000000,0.000368960000000,0.000351972000000,0.000577553000000,0.000549503000000,0.032080540000000,0.000568861000000,0.000057256000000,0.000050146000000,0.000126392000000,0.000095577000000 +0.000019542000000,0.000031578000000,0.000606788000000,0.031726170000000,0.000017566500000,0.000095182000000,0.000022702500000,0.000020332500000,0.000052121000000,0.000212121000000,0.000050146000000,0.000334985000000,0.000354343000000,0.000696071000000,0.000582689000000,0.031807947000000,0.000589800000000,0.000056071000000,0.000068714000000,0.000127182000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587824000000,0.031756985000000,0.000017566500000,0.000094788000000,0.000023690500000,0.000020529500000,0.000048961000000,0.000212121000000,0.000050146000000,0.000375281000000,0.000354343000000,0.000703972000000,0.000583083000000,0.032348787000000,0.000637602000000,0.000056467000000,0.000048566000000,0.000134689000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000572812000000,0.031908688000000,0.000024480500000,0.000095578000000,0.000023097500000,0.000048184000000,0.000054887000000,0.000210936000000,0.000050145000000,0.000334590000000,0.000351973000000,0.000645504000000,0.000548713000000,0.032522614000000,0.000587824000000,0.000056862000000,0.000048171000000,0.000161158000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.032334170000000,0.000017369500000,0.000171429000000,0.000022900000000,0.000021714500000,0.000049751000000,0.000210936000000,0.000051331000000,0.000419134000000,0.000351183000000,0.000578342000000,0.000595331000000,0.032275700000000,0.000554244000000,0.000055677000000,0.000048170000000,0.000127578000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000847775000000,0.031863256000000,0.000017369500000,0.000094393000000,0.000039295000000,0.000020529500000,0.000049356000000,0.000209356000000,0.000050541000000,0.000334985000000,0.000352368000000,0.000578738000000,0.000656566000000,0.031975454000000,0.000604022000000,0.000059627000000,0.000048960000000,0.000127183000000,0.000054886000000 +0.000019542000000,0.000031577000000,0.000553059000000,0.032549479000000,0.000017369000000,0.000095578000000,0.000023097500000,0.000021517500000,0.000049355000000,0.000212121000000,0.000050146000000,0.000334985000000,0.000351577000000,0.000577158000000,0.000601651000000,0.031702071000000,0.000589009000000,0.000057257000000,0.000048171000000,0.000161948000000,0.000053307000000 +0.000019344500000,0.000101899000000,0.000587825000000,0.032494169000000,0.000017369000000,0.000095578000000,0.000022702500000,0.000020727500000,0.000049356000000,0.000208960000000,0.000105850000000,0.000334985000000,0.000419923000000,0.000576763000000,0.000582689000000,0.032086071000000,0.000604812000000,0.000090442000000,0.000048961000000,0.000140615000000,0.000055281000000 +0.000019542000000,0.000046986000000,0.000587824000000,0.031533380000000,0.000017566500000,0.000097158000000,0.000022505000000,0.000020727000000,0.000049356000000,0.000211331000000,0.000051331000000,0.000334195000000,0.000351973000000,0.000611529000000,0.000582293000000,0.034040440000000,0.000553849000000,0.000056466000000,0.000048170000000,0.000126392000000,0.000054097000000 +0.000019542000000,0.000045405000000,0.000553059000000,0.032293083000000,0.000017566500000,0.000095183000000,0.000023295000000,0.000020924500000,0.000049355000000,0.000210935000000,0.000050146000000,0.000412022000000,0.000351183000000,0.000577948000000,0.000549108000000,0.032612688000000,0.000554639000000,0.000056072000000,0.000048565000000,0.000225158000000,0.000075034000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032368541000000,0.000017369000000,0.000128763000000,0.000023295000000,0.000021517500000,0.000050146000000,0.000212516000000,0.000049355000000,0.000334590000000,0.000351578000000,0.000577948000000,0.000582689000000,0.032120837000000,0.000622590000000,0.000056072000000,0.000049356000000,0.000129948000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000587035000000,0.032101478000000,0.000017566500000,0.000094788000000,0.000023097500000,0.000020529500000,0.000049751000000,0.000209356000000,0.000050146000000,0.000368565000000,0.000351578000000,0.000577158000000,0.000583084000000,0.031540886000000,0.000589010000000,0.000056467000000,0.000050146000000,0.000126788000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031585924000000,0.000017567000000,0.000095182000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000212121000000,0.000050541000000,0.000334986000000,0.000384368000000,0.000577553000000,0.000549108000000,0.031854960000000,0.000624170000000,0.000056072000000,0.000048960000000,0.000173010000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.031456739000000,0.000017567000000,0.000094788000000,0.000022110000000,0.000020332000000,0.000049355000000,0.000210540000000,0.000052911000000,0.000334985000000,0.000351578000000,0.000576367000000,0.000736367000000,0.034016341000000,0.000553849000000,0.000056072000000,0.000048960000000,0.000127578000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031201134000000,0.000017369500000,0.000095183000000,0.000022900000000,0.000020332000000,0.000049356000000,0.000212121000000,0.000050541000000,0.000334985000000,0.000352763000000,0.000578343000000,0.000615874000000,0.034284588000000,0.000554639000000,0.000056466000000,0.000048171000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031747899000000,0.000034752000000,0.000095182000000,0.000033172000000,0.000020529500000,0.000063183000000,0.000213306000000,0.000050541000000,0.000334590000000,0.000353158000000,0.000610738000000,0.000583873000000,0.032574762000000,0.001021207000000,0.000056466000000,0.000049356000000,0.000126788000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.031479652000000,0.000018357000000,0.000094788000000,0.000023295500000,0.000020332000000,0.000049355000000,0.000210146000000,0.000050146000000,0.000368961000000,0.000352368000000,0.000577552000000,0.000549108000000,0.032612293000000,0.000560171000000,0.000056072000000,0.000048960000000,0.000131529000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000636022000000,0.031006368000000,0.000024480500000,0.000178935000000,0.000023295000000,0.000021122500000,0.000049356000000,0.000209750000000,0.000097553000000,0.000334985000000,0.000351973000000,0.000578738000000,0.000582689000000,0.032129528000000,0.000587429000000,0.000086492000000,0.000048565000000,0.000129553000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031637281000000,0.000017369000000,0.000094788000000,0.000022702500000,0.000020727000000,0.000049356000000,0.000227133000000,0.000052121000000,0.000385553000000,0.000351183000000,0.000577948000000,0.000604022000000,0.031528245000000,0.000589010000000,0.000056467000000,0.000048566000000,0.000129553000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031443701000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000021517000000,0.000050541000000,0.000209355000000,0.000054096000000,0.000334590000000,0.000350787000000,0.000577552000000,0.000549503000000,0.032681034000000,0.000554639000000,0.000056467000000,0.000050146000000,0.000161158000000,0.000088862000000 +0.000020135000000,0.000031973000000,0.000586639000000,0.030978714000000,0.000017566500000,0.000094787000000,0.000023295500000,0.000020332000000,0.000048961000000,0.000213702000000,0.000051331000000,0.000353553000000,0.000331429000000,0.000577553000000,0.000590194000000,0.031764097000000,0.000555034000000,0.000056861000000,0.000048566000000,0.000127183000000,0.000053306000000 +0.000019542000000,0.000031578000000,0.000688960000000,0.031920145000000,0.000017566500000,0.000095183000000,0.000022110000000,0.000021122500000,0.000048960000000,0.000264664000000,0.000050541000000,0.000335380000000,0.000415972000000,0.000650244000000,0.000617849000000,0.031828887000000,0.000589010000000,0.000056071000000,0.000049750000000,0.000127182000000,0.000053702000000 +0.000049961500000,0.000031578000000,0.000622590000000,0.031579603000000,0.000017369000000,0.000094787000000,0.000022110000000,0.000021517000000,0.000048961000000,0.000210145000000,0.000050146000000,0.000334985000000,0.000331034000000,0.000543973000000,0.000549504000000,0.032188787000000,0.000600467000000,0.000056467000000,0.000048565000000,0.000161554000000,0.000054886000000 +0.000027443500000,0.000031578000000,0.000553059000000,0.033060688000000,0.000017566500000,0.000128368000000,0.000022505000000,0.000021517000000,0.000049356000000,0.000209751000000,0.000050541000000,0.000617849000000,0.000365800000000,0.000545158000000,0.000595725000000,0.031729726000000,0.000623380000000,0.000056467000000,0.000048960000000,0.000129948000000,0.000053307000000 +0.000026258000000,0.000031578000000,0.000553849000000,0.031476492000000,0.000017566500000,0.000094788000000,0.000022307500000,0.000042258000000,0.000123627000000,0.000210146000000,0.000049356000000,0.000349602000000,0.000331429000000,0.000644714000000,0.000585454000000,0.031815849000000,0.000554639000000,0.000056467000000,0.000048566000000,0.000127973000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000586640000000,0.031670071000000,0.000017567000000,0.000094788000000,0.000022505000000,0.000028036000000,0.000067528000000,0.000212911000000,0.000050541000000,0.000334985000000,0.000331035000000,0.000543972000000,0.000664466000000,0.032746218000000,0.000554245000000,0.000056467000000,0.000048171000000,0.000129159000000,0.000054491000000 +0.000019542000000,0.000031973000000,0.000588219000000,0.031149776000000,0.000017567000000,0.000096763000000,0.000029616000000,0.000020925000000,0.000064763000000,0.000208961000000,0.000104269000000,0.000334985000000,0.000407282000000,0.000544368000000,0.000583083000000,0.032180886000000,0.000587825000000,0.000070689000000,0.000048566000000,0.000127183000000,0.000054492000000 +0.000019344500000,0.000031973000000,0.000552663000000,0.031645973000000,0.000017567000000,0.000095578000000,0.000023295000000,0.000020332500000,0.000049356000000,0.000208565000000,0.000050541000000,0.000368565000000,0.000414788000000,0.000578343000000,0.000617849000000,0.031720639000000,0.000632862000000,0.000056072000000,0.000050146000000,0.000127973000000,0.000054491000000 +0.000019542000000,0.000046195000000,0.000553454000000,0.031894862000000,0.000018159500000,0.000095183000000,0.000023295000000,0.000020925000000,0.000049355000000,0.000211726000000,0.000051331000000,0.000334590000000,0.000365010000000,0.000543972000000,0.000548714000000,0.031824540000000,0.000555430000000,0.000056467000000,0.000048170000000,0.000144566000000,0.000053702000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.033904144000000,0.000017369000000,0.000097158000000,0.000023492500000,0.000022307500000,0.000049356000000,0.000211331000000,0.000050541000000,0.000368565000000,0.000331430000000,0.000543973000000,0.000563726000000,0.031861677000000,0.000554244000000,0.000056861000000,0.000048170000000,0.000128368000000,0.000054491000000 +0.000019344500000,0.000031183000000,0.000700021000000,0.032918070000000,0.000017566500000,0.000179330000000,0.000022505000000,0.000020529500000,0.000050935000000,0.000209751000000,0.000050936000000,0.000334985000000,0.000365800000000,0.000704763000000,0.000638392000000,0.031258812000000,0.000590590000000,0.000059232000000,0.000048566000000,0.000127972000000,0.000054492000000 +0.000029221000000,0.000031183000000,0.000625355000000,0.032213676000000,0.000017369000000,0.000096764000000,0.000023097500000,0.000020924500000,0.000048961000000,0.000209751000000,0.000050541000000,0.000334195000000,0.000331035000000,0.000577158000000,0.000549108000000,0.031499010000000,0.000587430000000,0.000056467000000,0.000048566000000,0.000130738000000,0.000054886000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.031546812000000,0.000017369000000,0.000094788000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000210146000000,0.000050541000000,0.000406491000000,0.000331430000000,0.000544368000000,0.000550294000000,0.031648343000000,0.000588615000000,0.000057257000000,0.000065158000000,0.000140615000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000552664000000,0.031360738000000,0.000017369000000,0.000095578000000,0.000022505000000,0.000020727000000,0.000050936000000,0.000211331000000,0.000048960000000,0.000334985000000,0.000365010000000,0.000614293000000,0.000616664000000,0.031392343000000,0.000570046000000,0.000056466000000,0.000048171000000,0.000129948000000,0.000053701000000 +0.000019344500000,0.000031973000000,0.000621800000000,0.031256837000000,0.000017566500000,0.000125602000000,0.000023097500000,0.000020727500000,0.000048960000000,0.000213306000000,0.000050936000000,0.000368565000000,0.000331430000000,0.000578343000000,0.000549898000000,0.031529824000000,0.000555429000000,0.000056467000000,0.000048566000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000604417000000,0.032236195000000,0.000017369500000,0.000094788000000,0.000022307500000,0.000022110000000,0.000049356000000,0.000210145000000,0.000049751000000,0.000334985000000,0.000531726000000,0.000545158000000,0.000549899000000,0.031578022000000,0.000604417000000,0.000077010000000,0.000048170000000,0.000163924000000,0.000053701000000 +0.000019542000000,0.000031183000000,0.000635232000000,0.031122911000000,0.000024480500000,0.000108615000000,0.000022307500000,0.000021517500000,0.000049356000000,0.000212912000000,0.000069109000000,0.000381602000000,0.000345651000000,0.000613504000000,0.000719380000000,0.031543652000000,0.000587825000000,0.000056071000000,0.000048565000000,0.000127973000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000552664000000,0.031015059000000,0.000017369000000,0.000094788000000,0.000022505000000,0.000021122500000,0.000050146000000,0.000208565000000,0.000050146000000,0.000334195000000,0.000365404000000,0.000565306000000,0.000582293000000,0.031592639000000,0.000554640000000,0.000059628000000,0.000048960000000,0.000127183000000,0.000053702000000 +0.000019542000000,0.000064763000000,0.000566887000000,0.031403405000000,0.000017369500000,0.000094788000000,0.000023295500000,0.000020727500000,0.000048961000000,0.000211726000000,0.000050936000000,0.000334985000000,0.000330639000000,0.000545158000000,0.000550689000000,0.031607257000000,0.000555430000000,0.000057257000000,0.000048566000000,0.000127183000000,0.000073849000000 +0.000019542000000,0.000031578000000,0.000637997000000,0.031499405000000,0.000017369500000,0.000094393000000,0.000023295500000,0.000021320000000,0.000051331000000,0.000210145000000,0.000050541000000,0.000351182000000,0.000365010000000,0.000628515000000,0.000582689000000,0.033658811000000,0.000589010000000,0.000056467000000,0.000048961000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000638393000000,0.031854960000000,0.000017567000000,0.000095182000000,0.000022505000000,0.000020727500000,0.000049751000000,0.000253603000000,0.000051331000000,0.000334985000000,0.000331035000000,0.000578343000000,0.000618244000000,0.031067603000000,0.000717009000000,0.000056466000000,0.000048565000000,0.000128368000000,0.000053701000000 +0.000019344500000,0.000032368000000,0.000638392000000,0.031745923000000,0.000017369500000,0.000094788000000,0.000022702500000,0.000021320000000,0.000048960000000,0.000211726000000,0.000050541000000,0.000384763000000,0.000331034000000,0.000643133000000,0.000547923000000,0.032404491000000,0.000590985000000,0.000056467000000,0.000048960000000,0.000134294000000,0.000053702000000 +0.000036530000000,0.000031578000000,0.000592565000000,0.031141874000000,0.000017566500000,0.000114936000000,0.000023493000000,0.000021517500000,0.000083331000000,0.000209356000000,0.000050935000000,0.000334985000000,0.000365404000000,0.000629306000000,0.000589405000000,0.031863257000000,0.000554640000000,0.000056072000000,0.000062788000000,0.000127578000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.031335850000000,0.000017369000000,0.000094787000000,0.000022702500000,0.000021319500000,0.000065158000000,0.000211330000000,0.000049750000000,0.000376071000000,0.000332219000000,0.000578342000000,0.000581899000000,0.031419207000000,0.000554640000000,0.000056862000000,0.000048566000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000739133000000,0.031435010000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000021714500000,0.000049356000000,0.000212121000000,0.000049356000000,0.000334985000000,0.000365405000000,0.000544763000000,0.000548714000000,0.033801032000000,0.000588615000000,0.000056072000000,0.000048171000000,0.000127183000000,0.000054491000000 +0.000019542000000,0.000031578000000,0.000588220000000,0.031368639000000,0.000017566500000,0.000094788000000,0.000022307500000,0.000040085000000,0.000049751000000,0.000210935000000,0.000052911000000,0.000335775000000,0.000331430000000,0.000989207000000,0.000669207000000,0.033041330000000,0.000588220000000,0.000070294000000,0.000049356000000,0.000345257000000,0.000054097000000 +0.000019542000000,0.000031183000000,0.000587429000000,0.031133183000000,0.000027838000000,0.000097159000000,0.000039295000000,0.000021319500000,0.000052516000000,0.000209751000000,0.000157603000000,0.000335381000000,0.000331430000000,0.000586639000000,0.000583084000000,0.031798466000000,0.000588615000000,0.000056467000000,0.000048170000000,0.000274540000000,0.000054491000000 +0.000019344500000,0.000064763000000,0.000587430000000,0.031816244000000,0.000036727500000,0.000095578000000,0.000022702500000,0.000020529500000,0.000054491000000,0.000208170000000,0.000132713000000,0.000335775000000,0.000331034000000,0.000578343000000,0.000549503000000,0.031486763000000,0.000555034000000,0.000056467000000,0.000048171000000,0.000191183000000,0.000054096000000 +0.000019542000000,0.000045010000000,0.000553454000000,0.031251701000000,0.000017567000000,0.000095183000000,0.000022900000000,0.000021319500000,0.000049751000000,0.000231084000000,0.000049750000000,0.000368565000000,0.000331429000000,0.000543973000000,0.000583479000000,0.031367059000000,0.000588219000000,0.000056071000000,0.000067924000000,0.000172220000000,0.000115726000000 +0.000019542000000,0.000045405000000,0.000567281000000,0.031828886000000,0.000017369500000,0.000108615000000,0.000023493000000,0.000020924500000,0.000049751000000,0.000226738000000,0.000050146000000,0.000334986000000,0.000365405000000,0.000591380000000,0.000582689000000,0.031558664000000,0.000588220000000,0.000056467000000,0.000063973000000,0.000169454000000,0.000054097000000 +0.000019344500000,0.000031578000000,0.000587825000000,0.031337825000000,0.000017566500000,0.000097158000000,0.000022702500000,0.000020332000000,0.000048960000000,0.000210541000000,0.000052121000000,0.000381602000000,0.000331034000000,0.000593355000000,0.000549503000000,0.031476096000000,0.000637998000000,0.000056467000000,0.000048170000000,0.000204614000000,0.000054491000000 +0.000019344500000,0.000031973000000,0.000636812000000,0.031199554000000,0.000017566500000,0.000094392000000,0.000023492500000,0.000020727000000,0.000048961000000,0.000213306000000,0.000050541000000,0.000334590000000,0.000365800000000,0.000544368000000,0.000616664000000,0.031501380000000,0.000554244000000,0.000056467000000,0.000048566000000,0.000142985000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000715429000000,0.031389578000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000020530000000,0.000052121000000,0.000210936000000,0.000050146000000,0.000355529000000,0.000331825000000,0.000577553000000,0.000618244000000,0.031218516000000,0.000554244000000,0.000056467000000,0.000048961000000,0.000130343000000,0.000054887000000 +0.000049764500000,0.000031182000000,0.000553454000000,0.031491899000000,0.000017566500000,0.000095183000000,0.000023492500000,0.000020530000000,0.000048960000000,0.000210145000000,0.000084121000000,0.000334985000000,0.000331429000000,0.000577948000000,0.000549898000000,0.030973578000000,0.000646689000000,0.000055677000000,0.000048961000000,0.000127578000000,0.000054886000000 +0.000019344500000,0.000031578000000,0.000603626000000,0.032300590000000,0.000017566500000,0.000095183000000,0.000022702500000,0.000021122500000,0.000049356000000,0.000211726000000,0.000050146000000,0.000334985000000,0.000365009000000,0.000543973000000,0.000583084000000,0.031606071000000,0.000590195000000,0.000094787000000,0.000048566000000,0.000127183000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000610738000000,0.031354023000000,0.000017566500000,0.000133504000000,0.000022110000000,0.000020332000000,0.000048961000000,0.000303380000000,0.000050541000000,0.000368960000000,0.000333800000000,0.000577552000000,0.000626146000000,0.030979900000000,0.000588614000000,0.000112961000000,0.000048565000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000622195000000,0.032272540000000,0.000017369500000,0.000283627000000,0.000033567000000,0.000020530000000,0.000049355000000,0.000227133000000,0.000050936000000,0.000334195000000,0.000401750000000,0.000578738000000,0.000549108000000,0.031113429000000,0.000554639000000,0.000074640000000,0.000048566000000,0.000131134000000,0.000054097000000 +0.000019542000000,0.000031577000000,0.000587825000000,0.031468590000000,0.000017369500000,0.000133899000000,0.000023098000000,0.000021122500000,0.000049356000000,0.000210541000000,0.000050145000000,0.000368566000000,0.000331824000000,0.000543578000000,0.000598096000000,0.031828096000000,0.000554639000000,0.000072269000000,0.000048566000000,0.000127973000000,0.000054096000000 +0.000019344500000,0.000031578000000,0.000553454000000,0.031329529000000,0.000017369500000,0.000109010000000,0.000023097500000,0.000020727500000,0.000069109000000,0.000208170000000,0.000049751000000,0.000334590000000,0.000489059000000,0.000593355000000,0.000582688000000,0.031832442000000,0.000600071000000,0.000056467000000,0.000048565000000,0.000131133000000,0.000054097000000 +0.000019542000000,0.000050145000000,0.000553059000000,0.031502960000000,0.000017369000000,0.000112960000000,0.000022900000000,0.000020530000000,0.000051727000000,0.000210540000000,0.000050146000000,0.000334985000000,0.000331429000000,0.000626540000000,0.000549898000000,0.031174270000000,0.000589404000000,0.000056467000000,0.000048171000000,0.000129949000000,0.000054096000000 +0.000019542000000,0.000031183000000,0.000600861000000,0.032866317000000,0.000017369500000,0.000094788000000,0.000023493000000,0.000020332000000,0.000096368000000,0.000210541000000,0.000050146000000,0.000334590000000,0.000331429000000,0.000629306000000,0.000973009000000,0.031896837000000,0.000554639000000,0.000056466000000,0.000049356000000,0.000127183000000,0.000054887000000 +0.000019344500000,0.000031973000000,0.000587825000000,0.032577528000000,0.000017369500000,0.000094787000000,0.000023098000000,0.000021319500000,0.000049750000000,0.000210936000000,0.000050146000000,0.000334590000000,0.000331429000000,0.000591380000000,0.000582689000000,0.031848639000000,0.000554639000000,0.000056466000000,0.000049356000000,0.000127578000000,0.000054886000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.032531701000000,0.000017567000000,0.000096368000000,0.000023295000000,0.000020727000000,0.000049356000000,0.000211726000000,0.000050540000000,0.000423084000000,0.000331430000000,0.000578738000000,0.000582688000000,0.031951750000000,0.000632467000000,0.000075035000000,0.000061603000000,0.000133899000000,0.000054492000000 +0.000019542000000,0.000031578000000,0.000553455000000,0.031659405000000,0.000017567000000,0.000096763000000,0.000022900000000,0.000020529500000,0.000049355000000,0.000210935000000,0.000083726000000,0.000400565000000,0.000365405000000,0.000543578000000,0.000549108000000,0.031519948000000,0.000588614000000,0.000056072000000,0.000048170000000,0.000197108000000,0.000054096000000 +0.000026258000000,0.000031183000000,0.000587429000000,0.031372590000000,0.000017369000000,0.000094393000000,0.000022702500000,0.000020529500000,0.000049356000000,0.000210541000000,0.000049750000000,0.000384367000000,0.000331825000000,0.000577553000000,0.000653404000000,0.031368639000000,0.000588614000000,0.000057257000000,0.000050145000000,0.000127577000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000587430000000,0.031414466000000,0.000017566500000,0.000094788000000,0.000023295000000,0.000021122000000,0.000049751000000,0.000208566000000,0.000050541000000,0.000334985000000,0.000365405000000,0.000578738000000,0.000582688000000,0.031546417000000,0.000554244000000,0.000056072000000,0.000048170000000,0.000131133000000,0.000054096000000 +0.000019542500000,0.000031973000000,0.000552664000000,0.031696540000000,0.000017566500000,0.000128368000000,0.000023295000000,0.000020529500000,0.000049355000000,0.000212121000000,0.000049751000000,0.000368961000000,0.000331429000000,0.000544367000000,0.000549504000000,0.031685479000000,0.001248367000000,0.000056466000000,0.000048961000000,0.000231874000000,0.000054886000000 +0.000019344500000,0.000031973000000,0.000553849000000,0.031110269000000,0.000017369000000,0.000096763000000,0.000023295500000,0.000027838000000,0.000048961000000,0.000213306000000,0.000050146000000,0.000334985000000,0.000331429000000,0.000591380000000,0.000582689000000,0.031450022000000,0.000554640000000,0.000056862000000,0.000048565000000,0.000127182000000,0.000100714000000 +0.000019344500000,0.000031578000000,0.000587429000000,0.031452393000000,0.000017369500000,0.000096763000000,0.000023493000000,0.000021517000000,0.000049356000000,0.000211331000000,0.000051331000000,0.000334985000000,0.000365405000000,0.000664861000000,0.000619429000000,0.031638072000000,0.000555035000000,0.000056467000000,0.000048565000000,0.000131133000000,0.000053701000000 +0.000019542000000,0.000031182000000,0.000818145000000,0.031616343000000,0.000018554500000,0.000095578000000,0.000023493000000,0.000021122500000,0.000048565000000,0.000210146000000,0.000050541000000,0.000582688000000,0.000331430000000,0.000544368000000,0.000548318000000,0.031386417000000,0.000568862000000,0.000059628000000,0.000049356000000,0.000141010000000,0.000054492000000 +0.000019542000000,0.000031183000000,0.000587825000000,0.031418417000000,0.000027443000000,0.000094392000000,0.000023295000000,0.000020332000000,0.000124022000000,0.000244911000000,0.000050146000000,0.000336170000000,0.000365405000000,0.000591775000000,0.000563726000000,0.032362219000000,0.000623775000000,0.000056861000000,0.000048566000000,0.000127973000000,0.000053701000000 +0.000019542000000,0.000045010000000,0.000652219000000,0.031492689000000,0.000017567000000,0.000095183000000,0.000023295000000,0.000020924500000,0.000049751000000,0.000210541000000,0.000049750000000,0.000348813000000,0.000331825000000,0.000577553000000,0.000583084000000,0.031357973000000,0.000594936000000,0.000056862000000,0.000048566000000,0.000127183000000,0.000055282000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.031113825000000,0.000017369500000,0.000095183000000,0.000023690000000,0.000021517500000,0.000049355000000,0.000209751000000,0.000050541000000,0.000335775000000,0.000331430000000,0.000582688000000,0.000548318000000,0.031477281000000,0.000555430000000,0.000056467000000,0.000081751000000,0.000172220000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553849000000,0.032011010000000,0.000018159500000,0.000095183000000,0.000022702500000,0.000021715000000,0.000049356000000,0.000209750000000,0.000069899000000,0.000418739000000,0.000332220000000,0.000577553000000,0.000549108000000,0.031604097000000,0.000556219000000,0.000056071000000,0.000048170000000,0.000128368000000,0.000053701000000 +0.000027640500000,0.000031578000000,0.000594935000000,0.031435800000000,0.000017567000000,0.000095578000000,0.000022703000000,0.000020332500000,0.000049355000000,0.000209356000000,0.000050146000000,0.000334985000000,0.000331034000000,0.000708713000000,0.000617059000000,0.032168244000000,0.000588219000000,0.000056071000000,0.000048170000000,0.000129948000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000587034000000,0.031531405000000,0.000017369500000,0.000095183000000,0.000023295000000,0.000020727500000,0.000049751000000,0.000210146000000,0.000050541000000,0.000419528000000,0.000365800000000,0.000564120000000,0.000549108000000,0.031179010000000,0.001093503000000,0.000056467000000,0.000048961000000,0.000213306000000,0.000054886000000 +0.000020529500000,0.000033158000000,0.000572812000000,0.032218416000000,0.000017369500000,0.000096763000000,0.000022900000000,0.000020925000000,0.000048961000000,0.000210541000000,0.000050146000000,0.000335776000000,0.000331825000000,0.000544368000000,0.000549108000000,0.035128834000000,0.000554244000000,0.000056467000000,0.000049356000000,0.000127578000000,0.000054887000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.031196788000000,0.000017369000000,0.000094788000000,0.000022505000000,0.000020530000000,0.000049355000000,0.000211726000000,0.000052121000000,0.000521454000000,0.000398985000000,0.000578343000000,0.000582689000000,0.032867108000000,0.000589010000000,0.000056467000000,0.000048961000000,0.000127578000000,0.000067923000000 +0.000019542500000,0.000031182000000,0.000552664000000,0.032053676000000,0.000017369000000,0.000094787000000,0.000022307500000,0.000021517500000,0.000048961000000,0.000210541000000,0.000050541000000,0.000334590000000,0.000334195000000,0.000545552000000,0.000549503000000,0.031457528000000,0.000600467000000,0.000056467000000,0.000049355000000,0.000163529000000,0.000053702000000 +0.000019344500000,0.000031578000000,0.000588220000000,0.031336245000000,0.000017566500000,0.000131134000000,0.000022110000000,0.000021517500000,0.000083330000000,0.000210541000000,0.000050146000000,0.000421899000000,0.000331430000000,0.000543578000000,0.000549504000000,0.031253677000000,0.000587824000000,0.000056467000000,0.000048960000000,0.000126788000000,0.000053306000000 +0.000019542000000,0.000031577000000,0.000624170000000,0.031365479000000,0.000017369000000,0.000094787000000,0.000023295000000,0.000020332000000,0.000049356000000,0.000210935000000,0.000049751000000,0.000334590000000,0.000331825000000,0.000595330000000,0.000582689000000,0.031563800000000,0.000554244000000,0.000109800000000,0.000048566000000,0.000127183000000,0.000056467000000 +0.000021122500000,0.000065948000000,0.000553454000000,0.031765677000000,0.000017566500000,0.000095183000000,0.000022307500000,0.000020530000000,0.000049355000000,0.000220022000000,0.000050145000000,0.000353158000000,0.000331825000000,0.000546738000000,0.000549503000000,0.031294763000000,0.000588614000000,0.000056072000000,0.000048961000000,0.000127183000000,0.000053701000000 +0.000019542000000,0.000031578000000,0.000553454000000,0.032454269000000,0.000017369000000,0.000095973000000,0.000023295000000,0.000021517500000,0.000050541000000,0.000210145000000,0.000054097000000,0.000334985000000,0.000469306000000,0.000561355000000,0.000564120000000,0.031730516000000,0.000604417000000,0.000056467000000,0.000103874000000,0.000127183000000,0.000054096000000 +0.000019344500000,0.000031577000000,0.000587429000000,0.031226022000000,0.000017566500000,0.000096763000000,0.000023295000000,0.000020727500000,0.000049355000000,0.000210936000000,0.000069899000000,0.000335380000000,0.000331035000000,0.000578343000000,0.000582689000000,0.031509282000000,0.000589010000000,0.000056467000000,0.000139824000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000703973000000,0.031730515000000,0.000017566500000,0.000095183000000,0.000023690500000,0.000020530000000,0.000049356000000,0.000209355000000,0.000050936000000,0.000419924000000,0.000378442000000,0.000543972000000,0.000600467000000,0.031477676000000,0.000589010000000,0.000056467000000,0.000063578000000,0.000126788000000,0.000054886000000 +0.000019542500000,0.000031577000000,0.000631676000000,0.032417133000000,0.000017566500000,0.000094788000000,0.000022702500000,0.000021320000000,0.000049356000000,0.000245702000000,0.000050541000000,0.000334985000000,0.000331430000000,0.000543578000000,0.000549108000000,0.031357183000000,0.000589405000000,0.000056071000000,0.000049356000000,0.000126788000000,0.000054097000000 +0.000019542000000,0.000031578000000,0.000553059000000,0.032031948000000,0.000018159500000,0.000141405000000,0.000022307500000,0.000021912500000,0.000049356000000,0.000210145000000,0.000050146000000,0.000406491000000,0.000370936000000,0.000577553000000,0.000589800000000,0.032182071000000,0.000588219000000,0.000056466000000,0.000049751000000,0.000127578000000,0.000054097000000 +0.000019542000000,0.000031973000000,0.000553454000000,0.031689035000000,0.000017369000000,0.000094788000000,0.000038307500000,0.000030998500000,0.000051331000000,0.000209751000000,0.000050541000000,0.000334985000000,0.000331035000000,0.000543972000000,0.000550688000000,0.031216146000000,0.000625356000000,0.000056071000000,0.000049356000000,0.000127973000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000640368000000,0.031947405000000,0.000017566500000,0.000094788000000,0.000022900000000,0.000020332000000,0.000049751000000,0.000209750000000,0.000049751000000,0.000419923000000,0.000331825000000,0.000592960000000,0.000563330000000,0.031280936000000,0.000590590000000,0.000056467000000,0.000048961000000,0.000253998000000,0.000054492000000 +0.000019542500000,0.000031578000000,0.000587429000000,0.031788195000000,0.000017567000000,0.000094788000000,0.000022900000000,0.000021319500000,0.000117702000000,0.000211331000000,0.000050936000000,0.000334985000000,0.000417553000000,0.000578738000000,0.000722540000000,0.032404491000000,0.000588220000000,0.000103479000000,0.000048170000000,0.000152071000000,0.000054096000000 +0.000019542000000,0.000031578000000,0.000604417000000,0.032352738000000,0.000017369500000,0.000094392000000,0.000023097500000,0.000022110000000,0.000049751000000,0.000211331000000,0.000050145000000,0.000334590000000,0.000331824000000,0.000544763000000,0.000583874000000,0.032332590000000,0.000588219000000,0.000056071000000,0.000087677000000,0.000161553000000,0.000055677000000 +0.000019542500000,0.000031578000000,0.000553454000000,0.035615945000000,0.000018159500000,0.000094788000000,0.000022702500000,0.000021517500000,0.000048960000000,0.000210541000000,0.000050146000000,0.000664072000000,0.000413998000000,0.000558195000000,0.000549108000000,0.032508787000000,0.000624565000000,0.000056467000000,0.000049356000000,0.000127182000000,0.000055281000000 +0.000019542000000,0.000070294000000,0.000553455000000,0.032104244000000,0.000017369500000,0.000094787000000,0.000023295000000,0.000020529500000,0.000048961000000,0.000210145000000,0.000050146000000,0.000368961000000,0.000331825000000,0.000578343000000,0.000617849000000,0.032149281000000,0.000589404000000,0.000056072000000,0.000048565000000,0.000129948000000,0.000055677000000 +0.000019542000000,0.000031578000000,0.000641158000000,0.031705627000000,0.000034752000000,0.000095183000000,0.000022505000000,0.000021517500000,0.000049356000000,0.000210541000000,0.000389504000000,0.000334985000000,0.000365405000000,0.000543973000000,0.000581898000000,0.032272540000000,0.000612318000000,0.000056467000000,0.000048170000000,0.000127183000000,0.000054096000000 diff --git a/docs/source/media/bench/lua bench tests luabind.csv b/docs/source/media/bench/lua bench tests luabind.csv new file mode 100644 index 00000000..c2d0381c --- /dev/null +++ b/docs/source/media/bench/lua bench tests luabind.csv @@ -0,0 +1,2001 @@ +"luabind - global get","luabind - many userdata variables access last registered","luabind - c function","luabind - global set","luabind - table chained get","luabind - table get","luabind - lua function","luabind - table chained set","luabind - table set","luabind - c function through lua","luabind - member function calls","luabind - member function calls (simple)","luabind - userdata variable access","luabind - return userdata","luabind - many userdata variables access","luabind - userdata variable access (simple)","luabind - many userdata variable access (simple)","luabind - many userdata variables access last registered (simple)","luabind - stateful c function" +0.000147724000000,0.000270983000000,0.000049748000000,0.000081748000000,0.000198292000000,0.000173403000000,0.000089255000000,0.000132316000000,0.000109403000000,0.000073452000000,0.000309700000000,0.000300613000000,0.000279674000000,0.000295872000000,0.014807663000000,0.000292316000000,0.015125687000000,0.000266242000000,0.000208959000000 +0.000163527000000,0.000289156000000,0.000045798000000,0.000080958000000,0.000195132000000,0.000174983000000,0.000055280000000,0.000152860000000,0.000127181000000,0.000103872000000,0.000272168000000,0.000258341000000,0.000263082000000,0.000279675000000,0.014343861000000,0.000256761000000,0.014645687000000,0.000294291000000,0.000216860000000 +0.000146934000000,0.000314835000000,0.000048564000000,0.000081354000000,0.000197107000000,0.000265058000000,0.000055675000000,0.000131131000000,0.000109403000000,0.000071477000000,0.000280465000000,0.000270588000000,0.000257156000000,0.000276514000000,0.014576552000000,0.000262687000000,0.014712058000000,0.000263477000000,0.000380020000000 +0.000159971000000,0.000273748000000,0.000048169000000,0.000081354000000,0.000194737000000,0.000171428000000,0.000054884000000,0.000131527000000,0.000107822000000,0.000073847000000,0.000363822000000,0.000269798000000,0.000290341000000,0.000276909000000,0.014624749000000,0.000259131000000,0.014907613000000,0.000312860000000,0.000216465000000 +0.000146933000000,0.000261896000000,0.000048169000000,0.000081749000000,0.000194736000000,0.000170638000000,0.000054095000000,0.000134292000000,0.000107823000000,0.000070292000000,0.000269403000000,0.000257946000000,0.000257551000000,0.000279279000000,0.014454083000000,0.000260712000000,0.014406676000000,0.000262291000000,0.000216464000000 +0.000146934000000,0.000334983000000,0.000050934000000,0.000081354000000,0.000194736000000,0.000173403000000,0.000053700000000,0.000130341000000,0.000107427000000,0.000069897000000,0.000257551000000,0.000353155000000,0.000257551000000,0.000235428000000,0.014958576000000,0.000390687000000,0.014318972000000,0.000280859000000,0.000219625000000 +0.000146934000000,0.000261107000000,0.000048169000000,0.000080959000000,0.000263477000000,0.000170638000000,0.000054095000000,0.000165502000000,0.000107428000000,0.000070292000000,0.000257156000000,0.000270193000000,0.000400563000000,0.000298242000000,0.014145540000000,0.000274144000000,0.015061688000000,0.000260712000000,0.000218045000000 +0.000180119000000,0.000296662000000,0.000046193000000,0.000082539000000,0.000196316000000,0.000170638000000,0.000054095000000,0.000132317000000,0.000109403000000,0.000071477000000,0.000260712000000,0.000277304000000,0.000260712000000,0.000263082000000,0.015242626000000,0.000276909000000,0.014963712000000,0.000259526000000,0.000218440000000 +0.000146539000000,0.000264267000000,0.000048168000000,0.000081354000000,0.000195921000000,0.000171033000000,0.000064366000000,0.000131527000000,0.000109008000000,0.000128366000000,0.000327082000000,0.000292711000000,0.000356711000000,0.000240563000000,0.014207565000000,0.000255970000000,0.014618034000000,0.000261897000000,0.000267033000000 +0.000147724000000,0.000278884000000,0.000048564000000,0.000081354000000,0.000216860000000,0.000175773000000,0.000054094000000,0.000131922000000,0.000108613000000,0.000070292000000,0.000271378000000,0.000261897000000,0.000258341000000,0.000483921000000,0.015416057000000,0.000261501000000,0.014760650000000,0.000259527000000,0.000217254000000 +0.000147329000000,0.000263872000000,0.000048564000000,0.000081353000000,0.000195131000000,0.000171823000000,0.000054489000000,0.000130342000000,0.000106638000000,0.000071477000000,0.000270193000000,0.000257156000000,0.000261896000000,0.000285996000000,0.014870873000000,0.000291527000000,0.014462380000000,0.000294687000000,0.000216070000000 +0.000147329000000,0.000262291000000,0.000045403000000,0.000083329000000,0.000196712000000,0.000170638000000,0.000053304000000,0.000131526000000,0.000107033000000,0.000069897000000,0.000274934000000,0.000271773000000,0.000265057000000,0.000280859000000,0.014533095000000,0.000291922000000,0.014715614000000,0.000329453000000,0.000266242000000 +0.000380415000000,0.000436118000000,0.000046588000000,0.000080958000000,0.000194737000000,0.000170637000000,0.000053699000000,0.000131921000000,0.000142983000000,0.000071477000000,0.000271773000000,0.000262292000000,0.000271773000000,0.000275329000000,0.014463170000000,0.000260316000000,0.014657540000000,0.000293107000000,0.000216860000000 +0.000272168000000,0.000261107000000,0.000045798000000,0.000080958000000,0.000225551000000,0.000225156000000,0.000054490000000,0.000151675000000,0.000107427000000,0.000071477000000,0.000344860000000,0.000323921000000,0.000346835000000,0.000247280000000,0.014578133000000,0.000291921000000,0.014614478000000,0.000261107000000,0.000217650000000 +0.000178934000000,0.000261896000000,0.000048169000000,0.000080169000000,0.000194341000000,0.000171823000000,0.000054489000000,0.000131921000000,0.000109403000000,0.000070687000000,0.000270983000000,0.000257947000000,0.000258736000000,0.000333008000000,0.014446577000000,0.000265847000000,0.014262083000000,0.000293107000000,0.000312859000000 +0.000147724000000,0.000261502000000,0.000045798000000,0.000080563000000,0.000196712000000,0.000171823000000,0.000053304000000,0.000164711000000,0.000108613000000,0.000071477000000,0.000280860000000,0.000311675000000,0.000256366000000,0.000277304000000,0.014828601000000,0.000282440000000,0.014429194000000,0.000262687000000,0.000595329000000 +0.000146934000000,0.000334588000000,0.000047774000000,0.000081749000000,0.000344464000000,0.000171032000000,0.000054094000000,0.000138638000000,0.000107428000000,0.000069896000000,0.000271378000000,0.000334193000000,0.000262686000000,0.000233058000000,0.014659119000000,0.000259526000000,0.014770922000000,0.000261501000000,0.000792859000000 +0.000146539000000,0.000265452000000,0.000048563000000,0.000081748000000,0.000196712000000,0.000220811000000,0.000055674000000,0.000130737000000,0.000127181000000,0.000071082000000,0.000267823000000,0.000269403000000,0.000258341000000,0.000264267000000,0.015056156000000,0.000259922000000,0.014872058000000,0.000341304000000,0.000268613000000 +0.000166292000000,0.000308513000000,0.000048959000000,0.000083329000000,0.000194736000000,0.000170638000000,0.000053699000000,0.000131527000000,0.000107033000000,0.000070292000000,0.000373699000000,0.000269403000000,0.000294292000000,0.000247279000000,0.015197984000000,0.000301403000000,0.014926181000000,0.000266638000000,0.000265847000000 +0.000148119000000,0.000267427000000,0.000048169000000,0.000081748000000,0.000265057000000,0.000170242000000,0.000054094000000,0.000136267000000,0.000110193000000,0.000071873000000,0.000272168000000,0.000269403000000,0.000260317000000,0.000332612000000,0.014346626000000,0.000259131000000,0.014641737000000,0.000297847000000,0.000319971000000 +0.000147724000000,0.000302588000000,0.000048168000000,0.000080564000000,0.000211329000000,0.000215674000000,0.000054489000000,0.000130341000000,0.000107033000000,0.000072663000000,0.000272563000000,0.000270983000000,0.000258736000000,0.000268613000000,0.014524799000000,0.000262687000000,0.014124997000000,0.000260316000000,0.000220020000000 +0.000145749000000,0.000263082000000,0.000047773000000,0.000081354000000,0.000194341000000,0.000172218000000,0.000053699000000,0.000132317000000,0.000107033000000,0.000071082000000,0.000340119000000,0.000334193000000,0.000292316000000,0.000273749000000,0.014854281000000,0.000290736000000,0.014671367000000,0.000281650000000,0.000430193000000 +0.000146144000000,0.000263477000000,0.000060810000000,0.000080168000000,0.000194341000000,0.000170638000000,0.000056070000000,0.000132712000000,0.000110983000000,0.000070687000000,0.000263872000000,0.000259526000000,0.000259526000000,0.000279280000000,0.015054576000000,0.000256761000000,0.016474823000000,0.000267822000000,0.000301798000000 +0.000195526000000,0.000265057000000,0.000045403000000,0.000081354000000,0.000208959000000,0.000170638000000,0.000054885000000,0.000131921000000,0.000160366000000,0.000071477000000,0.000287181000000,0.000260316000000,0.000257551000000,0.000248860000000,0.014761835000000,0.000258736000000,0.015249341000000,0.000295477000000,0.000216070000000 +0.000147724000000,0.000258342000000,0.000048169000000,0.000083724000000,0.000196712000000,0.000206983000000,0.000053699000000,0.000186045000000,0.000107033000000,0.000071477000000,0.000555822000000,0.000261106000000,0.000257946000000,0.000265057000000,0.015058132000000,0.000258341000000,0.014200453000000,0.000259921000000,0.000219625000000 +0.000146934000000,0.000569649000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000171428000000,0.000054094000000,0.000131132000000,0.000107033000000,0.000069896000000,0.000297847000000,0.000268612000000,0.000257946000000,0.000263872000000,0.015762131000000,0.000261897000000,0.014726280000000,0.000260712000000,0.000217255000000 +0.000146934000000,0.000264662000000,0.000047774000000,0.000082144000000,0.000251230000000,0.000173798000000,0.000053304000000,0.000130736000000,0.000108218000000,0.000071082000000,0.000274539000000,0.000292712000000,0.000295872000000,0.000271378000000,0.015063663000000,0.000304959000000,0.015163218000000,0.000265057000000,0.000216464000000 +0.000181304000000,0.000267427000000,0.000045798000000,0.000081354000000,0.000209354000000,0.000171033000000,0.000054094000000,0.000131922000000,0.000143378000000,0.000069896000000,0.000272168000000,0.000257551000000,0.000257156000000,0.000347625000000,0.014764996000000,0.000258341000000,0.014512947000000,0.000261501000000,0.000215674000000 +0.000148119000000,0.000258737000000,0.000047773000000,0.000081749000000,0.000196316000000,0.000174588000000,0.000054490000000,0.000131526000000,0.000108612000000,0.000071477000000,0.000288761000000,0.000256761000000,0.000257946000000,0.000222390000000,0.014384947000000,0.000258736000000,0.014607762000000,0.000313255000000,0.000220020000000 +0.000148119000000,0.000348020000000,0.000047773000000,0.000081353000000,0.000195526000000,0.000171822000000,0.000055280000000,0.000168267000000,0.000108217000000,0.000071873000000,0.000270193000000,0.000515526000000,0.000301403000000,0.000323921000000,0.015147811000000,0.000292317000000,0.014905638000000,0.000261897000000,0.000216465000000 +0.000146144000000,0.000259131000000,0.000048168000000,0.000081749000000,0.000229897000000,0.000170638000000,0.000067922000000,0.000133502000000,0.000107823000000,0.000071082000000,0.000308909000000,0.000289946000000,0.000255576000000,0.000281255000000,0.014699021000000,0.000257551000000,0.014475812000000,0.000299427000000,0.000217650000000 +0.000146933000000,0.000352761000000,0.000046984000000,0.000084119000000,0.000196711000000,0.000171428000000,0.000053305000000,0.000131921000000,0.000108613000000,0.000071082000000,0.000271378000000,0.000316810000000,0.000259131000000,0.000421107000000,0.014281441000000,0.000277304000000,0.015168354000000,0.000262291000000,0.000253601000000 +0.000180119000000,0.000260712000000,0.000045008000000,0.000081749000000,0.000195921000000,0.000172613000000,0.000052909000000,0.000131921000000,0.000107427000000,0.000069502000000,0.000275328000000,0.000270983000000,0.000257156000000,0.000830785000000,0.015405391000000,0.000257551000000,0.014802922000000,0.000295477000000,0.000218044000000 +0.000148910000000,0.000295082000000,0.000045798000000,0.000081353000000,0.000252415000000,0.000185254000000,0.000057255000000,0.000133897000000,0.000122045000000,0.000070292000000,0.000306934000000,0.000263872000000,0.000281255000000,0.000261897000000,0.014530724000000,0.000257156000000,0.014416157000000,0.000263477000000,0.000216464000000 +0.000146934000000,0.000261502000000,0.000045798000000,0.000080958000000,0.000210934000000,0.000171428000000,0.000054095000000,0.000131526000000,0.000107033000000,0.000071477000000,0.000269008000000,0.000261502000000,0.000273353000000,0.000291526000000,0.014952650000000,0.000290341000000,0.016617044000000,0.000261502000000,0.000252020000000 +0.000148514000000,0.000259921000000,0.000047773000000,0.000082144000000,0.000197107000000,0.000170638000000,0.000053700000000,0.000130341000000,0.000108218000000,0.000069897000000,0.000270193000000,0.000259921000000,0.000263872000000,0.000324316000000,0.014919071000000,0.000257551000000,0.014831762000000,0.000314835000000,0.000217650000000 +0.000190391000000,0.000259527000000,0.000046983000000,0.000081748000000,0.000197107000000,0.000206588000000,0.000054094000000,0.000130736000000,0.000108613000000,0.000084120000000,0.000269798000000,0.000312465000000,0.000257946000000,0.000299822000000,0.014683219000000,0.000259527000000,0.014843614000000,0.000262686000000,0.000206983000000 +0.000147329000000,0.000260712000000,0.000063971000000,0.000081354000000,0.000228317000000,0.000172218000000,0.000054489000000,0.000131922000000,0.000107823000000,0.000071873000000,0.000261502000000,0.000259526000000,0.000257551000000,0.000261106000000,0.014497145000000,0.000290736000000,0.015137144000000,0.000259526000000,0.000291526000000 +0.000147724000000,0.000306144000000,0.000050934000000,0.000080169000000,0.000195922000000,0.000171823000000,0.000055280000000,0.000166292000000,0.000184860000000,0.000070292000000,0.000291526000000,0.000258341000000,0.000258737000000,0.000238983000000,0.016815760000000,0.000256366000000,0.014766972000000,0.000262686000000,0.000216859000000 +0.000147724000000,0.000262687000000,0.000047773000000,0.000080959000000,0.000194736000000,0.000173403000000,0.000053700000000,0.000132316000000,0.000107033000000,0.000069502000000,0.000271773000000,0.000295082000000,0.000406489000000,0.000229106000000,0.014921441000000,0.000259921000000,0.015249341000000,0.000430588000000,0.000217650000000 +0.000148119000000,0.000295477000000,0.000045798000000,0.000081748000000,0.000290341000000,0.000172218000000,0.000056465000000,0.000131131000000,0.000106637000000,0.000069897000000,0.000271378000000,0.000274144000000,0.000257551000000,0.000258341000000,0.014486873000000,0.000261501000000,0.014737738000000,0.000263082000000,0.000265057000000 +0.000213699000000,0.000262686000000,0.000045403000000,0.000080168000000,0.000242934000000,0.000174193000000,0.000055675000000,0.000132317000000,0.000109008000000,0.000071477000000,0.000305749000000,0.000275328000000,0.000275724000000,0.000257156000000,0.016633242000000,0.000256366000000,0.014444207000000,0.000306933000000,0.000216464000000 +0.000147724000000,0.000261897000000,0.000045403000000,0.000080959000000,0.000195922000000,0.000171822000000,0.000053699000000,0.000132712000000,0.000107823000000,0.000103872000000,0.000274143000000,0.000286391000000,0.000263872000000,0.000262687000000,0.015234724000000,0.000291921000000,0.014540206000000,0.000264662000000,0.000216069000000 +0.000146538000000,0.000258342000000,0.000048169000000,0.000080168000000,0.000240563000000,0.000172217000000,0.000054884000000,0.000234637000000,0.000177748000000,0.000075823000000,0.000272168000000,0.000351575000000,0.000255181000000,0.000250045000000,0.014769738000000,0.000260712000000,0.014929737000000,0.000346835000000,0.000218440000000 +0.000147724000000,0.000260317000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000171823000000,0.000054489000000,0.000131921000000,0.000107033000000,0.000069897000000,0.000273354000000,0.000308909000000,0.000294292000000,0.000296662000000,0.014577342000000,0.000261107000000,0.015041934000000,0.000261502000000,0.000217255000000 +0.000196712000000,0.000297057000000,0.000048169000000,0.000081354000000,0.000195526000000,0.000172218000000,0.000087675000000,0.000131526000000,0.000109008000000,0.000071477000000,0.000270193000000,0.000281255000000,0.000258341000000,0.000234242000000,0.014628701000000,0.000301798000000,0.014471070000000,0.000335379000000,0.000218044000000 +0.000146934000000,0.000262687000000,0.000048169000000,0.000082144000000,0.000195922000000,0.000171032000000,0.000055675000000,0.000131921000000,0.000107823000000,0.000070687000000,0.000304958000000,0.000273749000000,0.000257156000000,0.000263477000000,0.014275911000000,0.000301008000000,0.014765391000000,0.000260317000000,0.000217255000000 +0.000146934000000,0.000333798000000,0.000048169000000,0.000080958000000,0.000265848000000,0.000172217000000,0.000053304000000,0.000146934000000,0.000109007000000,0.000071477000000,0.000276118000000,0.000301403000000,0.000301798000000,0.000294687000000,0.014974379000000,0.000280859000000,0.014929342000000,0.000261107000000,0.000218440000000 +0.000146538000000,0.000263477000000,0.000045798000000,0.000080564000000,0.000196317000000,0.000441649000000,0.000054490000000,0.000131527000000,0.000186440000000,0.000084119000000,0.000269008000000,0.000269008000000,0.000256761000000,0.000244909000000,0.014497145000000,0.000260712000000,0.014398379000000,0.000262687000000,0.000216860000000 +0.000147328000000,0.000281650000000,0.000048169000000,0.000080959000000,0.000195526000000,0.000205402000000,0.000056070000000,0.000131132000000,0.000110588000000,0.000069897000000,0.000348021000000,0.000327477000000,0.000259526000000,0.000258736000000,0.014381787000000,0.000259131000000,0.014142775000000,0.000258341000000,0.000218440000000 +0.000161551000000,0.000258341000000,0.000048168000000,0.000080564000000,0.000215280000000,0.000208563000000,0.000053304000000,0.000132317000000,0.000107032000000,0.000071477000000,0.000270588000000,0.000259922000000,0.000261501000000,0.000261897000000,0.014524799000000,0.000289946000000,0.014802528000000,0.000261107000000,0.000301403000000 +0.000148119000000,0.000261502000000,0.000045798000000,0.000083724000000,0.000194736000000,0.000171428000000,0.000054094000000,0.000170637000000,0.000109798000000,0.000073058000000,0.000271379000000,0.000259921000000,0.000262687000000,0.000259527000000,0.014545737000000,0.000256366000000,0.014546922000000,0.000263082000000,0.000218045000000 +0.000148514000000,0.000259921000000,0.000139032000000,0.000081353000000,0.000194736000000,0.000171033000000,0.000089254000000,0.000134687000000,0.000108613000000,0.000071872000000,0.000269798000000,0.000301403000000,0.000305354000000,0.000261107000000,0.015865243000000,0.000256366000000,0.014336355000000,0.000354341000000,0.000216464000000 +0.000146539000000,0.000258342000000,0.000146539000000,0.000081749000000,0.000196317000000,0.000171033000000,0.000053304000000,0.000130341000000,0.000163922000000,0.000070292000000,0.000270588000000,0.000266242000000,0.000257156000000,0.000272959000000,0.014572996000000,0.000305354000000,0.015272651000000,0.000264267000000,0.000232662000000 +0.000215280000000,0.000348415000000,0.000062786000000,0.000081749000000,0.000274934000000,0.000207378000000,0.000053699000000,0.000131526000000,0.000108612000000,0.000071477000000,0.000304564000000,0.000270983000000,0.000261897000000,0.000265847000000,0.015197194000000,0.000261107000000,0.014234824000000,0.000348020000000,0.000218044000000 +0.000146144000000,0.000263872000000,0.000046193000000,0.000081354000000,0.000196711000000,0.000171823000000,0.000054489000000,0.000132317000000,0.000111773000000,0.000127576000000,0.000272168000000,0.000344069000000,0.000295082000000,0.000262686000000,0.014678478000000,0.000264267000000,0.014702182000000,0.000263082000000,0.000217255000000 +0.000147329000000,0.000280860000000,0.000048168000000,0.000081353000000,0.000193946000000,0.000171033000000,0.000054095000000,0.000165502000000,0.000109798000000,0.000071082000000,0.000259526000000,0.000264662000000,0.000263082000000,0.000284415000000,0.014360454000000,0.000258341000000,0.015003614000000,0.000304563000000,0.000293897000000 +0.000146933000000,0.000258342000000,0.000048564000000,0.000082539000000,0.000194737000000,0.000171823000000,0.000054095000000,0.000131527000000,0.000110194000000,0.000069897000000,0.000302588000000,0.000281650000000,0.000258736000000,0.000265848000000,0.014480552000000,0.000258341000000,0.014982675000000,0.000271378000000,0.000309304000000 +0.000183675000000,0.000263082000000,0.000048563000000,0.000172218000000,0.000194736000000,0.000206588000000,0.000053304000000,0.000130736000000,0.000174588000000,0.000070687000000,0.000267822000000,0.000259131000000,0.000259131000000,0.000246490000000,0.014469885000000,0.000348810000000,0.014567466000000,0.000264267000000,0.000269403000000 +0.000147329000000,0.000263081000000,0.000046193000000,0.000080958000000,0.000196317000000,0.000170243000000,0.000054094000000,0.000136267000000,0.000108613000000,0.000070687000000,0.000274934000000,0.000258341000000,0.000263872000000,0.000329057000000,0.014724305000000,0.000273748000000,0.015126083000000,0.000261107000000,0.000235823000000 +0.000148119000000,0.000264662000000,0.000045798000000,0.000081749000000,0.000194736000000,0.000174193000000,0.000145748000000,0.000131922000000,0.000109798000000,0.000071477000000,0.000329057000000,0.000293106000000,0.000292712000000,0.000261502000000,0.014823466000000,0.000367378000000,0.015672452000000,0.000261106000000,0.000231082000000 +0.000146143000000,0.000297057000000,0.000047773000000,0.000081354000000,0.000264662000000,0.000171033000000,0.000072267000000,0.000197502000000,0.000109798000000,0.000069897000000,0.000270588000000,0.000262292000000,0.000261502000000,0.000288366000000,0.014548108000000,0.000255970000000,0.014428404000000,0.000510390000000,0.000269007000000 +0.000147724000000,0.000262687000000,0.000045798000000,0.000083724000000,0.000196317000000,0.000219625000000,0.000066341000000,0.000131526000000,0.000108613000000,0.000100316000000,0.000304959000000,0.000259526000000,0.000257551000000,0.000233452000000,0.014442231000000,0.000259922000000,0.014479367000000,0.000294292000000,0.000378440000000 +0.000179328000000,0.000297453000000,0.000045798000000,0.000080958000000,0.000195922000000,0.000170638000000,0.000056465000000,0.000130737000000,0.000127576000000,0.000071477000000,0.000317996000000,0.000297847000000,0.000310885000000,0.000246884000000,0.015053391000000,0.000340514000000,0.014704157000000,0.000326292000000,0.000232662000000 +0.000146933000000,0.000264267000000,0.000047378000000,0.000084119000000,0.000196711000000,0.000171033000000,0.000056070000000,0.000131921000000,0.000122835000000,0.000071478000000,0.000291526000000,0.000275724000000,0.000256761000000,0.000295872000000,0.014311861000000,0.000257946000000,0.014213491000000,0.000298242000000,0.000234638000000 +0.000148119000000,0.000258342000000,0.000045798000000,0.000081748000000,0.000209354000000,0.000171032000000,0.000053700000000,0.000178143000000,0.000108218000000,0.000071477000000,0.000271379000000,0.000278885000000,0.000297847000000,0.000267033000000,0.014930923000000,0.000261897000000,0.014284601000000,0.000262292000000,0.000231477000000 +0.000147724000000,0.000262292000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000208168000000,0.000055280000000,0.000131131000000,0.000107822000000,0.000073057000000,0.000270983000000,0.000272564000000,0.000257156000000,0.000265847000000,0.014585638000000,0.000261897000000,0.014689540000000,0.000329452000000,0.000232662000000 +0.000201057000000,0.000263872000000,0.000045798000000,0.000080958000000,0.000194736000000,0.000172218000000,0.000071082000000,0.000131921000000,0.000109008000000,0.000071477000000,0.000307329000000,0.000272168000000,0.000255971000000,0.000267032000000,0.015112651000000,0.000259922000000,0.014398774000000,0.000263872000000,0.000235033000000 +0.000159575000000,0.000295872000000,0.000048564000000,0.000101107000000,0.000229897000000,0.000173008000000,0.000087280000000,0.000130736000000,0.000107428000000,0.000106637000000,0.000271378000000,0.000306538000000,0.000375279000000,0.000238588000000,0.015132404000000,0.000344464000000,0.014495960000000,0.000263872000000,0.000231082000000 +0.000147329000000,0.000261502000000,0.000045798000000,0.000080169000000,0.000196317000000,0.000171033000000,0.000054489000000,0.000131132000000,0.000107427000000,0.000071873000000,0.000267428000000,0.000275329000000,0.000258736000000,0.000266242000000,0.014663861000000,0.000260711000000,0.015332700000000,0.000259921000000,0.000231477000000 +0.000147328000000,0.000360267000000,0.000045403000000,0.000083329000000,0.000194736000000,0.000206588000000,0.000056860000000,0.000201847000000,0.000107822000000,0.000072267000000,0.000305353000000,0.000272958000000,0.000260316000000,0.000361057000000,0.014827021000000,0.000261502000000,0.014252602000000,0.000264267000000,0.000279674000000 +0.000146934000000,0.000296662000000,0.000048168000000,0.000080168000000,0.000195131000000,0.000172218000000,0.000054095000000,0.000131526000000,0.000109798000000,0.000072267000000,0.000272168000000,0.000323922000000,0.000255971000000,0.000261106000000,0.014977934000000,0.000292711000000,0.014473046000000,0.000296267000000,0.000232267000000 +0.000146539000000,0.000304959000000,0.000058835000000,0.000081748000000,0.000228316000000,0.000171032000000,0.000054885000000,0.000135477000000,0.000106637000000,0.000071477000000,0.000269008000000,0.000266242000000,0.000257551000000,0.000258736000000,0.014386527000000,0.000261896000000,0.014503466000000,0.000257946000000,0.000233452000000 +0.000147724000000,0.000264267000000,0.000047773000000,0.000114934000000,0.000196316000000,0.000171822000000,0.000053305000000,0.000132316000000,0.000145748000000,0.000069897000000,0.000282045000000,0.000259526000000,0.000290736000000,0.000213700000000,0.014328453000000,0.000258736000000,0.014364799000000,0.000319181000000,0.000281255000000 +0.000147329000000,0.000292712000000,0.000045403000000,0.000095180000000,0.000196316000000,0.000206193000000,0.000087675000000,0.000220810000000,0.000108612000000,0.000075428000000,0.000279279000000,0.000273749000000,0.000263872000000,0.000270588000000,0.014318972000000,0.000274143000000,0.014463169000000,0.000261502000000,0.000235033000000 +0.000147329000000,0.000263872000000,0.000045798000000,0.000081749000000,0.000196711000000,0.000170243000000,0.000054884000000,0.000130341000000,0.000107822000000,0.000069897000000,0.000385946000000,0.000261897000000,0.000259526000000,0.000263476000000,0.014462774000000,0.000258341000000,0.014181886000000,0.000262687000000,0.000228712000000 +0.000180514000000,0.000263082000000,0.000048168000000,0.000084119000000,0.000230687000000,0.000170638000000,0.000053699000000,0.000130736000000,0.000107823000000,0.000071477000000,0.000299823000000,0.000264663000000,0.000294292000000,0.000280070000000,0.015100009000000,0.000290736000000,0.014453293000000,0.000259921000000,0.000266638000000 +0.000146934000000,0.000260711000000,0.000045798000000,0.000081353000000,0.000195922000000,0.000171033000000,0.000056070000000,0.000130341000000,0.000107033000000,0.000086489000000,0.000278490000000,0.000268613000000,0.000259527000000,0.000264662000000,0.015106724000000,0.000263477000000,0.014576552000000,0.000261897000000,0.000232267000000 +0.000148119000000,0.000261107000000,0.000048564000000,0.000080564000000,0.000196316000000,0.000214885000000,0.000053305000000,0.000130736000000,0.000107823000000,0.000070292000000,0.000271378000000,0.000274934000000,0.000276514000000,0.000279279000000,0.014459614000000,0.000257551000000,0.015238280000000,0.000261502000000,0.000233057000000 +0.000146934000000,0.000301798000000,0.000048168000000,0.000081749000000,0.000242539000000,0.000171823000000,0.000053700000000,0.000323527000000,0.000244909000000,0.000072662000000,0.000277305000000,0.000304563000000,0.000259131000000,0.000236218000000,0.014949885000000,0.000618637000000,0.014976354000000,0.000263872000000,0.000317600000000 +0.000146934000000,0.000263477000000,0.000045403000000,0.000081354000000,0.000197897000000,0.000171823000000,0.000057255000000,0.000147724000000,0.000113354000000,0.000069896000000,0.000300218000000,0.000275724000000,0.000259526000000,0.000281255000000,0.014569836000000,0.000316811000000,0.014337540000000,0.000304959000000,0.000217255000000 +0.000148514000000,0.000344070000000,0.000045798000000,0.000082143000000,0.000194736000000,0.000170637000000,0.000054489000000,0.000185650000000,0.000107428000000,0.000071082000000,0.000268218000000,0.000277304000000,0.000290737000000,0.000316020000000,0.014392058000000,0.000256761000000,0.015240256000000,0.000263082000000,0.000217255000000 +0.000147329000000,0.000263082000000,0.000045403000000,0.000083724000000,0.000195922000000,0.000235427000000,0.000066737000000,0.000130341000000,0.000127971000000,0.000070292000000,0.000267823000000,0.000538045000000,0.000259131000000,0.000267032000000,0.015467021000000,0.000257946000000,0.014640947000000,0.000334193000000,0.000253601000000 +0.000148119000000,0.000285600000000,0.000048168000000,0.000081749000000,0.000196712000000,0.000170638000000,0.000055280000000,0.000134687000000,0.000107428000000,0.000069897000000,0.000294292000000,0.000276514000000,0.000258341000000,0.000240958000000,0.013954725000000,0.000301008000000,0.014121836000000,0.000262687000000,0.000216465000000 +0.000147329000000,0.000259526000000,0.000047774000000,0.000081354000000,0.000197897000000,0.000185650000000,0.000053700000000,0.000130341000000,0.000110983000000,0.000071872000000,0.000271379000000,0.000291132000000,0.000291922000000,0.000286785000000,0.015294774000000,0.000258341000000,0.014436700000000,0.000259921000000,0.000217650000000 +0.000180119000000,0.000261502000000,0.000048169000000,0.000081353000000,0.000197502000000,0.000172218000000,0.000054095000000,0.000129946000000,0.000107033000000,0.000070292000000,0.000352761000000,0.000272959000000,0.000257552000000,0.000265058000000,0.015683909000000,0.000257946000000,0.014439861000000,0.000262292000000,0.000250044000000 +0.000147724000000,0.000282835000000,0.000045403000000,0.000082144000000,0.000228711000000,0.000171823000000,0.000055675000000,0.000201452000000,0.000107823000000,0.000070292000000,0.000275329000000,0.000321946000000,0.000259921000000,0.000275329000000,0.014174380000000,0.000346835000000,0.014648848000000,0.000261502000000,0.000217650000000 +0.000149304000000,0.000297847000000,0.000048168000000,0.000081354000000,0.000196316000000,0.000171428000000,0.000059230000000,0.000130736000000,0.000109008000000,0.000071873000000,0.000282045000000,0.000279675000000,0.000299822000000,0.000421897000000,0.014503071000000,0.000257551000000,0.014227318000000,0.000310094000000,0.000216860000000 +0.000146539000000,0.000258737000000,0.000048168000000,0.000081354000000,0.000195526000000,0.000171822000000,0.000054095000000,0.000131922000000,0.000122835000000,0.000099527000000,0.000301403000000,0.000259922000000,0.000263082000000,0.000246884000000,0.014976749000000,0.000287970000000,0.015853785000000,0.000262292000000,0.000217255000000 +0.000147329000000,0.000294687000000,0.000047773000000,0.000083724000000,0.000195526000000,0.000171033000000,0.000069502000000,0.000131131000000,0.000108613000000,0.000069501000000,0.000273354000000,0.000309699000000,0.000318391000000,0.000319576000000,0.014333194000000,0.000260316000000,0.014719564000000,0.000297848000000,0.000216070000000 +0.000146934000000,0.000258737000000,0.000045798000000,0.000081748000000,0.000194737000000,0.000188810000000,0.000054095000000,0.000133896000000,0.000108612000000,0.000071477000000,0.000273748000000,0.000270588000000,0.000257551000000,0.000237798000000,0.014473442000000,0.000258342000000,0.014720750000000,0.000258341000000,0.000216465000000 +0.000147329000000,0.000276910000000,0.000045403000000,0.000080564000000,0.000195922000000,0.000171823000000,0.000054884000000,0.000131527000000,0.000112564000000,0.000069897000000,0.000291921000000,0.000273353000000,0.000256761000000,0.000273354000000,0.014978725000000,0.000293106000000,0.014717194000000,0.000261501000000,0.000221205000000 +0.000146143000000,0.000263477000000,0.000046194000000,0.000081354000000,0.000194342000000,0.000172218000000,0.000054885000000,0.000132316000000,0.000107823000000,0.000071477000000,0.000259921000000,0.000346835000000,0.000377650000000,0.000303378000000,0.015024947000000,0.000261501000000,0.014475022000000,0.000258341000000,0.000304958000000 +0.000147329000000,0.000261501000000,0.000048169000000,0.000081748000000,0.000281650000000,0.000173008000000,0.000053699000000,0.000131921000000,0.000141403000000,0.000073453000000,0.000303773000000,0.000271378000000,0.000256761000000,0.000251230000000,0.014642923000000,0.000257946000000,0.014701391000000,0.000261502000000,0.000216465000000 +0.000180909000000,0.000293501000000,0.000045798000000,0.000081354000000,0.000196711000000,0.000171428000000,0.000054094000000,0.000131526000000,0.000107823000000,0.000070292000000,0.000276514000000,0.000305749000000,0.000296267000000,0.000264267000000,0.014427219000000,0.000270588000000,0.014763021000000,0.000295872000000,0.000217255000000 +0.000146933000000,0.000258736000000,0.000097947000000,0.000081749000000,0.000196711000000,0.000172218000000,0.000056860000000,0.000152070000000,0.000110193000000,0.000071872000000,0.000281649000000,0.000257946000000,0.000260316000000,0.000293897000000,0.014561935000000,0.000258341000000,0.014480157000000,0.000259131000000,0.000329452000000 +0.000146144000000,0.000262292000000,0.000045798000000,0.000081354000000,0.000196317000000,0.000170637000000,0.000054095000000,0.000135873000000,0.000107823000000,0.000070292000000,0.000304959000000,0.000270983000000,0.000257156000000,0.000232662000000,0.014266824000000,0.000295872000000,0.014336750000000,0.000299032000000,0.000249650000000 +0.000146144000000,0.000340514000000,0.000045798000000,0.000080958000000,0.000195131000000,0.000171823000000,0.000054094000000,0.000131921000000,0.000108613000000,0.000070687000000,0.000275329000000,0.000328267000000,0.000311675000000,0.000265452000000,0.014620404000000,0.000260712000000,0.014870477000000,0.000259921000000,0.000326687000000 +0.000146144000000,0.000314835000000,0.000048168000000,0.000081353000000,0.000196317000000,0.000170242000000,0.000056069000000,0.000130737000000,0.000107032000000,0.000072663000000,0.000323921000000,0.000262687000000,0.000260316000000,0.000261501000000,0.014748799000000,0.000256761000000,0.014547318000000,0.000261897000000,0.000217650000000 +0.000219625000000,0.000264267000000,0.000047774000000,0.000082144000000,0.000275328000000,0.000172218000000,0.000053304000000,0.000133502000000,0.000108612000000,0.000077799000000,0.000270588000000,0.000257551000000,0.000258736000000,0.000280860000000,0.014409441000000,0.000325897000000,0.014154231000000,0.000262292000000,0.000234242000000 +0.000146934000000,0.000342490000000,0.000045798000000,0.000080563000000,0.000196317000000,0.000174193000000,0.000054490000000,0.000165897000000,0.000109008000000,0.000071477000000,0.000271379000000,0.000283625000000,0.000260316000000,0.000309304000000,0.014520058000000,0.000255971000000,0.014279861000000,0.000262687000000,0.000216465000000 +0.000145353000000,0.000261501000000,0.000048168000000,0.000080169000000,0.000194736000000,0.000170638000000,0.000054095000000,0.000131922000000,0.000108613000000,0.000104267000000,0.000359872000000,0.000272959000000,0.000257156000000,0.000238588000000,0.014864157000000,0.000256761000000,0.016586625000000,0.000292316000000,0.000216860000000 +0.000146538000000,0.000264267000000,0.000045403000000,0.000081749000000,0.000197502000000,0.000171428000000,0.000054094000000,0.000131526000000,0.000107822000000,0.000070292000000,0.000289551000000,0.000301798000000,0.000340119000000,0.000260712000000,0.014661095000000,0.000259526000000,0.015443316000000,0.000261502000000,0.000217650000000 +0.000248465000000,0.000269403000000,0.000063971000000,0.000081748000000,0.000229501000000,0.000171823000000,0.000056860000000,0.000131921000000,0.000109008000000,0.000070292000000,0.000258736000000,0.000273353000000,0.000275724000000,0.000347625000000,0.014851120000000,0.000257946000000,0.015120946000000,0.000310884000000,0.000270193000000 +0.000379625000000,0.000265057000000,0.000045403000000,0.000081748000000,0.000195131000000,0.000170637000000,0.000067922000000,0.000130737000000,0.000110588000000,0.000069107000000,0.000296663000000,0.000261896000000,0.000259922000000,0.000269798000000,0.017240451000000,0.000327477000000,0.015811909000000,0.000260316000000,0.000228711000000 +0.000182095000000,0.000342885000000,0.000048169000000,0.000080959000000,0.000195922000000,0.000171822000000,0.000054490000000,0.000165897000000,0.000107428000000,0.000070292000000,0.000262687000000,0.000314835000000,0.000258736000000,0.000268613000000,0.014908404000000,0.000258341000000,0.014769737000000,0.000261501000000,0.000270193000000 +0.000146539000000,0.000262292000000,0.000048169000000,0.000080959000000,0.000216860000000,0.000250045000000,0.000053305000000,0.000131527000000,0.000107033000000,0.000069897000000,0.000271773000000,0.000269007000000,0.000258736000000,0.000317996000000,0.014758280000000,0.000259921000000,0.014956206000000,0.000280859000000,0.000296267000000 +0.000145353000000,0.000296267000000,0.000048564000000,0.000081354000000,0.000196316000000,0.000188020000000,0.000056860000000,0.000130341000000,0.000107428000000,0.000071873000000,0.000286390000000,0.000267823000000,0.000343674000000,0.000233057000000,0.015163613000000,0.000260712000000,0.014730231000000,0.000262292000000,0.000229502000000 +0.000145748000000,0.000259921000000,0.000045798000000,0.000084119000000,0.000195131000000,0.000170243000000,0.000054094000000,0.000130341000000,0.000107033000000,0.000104663000000,0.000269798000000,0.000353946000000,0.000256366000000,0.000278885000000,0.015170330000000,0.000257156000000,0.014632651000000,0.000263872000000,0.000220811000000 +0.000184860000000,0.000334588000000,0.000045008000000,0.000080959000000,0.000194737000000,0.000172612000000,0.000054490000000,0.000131922000000,0.000141008000000,0.000071477000000,0.000304168000000,0.000273353000000,0.000261896000000,0.000267823000000,0.015151761000000,0.000297452000000,0.014509787000000,0.000265453000000,0.000232662000000 +0.000147329000000,0.000258736000000,0.000048168000000,0.000081353000000,0.000319970000000,0.000172218000000,0.000054884000000,0.000165106000000,0.000107428000000,0.000071082000000,0.000270983000000,0.000306539000000,0.000328662000000,0.000272958000000,0.015187712000000,0.000257947000000,0.014812403000000,0.000356711000000,0.000221600000000 +0.000146934000000,0.000261897000000,0.000097946000000,0.000081748000000,0.000214094000000,0.000171428000000,0.000053699000000,0.000131921000000,0.000109798000000,0.000074242000000,0.000273353000000,0.000274538000000,0.000260711000000,0.000264662000000,0.015044700000000,0.000259922000000,0.014863367000000,0.000264267000000,0.000222391000000 +0.000146539000000,0.000264267000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000171428000000,0.000053700000000,0.000131922000000,0.000107033000000,0.000071082000000,0.000338539000000,0.000271378000000,0.000336169000000,0.000261897000000,0.014637786000000,0.000290341000000,0.014471860000000,0.000327082000000,0.000219626000000 +0.000147724000000,0.000260316000000,0.000045403000000,0.000081749000000,0.000229896000000,0.000173008000000,0.000056069000000,0.000131132000000,0.000107428000000,0.000070687000000,0.000271379000000,0.000477995000000,0.000384761000000,0.000209354000000,0.014735366000000,0.000259527000000,0.014849145000000,0.000258341000000,0.000218835000000 +0.000163131000000,0.000261106000000,0.000045403000000,0.000083724000000,0.000195131000000,0.000172218000000,0.000054489000000,0.000150490000000,0.000141008000000,0.000070687000000,0.000270588000000,0.000282044000000,0.000289946000000,0.000260712000000,0.013722824000000,0.000257156000000,0.015044700000000,0.000279279000000,0.000222786000000 +0.000146143000000,0.000267823000000,0.000045798000000,0.000080958000000,0.000194342000000,0.000171823000000,0.000054884000000,0.000138638000000,0.000109403000000,0.000107033000000,0.000269403000000,0.000313650000000,0.000260712000000,0.000269008000000,0.014027021000000,0.000356712000000,0.014629491000000,0.000259922000000,0.000230292000000 +0.000146539000000,0.000297848000000,0.000045403000000,0.000081749000000,0.000196711000000,0.000171428000000,0.000054094000000,0.000132712000000,0.000109008000000,0.000070687000000,0.000268218000000,0.000259921000000,0.000257946000000,0.000295477000000,0.013988701000000,0.000257156000000,0.014642922000000,0.000266637000000,0.000231477000000 +0.000146934000000,0.000261106000000,0.000045798000000,0.000080959000000,0.000196711000000,0.000173008000000,0.000055674000000,0.000131131000000,0.000109403000000,0.000071477000000,0.000349995000000,0.000276909000000,0.000312859000000,0.000258736000000,0.014116701000000,0.000356316000000,0.014557194000000,0.000262292000000,0.000220020000000 +0.000160761000000,0.000334588000000,0.000045798000000,0.000080958000000,0.000195131000000,0.000172218000000,0.000054885000000,0.000130341000000,0.000107033000000,0.000070292000000,0.000282045000000,0.000306933000000,0.000257946000000,0.000208563000000,0.014117886000000,0.000447576000000,0.014758675000000,0.000265057000000,0.000223576000000 +0.000147329000000,0.000260712000000,0.000061601000000,0.000080958000000,0.000194737000000,0.000171427000000,0.000105057000000,0.000165502000000,0.000109008000000,0.000069897000000,0.000278490000000,0.000293502000000,0.000291131000000,0.000346439000000,0.014860601000000,0.000296267000000,0.014864947000000,0.000310885000000,0.000220415000000 +0.000147329000000,0.000333403000000,0.000048169000000,0.000080959000000,0.000230292000000,0.000170637000000,0.000053304000000,0.000131527000000,0.000111379000000,0.000073057000000,0.000304169000000,0.000306539000000,0.000263081000000,0.000265847000000,0.013772997000000,0.000259922000000,0.014174379000000,0.000259131000000,0.000221205000000 +0.000146144000000,0.000260712000000,0.000045403000000,0.000132712000000,0.000195921000000,0.000174588000000,0.000054885000000,0.000131921000000,0.000108613000000,0.000071477000000,0.000276909000000,0.000289551000000,0.000257156000000,0.000260711000000,0.013884800000000,0.000263082000000,0.014119861000000,0.000295872000000,0.000283230000000 +0.000179724000000,0.000265058000000,0.000045403000000,0.000080959000000,0.000195527000000,0.000170637000000,0.000054885000000,0.000133106000000,0.000110983000000,0.000091230000000,0.000336168000000,0.000274144000000,0.000410834000000,0.000307724000000,0.014303565000000,0.000258341000000,0.014177540000000,0.000259922000000,0.000236613000000 +0.000147329000000,0.000299428000000,0.000045799000000,0.000079773000000,0.000234637000000,0.000171032000000,0.000053700000000,0.000130341000000,0.000107823000000,0.000069897000000,0.000270589000000,0.000302588000000,0.000259921000000,0.000238193000000,0.014048750000000,0.000257946000000,0.014599465000000,0.000264662000000,0.000219626000000 +0.000145748000000,0.000261897000000,0.000045798000000,0.000081749000000,0.000195527000000,0.000172218000000,0.000053700000000,0.000201453000000,0.000107823000000,0.000070687000000,0.000268218000000,0.000272168000000,0.000303378000000,0.000227526000000,0.013441936000000,0.000294686000000,0.014260898000000,0.000280069000000,0.000209748000000 +0.000148910000000,0.000310094000000,0.000045403000000,0.000082144000000,0.000194341000000,0.000171823000000,0.000053304000000,0.000131921000000,0.000151674000000,0.000073452000000,0.000317206000000,0.000253995000000,0.000259922000000,0.000330637000000,0.014012009000000,0.000261501000000,0.014460799000000,0.000263082000000,0.000207378000000 +0.000146934000000,0.000261502000000,0.000045798000000,0.000082539000000,0.000194341000000,0.000172218000000,0.000067527000000,0.000132712000000,0.000145353000000,0.000070687000000,0.000257551000000,0.000293897000000,0.000257946000000,0.000256761000000,0.013727170000000,0.000261502000000,0.014708897000000,0.000260712000000,0.000206588000000 +0.000181305000000,0.000342884000000,0.000045798000000,0.000080959000000,0.000229107000000,0.000170243000000,0.000053700000000,0.000131527000000,0.000109403000000,0.000071477000000,0.000261106000000,0.000262687000000,0.000295872000000,0.000259526000000,0.013755219000000,0.000295872000000,0.014621589000000,0.000262292000000,0.000327872000000 +0.000146144000000,0.000259527000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000169847000000,0.000056070000000,0.000131526000000,0.000108613000000,0.000069897000000,0.000257947000000,0.000271774000000,0.000259132000000,0.000237798000000,0.013756799000000,0.000257946000000,0.014269984000000,0.000292317000000,0.000208959000000 +0.000148119000000,0.000261106000000,0.000045798000000,0.000080563000000,0.000195131000000,0.000174193000000,0.000054489000000,0.000147724000000,0.000107822000000,0.000090045000000,0.000261107000000,0.000270983000000,0.000255971000000,0.000227527000000,0.014121836000000,0.000258341000000,0.014823071000000,0.000263082000000,0.000219230000000 +0.000146934000000,0.000263872000000,0.000048168000000,0.000080959000000,0.000195526000000,0.000172217000000,0.000054884000000,0.000132317000000,0.000178538000000,0.000107823000000,0.000294687000000,0.000260317000000,0.000258736000000,0.000262687000000,0.014182676000000,0.000257552000000,0.014910774000000,0.000299822000000,0.000243724000000 +0.000195132000000,0.000261107000000,0.000048168000000,0.000081354000000,0.000196712000000,0.000170637000000,0.000054885000000,0.000132711000000,0.000108613000000,0.000084515000000,0.000259131000000,0.000306144000000,0.000257947000000,0.000273354000000,0.013681738000000,0.000258737000000,0.015280947000000,0.000263477000000,0.000207774000000 +0.000147328000000,0.000427033000000,0.000045798000000,0.000082934000000,0.000197107000000,0.000172218000000,0.000054094000000,0.000135872000000,0.000108613000000,0.000071082000000,0.000259132000000,0.000257551000000,0.000291921000000,0.000265848000000,0.014291713000000,0.000292711000000,0.014624354000000,0.000263082000000,0.000208564000000 +0.000148119000000,0.000261107000000,0.000047773000000,0.000165896000000,0.000196316000000,0.000174588000000,0.000055674000000,0.000195526000000,0.000108612000000,0.000071082000000,0.000357897000000,0.000265847000000,0.000258736000000,0.000279279000000,0.014333984000000,0.000263477000000,0.015489144000000,0.000295082000000,0.000257551000000 +0.000146144000000,0.000297057000000,0.000048563000000,0.000081748000000,0.000228711000000,0.000172613000000,0.000083329000000,0.000144564000000,0.000107033000000,0.000071872000000,0.000259922000000,0.000291921000000,0.000260316000000,0.000261107000000,0.013836207000000,0.000257946000000,0.017157094000000,0.000262292000000,0.000232663000000 +0.000146934000000,0.000262687000000,0.000045403000000,0.000081749000000,0.000195922000000,0.000171823000000,0.000053700000000,0.000131132000000,0.000106638000000,0.000070687000000,0.000258341000000,0.000273354000000,0.000340119000000,0.000229502000000,0.014209935000000,0.000294687000000,0.015629391000000,0.000261501000000,0.000395822000000 +0.000178933000000,0.000295872000000,0.000045403000000,0.000081354000000,0.000196317000000,0.000172613000000,0.000053699000000,0.000132711000000,0.000110588000000,0.000074638000000,0.000313254000000,0.000270588000000,0.000260316000000,0.000330243000000,0.014681243000000,0.000260317000000,0.015726971000000,0.000264662000000,0.000333008000000 +0.000147724000000,0.000261106000000,0.000047773000000,0.000080564000000,0.000196317000000,0.000197107000000,0.000053700000000,0.000180119000000,0.000109403000000,0.000071477000000,0.000263872000000,0.000301008000000,0.000273353000000,0.000263082000000,0.013942083000000,0.000259526000000,0.015077885000000,0.000276514000000,0.000220415000000 +0.000146539000000,0.000260317000000,0.000047774000000,0.000081354000000,0.000265452000000,0.000171822000000,0.000054094000000,0.000131922000000,0.000108218000000,0.000071477000000,0.000299032000000,0.000284415000000,0.000287180000000,0.000247674000000,0.013884009000000,0.000260711000000,0.015419218000000,0.000261502000000,0.000222391000000 +0.000145354000000,0.000263872000000,0.000045798000000,0.000080959000000,0.000195131000000,0.000171032000000,0.000055279000000,0.000131922000000,0.000107033000000,0.000070292000000,0.000259921000000,0.000316415000000,0.000257947000000,0.000296662000000,0.014420898000000,0.000256365000000,0.014844009000000,0.000347625000000,0.000225156000000 +0.000184069000000,0.000266243000000,0.000048168000000,0.000081749000000,0.000196316000000,0.000171033000000,0.000055675000000,0.000130736000000,0.000109403000000,0.000070687000000,0.000269798000000,0.000272168000000,0.000342490000000,0.000262292000000,0.014635416000000,0.000291527000000,0.015148601000000,0.000259526000000,0.000220021000000 +0.000146539000000,0.000321156000000,0.000048168000000,0.000082144000000,0.000228317000000,0.000195131000000,0.000087675000000,0.000132317000000,0.000107428000000,0.000071082000000,0.000336959000000,0.000269008000000,0.000256761000000,0.000225156000000,0.013970923000000,0.000261896000000,0.014749984000000,0.000354736000000,0.000233452000000 +0.000148119000000,0.000312070000000,0.000186045000000,0.000081353000000,0.000194341000000,0.000169848000000,0.000054885000000,0.000166687000000,0.000110588000000,0.000134687000000,0.000268218000000,0.000303773000000,0.000259131000000,0.000329057000000,0.014009639000000,0.000256366000000,0.014530329000000,0.000263082000000,0.000255971000000 +0.000146539000000,0.000294292000000,0.000045798000000,0.000081749000000,0.000196316000000,0.000172218000000,0.000055675000000,0.000131526000000,0.000108613000000,0.000071082000000,0.000263872000000,0.000271378000000,0.000270983000000,0.000280465000000,0.014892206000000,0.000346045000000,0.014571021000000,0.000297452000000,0.000217255000000 +0.000148119000000,0.000261107000000,0.000046193000000,0.000082144000000,0.000195527000000,0.000170637000000,0.000054094000000,0.000135873000000,0.000107032000000,0.000069897000000,0.000295082000000,0.000274144000000,0.000263082000000,0.000259526000000,0.014286577000000,0.000255970000000,0.014288157000000,0.000263082000000,0.000208169000000 +0.000171032000000,0.000335378000000,0.000048169000000,0.000102687000000,0.000238193000000,0.000207773000000,0.000053699000000,0.000133107000000,0.000107033000000,0.000070292000000,0.000272958000000,0.000360267000000,0.000291132000000,0.000265452000000,0.013998183000000,0.000257551000000,0.014866132000000,0.000258342000000,0.000258341000000 +0.000147724000000,0.000264268000000,0.000045403000000,0.000081749000000,0.000194341000000,0.000172218000000,0.000052909000000,0.000133897000000,0.000142193000000,0.000069897000000,0.000272564000000,0.000274934000000,0.000257551000000,0.000231477000000,0.014357689000000,0.000257551000000,0.014556799000000,0.000265847000000,0.000208168000000 +0.000147329000000,0.000258736000000,0.000045403000000,0.000080958000000,0.000241749000000,0.000171033000000,0.000054095000000,0.000131921000000,0.000108613000000,0.000071082000000,0.000587032000000,0.000340119000000,0.000259131000000,0.000297452000000,0.013515022000000,0.000258736000000,0.014690330000000,0.000262292000000,0.000220810000000 +0.000146934000000,0.000262292000000,0.000045403000000,0.000081749000000,0.000229897000000,0.000172217000000,0.000053699000000,0.000130737000000,0.000107033000000,0.000071477000000,0.000359082000000,0.000271774000000,0.000293896000000,0.000245304000000,0.013969342000000,0.000291131000000,0.014576552000000,0.000355921000000,0.000244514000000 +0.000181699000000,0.000261107000000,0.000045404000000,0.000080958000000,0.000196316000000,0.000208169000000,0.000054094000000,0.000132712000000,0.000110983000000,0.000070292000000,0.000272959000000,0.000272564000000,0.000260711000000,0.000259922000000,0.014606182000000,0.000308119000000,0.014346231000000,0.000264662000000,0.000218440000000 +0.000148119000000,0.000348415000000,0.000059230000000,0.000080959000000,0.000197502000000,0.000174193000000,0.000055675000000,0.000133107000000,0.000109403000000,0.000071082000000,0.000269798000000,0.000311279000000,0.000259526000000,0.000293897000000,0.014611713000000,0.000260711000000,0.014957786000000,0.000345649000000,0.000216465000000 +0.000146539000000,0.000263476000000,0.000045798000000,0.000081354000000,0.000194342000000,0.000172613000000,0.000055675000000,0.000165897000000,0.000108613000000,0.000070687000000,0.000308514000000,0.000269403000000,0.000260317000000,0.000263082000000,0.013922725000000,0.000255970000000,0.014821490000000,0.000261501000000,0.000367378000000 +0.000146538000000,0.000334983000000,0.000048169000000,0.000080958000000,0.000353946000000,0.000170243000000,0.000054489000000,0.000132317000000,0.000107033000000,0.000069897000000,0.000262292000000,0.000274143000000,0.000258736000000,0.000232267000000,0.014170429000000,0.000258341000000,0.014248651000000,0.000328267000000,0.000313255000000 +0.000146539000000,0.000261897000000,0.000046193000000,0.000081354000000,0.000231081000000,0.000206983000000,0.000052909000000,0.000130737000000,0.000107428000000,0.000069501000000,0.000261502000000,0.000269798000000,0.000290736000000,0.000310489000000,0.014133689000000,0.000293896000000,0.014921045000000,0.000309700000000,0.000208563000000 +0.000160761000000,0.000295872000000,0.000048169000000,0.000082144000000,0.000194736000000,0.000170637000000,0.000056465000000,0.000131527000000,0.000108613000000,0.000070292000000,0.000259922000000,0.000270588000000,0.000263082000000,0.000263872000000,0.013691219000000,0.000258342000000,0.014789490000000,0.000318391000000,0.000206983000000 +0.000146539000000,0.000263477000000,0.000045799000000,0.000082144000000,0.000229501000000,0.000171823000000,0.000053304000000,0.000130341000000,0.000109403000000,0.000164712000000,0.000257946000000,0.000366983000000,0.000264267000000,0.000272564000000,0.013873342000000,0.000258736000000,0.015628996000000,0.000260316000000,0.000206588000000 +0.000145354000000,0.000268217000000,0.000050144000000,0.000080958000000,0.000196316000000,0.000170638000000,0.000057255000000,0.000164316000000,0.000108613000000,0.000071477000000,0.000330637000000,0.000273354000000,0.000295872000000,0.000281650000000,0.013895861000000,0.000309304000000,0.015416453000000,0.000261107000000,0.000208563000000 +0.000147329000000,0.000259131000000,0.000079773000000,0.000080959000000,0.000196316000000,0.000174588000000,0.000054094000000,0.000132317000000,0.000142193000000,0.000071082000000,0.000263082000000,0.000269402000000,0.000260711000000,0.000266242000000,0.013656454000000,0.000259131000000,0.014945934000000,0.000258341000000,0.000254390000000 +0.000180514000000,0.000258341000000,0.000047773000000,0.000103477000000,0.000234242000000,0.000171823000000,0.000054884000000,0.000131527000000,0.000107033000000,0.000072267000000,0.000259527000000,0.000306539000000,0.000259131000000,0.000209353000000,0.013688059000000,0.000258736000000,0.014230873000000,0.000260712000000,0.000207378000000 +0.000147329000000,0.000339329000000,0.000048168000000,0.000098341000000,0.000194736000000,0.000172217000000,0.000053700000000,0.000131131000000,0.000108218000000,0.000070292000000,0.000291526000000,0.000269403000000,0.000304168000000,0.000334193000000,0.014414577000000,0.000290736000000,0.014407466000000,0.000332218000000,0.000206983000000 +0.000146539000000,0.000263477000000,0.000067131000000,0.000080959000000,0.000195921000000,0.000170637000000,0.000056069000000,0.000131526000000,0.000107822000000,0.000072267000000,0.000257551000000,0.000278489000000,0.000255181000000,0.000259526000000,0.014509391000000,0.000256366000000,0.014885490000000,0.000263872000000,0.000253995000000 +0.000147328000000,0.000293502000000,0.000063181000000,0.000080959000000,0.000195921000000,0.000173008000000,0.000054094000000,0.000165897000000,0.000107033000000,0.000070687000000,0.000263082000000,0.000373304000000,0.000258341000000,0.000312860000000,0.015682725000000,0.000255971000000,0.014310281000000,0.000308909000000,0.000207378000000 +0.000147328000000,0.000264267000000,0.000046193000000,0.000081748000000,0.000227921000000,0.000171823000000,0.000053699000000,0.000131922000000,0.000141403000000,0.000071477000000,0.000272959000000,0.000259922000000,0.000259131000000,0.000265847000000,0.014364404000000,0.000261896000000,0.014652008000000,0.000265057000000,0.000208959000000 +0.000188415000000,0.000260712000000,0.000045403000000,0.000080959000000,0.000195132000000,0.000188021000000,0.000055674000000,0.000131921000000,0.000108218000000,0.000069897000000,0.000265057000000,0.000257946000000,0.000259527000000,0.000210538000000,0.013772207000000,0.000267032000000,0.015087762000000,0.000261501000000,0.000208959000000 +0.000148119000000,0.000263477000000,0.000048169000000,0.000084119000000,0.000196317000000,0.000170242000000,0.000055279000000,0.000130736000000,0.000108613000000,0.000071477000000,0.000299823000000,0.000263082000000,0.000355131000000,0.000336563000000,0.013947219000000,0.000293106000000,0.014816354000000,0.000260712000000,0.000218045000000 +0.000146538000000,0.000265847000000,0.000086490000000,0.000081354000000,0.000194736000000,0.000173798000000,0.000053305000000,0.000130342000000,0.000109008000000,0.000105848000000,0.000261107000000,0.000291921000000,0.000278095000000,0.000263477000000,0.014034528000000,0.000265452000000,0.014725885000000,0.000347230000000,0.000207378000000 +0.000146933000000,0.000338933000000,0.000052514000000,0.000080959000000,0.000197897000000,0.000173403000000,0.000054094000000,0.000130737000000,0.000107427000000,0.000071082000000,0.000259922000000,0.000275329000000,0.000259526000000,0.000265058000000,0.014090627000000,0.000260711000000,0.015288848000000,0.000557798000000,0.000208169000000 +0.000178934000000,0.000259131000000,0.000045798000000,0.000080958000000,0.000196317000000,0.000171033000000,0.000055675000000,0.000131921000000,0.000108613000000,0.000099921000000,0.000306143000000,0.000273353000000,0.000266637000000,0.000262292000000,0.014195713000000,0.000292316000000,0.015867613000000,0.000275724000000,0.000207774000000 +0.000146144000000,0.000259922000000,0.000045798000000,0.000080563000000,0.000194341000000,0.000171033000000,0.000071477000000,0.000131921000000,0.000107427000000,0.000071477000000,0.000308514000000,0.000302983000000,0.000257946000000,0.000241354000000,0.014168059000000,0.000256366000000,0.014746428000000,0.000262687000000,0.000207773000000 +0.000146539000000,0.000260711000000,0.000048169000000,0.000082144000000,0.000210143000000,0.000172613000000,0.000054884000000,0.000131132000000,0.000109008000000,0.000069897000000,0.000262291000000,0.000270983000000,0.000291922000000,0.000250045000000,0.014049540000000,0.000263872000000,0.015374971000000,0.000298638000000,0.000216464000000 +0.000148119000000,0.000298637000000,0.000045798000000,0.000080958000000,0.000196711000000,0.000172613000000,0.000054095000000,0.000132317000000,0.000109008000000,0.000069897000000,0.000304169000000,0.000274934000000,0.000258736000000,0.000274143000000,0.014145540000000,0.000456267000000,0.015609243000000,0.000260317000000,0.000210143000000 +0.000147329000000,0.000260316000000,0.000048169000000,0.000137057000000,0.000196316000000,0.000170242000000,0.000088859000000,0.000186045000000,0.000110193000000,0.000069897000000,0.000259527000000,0.000339724000000,0.000258736000000,0.000269403000000,0.013983960000000,0.000293896000000,0.014320552000000,0.000263872000000,0.000217255000000 +0.000179329000000,0.000309304000000,0.000047774000000,0.000094390000000,0.000232267000000,0.000171032000000,0.000055674000000,0.000131922000000,0.000108613000000,0.000070292000000,0.000261107000000,0.000271378000000,0.000313255000000,0.000305354000000,0.014253787000000,0.000260712000000,0.015222083000000,0.000261107000000,0.000207774000000 +0.000146934000000,0.000261502000000,0.000047773000000,0.000080563000000,0.000195131000000,0.000192761000000,0.000054489000000,0.000131527000000,0.000140613000000,0.000071477000000,0.000286785000000,0.000302193000000,0.000257156000000,0.000244514000000,0.014313046000000,0.000276909000000,0.014189787000000,0.000263872000000,0.000206983000000 +0.000160366000000,0.000260712000000,0.000046193000000,0.000081749000000,0.000196712000000,0.000185649000000,0.000055280000000,0.000131922000000,0.000107033000000,0.000071477000000,0.000259526000000,0.000274539000000,0.000255576000000,0.000287180000000,0.016413588000000,0.000256366000000,0.014406281000000,0.000296267000000,0.000206588000000 +0.000147724000000,0.000259131000000,0.000046193000000,0.000081748000000,0.000195131000000,0.000171032000000,0.000053699000000,0.000131527000000,0.000107822000000,0.000069897000000,0.000294686000000,0.000259132000000,0.000259132000000,0.000296662000000,0.015071959000000,0.000255575000000,0.015010329000000,0.000265057000000,0.000209749000000 +0.000180119000000,0.000263082000000,0.000117699000000,0.000081749000000,0.000229897000000,0.000171822000000,0.000053700000000,0.000131527000000,0.000108613000000,0.000077008000000,0.000259527000000,0.000295082000000,0.000257946000000,0.000276119000000,0.015039959000000,0.000291527000000,0.014531120000000,0.000293897000000,0.000230292000000 +0.000145748000000,0.000345650000000,0.000047774000000,0.000081354000000,0.000196316000000,0.000174193000000,0.000053699000000,0.000131921000000,0.000108613000000,0.000071477000000,0.000259527000000,0.000257156000000,0.000278489000000,0.000269798000000,0.015756205000000,0.000255575000000,0.014973589000000,0.000263477000000,0.000221600000000 +0.000147329000000,0.000263477000000,0.000048169000000,0.000081749000000,0.000194737000000,0.000171428000000,0.000054885000000,0.000131131000000,0.000109798000000,0.000071872000000,0.000303379000000,0.000269798000000,0.000256366000000,0.000277304000000,0.015131218000000,0.000257946000000,0.015019021000000,0.000261107000000,0.000476810000000 +0.000146934000000,0.000295082000000,0.000047773000000,0.000080958000000,0.000195131000000,0.000171033000000,0.000054885000000,0.000166687000000,0.000107033000000,0.000070292000000,0.000259132000000,0.000297453000000,0.000257946000000,0.000264662000000,0.014566280000000,0.000328267000000,0.014244701000000,0.000264662000000,0.000256761000000 +0.000148119000000,0.000318390000000,0.000048168000000,0.000080959000000,0.000195527000000,0.000170242000000,0.000054094000000,0.000131131000000,0.000106638000000,0.000214885000000,0.000257946000000,0.000261107000000,0.000331427000000,0.000265847000000,0.014868502000000,0.000260316000000,0.014602626000000,0.000261106000000,0.000265847000000 +0.000160366000000,0.000299033000000,0.000046193000000,0.000080564000000,0.000194341000000,0.000174588000000,0.000053700000000,0.000130342000000,0.000107033000000,0.000107823000000,0.000317600000000,0.000259922000000,0.000261107000000,0.000265453000000,0.014952650000000,0.000257551000000,0.015121737000000,0.000304958000000,0.000208168000000 +0.000146539000000,0.000265848000000,0.000045798000000,0.000081353000000,0.000194341000000,0.000170242000000,0.000054489000000,0.000131921000000,0.000108613000000,0.000087674000000,0.000267032000000,0.000285205000000,0.000260316000000,0.000275724000000,0.014725096000000,0.000255575000000,0.014053491000000,0.000283625000000,0.000206589000000 +0.000146934000000,0.000266637000000,0.000045799000000,0.000083724000000,0.000229896000000,0.000171823000000,0.000054885000000,0.000131921000000,0.000107427000000,0.000069897000000,0.000289946000000,0.000273748000000,0.000259131000000,0.000277699000000,0.014274330000000,0.000278095000000,0.014093392000000,0.000294292000000,0.000206588000000 +0.000147724000000,0.000314045000000,0.000048168000000,0.000080959000000,0.000195526000000,0.000170638000000,0.000053699000000,0.000145354000000,0.000235032000000,0.000105057000000,0.000279674000000,0.000315625000000,0.000260711000000,0.000264267000000,0.014579317000000,0.000325897000000,0.014541392000000,0.000265452000000,0.000208959000000 +0.000218835000000,0.000265848000000,0.000048169000000,0.000080959000000,0.000197106000000,0.000171428000000,0.000054094000000,0.000130736000000,0.000135082000000,0.000071477000000,0.000270983000000,0.000267823000000,0.000293107000000,0.000261502000000,0.014638182000000,0.000257946000000,0.014501490000000,0.000292711000000,0.000220020000000 +0.000182095000000,0.000311674000000,0.000047773000000,0.000080959000000,0.000196316000000,0.000229502000000,0.000076613000000,0.000131131000000,0.000109403000000,0.000070292000000,0.000310490000000,0.000282835000000,0.000258342000000,0.000262292000000,0.014759071000000,0.000260317000000,0.014646083000000,0.000259921000000,0.000215674000000 +0.000146539000000,0.000262687000000,0.000048959000000,0.000081354000000,0.000229107000000,0.000172218000000,0.000055279000000,0.000133502000000,0.000108613000000,0.000071872000000,0.000271773000000,0.000268218000000,0.000259132000000,0.000274538000000,0.015656650000000,0.000272563000000,0.014572206000000,0.000260317000000,0.000209748000000 +0.000148514000000,0.000349601000000,0.000045798000000,0.000082538000000,0.000197897000000,0.000172218000000,0.000053304000000,0.000130342000000,0.000109008000000,0.000070687000000,0.000272958000000,0.000265453000000,0.000293106000000,0.000261106000000,0.015093688000000,0.000260316000000,0.014476206000000,0.000261107000000,0.000224761000000 +0.000180119000000,0.000259527000000,0.000045798000000,0.000080958000000,0.000195131000000,0.000225551000000,0.000054095000000,0.000130341000000,0.000108613000000,0.000073452000000,0.000272169000000,0.000291132000000,0.000255576000000,0.000298637000000,0.014607367000000,0.000276514000000,0.014405885000000,0.000264268000000,0.000345650000000 +0.000147329000000,0.000283626000000,0.000045798000000,0.000167082000000,0.000230687000000,0.000171823000000,0.000055279000000,0.000130736000000,0.000106637000000,0.000072662000000,0.000275329000000,0.000313650000000,0.000256366000000,0.000267428000000,0.014501095000000,0.000261897000000,0.014391663000000,0.000293107000000,0.000231477000000 +0.000146934000000,0.000266243000000,0.000045403000000,0.000081353000000,0.000196712000000,0.000170637000000,0.000054094000000,0.000131526000000,0.000107428000000,0.000070292000000,0.000301798000000,0.000259527000000,0.000299032000000,0.000271378000000,0.014632651000000,0.000259131000000,0.014870872000000,0.000264662000000,0.000220021000000 +0.000146934000000,0.000261107000000,0.000060415000000,0.000081354000000,0.000196317000000,0.000171822000000,0.000052910000000,0.000132317000000,0.000107427000000,0.000070292000000,0.000270983000000,0.000505649000000,0.000259922000000,0.000238983000000,0.014326083000000,0.000291527000000,0.014194923000000,0.000296662000000,0.000217650000000 +0.000147724000000,0.000264662000000,0.000045403000000,0.000080959000000,0.000274934000000,0.000180910000000,0.000054884000000,0.000152070000000,0.000126785000000,0.000069502000000,0.000270588000000,0.000274934000000,0.000260316000000,0.000249650000000,0.014141195000000,0.000259921000000,0.014761440000000,0.000262292000000,0.000216070000000 +0.000215279000000,0.000261896000000,0.000047774000000,0.000081354000000,0.000194737000000,0.000171033000000,0.000120465000000,0.000131132000000,0.000108613000000,0.000120465000000,0.000316021000000,0.000312860000000,0.000256761000000,0.000341304000000,0.014900897000000,0.000256366000000,0.014596305000000,0.000282044000000,0.000218835000000 +0.000147329000000,0.000311279000000,0.000047774000000,0.000117304000000,0.000195131000000,0.000172218000000,0.000053699000000,0.000171428000000,0.000107032000000,0.000075427000000,0.000286786000000,0.000271773000000,0.000262687000000,0.000273354000000,0.014846379000000,0.000424662000000,0.014221392000000,0.000261502000000,0.000219230000000 +0.000146934000000,0.000265057000000,0.000045403000000,0.000080959000000,0.000195921000000,0.000172613000000,0.000055675000000,0.000131131000000,0.000144564000000,0.000069897000000,0.000273748000000,0.000264267000000,0.000446390000000,0.000261502000000,0.014450922000000,0.000259921000000,0.014167664000000,0.000268218000000,0.000217650000000 +0.000147328000000,0.000294687000000,0.000047773000000,0.000080958000000,0.000253205000000,0.000173403000000,0.000053305000000,0.000135873000000,0.000108613000000,0.000070687000000,0.000272563000000,0.000335774000000,0.000276119000000,0.000275328000000,0.014853095000000,0.000328267000000,0.014767762000000,0.000275724000000,0.000220020000000 +0.000180514000000,0.000259922000000,0.000047773000000,0.000082143000000,0.000194736000000,0.000171033000000,0.000052909000000,0.000204218000000,0.000107033000000,0.000069897000000,0.000274143000000,0.000273749000000,0.000290341000000,0.000241749000000,0.014173985000000,0.000260712000000,0.014031368000000,0.000261501000000,0.000216860000000 +0.000146933000000,0.000264267000000,0.000130736000000,0.000081353000000,0.000195527000000,0.000171033000000,0.000054884000000,0.000131922000000,0.000175773000000,0.000071477000000,0.000363032000000,0.000303773000000,0.000258341000000,0.000264662000000,0.015190477000000,0.000256366000000,0.014283811000000,0.000295477000000,0.000217650000000 +0.000147329000000,0.000258736000000,0.000046193000000,0.000080959000000,0.000194737000000,0.000172613000000,0.000053305000000,0.000131922000000,0.000108218000000,0.000069502000000,0.000285205000000,0.000267822000000,0.000259527000000,0.000453502000000,0.014542972000000,0.000302588000000,0.014403120000000,0.000260712000000,0.000216859000000 +0.000148515000000,0.000262687000000,0.000047773000000,0.000081354000000,0.000367773000000,0.000319180000000,0.000053699000000,0.000131921000000,0.000107033000000,0.000070292000000,0.000268217000000,0.000272959000000,0.000345255000000,0.000273354000000,0.016242921000000,0.000258736000000,0.014902873000000,0.000263872000000,0.000218045000000 +0.000147328000000,0.000298242000000,0.000045798000000,0.000081354000000,0.000197502000000,0.000170638000000,0.000052909000000,0.000132711000000,0.000107428000000,0.000069897000000,0.000302588000000,0.000338933000000,0.000257946000000,0.000298638000000,0.015841143000000,0.000259922000000,0.014779613000000,0.000260712000000,0.000217650000000 +0.000194736000000,0.000263477000000,0.000048168000000,0.000081749000000,0.000228712000000,0.000172218000000,0.000053699000000,0.000130342000000,0.000106637000000,0.000072267000000,0.000303774000000,0.000272563000000,0.000259131000000,0.000207378000000,0.014947120000000,0.000256761000000,0.014476602000000,0.000261502000000,0.000216070000000 +0.000146934000000,0.000298637000000,0.000045798000000,0.000081354000000,0.000195922000000,0.000174193000000,0.000054490000000,0.000131131000000,0.000188415000000,0.000083329000000,0.000311280000000,0.000295082000000,0.000257156000000,0.000259526000000,0.014168058000000,0.000257156000000,0.014236404000000,0.000274933000000,0.000216860000000 +0.000146933000000,0.000266243000000,0.000045798000000,0.000082144000000,0.000194736000000,0.000171823000000,0.000054490000000,0.000132712000000,0.000108613000000,0.000071477000000,0.000269403000000,0.000269798000000,0.000256366000000,0.000313255000000,0.014915120000000,0.000291526000000,0.014642133000000,0.000261501000000,0.000218045000000 +0.000147724000000,0.000263872000000,0.000045799000000,0.000081354000000,0.000199082000000,0.000173403000000,0.000053699000000,0.000131921000000,0.000108218000000,0.000071082000000,0.000270588000000,0.000260711000000,0.000308119000000,0.000278884000000,0.015324799000000,0.000262687000000,0.014507417000000,0.000307329000000,0.000219625000000 +0.000179329000000,0.000263872000000,0.000080168000000,0.000080564000000,0.000211724000000,0.000172218000000,0.000058835000000,0.000152464000000,0.000107428000000,0.000071872000000,0.000314835000000,0.000308119000000,0.000271774000000,0.000263082000000,0.014676898000000,0.000261107000000,0.014497144000000,0.000264267000000,0.000216070000000 +0.000146539000000,0.000262292000000,0.000048169000000,0.000117700000000,0.000195921000000,0.000171033000000,0.000053304000000,0.000131526000000,0.000108613000000,0.000069897000000,0.000259526000000,0.000271774000000,0.000255971000000,0.000261502000000,0.014226528000000,0.000291132000000,0.014093787000000,0.000298638000000,0.000216465000000 +0.000146934000000,0.000292711000000,0.000045798000000,0.000080563000000,0.000196711000000,0.000170638000000,0.000055280000000,0.000130341000000,0.000109008000000,0.000069897000000,0.000259922000000,0.000275724000000,0.000309304000000,0.000228712000000,0.014816354000000,0.000257551000000,0.014187021000000,0.000270588000000,0.000217650000000 +0.000148119000000,0.000265847000000,0.000045403000000,0.000082934000000,0.000228316000000,0.000172218000000,0.000103873000000,0.000131527000000,0.000109008000000,0.000097156000000,0.000293502000000,0.000317996000000,0.000267822000000,0.000259132000000,0.014687169000000,0.000260712000000,0.014625539000000,0.000261897000000,0.000216859000000 +0.000146144000000,0.000394637000000,0.000046193000000,0.000080959000000,0.000197501000000,0.000170242000000,0.000082934000000,0.000130736000000,0.000106242000000,0.000071477000000,0.000258736000000,0.000273354000000,0.000257946000000,0.000273749000000,0.015141490000000,0.000261502000000,0.014136849000000,0.000280465000000,0.000218440000000 +0.000161946000000,0.000263477000000,0.000045799000000,0.000082539000000,0.000194736000000,0.000171033000000,0.000059230000000,0.000165502000000,0.000112959000000,0.000069897000000,0.000259921000000,0.000274144000000,0.000257551000000,0.000259922000000,0.015822180000000,0.000259527000000,0.014831366000000,0.000339329000000,0.000218045000000 +0.000145354000000,0.000296662000000,0.000045798000000,0.000082144000000,0.000196317000000,0.000170637000000,0.000054095000000,0.000132317000000,0.000109008000000,0.000071477000000,0.000260711000000,0.000272169000000,0.000260316000000,0.000244514000000,0.015153342000000,0.000293501000000,0.014718380000000,0.000264267000000,0.000215674000000 +0.000145353000000,0.000261502000000,0.000045798000000,0.000084120000000,0.000228316000000,0.000172218000000,0.000053699000000,0.000130736000000,0.000178539000000,0.000070687000000,0.000263872000000,0.000274539000000,0.000295082000000,0.000226737000000,0.014548503000000,0.000256760000000,0.014605391000000,0.000260711000000,0.000216464000000 +0.000146144000000,0.000261896000000,0.000048564000000,0.000080958000000,0.000195131000000,0.000171823000000,0.000089650000000,0.000131921000000,0.000107428000000,0.000072663000000,0.000293502000000,0.000301403000000,0.000257946000000,0.000267428000000,0.014652799000000,0.000262292000000,0.014820700000000,0.000263477000000,0.000221206000000 +0.000178933000000,0.000260711000000,0.000045799000000,0.000081354000000,0.000196316000000,0.000172218000000,0.000053699000000,0.000130737000000,0.000107428000000,0.000070292000000,0.000270193000000,0.000269403000000,0.000256366000000,0.000307724000000,0.014706527000000,0.000291132000000,0.014463960000000,0.000263477000000,0.000276909000000 +0.000146933000000,0.000262292000000,0.000045798000000,0.000082539000000,0.000194737000000,0.000170242000000,0.000057255000000,0.000180909000000,0.000106637000000,0.000088860000000,0.000280859000000,0.000259132000000,0.000339329000000,0.000276118000000,0.015050626000000,0.000261502000000,0.014459219000000,0.000295872000000,0.000216859000000 +0.000146538000000,0.000261897000000,0.000045798000000,0.000080959000000,0.000195132000000,0.000170638000000,0.000053699000000,0.000132711000000,0.000108613000000,0.000071872000000,0.000402933000000,0.000355526000000,0.000256366000000,0.000236613000000,0.014600256000000,0.000258736000000,0.014512948000000,0.000265452000000,0.000217650000000 +0.000145749000000,0.000260712000000,0.000047774000000,0.000081353000000,0.000197106000000,0.000171823000000,0.000055280000000,0.000131921000000,0.000140613000000,0.000070292000000,0.000268613000000,0.000320761000000,0.000277304000000,0.000298242000000,0.015189293000000,0.000274934000000,0.014833342000000,0.000318390000000,0.000257551000000 +0.000184070000000,0.000346440000000,0.000048168000000,0.000080564000000,0.000194736000000,0.000172613000000,0.000054094000000,0.000131527000000,0.000108613000000,0.000071477000000,0.000287180000000,0.000289156000000,0.000258342000000,0.000231872000000,0.014537046000000,0.000258341000000,0.014611317000000,0.000263082000000,0.000207774000000 +0.000269403000000,0.000258341000000,0.000045798000000,0.000080959000000,0.000265848000000,0.000172218000000,0.000053699000000,0.000165502000000,0.000109008000000,0.000070687000000,0.000269798000000,0.000269402000000,0.000258736000000,0.000255970000000,0.014649243000000,0.000342094000000,0.014652008000000,0.000303378000000,0.000208959000000 +0.000146144000000,0.000293107000000,0.000046193000000,0.000080959000000,0.000194736000000,0.000171428000000,0.000127971000000,0.000130341000000,0.000110588000000,0.000069897000000,0.000278885000000,0.000267033000000,0.000330638000000,0.000298637000000,0.014917885000000,0.000260712000000,0.014862181000000,0.000259132000000,0.000217649000000 +0.000147724000000,0.000259921000000,0.000049354000000,0.000080959000000,0.000195527000000,0.000172613000000,0.000056464000000,0.000131921000000,0.000107823000000,0.000070292000000,0.000306144000000,0.000347230000000,0.000261106000000,0.000240563000000,0.014989391000000,0.000258342000000,0.014853491000000,0.000259921000000,0.000218835000000 +0.000183675000000,0.000263872000000,0.000045798000000,0.000080959000000,0.000230292000000,0.000173403000000,0.000055675000000,0.000131131000000,0.000108613000000,0.000084119000000,0.000257156000000,0.000311674000000,0.000259922000000,0.000255575000000,0.015111465000000,0.000291526000000,0.014305935000000,0.000262292000000,0.000217649000000 +0.000146143000000,0.000264662000000,0.000047773000000,0.000081354000000,0.000196317000000,0.000172217000000,0.000054094000000,0.000129946000000,0.000108612000000,0.000069897000000,0.000259921000000,0.000273749000000,0.000272959000000,0.000292711000000,0.015039564000000,0.000257946000000,0.014396009000000,0.000260317000000,0.000267427000000 +0.000146143000000,0.000260712000000,0.000045403000000,0.000081748000000,0.000195131000000,0.000171823000000,0.000053699000000,0.000278094000000,0.000107033000000,0.000069897000000,0.000427427000000,0.000283230000000,0.000257156000000,0.000226736000000,0.014413786000000,0.000257551000000,0.014626725000000,0.000343674000000,0.000220020000000 +0.000146144000000,0.000277304000000,0.000045798000000,0.000095971000000,0.000194736000000,0.000171033000000,0.000055675000000,0.000152859000000,0.000107428000000,0.000071083000000,0.000257946000000,0.000274539000000,0.000330242000000,0.000266637000000,0.015640848000000,0.000257155000000,0.014648454000000,0.000261896000000,0.000220020000000 +0.000146539000000,0.000262687000000,0.000045798000000,0.000082144000000,0.000227526000000,0.000171032000000,0.000054884000000,0.000131131000000,0.000107033000000,0.000069897000000,0.000294292000000,0.000337749000000,0.000259921000000,0.000252810000000,0.015264354000000,0.000258342000000,0.014507812000000,0.000282440000000,0.000228711000000 +0.000146934000000,0.000346044000000,0.000048168000000,0.000081748000000,0.000195922000000,0.000171032000000,0.000053699000000,0.000135872000000,0.000108613000000,0.000070292000000,0.000259526000000,0.000276514000000,0.000260712000000,0.000259922000000,0.014811614000000,0.000302193000000,0.014841244000000,0.000259921000000,0.000216465000000 +0.000146934000000,0.000260711000000,0.000061600000000,0.000081353000000,0.000195131000000,0.000171823000000,0.000073057000000,0.000150885000000,0.000178934000000,0.000069896000000,0.000263082000000,0.000273353000000,0.000294291000000,0.000282045000000,0.014724700000000,0.000257946000000,0.014015960000000,0.000261896000000,0.000218440000000 +0.000147329000000,0.000296662000000,0.000048168000000,0.000080169000000,0.000216069000000,0.000170638000000,0.000058440000000,0.000130341000000,0.000110983000000,0.000119280000000,0.000334193000000,0.000317205000000,0.000256760000000,0.000231872000000,0.014631860000000,0.000258737000000,0.014727071000000,0.000263082000000,0.000218440000000 +0.000154440000000,0.000261896000000,0.000046193000000,0.000082144000000,0.000194736000000,0.000170637000000,0.000054490000000,0.000137453000000,0.000107823000000,0.000073453000000,0.000263477000000,0.000269798000000,0.000259131000000,0.000257156000000,0.014624749000000,0.000304168000000,0.015098429000000,0.000260317000000,0.000215675000000 +0.000215675000000,0.000334193000000,0.000045798000000,0.000084514000000,0.000195922000000,0.000173008000000,0.000054094000000,0.000130736000000,0.000107032000000,0.000071082000000,0.000263872000000,0.000276514000000,0.000256366000000,0.000264267000000,0.014230478000000,0.000258736000000,0.014410231000000,0.000331823000000,0.000216859000000 +0.000147724000000,0.000264662000000,0.000045798000000,0.000081749000000,0.000193551000000,0.000171823000000,0.000055674000000,0.000130341000000,0.000106637000000,0.000071477000000,0.000280464000000,0.000611526000000,0.000257946000000,0.000258737000000,0.015011910000000,0.000259527000000,0.014326873000000,0.000264267000000,0.000217255000000 +0.000146934000000,0.000261897000000,0.000048563000000,0.000082144000000,0.000285205000000,0.000171823000000,0.000054489000000,0.000129946000000,0.000141008000000,0.000072267000000,0.000259527000000,0.000304959000000,0.000349995000000,0.000258341000000,0.014341886000000,0.000265453000000,0.016585834000000,0.000295872000000,0.000218835000000 +0.000146539000000,0.000265452000000,0.000045798000000,0.000080959000000,0.000195131000000,0.000172218000000,0.000116515000000,0.000131527000000,0.000107822000000,0.000076218000000,0.000341304000000,0.000273749000000,0.000361847000000,0.000290341000000,0.014235614000000,0.000256366000000,0.014686774000000,0.000265057000000,0.000216465000000 +0.000180119000000,0.000262292000000,0.000046193000000,0.000081748000000,0.000195527000000,0.000170638000000,0.000054489000000,0.000130341000000,0.000109798000000,0.000103873000000,0.000259526000000,0.000272168000000,0.000291921000000,0.000225551000000,0.015848650000000,0.000296662000000,0.014955811000000,0.000261897000000,0.000218440000000 +0.000147329000000,0.000516317000000,0.000048564000000,0.000080959000000,0.000228711000000,0.000171033000000,0.000054094000000,0.000133501000000,0.000108218000000,0.000071082000000,0.000261501000000,0.000304564000000,0.000259527000000,0.000241748000000,0.013881639000000,0.000278884000000,0.015327959000000,0.000262687000000,0.000218045000000 +0.000147329000000,0.000264267000000,0.000046194000000,0.000080959000000,0.000243723000000,0.000170242000000,0.000054094000000,0.000178934000000,0.000108613000000,0.000070292000000,0.000293896000000,0.000272959000000,0.000257551000000,0.000291526000000,0.014606577000000,0.000277699000000,0.015518378000000,0.000263082000000,0.000216860000000 +0.000146539000000,0.000282440000000,0.000046193000000,0.000080564000000,0.000195922000000,0.000172218000000,0.000053700000000,0.000130736000000,0.000107427000000,0.000069897000000,0.000256761000000,0.000350390000000,0.000327872000000,0.000263082000000,0.016236995000000,0.000308909000000,0.015283317000000,0.000263477000000,0.000218045000000 +0.000146934000000,0.000260317000000,0.000045403000000,0.000080958000000,0.000194736000000,0.000173008000000,0.000053699000000,0.000130341000000,0.000121255000000,0.000069897000000,0.000263477000000,0.000289156000000,0.000318391000000,0.000257155000000,0.014421688000000,0.000258736000000,0.015452799000000,0.000260317000000,0.000217255000000 +0.000148119000000,0.000277304000000,0.000048168000000,0.000115329000000,0.000229107000000,0.000207773000000,0.000054095000000,0.000132317000000,0.000106637000000,0.000071082000000,0.000262292000000,0.000271378000000,0.000323131000000,0.000332612000000,0.014822280000000,0.000293897000000,0.014490429000000,0.000314440000000,0.000216464000000 +0.000146933000000,0.000261502000000,0.000045798000000,0.000081353000000,0.000194736000000,0.000173008000000,0.000075428000000,0.000130737000000,0.000106637000000,0.000070292000000,0.000257156000000,0.000346045000000,0.000258341000000,0.000209353000000,0.016427020000000,0.000263872000000,0.014731416000000,0.000280465000000,0.000218835000000 +0.000147328000000,0.000296662000000,0.000048168000000,0.000081354000000,0.000197107000000,0.000171427000000,0.000054489000000,0.000130737000000,0.000109008000000,0.000103872000000,0.000303378000000,0.000271379000000,0.000259131000000,0.000260316000000,0.015468996000000,0.000256761000000,0.014691515000000,0.000313649000000,0.000254786000000 +0.000146538000000,0.000260316000000,0.000048168000000,0.000081749000000,0.000216464000000,0.000170638000000,0.000055279000000,0.000133502000000,0.000109798000000,0.000069897000000,0.000258736000000,0.000273354000000,0.000294292000000,0.000324711000000,0.015260799000000,0.000296267000000,0.014806083000000,0.000263872000000,0.000217650000000 +0.000216464000000,0.000294687000000,0.000045798000000,0.000081354000000,0.000195921000000,0.000170637000000,0.000054094000000,0.000131922000000,0.000202242000000,0.000069502000000,0.000261897000000,0.000270193000000,0.000260711000000,0.000257156000000,0.015031663000000,0.000257551000000,0.014809243000000,0.000281650000000,0.000216860000000 +0.000147724000000,0.000261896000000,0.000046193000000,0.000081354000000,0.000196712000000,0.000172217000000,0.000055675000000,0.000130341000000,0.000231082000000,0.000071478000000,0.000327477000000,0.000272958000000,0.000259131000000,0.000260317000000,0.015616354000000,0.000255576000000,0.014454083000000,0.000265847000000,0.000270193000000 +0.000146934000000,0.000260711000000,0.000045798000000,0.000080959000000,0.000197897000000,0.000170638000000,0.000054094000000,0.000165107000000,0.000110589000000,0.000072268000000,0.000256761000000,0.000290736000000,0.000264267000000,0.000272959000000,0.015205885000000,0.000519872000000,0.014225737000000,0.000261897000000,0.000216860000000 +0.000146934000000,0.000259922000000,0.000048564000000,0.000080958000000,0.000237798000000,0.000173403000000,0.000053305000000,0.000136268000000,0.000164712000000,0.000069897000000,0.000259527000000,0.000268217000000,0.000261896000000,0.000256761000000,0.015144650000000,0.000259131000000,0.014354923000000,0.000263082000000,0.000218045000000 +0.000148119000000,0.000261107000000,0.000045799000000,0.000081749000000,0.000195526000000,0.000170243000000,0.000142193000000,0.000135872000000,0.000108218000000,0.000070292000000,0.000277304000000,0.000268218000000,0.000348415000000,0.000262687000000,0.015687070000000,0.000259526000000,0.014960947000000,0.000263082000000,0.000218045000000 +0.000147724000000,0.000311279000000,0.000046193000000,0.000083724000000,0.000195526000000,0.000171822000000,0.000054094000000,0.000137453000000,0.000107428000000,0.000138242000000,0.000259526000000,0.000291131000000,0.000256366000000,0.000301403000000,0.014456058000000,0.000272959000000,0.014771712000000,0.000299823000000,0.000218440000000 +0.000148909000000,0.000264267000000,0.000048169000000,0.000082144000000,0.000195527000000,0.000172218000000,0.000054094000000,0.000134292000000,0.000108613000000,0.000071082000000,0.000280859000000,0.000272563000000,0.000257551000000,0.000261107000000,0.014736157000000,0.000294291000000,0.014570626000000,0.000258736000000,0.000217650000000 +0.000146934000000,0.000355921000000,0.000095180000000,0.000081353000000,0.000195131000000,0.000181304000000,0.000054094000000,0.000192761000000,0.000109008000000,0.000074243000000,0.000259922000000,0.000269798000000,0.000331428000000,0.000239378000000,0.014644108000000,0.000292316000000,0.014361243000000,0.000296662000000,0.000218835000000 +0.000147724000000,0.000261107000000,0.000045798000000,0.000080959000000,0.000197107000000,0.000170637000000,0.000054489000000,0.000133502000000,0.000106637000000,0.000070292000000,0.000259922000000,0.000364218000000,0.000257551000000,0.000227526000000,0.014561539000000,0.000277304000000,0.014690725000000,0.000259922000000,0.000291527000000 +0.000180910000000,0.000295477000000,0.000048563000000,0.000081354000000,0.000196317000000,0.000170638000000,0.000054094000000,0.000130341000000,0.000110588000000,0.000071478000000,0.000292316000000,0.000272168000000,0.000308910000000,0.000317996000000,0.014504256000000,0.000256366000000,0.014379021000000,0.000260316000000,0.000216859000000 +0.000147329000000,0.000261106000000,0.000046193000000,0.000081748000000,0.000264662000000,0.000170638000000,0.000053699000000,0.000183674000000,0.000108613000000,0.000070687000000,0.000259131000000,0.000303773000000,0.000259131000000,0.000333403000000,0.014648848000000,0.000261897000000,0.014431169000000,0.000320761000000,0.000217650000000 +0.000148514000000,0.000264662000000,0.000045403000000,0.000081749000000,0.000195922000000,0.000174193000000,0.000072662000000,0.000167082000000,0.000110588000000,0.000069502000000,0.000257551000000,0.000269403000000,0.000269008000000,0.000299428000000,0.014899713000000,0.000341699000000,0.014763416000000,0.000351180000000,0.000230687000000 +0.000146934000000,0.000263477000000,0.000048169000000,0.000080168000000,0.000196317000000,0.000172218000000,0.000056070000000,0.000131921000000,0.000110193000000,0.000086095000000,0.000335378000000,0.000303378000000,0.000341699000000,0.000238193000000,0.014660305000000,0.000259526000000,0.014309490000000,0.000258736000000,0.000216860000000 +0.000146933000000,0.000264662000000,0.000060810000000,0.000081354000000,0.000195921000000,0.000172218000000,0.000054490000000,0.000129946000000,0.000111379000000,0.000071872000000,0.000265452000000,0.000348020000000,0.000263872000000,0.000296267000000,0.014739317000000,0.000265057000000,0.014342676000000,0.000279675000000,0.000217650000000 +0.000146144000000,0.000332613000000,0.000050538000000,0.000081353000000,0.000194736000000,0.000171428000000,0.000054095000000,0.000130341000000,0.000161156000000,0.000071872000000,0.000258341000000,0.000282835000000,0.000290736000000,0.000229897000000,0.014807268000000,0.000292317000000,0.014845984000000,0.000262292000000,0.000253600000000 +0.000146539000000,0.000259131000000,0.000045403000000,0.000080959000000,0.000197106000000,0.000173798000000,0.000054490000000,0.000132316000000,0.000108218000000,0.000070687000000,0.000260712000000,0.000303773000000,0.000255576000000,0.000263872000000,0.014902478000000,0.000257946000000,0.014247466000000,0.000259922000000,0.000306538000000 +0.000148119000000,0.000296662000000,0.000045798000000,0.000080959000000,0.000196317000000,0.000171428000000,0.000052909000000,0.000177748000000,0.000107428000000,0.000070292000000,0.000257551000000,0.000272169000000,0.000261107000000,0.000346440000000,0.014866132000000,0.000257156000000,0.014978725000000,0.000259921000000,0.000216860000000 +0.000147724000000,0.000260712000000,0.000045799000000,0.000081354000000,0.000228712000000,0.000171033000000,0.000074242000000,0.000132316000000,0.000107428000000,0.000071477000000,0.000363427000000,0.000270983000000,0.000291527000000,0.000248860000000,0.014813194000000,0.000260712000000,0.014292503000000,0.000263082000000,0.000253996000000 +0.000180514000000,0.000263872000000,0.000049749000000,0.000103477000000,0.000195922000000,0.000170637000000,0.000067526000000,0.000133107000000,0.000140218000000,0.000105847000000,0.000273353000000,0.000307724000000,0.000258736000000,0.000299428000000,0.014480552000000,0.000258341000000,0.014640157000000,0.000344860000000,0.000216465000000 +0.000145353000000,0.000267032000000,0.000045403000000,0.000205008000000,0.000195921000000,0.000173798000000,0.000053699000000,0.000131921000000,0.000158786000000,0.000071477000000,0.000274539000000,0.000269403000000,0.000259921000000,0.000227131000000,0.015457934000000,0.000291921000000,0.014816354000000,0.000261897000000,0.000216069000000 +0.000147329000000,0.000261897000000,0.000045403000000,0.000098341000000,0.000194341000000,0.000171033000000,0.000054490000000,0.000166292000000,0.000108218000000,0.000071872000000,0.000313650000000,0.000257946000000,0.000330637000000,0.000263082000000,0.014783170000000,0.000261107000000,0.014458429000000,0.000293897000000,0.000251625000000 +0.000146538000000,0.000260712000000,0.000046193000000,0.000080958000000,0.000263082000000,0.000174588000000,0.000055280000000,0.000131527000000,0.000108613000000,0.000069897000000,0.000274933000000,0.000301008000000,0.000257156000000,0.000366588000000,0.015180601000000,0.000257551000000,0.014338725000000,0.000261897000000,0.000218835000000 +0.000169058000000,0.000258341000000,0.000084909000000,0.000081749000000,0.000194341000000,0.000171033000000,0.000053699000000,0.000130342000000,0.000109008000000,0.000070292000000,0.000426242000000,0.000259131000000,0.000300613000000,0.000249650000000,0.014522824000000,0.000338143000000,0.014505836000000,0.000263477000000,0.000216069000000 +0.000147329000000,0.000294687000000,0.000045798000000,0.000084119000000,0.000195527000000,0.000171428000000,0.000055675000000,0.000135477000000,0.000107428000000,0.000069896000000,0.000424662000000,0.000272169000000,0.000256761000000,0.000257551000000,0.014745244000000,0.000255971000000,0.014350182000000,0.000356712000000,0.000252020000000 +0.000146933000000,0.000276514000000,0.000048564000000,0.000101502000000,0.000287180000000,0.000170638000000,0.000055674000000,0.000130736000000,0.000179724000000,0.000071082000000,0.000304563000000,0.000267823000000,0.000258341000000,0.000273748000000,0.014769737000000,0.000260317000000,0.014609737000000,0.000296662000000,0.000217255000000 +0.000147723000000,0.000349205000000,0.000046984000000,0.000080959000000,0.000216069000000,0.000171822000000,0.000053699000000,0.000135082000000,0.000108613000000,0.000104662000000,0.000269008000000,0.000279674000000,0.000335378000000,0.000231872000000,0.015110676000000,0.000258736000000,0.014318182000000,0.000259526000000,0.000217255000000 +0.000146934000000,0.000258736000000,0.000045798000000,0.000082144000000,0.000194736000000,0.000172613000000,0.000177748000000,0.000132316000000,0.000107823000000,0.000069897000000,0.000263872000000,0.000315230000000,0.000279674000000,0.000346045000000,0.014183861000000,0.000266243000000,0.014951070000000,0.000295081000000,0.000218440000000 +0.000216069000000,0.000306144000000,0.000045403000000,0.000080959000000,0.000214095000000,0.000170637000000,0.000105847000000,0.000130737000000,0.000109008000000,0.000070687000000,0.000321551000000,0.000273748000000,0.000458242000000,0.000254785000000,0.014386922000000,0.000294291000000,0.015052206000000,0.000259526000000,0.000219230000000 +0.000146934000000,0.000261501000000,0.000045798000000,0.000082143000000,0.000196316000000,0.000170638000000,0.000069106000000,0.000131527000000,0.000108218000000,0.000072662000000,0.000278884000000,0.000272563000000,0.000291921000000,0.000272958000000,0.014679268000000,0.000259131000000,0.014727860000000,0.000259132000000,0.000216860000000 +0.000146144000000,0.000260711000000,0.000048168000000,0.000080959000000,0.000195921000000,0.000170637000000,0.000056465000000,0.000176958000000,0.000167872000000,0.000070687000000,0.000306539000000,0.000354736000000,0.000308119000000,0.000316810000000,0.014320552000000,0.000257156000000,0.014507811000000,0.000292316000000,0.000216465000000 +0.000146144000000,0.000261501000000,0.000082933000000,0.000081354000000,0.000194736000000,0.000174193000000,0.000059230000000,0.000132316000000,0.000110193000000,0.000069896000000,0.000275329000000,0.000265057000000,0.000337354000000,0.000280860000000,0.014147911000000,0.000290341000000,0.014644503000000,0.000263872000000,0.000217254000000 +0.000179329000000,0.000261106000000,0.000045403000000,0.000081749000000,0.000227921000000,0.000171823000000,0.000056069000000,0.000130342000000,0.000107427000000,0.000069897000000,0.000268613000000,0.000269798000000,0.000288365000000,0.000244118000000,0.014883514000000,0.000258341000000,0.014104059000000,0.000295872000000,0.000217650000000 +0.000147724000000,0.000295477000000,0.000045798000000,0.000080958000000,0.000198292000000,0.000172613000000,0.000054095000000,0.000131131000000,0.000110589000000,0.000104267000000,0.000357502000000,0.000276909000000,0.000260712000000,0.000301798000000,0.014492799000000,0.000259131000000,0.014023071000000,0.000262687000000,0.000217255000000 +0.000146539000000,0.000261897000000,0.000047773000000,0.000081749000000,0.000195921000000,0.000191971000000,0.000053699000000,0.000131922000000,0.000110983000000,0.000073058000000,0.000267823000000,0.000257156000000,0.000258736000000,0.000268218000000,0.014297244000000,0.000503674000000,0.014918280000000,0.000264662000000,0.000252810000000 +0.000146539000000,0.000299822000000,0.000048168000000,0.000080959000000,0.000202242000000,0.000180514000000,0.000054095000000,0.000173798000000,0.000108218000000,0.000072268000000,0.000338538000000,0.000291526000000,0.000300218000000,0.000312465000000,0.014263663000000,0.000255576000000,0.014742478000000,0.000262687000000,0.000216069000000 +0.000147329000000,0.000258736000000,0.000048564000000,0.000081354000000,0.000196711000000,0.000218835000000,0.000056860000000,0.000130737000000,0.000111774000000,0.000074242000000,0.000269008000000,0.000262686000000,0.000257156000000,0.000272563000000,0.015216156000000,0.000259526000000,0.014405885000000,0.000260711000000,0.000217649000000 +0.000215280000000,0.000332218000000,0.000045403000000,0.000113353000000,0.000195131000000,0.000220810000000,0.000053699000000,0.000130341000000,0.000107427000000,0.000071082000000,0.000279675000000,0.000276119000000,0.000255971000000,0.000233057000000,0.014923811000000,0.000262292000000,0.014654774000000,0.000341304000000,0.000251626000000 +0.000147329000000,0.000276909000000,0.000046194000000,0.000081353000000,0.000196317000000,0.000170638000000,0.000088070000000,0.000130342000000,0.000108613000000,0.000069897000000,0.000310489000000,0.000301403000000,0.000291921000000,0.000428612000000,0.014920651000000,0.000348810000000,0.014696651000000,0.000266638000000,0.000218045000000 +0.000147724000000,0.000334983000000,0.000065156000000,0.000080959000000,0.000243724000000,0.000170638000000,0.000053700000000,0.000166292000000,0.000108218000000,0.000071477000000,0.000275724000000,0.000273353000000,0.000256761000000,0.000282440000000,0.015478082000000,0.000259132000000,0.014295268000000,0.000308909000000,0.000221206000000 +0.000146144000000,0.000293502000000,0.000045798000000,0.000082144000000,0.000194737000000,0.000174193000000,0.000054095000000,0.000131526000000,0.000108613000000,0.000159181000000,0.000319971000000,0.000276119000000,0.000256366000000,0.000299823000000,0.014455268000000,0.000262291000000,0.014505836000000,0.000265452000000,0.000273353000000 +0.000219625000000,0.000295872000000,0.000045403000000,0.000081748000000,0.000241748000000,0.000171032000000,0.000053699000000,0.000131526000000,0.000135872000000,0.000088070000000,0.000278884000000,0.000307724000000,0.000295872000000,0.000270984000000,0.014709688000000,0.000288366000000,0.014732601000000,0.000260711000000,0.000218045000000 +0.000167477000000,0.000263872000000,0.000046193000000,0.000080958000000,0.000217254000000,0.000172217000000,0.000055675000000,0.000131526000000,0.000107428000000,0.000084119000000,0.000271378000000,0.000274144000000,0.000261897000000,0.000276909000000,0.014727860000000,0.000295477000000,0.014693491000000,0.000259921000000,0.000216860000000 +0.000146539000000,0.000265452000000,0.000045798000000,0.000082934000000,0.000195922000000,0.000171032000000,0.000054490000000,0.000132317000000,0.000108218000000,0.000072267000000,0.000343674000000,0.000323131000000,0.000261897000000,0.000294292000000,0.014409441000000,0.000344860000000,0.014399169000000,0.000260316000000,0.000253995000000 +0.000146933000000,0.000262291000000,0.000045798000000,0.000080169000000,0.000194341000000,0.000207379000000,0.000053700000000,0.000294687000000,0.000107033000000,0.000071477000000,0.000271773000000,0.000258341000000,0.000260316000000,0.000282045000000,0.014472256000000,0.000258736000000,0.015036403000000,0.000261502000000,0.000216069000000 +0.000196316000000,0.000258341000000,0.000047378000000,0.000080958000000,0.000196316000000,0.000172218000000,0.000056465000000,0.000272563000000,0.000106637000000,0.000071477000000,0.000270984000000,0.000270983000000,0.000257946000000,0.000318390000000,0.014871663000000,0.000258737000000,0.014789490000000,0.000260317000000,0.000216465000000 +0.000148119000000,0.000333798000000,0.000045798000000,0.000081354000000,0.000230291000000,0.000171427000000,0.000067526000000,0.000130342000000,0.000194341000000,0.000071872000000,0.000289946000000,0.000273354000000,0.000290341000000,0.000309304000000,0.014647268000000,0.000291131000000,0.014038874000000,0.000348415000000,0.000217255000000 +0.000146934000000,0.000262292000000,0.000092810000000,0.000080563000000,0.000194341000000,0.000170243000000,0.000054884000000,0.000130736000000,0.000106637000000,0.000071872000000,0.000270983000000,0.000269403000000,0.000262292000000,0.000268218000000,0.015064848000000,0.000257551000000,0.014355713000000,0.000259922000000,0.000233057000000 +0.000146934000000,0.000293106000000,0.000046193000000,0.000080563000000,0.000194341000000,0.000174983000000,0.000054095000000,0.000130341000000,0.000110193000000,0.000071082000000,0.000305353000000,0.000337748000000,0.000259131000000,0.000219230000000,0.014397589000000,0.000257156000000,0.014162133000000,0.000294292000000,0.000216860000000 +0.000148514000000,0.000261502000000,0.000048169000000,0.000081354000000,0.000195131000000,0.000172218000000,0.000054094000000,0.000131921000000,0.000107033000000,0.000069502000000,0.000270588000000,0.000272564000000,0.000303378000000,0.000264662000000,0.015485984000000,0.000272168000000,0.014821490000000,0.000262292000000,0.000217255000000 +0.000146934000000,0.000260317000000,0.000045799000000,0.000083329000000,0.000229896000000,0.000172218000000,0.000053700000000,0.000130736000000,0.000108613000000,0.000069897000000,0.000268613000000,0.000266637000000,0.000258737000000,0.000276514000000,0.015761342000000,0.000257552000000,0.015062478000000,0.000262291000000,0.000230687000000 +0.000146933000000,0.000267032000000,0.000048169000000,0.000081354000000,0.000194341000000,0.000219625000000,0.000056070000000,0.000165502000000,0.000184464000000,0.000070292000000,0.000347625000000,0.000306539000000,0.000257551000000,0.000303773000000,0.014932897000000,0.000289946000000,0.014454873000000,0.000263082000000,0.000216069000000 +0.000147724000000,0.000259527000000,0.000045798000000,0.000081749000000,0.000196317000000,0.000339329000000,0.000054095000000,0.000131527000000,0.000108613000000,0.000071082000000,0.000267823000000,0.000270588000000,0.000255971000000,0.000263872000000,0.014466330000000,0.000256365000000,0.014347811000000,0.000262291000000,0.000221995000000 +0.000146933000000,0.000262687000000,0.000046193000000,0.000080564000000,0.000212909000000,0.000341699000000,0.000053699000000,0.000130341000000,0.000108218000000,0.000070292000000,0.000269402000000,0.000434144000000,0.000256366000000,0.000249650000000,0.014374281000000,0.000257156000000,0.014501095000000,0.000306539000000,0.000521452000000 +0.000178933000000,0.000315230000000,0.000046193000000,0.000081354000000,0.000195921000000,0.000186835000000,0.000053700000000,0.000132317000000,0.000108613000000,0.000070687000000,0.000291526000000,0.000275723000000,0.000282045000000,0.000270193000000,0.014672157000000,0.000343675000000,0.014521244000000,0.000262292000000,0.000234242000000 +0.000146539000000,0.000281255000000,0.000137057000000,0.000080959000000,0.000194736000000,0.000170638000000,0.000054490000000,0.000131527000000,0.000112563000000,0.000070291000000,0.000272563000000,0.000271379000000,0.000257946000000,0.000269008000000,0.014485688000000,0.000260316000000,0.014570626000000,0.000296267000000,0.000219231000000 +0.000146539000000,0.000260316000000,0.000063576000000,0.000080564000000,0.000194737000000,0.000170638000000,0.000054884000000,0.000164316000000,0.000172613000000,0.000071477000000,0.000347625000000,0.000322341000000,0.000259131000000,0.000261896000000,0.014544157000000,0.000342094000000,0.014223763000000,0.000260316000000,0.000218835000000 +0.000146143000000,0.000294292000000,0.000060020000000,0.000095181000000,0.000237403000000,0.000174193000000,0.000053699000000,0.000133502000000,0.000109008000000,0.000071477000000,0.000269008000000,0.000270983000000,0.000296267000000,0.000299428000000,0.014255367000000,0.000258736000000,0.016570822000000,0.000283230000000,0.000290341000000 +0.000146934000000,0.000262292000000,0.000045404000000,0.000081749000000,0.000194737000000,0.000173008000000,0.000054884000000,0.000131132000000,0.000109403000000,0.000071082000000,0.000273354000000,0.000311674000000,0.000256365000000,0.000238193000000,0.014982675000000,0.000258736000000,0.014506232000000,0.000265848000000,0.000220021000000 +0.000146934000000,0.000264267000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000171428000000,0.000053699000000,0.000131922000000,0.000108612000000,0.000090045000000,0.000305354000000,0.000272168000000,0.000258736000000,0.000264267000000,0.014420108000000,0.000342094000000,0.016486279000000,0.000259131000000,0.000217650000000 +0.000146539000000,0.000263081000000,0.000048169000000,0.000081353000000,0.000195131000000,0.000170638000000,0.000054094000000,0.000131526000000,0.000107428000000,0.000069897000000,0.000274934000000,0.000272169000000,0.000292316000000,0.000225551000000,0.014598676000000,0.000257946000000,0.014898922000000,0.000297452000000,0.000217255000000 +0.000147724000000,0.000260711000000,0.000048168000000,0.000081354000000,0.000223181000000,0.000171033000000,0.000053699000000,0.000180909000000,0.000151675000000,0.000069897000000,0.000297452000000,0.000306539000000,0.000257946000000,0.000261106000000,0.016445193000000,0.000292711000000,0.014542182000000,0.000263082000000,0.000217649000000 +0.000146934000000,0.000305353000000,0.000045798000000,0.000080959000000,0.000196711000000,0.000173008000000,0.000054489000000,0.000131527000000,0.000108613000000,0.000069897000000,0.000274933000000,0.000271378000000,0.000289551000000,0.000295872000000,0.015334279000000,0.000255970000000,0.014880354000000,0.000348020000000,0.000218440000000 +0.000180119000000,0.000263477000000,0.000049749000000,0.000083329000000,0.000196711000000,0.000172218000000,0.000054094000000,0.000134687000000,0.000107033000000,0.000069502000000,0.000306144000000,0.000269403000000,0.000265453000000,0.000244119000000,0.014569441000000,0.000259132000000,0.015358379000000,0.000260317000000,0.000216465000000 +0.000148514000000,0.000497749000000,0.000045798000000,0.000081354000000,0.000230686000000,0.000171823000000,0.000056464000000,0.000130341000000,0.000107427000000,0.000074243000000,0.000556218000000,0.000304958000000,0.000257946000000,0.000255180000000,0.016161143000000,0.000341699000000,0.014704947000000,0.000297847000000,0.000218835000000 +0.000146144000000,0.000280860000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000171823000000,0.000053699000000,0.000212910000000,0.000107032000000,0.000071477000000,0.000287971000000,0.000273749000000,0.000342094000000,0.000296662000000,0.015303860000000,0.000261502000000,0.014274330000000,0.000268218000000,0.000262292000000 +0.000146934000000,0.000258736000000,0.000047773000000,0.000080563000000,0.000196316000000,0.000215675000000,0.000053699000000,0.000139033000000,0.000192761000000,0.000092415000000,0.000341699000000,0.000276909000000,0.000257946000000,0.000263477000000,0.014594725000000,0.000257552000000,0.014370725000000,0.000264268000000,0.000215674000000 +0.000146539000000,0.000263081000000,0.000045798000000,0.000080169000000,0.000196712000000,0.000171033000000,0.000054885000000,0.000130341000000,0.000108218000000,0.000069897000000,0.000272169000000,0.000282045000000,0.000269403000000,0.000266637000000,0.015101193000000,0.000259131000000,0.014761046000000,0.000263477000000,0.000218045000000 +0.000146539000000,0.000343674000000,0.000117304000000,0.000082143000000,0.000229502000000,0.000170638000000,0.000053699000000,0.000130342000000,0.000107033000000,0.000071477000000,0.000269403000000,0.000276909000000,0.000263082000000,0.000275329000000,0.014493589000000,0.000255576000000,0.014845589000000,0.000262687000000,0.000217649000000 +0.000147329000000,0.000261897000000,0.000047774000000,0.000083724000000,0.000194736000000,0.000171823000000,0.000087674000000,0.000130736000000,0.000108613000000,0.000071477000000,0.000268613000000,0.000310094000000,0.000255971000000,0.000257946000000,0.014224947000000,0.000304563000000,0.014725490000000,0.000386736000000,0.000219230000000 +0.000147328000000,0.000308514000000,0.000048169000000,0.000082538000000,0.000196317000000,0.000174588000000,0.000055279000000,0.000220416000000,0.000107032000000,0.000070687000000,0.000272959000000,0.000275724000000,0.000289551000000,0.000258736000000,0.015063268000000,0.000259921000000,0.014662281000000,0.000258341000000,0.000216465000000 +0.000147329000000,0.000259922000000,0.000048169000000,0.000080169000000,0.000241749000000,0.000171033000000,0.000053700000000,0.000131527000000,0.000185650000000,0.000070687000000,0.000304168000000,0.000277304000000,0.000257946000000,0.000265452000000,0.014364405000000,0.000256366000000,0.014565095000000,0.000319576000000,0.000218045000000 +0.000180514000000,0.000263082000000,0.000046589000000,0.000080959000000,0.000196712000000,0.000171823000000,0.000053304000000,0.000131526000000,0.000210538000000,0.000071477000000,0.000275329000000,0.000274143000000,0.000258736000000,0.000264267000000,0.014688750000000,0.000300613000000,0.015176650000000,0.000263082000000,0.000219230000000 +0.000146539000000,0.000265452000000,0.000048169000000,0.000080958000000,0.000195131000000,0.000172218000000,0.000056465000000,0.000130342000000,0.000114143000000,0.000104267000000,0.000270983000000,0.000270588000000,0.000302983000000,0.000240564000000,0.015402626000000,0.000257946000000,0.014650034000000,0.000293897000000,0.000216860000000 +0.000146144000000,0.000265058000000,0.000045798000000,0.000080564000000,0.000195132000000,0.000172613000000,0.000055675000000,0.000164316000000,0.000121255000000,0.000070687000000,0.000361847000000,0.000313650000000,0.000258341000000,0.000288761000000,0.014509786000000,0.000257156000000,0.014740897000000,0.000259526000000,0.000218440000000 +0.000144958000000,0.000299032000000,0.000048169000000,0.000080168000000,0.000229897000000,0.000170243000000,0.000057255000000,0.000129946000000,0.000108218000000,0.000071872000000,0.000271378000000,0.000270193000000,0.000260317000000,0.000261107000000,0.014426428000000,0.000464563000000,0.014537836000000,0.000260712000000,0.000216860000000 +0.000147329000000,0.000261896000000,0.000061995000000,0.000080959000000,0.000196712000000,0.000172218000000,0.000053305000000,0.000129946000000,0.000108613000000,0.000070292000000,0.000288761000000,0.000271378000000,0.000287576000000,0.000255181000000,0.014963318000000,0.000292317000000,0.014454478000000,0.000262687000000,0.000218440000000 +0.000161156000000,0.000376860000000,0.000045798000000,0.000080563000000,0.000196712000000,0.000171822000000,0.000054095000000,0.000131922000000,0.000112168000000,0.000071083000000,0.000269403000000,0.000302588000000,0.000258341000000,0.000261897000000,0.014424059000000,0.000262687000000,0.014260898000000,0.000266242000000,0.000216859000000 +0.000146144000000,0.000419921000000,0.000048168000000,0.000080169000000,0.000195922000000,0.000173403000000,0.000054489000000,0.000133502000000,0.000107033000000,0.000070291000000,0.000278489000000,0.000270193000000,0.000295082000000,0.000238588000000,0.014224552000000,0.000257551000000,0.014681243000000,0.000310094000000,0.000220415000000 +0.000147329000000,0.000398588000000,0.000045798000000,0.000081749000000,0.000197502000000,0.000171427000000,0.000056069000000,0.000216860000000,0.000142588000000,0.000071478000000,0.000304958000000,0.000257946000000,0.000258342000000,0.000264267000000,0.014706527000000,0.000342489000000,0.014691119000000,0.000260712000000,0.000217650000000 +0.000145748000000,0.000296268000000,0.000045798000000,0.000080563000000,0.000196317000000,0.000170637000000,0.000053700000000,0.000133107000000,0.000107428000000,0.000106638000000,0.000271774000000,0.000285206000000,0.000258341000000,0.000308514000000,0.014852305000000,0.000257946000000,0.014244306000000,0.000295082000000,0.000216464000000 +0.000523033000000,0.000408070000000,0.000045798000000,0.000096761000000,0.000195922000000,0.000172218000000,0.000055280000000,0.000134687000000,0.000107032000000,0.000070687000000,0.000269798000000,0.000276119000000,0.000400168000000,0.000259922000000,0.014616849000000,0.000259526000000,0.014543761000000,0.000262687000000,0.000217650000000 +0.000182489000000,0.000433354000000,0.000048168000000,0.000081354000000,0.000229897000000,0.000171032000000,0.000056465000000,0.000130737000000,0.000108218000000,0.000070292000000,0.000318390000000,0.000319576000000,0.000259922000000,0.000228317000000,0.014834922000000,0.000346045000000,0.014903663000000,0.000260711000000,0.000215674000000 +0.000146539000000,0.000293107000000,0.000048168000000,0.000081354000000,0.000196317000000,0.000170638000000,0.000054490000000,0.000131526000000,0.000108613000000,0.000072662000000,0.000260317000000,0.000306933000000,0.000278884000000,0.000272169000000,0.014498725000000,0.000261897000000,0.014478971000000,0.000261897000000,0.000220415000000 +0.000197501000000,0.000282045000000,0.000101897000000,0.000081748000000,0.000194341000000,0.000170242000000,0.000053305000000,0.000131921000000,0.000180514000000,0.000070687000000,0.000265847000000,0.000267428000000,0.000257946000000,0.000256761000000,0.014208750000000,0.000292712000000,0.014957392000000,0.000260711000000,0.000220811000000 +0.000147329000000,0.000276514000000,0.000045798000000,0.000080958000000,0.000195131000000,0.000170242000000,0.000053305000000,0.000130341000000,0.000107032000000,0.000069897000000,0.000271378000000,0.000319971000000,0.000257946000000,0.000276119000000,0.014339515000000,0.000259526000000,0.014812009000000,0.000653007000000,0.000216465000000 +0.000147329000000,0.000259922000000,0.000047773000000,0.000082144000000,0.000274934000000,0.000171428000000,0.000056860000000,0.000131922000000,0.000106637000000,0.000090835000000,0.000268613000000,0.000267823000000,0.000640365000000,0.000261502000000,0.014812009000000,0.000257946000000,0.014228503000000,0.000317995000000,0.000218045000000 +0.000146934000000,0.000261107000000,0.000045799000000,0.000081748000000,0.000195921000000,0.000174588000000,0.000054094000000,0.000136267000000,0.000109008000000,0.000071477000000,0.000302983000000,0.000274934000000,0.000287181000000,0.000267428000000,0.014576552000000,0.000292711000000,0.014451713000000,0.000258736000000,0.000217255000000 +0.000179724000000,0.000295082000000,0.000045798000000,0.000080959000000,0.000241354000000,0.000171032000000,0.000055280000000,0.000168662000000,0.000110193000000,0.000071082000000,0.000276514000000,0.000282835000000,0.000274539000000,0.000284416000000,0.014872058000000,0.000257946000000,0.014695860000000,0.000259527000000,0.000218045000000 +0.000146539000000,0.000262291000000,0.000045798000000,0.000080564000000,0.000229897000000,0.000170637000000,0.000054095000000,0.000132317000000,0.000107033000000,0.000071082000000,0.000266637000000,0.000272959000000,0.000257946000000,0.000257156000000,0.015011910000000,0.000258736000000,0.014236799000000,0.000314835000000,0.000216464000000 +0.000146539000000,0.000346835000000,0.000048169000000,0.000080563000000,0.000194736000000,0.000171823000000,0.000054489000000,0.000131131000000,0.000107427000000,0.000071478000000,0.000326292000000,0.000305354000000,0.000258341000000,0.000268613000000,0.014315021000000,0.000272563000000,0.014110774000000,0.000262292000000,0.000216859000000 +0.000147724000000,0.000263082000000,0.000047774000000,0.000081748000000,0.000195131000000,0.000208168000000,0.000053700000000,0.000132712000000,0.000108613000000,0.000073453000000,0.000274143000000,0.000260712000000,0.000272959000000,0.000295477000000,0.014608947000000,0.000255971000000,0.014917885000000,0.000336958000000,0.000217649000000 +0.000146933000000,0.000310094000000,0.000084119000000,0.000081354000000,0.000198687000000,0.000171428000000,0.000054490000000,0.000131132000000,0.000107033000000,0.000070292000000,0.000269798000000,0.000259526000000,0.000258736000000,0.000266242000000,0.015028107000000,0.000290736000000,0.014217046000000,0.000261107000000,0.000219230000000 +0.000192761000000,0.000262292000000,0.000049354000000,0.000081354000000,0.000210539000000,0.000170638000000,0.000052909000000,0.000192761000000,0.000109403000000,0.000141008000000,0.000272563000000,0.000482341000000,0.000293502000000,0.000239773000000,0.014090626000000,0.000257946000000,0.014448948000000,0.000338144000000,0.000216860000000 +0.000147328000000,0.000334588000000,0.000046193000000,0.000082143000000,0.000195131000000,0.000170242000000,0.000053304000000,0.000132317000000,0.000108613000000,0.000105058000000,0.000258736000000,0.000597699000000,0.000258342000000,0.000377255000000,0.014467120000000,0.000255576000000,0.014846775000000,0.000263477000000,0.000216069000000 +0.000146538000000,0.000377650000000,0.000048169000000,0.000117700000000,0.000194736000000,0.000173798000000,0.000053305000000,0.000131526000000,0.000107033000000,0.000071477000000,0.000322341000000,0.000271378000000,0.000257946000000,0.000277699000000,0.014847169000000,0.000293502000000,0.014561935000000,0.000261897000000,0.000216069000000 +0.000146538000000,0.000275329000000,0.000045798000000,0.000080958000000,0.000229107000000,0.000172217000000,0.000053699000000,0.000131921000000,0.000109403000000,0.000071477000000,0.000272959000000,0.000276119000000,0.000257551000000,0.000284416000000,0.014537046000000,0.000257551000000,0.014644502000000,0.000266637000000,0.000218835000000 +0.000179329000000,0.000261897000000,0.000045798000000,0.000081749000000,0.000231477000000,0.000171428000000,0.000054095000000,0.000132317000000,0.000109403000000,0.000071477000000,0.000291132000000,0.000322341000000,0.000263082000000,0.000262687000000,0.014614478000000,0.000257946000000,0.014482132000000,0.000259131000000,0.000206983000000 +0.000146539000000,0.000283625000000,0.000045798000000,0.000080168000000,0.000198687000000,0.000171823000000,0.000056465000000,0.000180119000000,0.000111774000000,0.000069501000000,0.000308119000000,0.000272959000000,0.000304958000000,0.000240959000000,0.014539416000000,0.000291922000000,0.014482133000000,0.000309304000000,0.000219626000000 +0.000145748000000,0.000277305000000,0.000049749000000,0.000081354000000,0.000195131000000,0.000172613000000,0.000073848000000,0.000133896000000,0.000137057000000,0.000069502000000,0.000272168000000,0.000318391000000,0.000308119000000,0.000269798000000,0.014493194000000,0.000257946000000,0.014825836000000,0.000259131000000,0.000216070000000 +0.000148119000000,0.000276910000000,0.000045798000000,0.000080563000000,0.000194736000000,0.000172218000000,0.000055279000000,0.000133896000000,0.000113749000000,0.000071477000000,0.000267032000000,0.000285205000000,0.000259526000000,0.000258736000000,0.014464355000000,0.000256761000000,0.015222477000000,0.000308514000000,0.000216070000000 +0.000146933000000,0.000277304000000,0.000045799000000,0.000081353000000,0.000197107000000,0.000170637000000,0.000054095000000,0.000133502000000,0.000116514000000,0.000073848000000,0.000271773000000,0.000290341000000,0.000327477000000,0.000265452000000,0.014495960000000,0.000255576000000,0.015525489000000,0.000261897000000,0.000269403000000 +0.000178144000000,0.000276909000000,0.000048169000000,0.000080168000000,0.000194341000000,0.000170243000000,0.000056069000000,0.000152070000000,0.000114144000000,0.000071082000000,0.000269798000000,0.000327081000000,0.000260316000000,0.000304563000000,0.014866527000000,0.000257946000000,0.014234034000000,0.000261501000000,0.000216069000000 +0.000158391000000,0.000280464000000,0.000045799000000,0.000080959000000,0.000251625000000,0.000209749000000,0.000057255000000,0.000129946000000,0.000114143000000,0.000070292000000,0.000302193000000,0.000272958000000,0.000293107000000,0.000250440000000,0.014490429000000,0.000289946000000,0.015157687000000,0.000267427000000,0.000218835000000 +0.000147329000000,0.000282045000000,0.000048169000000,0.000080563000000,0.000195526000000,0.000170637000000,0.000055280000000,0.000134292000000,0.000113354000000,0.000069502000000,0.000270588000000,0.000296268000000,0.000261501000000,0.000264662000000,0.014672552000000,0.000259131000000,0.014413787000000,0.000264662000000,0.000219230000000 +0.000146934000000,0.000278885000000,0.000048168000000,0.000080564000000,0.000196711000000,0.000171032000000,0.000056860000000,0.000131921000000,0.000116910000000,0.000070292000000,0.000270193000000,0.000284415000000,0.000258736000000,0.000312070000000,0.015248947000000,0.000256761000000,0.014531515000000,0.000260316000000,0.000221206000000 +0.000180119000000,0.000282835000000,0.000045403000000,0.000081748000000,0.000195922000000,0.000170243000000,0.000054094000000,0.000130342000000,0.000113749000000,0.000072267000000,0.000305353000000,0.000291526000000,0.000328662000000,0.000265847000000,0.014881540000000,0.000296267000000,0.014601046000000,0.000262292000000,0.000216465000000 +0.000148119000000,0.000283230000000,0.000084909000000,0.000079774000000,0.000196711000000,0.000173403000000,0.000054094000000,0.000166292000000,0.000113354000000,0.000075428000000,0.000272958000000,0.000324712000000,0.000257156000000,0.000265847000000,0.014285787000000,0.000257946000000,0.014678478000000,0.000293107000000,0.000217255000000 +0.000146539000000,0.000275329000000,0.000046194000000,0.000082539000000,0.000195526000000,0.000171823000000,0.000055279000000,0.000130341000000,0.000115329000000,0.000070687000000,0.000288366000000,0.000275329000000,0.000260712000000,0.000315230000000,0.015371810000000,0.000255971000000,0.014933293000000,0.000259131000000,0.000217650000000 +0.000148119000000,0.000281255000000,0.000045798000000,0.000080564000000,0.000195526000000,0.000172218000000,0.000053305000000,0.000132317000000,0.000116514000000,0.000070687000000,0.000272169000000,0.000288761000000,0.000261896000000,0.000272168000000,0.014978330000000,0.000278884000000,0.014333195000000,0.000280069000000,0.000218440000000 +0.000146144000000,0.000280465000000,0.000048168000000,0.000081749000000,0.000272563000000,0.000173008000000,0.000058045000000,0.000129947000000,0.000114144000000,0.000070687000000,0.000269008000000,0.000284020000000,0.000259132000000,0.000287576000000,0.014810428000000,0.000259921000000,0.015314132000000,0.000259131000000,0.000218045000000 +0.000180514000000,0.000278884000000,0.000048564000000,0.000081749000000,0.000195131000000,0.000173403000000,0.000053699000000,0.000131131000000,0.000113749000000,0.000072267000000,0.000302983000000,0.000285996000000,0.000353551000000,0.000237403000000,0.014686379000000,0.000298637000000,0.015396699000000,0.000264267000000,0.000217255000000 +0.000147329000000,0.000277304000000,0.000048169000000,0.000079773000000,0.000195526000000,0.000173008000000,0.000053700000000,0.000148514000000,0.000115329000000,0.000075033000000,0.000270193000000,0.000447576000000,0.000354341000000,0.000280464000000,0.014317392000000,0.000276514000000,0.015261588000000,0.000259921000000,0.000216070000000 +0.000148119000000,0.000283230000000,0.000046193000000,0.000081354000000,0.000216070000000,0.000171428000000,0.000054885000000,0.000130342000000,0.000115328000000,0.000129156000000,0.000271378000000,0.000622588000000,0.000259131000000,0.000275329000000,0.014449738000000,0.000260317000000,0.014761441000000,0.000263477000000,0.000217650000000 +0.000146934000000,0.000279279000000,0.000045798000000,0.000081749000000,0.000193946000000,0.000171032000000,0.000056860000000,0.000130736000000,0.000114539000000,0.000071477000000,0.000309304000000,0.000285995000000,0.000258736000000,0.000259921000000,0.015008354000000,0.000430193000000,0.014214281000000,0.000408859000000,0.000217255000000 +0.000202242000000,0.000279674000000,0.000097156000000,0.000080168000000,0.000195921000000,0.000174588000000,0.000088465000000,0.000136268000000,0.000116119000000,0.000076218000000,0.000269798000000,0.000287971000000,0.000260712000000,0.000275328000000,0.014368354000000,0.000260317000000,0.014673737000000,0.000263082000000,0.000216859000000 +0.000147329000000,0.000331427000000,0.000061601000000,0.000081353000000,0.000195921000000,0.000171822000000,0.000054095000000,0.000130341000000,0.000114144000000,0.000071477000000,0.000275329000000,0.000291527000000,0.000293897000000,0.000300217000000,0.015325984000000,0.000292712000000,0.014771712000000,0.000296662000000,0.000215674000000 +0.000146934000000,0.000278885000000,0.000045798000000,0.000081354000000,0.000324712000000,0.000170637000000,0.000054885000000,0.000294291000000,0.000113749000000,0.000071872000000,0.000370143000000,0.000286391000000,0.000257551000000,0.000265057000000,0.015785045000000,0.000257947000000,0.014685194000000,0.000326292000000,0.000218835000000 +0.000147329000000,0.000281650000000,0.000048169000000,0.000081354000000,0.000261501000000,0.000170243000000,0.000054094000000,0.000162341000000,0.000116910000000,0.000071478000000,0.000270984000000,0.000288761000000,0.000255971000000,0.000241354000000,0.014540996000000,0.000259526000000,0.014569046000000,0.000346835000000,0.000336168000000 +0.000146539000000,0.000280069000000,0.000047774000000,0.000080564000000,0.000194341000000,0.000171033000000,0.000054885000000,0.000130736000000,0.000147724000000,0.000069897000000,0.000336563000000,0.000289946000000,0.000303378000000,0.000299033000000,0.014433935000000,0.000343674000000,0.014817934000000,0.000261897000000,0.000216860000000 +0.000193551000000,0.000325896000000,0.000046193000000,0.000080958000000,0.000229107000000,0.000170242000000,0.000053304000000,0.000168267000000,0.000114934000000,0.000104267000000,0.000274144000000,0.000293502000000,0.000256761000000,0.000301403000000,0.014723515000000,0.000255576000000,0.014447367000000,0.000293897000000,0.000218440000000 +0.000146539000000,0.000260316000000,0.000045403000000,0.000081749000000,0.000195132000000,0.000171823000000,0.000054095000000,0.000131132000000,0.000115329000000,0.000075428000000,0.000272959000000,0.000289156000000,0.000265058000000,0.000281255000000,0.014440651000000,0.000277699000000,0.014620799000000,0.000262292000000,0.000219230000000 +0.000146144000000,0.000259131000000,0.000046983000000,0.000081354000000,0.000195132000000,0.000171427000000,0.000053304000000,0.000131526000000,0.000115329000000,0.000070292000000,0.000257946000000,0.000291526000000,0.000261107000000,0.000236218000000,0.014322133000000,0.000258342000000,0.014655564000000,0.000265058000000,0.000218440000000 +0.000146144000000,0.000260711000000,0.000048959000000,0.000081749000000,0.000197502000000,0.000171823000000,0.000053304000000,0.000131526000000,0.000114144000000,0.000070292000000,0.000269402000000,0.000292317000000,0.000258736000000,0.000258737000000,0.015060107000000,0.000257551000000,0.014526774000000,0.000259526000000,0.000221995000000 +0.000179329000000,0.000259527000000,0.000049353000000,0.000081748000000,0.000195526000000,0.000171822000000,0.000054490000000,0.000130737000000,0.000114539000000,0.000069502000000,0.000344464000000,0.000287575000000,0.000326292000000,0.000323922000000,0.014549293000000,0.000289946000000,0.016101094000000,0.000261107000000,0.000217255000000 +0.000147724000000,0.000308514000000,0.000046588000000,0.000080563000000,0.000194341000000,0.000172217000000,0.000054489000000,0.000146539000000,0.000114934000000,0.000069502000000,0.000260316000000,0.000297453000000,0.000258737000000,0.000270588000000,0.014847959000000,0.000259131000000,0.015127662000000,0.000354736000000,0.000218835000000 +0.000148119000000,0.000262687000000,0.000048958000000,0.000081354000000,0.000194737000000,0.000172613000000,0.000053304000000,0.000134292000000,0.000114933000000,0.000071477000000,0.000276514000000,0.000321946000000,0.000255970000000,0.000277304000000,0.014908009000000,0.000257946000000,0.014391663000000,0.000259527000000,0.000217255000000 +0.000146539000000,0.000281255000000,0.000048169000000,0.000081354000000,0.000229107000000,0.000171822000000,0.000054094000000,0.000131526000000,0.000113749000000,0.000084514000000,0.000344070000000,0.000289946000000,0.000292317000000,0.000401354000000,0.014516502000000,0.000400958000000,0.014308701000000,0.000312464000000,0.000225551000000 +0.000146934000000,0.000268217000000,0.000047774000000,0.000081749000000,0.000196317000000,0.000201452000000,0.000056465000000,0.000131922000000,0.000115724000000,0.000070292000000,0.000260316000000,0.000289155000000,0.000255971000000,0.000211724000000,0.016436106000000,0.000257156000000,0.015542082000000,0.000265453000000,0.000216860000000 +0.000289156000000,0.000263872000000,0.000047774000000,0.000082144000000,0.000194736000000,0.000171822000000,0.000056860000000,0.000168662000000,0.000113354000000,0.000073058000000,0.000310489000000,0.000288761000000,0.000257552000000,0.000277304000000,0.014622379000000,0.000291527000000,0.014689935000000,0.000301007000000,0.000218440000000 +0.000161551000000,0.000280070000000,0.000045403000000,0.000081353000000,0.000196317000000,0.000171427000000,0.000053699000000,0.000131131000000,0.000113748000000,0.000069502000000,0.000289156000000,0.000291921000000,0.000270588000000,0.000291921000000,0.015624255000000,0.000256761000000,0.014600256000000,0.000261502000000,0.000218835000000 +0.000146144000000,0.000263477000000,0.000094786000000,0.000082144000000,0.000229897000000,0.000170637000000,0.000053699000000,0.000148909000000,0.000113353000000,0.000077008000000,0.000274539000000,0.000295082000000,0.000304564000000,0.000268218000000,0.014698231000000,0.000258341000000,0.014611318000000,0.000267033000000,0.000218835000000 +0.000147724000000,0.000294292000000,0.000045798000000,0.000081354000000,0.000196316000000,0.000216859000000,0.000054094000000,0.000130736000000,0.000116119000000,0.000069897000000,0.000355132000000,0.000272958000000,0.000330242000000,0.000311279000000,0.015451613000000,0.000293897000000,0.014734972000000,0.000498144000000,0.000216860000000 +0.000179724000000,0.000262291000000,0.000045403000000,0.000082538000000,0.000196317000000,0.000172218000000,0.000053305000000,0.000130342000000,0.000116514000000,0.000070687000000,0.000270984000000,0.000288366000000,0.000259922000000,0.000209354000000,0.014732601000000,0.000256366000000,0.015290033000000,0.000310884000000,0.000216860000000 +0.000147724000000,0.000295082000000,0.000045799000000,0.000080564000000,0.000195132000000,0.000171032000000,0.000055675000000,0.000163526000000,0.000113749000000,0.000069897000000,0.000272563000000,0.000327872000000,0.000307723000000,0.000267032000000,0.015046280000000,0.000259131000000,0.014950280000000,0.000260712000000,0.000234243000000 +0.000146934000000,0.000265847000000,0.000048564000000,0.000184070000000,0.000194736000000,0.000174588000000,0.000053699000000,0.000131131000000,0.000114144000000,0.000071082000000,0.000271378000000,0.000274144000000,0.000282045000000,0.000326687000000,0.014801737000000,0.000287180000000,0.015229588000000,0.000295872000000,0.000233453000000 +0.000146143000000,0.000265452000000,0.000045798000000,0.000096761000000,0.000194737000000,0.000170638000000,0.000054095000000,0.000130341000000,0.000113353000000,0.000069897000000,0.000272563000000,0.000307724000000,0.000256366000000,0.000279280000000,0.014733787000000,0.000257946000000,0.014384552000000,0.000261106000000,0.000233847000000 +0.000182094000000,0.000262687000000,0.000045403000000,0.000080564000000,0.000194736000000,0.000170638000000,0.000054095000000,0.000132316000000,0.000116514000000,0.000070687000000,0.000340119000000,0.000277304000000,0.000321551000000,0.000269008000000,0.014749194000000,0.000293106000000,0.014744454000000,0.000339329000000,0.000268613000000 +0.000145354000000,0.000306933000000,0.000130341000000,0.000082934000000,0.000359081000000,0.000170637000000,0.000054094000000,0.000134292000000,0.000116515000000,0.000070687000000,0.000270983000000,0.000272959000000,0.000256761000000,0.000340514000000,0.014657934000000,0.000258736000000,0.014993342000000,0.000265057000000,0.000215674000000 +0.000146934000000,0.000406489000000,0.000045798000000,0.000083329000000,0.000196316000000,0.000174193000000,0.000053700000000,0.000176959000000,0.000114144000000,0.000092415000000,0.000268613000000,0.000289946000000,0.000263476000000,0.000228711000000,0.014714034000000,0.000258341000000,0.014665045000000,0.000260712000000,0.000216859000000 +0.000146144000000,0.000310884000000,0.000048168000000,0.000082144000000,0.000194736000000,0.000170243000000,0.000053304000000,0.000130342000000,0.000114143000000,0.000069897000000,0.000336168000000,0.000286391000000,0.000296268000000,0.000265452000000,0.014238379000000,0.000290341000000,0.014629885000000,0.000263477000000,0.000217650000000 +0.000148119000000,0.000299033000000,0.000045798000000,0.000080958000000,0.000229897000000,0.000171823000000,0.000054095000000,0.000131921000000,0.000115724000000,0.000070687000000,0.000262687000000,0.000284415000000,0.000257552000000,0.000269008000000,0.015461095000000,0.000258341000000,0.015159268000000,0.000263082000000,0.000216464000000 +0.000178934000000,0.000297847000000,0.000045798000000,0.000080169000000,0.000195131000000,0.000171823000000,0.000055280000000,0.000131921000000,0.000115329000000,0.000069896000000,0.000265847000000,0.000273749000000,0.000256760000000,0.000277304000000,0.015323613000000,0.000256366000000,0.014244306000000,0.000297452000000,0.000208563000000 +0.000146934000000,0.000296267000000,0.000045403000000,0.000080958000000,0.000194737000000,0.000173008000000,0.000052909000000,0.000165502000000,0.000115329000000,0.000069502000000,0.000545946000000,0.000285601000000,0.000261897000000,0.000287181000000,0.014670972000000,0.000295477000000,0.014613688000000,0.000263477000000,0.000216465000000 +0.000145748000000,0.000269007000000,0.000048168000000,0.000080959000000,0.000195131000000,0.000170242000000,0.000056860000000,0.000130341000000,0.000113749000000,0.000071477000000,0.000304169000000,0.000283625000000,0.000258341000000,0.000272959000000,0.014813194000000,0.000259526000000,0.014687169000000,0.000332217000000,0.000220811000000 +0.000146539000000,0.000258341000000,0.000050539000000,0.000080563000000,0.000195132000000,0.000171032000000,0.000056070000000,0.000132317000000,0.000118884000000,0.000073848000000,0.000283230000000,0.000287576000000,0.000283625000000,0.000234243000000,0.015180206000000,0.000259922000000,0.014952651000000,0.000265057000000,0.000231477000000 +0.000185255000000,0.000264662000000,0.000097551000000,0.000096366000000,0.000195922000000,0.000172612000000,0.000053699000000,0.000130341000000,0.000114539000000,0.000090045000000,0.000272168000000,0.000287576000000,0.000258737000000,0.000299823000000,0.014882724000000,0.000258341000000,0.014429590000000,0.000348020000000,0.000218835000000 +0.000146539000000,0.000261502000000,0.000048168000000,0.000080959000000,0.000195922000000,0.000172217000000,0.000052910000000,0.000130736000000,0.000113748000000,0.000069897000000,0.000277304000000,0.000283230000000,0.000256761000000,0.000259921000000,0.014404305000000,0.000308514000000,0.014911169000000,0.000262292000000,0.000218440000000 +0.000146144000000,0.000295872000000,0.000048169000000,0.000081353000000,0.000230292000000,0.000172218000000,0.000054094000000,0.000146933000000,0.000115329000000,0.000071477000000,0.000272564000000,0.000306934000000,0.000302983000000,0.000331428000000,0.014957392000000,0.000292316000000,0.014941194000000,0.000262687000000,0.000216860000000 +0.000147724000000,0.000261897000000,0.000048169000000,0.000080959000000,0.000194736000000,0.000171428000000,0.000059230000000,0.000130341000000,0.000115329000000,0.000072662000000,0.000311675000000,0.000333403000000,0.000257156000000,0.000265057000000,0.014904848000000,0.000257551000000,0.014208355000000,0.000259922000000,0.000216465000000 +0.000146539000000,0.000295477000000,0.000045798000000,0.000080958000000,0.000195922000000,0.000170637000000,0.000053700000000,0.000131922000000,0.000114538000000,0.000070292000000,0.000275723000000,0.000271773000000,0.000261106000000,0.000230687000000,0.014122231000000,0.000262292000000,0.014595910000000,0.000262687000000,0.000238983000000 +0.000146538000000,0.000259921000000,0.000048959000000,0.000080959000000,0.000195921000000,0.000170637000000,0.000055280000000,0.000131922000000,0.000122440000000,0.000070687000000,0.000274144000000,0.000279279000000,0.000301403000000,0.000258736000000,0.014955021000000,0.000315625000000,0.014847170000000,0.000349995000000,0.000216465000000 +0.000146539000000,0.000261107000000,0.000045799000000,0.000084119000000,0.000272958000000,0.000172218000000,0.000087675000000,0.000134292000000,0.000157206000000,0.000071477000000,0.000304563000000,0.000301008000000,0.000259131000000,0.000263872000000,0.014333589000000,0.000259527000000,0.014857441000000,0.000263082000000,0.000218045000000 +0.000146934000000,0.000261897000000,0.000047773000000,0.000080564000000,0.000196316000000,0.000171033000000,0.000055279000000,0.000132711000000,0.000109403000000,0.000105057000000,0.000274144000000,0.000273749000000,0.000259921000000,0.000247674000000,0.014689144000000,0.000308118000000,0.014468700000000,0.000292712000000,0.000218044000000 +0.000147328000000,0.000262292000000,0.000048169000000,0.000080959000000,0.000195131000000,0.000170637000000,0.000054094000000,0.000131131000000,0.000106638000000,0.000071477000000,0.000268218000000,0.000273354000000,0.000261107000000,0.000320366000000,0.014938823000000,0.000256366000000,0.014655169000000,0.000260316000000,0.000211329000000 +0.000215675000000,0.000355921000000,0.000046589000000,0.000081354000000,0.000243329000000,0.000171427000000,0.000054094000000,0.000130341000000,0.000142983000000,0.000069897000000,0.000310884000000,0.000284020000000,0.000258341000000,0.000271378000000,0.014556009000000,0.000261897000000,0.017514624000000,0.000261897000000,0.000219625000000 +0.000146539000000,0.000261501000000,0.000048564000000,0.000080958000000,0.000194737000000,0.000171427000000,0.000053305000000,0.000132712000000,0.000107033000000,0.000071477000000,0.000270588000000,0.000274934000000,0.000341699000000,0.000267427000000,0.014677688000000,0.000292712000000,0.014247466000000,0.000264662000000,0.000207773000000 +0.000146934000000,0.000316415000000,0.000047774000000,0.000081749000000,0.000196317000000,0.000201057000000,0.000055675000000,0.000132712000000,0.000108218000000,0.000069897000000,0.000295872000000,0.000287180000000,0.000258342000000,0.000352366000000,0.015048651000000,0.000259921000000,0.014832552000000,0.000266637000000,0.000334193000000 +0.000147329000000,0.000261896000000,0.000047379000000,0.000081354000000,0.000196316000000,0.000171823000000,0.000055279000000,0.000131131000000,0.000109799000000,0.000070292000000,0.000265452000000,0.000273749000000,0.000255576000000,0.000248464000000,0.015041144000000,0.000256761000000,0.014645688000000,0.000329848000000,0.000235822000000 +0.000147724000000,0.000308909000000,0.000047379000000,0.000117699000000,0.000195922000000,0.000171823000000,0.000054884000000,0.000131526000000,0.000106637000000,0.000071082000000,0.000260712000000,0.000273748000000,0.000294687000000,0.000263082000000,0.014659515000000,0.000274538000000,0.014818725000000,0.000262687000000,0.000217650000000 +0.000146934000000,0.000264662000000,0.000045798000000,0.000082539000000,0.000197501000000,0.000170242000000,0.000087280000000,0.000131527000000,0.000108613000000,0.000103872000000,0.000330242000000,0.000351971000000,0.000258342000000,0.000265848000000,0.014215466000000,0.000263082000000,0.014841243000000,0.000309699000000,0.000216860000000 +0.000144959000000,0.000266637000000,0.000073057000000,0.000082143000000,0.000194341000000,0.000170638000000,0.000054490000000,0.000208958000000,0.000113749000000,0.000071477000000,0.000270193000000,0.000270193000000,0.000258737000000,0.000258342000000,0.014925787000000,0.000256366000000,0.014401540000000,0.000265057000000,0.000215674000000 +0.000157996000000,0.000668810000000,0.000048958000000,0.000081354000000,0.000236613000000,0.000171428000000,0.000055674000000,0.000130342000000,0.000109008000000,0.000071477000000,0.000276514000000,0.000270588000000,0.000259131000000,0.000258341000000,0.015081440000000,0.000262687000000,0.014492404000000,0.000296662000000,0.000221600000000 +0.000147329000000,0.000419527000000,0.000060810000000,0.000079773000000,0.000196316000000,0.000171823000000,0.000054094000000,0.000131922000000,0.000109008000000,0.000070292000000,0.000314835000000,0.000393452000000,0.000257551000000,0.000241353000000,0.014802922000000,0.000255971000000,0.014893786000000,0.000262292000000,0.000304958000000 +0.000213700000000,0.000349600000000,0.000048168000000,0.000080563000000,0.000195921000000,0.000171428000000,0.000054885000000,0.000133107000000,0.000107427000000,0.000076218000000,0.000257551000000,0.000275724000000,0.000364218000000,0.000262292000000,0.015457934000000,0.000425848000000,0.014320157000000,0.000263082000000,0.000218045000000 +0.000147724000000,0.000289551000000,0.000045798000000,0.000156021000000,0.000195132000000,0.000171823000000,0.000054094000000,0.000132316000000,0.000109008000000,0.000070292000000,0.000333403000000,0.000305749000000,0.000278489000000,0.000314440000000,0.014560749000000,0.000291921000000,0.014306330000000,0.000503279000000,0.000216465000000 +0.000146934000000,0.000323132000000,0.000045798000000,0.000080169000000,0.000279279000000,0.000170638000000,0.000054885000000,0.000130736000000,0.000141008000000,0.000071477000000,0.000333403000000,0.000269008000000,0.000266242000000,0.000257946000000,0.014641737000000,0.000293106000000,0.014942774000000,0.000295477000000,0.000217649000000 +0.000147329000000,0.000285995000000,0.000068712000000,0.000081749000000,0.000195132000000,0.000171823000000,0.000055280000000,0.000131132000000,0.000109798000000,0.000071082000000,0.000270193000000,0.000270193000000,0.000259921000000,0.000237008000000,0.015245786000000,0.000256761000000,0.014032948000000,0.000261106000000,0.000231082000000 +0.000200663000000,0.000425847000000,0.000046193000000,0.000080958000000,0.000196316000000,0.000171033000000,0.000053699000000,0.000131922000000,0.000109008000000,0.000070687000000,0.000295477000000,0.000283625000000,0.000261106000000,0.000381995000000,0.014340306000000,0.000259131000000,0.014851515000000,0.000261501000000,0.000230687000000 +0.000148119000000,0.000262686000000,0.000045798000000,0.000081354000000,0.000230292000000,0.000170637000000,0.000053304000000,0.000131922000000,0.000108218000000,0.000074242000000,0.000261106000000,0.000270588000000,0.000329057000000,0.000263082000000,0.014201638000000,0.000334983000000,0.014824651000000,0.000260711000000,0.000264268000000 +0.000146143000000,0.000294687000000,0.000045798000000,0.000080168000000,0.000194736000000,0.000170243000000,0.000053700000000,0.000166292000000,0.000108218000000,0.000069502000000,0.000257551000000,0.000309699000000,0.000256366000000,0.000292316000000,0.015184551000000,0.000258341000000,0.014423268000000,0.000265057000000,0.000229502000000 +0.000146539000000,0.000261502000000,0.000045798000000,0.000188020000000,0.000194736000000,0.000263082000000,0.000054094000000,0.000130737000000,0.000107427000000,0.000071873000000,0.000271378000000,0.000278490000000,0.000256761000000,0.000267428000000,0.013999367000000,0.000259131000000,0.014597886000000,0.000304563000000,0.000232662000000 +0.000146539000000,0.000299823000000,0.000045799000000,0.000081749000000,0.000197502000000,0.000205007000000,0.000054095000000,0.000131921000000,0.000160761000000,0.000070687000000,0.000270193000000,0.000272959000000,0.000293107000000,0.000261107000000,0.014912355000000,0.000289946000000,0.014522428000000,0.000260316000000,0.000232267000000 +0.000432168000000,0.000264267000000,0.000048564000000,0.000081354000000,0.000242539000000,0.000173403000000,0.000053304000000,0.000130737000000,0.000122045000000,0.000109799000000,0.000321946000000,0.000306144000000,0.000257156000000,0.000241353000000,0.014630280000000,0.000257946000000,0.014756305000000,0.000298638000000,0.000233452000000 +0.000171427000000,0.000261897000000,0.000045403000000,0.000081353000000,0.000195921000000,0.000174193000000,0.000053699000000,0.000132317000000,0.000107032000000,0.000120465000000,0.000274934000000,0.000274539000000,0.000259131000000,0.000256760000000,0.014998873000000,0.000346045000000,0.014417342000000,0.000261107000000,0.000232662000000 +0.000181700000000,0.000264267000000,0.000068316000000,0.000081354000000,0.000194737000000,0.000171823000000,0.000092416000000,0.000131526000000,0.000108218000000,0.000085304000000,0.000273748000000,0.000269403000000,0.000288366000000,0.000260316000000,0.014710478000000,0.000257946000000,0.014859021000000,0.000259922000000,0.000235032000000 +0.000147724000000,0.000260316000000,0.000048168000000,0.000080958000000,0.000195131000000,0.000171033000000,0.000069107000000,0.000131132000000,0.000109798000000,0.000070292000000,0.000304563000000,0.000302588000000,0.000258736000000,0.000310094000000,0.014607367000000,0.000257156000000,0.014947910000000,0.000274933000000,0.000228711000000 +0.000147724000000,0.000296267000000,0.000046193000000,0.000116514000000,0.000196316000000,0.000171032000000,0.000054490000000,0.000132317000000,0.000109798000000,0.000072268000000,0.000269798000000,0.000269402000000,0.000289946000000,0.000267823000000,0.014646083000000,0.000297057000000,0.014504651000000,0.000261897000000,0.000226342000000 +0.000146933000000,0.000262687000000,0.000047773000000,0.000081353000000,0.000196316000000,0.000212514000000,0.000056069000000,0.000130736000000,0.000107033000000,0.000111379000000,0.000269008000000,0.000274143000000,0.000257156000000,0.000235428000000,0.014590379000000,0.000255971000000,0.015825736000000,0.000273748000000,0.000220416000000 +0.000146933000000,0.000337353000000,0.000048168000000,0.000080564000000,0.000195131000000,0.000170637000000,0.000054095000000,0.000132712000000,0.000107427000000,0.000072267000000,0.000270193000000,0.000269403000000,0.000259526000000,0.000276119000000,0.014805293000000,0.000258341000000,0.015302280000000,0.000261897000000,0.000217650000000 +0.000167872000000,0.000260711000000,0.000047774000000,0.000081353000000,0.000229897000000,0.000170242000000,0.000054094000000,0.000130737000000,0.000107822000000,0.000070292000000,0.000267427000000,0.000280069000000,0.000290341000000,0.000258341000000,0.015100009000000,0.000305748000000,0.014951070000000,0.000292316000000,0.000217649000000 +0.000147329000000,0.000295082000000,0.000045798000000,0.000080959000000,0.000242144000000,0.000169847000000,0.000088860000000,0.000132317000000,0.000108612000000,0.000092021000000,0.000309699000000,0.000308514000000,0.000258736000000,0.000263082000000,0.015021391000000,0.000259527000000,0.014708503000000,0.000261501000000,0.000218440000000 +0.000146933000000,0.000266637000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000172613000000,0.000054094000000,0.000134687000000,0.000120069000000,0.000069897000000,0.000264267000000,0.000273748000000,0.000262292000000,0.000314835000000,0.015516799000000,0.000306934000000,0.014662280000000,0.000292712000000,0.000252021000000 +0.000147329000000,0.000261897000000,0.000082144000000,0.000080959000000,0.000196712000000,0.000172218000000,0.000054094000000,0.000130341000000,0.000109008000000,0.000071873000000,0.000257551000000,0.000272958000000,0.000256761000000,0.000240564000000,0.015116996000000,0.000257156000000,0.014629095000000,0.000262292000000,0.000216465000000 +0.000179329000000,0.000279674000000,0.000048169000000,0.000080959000000,0.000194341000000,0.000171823000000,0.000053700000000,0.000166292000000,0.000110193000000,0.000157601000000,0.000305748000000,0.000327082000000,0.000259131000000,0.000225946000000,0.014726280000000,0.000260712000000,0.014216256000000,0.000264267000000,0.000216860000000 +0.000147329000000,0.000265453000000,0.000049749000000,0.000080564000000,0.000196316000000,0.000172613000000,0.000056069000000,0.000130341000000,0.000107033000000,0.000069897000000,0.000271378000000,0.000268613000000,0.000345255000000,0.000278489000000,0.014316206000000,0.000342094000000,0.014958972000000,0.000279675000000,0.000219625000000 +0.000146934000000,0.000293106000000,0.000045798000000,0.000080563000000,0.000196317000000,0.000215675000000,0.000055675000000,0.000130736000000,0.000108613000000,0.000070292000000,0.000270193000000,0.000307724000000,0.000258736000000,0.000259526000000,0.014683219000000,0.000257156000000,0.014529935000000,0.000261501000000,0.000217650000000 +0.000147724000000,0.000263477000000,0.000045403000000,0.000080564000000,0.000324317000000,0.000172218000000,0.000054095000000,0.000131527000000,0.000150094000000,0.000069897000000,0.000272169000000,0.000276514000000,0.000260316000000,0.000266243000000,0.014600651000000,0.000278884000000,0.014700206000000,0.000329057000000,0.000267823000000 +0.000147329000000,0.000332612000000,0.000046193000000,0.000080958000000,0.000212909000000,0.000171033000000,0.000053699000000,0.000133502000000,0.000110193000000,0.000069897000000,0.000267823000000,0.000272959000000,0.000403724000000,0.000243724000000,0.014928552000000,0.000263477000000,0.014858626000000,0.000259131000000,0.000253205000000 +0.000179329000000,0.000258736000000,0.000045798000000,0.000081354000000,0.000195922000000,0.000172218000000,0.000055675000000,0.000166292000000,0.000107033000000,0.000069897000000,0.000306143000000,0.000342884000000,0.000261897000000,0.000263477000000,0.014974379000000,0.000257946000000,0.014330429000000,0.000316810000000,0.000218835000000 +0.000146934000000,0.000261502000000,0.000045403000000,0.000083724000000,0.000230292000000,0.000174193000000,0.000054489000000,0.000130736000000,0.000106638000000,0.000070687000000,0.000262687000000,0.000270983000000,0.000306539000000,0.000247674000000,0.014271565000000,0.000333798000000,0.014388503000000,0.000260711000000,0.000217255000000 +0.000145748000000,0.000262292000000,0.000065156000000,0.000081354000000,0.000197502000000,0.000172613000000,0.000054095000000,0.000130341000000,0.000110588000000,0.000084119000000,0.000278489000000,0.000271378000000,0.000260317000000,0.000262687000000,0.015014676000000,0.000255971000000,0.016896747000000,0.000260712000000,0.000218045000000 +0.000147329000000,0.000261501000000,0.000048169000000,0.000080959000000,0.000195527000000,0.000171428000000,0.000054884000000,0.000161551000000,0.000142588000000,0.000069897000000,0.000319576000000,0.000270983000000,0.000259527000000,0.000266637000000,0.015108700000000,0.000257551000000,0.015016651000000,0.000259527000000,0.000219230000000 +0.000179724000000,0.000604810000000,0.000045799000000,0.000080168000000,0.000195131000000,0.000171427000000,0.000056070000000,0.000137452000000,0.000108613000000,0.000070687000000,0.000257156000000,0.000270193000000,0.000256366000000,0.000282440000000,0.014357293000000,0.000257551000000,0.014533490000000,0.000261501000000,0.000216465000000 +0.000145748000000,0.000438094000000,0.000045404000000,0.000081354000000,0.000229897000000,0.000170638000000,0.000053304000000,0.000131921000000,0.000110588000000,0.000069897000000,0.000268218000000,0.000340909000000,0.000255576000000,0.000270983000000,0.014611713000000,0.000257551000000,0.015644008000000,0.000299427000000,0.000216465000000 +0.000146539000000,0.000268613000000,0.000048564000000,0.000080958000000,0.000196316000000,0.000170638000000,0.000053304000000,0.000131527000000,0.000109798000000,0.000069897000000,0.000274933000000,0.000311279000000,0.000358292000000,0.000271378000000,0.016873439000000,0.000334193000000,0.014866132000000,0.000262687000000,0.000253205000000 +0.000145749000000,0.000403329000000,0.000047774000000,0.000081749000000,0.000194736000000,0.000170638000000,0.000054489000000,0.000132712000000,0.000107033000000,0.000071477000000,0.000263082000000,0.000315230000000,0.000335773000000,0.000300218000000,0.014836107000000,0.000347625000000,0.015223662000000,0.000294686000000,0.000217254000000 +0.000146538000000,0.000263082000000,0.000046193000000,0.000096366000000,0.000196317000000,0.000170637000000,0.000054489000000,0.000130736000000,0.000109008000000,0.000069897000000,0.000312859000000,0.000276119000000,0.000291527000000,0.000268613000000,0.014624750000000,0.000290736000000,0.015017441000000,0.000262292000000,0.000216860000000 +0.000214095000000,0.000330637000000,0.000045798000000,0.000080958000000,0.000194736000000,0.000171033000000,0.000054095000000,0.000152070000000,0.000109798000000,0.000086094000000,0.000305748000000,0.000269403000000,0.000256366000000,0.000273749000000,0.016339711000000,0.000257947000000,0.013669096000000,0.000261501000000,0.000219230000000 +0.000146934000000,0.000259526000000,0.000084514000000,0.000080169000000,0.000194341000000,0.000171823000000,0.000054884000000,0.000136662000000,0.000107428000000,0.000071477000000,0.000269798000000,0.000338539000000,0.000258736000000,0.000262687000000,0.014965292000000,0.000259132000000,0.013895862000000,0.000261501000000,0.000220415000000 +0.000147724000000,0.000293502000000,0.000045798000000,0.000080168000000,0.000194736000000,0.000171823000000,0.000054489000000,0.000133106000000,0.000109008000000,0.000071873000000,0.000312069000000,0.000272168000000,0.000325897000000,0.000266637000000,0.014721145000000,0.000292317000000,0.014134873000000,0.000267427000000,0.000216070000000 +0.000146933000000,0.000266242000000,0.000045403000000,0.000080564000000,0.000278095000000,0.000170638000000,0.000054490000000,0.000130736000000,0.000108218000000,0.000069897000000,0.000269798000000,0.000267032000000,0.000256366000000,0.000262687000000,0.014529935000000,0.000258737000000,0.013913639000000,0.000331428000000,0.000218045000000 +0.000178144000000,0.000264662000000,0.000048168000000,0.000080168000000,0.000194736000000,0.000207378000000,0.000053699000000,0.000165502000000,0.000107427000000,0.000071477000000,0.000323526000000,0.000271379000000,0.000258342000000,0.000271773000000,0.014807663000000,0.000259131000000,0.013899022000000,0.000260712000000,0.000301798000000 +0.000146934000000,0.000262687000000,0.000045798000000,0.000093996000000,0.000194736000000,0.000171033000000,0.000075428000000,0.000131132000000,0.000122440000000,0.000071872000000,0.000272168000000,0.000270983000000,0.000311675000000,0.000247675000000,0.014295269000000,0.000299032000000,0.013954330000000,0.000311279000000,0.000216860000000 +0.000146144000000,0.000257946000000,0.000048169000000,0.000080564000000,0.000229502000000,0.000171033000000,0.000056465000000,0.000131922000000,0.000107428000000,0.000092415000000,0.000268612000000,0.000341699000000,0.000263082000000,0.000319181000000,0.014863762000000,0.000257946000000,0.014203615000000,0.000262687000000,0.000220020000000 +0.000147329000000,0.000293897000000,0.000047774000000,0.000080958000000,0.000194736000000,0.000172218000000,0.000054885000000,0.000131921000000,0.000107033000000,0.000071477000000,0.000348415000000,0.000272168000000,0.000333007000000,0.000261107000000,0.014499515000000,0.000257156000000,0.014578922000000,0.000312859000000,0.000218044000000 +0.000146934000000,0.000261897000000,0.000049749000000,0.000080564000000,0.000194341000000,0.000173403000000,0.000055674000000,0.000130341000000,0.000107032000000,0.000071477000000,0.000259131000000,0.000275724000000,0.000261501000000,0.000269403000000,0.014792255000000,0.000256366000000,0.014191762000000,0.000297453000000,0.000216464000000 +0.000178934000000,0.000278489000000,0.000045799000000,0.000080959000000,0.000198292000000,0.000170637000000,0.000055675000000,0.000201453000000,0.000106243000000,0.000069897000000,0.000277699000000,0.000307329000000,0.000259527000000,0.000262687000000,0.014513737000000,0.000263872000000,0.015051021000000,0.000260712000000,0.000218045000000 +0.000145749000000,0.000278885000000,0.000061205000000,0.000081749000000,0.000227922000000,0.000171823000000,0.000055674000000,0.000176168000000,0.000141008000000,0.000070292000000,0.000312464000000,0.000272959000000,0.000289551000000,0.000248859000000,0.015098824000000,0.000298638000000,0.014245886000000,0.000263477000000,0.000310094000000 +0.000147724000000,0.000275724000000,0.000045798000000,0.000117304000000,0.000194736000000,0.000186045000000,0.000054094000000,0.000129947000000,0.000106243000000,0.000071872000000,0.000270193000000,0.000270983000000,0.000261502000000,0.000283625000000,0.014901292000000,0.000257946000000,0.013753244000000,0.000260711000000,0.000252416000000 +0.000146539000000,0.000280069000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000208958000000,0.000054094000000,0.000130341000000,0.000109798000000,0.000069502000000,0.000291526000000,0.000272564000000,0.000256761000000,0.000333403000000,0.014178331000000,0.000259131000000,0.014548503000000,0.000355131000000,0.000216465000000 +0.000166687000000,0.000288366000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000171427000000,0.000088465000000,0.000199872000000,0.000107823000000,0.000139428000000,0.000280069000000,0.000267823000000,0.000258341000000,0.000268217000000,0.015037984000000,0.000346045000000,0.013842923000000,0.000261501000000,0.000217255000000 +0.000146934000000,0.000278489000000,0.000045403000000,0.000081749000000,0.000196317000000,0.000171823000000,0.000053699000000,0.000133502000000,0.000108218000000,0.000069107000000,0.000274539000000,0.000304959000000,0.000258737000000,0.000229897000000,0.014795416000000,0.000260317000000,0.014032948000000,0.000261502000000,0.000217254000000 +0.000145748000000,0.000274933000000,0.000045403000000,0.000081353000000,0.000195921000000,0.000170243000000,0.000054095000000,0.000130736000000,0.000109008000000,0.000071477000000,0.000327082000000,0.000274144000000,0.000314045000000,0.000246095000000,0.014986231000000,0.000257551000000,0.014335959000000,0.000260712000000,0.000216069000000 +0.000147724000000,0.000313255000000,0.000047773000000,0.000081354000000,0.000194736000000,0.000173799000000,0.000089255000000,0.000131526000000,0.000121255000000,0.000071872000000,0.000276909000000,0.000268218000000,0.000256366000000,0.000265452000000,0.014839663000000,0.000261107000000,0.014603811000000,0.000329847000000,0.000211329000000 +0.000147328000000,0.000275724000000,0.000045798000000,0.000084909000000,0.000237008000000,0.000171427000000,0.000054095000000,0.000132317000000,0.000108612000000,0.000069897000000,0.000273354000000,0.000390686000000,0.000259132000000,0.000308119000000,0.014978330000000,0.000255971000000,0.014029787000000,0.000259131000000,0.000216859000000 +0.000193551000000,0.000274934000000,0.000045403000000,0.000081354000000,0.000196317000000,0.000171427000000,0.000055675000000,0.000130342000000,0.000107032000000,0.000075823000000,0.000287576000000,0.000264267000000,0.000326292000000,0.000267033000000,0.015209440000000,0.000344860000000,0.014344256000000,0.000292712000000,0.000218835000000 +0.000147329000000,0.000277699000000,0.000046984000000,0.000081353000000,0.000194736000000,0.000170638000000,0.000054095000000,0.000134292000000,0.000109008000000,0.000071477000000,0.000270588000000,0.000309304000000,0.000260711000000,0.000272564000000,0.015042724000000,0.000257946000000,0.014183071000000,0.000263477000000,0.000218440000000 +0.000144959000000,0.000277699000000,0.000080564000000,0.000081749000000,0.000196711000000,0.000206193000000,0.000056464000000,0.000137452000000,0.000110589000000,0.000118884000000,0.000304168000000,0.000280860000000,0.000277305000000,0.000240564000000,0.014749589000000,0.000279280000000,0.014269590000000,0.000261897000000,0.000218440000000 +0.000147329000000,0.000276119000000,0.000045798000000,0.000081749000000,0.000208563000000,0.000169848000000,0.000054489000000,0.000131132000000,0.000142588000000,0.000071872000000,0.000277699000000,0.000334193000000,0.000258736000000,0.000265057000000,0.014783169000000,0.000260712000000,0.013523318000000,0.000261501000000,0.000208563000000 +0.000196711000000,0.000278095000000,0.000045798000000,0.000082144000000,0.000193946000000,0.000170638000000,0.000055675000000,0.000199477000000,0.000108612000000,0.000071477000000,0.000272563000000,0.000365798000000,0.000258341000000,0.000266243000000,0.014503071000000,0.000257156000000,0.014308701000000,0.000260711000000,0.000215675000000 +0.000146144000000,0.000275328000000,0.000047773000000,0.000081353000000,0.000195921000000,0.000171033000000,0.000056860000000,0.000130737000000,0.000110193000000,0.000071477000000,0.000286785000000,0.000269798000000,0.000342094000000,0.000304563000000,0.014537441000000,0.000327872000000,0.014085886000000,0.000299032000000,0.000217255000000 +0.000147724000000,0.000276514000000,0.000045799000000,0.000209354000000,0.000265057000000,0.000174193000000,0.000055675000000,0.000132316000000,0.000108613000000,0.000070687000000,0.000261106000000,0.000290341000000,0.000258341000000,0.000272958000000,0.014784354000000,0.000256761000000,0.013669491000000,0.000296662000000,0.000217255000000 +0.000147329000000,0.000274934000000,0.000045798000000,0.000235032000000,0.000193946000000,0.000171823000000,0.000055675000000,0.000131527000000,0.000125995000000,0.000069897000000,0.000309304000000,0.000270193000000,0.000265847000000,0.000250045000000,0.014690330000000,0.000257551000000,0.014263664000000,0.000341700000000,0.000217254000000 +0.000147329000000,0.000278489000000,0.000045798000000,0.000086094000000,0.000194341000000,0.000171428000000,0.000054095000000,0.000130341000000,0.000127576000000,0.000070292000000,0.000275329000000,0.000269798000000,0.000290341000000,0.000384761000000,0.015109885000000,0.000261897000000,0.014003318000000,0.000271773000000,0.000225551000000 +0.000214884000000,0.000318786000000,0.000046193000000,0.000080564000000,0.000196711000000,0.000172218000000,0.000055280000000,0.000131922000000,0.000185254000000,0.000070292000000,0.000271774000000,0.000355526000000,0.000259921000000,0.000280464000000,0.014300799000000,0.000258341000000,0.013900602000000,0.000296662000000,0.000218044000000 +0.000145749000000,0.000281255000000,0.000048168000000,0.000080168000000,0.000229502000000,0.000208563000000,0.000088860000000,0.000130341000000,0.000108218000000,0.000071082000000,0.000304958000000,0.000272168000000,0.000315230000000,0.000330242000000,0.014620404000000,0.000293897000000,0.014612897000000,0.000259131000000,0.000218835000000 +0.000148119000000,0.000276514000000,0.000045403000000,0.000081354000000,0.000199873000000,0.000172612000000,0.000055280000000,0.000133502000000,0.000110589000000,0.000069897000000,0.000273353000000,0.000276514000000,0.000259922000000,0.000265452000000,0.014441836000000,0.000259131000000,0.014198874000000,0.000265452000000,0.000216859000000 +0.000147329000000,0.000278489000000,0.000048168000000,0.000080168000000,0.000242144000000,0.000171823000000,0.000054094000000,0.000135872000000,0.000106637000000,0.000071477000000,0.000273748000000,0.000295082000000,0.000259527000000,0.000243724000000,0.014362034000000,0.000257946000000,0.013784849000000,0.000266638000000,0.000221601000000 +0.000179724000000,0.000286785000000,0.000048168000000,0.000080169000000,0.000228711000000,0.000171428000000,0.000053700000000,0.000221205000000,0.000123231000000,0.000069897000000,0.000481156000000,0.000259131000000,0.000301798000000,0.000273749000000,0.015364305000000,0.000301008000000,0.014065737000000,0.000265848000000,0.000218440000000 +0.000146143000000,0.000274144000000,0.000082539000000,0.000080958000000,0.000196316000000,0.000173403000000,0.000056860000000,0.000135873000000,0.000107033000000,0.000139427000000,0.000361057000000,0.000269798000000,0.000261502000000,0.000285600000000,0.014747218000000,0.000260711000000,0.014740503000000,0.000262687000000,0.000281650000000 +0.000148514000000,0.000262292000000,0.000045403000000,0.000082934000000,0.000194736000000,0.000171032000000,0.000052909000000,0.000131131000000,0.000108613000000,0.000069897000000,0.000270588000000,0.000398983000000,0.000257551000000,0.000269403000000,0.014143564000000,0.000256366000000,0.013804997000000,0.000259132000000,0.000218044000000 +0.000146934000000,0.000298243000000,0.000045799000000,0.000080168000000,0.000194341000000,0.000170638000000,0.000054884000000,0.000130341000000,0.000108218000000,0.000071083000000,0.000261896000000,0.000269403000000,0.000518687000000,0.000312860000000,0.014632650000000,0.000259527000000,0.014032552000000,0.000327872000000,0.000217650000000 +0.000147329000000,0.000265057000000,0.000045798000000,0.000081748000000,0.000208169000000,0.000172613000000,0.000053700000000,0.000515131000000,0.000106638000000,0.000070687000000,0.000329057000000,0.000304564000000,0.000259527000000,0.000237008000000,0.014607367000000,0.000259526000000,0.014094577000000,0.000264267000000,0.000216464000000 +0.000193946000000,0.000295477000000,0.000048168000000,0.000081353000000,0.000196317000000,0.000193156000000,0.000087674000000,0.000147329000000,0.000142983000000,0.000070292000000,0.000272959000000,0.000272958000000,0.000257551000000,0.000260712000000,0.014826231000000,0.000293502000000,0.014378626000000,0.000296662000000,0.000220810000000 +0.000147329000000,0.000259921000000,0.000045798000000,0.000080169000000,0.000195527000000,0.000347230000000,0.000052910000000,0.000131921000000,0.000107033000000,0.000069896000000,0.000359082000000,0.000295082000000,0.000257156000000,0.000232662000000,0.014646873000000,0.000261502000000,0.013578232000000,0.000263872000000,0.000218045000000 +0.000146144000000,0.000259526000000,0.000045403000000,0.000081749000000,0.000231082000000,0.000171823000000,0.000052909000000,0.000199872000000,0.000108613000000,0.000091626000000,0.000274934000000,0.000272563000000,0.000309304000000,0.000263082000000,0.014921046000000,0.000258736000000,0.014648454000000,0.000420711000000,0.000217255000000 +0.000148909000000,0.000335773000000,0.000045798000000,0.000080564000000,0.000195921000000,0.000206983000000,0.000054094000000,0.000130736000000,0.000108613000000,0.000173403000000,0.000265848000000,0.000270588000000,0.000259922000000,0.000291922000000,0.014810823000000,0.000258341000000,0.013795911000000,0.000307329000000,0.000208169000000 +0.000180514000000,0.000262687000000,0.000045799000000,0.000081749000000,0.000197107000000,0.000171033000000,0.000056465000000,0.000131526000000,0.000106637000000,0.000154835000000,0.000312070000000,0.000306144000000,0.000274934000000,0.000241749000000,0.014341096000000,0.000255576000000,0.014090231000000,0.000262291000000,0.000216860000000 +0.000148514000000,0.000261896000000,0.000059625000000,0.000080563000000,0.000195922000000,0.000171823000000,0.000054490000000,0.000137847000000,0.000112959000000,0.000078193000000,0.000261107000000,0.000275724000000,0.000306934000000,0.000258341000000,0.015357588000000,0.000292316000000,0.014287762000000,0.000260711000000,0.000220416000000 +0.000146539000000,0.000262291000000,0.000046193000000,0.000081354000000,0.000241749000000,0.000171823000000,0.000054885000000,0.000200267000000,0.000121255000000,0.000069897000000,0.000262292000000,0.000271378000000,0.000261896000000,0.000299032000000,0.014415367000000,0.000259526000000,0.014066923000000,0.000295477000000,0.000217255000000 +0.000149304000000,0.000301798000000,0.000051725000000,0.000081749000000,0.000194736000000,0.000173008000000,0.000054489000000,0.000130341000000,0.000108613000000,0.000070292000000,0.000259526000000,0.000277699000000,0.000257946000000,0.000227921000000,0.015061293000000,0.000260316000000,0.014306725000000,0.000260711000000,0.000216070000000 +0.000150094000000,0.000262687000000,0.000046193000000,0.000080958000000,0.000194736000000,0.000170638000000,0.000067526000000,0.000133106000000,0.000107822000000,0.000072267000000,0.000269403000000,0.000270983000000,0.000257551000000,0.000255180000000,0.015158083000000,0.000305353000000,0.013882034000000,0.000308119000000,0.000216070000000 +0.000160366000000,0.000295476000000,0.000045403000000,0.000081749000000,0.000231082000000,0.000172218000000,0.000054885000000,0.000135872000000,0.000107033000000,0.000069897000000,0.000351575000000,0.000301798000000,0.000261106000000,0.000291132000000,0.014433935000000,0.000261501000000,0.014804107000000,0.000263477000000,0.000215674000000 +0.000146934000000,0.000260317000000,0.000047773000000,0.000080958000000,0.000195527000000,0.000170638000000,0.000055675000000,0.000131922000000,0.000108613000000,0.000071477000000,0.000271379000000,0.000270983000000,0.000292712000000,0.000265453000000,0.014578132000000,0.000260712000000,0.014616058000000,0.000263872000000,0.000207773000000 +0.000147329000000,0.000261502000000,0.000047773000000,0.000081353000000,0.000194341000000,0.000235427000000,0.000054884000000,0.000181699000000,0.000141008000000,0.000073452000000,0.000271773000000,0.000268218000000,0.000259526000000,0.000260316000000,0.015044700000000,0.000271773000000,0.013966182000000,0.000260712000000,0.000218045000000 +0.000146934000000,0.000262687000000,0.000107823000000,0.000080959000000,0.000194736000000,0.000170638000000,0.000055674000000,0.000131527000000,0.000107428000000,0.000072268000000,0.000290341000000,0.000304959000000,0.000259132000000,0.000296662000000,0.014033342000000,0.000256366000000,0.014883120000000,0.000259922000000,0.000216070000000 +0.000187625000000,0.000258736000000,0.000046588000000,0.000095576000000,0.000227922000000,0.000172217000000,0.000054884000000,0.000131527000000,0.000107428000000,0.000069897000000,0.000268613000000,0.000278489000000,0.000292316000000,0.000278490000000,0.014398775000000,0.000353551000000,0.014136849000000,0.000297847000000,0.000218440000000 +0.000146933000000,0.000278885000000,0.000047773000000,0.000080959000000,0.000195921000000,0.000171822000000,0.000055675000000,0.000130737000000,0.000107428000000,0.000071872000000,0.000355131000000,0.000270983000000,0.000256366000000,0.000245699000000,0.014650824000000,0.000272169000000,0.014154231000000,0.000260711000000,0.000216860000000 +0.000146539000000,0.000263477000000,0.000045798000000,0.000081748000000,0.000194736000000,0.000174193000000,0.000053305000000,0.000290736000000,0.000107823000000,0.000074638000000,0.000270983000000,0.000273748000000,0.000258341000000,0.000294687000000,0.016728452000000,0.000257551000000,0.014192552000000,0.000299427000000,0.000219625000000 +0.000146933000000,0.000293897000000,0.000045799000000,0.000081749000000,0.000216069000000,0.000170637000000,0.000092020000000,0.000317996000000,0.000142588000000,0.000070292000000,0.000274144000000,0.000271378000000,0.000257156000000,0.000259131000000,0.015012305000000,0.000272959000000,0.014237194000000,0.000262292000000,0.000216859000000 +0.000145354000000,0.000262687000000,0.000046589000000,0.000082934000000,0.000193946000000,0.000170638000000,0.000057255000000,0.000133501000000,0.000111379000000,0.000070292000000,0.000299427000000,0.000328662000000,0.000257156000000,0.000263872000000,0.014393243000000,0.000258341000000,0.013770627000000,0.000262292000000,0.000219625000000 +0.000357107000000,0.000293502000000,0.000047774000000,0.000080958000000,0.000195132000000,0.000170242000000,0.000055280000000,0.000144958000000,0.000108613000000,0.000071082000000,0.000271378000000,0.000270983000000,0.000291526000000,0.000236613000000,0.015130823000000,0.000292316000000,0.013961046000000,0.000260711000000,0.000217650000000 +0.000158786000000,0.000267033000000,0.000045404000000,0.000079774000000,0.000195921000000,0.000172613000000,0.000054885000000,0.000131922000000,0.000108218000000,0.000073453000000,0.000331033000000,0.000294292000000,0.000259527000000,0.000245304000000,0.014502281000000,0.000259132000000,0.014108010000000,0.000261107000000,0.000221205000000 +0.000146539000000,0.000261502000000,0.000050934000000,0.000082144000000,0.000228316000000,0.000170242000000,0.000054885000000,0.000148119000000,0.000107427000000,0.000069896000000,0.000258736000000,0.000285205000000,0.000259131000000,0.000291922000000,0.014627911000000,0.000286391000000,0.014076010000000,0.000261896000000,0.000218835000000 +0.000178934000000,0.000266638000000,0.000048168000000,0.000081748000000,0.000194736000000,0.000171032000000,0.000053700000000,0.000131922000000,0.000107427000000,0.000072268000000,0.000270588000000,0.000267427000000,0.000352761000000,0.000257551000000,0.014664256000000,0.000272959000000,0.013846873000000,0.000261896000000,0.000216860000000 +0.000145354000000,0.000296267000000,0.000047773000000,0.000081354000000,0.000195526000000,0.000171822000000,0.000104662000000,0.000164712000000,0.000109798000000,0.000070292000000,0.000358687000000,0.000289946000000,0.000256761000000,0.000257946000000,0.014864947000000,0.000259526000000,0.014455664000000,0.000293501000000,0.000216860000000 +0.000147724000000,0.000296662000000,0.000048564000000,0.000117304000000,0.000194736000000,0.000171823000000,0.000056465000000,0.000131131000000,0.000109403000000,0.000068712000000,0.000270588000000,0.000266638000000,0.000259922000000,0.000294687000000,0.014581292000000,0.000290736000000,0.014162923000000,0.000259921000000,0.000216860000000 +0.000147329000000,0.000259131000000,0.000048169000000,0.000080958000000,0.000350391000000,0.000171033000000,0.000053700000000,0.000136267000000,0.000106637000000,0.000069502000000,0.000330242000000,0.000269008000000,0.000272564000000,0.000204613000000,0.014646873000000,0.000257551000000,0.014049145000000,0.000277699000000,0.000218440000000 +0.000146144000000,0.000330637000000,0.000045403000000,0.000081354000000,0.000199477000000,0.000171427000000,0.000053699000000,0.000131922000000,0.000107033000000,0.000070687000000,0.000271773000000,0.000310489000000,0.000260316000000,0.000259526000000,0.014617638000000,0.000258737000000,0.015945835000000,0.000261502000000,0.000218440000000 +0.000214094000000,0.000261502000000,0.000045403000000,0.000081749000000,0.000194736000000,0.000172217000000,0.000053699000000,0.000131922000000,0.000108613000000,0.000070687000000,0.000271773000000,0.000256760000000,0.000293502000000,0.000296267000000,0.013942874000000,0.000298243000000,0.015223268000000,0.000260712000000,0.000230687000000 +0.000146934000000,0.000261107000000,0.000048168000000,0.000082539000000,0.000231082000000,0.000225947000000,0.000054489000000,0.000164711000000,0.000140218000000,0.000069897000000,0.000357106000000,0.000274539000000,0.000255576000000,0.000264267000000,0.016727662000000,0.000257551000000,0.014701391000000,0.000259527000000,0.000219230000000 +0.000146934000000,0.000260317000000,0.000046194000000,0.000080564000000,0.000195131000000,0.000172613000000,0.000055280000000,0.000132316000000,0.000108613000000,0.000069502000000,0.000274538000000,0.000297848000000,0.000255576000000,0.000267032000000,0.014748404000000,0.000257156000000,0.014402725000000,0.000261107000000,0.000222390000000 +0.000147328000000,0.000262292000000,0.000048169000000,0.000081749000000,0.000193946000000,0.000173403000000,0.000054490000000,0.000131921000000,0.000109008000000,0.000071477000000,0.000494588000000,0.000276119000000,0.000324712000000,0.000372119000000,0.015801242000000,0.000289551000000,0.015064057000000,0.000312464000000,0.000217650000000 +0.000299428000000,0.000296267000000,0.000046193000000,0.000094391000000,0.000194737000000,0.000169847000000,0.000055279000000,0.000131922000000,0.000114144000000,0.000069897000000,0.000336168000000,0.000312070000000,0.000260317000000,0.000298243000000,0.015206675000000,0.000259527000000,0.014428009000000,0.000259526000000,0.000218440000000 +0.000146539000000,0.000265057000000,0.000048168000000,0.000080564000000,0.000194341000000,0.000172613000000,0.000054094000000,0.000131131000000,0.000107428000000,0.000071082000000,0.000302983000000,0.000269403000000,0.000259921000000,0.000295082000000,0.015050230000000,0.000280860000000,0.014574182000000,0.000346835000000,0.000217255000000 +0.000149304000000,0.000277699000000,0.000047774000000,0.000081749000000,0.000197501000000,0.000183279000000,0.000055675000000,0.000144563000000,0.000108613000000,0.000070292000000,0.000269403000000,0.000270983000000,0.000260711000000,0.000257946000000,0.014545737000000,0.000257156000000,0.014361243000000,0.000261897000000,0.000217255000000 +0.000146934000000,0.000263082000000,0.000045798000000,0.000080959000000,0.000195526000000,0.000170638000000,0.000054094000000,0.000131921000000,0.000107033000000,0.000089650000000,0.000269798000000,0.000342095000000,0.000260712000000,0.000278094000000,0.014778823000000,0.000259922000000,0.014200059000000,0.000280070000000,0.000218044000000 +0.000214489000000,0.000309304000000,0.000045798000000,0.000081748000000,0.000263872000000,0.000170638000000,0.000056070000000,0.000131921000000,0.000107823000000,0.000103872000000,0.000314440000000,0.000271773000000,0.000297847000000,0.000312465000000,0.014405491000000,0.000308119000000,0.014043219000000,0.000264662000000,0.000219230000000 +0.000145354000000,0.000264267000000,0.000103872000000,0.000080564000000,0.000195922000000,0.000210144000000,0.000054885000000,0.000131922000000,0.000107428000000,0.000071082000000,0.000276909000000,0.000304959000000,0.000258737000000,0.000222391000000,0.014322528000000,0.000258341000000,0.014149491000000,0.000259921000000,0.000216465000000 +0.000146934000000,0.000265452000000,0.000048169000000,0.000118489000000,0.000196316000000,0.000171032000000,0.000053305000000,0.000151675000000,0.000107428000000,0.000071477000000,0.000291922000000,0.000270588000000,0.000256760000000,0.000262687000000,0.014958972000000,0.000261106000000,0.013888355000000,0.000259921000000,0.000220020000000 +0.000147328000000,0.000268612000000,0.000048563000000,0.000082144000000,0.000195131000000,0.000170637000000,0.000054094000000,0.000131527000000,0.000108218000000,0.000071477000000,0.000270983000000,0.000322736000000,0.000349205000000,0.000353947000000,0.014574971000000,0.000295082000000,0.013926676000000,0.000259922000000,0.000216860000000 +0.000148119000000,0.000261107000000,0.000045798000000,0.000081354000000,0.000195132000000,0.000172613000000,0.000055280000000,0.000131132000000,0.000142983000000,0.000070687000000,0.000273748000000,0.000391082000000,0.000261502000000,0.000263082000000,0.014640157000000,0.000256366000000,0.014165688000000,0.000308514000000,0.000209749000000 +0.000158391000000,0.000302983000000,0.000045798000000,0.000080959000000,0.000196317000000,0.000176169000000,0.000053304000000,0.000143379000000,0.000109403000000,0.000072663000000,0.000296267000000,0.000302193000000,0.000298637000000,0.000240169000000,0.014714824000000,0.000259527000000,0.013977244000000,0.000263477000000,0.000328267000000 +0.000146539000000,0.000260317000000,0.000048168000000,0.000080958000000,0.000197107000000,0.000172218000000,0.000054094000000,0.000130341000000,0.000108613000000,0.000071082000000,0.000269008000000,0.000274538000000,0.000259526000000,0.000319971000000,0.014939613000000,0.000257156000000,0.014339515000000,0.000296267000000,0.000232662000000 +0.000145748000000,0.000299033000000,0.000045403000000,0.000081749000000,0.000277304000000,0.000170637000000,0.000053700000000,0.000166687000000,0.000108613000000,0.000073847000000,0.000272563000000,0.000270983000000,0.000262292000000,0.000233848000000,0.014974379000000,0.000257947000000,0.013897836000000,0.000260712000000,0.000218835000000 +0.000147328000000,0.000265452000000,0.000048564000000,0.000080959000000,0.000196317000000,0.000170242000000,0.000054884000000,0.000130341000000,0.000107428000000,0.000071872000000,0.000284810000000,0.000319575000000,0.000291526000000,0.000336168000000,0.014859811000000,0.000307328000000,0.014145145000000,0.000259921000000,0.000259131000000 +0.000179329000000,0.000261501000000,0.000045798000000,0.000081749000000,0.000194737000000,0.000173008000000,0.000054884000000,0.000131922000000,0.000146144000000,0.000069897000000,0.000271378000000,0.000275329000000,0.000259526000000,0.000268613000000,0.014161738000000,0.000257946000000,0.014193737000000,0.000264662000000,0.000249255000000 +0.000162736000000,0.000262292000000,0.000045798000000,0.000081353000000,0.000283230000000,0.000170638000000,0.000053699000000,0.000132316000000,0.000193551000000,0.000070292000000,0.000304169000000,0.000272168000000,0.000299033000000,0.000239378000000,0.014601046000000,0.000266637000000,0.014121836000000,0.000263477000000,0.000216465000000 +0.000148119000000,0.000262687000000,0.000045403000000,0.000079379000000,0.000195527000000,0.000170242000000,0.000069897000000,0.000132316000000,0.000108613000000,0.000071082000000,0.000269798000000,0.000305354000000,0.000264267000000,0.000326687000000,0.014862577000000,0.000257946000000,0.015294774000000,0.000293106000000,0.000217650000000 +0.000146934000000,0.000262292000000,0.000047774000000,0.000081354000000,0.000194736000000,0.000171428000000,0.000054094000000,0.000132712000000,0.000108218000000,0.000070687000000,0.000274539000000,0.000277304000000,0.000258736000000,0.000235823000000,0.014177145000000,0.000257156000000,0.015038378000000,0.000262687000000,0.000216070000000 +0.000167477000000,0.000258737000000,0.000045798000000,0.000081354000000,0.000196711000000,0.000207378000000,0.000055279000000,0.000133897000000,0.000108218000000,0.000070292000000,0.000316810000000,0.000288761000000,0.000306934000000,0.000265453000000,0.014357293000000,0.000291131000000,0.014045589000000,0.000389502000000,0.000218439000000 +0.000148909000000,0.000406489000000,0.000045798000000,0.000081353000000,0.000344859000000,0.000169847000000,0.000054094000000,0.000130341000000,0.000108613000000,0.000083329000000,0.000276514000000,0.000271773000000,0.000261501000000,0.000261502000000,0.014274330000000,0.000257946000000,0.014239960000000,0.000262687000000,0.000222785000000 +0.000146539000000,0.000262292000000,0.000045798000000,0.000102687000000,0.000208563000000,0.000170637000000,0.000053700000000,0.000130737000000,0.000108613000000,0.000071082000000,0.000267428000000,0.000269402000000,0.000257551000000,0.000246094000000,0.014580108000000,0.000258736000000,0.013751664000000,0.000295082000000,0.000216860000000 +0.000146539000000,0.000294687000000,0.000047774000000,0.000081354000000,0.000206984000000,0.000171428000000,0.000053304000000,0.000130341000000,0.000107428000000,0.000071477000000,0.000311674000000,0.000293107000000,0.000481156000000,0.000263872000000,0.014814774000000,0.000293107000000,0.014136849000000,0.000261501000000,0.000218045000000 +0.000146934000000,0.000262687000000,0.000046193000000,0.000080168000000,0.000207378000000,0.000174193000000,0.000055675000000,0.000133107000000,0.000107428000000,0.000069896000000,0.000259922000000,0.000268218000000,0.000255971000000,0.000274934000000,0.014719169000000,0.000262292000000,0.014022281000000,0.000261107000000,0.000220810000000 +0.000229106000000,0.000337354000000,0.000045799000000,0.000081749000000,0.000206588000000,0.000173798000000,0.000068712000000,0.000133897000000,0.000109798000000,0.000071477000000,0.000265848000000,0.000269798000000,0.000325501000000,0.000232662000000,0.014736552000000,0.000309304000000,0.014712058000000,0.000261107000000,0.000216860000000 +0.000145354000000,0.000268613000000,0.000045798000000,0.000080958000000,0.000206588000000,0.000169848000000,0.000053700000000,0.000133897000000,0.000199082000000,0.000070687000000,0.000269798000000,0.000383971000000,0.000258736000000,0.000298637000000,0.014288552000000,0.000267032000000,0.013994627000000,0.000260317000000,0.000216465000000 +0.000146539000000,0.000302588000000,0.000045798000000,0.000082143000000,0.000264268000000,0.000171033000000,0.000054490000000,0.000130736000000,0.000106637000000,0.000073453000000,0.000260711000000,0.000276909000000,0.000256761000000,0.000242538000000,0.014413391000000,0.000257551000000,0.014381787000000,0.000296267000000,0.000216465000000 +0.000146538000000,0.000262686000000,0.000045403000000,0.000081353000000,0.000308909000000,0.000172612000000,0.000054095000000,0.000186835000000,0.000108218000000,0.000072268000000,0.000342489000000,0.000363033000000,0.000260712000000,0.000262687000000,0.014520058000000,0.000300218000000,0.014152651000000,0.000258736000000,0.000216859000000 +0.000180119000000,0.000258341000000,0.000045798000000,0.000081749000000,0.000209749000000,0.000171032000000,0.000054489000000,0.000131131000000,0.000109008000000,0.000070292000000,0.000257551000000,0.000268613000000,0.000257551000000,0.000338539000000,0.014083910000000,0.000258341000000,0.013776552000000,0.000355526000000,0.000215674000000 +0.000147724000000,0.000263872000000,0.000047773000000,0.000081354000000,0.000293897000000,0.000170637000000,0.000057255000000,0.000130737000000,0.000106637000000,0.000069896000000,0.000257551000000,0.000273748000000,0.000296267000000,0.000265057000000,0.015054577000000,0.000257946000000,0.014356108000000,0.000264267000000,0.000224761000000 +0.000147724000000,0.000263082000000,0.000052119000000,0.000081353000000,0.000195131000000,0.000171427000000,0.000053699000000,0.000132317000000,0.000176564000000,0.000071872000000,0.000292316000000,0.000285205000000,0.000255971000000,0.000231477000000,0.015035219000000,0.000310885000000,0.014026627000000,0.000296267000000,0.000217255000000 +0.000146933000000,0.000331823000000,0.000045798000000,0.000080564000000,0.000194736000000,0.000424662000000,0.000123625000000,0.000131921000000,0.000108613000000,0.000071477000000,0.000284415000000,0.000269798000000,0.000263477000000,0.000301798000000,0.014083515000000,0.000257156000000,0.013856355000000,0.000263477000000,0.000208168000000 +0.000147329000000,0.000258341000000,0.000047774000000,0.000080958000000,0.000246489000000,0.000187230000000,0.000075428000000,0.000159576000000,0.000107823000000,0.000074637000000,0.000291526000000,0.000302193000000,0.000306539000000,0.000268218000000,0.014566675000000,0.000261896000000,0.014813193000000,0.000281650000000,0.000216860000000 +0.000180119000000,0.000307724000000,0.000048169000000,0.000081748000000,0.000194736000000,0.000171822000000,0.000057255000000,0.000130341000000,0.000109008000000,0.000090835000000,0.000273354000000,0.000276909000000,0.000257946000000,0.000263477000000,0.014756701000000,0.000256761000000,0.013911663000000,0.000309699000000,0.000218045000000 +0.000147724000000,0.000265452000000,0.000047773000000,0.000084119000000,0.000196316000000,0.000174193000000,0.000068316000000,0.000131131000000,0.000109798000000,0.000069897000000,0.000272564000000,0.000276119000000,0.000259922000000,0.000261107000000,0.014150281000000,0.000260317000000,0.013919170000000,0.000262687000000,0.000220415000000 +0.000148514000000,0.000265058000000,0.000045798000000,0.000081354000000,0.000196316000000,0.000172218000000,0.000060020000000,0.000130342000000,0.000107033000000,0.000074242000000,0.000370143000000,0.000361057000000,0.000292712000000,0.000235033000000,0.014178725000000,0.000341304000000,0.013961442000000,0.000261897000000,0.000217650000000 +0.000146539000000,0.000521847000000,0.000048168000000,0.000082143000000,0.000226341000000,0.000170638000000,0.000058440000000,0.000164711000000,0.000107033000000,0.000069897000000,0.000269402000000,0.000266637000000,0.000258341000000,0.000299428000000,0.014699021000000,0.000256366000000,0.014957787000000,0.000261897000000,0.000217255000000 +0.000182094000000,0.000294292000000,0.000045403000000,0.000080959000000,0.000197897000000,0.000172218000000,0.000056069000000,0.000132711000000,0.000110983000000,0.000069897000000,0.000274539000000,0.000271773000000,0.000259922000000,0.000280465000000,0.014855466000000,0.000258736000000,0.014034528000000,0.000328662000000,0.000217650000000 +0.000145748000000,0.000262687000000,0.000048168000000,0.000080958000000,0.000196316000000,0.000208168000000,0.000054885000000,0.000132317000000,0.000107032000000,0.000069897000000,0.000272958000000,0.000272169000000,0.000259921000000,0.000286391000000,0.015326379000000,0.000422292000000,0.013746528000000,0.000260712000000,0.000217255000000 +0.000146539000000,0.000258341000000,0.000060415000000,0.000080958000000,0.000252021000000,0.000171032000000,0.000055280000000,0.000131527000000,0.000107823000000,0.000071872000000,0.000276909000000,0.000261502000000,0.000263082000000,0.000600859000000,0.014129343000000,0.000263872000000,0.014249046000000,0.000296267000000,0.000216069000000 +0.000146144000000,0.000263477000000,0.000045799000000,0.000081354000000,0.000194341000000,0.000170243000000,0.000054884000000,0.000130736000000,0.000109403000000,0.000072267000000,0.000306539000000,0.000304958000000,0.000292711000000,0.000338144000000,0.014768947000000,0.000291922000000,0.013503565000000,0.000262686000000,0.000218440000000 +0.000146538000000,0.000262687000000,0.000048564000000,0.000080959000000,0.000195526000000,0.000173403000000,0.000054489000000,0.000165502000000,0.000122440000000,0.000069897000000,0.000259527000000,0.000257156000000,0.000259131000000,0.000215279000000,0.014348207000000,0.000261501000000,0.013698331000000,0.000310094000000,0.000218045000000 +0.000223576000000,0.000261106000000,0.000048169000000,0.000081354000000,0.000195921000000,0.000182094000000,0.000054094000000,0.000131527000000,0.000106637000000,0.000070292000000,0.000308909000000,0.000270588000000,0.000263477000000,0.000281649000000,0.014607762000000,0.000259922000000,0.013920355000000,0.000264663000000,0.000218045000000 +0.000145749000000,0.000261501000000,0.000045799000000,0.000081748000000,0.000228317000000,0.000170637000000,0.000054490000000,0.000132712000000,0.000108613000000,0.000071082000000,0.000326291000000,0.000304563000000,0.000272564000000,0.000308514000000,0.014796206000000,0.000347230000000,0.014838083000000,0.000266638000000,0.000217650000000 +0.000146934000000,0.000313650000000,0.000048959000000,0.000080959000000,0.000194737000000,0.000171427000000,0.000056070000000,0.000132317000000,0.000109403000000,0.000070687000000,0.000263082000000,0.000274933000000,0.000260316000000,0.000270983000000,0.014662280000000,0.000259526000000,0.014225342000000,0.000306539000000,0.000328662000000 +0.000148119000000,0.000261897000000,0.000047773000000,0.000081748000000,0.000195921000000,0.000170242000000,0.000112959000000,0.000137848000000,0.000108613000000,0.000070687000000,0.000267823000000,0.000287576000000,0.000353156000000,0.000267033000000,0.014404305000000,0.000261107000000,0.014102478000000,0.000261501000000,0.000229897000000 +0.000179723000000,0.000280465000000,0.000048563000000,0.000080959000000,0.000195526000000,0.000174193000000,0.000055674000000,0.000163921000000,0.000194737000000,0.000071478000000,0.000258736000000,0.000269008000000,0.000260316000000,0.000280860000000,0.015088552000000,0.000258341000000,0.014198873000000,0.000441650000000,0.000218440000000 +0.000147723000000,0.000263477000000,0.000047773000000,0.000083329000000,0.000194736000000,0.000170638000000,0.000056860000000,0.000143774000000,0.000108218000000,0.000083329000000,0.000259921000000,0.000272168000000,0.000331428000000,0.000233848000000,0.014319367000000,0.000255971000000,0.014339515000000,0.000289155000000,0.000220416000000 +0.000146144000000,0.000263477000000,0.000045798000000,0.000081749000000,0.000194736000000,0.000171823000000,0.000055279000000,0.000136662000000,0.000109798000000,0.000069897000000,0.000292712000000,0.000306538000000,0.000265452000000,0.000263082000000,0.014605392000000,0.000340909000000,0.013507121000000,0.000299823000000,0.000218440000000 +0.000146144000000,0.000289156000000,0.000045798000000,0.000080958000000,0.000194737000000,0.000171032000000,0.000055279000000,0.000133107000000,0.000108218000000,0.000069897000000,0.000268217000000,0.000269403000000,0.000262687000000,0.000306934000000,0.014170034000000,0.000263082000000,0.014155021000000,0.000260711000000,0.000215675000000 +0.000147329000000,0.000259922000000,0.000045798000000,0.000080564000000,0.000242934000000,0.000174193000000,0.000085699000000,0.000167872000000,0.000107033000000,0.000071477000000,0.000271773000000,0.000271378000000,0.000308909000000,0.000280070000000,0.014523219000000,0.000255971000000,0.013963022000000,0.000394242000000,0.000296663000000 +0.000146933000000,0.000274934000000,0.000048168000000,0.000080563000000,0.000196317000000,0.000185650000000,0.000053700000000,0.000131527000000,0.000141008000000,0.000069897000000,0.000304958000000,0.000288761000000,0.000259921000000,0.000254390000000,0.014249441000000,0.000271378000000,0.013836602000000,0.000264662000000,0.000218045000000 +0.000145353000000,0.000262686000000,0.000045798000000,0.000080563000000,0.000196712000000,0.000170637000000,0.000054094000000,0.000130341000000,0.000108613000000,0.000069896000000,0.000270193000000,0.000276513000000,0.000257946000000,0.000243724000000,0.014772502000000,0.000257946000000,0.014539021000000,0.000293897000000,0.000217650000000 +0.000145354000000,0.000347230000000,0.000045798000000,0.000081354000000,0.000196316000000,0.000170243000000,0.000054094000000,0.000131921000000,0.000110193000000,0.000071872000000,0.000273354000000,0.000304563000000,0.000258341000000,0.000272563000000,0.014662676000000,0.000275329000000,0.013610626000000,0.000262687000000,0.000215675000000 +0.000146539000000,0.000274144000000,0.000070687000000,0.000082143000000,0.000264267000000,0.000261897000000,0.000056860000000,0.000131131000000,0.000109798000000,0.000069502000000,0.000337749000000,0.000306934000000,0.000256761000000,0.000262292000000,0.014736552000000,0.000255576000000,0.015123712000000,0.000267032000000,0.000216860000000 +0.000194736000000,0.000310095000000,0.000048563000000,0.000080958000000,0.000194341000000,0.000170638000000,0.000053700000000,0.000132316000000,0.000109008000000,0.000069897000000,0.000269008000000,0.000269008000000,0.000293501000000,0.000274144000000,0.015564206000000,0.000259527000000,0.015359169000000,0.000273748000000,0.000269403000000 +0.000147329000000,0.000263872000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000170637000000,0.000054094000000,0.000133502000000,0.000162737000000,0.000069897000000,0.000293501000000,0.000302983000000,0.000257552000000,0.000239773000000,0.014837293000000,0.000305354000000,0.015139515000000,0.000259922000000,0.000219230000000 +0.000147329000000,0.000262687000000,0.000047774000000,0.000081353000000,0.000274934000000,0.000171822000000,0.000054884000000,0.000130736000000,0.000204613000000,0.000071477000000,0.000258736000000,0.000271378000000,0.000259527000000,0.000307724000000,0.014659515000000,0.000259922000000,0.013910479000000,0.000292316000000,0.000218045000000 +0.000145354000000,0.000263082000000,0.000048564000000,0.000081354000000,0.000247279000000,0.000171033000000,0.000055280000000,0.000131922000000,0.000121255000000,0.000070292000000,0.000257551000000,0.000276119000000,0.000289551000000,0.000232662000000,0.014757490000000,0.000261502000000,0.013833047000000,0.000260712000000,0.000216464000000 +0.000146539000000,0.000261107000000,0.000047773000000,0.000081749000000,0.000196316000000,0.000171428000000,0.000103478000000,0.000167082000000,0.000110193000000,0.000070292000000,0.000280860000000,0.000268613000000,0.000258342000000,0.000255576000000,0.014731022000000,0.000474834000000,0.014081145000000,0.000345650000000,0.000218045000000 +0.000370144000000,0.000307329000000,0.000078984000000,0.000093205000000,0.000196316000000,0.000170637000000,0.000053699000000,0.000133502000000,0.000142589000000,0.000070687000000,0.000257946000000,0.000288365000000,0.000257947000000,0.000299032000000,0.014472256000000,0.000278885000000,0.014066923000000,0.000260317000000,0.000229107000000 +0.000162342000000,0.000262292000000,0.000045404000000,0.000080959000000,0.000195921000000,0.000173403000000,0.000053699000000,0.000132711000000,0.000107823000000,0.000068712000000,0.000258341000000,0.000413600000000,0.000264267000000,0.000242934000000,0.014292503000000,0.000257551000000,0.013811713000000,0.000263082000000,0.000216464000000 +0.000146934000000,0.000345255000000,0.000045798000000,0.000080563000000,0.000193946000000,0.000207774000000,0.000056465000000,0.000134687000000,0.000107428000000,0.000072268000000,0.000261106000000,0.000274538000000,0.000257946000000,0.000259922000000,0.014940799000000,0.000257946000000,0.014088651000000,0.000263477000000,0.000217650000000 +0.000179723000000,0.000264662000000,0.000045403000000,0.000081748000000,0.000194736000000,0.000171033000000,0.000053304000000,0.000131526000000,0.000109798000000,0.000069897000000,0.000271378000000,0.000277699000000,0.000296268000000,0.000312070000000,0.014526379000000,0.000401748000000,0.014260108000000,0.000314440000000,0.000295081000000 +0.000146539000000,0.000296663000000,0.000047773000000,0.000081353000000,0.000280070000000,0.000170637000000,0.000054489000000,0.000185255000000,0.000107033000000,0.000071477000000,0.000330242000000,0.000270983000000,0.000255971000000,0.000224761000000,0.014647663000000,0.000259922000000,0.013937737000000,0.000276119000000,0.000216860000000 +0.000146144000000,0.000261896000000,0.000045798000000,0.000080169000000,0.000201452000000,0.000171822000000,0.000055280000000,0.000130737000000,0.000107033000000,0.000071082000000,0.000257156000000,0.000258341000000,0.000257156000000,0.000261107000000,0.014529540000000,0.000256761000000,0.015105540000000,0.000262292000000,0.000217255000000 +0.000148119000000,0.000261896000000,0.000045403000000,0.000083329000000,0.000195527000000,0.000171822000000,0.000055675000000,0.000130737000000,0.000110983000000,0.000075823000000,0.000256760000000,0.000326687000000,0.000291527000000,0.000322341000000,0.014179515000000,0.000259131000000,0.013921145000000,0.000274539000000,0.000218045000000 +0.000185255000000,0.000273749000000,0.000045403000000,0.000080168000000,0.000263872000000,0.000172218000000,0.000053700000000,0.000131131000000,0.000107428000000,0.000071477000000,0.000350786000000,0.000259131000000,0.000255970000000,0.000261897000000,0.016640748000000,0.000259527000000,0.015982575000000,0.000261897000000,0.000218045000000 +0.000146934000000,0.000264267000000,0.000084909000000,0.000081354000000,0.000195527000000,0.000170637000000,0.000053304000000,0.000130736000000,0.000107823000000,0.000070687000000,0.000267428000000,0.000260316000000,0.000257156000000,0.000266638000000,0.014902872000000,0.000327082000000,0.014341095000000,0.000341700000000,0.000216465000000 +0.000146934000000,0.000294687000000,0.000048564000000,0.000081353000000,0.000195131000000,0.000171033000000,0.000055279000000,0.000165502000000,0.000115724000000,0.000069502000000,0.000287971000000,0.000347230000000,0.000255971000000,0.000259921000000,0.015285687000000,0.000257551000000,0.013823170000000,0.000260317000000,0.000252020000000 +0.000147724000000,0.000258341000000,0.000045403000000,0.000116909000000,0.000194341000000,0.000207378000000,0.000054094000000,0.000131527000000,0.000109798000000,0.000071872000000,0.000261502000000,0.000262292000000,0.000264662000000,0.000263082000000,0.015298724000000,0.000257946000000,0.016033538000000,0.000282045000000,0.000216069000000 +0.000146539000000,0.000358292000000,0.000046193000000,0.000081353000000,0.000209354000000,0.000173403000000,0.000054095000000,0.000130736000000,0.000142588000000,0.000069501000000,0.000264662000000,0.000330638000000,0.000298243000000,0.000243724000000,0.015064058000000,0.000290341000000,0.014634231000000,0.000260317000000,0.000219230000000 +0.000180119000000,0.000261107000000,0.000045799000000,0.000080959000000,0.000196317000000,0.000172612000000,0.000054094000000,0.000131922000000,0.000107822000000,0.000071082000000,0.000294292000000,0.000270193000000,0.000265847000000,0.000314439000000,0.014992551000000,0.000257551000000,0.015042329000000,0.000261502000000,0.000218045000000 +0.000145748000000,0.000301008000000,0.000045403000000,0.000080563000000,0.000195131000000,0.000171823000000,0.000055674000000,0.000131527000000,0.000108613000000,0.000069897000000,0.000258342000000,0.000258736000000,0.000267033000000,0.000257946000000,0.014158578000000,0.000257156000000,0.013881639000000,0.000295082000000,0.000219230000000 +0.000163526000000,0.000261107000000,0.000045798000000,0.000083725000000,0.000243329000000,0.000170637000000,0.000092415000000,0.000130737000000,0.000106638000000,0.000069897000000,0.000258341000000,0.000364217000000,0.000449550000000,0.000261501000000,0.014892206000000,0.000303773000000,0.013875713000000,0.000263082000000,0.000218045000000 +0.000147724000000,0.000267032000000,0.000045008000000,0.000080564000000,0.000194342000000,0.000171823000000,0.000055280000000,0.000133107000000,0.000108613000000,0.000083724000000,0.000291527000000,0.000273354000000,0.000349995000000,0.000247675000000,0.014548898000000,0.000263872000000,0.014155811000000,0.000311675000000,0.000218835000000 +0.000213699000000,0.000260317000000,0.000061601000000,0.000080959000000,0.000194341000000,0.000170638000000,0.000054490000000,0.000131527000000,0.000127576000000,0.000070687000000,0.000261502000000,0.000262291000000,0.000258737000000,0.000247675000000,0.014550083000000,0.000293896000000,0.013866231000000,0.000261107000000,0.000252811000000 +0.000146143000000,0.000261897000000,0.000048168000000,0.000081354000000,0.000276119000000,0.000171427000000,0.000054490000000,0.000131527000000,0.000107427000000,0.000071872000000,0.000305354000000,0.000306539000000,0.000261502000000,0.000329847000000,0.014987021000000,0.000255576000000,0.013846083000000,0.000522242000000,0.000216465000000 +0.000147329000000,0.000264267000000,0.000045798000000,0.000081353000000,0.000194736000000,0.000174193000000,0.000054094000000,0.000256761000000,0.000107032000000,0.000069897000000,0.000273748000000,0.000272958000000,0.000340909000000,0.000260712000000,0.014206379000000,0.000257946000000,0.014288948000000,0.000280464000000,0.000216860000000 +0.000146539000000,0.000261107000000,0.000045798000000,0.000083724000000,0.000196712000000,0.000170637000000,0.000055674000000,0.000147724000000,0.000108218000000,0.000069502000000,0.000260711000000,0.000339329000000,0.000333008000000,0.000264662000000,0.014217046000000,0.000346835000000,0.013671862000000,0.000261502000000,0.000218835000000 +0.000148909000000,0.000293502000000,0.000045799000000,0.000080563000000,0.000214884000000,0.000171822000000,0.000053699000000,0.000131526000000,0.000107032000000,0.000069897000000,0.000322341000000,0.000272168000000,0.000280859000000,0.000296663000000,0.014981095000000,0.000256366000000,0.013869787000000,0.000263872000000,0.000220415000000 +0.000147329000000,0.000265452000000,0.000045798000000,0.000080564000000,0.000312860000000,0.000171428000000,0.000067526000000,0.000135082000000,0.000107032000000,0.000141008000000,0.000270984000000,0.000267427000000,0.000260712000000,0.000203033000000,0.015102774000000,0.000255971000000,0.015283712000000,0.000260712000000,0.000218835000000 +0.000147329000000,0.000299427000000,0.000045798000000,0.000080959000000,0.000208958000000,0.000173008000000,0.000054095000000,0.000164711000000,0.000109403000000,0.000071082000000,0.000268613000000,0.000269402000000,0.000257551000000,0.000257156000000,0.014085886000000,0.000259526000000,0.013990676000000,0.000266637000000,0.000237798000000 +0.000146933000000,0.000260711000000,0.000048564000000,0.000082143000000,0.000229502000000,0.000171427000000,0.000054094000000,0.000130736000000,0.000108613000000,0.000070292000000,0.000301008000000,0.000276514000000,0.000275723000000,0.000298638000000,0.014167268000000,0.000259921000000,0.014205195000000,0.000298243000000,0.000216070000000 +0.000145749000000,0.000278094000000,0.000050934000000,0.000080959000000,0.000195131000000,0.000172612000000,0.000055279000000,0.000131922000000,0.000108613000000,0.000072268000000,0.000269403000000,0.000342094000000,0.000259921000000,0.000259526000000,0.014840058000000,0.000299822000000,0.014249441000000,0.000260316000000,0.000219626000000 +0.000182884000000,0.000261897000000,0.000047773000000,0.000080168000000,0.000194736000000,0.000171428000000,0.000055280000000,0.000131922000000,0.000108613000000,0.000069896000000,0.000270588000000,0.000270588000000,0.000295477000000,0.000258341000000,0.014852305000000,0.000261501000000,0.014830972000000,0.000302193000000,0.000216069000000 +0.000145749000000,0.000261897000000,0.000048168000000,0.000172613000000,0.000195132000000,0.000173403000000,0.000054094000000,0.000130736000000,0.000107032000000,0.000075428000000,0.000268613000000,0.000272168000000,0.000258736000000,0.000209748000000,0.014577738000000,0.000258342000000,0.013952355000000,0.000260711000000,0.000218835000000 +0.000145749000000,0.000297847000000,0.000045403000000,0.000100317000000,0.000228316000000,0.000170638000000,0.000054094000000,0.000144563000000,0.000180909000000,0.000071477000000,0.000273749000000,0.000570439000000,0.000255576000000,0.000258341000000,0.014793046000000,0.000257156000000,0.014286182000000,0.000272168000000,0.000217254000000 +0.000148515000000,0.000269798000000,0.000046983000000,0.000080564000000,0.000194736000000,0.000172613000000,0.000073058000000,0.000132316000000,0.000108613000000,0.000070292000000,0.000320366000000,0.000269008000000,0.000580711000000,0.000259922000000,0.014685194000000,0.000259921000000,0.014086676000000,0.000259921000000,0.000215674000000 +0.000146538000000,0.000321156000000,0.000047774000000,0.000081353000000,0.000195526000000,0.000170637000000,0.000057650000000,0.000131922000000,0.000108218000000,0.000072662000000,0.000268217000000,0.000296268000000,0.000287180000000,0.000258737000000,0.014709688000000,0.000290736000000,0.014179121000000,0.000259922000000,0.000252020000000 +0.000160365000000,0.000258736000000,0.000045798000000,0.000082538000000,0.000194737000000,0.000173008000000,0.000056465000000,0.000135477000000,0.000108613000000,0.000071082000000,0.000268218000000,0.000257551000000,0.000265058000000,0.000260316000000,0.014750774000000,0.000257551000000,0.014766576000000,0.000295081000000,0.000216464000000 +0.000147329000000,0.000264267000000,0.000082539000000,0.000081749000000,0.000194736000000,0.000171033000000,0.000055279000000,0.000185255000000,0.000107033000000,0.000072267000000,0.000299032000000,0.000268218000000,0.000260711000000,0.000239378000000,0.013990281000000,0.000270983000000,0.014629095000000,0.000260711000000,0.000216465000000 +0.000147329000000,0.000262292000000,0.000048169000000,0.000080958000000,0.000194736000000,0.000171823000000,0.000053304000000,0.000132316000000,0.000161551000000,0.000071477000000,0.000270588000000,0.000273749000000,0.000292316000000,0.000229106000000,0.014335960000000,0.000292711000000,0.014038479000000,0.000344465000000,0.000218440000000 +0.000147329000000,0.000262292000000,0.000045798000000,0.000081748000000,0.000197897000000,0.000170638000000,0.000053699000000,0.000131527000000,0.000107033000000,0.000072268000000,0.000270588000000,0.000292317000000,0.000262687000000,0.000261502000000,0.014737738000000,0.000272959000000,0.014308305000000,0.000258341000000,0.000216860000000 +0.000214884000000,0.000359872000000,0.000046193000000,0.000080959000000,0.000229897000000,0.000174193000000,0.000053305000000,0.000131922000000,0.000110193000000,0.000070292000000,0.000296662000000,0.000293501000000,0.000257156000000,0.000361453000000,0.014527170000000,0.000258737000000,0.014499515000000,0.000261107000000,0.000216465000000 +0.000148119000000,0.000265848000000,0.000047774000000,0.000080169000000,0.000195526000000,0.000171823000000,0.000055675000000,0.000131526000000,0.000108613000000,0.000091625000000,0.000262687000000,0.000272958000000,0.000325502000000,0.000293897000000,0.014874034000000,0.000257156000000,0.013549392000000,0.000273749000000,0.000220811000000 +0.000146539000000,0.000294687000000,0.000045799000000,0.000079774000000,0.000196711000000,0.000171428000000,0.000054885000000,0.000165897000000,0.000110588000000,0.000082934000000,0.000257946000000,0.000274539000000,0.000258341000000,0.000243329000000,0.015021786000000,0.000259132000000,0.013793935000000,0.000261106000000,0.000550292000000 +0.000147724000000,0.000262292000000,0.000045798000000,0.000081354000000,0.000195921000000,0.000171033000000,0.000055675000000,0.000133107000000,0.000142194000000,0.000069897000000,0.000258341000000,0.000310095000000,0.000259131000000,0.000314045000000,0.014020305000000,0.000289946000000,0.014013985000000,0.000293106000000,0.000237008000000 +0.000146539000000,0.000259922000000,0.000047774000000,0.000082143000000,0.000228712000000,0.000222390000000,0.000053304000000,0.000130341000000,0.000107032000000,0.000070687000000,0.000261502000000,0.000259526000000,0.000258736000000,0.000229106000000,0.014731021000000,0.000259921000000,0.014204405000000,0.000261502000000,0.000217650000000 +0.000146539000000,0.000262291000000,0.000089254000000,0.000080958000000,0.000194341000000,0.000171427000000,0.000052910000000,0.000131922000000,0.000125600000000,0.000069502000000,0.000303378000000,0.000306538000000,0.000258341000000,0.000265057000000,0.014446972000000,0.000256761000000,0.013918380000000,0.000340909000000,0.000219625000000 +0.000147329000000,0.000258341000000,0.000046193000000,0.000081354000000,0.000196711000000,0.000171033000000,0.000054490000000,0.000131132000000,0.000107033000000,0.000069501000000,0.000270193000000,0.000270983000000,0.000293502000000,0.000265452000000,0.014914330000000,0.000589008000000,0.013949984000000,0.000259526000000,0.000218440000000 +0.000146539000000,0.000293107000000,0.000048563000000,0.000081748000000,0.000228316000000,0.000171428000000,0.000056465000000,0.000145749000000,0.000108218000000,0.000104267000000,0.000311280000000,0.000259527000000,0.000258341000000,0.000245304000000,0.014679663000000,0.000274539000000,0.014947514000000,0.000259921000000,0.000250440000000 +0.000146934000000,0.000263082000000,0.000045403000000,0.000081354000000,0.000196712000000,0.000184859000000,0.000128761000000,0.000131131000000,0.000107033000000,0.000070292000000,0.000309699000000,0.000291527000000,0.000258736000000,0.000267427000000,0.014460404000000,0.000289551000000,0.013993046000000,0.000260316000000,0.000217649000000 +0.000214094000000,0.000308909000000,0.000045403000000,0.000082144000000,0.000243724000000,0.000204613000000,0.000137453000000,0.000130736000000,0.000107032000000,0.000071477000000,0.000265452000000,0.000261107000000,0.000301008000000,0.000233452000000,0.014896156000000,0.000256365000000,0.014027021000000,0.000262291000000,0.000216859000000 +0.000146934000000,0.000272169000000,0.000048564000000,0.000080564000000,0.000194737000000,0.000171032000000,0.000056860000000,0.000130737000000,0.000107032000000,0.000073452000000,0.000263477000000,0.000264662000000,0.000258341000000,0.000275723000000,0.014900898000000,0.000261106000000,0.014678083000000,0.000295872000000,0.000252020000000 +0.000146539000000,0.000261501000000,0.000048168000000,0.000080564000000,0.000194342000000,0.000171822000000,0.000054094000000,0.000131526000000,0.000107033000000,0.000069897000000,0.000263082000000,0.000293106000000,0.000258737000000,0.000301008000000,0.015609638000000,0.000256761000000,0.013848849000000,0.000347625000000,0.000216070000000 +0.000147724000000,0.000260711000000,0.000050144000000,0.000082538000000,0.000196317000000,0.000172613000000,0.000054490000000,0.000130737000000,0.000108218000000,0.000069897000000,0.000268218000000,0.000259526000000,0.000292317000000,0.000248070000000,0.014788700000000,0.000257551000000,0.014658724000000,0.000298638000000,0.000206588000000 +0.000164711000000,0.000264662000000,0.000080959000000,0.000081749000000,0.000196317000000,0.000171032000000,0.000067921000000,0.000151280000000,0.000107428000000,0.000070687000000,0.000378439000000,0.000259921000000,0.000257551000000,0.000261502000000,0.014354528000000,0.000290341000000,0.014397589000000,0.000261107000000,0.000226341000000 +0.000147328000000,0.000291921000000,0.000045798000000,0.000081749000000,0.000272959000000,0.000170638000000,0.000056464000000,0.000144563000000,0.000141798000000,0.000176958000000,0.000288761000000,0.000290341000000,0.000255970000000,0.000311279000000,0.014561539000000,0.000260316000000,0.013870972000000,0.000302193000000,0.000216464000000 +0.000148120000000,0.000267823000000,0.000045798000000,0.000082538000000,0.000196317000000,0.000170242000000,0.000053304000000,0.000132317000000,0.000107033000000,0.000089650000000,0.000270588000000,0.000259921000000,0.000262687000000,0.000233057000000,0.014517688000000,0.000259526000000,0.013573886000000,0.000262686000000,0.000217650000000 +0.000146143000000,0.000293896000000,0.000045798000000,0.000080564000000,0.000195921000000,0.000231477000000,0.000053699000000,0.000178539000000,0.000108612000000,0.000073058000000,0.000269008000000,0.000261107000000,0.000309305000000,0.000264267000000,0.014657935000000,0.000291921000000,0.014063367000000,0.000257946000000,0.000218835000000 +0.000147328000000,0.000261501000000,0.000046193000000,0.000102292000000,0.000195132000000,0.000170637000000,0.000057255000000,0.000130736000000,0.000109008000000,0.000076217000000,0.000278489000000,0.000270588000000,0.000292711000000,0.000285601000000,0.014567466000000,0.000259132000000,0.013961047000000,0.000285205000000,0.000217649000000 +0.000214884000000,0.000310884000000,0.000045798000000,0.000081354000000,0.000194341000000,0.000171428000000,0.000053304000000,0.000130736000000,0.000108613000000,0.000071082000000,0.000355526000000,0.000269403000000,0.000256761000000,0.000266242000000,0.014759070000000,0.000257552000000,0.013911268000000,0.000263477000000,0.000217255000000 +0.000148119000000,0.000270588000000,0.000048168000000,0.000081749000000,0.000195922000000,0.000174588000000,0.000053699000000,0.000130736000000,0.000125995000000,0.000070687000000,0.000283230000000,0.000335773000000,0.000338934000000,0.000270588000000,0.014555614000000,0.000270588000000,0.015103564000000,0.000295872000000,0.000217254000000 +0.000147329000000,0.000284020000000,0.000045798000000,0.000080959000000,0.000196317000000,0.000171033000000,0.000125205000000,0.000237403000000,0.000108218000000,0.000105452000000,0.000271378000000,0.000267428000000,0.000431773000000,0.000231477000000,0.014097342000000,0.000255971000000,0.013968553000000,0.000261897000000,0.000216859000000 +0.000146539000000,0.000265057000000,0.000059625000000,0.000081354000000,0.000263872000000,0.000170638000000,0.000054489000000,0.000130737000000,0.000107033000000,0.000071477000000,0.000269008000000,0.000260316000000,0.000336168000000,0.000299427000000,0.014587614000000,0.000256366000000,0.014209935000000,0.000297057000000,0.000216069000000 +0.000187230000000,0.000260317000000,0.000045798000000,0.000080958000000,0.000195922000000,0.000173008000000,0.000055280000000,0.000133107000000,0.000108218000000,0.000069897000000,0.000260712000000,0.000282835000000,0.000260711000000,0.000276119000000,0.014153836000000,0.000255576000000,0.013959466000000,0.000258341000000,0.000216464000000 +0.000148515000000,0.000484317000000,0.000104267000000,0.000082144000000,0.000195131000000,0.000192366000000,0.000055280000000,0.000133107000000,0.000108612000000,0.000070687000000,0.000324317000000,0.000271378000000,0.000259132000000,0.000264267000000,0.014565491000000,0.000259131000000,0.014183071000000,0.000261502000000,0.000217650000000 +0.000145748000000,0.000261106000000,0.000046193000000,0.000080958000000,0.000194341000000,0.000172613000000,0.000056070000000,0.000131921000000,0.000107032000000,0.000074242000000,0.000264662000000,0.000300217000000,0.000292316000000,0.000267823000000,0.014737737000000,0.000333403000000,0.013464454000000,0.000263477000000,0.000216465000000 +0.000147723000000,0.000259527000000,0.000047773000000,0.000081749000000,0.000196316000000,0.000171033000000,0.000054094000000,0.000180514000000,0.000178933000000,0.000070292000000,0.000257551000000,0.000272959000000,0.000258342000000,0.000310094000000,0.014828206000000,0.000265057000000,0.013957096000000,0.000261897000000,0.000218835000000 +0.000146934000000,0.000262686000000,0.000050539000000,0.000080168000000,0.000195922000000,0.000170242000000,0.000056465000000,0.000133107000000,0.000106638000000,0.000070687000000,0.000310094000000,0.000267822000000,0.000258736000000,0.000228712000000,0.014547318000000,0.000259526000000,0.014284602000000,0.000277304000000,0.000218045000000 +0.000349601000000,0.000331823000000,0.000045798000000,0.000081354000000,0.000195922000000,0.000174588000000,0.000133501000000,0.000136662000000,0.000108613000000,0.000103477000000,0.000257156000000,0.000306933000000,0.000332612000000,0.000242144000000,0.015179416000000,0.000260316000000,0.013890330000000,0.000259922000000,0.000217255000000 +0.000203428000000,0.000262687000000,0.000084119000000,0.000080563000000,0.000228712000000,0.000170243000000,0.000054094000000,0.000129946000000,0.000107032000000,0.000071082000000,0.000259526000000,0.000272168000000,0.000263872000000,0.000411625000000,0.015233934000000,0.000255970000000,0.014251022000000,0.000393452000000,0.000216070000000 +0.000162341000000,0.000310490000000,0.000045403000000,0.000080564000000,0.000194736000000,0.000171033000000,0.000053304000000,0.000129946000000,0.000107428000000,0.000070687000000,0.000343279000000,0.000270193000000,0.000290341000000,0.000263081000000,0.014289738000000,0.000304169000000,0.015386824000000,0.000262291000000,0.000351576000000 +0.000161946000000,0.000258341000000,0.000048563000000,0.000083329000000,0.000203427000000,0.000170242000000,0.000054490000000,0.000131527000000,0.000141008000000,0.000072267000000,0.000257551000000,0.000337353000000,0.000259526000000,0.000284021000000,0.014567861000000,0.000257946000000,0.015007959000000,0.000293502000000,0.000285205000000 +0.000146144000000,0.000259526000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000171427000000,0.000053699000000,0.000131131000000,0.000107032000000,0.000070687000000,0.000257551000000,0.000269403000000,0.000258737000000,0.000280070000000,0.014809639000000,0.000259131000000,0.014017540000000,0.000264267000000,0.000216859000000 +0.000147329000000,0.000262292000000,0.000045403000000,0.000081353000000,0.000195922000000,0.000171823000000,0.000053699000000,0.000130737000000,0.000107033000000,0.000069896000000,0.000276514000000,0.000305748000000,0.000306539000000,0.000206984000000,0.014500700000000,0.000327477000000,0.013910478000000,0.000278885000000,0.000218835000000 +0.000146144000000,0.000266637000000,0.000045403000000,0.000081748000000,0.000195131000000,0.000170638000000,0.000054490000000,0.000135872000000,0.000108613000000,0.000070687000000,0.000269403000000,0.000270193000000,0.000259922000000,0.000365008000000,0.014571021000000,0.000277304000000,0.015038379000000,0.000261502000000,0.000218835000000 +0.000180514000000,0.000370143000000,0.000045798000000,0.000080958000000,0.000194341000000,0.000171823000000,0.000053700000000,0.000164316000000,0.000108613000000,0.000143378000000,0.000508811000000,0.000269798000000,0.000256761000000,0.000274934000000,0.014629885000000,0.000272168000000,0.014683613000000,0.000262291000000,0.000230687000000 +0.000147724000000,0.000261502000000,0.000045403000000,0.000082539000000,0.000228317000000,0.000171428000000,0.000055675000000,0.000130736000000,0.000107032000000,0.000069897000000,0.000295477000000,0.000372119000000,0.000257946000000,0.000267822000000,0.014680848000000,0.000259526000000,0.013970923000000,0.000261896000000,0.000232662000000 +0.000146539000000,0.000281650000000,0.000046983000000,0.000081748000000,0.000194736000000,0.000172218000000,0.000055675000000,0.000130736000000,0.000123625000000,0.000070292000000,0.000309304000000,0.000272563000000,0.000264662000000,0.000306538000000,0.014948700000000,0.000260712000000,0.014547317000000,0.000267823000000,0.000231477000000 +0.000146539000000,0.000260317000000,0.000046193000000,0.000082144000000,0.000195132000000,0.000171033000000,0.000053304000000,0.000131921000000,0.000107428000000,0.000072267000000,0.000259132000000,0.000273354000000,0.000295477000000,0.000213699000000,0.015429884000000,0.000293106000000,0.013535565000000,0.000296662000000,0.000232267000000 +0.000163131000000,0.000316810000000,0.000046193000000,0.000080168000000,0.000196316000000,0.000171032000000,0.000053700000000,0.000130737000000,0.000109008000000,0.000070687000000,0.000261897000000,0.000286785000000,0.000255971000000,0.000276514000000,0.014620009000000,0.000256761000000,0.014485293000000,0.000261106000000,0.000229897000000 +0.000145748000000,0.000267427000000,0.000046588000000,0.000080959000000,0.000229501000000,0.000171822000000,0.000054094000000,0.000242143000000,0.000108218000000,0.000069897000000,0.000275724000000,0.000258736000000,0.000257156000000,0.000338143000000,0.016315217000000,0.000259922000000,0.014336355000000,0.000293896000000,0.000231082000000 +0.000145748000000,0.000333008000000,0.000048168000000,0.000080563000000,0.000196316000000,0.000184070000000,0.000054489000000,0.000199477000000,0.000107032000000,0.000071082000000,0.000258736000000,0.000297848000000,0.000295872000000,0.000264267000000,0.015231959000000,0.000292712000000,0.013834627000000,0.000261106000000,0.000229897000000 +0.000146144000000,0.000266637000000,0.000045403000000,0.000081749000000,0.000197501000000,0.000172613000000,0.000054885000000,0.000131921000000,0.000142588000000,0.000069502000000,0.000295477000000,0.000272958000000,0.000257946000000,0.000303378000000,0.014738527000000,0.000261502000000,0.013884799000000,0.000262687000000,0.000234243000000 +0.000146934000000,0.000259921000000,0.000045798000000,0.000081749000000,0.000196316000000,0.000172218000000,0.000053699000000,0.000199872000000,0.000107032000000,0.000071082000000,0.000257946000000,0.000274538000000,0.000259132000000,0.000241354000000,0.015501786000000,0.000257946000000,0.016066723000000,0.000261106000000,0.000233452000000 +0.000180119000000,0.000260711000000,0.000045798000000,0.000117304000000,0.000195131000000,0.000174194000000,0.000070292000000,0.000134686000000,0.000109798000000,0.000069501000000,0.000257551000000,0.000305748000000,0.000257551000000,0.000228317000000,0.015375761000000,0.000306539000000,0.015133984000000,0.000262687000000,0.000235032000000 +0.000147724000000,0.000264267000000,0.000045798000000,0.000080958000000,0.000194737000000,0.000171033000000,0.000055280000000,0.000133501000000,0.000107033000000,0.000069897000000,0.000349995000000,0.000275724000000,0.000258737000000,0.000337748000000,0.015543662000000,0.000256366000000,0.014089047000000,0.000353946000000,0.000231477000000 +0.000148909000000,0.000333007000000,0.000047774000000,0.000081749000000,0.000196317000000,0.000171823000000,0.000053699000000,0.000130736000000,0.000109008000000,0.000069502000000,0.000259922000000,0.000260712000000,0.000333403000000,0.000281255000000,0.014633045000000,0.000278884000000,0.013985145000000,0.000263872000000,0.000267033000000 +0.000145354000000,0.000262687000000,0.000048169000000,0.000081749000000,0.000240958000000,0.000171033000000,0.000054490000000,0.000131132000000,0.000108218000000,0.000071477000000,0.000270193000000,0.000344070000000,0.000278490000000,0.000268613000000,0.014521243000000,0.000256366000000,0.016072650000000,0.000329848000000,0.000233452000000 +0.000147329000000,0.000425452000000,0.000046194000000,0.000080958000000,0.000195922000000,0.000194341000000,0.000054094000000,0.000130736000000,0.000121649000000,0.000114934000000,0.000282045000000,0.000258341000000,0.000261897000000,0.000276119000000,0.014930132000000,0.000259921000000,0.014497145000000,0.000263082000000,0.000232267000000 +0.000146539000000,0.000260317000000,0.000046588000000,0.000082143000000,0.000196712000000,0.000171823000000,0.000055280000000,0.000130736000000,0.000107822000000,0.000069897000000,0.000274143000000,0.000291131000000,0.000257156000000,0.000257156000000,0.014764602000000,0.000300613000000,0.013959861000000,0.000259921000000,0.000408069000000 +0.000146933000000,0.000316020000000,0.000045403000000,0.000084119000000,0.000196712000000,0.000171033000000,0.000054095000000,0.000135082000000,0.000107428000000,0.000069502000000,0.000288761000000,0.000261107000000,0.000260316000000,0.000234243000000,0.014763811000000,0.000258341000000,0.014070873000000,0.000263872000000,0.000232662000000 +0.000148119000000,0.000259131000000,0.000048169000000,0.000081354000000,0.000227526000000,0.000172613000000,0.000075823000000,0.000131131000000,0.000107823000000,0.000070292000000,0.000267427000000,0.000257156000000,0.000292712000000,0.000317600000000,0.014056651000000,0.000260317000000,0.013943664000000,0.000261897000000,0.000237798000000 +0.000146144000000,0.000295872000000,0.000047774000000,0.000082539000000,0.000197502000000,0.000173008000000,0.000066341000000,0.000200662000000,0.000109008000000,0.000071478000000,0.000259921000000,0.000297452000000,0.000255971000000,0.000257156000000,0.014188997000000,0.000257946000000,0.014370330000000,0.000267428000000,0.000232662000000 +0.000181700000000,0.000261502000000,0.000086094000000,0.000080168000000,0.000195131000000,0.000170637000000,0.000053700000000,0.000131526000000,0.000108613000000,0.000071082000000,0.000290341000000,0.000279674000000,0.000261107000000,0.000255576000000,0.014686379000000,0.000257156000000,0.014002922000000,0.000261897000000,0.000234242000000 +0.000147724000000,0.000261897000000,0.000048168000000,0.000080959000000,0.000229896000000,0.000172612000000,0.000053304000000,0.000132317000000,0.000107033000000,0.000072662000000,0.000277304000000,0.000272563000000,0.000378045000000,0.000298243000000,0.014521243000000,0.000292316000000,0.013759565000000,0.000313255000000,0.000234638000000 +0.000148119000000,0.000263082000000,0.000047774000000,0.000080563000000,0.000196712000000,0.000170637000000,0.000054095000000,0.000130737000000,0.000109798000000,0.000139427000000,0.000270984000000,0.000284416000000,0.000270193000000,0.000237008000000,0.014533491000000,0.000256366000000,0.014122232000000,0.000260317000000,0.000229107000000 +0.000145748000000,0.000257946000000,0.000048169000000,0.000080959000000,0.000196711000000,0.000170638000000,0.000054094000000,0.000152070000000,0.000107033000000,0.000071477000000,0.000295872000000,0.000270193000000,0.000257946000000,0.000261107000000,0.014650033000000,0.000259921000000,0.013821985000000,0.000262687000000,0.000235428000000 +0.000146144000000,0.000298637000000,0.000046193000000,0.000083724000000,0.000243724000000,0.000173403000000,0.000054884000000,0.000131526000000,0.000108612000000,0.000068712000000,0.000261107000000,0.000310094000000,0.000257946000000,0.000289946000000,0.014687564000000,0.000305749000000,0.013938923000000,0.000262292000000,0.000233057000000 +0.000146934000000,0.000259526000000,0.000050539000000,0.000080958000000,0.000291131000000,0.000170637000000,0.000054095000000,0.000131132000000,0.000146144000000,0.000072663000000,0.000257946000000,0.000272959000000,0.000256761000000,0.000283230000000,0.014659515000000,0.000259526000000,0.014382972000000,0.000262687000000,0.000227131000000 +0.000146934000000,0.000291922000000,0.000048169000000,0.000081748000000,0.000195922000000,0.000171032000000,0.000069501000000,0.000131921000000,0.000195921000000,0.000069897000000,0.000275724000000,0.000259527000000,0.000327872000000,0.000329847000000,0.015079070000000,0.000263477000000,0.013849244000000,0.000297452000000,0.000206983000000 +0.000146539000000,0.000261502000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000173403000000,0.000057254000000,0.000136662000000,0.000109008000000,0.000071082000000,0.000265057000000,0.000306934000000,0.000259131000000,0.000263477000000,0.014510182000000,0.000345255000000,0.014678478000000,0.000315230000000,0.000216465000000 +0.000146934000000,0.000260316000000,0.000046194000000,0.000080563000000,0.000280070000000,0.000171032000000,0.000055675000000,0.000202638000000,0.000107427000000,0.000071477000000,0.000257946000000,0.000268613000000,0.000256366000000,0.000231477000000,0.014127762000000,0.000259131000000,0.013924306000000,0.000584662000000,0.000221995000000 +0.000180514000000,0.000264267000000,0.000048169000000,0.000082144000000,0.000195526000000,0.000171033000000,0.000055280000000,0.000133502000000,0.000109798000000,0.000069897000000,0.000260711000000,0.000269798000000,0.000292711000000,0.000343675000000,0.014842823000000,0.000341699000000,0.013940108000000,0.000532119000000,0.000219625000000 +0.000146143000000,0.000261107000000,0.000048564000000,0.000116909000000,0.000195921000000,0.000207773000000,0.000054095000000,0.000132317000000,0.000122440000000,0.000069897000000,0.000260316000000,0.000299823000000,0.000260712000000,0.000245699000000,0.014894182000000,0.000255181000000,0.014028602000000,0.000276119000000,0.000218440000000 +0.000148514000000,0.000295477000000,0.000045798000000,0.000081353000000,0.000228711000000,0.000266637000000,0.000053699000000,0.000133107000000,0.000107032000000,0.000070292000000,0.000292317000000,0.000267428000000,0.000259921000000,0.000262687000000,0.014629885000000,0.000257946000000,0.013860701000000,0.000276119000000,0.000218835000000 +0.000149699000000,0.000259922000000,0.000048168000000,0.000081354000000,0.000195132000000,0.000185255000000,0.000054489000000,0.000131921000000,0.000107033000000,0.000071872000000,0.000259526000000,0.000341304000000,0.000257156000000,0.000265452000000,0.014106824000000,0.000273748000000,0.014105639000000,0.000277699000000,0.000218835000000 +0.000146933000000,0.000331823000000,0.000068712000000,0.000081748000000,0.000196317000000,0.000170243000000,0.000053304000000,0.000131527000000,0.000110588000000,0.000070292000000,0.000259921000000,0.000269403000000,0.000257551000000,0.000261897000000,0.014511367000000,0.000258737000000,0.014536256000000,0.000313255000000,0.000216070000000 +0.000160366000000,0.000258736000000,0.000047774000000,0.000080958000000,0.000195921000000,0.000170243000000,0.000054885000000,0.000131131000000,0.000167082000000,0.000069897000000,0.000292316000000,0.000269798000000,0.000299823000000,0.000287576000000,0.014136454000000,0.000340119000000,0.013948799000000,0.000276514000000,0.000216465000000 +0.000147329000000,0.000261501000000,0.000045403000000,0.000081748000000,0.000210538000000,0.000172612000000,0.000054094000000,0.000132317000000,0.000107032000000,0.000075427000000,0.000259526000000,0.000319180000000,0.000258342000000,0.000240959000000,0.014304750000000,0.000257946000000,0.014955416000000,0.000336959000000,0.000220020000000 +0.000146539000000,0.000258736000000,0.000045798000000,0.000081353000000,0.000194341000000,0.000172217000000,0.000053699000000,0.000131132000000,0.000110588000000,0.000070292000000,0.000260712000000,0.000280070000000,0.000256366000000,0.000259131000000,0.014931317000000,0.000278489000000,0.013968552000000,0.000262687000000,0.000208959000000 +0.000149304000000,0.000260711000000,0.000048168000000,0.000102292000000,0.000196316000000,0.000171823000000,0.000054095000000,0.000199082000000,0.000107822000000,0.000070292000000,0.000285600000000,0.000292711000000,0.000406489000000,0.000291131000000,0.014486873000000,0.000271378000000,0.014345046000000,0.000296267000000,0.000218045000000 +0.000228711000000,0.000324316000000,0.000048168000000,0.000094391000000,0.000278489000000,0.000170637000000,0.000053304000000,0.000134292000000,0.000106637000000,0.000071477000000,0.000259921000000,0.000314835000000,0.000264267000000,0.000263477000000,0.014211911000000,0.000269008000000,0.014263663000000,0.000258736000000,0.000223576000000 +0.000147724000000,0.000260712000000,0.000045798000000,0.000080959000000,0.000194341000000,0.000171032000000,0.000055280000000,0.000132317000000,0.000107823000000,0.000070687000000,0.000261106000000,0.000258736000000,0.000278884000000,0.000251230000000,0.014809243000000,0.000299822000000,0.014683614000000,0.000260316000000,0.000216070000000 +0.000147724000000,0.000304168000000,0.000047774000000,0.000080563000000,0.000195921000000,0.000170242000000,0.000054490000000,0.000132317000000,0.000107428000000,0.000070686000000,0.000257156000000,0.000290736000000,0.000259131000000,0.000340909000000,0.015282921000000,0.000269798000000,0.014047960000000,0.000261897000000,0.000216860000000 +0.000145748000000,0.000265847000000,0.000048168000000,0.000081354000000,0.000264267000000,0.000170638000000,0.000053699000000,0.000147724000000,0.000107823000000,0.000072268000000,0.000259527000000,0.000259132000000,0.000258736000000,0.000322342000000,0.014485688000000,0.000256366000000,0.014028997000000,0.000264267000000,0.000215675000000 +0.000146934000000,0.000301008000000,0.000045799000000,0.000083724000000,0.000195131000000,0.000172613000000,0.000056859000000,0.000133897000000,0.000130341000000,0.000071478000000,0.000307723000000,0.000261107000000,0.000292711000000,0.000310094000000,0.014228503000000,0.000329452000000,0.013809343000000,0.000292712000000,0.000218440000000 +0.000159576000000,0.000279674000000,0.000045798000000,0.000080169000000,0.000196317000000,0.000174193000000,0.000054094000000,0.000130736000000,0.000122045000000,0.000084119000000,0.000261502000000,0.000317996000000,0.000257551000000,0.000261106000000,0.014760651000000,0.000258341000000,0.014672552000000,0.000260317000000,0.000216069000000 +0.000146538000000,0.000360267000000,0.000047773000000,0.000081748000000,0.000195921000000,0.000170637000000,0.000053699000000,0.000131921000000,0.000107823000000,0.000071082000000,0.000261106000000,0.000269007000000,0.000255575000000,0.000266637000000,0.014151861000000,0.000256761000000,0.014235614000000,0.000398193000000,0.000216464000000 +0.000145748000000,0.000261106000000,0.000049749000000,0.000080564000000,0.000257946000000,0.000170638000000,0.000054095000000,0.000130342000000,0.000108613000000,0.000070292000000,0.000301798000000,0.000367773000000,0.000259922000000,0.000261896000000,0.014292503000000,0.000263082000000,0.013966577000000,0.000260711000000,0.000216859000000 +0.000147724000000,0.000262292000000,0.000045404000000,0.000081749000000,0.000195527000000,0.000170637000000,0.000056464000000,0.000202242000000,0.000110983000000,0.000069502000000,0.000270588000000,0.000301008000000,0.000265452000000,0.000262292000000,0.014703367000000,0.000257156000000,0.014694676000000,0.000332217000000,0.000218045000000 +0.000180119000000,0.000263082000000,0.000047774000000,0.000080563000000,0.000194737000000,0.000172612000000,0.000054094000000,0.000131526000000,0.000108613000000,0.000069897000000,0.000268613000000,0.000331823000000,0.000292317000000,0.000259131000000,0.014657935000000,0.000308909000000,0.013549788000000,0.000259921000000,0.000217255000000 +0.000145748000000,0.000299427000000,0.000045798000000,0.000080959000000,0.000265452000000,0.000171032000000,0.000054094000000,0.000131131000000,0.000107032000000,0.000069502000000,0.000280859000000,0.000272563000000,0.000256366000000,0.000295872000000,0.014117096000000,0.000259921000000,0.013738232000000,0.000303773000000,0.000219230000000 +0.000146538000000,0.000260317000000,0.000117305000000,0.000080958000000,0.000196316000000,0.000171032000000,0.000069106000000,0.000130341000000,0.000109798000000,0.000103477000000,0.000301403000000,0.000275329000000,0.000256366000000,0.000261107000000,0.014717985000000,0.000256366000000,0.014113540000000,0.000261897000000,0.000216069000000 +0.000146538000000,0.000260317000000,0.000045798000000,0.000080169000000,0.000195921000000,0.000172217000000,0.000055279000000,0.000131526000000,0.000124020000000,0.000069896000000,0.000304563000000,0.000354737000000,0.000274143000000,0.000243329000000,0.014446577000000,0.000542390000000,0.014402329000000,0.000262292000000,0.000217254000000 +0.000147329000000,0.000298243000000,0.000045798000000,0.000080563000000,0.000196316000000,0.000172612000000,0.000055674000000,0.000166292000000,0.000107032000000,0.000069897000000,0.000274144000000,0.000274934000000,0.000256761000000,0.000316810000000,0.014359663000000,0.000269798000000,0.014166873000000,0.000276909000000,0.000216860000000 +0.000227131000000,0.000259132000000,0.000045798000000,0.000080564000000,0.000222391000000,0.000170242000000,0.000053304000000,0.000130736000000,0.000108613000000,0.000069897000000,0.000260712000000,0.000270193000000,0.000276909000000,0.000261106000000,0.015150577000000,0.000298242000000,0.014043220000000,0.000265848000000,0.000218045000000 +0.000147329000000,0.000261107000000,0.000048169000000,0.000080958000000,0.000196316000000,0.000170243000000,0.000056465000000,0.000132316000000,0.000107428000000,0.000070687000000,0.000300218000000,0.000285600000000,0.000264267000000,0.000270983000000,0.014115516000000,0.000257156000000,0.014275121000000,0.000259922000000,0.000216465000000 +0.000146539000000,0.000270193000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000171823000000,0.000053304000000,0.000131922000000,0.000109008000000,0.000069107000000,0.000260316000000,0.000270193000000,0.000258736000000,0.000262291000000,0.014690725000000,0.000258341000000,0.014070083000000,0.000263082000000,0.000216465000000 +0.000146934000000,0.000269007000000,0.000081749000000,0.000083329000000,0.000525403000000,0.000173007000000,0.000054885000000,0.000136267000000,0.000141403000000,0.000071082000000,0.000336958000000,0.000353156000000,0.000295082000000,0.000243724000000,0.015058527000000,0.000271378000000,0.013753640000000,0.000698835000000,0.000217650000000 +0.000147724000000,0.000265057000000,0.000062391000000,0.000081353000000,0.000194736000000,0.000170637000000,0.000088070000000,0.000150885000000,0.000107032000000,0.000105057000000,0.000287181000000,0.000273748000000,0.000346835000000,0.000249255000000,0.014045984000000,0.000261502000000,0.014679663000000,0.000311675000000,0.000252415000000 +0.000147724000000,0.000266242000000,0.000047774000000,0.000082144000000,0.000229502000000,0.000174589000000,0.000054885000000,0.000134687000000,0.000109007000000,0.000069897000000,0.000317995000000,0.000270193000000,0.000259526000000,0.000263872000000,0.014832552000000,0.000294687000000,0.014086676000000,0.000262292000000,0.000210538000000 +0.000146539000000,0.000295872000000,0.000048564000000,0.000081354000000,0.000202242000000,0.000171823000000,0.000054094000000,0.000131526000000,0.000107032000000,0.000070687000000,0.000266638000000,0.000292712000000,0.000263872000000,0.000261502000000,0.014348996000000,0.000260317000000,0.014843219000000,0.000311279000000,0.000216860000000 +0.000146934000000,0.000259526000000,0.000047774000000,0.000081749000000,0.000195132000000,0.000172612000000,0.000056860000000,0.000133502000000,0.000107428000000,0.000105848000000,0.000259527000000,0.000270983000000,0.000257946000000,0.000294292000000,0.014805687000000,0.000257946000000,0.014570231000000,0.000265058000000,0.000217650000000 +0.000181304000000,0.000282835000000,0.000045798000000,0.000081354000000,0.000193551000000,0.000170638000000,0.000054094000000,0.000200268000000,0.000108613000000,0.000071082000000,0.000322736000000,0.000336564000000,0.000291921000000,0.000238588000000,0.014628700000000,0.000291131000000,0.013555319000000,0.000296663000000,0.000217254000000 +0.000146539000000,0.000293107000000,0.000046193000000,0.000080958000000,0.000240564000000,0.000171428000000,0.000054490000000,0.000131921000000,0.000108613000000,0.000072267000000,0.000258737000000,0.000274143000000,0.000258341000000,0.000266242000000,0.014212701000000,0.000256366000000,0.013680157000000,0.000259526000000,0.000216070000000 +0.000147329000000,0.000299823000000,0.000047773000000,0.000081749000000,0.000195921000000,0.000171033000000,0.000053699000000,0.000131526000000,0.000112169000000,0.000071477000000,0.000262292000000,0.000258736000000,0.000258737000000,0.000341700000000,0.015837588000000,0.000259921000000,0.014324108000000,0.000261502000000,0.000216465000000 +0.000146934000000,0.000262292000000,0.000087279000000,0.000080958000000,0.000201453000000,0.000173008000000,0.000056860000000,0.000130737000000,0.000108613000000,0.000220020000000,0.000298638000000,0.000345650000000,0.000290737000000,0.000265847000000,0.014889046000000,0.000272168000000,0.014554429000000,0.000258341000000,0.000216069000000 +0.000146934000000,0.000263082000000,0.000045798000000,0.000081749000000,0.000230687000000,0.000169847000000,0.000053304000000,0.000130341000000,0.000109008000000,0.000101107000000,0.000257946000000,0.000270193000000,0.000259921000000,0.000262687000000,0.014336355000000,0.000258342000000,0.013720454000000,0.000259921000000,0.000219230000000 +0.000176169000000,0.000258736000000,0.000048169000000,0.000081354000000,0.000196316000000,0.000171427000000,0.000054094000000,0.000194342000000,0.000108218000000,0.000084514000000,0.000258342000000,0.000309304000000,0.000256761000000,0.000247674000000,0.014570231000000,0.000255180000000,0.013963812000000,0.000295872000000,0.000220020000000 +0.000148514000000,0.000264662000000,0.000045403000000,0.000081354000000,0.000195922000000,0.000169847000000,0.000054490000000,0.000131921000000,0.000142193000000,0.000069502000000,0.000263082000000,0.000271378000000,0.000415971000000,0.000257156000000,0.014381787000000,0.000255181000000,0.015363909000000,0.000266243000000,0.000221205000000 +0.000147329000000,0.000329057000000,0.000046193000000,0.000081749000000,0.000197107000000,0.000174194000000,0.000054094000000,0.000131526000000,0.000107823000000,0.000071872000000,0.000257551000000,0.000263872000000,0.000259526000000,0.000257156000000,0.014438676000000,0.000257156000000,0.014438280000000,0.000278489000000,0.000216859000000 +0.000146934000000,0.000259527000000,0.000051329000000,0.000084119000000,0.000242143000000,0.000171822000000,0.000052909000000,0.000131921000000,0.000110588000000,0.000140218000000,0.000289156000000,0.000370934000000,0.000289946000000,0.000227131000000,0.014625144000000,0.000292712000000,0.014060997000000,0.000278489000000,0.000216859000000 +0.000159181000000,0.000310094000000,0.000045403000000,0.000080959000000,0.000196712000000,0.000173008000000,0.000055280000000,0.000152070000000,0.000109798000000,0.000069897000000,0.000269403000000,0.000274144000000,0.000261502000000,0.000258341000000,0.014739317000000,0.000257551000000,0.014480157000000,0.000328267000000,0.000217255000000 +0.000146143000000,0.000258736000000,0.000045798000000,0.000080959000000,0.000196316000000,0.000170637000000,0.000053305000000,0.000143773000000,0.000107033000000,0.000070291000000,0.000279279000000,0.000348810000000,0.000257551000000,0.000237798000000,0.014482132000000,0.000257156000000,0.013617738000000,0.000274143000000,0.000216070000000 +0.000146934000000,0.000285205000000,0.000063576000000,0.000081748000000,0.000229106000000,0.000206193000000,0.000054094000000,0.000129947000000,0.000141008000000,0.000071872000000,0.000346440000000,0.000278885000000,0.000273748000000,0.000260711000000,0.015334675000000,0.000333797000000,0.014218626000000,0.000279280000000,0.000217650000000 +0.000145749000000,0.000262687000000,0.000047773000000,0.000081354000000,0.000195131000000,0.000169847000000,0.000054094000000,0.000131131000000,0.000107428000000,0.000069502000000,0.000269798000000,0.000321946000000,0.000259526000000,0.000263477000000,0.014515318000000,0.000259131000000,0.014493985000000,0.000275724000000,0.000218045000000 +0.000180514000000,0.000259921000000,0.000048168000000,0.000079773000000,0.000194737000000,0.000171033000000,0.000054490000000,0.000131526000000,0.000109798000000,0.000069897000000,0.000270193000000,0.000326687000000,0.000303378000000,0.000301008000000,0.014653984000000,0.000290341000000,0.013574281000000,0.000278094000000,0.000220020000000 +0.000146538000000,0.000340514000000,0.000045798000000,0.000081748000000,0.000196316000000,0.000170637000000,0.000054489000000,0.000214885000000,0.000107033000000,0.000075823000000,0.000337749000000,0.000363033000000,0.000262687000000,0.000267428000000,0.016110576000000,0.000257947000000,0.013885985000000,0.000280069000000,0.000217649000000 +0.000146144000000,0.000261106000000,0.000045798000000,0.000094786000000,0.000228711000000,0.000173403000000,0.000053700000000,0.000132712000000,0.000108217000000,0.000099132000000,0.000269798000000,0.000354341000000,0.000261897000000,0.000244514000000,0.015667317000000,0.000261897000000,0.014063762000000,0.000274538000000,0.000227921000000 +0.000145749000000,0.000295477000000,0.000045798000000,0.000080563000000,0.000195921000000,0.000171823000000,0.000055279000000,0.000131921000000,0.000107427000000,0.000071477000000,0.000306934000000,0.000265848000000,0.000328267000000,0.000311280000000,0.015127268000000,0.000362242000000,0.014561145000000,0.000277699000000,0.000217650000000 +0.000145749000000,0.000262687000000,0.000045798000000,0.000081748000000,0.000195922000000,0.000170242000000,0.000053699000000,0.000131922000000,0.000123625000000,0.000072267000000,0.000268613000000,0.000269798000000,0.000256366000000,0.000268613000000,0.015777539000000,0.000261502000000,0.014314231000000,0.000276118000000,0.000218835000000 +0.000191970000000,0.000329057000000,0.000048563000000,0.000082143000000,0.000240959000000,0.000169848000000,0.000088860000000,0.000209749000000,0.000108613000000,0.000070687000000,0.000269403000000,0.000291131000000,0.000255576000000,0.000276909000000,0.014704552000000,0.000258736000000,0.014345836000000,0.000280465000000,0.000217649000000 +0.000146934000000,0.000342885000000,0.000048563000000,0.000081354000000,0.000196317000000,0.000173008000000,0.000054884000000,0.000235428000000,0.000110193000000,0.000071477000000,0.000312860000000,0.000271378000000,0.000259526000000,0.000231872000000,0.014844798000000,0.000256761000000,0.015924107000000,0.000281650000000,0.000218440000000 +0.000147329000000,0.000303378000000,0.000045403000000,0.000080959000000,0.000194341000000,0.000171428000000,0.000053700000000,0.000144958000000,0.000108218000000,0.000071873000000,0.000270983000000,0.000307724000000,0.000257551000000,0.000250045000000,0.015340206000000,0.000259131000000,0.014004108000000,0.000291922000000,0.000217650000000 +0.000147329000000,0.000265057000000,0.000048168000000,0.000083724000000,0.000194342000000,0.000170638000000,0.000052909000000,0.000131921000000,0.000107033000000,0.000139823000000,0.000259132000000,0.000272959000000,0.000327081000000,0.000265847000000,0.014344651000000,0.000296267000000,0.015717095000000,0.000278885000000,0.000215675000000 +0.000236218000000,0.000260317000000,0.000048564000000,0.000080563000000,0.000228317000000,0.000171428000000,0.000054095000000,0.000181304000000,0.000143378000000,0.000069106000000,0.000292712000000,0.000270588000000,0.000259527000000,0.000272168000000,0.014706527000000,0.000260317000000,0.014995713000000,0.000278490000000,0.000339329000000 +0.000167082000000,0.000261502000000,0.000047773000000,0.000081353000000,0.000195131000000,0.000171823000000,0.000052909000000,0.000131526000000,0.000107428000000,0.000071477000000,0.000259527000000,0.000664860000000,0.000256366000000,0.000274144000000,0.015135169000000,0.000257946000000,0.013970133000000,0.000280070000000,0.000216070000000 +0.000148119000000,0.000261502000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000308119000000,0.000056464000000,0.000133896000000,0.000108613000000,0.000071872000000,0.000257551000000,0.000293897000000,0.000295477000000,0.000341699000000,0.014250232000000,0.000289946000000,0.014344256000000,0.000279675000000,0.000216070000000 +0.000148119000000,0.000312465000000,0.000045798000000,0.000080959000000,0.000237007000000,0.000172217000000,0.000054885000000,0.000131527000000,0.000108218000000,0.000071477000000,0.000277304000000,0.000268613000000,0.000257946000000,0.000284811000000,0.014470281000000,0.000257551000000,0.014364009000000,0.000280070000000,0.000279674000000 +0.000215675000000,0.000262292000000,0.000062786000000,0.000081354000000,0.000195132000000,0.000169848000000,0.000106637000000,0.000151675000000,0.000107823000000,0.000076218000000,0.000276514000000,0.000279675000000,0.000335379000000,0.000274934000000,0.014541392000000,0.000329847000000,0.013897837000000,0.000277699000000,0.000217255000000 +0.000147329000000,0.000314045000000,0.000048168000000,0.000080959000000,0.000196316000000,0.000173798000000,0.000056070000000,0.000144169000000,0.000109403000000,0.000070687000000,0.000492613000000,0.000312465000000,0.000458243000000,0.000284020000000,0.014668996000000,0.000261502000000,0.014257343000000,0.000280464000000,0.000217650000000 +0.000145748000000,0.000278884000000,0.000048168000000,0.000130341000000,0.000197106000000,0.000172612000000,0.000053699000000,0.000131527000000,0.000107427000000,0.000069502000000,0.000259921000000,0.000270984000000,0.000294686000000,0.000263872000000,0.014697836000000,0.000257551000000,0.014320157000000,0.000275329000000,0.000273749000000 +0.000146933000000,0.000342094000000,0.000045798000000,0.000080959000000,0.000278489000000,0.000171823000000,0.000054094000000,0.000131922000000,0.000107427000000,0.000071082000000,0.000299032000000,0.000279674000000,0.000258342000000,0.000262687000000,0.014726281000000,0.000294292000000,0.013754034000000,0.000296267000000,0.000218045000000 +0.000147329000000,0.000260316000000,0.000045798000000,0.000081354000000,0.000194341000000,0.000170638000000,0.000052909000000,0.000131921000000,0.000107427000000,0.000070292000000,0.000261107000000,0.000317601000000,0.000348810000000,0.000208563000000,0.014369935000000,0.000259131000000,0.013859911000000,0.000260316000000,0.000218045000000 +0.000147329000000,0.000264663000000,0.000048169000000,0.000081353000000,0.000196712000000,0.000175378000000,0.000053304000000,0.000144958000000,0.000109008000000,0.000070292000000,0.000256760000000,0.000269008000000,0.000258341000000,0.000281649000000,0.014349392000000,0.000261896000000,0.014108009000000,0.000259921000000,0.000220020000000 +0.000147724000000,0.000261502000000,0.000047774000000,0.000082144000000,0.000216069000000,0.000170638000000,0.000053700000000,0.000130736000000,0.000106637000000,0.000071872000000,0.000359082000000,0.000269798000000,0.000259132000000,0.000323526000000,0.014540206000000,0.000255576000000,0.014727070000000,0.000264662000000,0.000217255000000 +0.000146144000000,0.000262686000000,0.000070687000000,0.000082144000000,0.000195131000000,0.000170638000000,0.000054489000000,0.000131527000000,0.000141007000000,0.000073452000000,0.000263082000000,0.000272168000000,0.000299033000000,0.000270589000000,0.014808848000000,0.000260317000000,0.013803022000000,0.000260711000000,0.000216465000000 +0.000146934000000,0.000278884000000,0.000048168000000,0.000116514000000,0.000196711000000,0.000173008000000,0.000073058000000,0.000131132000000,0.000108613000000,0.000160761000000,0.000262687000000,0.000278489000000,0.000258736000000,0.000264267000000,0.014171219000000,0.000300217000000,0.014089441000000,0.000350391000000,0.000239774000000 +0.000179724000000,0.000262292000000,0.000047774000000,0.000080169000000,0.000194737000000,0.000182884000000,0.000104267000000,0.000131921000000,0.000107033000000,0.000069502000000,0.000257156000000,0.000301008000000,0.000260712000000,0.000290341000000,0.014799762000000,0.000258341000000,0.014152256000000,0.000261897000000,0.000221206000000 +0.000147724000000,0.000299033000000,0.000048959000000,0.000080959000000,0.000229502000000,0.000170638000000,0.000060020000000,0.000133502000000,0.000106638000000,0.000073453000000,0.000257156000000,0.000268613000000,0.000327477000000,0.000229501000000,0.014432354000000,0.000261897000000,0.014196503000000,0.000294292000000,0.000220416000000 +0.000146144000000,0.000261897000000,0.000048168000000,0.000081353000000,0.000195527000000,0.000170637000000,0.000056464000000,0.000130736000000,0.000107427000000,0.000073847000000,0.000297847000000,0.000269008000000,0.000264662000000,0.000280465000000,0.014315812000000,0.000305749000000,0.013932206000000,0.000262292000000,0.000217255000000 +0.000147329000000,0.000334193000000,0.000045403000000,0.000081749000000,0.000196712000000,0.000171822000000,0.000054094000000,0.000131921000000,0.000142588000000,0.000070292000000,0.000257946000000,0.000302193000000,0.000256366000000,0.000304564000000,0.014429589000000,0.000260316000000,0.014150281000000,0.000280465000000,0.000216859000000 +0.000146539000000,0.000259526000000,0.000051329000000,0.000080959000000,0.000195527000000,0.000172613000000,0.000088860000000,0.000131526000000,0.000109008000000,0.000069897000000,0.000259131000000,0.000274143000000,0.000257946000000,0.000310885000000,0.014918280000000,0.000258736000000,0.013652898000000,0.000278094000000,0.000237403000000 +0.000146934000000,0.000259921000000,0.000064761000000,0.000080168000000,0.000210538000000,0.000171823000000,0.000054489000000,0.000186835000000,0.000109403000000,0.000069897000000,0.000293896000000,0.000272563000000,0.000256761000000,0.000260317000000,0.014555614000000,0.000261896000000,0.013892306000000,0.000259922000000,0.000216070000000 +0.000146539000000,0.000261502000000,0.000048563000000,0.000080959000000,0.000198687000000,0.000171823000000,0.000054884000000,0.000146538000000,0.000107033000000,0.000071082000000,0.000259921000000,0.000267428000000,0.000341699000000,0.000288761000000,0.014197688000000,0.000258736000000,0.014091812000000,0.000261501000000,0.000216464000000 +0.000145353000000,0.000263872000000,0.000046193000000,0.000080958000000,0.000195131000000,0.000171428000000,0.000054094000000,0.000130736000000,0.000106638000000,0.000070292000000,0.000268218000000,0.000270193000000,0.000255576000000,0.000237403000000,0.014379022000000,0.000348415000000,0.013920750000000,0.000264267000000,0.000216860000000 +0.000146539000000,0.000398193000000,0.000048169000000,0.000080959000000,0.000282835000000,0.000171823000000,0.000054489000000,0.000131527000000,0.000107427000000,0.000069897000000,0.000337749000000,0.000304169000000,0.000257946000000,0.000280465000000,0.015040749000000,0.000277699000000,0.013767071000000,0.000293896000000,0.000217255000000 +0.000180909000000,0.000269798000000,0.000047773000000,0.000080169000000,0.000194736000000,0.000171822000000,0.000054094000000,0.000131921000000,0.000120860000000,0.000071872000000,0.000259526000000,0.000269798000000,0.000292711000000,0.000277699000000,0.014379811000000,0.000260712000000,0.013996602000000,0.000259527000000,0.000219230000000 +0.000146144000000,0.000346045000000,0.000045403000000,0.000080563000000,0.000194737000000,0.000171427000000,0.000054095000000,0.000149699000000,0.000114143000000,0.000071477000000,0.000258342000000,0.000270193000000,0.000267823000000,0.000269798000000,0.015216157000000,0.000263082000000,0.013967368000000,0.000293502000000,0.000216465000000 +0.000146143000000,0.000261107000000,0.000045798000000,0.000080958000000,0.000230687000000,0.000171033000000,0.000054095000000,0.000131131000000,0.000107032000000,0.000070292000000,0.000258342000000,0.000376070000000,0.000261502000000,0.000306539000000,0.014458033000000,0.000312465000000,0.013835812000000,0.000265058000000,0.000218440000000 +0.000147724000000,0.000347625000000,0.000046193000000,0.000082144000000,0.000195132000000,0.000171033000000,0.000100712000000,0.000130342000000,0.000108613000000,0.000091230000000,0.000263082000000,0.000257156000000,0.000255971000000,0.000233057000000,0.014268009000000,0.000290736000000,0.014201244000000,0.000267823000000,0.000268218000000 +0.000147329000000,0.000258736000000,0.000097156000000,0.000081353000000,0.000195132000000,0.000171823000000,0.000056070000000,0.000131131000000,0.000108613000000,0.000070292000000,0.000313255000000,0.000257551000000,0.000259131000000,0.000264662000000,0.014871268000000,0.000255971000000,0.014299614000000,0.000260712000000,0.000219230000000 +0.000146539000000,0.000293897000000,0.000045799000000,0.000081748000000,0.000194736000000,0.000170242000000,0.000054885000000,0.000135477000000,0.000141008000000,0.000071872000000,0.000274538000000,0.000308119000000,0.000291921000000,0.000299428000000,0.014491614000000,0.000261502000000,0.014000947000000,0.000266242000000,0.000216860000000 +0.000146144000000,0.000259131000000,0.000045403000000,0.000080959000000,0.000279279000000,0.000171428000000,0.000053699000000,0.000131131000000,0.000109403000000,0.000069502000000,0.000263082000000,0.000275329000000,0.000261897000000,0.000241749000000,0.014909194000000,0.000311280000000,0.014305540000000,0.000274933000000,0.000217650000000 +0.000146538000000,0.000259921000000,0.000045798000000,0.000082144000000,0.000194736000000,0.000170638000000,0.000055674000000,0.000131527000000,0.000109008000000,0.000071477000000,0.000291131000000,0.000295081000000,0.000258736000000,0.000273749000000,0.014960552000000,0.000258736000000,0.014239564000000,0.000259921000000,0.000216070000000 +0.000146539000000,0.000263477000000,0.000045404000000,0.000080959000000,0.000194342000000,0.000295872000000,0.000056860000000,0.000141008000000,0.000108613000000,0.000071872000000,0.000257156000000,0.000259527000000,0.000301403000000,0.000353946000000,0.015235119000000,0.000289946000000,0.013944849000000,0.000293897000000,0.000218440000000 +0.000180909000000,0.000265847000000,0.000045798000000,0.000116514000000,0.000230292000000,0.000185254000000,0.000055280000000,0.000131921000000,0.000128366000000,0.000071082000000,0.000262686000000,0.000260712000000,0.000257551000000,0.000236218000000,0.015128453000000,0.000260316000000,0.014228898000000,0.000310094000000,0.000216465000000 +0.000147329000000,0.000265848000000,0.000045798000000,0.000116119000000,0.000196712000000,0.000172613000000,0.000056465000000,0.000179724000000,0.000163526000000,0.000100317000000,0.000342094000000,0.000302588000000,0.000256366000000,0.000257551000000,0.014264849000000,0.000261107000000,0.014160552000000,0.000307329000000,0.000236218000000 +0.000148119000000,0.000259526000000,0.000052119000000,0.000080563000000,0.000242144000000,0.000171033000000,0.000056070000000,0.000130736000000,0.000111378000000,0.000071477000000,0.000262687000000,0.000273748000000,0.000260712000000,0.000243329000000,0.014535861000000,0.000301403000000,0.013998182000000,0.000261896000000,0.000217254000000 +0.000147329000000,0.000290341000000,0.000050539000000,0.000081354000000,0.000196316000000,0.000170637000000,0.000056069000000,0.000131921000000,0.000107033000000,0.000070292000000,0.000261107000000,0.000268218000000,0.000258736000000,0.000263872000000,0.014415762000000,0.000259131000000,0.014151861000000,0.000258737000000,0.000217254000000 +0.000147328000000,0.000262292000000,0.000045798000000,0.000081353000000,0.000228316000000,0.000173008000000,0.000069502000000,0.000130736000000,0.000106637000000,0.000071477000000,0.000276119000000,0.000304169000000,0.000291131000000,0.000304168000000,0.014780008000000,0.000255971000000,0.013856750000000,0.000274934000000,0.000217650000000 +0.000161156000000,0.000352761000000,0.000047773000000,0.000082143000000,0.000196317000000,0.000171427000000,0.000054095000000,0.000132317000000,0.000109403000000,0.000070292000000,0.000264662000000,0.000272564000000,0.000265057000000,0.000263082000000,0.014723120000000,0.000328662000000,0.014227713000000,0.000262687000000,0.000217255000000 +0.000146934000000,0.000261897000000,0.000045798000000,0.000083329000000,0.000195132000000,0.000170242000000,0.000053699000000,0.000148514000000,0.000143773000000,0.000072268000000,0.000331823000000,0.000270983000000,0.000266243000000,0.000234637000000,0.014485293000000,0.000256761000000,0.014237194000000,0.000302983000000,0.000215675000000 +0.000146934000000,0.000407280000000,0.000046984000000,0.000082144000000,0.000216465000000,0.000171427000000,0.000054095000000,0.000131922000000,0.000106638000000,0.000130736000000,0.000261501000000,0.000272959000000,0.000293896000000,0.000285600000000,0.014592750000000,0.000278094000000,0.013898232000000,0.000262292000000,0.000252811000000 +0.000149304000000,0.000306933000000,0.000045798000000,0.000080168000000,0.000194736000000,0.000171428000000,0.000054490000000,0.000134687000000,0.000107033000000,0.000070292000000,0.000259131000000,0.000277304000000,0.000256761000000,0.000257946000000,0.015309786000000,0.000257947000000,0.014066133000000,0.000331428000000,0.000330243000000 +0.000188810000000,0.000261106000000,0.000046193000000,0.000081749000000,0.000196317000000,0.000171823000000,0.000054490000000,0.000133897000000,0.000106637000000,0.000069896000000,0.000293106000000,0.000306934000000,0.000255971000000,0.000264662000000,0.014148700000000,0.000257946000000,0.013877688000000,0.000260317000000,0.000218440000000 +0.000146933000000,0.000261896000000,0.000066736000000,0.000080958000000,0.000196317000000,0.000170243000000,0.000054095000000,0.000151675000000,0.000108613000000,0.000071872000000,0.000260317000000,0.000277699000000,0.000293897000000,0.000308909000000,0.014329244000000,0.000311280000000,0.014432750000000,0.000259131000000,0.000218440000000 +0.000162736000000,0.000293896000000,0.000146934000000,0.000080959000000,0.000296267000000,0.000172218000000,0.000053305000000,0.000132316000000,0.000108218000000,0.000071477000000,0.000259527000000,0.000271773000000,0.000266638000000,0.000229107000000,0.014371910000000,0.000256366000000,0.014201639000000,0.000260316000000,0.000216464000000 +0.000147329000000,0.000263082000000,0.000129156000000,0.000131526000000,0.000219230000000,0.000171033000000,0.000054885000000,0.000130736000000,0.000121650000000,0.000073057000000,0.000598489000000,0.000310490000000,0.000348020000000,0.000242539000000,0.014454083000000,0.000259921000000,0.014287763000000,0.000259921000000,0.000217255000000 +0.000147724000000,0.000295476000000,0.000048169000000,0.000186045000000,0.000194736000000,0.000170637000000,0.000054094000000,0.000130342000000,0.000107428000000,0.000070291000000,0.000292317000000,0.000275724000000,0.000258736000000,0.000387131000000,0.014625540000000,0.000328267000000,0.014212305000000,0.000295082000000,0.000217650000000 +0.000226341000000,0.000260712000000,0.000048563000000,0.000098736000000,0.000229501000000,0.000171032000000,0.000054094000000,0.000132317000000,0.000107032000000,0.000070292000000,0.000312070000000,0.000274143000000,0.000267428000000,0.000259922000000,0.014707712000000,0.000258736000000,0.013847664000000,0.000262687000000,0.000217255000000 +0.000146539000000,0.000261107000000,0.000045403000000,0.000081354000000,0.000195131000000,0.000186045000000,0.000054884000000,0.000200267000000,0.000107428000000,0.000071082000000,0.000261107000000,0.000271378000000,0.000662489000000,0.000297057000000,0.015140305000000,0.000277700000000,0.014141589000000,0.000294292000000,0.000216465000000 +0.000146144000000,0.000259131000000,0.000081749000000,0.000116909000000,0.000195131000000,0.000173008000000,0.000054884000000,0.000130341000000,0.000107428000000,0.000071082000000,0.000291131000000,0.000273353000000,0.000312860000000,0.000300218000000,0.014989786000000,0.000255970000000,0.013961442000000,0.000261897000000,0.000220020000000 +0.000146934000000,0.000259921000000,0.000065551000000,0.000081749000000,0.000194736000000,0.000172613000000,0.000055674000000,0.000130342000000,0.000127971000000,0.000070687000000,0.000259922000000,0.000305748000000,0.000257946000000,0.000217255000000,0.015429095000000,0.000259526000000,0.014034922000000,0.000259922000000,0.000219230000000 +0.000160366000000,0.000306933000000,0.000048169000000,0.000082144000000,0.000196317000000,0.000170638000000,0.000054885000000,0.000133897000000,0.000131922000000,0.000071082000000,0.000259132000000,0.000270983000000,0.000259526000000,0.000303378000000,0.014522033000000,0.000292712000000,0.014051515000000,0.000261896000000,0.000218045000000 +0.000147329000000,0.000260711000000,0.000047774000000,0.000081749000000,0.000194736000000,0.000170638000000,0.000056070000000,0.000133106000000,0.000106638000000,0.000071477000000,0.000260316000000,0.000271378000000,0.000331032000000,0.000264662000000,0.014307516000000,0.000259526000000,0.014071269000000,0.000263872000000,0.000216070000000 +0.000148119000000,0.000263872000000,0.000045799000000,0.000081354000000,0.000194737000000,0.000170638000000,0.000054884000000,0.000144168000000,0.000107823000000,0.000107428000000,0.000257156000000,0.000305353000000,0.000259527000000,0.000263872000000,0.014919465000000,0.000258737000000,0.013992256000000,0.000260712000000,0.000220020000000 +0.000146539000000,0.000259526000000,0.000049749000000,0.000080959000000,0.000231082000000,0.000171032000000,0.000054489000000,0.000131922000000,0.000107032000000,0.000071082000000,0.000296662000000,0.000267823000000,0.000257551000000,0.000261107000000,0.014892602000000,0.000566094000000,0.014399960000000,0.000262687000000,0.000217255000000 +0.000231081000000,0.000261502000000,0.000066736000000,0.000080958000000,0.000194342000000,0.000171823000000,0.000052909000000,0.000131922000000,0.000142589000000,0.000070687000000,0.000257156000000,0.000271773000000,0.000274539000000,0.000305749000000,0.014450132000000,0.000258341000000,0.013548207000000,0.000304564000000,0.000216860000000 +0.000148119000000,0.000263082000000,0.000045403000000,0.000080563000000,0.000194737000000,0.000257551000000,0.000069106000000,0.000131131000000,0.000107032000000,0.000069502000000,0.000266638000000,0.000304168000000,0.000261106000000,0.000261897000000,0.014375466000000,0.000342884000000,0.015119367000000,0.000263872000000,0.000303378000000 +0.000146933000000,0.000279279000000,0.000047774000000,0.000082144000000,0.000198687000000,0.000221205000000,0.000055280000000,0.000168662000000,0.000109798000000,0.000071082000000,0.000301008000000,0.000270193000000,0.000328662000000,0.000269403000000,0.015115020000000,0.000258341000000,0.014089837000000,0.000294687000000,0.000219625000000 +0.000146538000000,0.000286390000000,0.000048169000000,0.000080958000000,0.000194341000000,0.000171033000000,0.000053700000000,0.000132712000000,0.000107428000000,0.000069896000000,0.000264662000000,0.000315625000000,0.000258341000000,0.000263477000000,0.014594725000000,0.000326291000000,0.014031367000000,0.000260317000000,0.000218440000000 +0.000180909000000,0.000277304000000,0.000047773000000,0.000080959000000,0.000196317000000,0.000171032000000,0.000055675000000,0.000131131000000,0.000109403000000,0.000071477000000,0.000257156000000,0.000270983000000,0.000262292000000,0.000411230000000,0.014974774000000,0.000256761000000,0.014227713000000,0.000261106000000,0.000217254000000 +0.000147724000000,0.000284415000000,0.000045798000000,0.000080959000000,0.000194341000000,0.000171032000000,0.000053699000000,0.000132711000000,0.000107032000000,0.000140613000000,0.000330242000000,0.000314835000000,0.000272168000000,0.000240959000000,0.015274230000000,0.000296267000000,0.013928256000000,0.000263477000000,0.000218045000000 +0.000146539000000,0.000276119000000,0.000045798000000,0.000082539000000,0.000242539000000,0.000170637000000,0.000053305000000,0.000131131000000,0.000145353000000,0.000071872000000,0.000257551000000,0.000323526000000,0.000265452000000,0.000248070000000,0.014487268000000,0.000327476000000,0.014110774000000,0.000258737000000,0.000217650000000 +0.000146934000000,0.000298243000000,0.000045798000000,0.000082934000000,0.000195132000000,0.000172217000000,0.000053699000000,0.000129946000000,0.000109403000000,0.000069502000000,0.000257946000000,0.000273353000000,0.000259526000000,0.000269798000000,0.016651414000000,0.000259527000000,0.013908503000000,0.000333798000000,0.000267428000000 +0.000148119000000,0.000276119000000,0.000084909000000,0.000080959000000,0.000196317000000,0.000180119000000,0.000054490000000,0.000133897000000,0.000108613000000,0.000069897000000,0.000261897000000,0.000361847000000,0.000259131000000,0.000267427000000,0.015420403000000,0.000277304000000,0.013776948000000,0.000258736000000,0.000217255000000 +0.000227526000000,0.000312465000000,0.000045798000000,0.000080959000000,0.000229107000000,0.000170637000000,0.000053699000000,0.000133502000000,0.000108613000000,0.000069897000000,0.000261502000000,0.000264662000000,0.000261106000000,0.000345254000000,0.014682824000000,0.000258736000000,0.014416947000000,0.000389502000000,0.000219230000000 +0.000147328000000,0.000278490000000,0.000049748000000,0.000081353000000,0.000195921000000,0.000171032000000,0.000058835000000,0.000131526000000,0.000142193000000,0.000106242000000,0.000295477000000,0.000293502000000,0.000293897000000,0.000242143000000,0.015906328000000,0.000261106000000,0.013769442000000,0.000265453000000,0.000218440000000 +0.000146934000000,0.000344070000000,0.000047774000000,0.000081354000000,0.000194736000000,0.000172613000000,0.000056070000000,0.000180909000000,0.000108613000000,0.000071082000000,0.000258342000000,0.000264662000000,0.000257946000000,0.000270588000000,0.015365884000000,0.000327477000000,0.013970527000000,0.000346835000000,0.000220020000000 +0.000146934000000,0.000276119000000,0.000046983000000,0.000080959000000,0.000194737000000,0.000170638000000,0.000054885000000,0.000130736000000,0.000108218000000,0.000084119000000,0.000259526000000,0.000266637000000,0.000258737000000,0.000320366000000,0.015111070000000,0.000259132000000,0.014234824000000,0.000263082000000,0.000216069000000 +0.000180514000000,0.000314045000000,0.000045798000000,0.000082143000000,0.000229502000000,0.000170637000000,0.000053700000000,0.000129946000000,0.000108613000000,0.000070687000000,0.000345650000000,0.000310489000000,0.000292316000000,0.000267032000000,0.014212701000000,0.000256366000000,0.013633146000000,0.000340909000000,0.000218440000000 +0.000147329000000,0.000276909000000,0.000045403000000,0.000083329000000,0.000193946000000,0.000171823000000,0.000054094000000,0.000131527000000,0.000107428000000,0.000071082000000,0.000260712000000,0.000269403000000,0.000256761000000,0.000271773000000,0.014770527000000,0.000329847000000,0.017223859000000,0.000260712000000,0.000220415000000 +0.000146539000000,0.000307724000000,0.000047773000000,0.000080564000000,0.000196711000000,0.000171428000000,0.000056070000000,0.000131526000000,0.000110588000000,0.000069502000000,0.000306143000000,0.000271379000000,0.000259131000000,0.000257551000000,0.014929737000000,0.000307329000000,0.015237490000000,0.000264267000000,0.000217255000000 +0.000146539000000,0.000276119000000,0.000082144000000,0.000081749000000,0.000195131000000,0.000170638000000,0.000055280000000,0.000166292000000,0.000122045000000,0.000071082000000,0.000294292000000,0.000296662000000,0.000299823000000,0.000267032000000,0.014362034000000,0.000325897000000,0.014437096000000,0.000262687000000,0.000216859000000 +0.000146143000000,0.000276118000000,0.000045798000000,0.000080958000000,0.000212119000000,0.000169847000000,0.000054094000000,0.000131922000000,0.000108613000000,0.000069897000000,0.000265453000000,0.000271773000000,0.000256761000000,0.000361452000000,0.015247367000000,0.000257156000000,0.014247466000000,0.000263476000000,0.000216465000000 +0.000210144000000,0.000278094000000,0.000045798000000,0.000081354000000,0.000194342000000,0.000171033000000,0.000054094000000,0.000130736000000,0.000107428000000,0.000071477000000,0.000261897000000,0.000301798000000,0.000275329000000,0.000231477000000,0.014089442000000,0.000260712000000,0.015145045000000,0.000329452000000,0.000217255000000 +0.000146144000000,0.000276119000000,0.000045798000000,0.000081354000000,0.000195526000000,0.000172613000000,0.000060020000000,0.000133106000000,0.000107033000000,0.000073058000000,0.000259131000000,0.000275724000000,0.000261896000000,0.000258736000000,0.014464355000000,0.000333403000000,0.015821390000000,0.000259527000000,0.000215675000000 +0.000147329000000,0.000274143000000,0.000045403000000,0.000080958000000,0.000284415000000,0.000170638000000,0.000053305000000,0.000134687000000,0.000128761000000,0.000070291000000,0.000257156000000,0.000270193000000,0.000257947000000,0.000327082000000,0.014675318000000,0.000259526000000,0.014609342000000,0.000299823000000,0.000221995000000 +0.000147724000000,0.000282045000000,0.000047774000000,0.000080959000000,0.000194341000000,0.000182489000000,0.000055674000000,0.000130737000000,0.000108613000000,0.000072662000000,0.000331032000000,0.000305354000000,0.000341699000000,0.000275724000000,0.015013885000000,0.000299033000000,0.014698626000000,0.000316020000000,0.000218440000000 +0.000178934000000,0.000293106000000,0.000045798000000,0.000080563000000,0.000194736000000,0.000171033000000,0.000056070000000,0.000131921000000,0.000109008000000,0.000071477000000,0.000261502000000,0.000274143000000,0.000259527000000,0.000287180000000,0.014219812000000,0.000259526000000,0.014543762000000,0.000416366000000,0.000218835000000 +0.000146539000000,0.000284020000000,0.000045403000000,0.000081748000000,0.000195526000000,0.000173008000000,0.000053699000000,0.000132712000000,0.000108613000000,0.000069502000000,0.000265452000000,0.000269798000000,0.000257156000000,0.000242934000000,0.014309095000000,0.000255971000000,0.014612898000000,0.000292317000000,0.000216860000000 +0.000147724000000,0.000309699000000,0.000045403000000,0.000082539000000,0.000231477000000,0.000171032000000,0.000054094000000,0.000130342000000,0.000109008000000,0.000071082000000,0.000261501000000,0.000274538000000,0.000294687000000,0.000263872000000,0.014570232000000,0.000328662000000,0.014718774000000,0.000288761000000,0.000217650000000 +0.000147329000000,0.000276119000000,0.000048564000000,0.000081749000000,0.000198687000000,0.000233057000000,0.000055675000000,0.000131921000000,0.000107823000000,0.000089650000000,0.000259526000000,0.000275329000000,0.000258736000000,0.000317600000000,0.014628700000000,0.000258736000000,0.014756701000000,0.000264267000000,0.000216860000000 +0.000146539000000,0.000311280000000,0.000052514000000,0.000080958000000,0.000243329000000,0.000171428000000,0.000054095000000,0.000130341000000,0.000182094000000,0.000209749000000,0.000291527000000,0.000366983000000,0.000290341000000,0.000246884000000,0.014145541000000,0.000261107000000,0.014695861000000,0.000295477000000,0.000216465000000 +0.000145354000000,0.000278094000000,0.000045798000000,0.000080958000000,0.000230291000000,0.000172217000000,0.000054885000000,0.000167873000000,0.000108218000000,0.000078193000000,0.000257156000000,0.000282835000000,0.000256761000000,0.000267033000000,0.014691515000000,0.000286786000000,0.015304651000000,0.000262687000000,0.000218835000000 +0.000148119000000,0.000380810000000,0.000045798000000,0.000081749000000,0.000197107000000,0.000173798000000,0.000055280000000,0.000132317000000,0.000107428000000,0.000069897000000,0.000310884000000,0.000280464000000,0.000258341000000,0.000340119000000,0.014406675000000,0.000257946000000,0.014764206000000,0.000295872000000,0.000219230000000 +0.000147724000000,0.000293896000000,0.000045799000000,0.000081749000000,0.000194736000000,0.000170638000000,0.000068317000000,0.000131526000000,0.000108613000000,0.000071477000000,0.000582291000000,0.000272564000000,0.000304563000000,0.000227921000000,0.014597490000000,0.000314044000000,0.014596305000000,0.000262687000000,0.000217650000000 +0.000147329000000,0.000314440000000,0.000047774000000,0.000080958000000,0.000195131000000,0.000171033000000,0.000054094000000,0.000165106000000,0.000107427000000,0.000071477000000,0.000278884000000,0.000268613000000,0.000263872000000,0.000246489000000,0.014790280000000,0.000259527000000,0.014319368000000,0.000263081000000,0.000217650000000 +0.000181304000000,0.000280860000000,0.000047774000000,0.000080959000000,0.000389106000000,0.000170242000000,0.000054094000000,0.000131132000000,0.000179329000000,0.000069897000000,0.000292316000000,0.000305353000000,0.000259922000000,0.000587823000000,0.014224552000000,0.000257156000000,0.014605787000000,0.000275724000000,0.000219625000000 +0.000146144000000,0.000326292000000,0.000046194000000,0.000080564000000,0.000209748000000,0.000207378000000,0.000056070000000,0.000130736000000,0.000108218000000,0.000070687000000,0.000257551000000,0.000272958000000,0.000273353000000,0.000315625000000,0.014706133000000,0.000293106000000,0.014176750000000,0.000261896000000,0.000217650000000 +0.000146539000000,0.000277699000000,0.000048564000000,0.000084119000000,0.000246094000000,0.000171822000000,0.000055675000000,0.000131526000000,0.000107033000000,0.000070687000000,0.000306934000000,0.000271773000000,0.000276909000000,0.000264267000000,0.014644108000000,0.000257156000000,0.014404701000000,0.000294687000000,0.000217255000000 +0.000146144000000,0.000282045000000,0.000051724000000,0.000081749000000,0.000195921000000,0.000171822000000,0.000055675000000,0.000130342000000,0.000110588000000,0.000072268000000,0.000257551000000,0.000302193000000,0.000335773000000,0.000235427000000,0.015018231000000,0.000258736000000,0.014778033000000,0.000262687000000,0.000253601000000 +0.000166687000000,0.000278885000000,0.000045798000000,0.000080959000000,0.000196712000000,0.000174194000000,0.000055280000000,0.000252416000000,0.000111378000000,0.000072268000000,0.000260711000000,0.000269798000000,0.000257946000000,0.000336958000000,0.014833342000000,0.000289552000000,0.015011515000000,0.000265847000000,0.000219625000000 +0.000147724000000,0.000277304000000,0.000046193000000,0.000081353000000,0.000195132000000,0.000208563000000,0.000088069000000,0.000145749000000,0.000107823000000,0.000069897000000,0.000339724000000,0.000274538000000,0.000291526000000,0.000271773000000,0.014662676000000,0.000256761000000,0.014554429000000,0.000261107000000,0.000220415000000 +0.000146539000000,0.000279675000000,0.000048959000000,0.000081353000000,0.000245304000000,0.000171822000000,0.000055279000000,0.000132316000000,0.000295477000000,0.000071082000000,0.000257551000000,0.000304563000000,0.000265057000000,0.000268613000000,0.014601836000000,0.000354341000000,0.015090922000000,0.000259922000000,0.000259132000000 +0.000146144000000,0.000278094000000,0.000048563000000,0.000080959000000,0.000195131000000,0.000171427000000,0.000052910000000,0.000131526000000,0.000108613000000,0.000073847000000,0.000262687000000,0.000275329000000,0.000256761000000,0.000300218000000,0.014887860000000,0.000466539000000,0.014492009000000,0.000275328000000,0.000219230000000 +0.000147329000000,0.000274538000000,0.000065156000000,0.000081354000000,0.000195131000000,0.000172613000000,0.000053699000000,0.000165107000000,0.000107032000000,0.000072267000000,0.000274143000000,0.000267822000000,0.000291921000000,0.000266637000000,0.015032453000000,0.000344859000000,0.014194527000000,0.000265452000000,0.000216860000000 +0.000160761000000,0.000275724000000,0.000045403000000,0.000082934000000,0.000265848000000,0.000227132000000,0.000054094000000,0.000150094000000,0.000141403000000,0.000070687000000,0.000269798000000,0.000269403000000,0.000258342000000,0.000213304000000,0.015004404000000,0.000258341000000,0.014938823000000,0.000313649000000,0.000219230000000 +0.000148514000000,0.000343675000000,0.000048168000000,0.000081749000000,0.000194736000000,0.000171823000000,0.000056860000000,0.000131132000000,0.000107427000000,0.000070292000000,0.000306539000000,0.000322736000000,0.000255970000000,0.000295082000000,0.014812404000000,0.000277699000000,0.014624749000000,0.000264267000000,0.000216069000000 +0.000145749000000,0.000274934000000,0.000045798000000,0.000081354000000,0.000197107000000,0.000170243000000,0.000052909000000,0.000133502000000,0.000109007000000,0.000069897000000,0.000281650000000,0.000301008000000,0.000257551000000,0.000278884000000,0.014731811000000,0.000257551000000,0.014484108000000,0.000299032000000,0.000216069000000 +0.000147724000000,0.000310885000000,0.000045403000000,0.000081353000000,0.000194736000000,0.000171428000000,0.000054095000000,0.000133897000000,0.000106637000000,0.000103872000000,0.000274539000000,0.000273353000000,0.000258736000000,0.000322736000000,0.014821885000000,0.000260711000000,0.014615268000000,0.000262291000000,0.000216465000000 +0.000215280000000,0.000277304000000,0.000045798000000,0.000081353000000,0.000208168000000,0.000174588000000,0.000090440000000,0.000146144000000,0.000106638000000,0.000071477000000,0.000306144000000,0.000257551000000,0.000361847000000,0.000282440000000,0.014307120000000,0.000291527000000,0.015124897000000,0.000261502000000,0.000216070000000 +0.000147329000000,0.000336168000000,0.000045798000000,0.000082144000000,0.000196316000000,0.000170637000000,0.000054490000000,0.000131922000000,0.000107033000000,0.000070687000000,0.000278885000000,0.000360267000000,0.000274934000000,0.000259132000000,0.015116996000000,0.000255971000000,0.014272750000000,0.000263477000000,0.000216464000000 +0.000145749000000,0.000279675000000,0.000048169000000,0.000083329000000,0.000195131000000,0.000171823000000,0.000054489000000,0.000132711000000,0.000159181000000,0.000069502000000,0.000273749000000,0.000272563000000,0.000264267000000,0.000264662000000,0.014985046000000,0.000261897000000,0.014437095000000,0.000261106000000,0.000216860000000 +0.000164711000000,0.000312860000000,0.000084515000000,0.000081353000000,0.000263477000000,0.000173798000000,0.000056464000000,0.000132712000000,0.000107033000000,0.000069502000000,0.000354342000000,0.000305353000000,0.000293106000000,0.000279674000000,0.014929342000000,0.000292711000000,0.015103564000000,0.000361057000000,0.000217255000000 +0.000148119000000,0.000274539000000,0.000045798000000,0.000080959000000,0.000197501000000,0.000207773000000,0.000055674000000,0.000171033000000,0.000107033000000,0.000069897000000,0.000271773000000,0.000269008000000,0.000259527000000,0.000261106000000,0.014830972000000,0.000259526000000,0.014871268000000,0.000263081000000,0.000217650000000 +0.000147724000000,0.000278489000000,0.000047773000000,0.000082144000000,0.000196317000000,0.000170242000000,0.000054094000000,0.000131921000000,0.000109008000000,0.000071478000000,0.000304958000000,0.000268217000000,0.000331032000000,0.000327081000000,0.014950675000000,0.000297847000000,0.014854280000000,0.000347625000000,0.000216860000000 +0.000149699000000,0.000277304000000,0.000046589000000,0.000082538000000,0.000196317000000,0.000172613000000,0.000055675000000,0.000130341000000,0.000128761000000,0.000104663000000,0.000268217000000,0.000314045000000,0.000267427000000,0.000250835000000,0.014220997000000,0.000257551000000,0.014928947000000,0.000266242000000,0.000279675000000 +0.000147724000000,0.000275329000000,0.000045403000000,0.000082143000000,0.000242144000000,0.000171033000000,0.000055279000000,0.000131527000000,0.000108613000000,0.000072662000000,0.000275724000000,0.000267823000000,0.000257946000000,0.000240168000000,0.014614478000000,0.000257551000000,0.014756305000000,0.000295477000000,0.000266637000000 +0.000146539000000,0.000276514000000,0.000047774000000,0.000143378000000,0.000195921000000,0.000172613000000,0.000067921000000,0.000131526000000,0.000108613000000,0.000071477000000,0.000304564000000,0.000270193000000,0.000328267000000,0.000314440000000,0.015515218000000,0.000297453000000,0.014998872000000,0.000261897000000,0.000217650000000 +0.000252021000000,0.000280859000000,0.000046588000000,0.000094786000000,0.000195527000000,0.000170638000000,0.000055280000000,0.000145749000000,0.000108613000000,0.000072268000000,0.000278094000000,0.000713057000000,0.000261896000000,0.000270193000000,0.014462774000000,0.000258736000000,0.015006379000000,0.000263082000000,0.000217650000000 +0.000147724000000,0.000637600000000,0.000045403000000,0.000080563000000,0.000238588000000,0.000171033000000,0.000054095000000,0.000131921000000,0.000107032000000,0.000069897000000,0.000267033000000,0.000898736000000,0.000255971000000,0.000267823000000,0.014594725000000,0.000257946000000,0.014499120000000,0.000263477000000,0.000216464000000 +0.000148119000000,0.000851724000000,0.000082539000000,0.000081353000000,0.000196316000000,0.000206193000000,0.000053304000000,0.000130736000000,0.000110589000000,0.000069502000000,0.000316415000000,0.000456662000000,0.000256761000000,0.000255181000000,0.014838083000000,0.000321156000000,0.014100503000000,0.000260317000000,0.000215674000000 +0.000148119000000,0.000344069000000,0.000048168000000,0.000081749000000,0.000194736000000,0.000193551000000,0.000054094000000,0.000135082000000,0.000107428000000,0.000071872000000,0.000274143000000,0.000319181000000,0.000257551000000,0.000276119000000,0.014270775000000,0.000259131000000,0.014746823000000,0.000307328000000,0.000218835000000 +0.000180514000000,0.000322736000000,0.000045403000000,0.000081354000000,0.000195132000000,0.000171823000000,0.000054884000000,0.000165106000000,0.000108613000000,0.000104267000000,0.000303378000000,0.000726884000000,0.000309304000000,0.000344070000000,0.014862577000000,0.000276119000000,0.014095367000000,0.000258341000000,0.000216860000000 +0.000146144000000,0.000342094000000,0.000047773000000,0.000123230000000,0.000278489000000,0.000172218000000,0.000053700000000,0.000131526000000,0.000108218000000,0.000070292000000,0.000270193000000,0.000370538000000,0.000259921000000,0.000268612000000,0.014940403000000,0.000261897000000,0.014668206000000,0.000359477000000,0.000217255000000 +0.000146934000000,0.000276514000000,0.000045798000000,0.000081354000000,0.000196316000000,0.000171822000000,0.000054489000000,0.000131527000000,0.000108218000000,0.000070687000000,0.000269008000000,0.000272169000000,0.000259526000000,0.000269007000000,0.014228108000000,0.000256761000000,0.014752354000000,0.000308909000000,0.000217255000000 +0.000146538000000,0.000287180000000,0.000045403000000,0.000081353000000,0.000195921000000,0.000173008000000,0.000053304000000,0.000131526000000,0.000107428000000,0.000070687000000,0.000306933000000,0.000271378000000,0.000331428000000,0.000291921000000,0.015362724000000,0.000293106000000,0.014654379000000,0.000296267000000,0.000217650000000 +0.000148514000000,0.000274538000000,0.000045798000000,0.000116119000000,0.000278095000000,0.000170637000000,0.000054489000000,0.000131132000000,0.000109403000000,0.000070292000000,0.000266638000000,0.000269402000000,0.000258342000000,0.000259131000000,0.014988206000000,0.000257946000000,0.014316996000000,0.000260317000000,0.000216859000000 +0.000432168000000,0.000278885000000,0.000045799000000,0.000093996000000,0.000199872000000,0.000170242000000,0.000053304000000,0.000165502000000,0.000107033000000,0.000071083000000,0.000270193000000,0.000264662000000,0.000311279000000,0.000260316000000,0.014516108000000,0.000257946000000,0.014659910000000,0.000295477000000,0.000218045000000 +0.000197896000000,0.000276909000000,0.000066737000000,0.000080563000000,0.000197107000000,0.000170638000000,0.000054095000000,0.000130341000000,0.000107033000000,0.000069896000000,0.000269403000000,0.000288366000000,0.000257551000000,0.000264267000000,0.014409046000000,0.000258736000000,0.014677292000000,0.000261897000000,0.000253995000000 +0.000180909000000,0.000282045000000,0.000063576000000,0.000082144000000,0.000194341000000,0.000169452000000,0.000053304000000,0.000131921000000,0.000111773000000,0.000103872000000,0.000267032000000,0.000257551000000,0.000256761000000,0.000274144000000,0.014305145000000,0.000257551000000,0.014132503000000,0.000261107000000,0.000218440000000 +0.000147329000000,0.000278094000000,0.000048563000000,0.000080958000000,0.000242933000000,0.000184070000000,0.000054885000000,0.000131131000000,0.000110193000000,0.000071872000000,0.000305353000000,0.000269008000000,0.000306539000000,0.000243724000000,0.014873639000000,0.000291132000000,0.014909194000000,0.000260316000000,0.000216070000000 +0.000145748000000,0.000310490000000,0.000045798000000,0.000082144000000,0.000194341000000,0.000170638000000,0.000054885000000,0.000130737000000,0.000192761000000,0.000073057000000,0.000259921000000,0.000491822000000,0.000263477000000,0.000266638000000,0.014459219000000,0.000257946000000,0.014755910000000,0.000261107000000,0.000218045000000 +0.000148119000000,0.000275724000000,0.000047774000000,0.000080168000000,0.000195131000000,0.000171032000000,0.000054094000000,0.000165107000000,0.000107032000000,0.000072267000000,0.000257156000000,0.000273748000000,0.000261897000000,0.000262687000000,0.014548108000000,0.000257156000000,0.014337145000000,0.000294687000000,0.000217254000000 +0.000146143000000,0.000310490000000,0.000045403000000,0.000080959000000,0.000285601000000,0.000171033000000,0.000057255000000,0.000131526000000,0.000107033000000,0.000069897000000,0.000327082000000,0.000303773000000,0.000263872000000,0.000231477000000,0.014574972000000,0.000293501000000,0.015149787000000,0.000259921000000,0.000217650000000 +0.000146538000000,0.000274539000000,0.000045798000000,0.000080564000000,0.000196317000000,0.000169847000000,0.000053700000000,0.000130341000000,0.000107428000000,0.000069897000000,0.000267823000000,0.000312860000000,0.000257551000000,0.000265848000000,0.014501095000000,0.000257156000000,0.015448848000000,0.000292711000000,0.000216860000000 +0.000146934000000,0.000280859000000,0.000045798000000,0.000083724000000,0.000194736000000,0.000170243000000,0.000054094000000,0.000135872000000,0.000108613000000,0.000070292000000,0.000274539000000,0.000385946000000,0.000408070000000,0.000246489000000,0.014956601000000,0.000258342000000,0.014613293000000,0.000263477000000,0.000216860000000 +0.000147329000000,0.000278095000000,0.000045798000000,0.000080564000000,0.000194737000000,0.000171032000000,0.000056069000000,0.000130341000000,0.000140613000000,0.000103477000000,0.000257156000000,0.000385551000000,0.000272168000000,0.000321156000000,0.015186922000000,0.000260711000000,0.014380601000000,0.000264662000000,0.000219625000000 +0.000146144000000,0.000276514000000,0.000050144000000,0.000082143000000,0.000207773000000,0.000172613000000,0.000053699000000,0.000163922000000,0.000109403000000,0.000071477000000,0.000269403000000,0.000272958000000,0.000296662000000,0.000295082000000,0.014858231000000,0.000257947000000,0.014789096000000,0.000263082000000,0.000219230000000 +0.000180119000000,0.000278490000000,0.000047773000000,0.000080959000000,0.000196317000000,0.000171428000000,0.000053700000000,0.000132712000000,0.000108613000000,0.000070687000000,0.000299033000000,0.000276514000000,0.000255971000000,0.000253995000000,0.014420898000000,0.000290341000000,0.014618824000000,0.000264662000000,0.000219625000000 +0.000146934000000,0.000276909000000,0.000045798000000,0.000082144000000,0.000196317000000,0.000172612000000,0.000075823000000,0.000130736000000,0.000108613000000,0.000069502000000,0.000271379000000,0.000277305000000,0.000257551000000,0.000259921000000,0.017290229000000,0.000295082000000,0.014337935000000,0.000301403000000,0.000219625000000 +0.000145749000000,0.000317600000000,0.000045798000000,0.000081354000000,0.000229107000000,0.000170637000000,0.000055279000000,0.000131527000000,0.000108218000000,0.000071872000000,0.000270588000000,0.000307724000000,0.000291526000000,0.000243724000000,0.014900108000000,0.000258341000000,0.014917490000000,0.000260712000000,0.000216465000000 +0.000146934000000,0.000278489000000,0.000045798000000,0.000081749000000,0.000197502000000,0.000170243000000,0.000056070000000,0.000164317000000,0.000107822000000,0.000075033000000,0.000312069000000,0.000272958000000,0.000258341000000,0.000267032000000,0.014122626000000,0.000291131000000,0.014481737000000,0.000298243000000,0.000244119000000 +0.000146144000000,0.000313255000000,0.000046193000000,0.000081749000000,0.000195132000000,0.000169847000000,0.000054489000000,0.000132316000000,0.000108218000000,0.000071477000000,0.000266638000000,0.000258342000000,0.000255971000000,0.000297057000000,0.016401340000000,0.000258341000000,0.014633836000000,0.000263477000000,0.000220415000000 +0.000148119000000,0.000277699000000,0.000048168000000,0.000081354000000,0.000195921000000,0.000170638000000,0.000056860000000,0.000129946000000,0.000109008000000,0.000071872000000,0.000271774000000,0.000331823000000,0.000307724000000,0.000263873000000,0.015261983000000,0.000257156000000,0.014858231000000,0.000297452000000,0.000217650000000 +0.000147329000000,0.000311279000000,0.000045798000000,0.000081354000000,0.000377255000000,0.000171823000000,0.000072662000000,0.000130341000000,0.000107428000000,0.000069897000000,0.000274538000000,0.000269403000000,0.000257156000000,0.000262687000000,0.015007564000000,0.000257946000000,0.014932502000000,0.000264663000000,0.000216860000000 +0.000146934000000,0.000292317000000,0.000045798000000,0.000080959000000,0.000195131000000,0.000171427000000,0.000053700000000,0.000131921000000,0.000107033000000,0.000070292000000,0.000269798000000,0.000310489000000,0.000258342000000,0.000244909000000,0.014893391000000,0.000258737000000,0.014000948000000,0.000270588000000,0.000218835000000 +0.000148514000000,0.000281255000000,0.000045799000000,0.000080959000000,0.000245699000000,0.000396612000000,0.000053699000000,0.000220415000000,0.000110588000000,0.000073058000000,0.000429007000000,0.000273749000000,0.000255971000000,0.000264663000000,0.014803317000000,0.000346045000000,0.016795217000000,0.000261106000000,0.000218440000000 +0.000180119000000,0.000278095000000,0.000048169000000,0.000080168000000,0.000195132000000,0.000237403000000,0.000058045000000,0.000144958000000,0.000180909000000,0.000071477000000,0.000296267000000,0.000271773000000,0.000255576000000,0.000260711000000,0.014509786000000,0.000261106000000,0.016462575000000,0.000261897000000,0.000220020000000 +0.000147724000000,0.000278489000000,0.000046194000000,0.000080564000000,0.000194736000000,0.000173008000000,0.000053304000000,0.000130341000000,0.000106637000000,0.000070292000000,0.000321946000000,0.000304169000000,0.000297847000000,0.000293106000000,0.015117391000000,0.000263082000000,0.014840453000000,0.000295082000000,0.000218835000000 +0.000147329000000,0.000361057000000,0.000048563000000,0.000081748000000,0.000195131000000,0.000170637000000,0.000056070000000,0.000137452000000,0.000110983000000,0.000084909000000,0.000272959000000,0.000272564000000,0.000258736000000,0.000256761000000,0.014680058000000,0.000296662000000,0.015218922000000,0.000260712000000,0.000217255000000 +0.000145749000000,0.000331033000000,0.000048169000000,0.000080959000000,0.000210143000000,0.000170637000000,0.000053304000000,0.000131526000000,0.000107428000000,0.000070292000000,0.000269403000000,0.000258736000000,0.000258736000000,0.000206983000000,0.014368750000000,0.000261897000000,0.014518083000000,0.000293896000000,0.000217254000000 +0.000168662000000,0.000277304000000,0.000048169000000,0.000082539000000,0.000195922000000,0.000173798000000,0.000054884000000,0.000131922000000,0.000109798000000,0.000073058000000,0.000338934000000,0.000344464000000,0.000299032000000,0.000411230000000,0.014871663000000,0.000259921000000,0.014228108000000,0.000258341000000,0.000261897000000 +0.000147329000000,0.000319971000000,0.000045798000000,0.000081353000000,0.000194736000000,0.000173008000000,0.000055675000000,0.000131527000000,0.000142193000000,0.000073453000000,0.000267427000000,0.000264662000000,0.000259132000000,0.000270193000000,0.014335564000000,0.000261107000000,0.014202429000000,0.000259921000000,0.000233057000000 +0.000147724000000,0.000277699000000,0.000046589000000,0.000080958000000,0.000228712000000,0.000172217000000,0.000054094000000,0.000131526000000,0.000107428000000,0.000074638000000,0.000271773000000,0.000267822000000,0.000259132000000,0.000298242000000,0.014671762000000,0.000258341000000,0.014364009000000,0.000263081000000,0.000231082000000 +0.000146539000000,0.000312860000000,0.000045798000000,0.000082934000000,0.000195526000000,0.000171033000000,0.000087280000000,0.000161551000000,0.000108613000000,0.000070292000000,0.000265057000000,0.000268613000000,0.000259922000000,0.000263477000000,0.014443812000000,0.000348020000000,0.013820405000000,0.000262292000000,0.000274143000000 +0.000146538000000,0.000277699000000,0.000046193000000,0.000081749000000,0.000195131000000,0.000171823000000,0.000054490000000,0.000199477000000,0.000107428000000,0.000073057000000,0.000270588000000,0.000271773000000,0.000308119000000,0.000249255000000,0.014759465000000,0.000276909000000,0.014354132000000,0.000297847000000,0.000260317000000 +0.000194342000000,0.000276119000000,0.000045798000000,0.000080563000000,0.000195922000000,0.000173403000000,0.000054094000000,0.000130736000000,0.000108613000000,0.000138637000000,0.000368168000000,0.000326292000000,0.000291526000000,0.000265057000000,0.015525095000000,0.000261502000000,0.013991466000000,0.000260711000000,0.000335378000000 +0.000147724000000,0.000281650000000,0.000045798000000,0.000081748000000,0.000209749000000,0.000170243000000,0.000054094000000,0.000131132000000,0.000108217000000,0.000070292000000,0.000259527000000,0.000267822000000,0.000259526000000,0.000259131000000,0.015304651000000,0.000256366000000,0.014298824000000,0.000292712000000,0.000235823000000 +0.000147724000000,0.000284810000000,0.000045798000000,0.000080958000000,0.000196317000000,0.000172613000000,0.000054095000000,0.000133502000000,0.000124416000000,0.000071477000000,0.000257551000000,0.000272959000000,0.000278489000000,0.000264662000000,0.014716404000000,0.000257946000000,0.013733095000000,0.000263477000000,0.000262687000000 +0.000146539000000,0.000276909000000,0.000045798000000,0.000080564000000,0.000194341000000,0.000171822000000,0.000055675000000,0.000130736000000,0.000108613000000,0.000069897000000,0.000291527000000,0.000297847000000,0.000313650000000,0.000335774000000,0.014208750000000,0.000277699000000,0.014621589000000,0.000259921000000,0.000231082000000 +0.000180514000000,0.000275724000000,0.000045798000000,0.000080958000000,0.000230292000000,0.000230291000000,0.000054094000000,0.000131131000000,0.000110984000000,0.000070687000000,0.000266243000000,0.000270193000000,0.000256366000000,0.000252811000000,0.014980700000000,0.000260712000000,0.014141984000000,0.000259922000000,0.000268218000000 +0.000148909000000,0.000280070000000,0.000064761000000,0.000083329000000,0.000196317000000,0.000171033000000,0.000056069000000,0.000131922000000,0.000113353000000,0.000071477000000,0.000268218000000,0.000274934000000,0.000295477000000,0.000284810000000,0.014556799000000,0.000257946000000,0.014401935000000,0.000261502000000,0.000233058000000 +0.000145749000000,0.000330242000000,0.000092415000000,0.000081749000000,0.000195526000000,0.000170637000000,0.000087279000000,0.000131131000000,0.000109008000000,0.000069897000000,0.000361847000000,0.000273353000000,0.000258341000000,0.000238193000000,0.014421688000000,0.000294687000000,0.014409441000000,0.000316810000000,0.000230292000000 +0.000146934000000,0.000295872000000,0.000046193000000,0.000081354000000,0.000195922000000,0.000170242000000,0.000054095000000,0.000130736000000,0.000122440000000,0.000111774000000,0.000271773000000,0.000263872000000,0.000257551000000,0.000270588000000,0.014651219000000,0.000258342000000,0.014051120000000,0.000299428000000,0.000232267000000 +0.000147329000000,0.000273749000000,0.000061996000000,0.000080958000000,0.000228711000000,0.000174193000000,0.000053699000000,0.000199873000000,0.000108613000000,0.000084514000000,0.000291921000000,0.000307724000000,0.000294292000000,0.000325106000000,0.015079070000000,0.000257946000000,0.013530824000000,0.000294292000000,0.000231082000000 +0.000180119000000,0.000316020000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000169848000000,0.000054489000000,0.000130736000000,0.000108612000000,0.000070292000000,0.000257551000000,0.000272168000000,0.000256366000000,0.000241749000000,0.014232454000000,0.000291527000000,0.014444601000000,0.000258736000000,0.000232267000000 +0.000146143000000,0.000282045000000,0.000045798000000,0.000081749000000,0.000197107000000,0.000171428000000,0.000055280000000,0.000131527000000,0.000109008000000,0.000071477000000,0.000258341000000,0.000268218000000,0.000257946000000,0.000263872000000,0.014384552000000,0.000258341000000,0.013952355000000,0.000265847000000,0.000280465000000 +0.000146539000000,0.000310489000000,0.000048563000000,0.000080958000000,0.000195131000000,0.000171823000000,0.000053699000000,0.000132316000000,0.000108613000000,0.000072662000000,0.000336168000000,0.000308514000000,0.000292316000000,0.000317995000000,0.014705342000000,0.000279674000000,0.014193343000000,0.000261502000000,0.000216464000000 +0.000146144000000,0.000283230000000,0.000047773000000,0.000080958000000,0.000195527000000,0.000206983000000,0.000054094000000,0.000133502000000,0.000124811000000,0.000071082000000,0.000269403000000,0.000270983000000,0.000257946000000,0.000263082000000,0.014746033000000,0.000259526000000,0.014207169000000,0.000261501000000,0.000218440000000 +0.000189996000000,0.000314439000000,0.000048169000000,0.000081749000000,0.000194736000000,0.000171823000000,0.000055279000000,0.000166292000000,0.000110984000000,0.000104662000000,0.000268613000000,0.000273353000000,0.000256365000000,0.000263872000000,0.013988306000000,0.000260316000000,0.013945639000000,0.000297847000000,0.000220020000000 +0.000146144000000,0.000279280000000,0.000047774000000,0.000081749000000,0.000196317000000,0.000171033000000,0.000141008000000,0.000133896000000,0.000108613000000,0.000069897000000,0.000269008000000,0.000388711000000,0.000259526000000,0.000242934000000,0.014680453000000,0.000296662000000,0.014419713000000,0.000259922000000,0.000218440000000 +0.000148514000000,0.000310884000000,0.000048564000000,0.000081354000000,0.000236218000000,0.000190391000000,0.000058835000000,0.000131526000000,0.000110193000000,0.000071478000000,0.000265847000000,0.000502489000000,0.000259526000000,0.000260317000000,0.014327268000000,0.000263082000000,0.014216652000000,0.000261502000000,0.000216859000000 +0.000147724000000,0.000274934000000,0.000048958000000,0.000081354000000,0.000196712000000,0.000171033000000,0.000053305000000,0.000129947000000,0.000107428000000,0.000069897000000,0.000343279000000,0.000274934000000,0.000291922000000,0.000259131000000,0.015637292000000,0.000257946000000,0.014440650000000,0.000262292000000,0.000217254000000 +0.000146143000000,0.000280860000000,0.000045798000000,0.000080564000000,0.000195527000000,0.000170638000000,0.000053699000000,0.000133502000000,0.000108613000000,0.000070687000000,0.000267427000000,0.000319971000000,0.000260316000000,0.000235033000000,0.014845588000000,0.000289156000000,0.013844108000000,0.000331428000000,0.000206588000000 +0.000147724000000,0.000274539000000,0.000045798000000,0.000081749000000,0.000195922000000,0.000170242000000,0.000054095000000,0.000178934000000,0.000108613000000,0.000072268000000,0.000275724000000,0.000303773000000,0.000263872000000,0.000320761000000,0.014149096000000,0.000266243000000,0.014347417000000,0.000262292000000,0.000216860000000 +0.000147724000000,0.000282045000000,0.000045798000000,0.000081749000000,0.000196712000000,0.000171822000000,0.000053304000000,0.000130341000000,0.000110194000000,0.000069897000000,0.000300613000000,0.000262292000000,0.000291526000000,0.000316415000000,0.014449738000000,0.000291526000000,0.013801047000000,0.000297847000000,0.000216464000000 +0.000146934000000,0.000319181000000,0.000045798000000,0.000080959000000,0.000197897000000,0.000171823000000,0.000054094000000,0.000131132000000,0.000107032000000,0.000103477000000,0.000267427000000,0.000269008000000,0.000257946000000,0.000267032000000,0.014383762000000,0.000255576000000,0.014269589000000,0.000260317000000,0.000251230000000 +0.000147329000000,0.000362242000000,0.000049353000000,0.000081749000000,0.000197106000000,0.000172218000000,0.000053699000000,0.000131131000000,0.000109007000000,0.000069897000000,0.000268613000000,0.000331033000000,0.000257551000000,0.000265452000000,0.014407070000000,0.000257946000000,0.013779319000000,0.000262687000000,0.000217254000000 +0.000180909000000,0.000483921000000,0.000045798000000,0.000080958000000,0.000267822000000,0.000170242000000,0.000057255000000,0.000173798000000,0.000234637000000,0.000071083000000,0.000655378000000,0.000279675000000,0.000276514000000,0.000301008000000,0.015121342000000,0.000291526000000,0.014076799000000,0.000260316000000,0.000217254000000 +0.000146539000000,0.000316810000000,0.000045403000000,0.000081749000000,0.000194736000000,0.000171033000000,0.000054095000000,0.000131132000000,0.000161947000000,0.000070292000000,0.000324711000000,0.000387526000000,0.000261897000000,0.000228712000000,0.014943960000000,0.000259922000000,0.014068503000000,0.000263082000000,0.000267823000000 +0.000146934000000,0.000280860000000,0.000045798000000,0.000081354000000,0.000195527000000,0.000173798000000,0.000054490000000,0.000132712000000,0.000107428000000,0.000072268000000,0.000267823000000,0.000274539000000,0.000296662000000,0.000241354000000,0.014285392000000,0.000256366000000,0.013916010000000,0.000331823000000,0.000217650000000 +0.000147724000000,0.000292316000000,0.000045798000000,0.000165502000000,0.000195526000000,0.000174983000000,0.000054094000000,0.000136662000000,0.000108613000000,0.000071477000000,0.000274144000000,0.000298242000000,0.000257156000000,0.000314835000000,0.014440256000000,0.000347230000000,0.013903762000000,0.000264267000000,0.000217650000000 +0.000146539000000,0.000276514000000,0.000046983000000,0.000096366000000,0.000240958000000,0.000170242000000,0.000053304000000,0.000131131000000,0.000141008000000,0.000068712000000,0.000281254000000,0.000322341000000,0.000257551000000,0.000267033000000,0.015292008000000,0.000255971000000,0.014382972000000,0.000346835000000,0.000217254000000 +0.000147329000000,0.000276514000000,0.000045799000000,0.000082539000000,0.000241749000000,0.000171427000000,0.000092416000000,0.000180119000000,0.000108218000000,0.000090835000000,0.000267033000000,0.000276909000000,0.000291526000000,0.000257946000000,0.015389589000000,0.000258736000000,0.014218626000000,0.000262687000000,0.000217255000000 +0.000146933000000,0.000279675000000,0.000046194000000,0.000081354000000,0.000195921000000,0.000172217000000,0.000056070000000,0.000130736000000,0.000123230000000,0.000071872000000,0.000304563000000,0.000300613000000,0.000257946000000,0.000359872000000,0.015187317000000,0.000271378000000,0.013572701000000,0.000296662000000,0.000221206000000 +0.000146144000000,0.000279279000000,0.000045403000000,0.000081749000000,0.000244909000000,0.000172218000000,0.000055280000000,0.000131527000000,0.000108218000000,0.000070687000000,0.000266242000000,0.000272958000000,0.000258737000000,0.000249650000000,0.014979120000000,0.000256366000000,0.014467120000000,0.000262687000000,0.000253205000000 +0.000146934000000,0.000275328000000,0.000048168000000,0.000083329000000,0.000195131000000,0.000171428000000,0.000054490000000,0.000131922000000,0.000109404000000,0.000069897000000,0.000272564000000,0.000304563000000,0.000330637000000,0.000321551000000,0.014611317000000,0.000291921000000,0.013533985000000,0.000264662000000,0.000231082000000 +0.000178934000000,0.000262292000000,0.000063181000000,0.000082144000000,0.000195526000000,0.000171427000000,0.000053304000000,0.000131921000000,0.000141008000000,0.000071082000000,0.000302983000000,0.000276514000000,0.000255971000000,0.000278490000000,0.014512552000000,0.000256366000000,0.014266824000000,0.000259131000000,0.000227527000000 +0.000148514000000,0.000310884000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000173403000000,0.000054885000000,0.000132317000000,0.000107427000000,0.000070687000000,0.000271378000000,0.000271773000000,0.000332612000000,0.000270588000000,0.014458824000000,0.000259921000000,0.014139219000000,0.000263082000000,0.000234242000000 +0.000145749000000,0.000260712000000,0.000046193000000,0.000081353000000,0.000195922000000,0.000170637000000,0.000054885000000,0.000131922000000,0.000109798000000,0.000069897000000,0.000274933000000,0.000466143000000,0.000279279000000,0.000350390000000,0.014563120000000,0.000294291000000,0.014070873000000,0.000278490000000,0.000234242000000 +0.000146934000000,0.000259922000000,0.000048564000000,0.000080168000000,0.000196316000000,0.000170638000000,0.000124020000000,0.000132317000000,0.000107427000000,0.000085304000000,0.000283625000000,0.000327081000000,0.000257946000000,0.000205403000000,0.014652799000000,0.000258737000000,0.014027811000000,0.000263872000000,0.000233847000000 +0.000180909000000,0.000279280000000,0.000045798000000,0.000081354000000,0.000195526000000,0.000171823000000,0.000054489000000,0.000131527000000,0.000108217000000,0.000073452000000,0.000270588000000,0.000317995000000,0.000326291000000,0.000259526000000,0.014286972000000,0.000261896000000,0.014449737000000,0.000351180000000,0.000221601000000 +0.000145749000000,0.000281254000000,0.000045403000000,0.000082144000000,0.000227922000000,0.000206193000000,0.000055675000000,0.000169057000000,0.000107427000000,0.000071477000000,0.000302193000000,0.000274934000000,0.000258341000000,0.000348020000000,0.015671267000000,0.000261106000000,0.014354132000000,0.000261106000000,0.000253601000000 +0.000147724000000,0.000263872000000,0.000045798000000,0.000082934000000,0.000194341000000,0.000170638000000,0.000053305000000,0.000129946000000,0.000108612000000,0.000071082000000,0.000274144000000,0.000292316000000,0.000357106000000,0.000273749000000,0.015020601000000,0.000256761000000,0.013831466000000,0.000576760000000,0.000216070000000 +0.000146539000000,0.000261502000000,0.000046193000000,0.000080959000000,0.000195526000000,0.000171033000000,0.000054094000000,0.000130736000000,0.000110984000000,0.000070292000000,0.000271774000000,0.000269403000000,0.000257551000000,0.000276119000000,0.014537441000000,0.000290342000000,0.014558774000000,0.000296663000000,0.000216465000000 +0.000146539000000,0.000267032000000,0.000059626000000,0.000079773000000,0.000195527000000,0.000171822000000,0.000054095000000,0.000134292000000,0.000108613000000,0.000070292000000,0.000307329000000,0.000271378000000,0.000258341000000,0.000255971000000,0.014706922000000,0.000255971000000,0.014268405000000,0.000259526000000,0.000218440000000 +0.000192761000000,0.000260316000000,0.000048564000000,0.000080563000000,0.000230292000000,0.000173798000000,0.000053305000000,0.000130737000000,0.000107032000000,0.000071477000000,0.000274539000000,0.000307724000000,0.000340514000000,0.000232267000000,0.014365985000000,0.000268613000000,0.014196898000000,0.000260711000000,0.000215674000000 +0.000146143000000,0.000293502000000,0.000045798000000,0.000082143000000,0.000196317000000,0.000171428000000,0.000055674000000,0.000130737000000,0.000108613000000,0.000070687000000,0.000283230000000,0.000270589000000,0.000255971000000,0.000337353000000,0.014393244000000,0.000292711000000,0.013784059000000,0.000263082000000,0.000220810000000 +0.000147724000000,0.000260712000000,0.000046193000000,0.000080563000000,0.000195526000000,0.000171032000000,0.000058440000000,0.000137452000000,0.000165502000000,0.000070292000000,0.000282835000000,0.000310884000000,0.000301798000000,0.000265057000000,0.014567861000000,0.000257947000000,0.014785145000000,0.000262687000000,0.000250835000000 +0.000148514000000,0.000261897000000,0.000045798000000,0.000081353000000,0.000196316000000,0.000171032000000,0.000054094000000,0.000130341000000,0.000107428000000,0.000071872000000,0.000269402000000,0.000270193000000,0.000256761000000,0.000261502000000,0.014439465000000,0.000263477000000,0.013790775000000,0.000307723000000,0.000250835000000 +0.000180909000000,0.000261107000000,0.000045799000000,0.000080564000000,0.000196316000000,0.000172613000000,0.000056465000000,0.000130342000000,0.000110193000000,0.000070292000000,0.000301403000000,0.000272563000000,0.000261107000000,0.000339724000000,0.014205984000000,0.000272958000000,0.014292107000000,0.000263477000000,0.000216069000000 +0.000146539000000,0.000260317000000,0.000045403000000,0.000081354000000,0.000197106000000,0.000188021000000,0.000054885000000,0.000203032000000,0.000108613000000,0.000077403000000,0.000275723000000,0.000321551000000,0.000289946000000,0.000238193000000,0.014822280000000,0.000266638000000,0.013891911000000,0.000282044000000,0.000235032000000 +0.000146934000000,0.000279279000000,0.000048168000000,0.000080563000000,0.000196711000000,0.000172218000000,0.000054490000000,0.000130342000000,0.000108613000000,0.000071477000000,0.000268217000000,0.000349601000000,0.000258341000000,0.000301403000000,0.014701391000000,0.000280070000000,0.015563416000000,0.000263477000000,0.000217254000000 +0.000147329000000,0.000272958000000,0.000095181000000,0.000081749000000,0.000228712000000,0.000170242000000,0.000055675000000,0.000132317000000,0.000142193000000,0.000125600000000,0.000319181000000,0.000271378000000,0.000258342000000,0.000282835000000,0.014340305000000,0.000257946000000,0.014600256000000,0.000264663000000,0.000216860000000 +0.000146539000000,0.000296267000000,0.000060811000000,0.000080958000000,0.000195527000000,0.000182489000000,0.000054094000000,0.000130341000000,0.000107032000000,0.000071477000000,0.000270588000000,0.000275329000000,0.000259527000000,0.000273749000000,0.014505046000000,0.000256366000000,0.013885194000000,0.000274934000000,0.000219625000000 +0.000160761000000,0.000261897000000,0.000048169000000,0.000080958000000,0.000195922000000,0.000171032000000,0.000092020000000,0.000130341000000,0.000108613000000,0.000069502000000,0.000272959000000,0.000278884000000,0.000259131000000,0.000358292000000,0.015834823000000,0.000291132000000,0.014288553000000,0.000259922000000,0.000216465000000 +0.000146143000000,0.000388711000000,0.000045798000000,0.000082143000000,0.000195131000000,0.000172218000000,0.000053700000000,0.000132712000000,0.000109008000000,0.000071872000000,0.000306539000000,0.000342094000000,0.000304168000000,0.000271773000000,0.014514527000000,0.000256761000000,0.014158972000000,0.000310489000000,0.000218835000000 +0.000146144000000,0.000260712000000,0.000046193000000,0.000080169000000,0.000230687000000,0.000171033000000,0.000054489000000,0.000130341000000,0.000107033000000,0.000071873000000,0.000271774000000,0.000267427000000,0.000259921000000,0.000243724000000,0.014735762000000,0.000258737000000,0.014024256000000,0.000261106000000,0.000217255000000 +0.000147724000000,0.000292316000000,0.000050934000000,0.000081748000000,0.000194737000000,0.000174983000000,0.000054489000000,0.000131131000000,0.000142588000000,0.000070687000000,0.000272958000000,0.000271378000000,0.000259922000000,0.000280069000000,0.015089737000000,0.000521057000000,0.014586824000000,0.000295082000000,0.000221995000000 +0.000180119000000,0.000262687000000,0.000045798000000,0.000081354000000,0.000195526000000,0.000170638000000,0.000055280000000,0.000130342000000,0.000108613000000,0.000072267000000,0.000276119000000,0.000306143000000,0.000290737000000,0.000286390000000,0.015215761000000,0.000257946000000,0.013793541000000,0.000267033000000,0.000216465000000 +0.000147724000000,0.000261106000000,0.000048958000000,0.000081354000000,0.000216069000000,0.000172218000000,0.000053699000000,0.000130341000000,0.000111378000000,0.000083329000000,0.000267032000000,0.000269798000000,0.000258341000000,0.000285996000000,0.014646083000000,0.000310094000000,0.014274331000000,0.000264267000000,0.000217255000000 +0.000147328000000,0.000266243000000,0.000048168000000,0.000118489000000,0.000194737000000,0.000170637000000,0.000054095000000,0.000148119000000,0.000106637000000,0.000070292000000,0.000308119000000,0.000294291000000,0.000257946000000,0.000263872000000,0.014780404000000,0.000256761000000,0.014377046000000,0.000262292000000,0.000218835000000 +0.000147329000000,0.000262291000000,0.000045798000000,0.000084910000000,0.000196712000000,0.000174984000000,0.000054489000000,0.000131526000000,0.000108613000000,0.000070291000000,0.000266637000000,0.000266638000000,0.000349995000000,0.000269008000000,0.014495960000000,0.000255970000000,0.013932997000000,0.000263082000000,0.000216070000000 +0.000146539000000,0.000345255000000,0.000045798000000,0.000080958000000,0.000194341000000,0.000171428000000,0.000085699000000,0.000131922000000,0.000109008000000,0.000071082000000,0.000258341000000,0.000269403000000,0.000259526000000,0.000312070000000,0.013792750000000,0.000255971000000,0.014244306000000,0.000304959000000,0.000221205000000 +0.000292712000000,0.000259922000000,0.000045798000000,0.000081354000000,0.000315230000000,0.000170637000000,0.000053699000000,0.000131922000000,0.000142193000000,0.000071477000000,0.000270983000000,0.000355922000000,0.000333008000000,0.000269008000000,0.014131318000000,0.000258341000000,0.013922725000000,0.000258341000000,0.000219625000000 +0.000161156000000,0.000293502000000,0.000045403000000,0.000081353000000,0.000195526000000,0.000172613000000,0.000055280000000,0.000250835000000,0.000108613000000,0.000075823000000,0.000257946000000,0.000278094000000,0.000258341000000,0.000246094000000,0.014079170000000,0.000293106000000,0.016827612000000,0.000264662000000,0.000217254000000 +0.000148119000000,0.000261501000000,0.000045798000000,0.000081354000000,0.000194341000000,0.000244909000000,0.000055675000000,0.000133106000000,0.000107032000000,0.000071082000000,0.000263082000000,0.000269008000000,0.000262292000000,0.000279674000000,0.013548207000000,0.000257551000000,0.014883120000000,0.000261501000000,0.000220020000000 +0.000148119000000,0.000261501000000,0.000048168000000,0.000080563000000,0.000228317000000,0.000216860000000,0.000055675000000,0.000130341000000,0.000109008000000,0.000083724000000,0.000272168000000,0.000279674000000,0.000346835000000,0.000269402000000,0.014192947000000,0.000258736000000,0.014233243000000,0.000260711000000,0.000216465000000 +0.000159576000000,0.000261897000000,0.000045798000000,0.000080958000000,0.000195526000000,0.000171823000000,0.000053700000000,0.000130736000000,0.000110984000000,0.000071082000000,0.000271378000000,0.000267033000000,0.000257946000000,0.000268612000000,0.014449343000000,0.000346440000000,0.015235910000000,0.000290736000000,0.000216070000000 +0.000147329000000,0.000261107000000,0.000045403000000,0.000081354000000,0.000196712000000,0.000173798000000,0.000053699000000,0.000130342000000,0.000156811000000,0.000069897000000,0.000311279000000,0.000315230000000,0.000333008000000,0.000268613000000,0.014370725000000,0.000258736000000,0.014780404000000,0.000262687000000,0.000218045000000 +0.000146934000000,0.000293502000000,0.000046193000000,0.000081749000000,0.000196317000000,0.000171823000000,0.000055280000000,0.000306144000000,0.000109403000000,0.000071082000000,0.000269403000000,0.000269008000000,0.000378440000000,0.000250440000000,0.014377836000000,0.000277699000000,0.014696256000000,0.000300217000000,0.000216465000000 +0.000148119000000,0.000261896000000,0.000045403000000,0.000080564000000,0.000229897000000,0.000171823000000,0.000056070000000,0.000152860000000,0.000108613000000,0.000072662000000,0.000272958000000,0.000269798000000,0.000332218000000,0.000329057000000,0.014260108000000,0.000261502000000,0.014012010000000,0.000266637000000,0.000218045000000 +0.000215280000000,0.000309304000000,0.000048959000000,0.000081353000000,0.000194341000000,0.000171033000000,0.000053699000000,0.000181304000000,0.000110589000000,0.000071082000000,0.000302193000000,0.000305354000000,0.000256761000000,0.000261107000000,0.013816454000000,0.000259921000000,0.014004898000000,0.000329452000000,0.000216069000000 +0.000145749000000,0.000261502000000,0.000045798000000,0.000080169000000,0.000194736000000,0.000173798000000,0.000054095000000,0.000131921000000,0.000109008000000,0.000071082000000,0.000276909000000,0.000268218000000,0.000263082000000,0.000255181000000,0.014222577000000,0.000328662000000,0.014392849000000,0.000260317000000,0.000218440000000 +0.000146934000000,0.000259526000000,0.000045798000000,0.000080958000000,0.000238588000000,0.000207378000000,0.000055675000000,0.000131131000000,0.000141008000000,0.000174983000000,0.000316415000000,0.000270193000000,0.000329452000000,0.000497749000000,0.014216256000000,0.000255970000000,0.015458724000000,0.000353551000000,0.000217255000000 +0.000147328000000,0.000260316000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000170243000000,0.000053699000000,0.000131922000000,0.000108613000000,0.000075822000000,0.000276514000000,0.000302983000000,0.000256761000000,0.000281650000000,0.013968948000000,0.000257946000000,0.013801046000000,0.000259131000000,0.000218044000000 +0.000146143000000,0.000262687000000,0.000084514000000,0.000080958000000,0.000197107000000,0.000172218000000,0.000054490000000,0.000131922000000,0.000107033000000,0.000071873000000,0.000272563000000,0.000269798000000,0.000258737000000,0.000263872000000,0.013782479000000,0.000257946000000,0.014231268000000,0.000295477000000,0.000216465000000 +0.000146934000000,0.000296662000000,0.000048168000000,0.000081749000000,0.000195131000000,0.000174983000000,0.000054490000000,0.000164317000000,0.000109008000000,0.000073058000000,0.000355132000000,0.000273749000000,0.000258341000000,0.000264662000000,0.014187021000000,0.000257551000000,0.014239565000000,0.000259527000000,0.000216070000000 +0.000163132000000,0.000263873000000,0.000045798000000,0.000081354000000,0.000276119000000,0.000171823000000,0.000058045000000,0.000131922000000,0.000108613000000,0.000070687000000,0.000267823000000,0.000279674000000,0.000256366000000,0.000337749000000,0.013887565000000,0.000441254000000,0.014086675000000,0.000259922000000,0.000220021000000 +0.000146539000000,0.000295477000000,0.000045798000000,0.000080169000000,0.000194736000000,0.000171823000000,0.000056070000000,0.000130341000000,0.000107033000000,0.000071477000000,0.000274934000000,0.000268218000000,0.000326291000000,0.000265452000000,0.013815268000000,0.000289946000000,0.013817244000000,0.000272958000000,0.000217650000000 +0.000146144000000,0.000262687000000,0.000048563000000,0.000080168000000,0.000243328000000,0.000170242000000,0.000055675000000,0.000130736000000,0.000147329000000,0.000118094000000,0.000429403000000,0.000303378000000,0.000260317000000,0.000209748000000,0.013931812000000,0.000289156000000,0.014556009000000,0.000260317000000,0.000218440000000 +0.000300218000000,0.000261502000000,0.000048169000000,0.000081354000000,0.000228712000000,0.000172218000000,0.000054884000000,0.000130737000000,0.000107823000000,0.000071082000000,0.000319970000000,0.000270588000000,0.000257946000000,0.000312859000000,0.014238380000000,0.000264267000000,0.013954726000000,0.000300218000000,0.000313254000000 +0.000145749000000,0.000267032000000,0.000045798000000,0.000082934000000,0.000195526000000,0.000170243000000,0.000058440000000,0.000181304000000,0.000109008000000,0.000071082000000,0.000275329000000,0.000256761000000,0.000259922000000,0.000260711000000,0.013941689000000,0.000256761000000,0.013891516000000,0.000260711000000,0.000218045000000 +0.000147329000000,0.000260317000000,0.000046589000000,0.000080169000000,0.000194341000000,0.000171033000000,0.000053699000000,0.000134292000000,0.000108613000000,0.000070687000000,0.000270588000000,0.000401354000000,0.000256366000000,0.000261896000000,0.014032947000000,0.000257946000000,0.014059021000000,0.000260712000000,0.000216070000000 +0.000146539000000,0.000296663000000,0.000063181000000,0.000080168000000,0.000196711000000,0.000170243000000,0.000070687000000,0.000135082000000,0.000107033000000,0.000070687000000,0.000306538000000,0.000274144000000,0.000332612000000,0.000296662000000,0.014032552000000,0.000259922000000,0.014694280000000,0.000267032000000,0.000218440000000 +0.000191576000000,0.000259921000000,0.000049748000000,0.000081749000000,0.000278884000000,0.000188415000000,0.000058836000000,0.000131921000000,0.000142589000000,0.000071872000000,0.000276119000000,0.000311674000000,0.000259922000000,0.000209353000000,0.013981194000000,0.000303773000000,0.013803811000000,0.000264267000000,0.000218440000000 +0.000146934000000,0.000455082000000,0.000047773000000,0.000080958000000,0.000198291000000,0.000170638000000,0.000054094000000,0.000165107000000,0.000109008000000,0.000070687000000,0.000271378000000,0.000279674000000,0.000263477000000,0.000259132000000,0.014230873000000,0.000259921000000,0.014051911000000,0.000264267000000,0.000219625000000 +0.000146143000000,0.000263082000000,0.000047774000000,0.000081749000000,0.000195526000000,0.000172218000000,0.000053304000000,0.000132712000000,0.000109008000000,0.000083724000000,0.000304958000000,0.000348810000000,0.000274539000000,0.000297847000000,0.014643713000000,0.000260317000000,0.014253392000000,0.000261502000000,0.000208959000000 +0.000147724000000,0.000294292000000,0.000045798000000,0.000080958000000,0.000227921000000,0.000170637000000,0.000054489000000,0.000131526000000,0.000108613000000,0.000071477000000,0.000269403000000,0.000277699000000,0.000256761000000,0.000299032000000,0.014165293000000,0.000303774000000,0.014329639000000,0.000295872000000,0.000207774000000 +0.000205008000000,0.000260712000000,0.000045403000000,0.000082144000000,0.000195922000000,0.000171427000000,0.000054094000000,0.000131131000000,0.000107033000000,0.000071477000000,0.000270983000000,0.000327477000000,0.000345650000000,0.000300218000000,0.013796306000000,0.000259131000000,0.013806577000000,0.000270193000000,0.000206588000000 +0.000146144000000,0.000330637000000,0.000045798000000,0.000080958000000,0.000198292000000,0.000171823000000,0.000054490000000,0.000130342000000,0.000141402000000,0.000071477000000,0.000270588000000,0.000308119000000,0.000263477000000,0.000271774000000,0.015574872000000,0.000257947000000,0.014416552000000,0.000279674000000,0.000208958000000 +0.000147724000000,0.000263082000000,0.000048169000000,0.000081354000000,0.000195526000000,0.000171033000000,0.000070687000000,0.000130341000000,0.000108613000000,0.000069897000000,0.000269798000000,0.000278094000000,0.000259131000000,0.000226341000000,0.013721244000000,0.000289946000000,0.013870578000000,0.000276909000000,0.000217254000000 +0.000147329000000,0.000264267000000,0.000046588000000,0.000080563000000,0.000209748000000,0.000170242000000,0.000055279000000,0.000129551000000,0.000110193000000,0.000069897000000,0.000320761000000,0.000269008000000,0.000342489000000,0.000287970000000,0.014079170000000,0.000259527000000,0.013874923000000,0.000259922000000,0.000207773000000 +0.000148119000000,0.000260711000000,0.000048169000000,0.000080958000000,0.000194737000000,0.000181304000000,0.000055675000000,0.000131132000000,0.000110194000000,0.000072267000000,0.000270588000000,0.000358687000000,0.000257551000000,0.000257155000000,0.014221392000000,0.000261502000000,0.014468700000000,0.000262292000000,0.000207773000000 +0.000148119000000,0.000258737000000,0.000046193000000,0.000081354000000,0.000196712000000,0.000185255000000,0.000054095000000,0.000131131000000,0.000108613000000,0.000112959000000,0.000270588000000,0.000269798000000,0.000276514000000,0.000258341000000,0.013861886000000,0.000323526000000,0.013885590000000,0.000262292000000,0.000238983000000 +0.000146934000000,0.000331428000000,0.000048563000000,0.000081353000000,0.000229897000000,0.000170637000000,0.000053304000000,0.000165896000000,0.000111379000000,0.000069897000000,0.000302588000000,0.000305749000000,0.000257946000000,0.000365008000000,0.014264849000000,0.000258736000000,0.014286972000000,0.000294687000000,0.000232663000000 +0.000148119000000,0.000261502000000,0.000045798000000,0.000080564000000,0.000196712000000,0.000171032000000,0.000054094000000,0.000130341000000,0.000108218000000,0.000073453000000,0.000267822000000,0.000273354000000,0.000261897000000,0.000263082000000,0.014224157000000,0.000293107000000,0.014304750000000,0.000261897000000,0.000208958000000 +0.000146933000000,0.000297058000000,0.000045798000000,0.000080564000000,0.000195922000000,0.000173008000000,0.000054490000000,0.000130341000000,0.000110588000000,0.000070687000000,0.000270983000000,0.000268217000000,0.000344070000000,0.000229106000000,0.014433145000000,0.000257156000000,0.014052701000000,0.000355526000000,0.000218045000000 +0.000188811000000,0.000263082000000,0.000047773000000,0.000080168000000,0.000194736000000,0.000172218000000,0.000056070000000,0.000131922000000,0.000111379000000,0.000071478000000,0.000260316000000,0.000400958000000,0.000258341000000,0.000318785000000,0.013949194000000,0.000257156000000,0.014214280000000,0.000259526000000,0.000216859000000 +0.000146539000000,0.000279674000000,0.000045798000000,0.000080958000000,0.000195921000000,0.000171428000000,0.000054884000000,0.000131132000000,0.000108613000000,0.000071477000000,0.000269403000000,0.000271774000000,0.000257551000000,0.000265847000000,0.014151466000000,0.000262687000000,0.013851614000000,0.000296663000000,0.000207378000000 +0.000146143000000,0.000291922000000,0.000045798000000,0.000082144000000,0.000196711000000,0.000171823000000,0.000122045000000,0.000199477000000,0.000121650000000,0.000070292000000,0.000321946000000,0.000312860000000,0.000288366000000,0.000242538000000,0.014372701000000,0.000264662000000,0.014630280000000,0.000259132000000,0.000207378000000 +0.000146933000000,0.000261502000000,0.000047774000000,0.000084909000000,0.000199082000000,0.000169847000000,0.000066736000000,0.000132317000000,0.000123230000000,0.000070292000000,0.000270984000000,0.000276910000000,0.000257946000000,0.000275723000000,0.014286577000000,0.000293502000000,0.013652108000000,0.000259131000000,0.000207774000000 +0.000147329000000,0.000260712000000,0.000048169000000,0.000081354000000,0.000234242000000,0.000171033000000,0.000054885000000,0.000131526000000,0.000108613000000,0.000069896000000,0.000271773000000,0.000272958000000,0.000342885000000,0.000229896000000,0.013797096000000,0.000264267000000,0.014161737000000,0.000262687000000,0.000206983000000 +0.000146538000000,0.000261107000000,0.000045403000000,0.000080959000000,0.000196317000000,0.000171428000000,0.000054489000000,0.000130736000000,0.000108217000000,0.000103478000000,0.000306933000000,0.000431773000000,0.000256366000000,0.000298637000000,0.014554823000000,0.000256365000000,0.014387318000000,0.000263872000000,0.000208563000000 +0.000146144000000,0.000427823000000,0.000045798000000,0.000081354000000,0.000196316000000,0.000171032000000,0.000055279000000,0.000131132000000,0.000107033000000,0.000071477000000,0.000265057000000,0.000275724000000,0.000256761000000,0.000260317000000,0.013530825000000,0.000290341000000,0.014327663000000,0.000261107000000,0.000207774000000 +0.000147329000000,0.000279674000000,0.000048168000000,0.000080959000000,0.000195526000000,0.000170243000000,0.000054095000000,0.000130736000000,0.000109008000000,0.000073057000000,0.000270193000000,0.000326292000000,0.000689748000000,0.000242144000000,0.014798182000000,0.000255576000000,0.013963417000000,0.000261896000000,0.000216070000000 +0.000147329000000,0.000556612000000,0.000048168000000,0.000080958000000,0.000340909000000,0.000223181000000,0.000098736000000,0.000132316000000,0.000107427000000,0.000069897000000,0.000272168000000,0.000274538000000,0.000308119000000,0.000297058000000,0.014674527000000,0.000255576000000,0.014121836000000,0.000297452000000,0.000207774000000 +0.000179329000000,0.000425452000000,0.000084119000000,0.000081354000000,0.000196316000000,0.000171822000000,0.000053304000000,0.000131527000000,0.000107428000000,0.000104267000000,0.000270193000000,0.000272168000000,0.000258737000000,0.000272959000000,0.013965392000000,0.000258341000000,0.014239960000000,0.000266243000000,0.000208564000000 +0.000148514000000,0.000287970000000,0.000045403000000,0.000080959000000,0.000195526000000,0.000170637000000,0.000054884000000,0.000131922000000,0.000108218000000,0.000069502000000,0.000306144000000,0.000324712000000,0.000259921000000,0.000236613000000,0.013991071000000,0.000257551000000,0.013982379000000,0.000292316000000,0.000206588000000 +0.000146934000000,0.000276514000000,0.000045799000000,0.000081353000000,0.000280070000000,0.000169848000000,0.000054094000000,0.000165897000000,0.000107428000000,0.000073057000000,0.000263477000000,0.000269798000000,0.000294687000000,0.000302588000000,0.014655170000000,0.000277304000000,0.014217836000000,0.000260317000000,0.000216860000000 +0.000146143000000,0.000279675000000,0.000045798000000,0.000082144000000,0.000195131000000,0.000172218000000,0.000054490000000,0.000131527000000,0.000109008000000,0.000069897000000,0.000267427000000,0.000271378000000,0.000259922000000,0.000242144000000,0.014042429000000,0.000257946000000,0.014376256000000,0.000267032000000,0.000206983000000 +0.000180909000000,0.000283230000000,0.000047773000000,0.000082934000000,0.000196711000000,0.000172218000000,0.000054094000000,0.000131922000000,0.000143773000000,0.000071477000000,0.000511971000000,0.000287971000000,0.000322736000000,0.000261897000000,0.014987416000000,0.000261897000000,0.014488454000000,0.000263872000000,0.000208564000000 +0.000146539000000,0.000282045000000,0.000045798000000,0.000081749000000,0.000278095000000,0.000169847000000,0.000056069000000,0.000133502000000,0.000110193000000,0.000069897000000,0.000280069000000,0.000268218000000,0.000259131000000,0.000301402000000,0.014293689000000,0.000292317000000,0.013869788000000,0.000263872000000,0.000218835000000 +0.000146144000000,0.000309304000000,0.000048169000000,0.000082539000000,0.000195132000000,0.000171823000000,0.000074242000000,0.000130341000000,0.000107427000000,0.000070292000000,0.000357897000000,0.000355131000000,0.000257946000000,0.000263477000000,0.014866132000000,0.000255971000000,0.014536651000000,0.000280464000000,0.000206983000000 +0.000146539000000,0.000395428000000,0.000051724000000,0.000084119000000,0.000196317000000,0.000214884000000,0.000053699000000,0.000199872000000,0.000109008000000,0.000103477000000,0.000270193000000,0.000271378000000,0.000292317000000,0.000233057000000,0.014093787000000,0.000259922000000,0.014183071000000,0.000258342000000,0.000216070000000 +0.000146143000000,0.000384366000000,0.000045403000000,0.000081749000000,0.000196317000000,0.000172613000000,0.000054884000000,0.000131131000000,0.000107823000000,0.000071477000000,0.000341304000000,0.000270588000000,0.000259527000000,0.000248070000000,0.014072058000000,0.000292317000000,0.014000158000000,0.000345255000000,0.000284020000000 +0.000275724000000,0.000261502000000,0.000048169000000,0.000082539000000,0.000196711000000,0.000170242000000,0.000053305000000,0.000130737000000,0.000109403000000,0.000070687000000,0.000283625000000,0.000304959000000,0.000255576000000,0.000263477000000,0.014411811000000,0.000256761000000,0.014245885000000,0.000263872000000,0.000207773000000 +0.000161946000000,0.000310489000000,0.000045799000000,0.000080959000000,0.000195921000000,0.000170637000000,0.000055675000000,0.000131131000000,0.000106638000000,0.000069897000000,0.000273749000000,0.000269403000000,0.000293107000000,0.000297452000000,0.014019911000000,0.000259131000000,0.014195713000000,0.000356711000000,0.000207774000000 +0.000146539000000,0.000259921000000,0.000046193000000,0.000081749000000,0.000196317000000,0.000173403000000,0.000054095000000,0.000131526000000,0.000108218000000,0.000070292000000,0.000304563000000,0.000273353000000,0.000261897000000,0.000270193000000,0.013872948000000,0.000260316000000,0.013879663000000,0.000301403000000,0.000216860000000 +0.000146538000000,0.000294291000000,0.000045798000000,0.000082144000000,0.000266638000000,0.000173403000000,0.000055675000000,0.000132316000000,0.000108613000000,0.000071872000000,0.000281650000000,0.000271773000000,0.000259526000000,0.000235823000000,0.014080750000000,0.000257551000000,0.014229688000000,0.000330242000000,0.000220415000000 +0.000160761000000,0.000261107000000,0.000048168000000,0.000082144000000,0.000194736000000,0.000172218000000,0.000053700000000,0.000131131000000,0.000107033000000,0.000071872000000,0.000270984000000,0.000270588000000,0.000256366000000,0.000283625000000,0.014398379000000,0.000289946000000,0.014243911000000,0.000262687000000,0.000208563000000 +0.000148515000000,0.000296267000000,0.000048168000000,0.000081748000000,0.000198292000000,0.000173798000000,0.000080563000000,0.000131527000000,0.000140613000000,0.000104267000000,0.000275723000000,0.000460613000000,0.000258341000000,0.000264662000000,0.013936158000000,0.000257156000000,0.015311762000000,0.000329847000000,0.000211329000000 +0.000147329000000,0.000262687000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000173008000000,0.000053699000000,0.000130736000000,0.000106637000000,0.000070687000000,0.000280070000000,0.000289946000000,0.000289551000000,0.000267033000000,0.014200849000000,0.000263082000000,0.014684799000000,0.000260317000000,0.000208168000000 +0.000146539000000,0.000265058000000,0.000045798000000,0.000081749000000,0.000197502000000,0.000170638000000,0.000057650000000,0.000148909000000,0.000107428000000,0.000069502000000,0.000304168000000,0.000619032000000,0.000257946000000,0.000299428000000,0.013772997000000,0.000331033000000,0.014288553000000,0.000261107000000,0.000206984000000 +0.000214490000000,0.000276119000000,0.000045798000000,0.000081354000000,0.000197107000000,0.000172218000000,0.000053700000000,0.000137848000000,0.000107428000000,0.000073847000000,0.000274538000000,0.000510390000000,0.000257946000000,0.000269798000000,0.015695366000000,0.000257551000000,0.013694775000000,0.000263872000000,0.000209749000000 +0.000146144000000,0.000260711000000,0.000048168000000,0.000081749000000,0.000195526000000,0.000171822000000,0.000054094000000,0.000145749000000,0.000111378000000,0.000071872000000,0.000271773000000,0.000277304000000,0.000300217000000,0.000208169000000,0.014443021000000,0.000259922000000,0.013860306000000,0.000264267000000,0.000218045000000 +0.000148514000000,0.000295477000000,0.000045798000000,0.000081354000000,0.000332217000000,0.000173798000000,0.000056859000000,0.000131922000000,0.000150095000000,0.000070687000000,0.000273749000000,0.000300613000000,0.000264267000000,0.000298637000000,0.014628700000000,0.000286786000000,0.014218231000000,0.000260712000000,0.000218440000000 +0.000145749000000,0.000260712000000,0.000045403000000,0.000082934000000,0.000196712000000,0.000171032000000,0.000054094000000,0.000130736000000,0.000109008000000,0.000071477000000,0.000272168000000,0.000293106000000,0.000256761000000,0.000264268000000,0.015427514000000,0.000257156000000,0.014416552000000,0.000261897000000,0.000207773000000 +0.000147329000000,0.000292712000000,0.000048563000000,0.000082934000000,0.000195132000000,0.000206194000000,0.000103082000000,0.000201847000000,0.000109798000000,0.000071873000000,0.000308514000000,0.000282835000000,0.000292317000000,0.000260316000000,0.013991071000000,0.000257156000000,0.014017935000000,0.000342489000000,0.000206983000000 +0.000161551000000,0.000261501000000,0.000048564000000,0.000082539000000,0.000195131000000,0.000170637000000,0.000055675000000,0.000131526000000,0.000109008000000,0.000070687000000,0.000270193000000,0.000310885000000,0.000258341000000,0.000434934000000,0.014490429000000,0.000324712000000,0.014353342000000,0.000267428000000,0.000209353000000 +0.000147329000000,0.000260316000000,0.000060810000000,0.000080959000000,0.000197502000000,0.000174193000000,0.000054095000000,0.000131921000000,0.000110193000000,0.000070292000000,0.000273749000000,0.000276909000000,0.000257156000000,0.000208168000000,0.014133293000000,0.000293106000000,0.014508601000000,0.000356316000000,0.000206983000000 +0.000145749000000,0.000265453000000,0.000048168000000,0.000081353000000,0.000194736000000,0.000170638000000,0.000054094000000,0.000131922000000,0.000107823000000,0.000073057000000,0.000337354000000,0.000272958000000,0.000326291000000,0.000304563000000,0.013891911000000,0.000255971000000,0.013687664000000,0.000263872000000,0.000218045000000 +0.000147724000000,0.000259921000000,0.000048168000000,0.000080959000000,0.000195921000000,0.000172218000000,0.000052910000000,0.000164712000000,0.000196316000000,0.000070292000000,0.000272958000000,0.000273354000000,0.000308514000000,0.000337354000000,0.013962232000000,0.000258737000000,0.014964502000000,0.000365403000000,0.000216465000000 +0.000221600000000,0.000295082000000,0.000048168000000,0.000081749000000,0.000279280000000,0.000171822000000,0.000054094000000,0.000131922000000,0.000123625000000,0.000070292000000,0.000268218000000,0.000292712000000,0.000257946000000,0.000261501000000,0.013769047000000,0.000293107000000,0.013855170000000,0.000260712000000,0.000206983000000 +0.000147329000000,0.000265057000000,0.000045403000000,0.000083724000000,0.000195527000000,0.000174588000000,0.000057650000000,0.000131922000000,0.000107427000000,0.000105847000000,0.000282044000000,0.000284021000000,0.000291527000000,0.000295477000000,0.013867812000000,0.000256761000000,0.016152452000000,0.000262686000000,0.000208959000000 +0.000163527000000,0.000301402000000,0.000049353000000,0.000081354000000,0.000196317000000,0.000172218000000,0.000055280000000,0.000132712000000,0.000107032000000,0.000069897000000,0.000275724000000,0.000284415000000,0.000257947000000,0.000245699000000,0.014030182000000,0.000299033000000,0.014820305000000,0.000259921000000,0.000210539000000 +0.000148514000000,0.000262687000000,0.000048168000000,0.000081353000000,0.000194736000000,0.000171032000000,0.000070687000000,0.000131922000000,0.000128761000000,0.000069897000000,0.000352761000000,0.000285996000000,0.000258342000000,0.000237798000000,0.014313836000000,0.000259131000000,0.014387318000000,0.000262292000000,0.000219625000000 +0.000212909000000,0.000263872000000,0.000048168000000,0.000081749000000,0.000208563000000,0.000171427000000,0.000056070000000,0.000201452000000,0.000109008000000,0.000071477000000,0.000276514000000,0.000467724000000,0.000291527000000,0.000314835000000,0.013953145000000,0.000258341000000,0.015290823000000,0.000263082000000,0.000214095000000 +0.000147329000000,0.000299428000000,0.000045798000000,0.000081353000000,0.000195131000000,0.000172612000000,0.000054885000000,0.000130341000000,0.000110588000000,0.000071082000000,0.000270589000000,0.000282045000000,0.000263082000000,0.000284020000000,0.015334280000000,0.000293897000000,0.014446576000000,0.000259921000000,0.000220020000000 +0.000147329000000,0.000260712000000,0.000049749000000,0.000081749000000,0.000196712000000,0.000172218000000,0.000054094000000,0.000134292000000,0.000108217000000,0.000070687000000,0.000269403000000,0.000291526000000,0.000259527000000,0.000301403000000,0.014311861000000,0.000257551000000,0.014542577000000,0.000331823000000,0.000266637000000 +0.000147724000000,0.000260711000000,0.000045798000000,0.000082934000000,0.000265058000000,0.000171822000000,0.000053700000000,0.000131922000000,0.000107033000000,0.000070292000000,0.000269403000000,0.000286786000000,0.000308118000000,0.000253600000000,0.014166478000000,0.000258737000000,0.014032158000000,0.000259921000000,0.000206588000000 +0.000216465000000,0.000262686000000,0.000045403000000,0.000080169000000,0.000197107000000,0.000171032000000,0.000054490000000,0.000130342000000,0.000127971000000,0.000140217000000,0.000337748000000,0.000291131000000,0.000257946000000,0.000278884000000,0.014518873000000,0.000257156000000,0.014089441000000,0.000331427000000,0.000209749000000 +0.000146933000000,0.000263082000000,0.000047774000000,0.000081354000000,0.000194737000000,0.000174984000000,0.000053699000000,0.000192761000000,0.000107428000000,0.000071477000000,0.000272168000000,0.000291132000000,0.000256761000000,0.000264662000000,0.015098033000000,0.000256761000000,0.014078380000000,0.000257946000000,0.000206984000000 +0.000145354000000,0.000305353000000,0.000046983000000,0.000080168000000,0.000196712000000,0.000171032000000,0.000067131000000,0.000135477000000,0.000108613000000,0.000071477000000,0.000271378000000,0.000287180000000,0.000259922000000,0.000278884000000,0.013963416000000,0.000302983000000,0.014364799000000,0.000279675000000,0.000206983000000 +0.000148119000000,0.000429008000000,0.000048168000000,0.000080563000000,0.000196317000000,0.000170242000000,0.000056070000000,0.000133502000000,0.000111378000000,0.000070292000000,0.000300218000000,0.000300217000000,0.000258342000000,0.000269403000000,0.013972108000000,0.000261896000000,0.013951565000000,0.000262687000000,0.000209354000000 +0.000146144000000,0.000307329000000,0.000045403000000,0.000081354000000,0.000196711000000,0.000174193000000,0.000053304000000,0.000132317000000,0.000110589000000,0.000071082000000,0.000267033000000,0.000293897000000,0.000339723000000,0.000288366000000,0.014614478000000,0.000259527000000,0.014475811000000,0.000261502000000,0.000206983000000 +0.000147724000000,0.000262687000000,0.000048169000000,0.000082144000000,0.000196711000000,0.000263477000000,0.000056070000000,0.000165502000000,0.000109007000000,0.000072267000000,0.000272168000000,0.000295477000000,0.000259131000000,0.000273749000000,0.013863466000000,0.000291922000000,0.013732701000000,0.000334193000000,0.000216464000000 +0.000146934000000,0.000264662000000,0.000045403000000,0.000101897000000,0.000263872000000,0.000187625000000,0.000054094000000,0.000131921000000,0.000121255000000,0.000085699000000,0.000653007000000,0.000293502000000,0.000259921000000,0.000234638000000,0.013825541000000,0.000257551000000,0.014689935000000,0.000261897000000,0.000208168000000 +0.000146539000000,0.000258737000000,0.000050934000000,0.000097552000000,0.000196712000000,0.000171428000000,0.000053304000000,0.000132711000000,0.000109798000000,0.000073057000000,0.000291526000000,0.000284415000000,0.000294292000000,0.000299033000000,0.014057441000000,0.000257946000000,0.014932503000000,0.000499329000000,0.000217650000000 +0.000146143000000,0.000258736000000,0.000045798000000,0.000081748000000,0.000196711000000,0.000171033000000,0.000054489000000,0.000130342000000,0.000107033000000,0.000071477000000,0.000408464000000,0.000287181000000,0.000255971000000,0.000264662000000,0.014152256000000,0.000295872000000,0.013981985000000,0.000348810000000,0.000207773000000 +0.000214885000000,0.000263082000000,0.000048169000000,0.000081354000000,0.000195921000000,0.000206193000000,0.000075823000000,0.000133897000000,0.000109008000000,0.000074243000000,0.000376070000000,0.000285996000000,0.000257156000000,0.000245305000000,0.013691614000000,0.000259922000000,0.013964997000000,0.000258736000000,0.000208563000000 +0.000146933000000,0.000266242000000,0.000045008000000,0.000081354000000,0.000210539000000,0.000171428000000,0.000053699000000,0.000170243000000,0.000109403000000,0.000071477000000,0.000265057000000,0.000291526000000,0.000262687000000,0.000309699000000,0.013868997000000,0.000256366000000,0.014018330000000,0.000263477000000,0.000209748000000 +0.000146934000000,0.000298637000000,0.000045798000000,0.000081749000000,0.000195132000000,0.000171427000000,0.000055280000000,0.000133107000000,0.000182490000000,0.000071477000000,0.000293501000000,0.000295081000000,0.000257946000000,0.000284810000000,0.014292503000000,0.000256366000000,0.014057836000000,0.000263872000000,0.000207378000000 +0.000146539000000,0.000264663000000,0.000045403000000,0.000083329000000,0.000195921000000,0.000171428000000,0.000054094000000,0.000131526000000,0.000110983000000,0.000105058000000,0.000267033000000,0.000396218000000,0.000290341000000,0.000235032000000,0.013700306000000,0.000259131000000,0.014497540000000,0.000259527000000,0.000216859000000 +0.000167477000000,0.000294687000000,0.000072662000000,0.000080564000000,0.000233452000000,0.000221205000000,0.000054094000000,0.000130341000000,0.000107033000000,0.000069501000000,0.000260316000000,0.000369748000000,0.000273749000000,0.000268218000000,0.013730330000000,0.000308909000000,0.014026626000000,0.000346045000000,0.000219625000000 +0.000146933000000,0.000262292000000,0.000048564000000,0.000080958000000,0.000196712000000,0.000171428000000,0.000060811000000,0.000133897000000,0.000110193000000,0.000069897000000,0.000295477000000,0.000272563000000,0.000258341000000,0.000245699000000,0.014372700000000,0.000260316000000,0.014092997000000,0.000259921000000,0.000207379000000 +0.000146539000000,0.000263082000000,0.000048564000000,0.000080959000000,0.000195527000000,0.000171823000000,0.000054094000000,0.000132316000000,0.000109008000000,0.000069502000000,0.000259132000000,0.000312069000000,0.000462193000000,0.000325107000000,0.013626825000000,0.000259131000000,0.013904157000000,0.000297057000000,0.000207773000000 +0.000145749000000,0.000261897000000,0.000045404000000,0.000081354000000,0.000195131000000,0.000169847000000,0.000053699000000,0.000130341000000,0.000155625000000,0.000069896000000,0.000257946000000,0.000263082000000,0.000257156000000,0.000261896000000,0.013777737000000,0.000273354000000,0.013998577000000,0.000262687000000,0.000206588000000 +0.000146934000000,0.000262687000000,0.000045403000000,0.000081353000000,0.000229897000000,0.000172218000000,0.000087675000000,0.000130736000000,0.000107033000000,0.000069897000000,0.000298638000000,0.000259922000000,0.000291526000000,0.000265452000000,0.014179516000000,0.000256761000000,0.014621590000000,0.000283230000000,0.000217254000000 +0.000230292000000,0.000328267000000,0.000048168000000,0.000081354000000,0.000196316000000,0.000171823000000,0.000053699000000,0.000131922000000,0.000107428000000,0.000069897000000,0.000257156000000,0.000298638000000,0.000262292000000,0.000261897000000,0.014392454000000,0.000291526000000,0.013835022000000,0.000280070000000,0.000206588000000 +0.000146144000000,0.000264662000000,0.000045403000000,0.000103477000000,0.000195132000000,0.000170638000000,0.000053699000000,0.000150490000000,0.000107428000000,0.000070687000000,0.000257156000000,0.000259921000000,0.000261107000000,0.000248464000000,0.013934182000000,0.000263872000000,0.014548503000000,0.000275329000000,0.000217650000000 +0.000146144000000,0.000313649000000,0.000046193000000,0.000080958000000,0.000195527000000,0.000171033000000,0.000057254000000,0.000130341000000,0.000109403000000,0.000070292000000,0.000308909000000,0.000257551000000,0.000295082000000,0.000261501000000,0.013785244000000,0.000256366000000,0.014314626000000,0.000276909000000,0.000208563000000 +0.000146934000000,0.000262292000000,0.000048168000000,0.000080564000000,0.000516316000000,0.000186440000000,0.000056464000000,0.000132711000000,0.000164316000000,0.000071477000000,0.000259526000000,0.000340119000000,0.000265847000000,0.000296662000000,0.014078775000000,0.000327081000000,0.015029293000000,0.000278094000000,0.000221601000000 +0.000189205000000,0.000297847000000,0.000045798000000,0.000080958000000,0.000223576000000,0.000172218000000,0.000054094000000,0.000130736000000,0.000109403000000,0.000072662000000,0.000271773000000,0.000259526000000,0.000257156000000,0.000267428000000,0.014011614000000,0.000258737000000,0.015600551000000,0.000278094000000,0.000226341000000 +0.000147329000000,0.000260712000000,0.000045404000000,0.000080169000000,0.000195922000000,0.000170243000000,0.000054884000000,0.000130736000000,0.000106638000000,0.000070687000000,0.000267428000000,0.000259527000000,0.000260712000000,0.000229897000000,0.014404700000000,0.000307329000000,0.015999564000000,0.000280069000000,0.000222391000000 +0.000148119000000,0.000261501000000,0.000049354000000,0.000082934000000,0.000194736000000,0.000170637000000,0.000055674000000,0.000225551000000,0.000109007000000,0.000070687000000,0.000272168000000,0.000273748000000,0.000261107000000,0.000284810000000,0.014604997000000,0.000255970000000,0.014330034000000,0.000276909000000,0.000224761000000 +0.000147724000000,0.000259526000000,0.000045798000000,0.000080564000000,0.000195921000000,0.000171032000000,0.000053699000000,0.000163131000000,0.000111773000000,0.000071082000000,0.000306144000000,0.000270588000000,0.000257946000000,0.000270984000000,0.013832651000000,0.000256761000000,0.013820405000000,0.000279280000000,0.000219625000000 +0.000147724000000,0.000262292000000,0.000045008000000,0.000082143000000,0.000228712000000,0.000172217000000,0.000054095000000,0.000131922000000,0.000107823000000,0.000087279000000,0.000258737000000,0.000353551000000,0.000262292000000,0.000256366000000,0.013710577000000,0.000327082000000,0.014067713000000,0.000278884000000,0.000227921000000 +0.000147724000000,0.000276119000000,0.000045403000000,0.000081354000000,0.000196317000000,0.000170637000000,0.000053304000000,0.000132712000000,0.000127181000000,0.000070687000000,0.000258341000000,0.000257156000000,0.000303774000000,0.000339329000000,0.014408651000000,0.000257551000000,0.014146725000000,0.000277699000000,0.000224365000000 +0.000148514000000,0.000261502000000,0.000048169000000,0.000080958000000,0.000197106000000,0.000171822000000,0.000054094000000,0.000131922000000,0.000109403000000,0.000071082000000,0.000299427000000,0.000268613000000,0.000259526000000,0.000275329000000,0.013920355000000,0.000344070000000,0.013773392000000,0.000282440000000,0.000236613000000 +0.000146539000000,0.000291922000000,0.000045798000000,0.000080959000000,0.000196316000000,0.000172613000000,0.000056070000000,0.000130736000000,0.000109008000000,0.000069897000000,0.000270588000000,0.000271378000000,0.000259527000000,0.000247675000000,0.014436700000000,0.000257551000000,0.014172009000000,0.000279675000000,0.000222391000000 +0.000146934000000,0.000261106000000,0.000045798000000,0.000080958000000,0.000267033000000,0.000170638000000,0.000053700000000,0.000131131000000,0.000109008000000,0.000071477000000,0.000327082000000,0.000272168000000,0.000344859000000,0.000257156000000,0.013699121000000,0.000310094000000,0.014331614000000,0.000280070000000,0.000224761000000 +0.000217650000000,0.000260711000000,0.000046193000000,0.000117305000000,0.000195131000000,0.000171428000000,0.000056070000000,0.000133106000000,0.000107428000000,0.000069896000000,0.000258341000000,0.000308118000000,0.000262292000000,0.000256366000000,0.014024651000000,0.000308119000000,0.013942479000000,0.000274934000000,0.000223181000000 +0.000147329000000,0.000278094000000,0.000047379000000,0.000082143000000,0.000196317000000,0.000175378000000,0.000055280000000,0.000131921000000,0.000148909000000,0.000070687000000,0.000258737000000,0.000270588000000,0.000264267000000,0.000293106000000,0.013796701000000,0.000258342000000,0.014320157000000,0.000276119000000,0.000223971000000 +0.000146538000000,0.000302588000000,0.000045799000000,0.000082144000000,0.000230292000000,0.000171033000000,0.000055279000000,0.000165896000000,0.000107032000000,0.000070687000000,0.000641155000000,0.000270193000000,0.000255575000000,0.000257156000000,0.013884800000000,0.000256761000000,0.014286182000000,0.000276514000000,0.000220810000000 +0.000146539000000,0.000260316000000,0.000045798000000,0.000081354000000,0.000195526000000,0.000171823000000,0.000054094000000,0.000132316000000,0.000108613000000,0.000069897000000,0.000276119000000,0.000293501000000,0.000257551000000,0.000246885000000,0.014295268000000,0.000274143000000,0.013774578000000,0.000278884000000,0.000206983000000 +0.000182095000000,0.000291921000000,0.000045798000000,0.000081354000000,0.000196712000000,0.000170637000000,0.000054094000000,0.000135872000000,0.000108613000000,0.000071082000000,0.000273748000000,0.000265847000000,0.000291922000000,0.000283230000000,0.014085886000000,0.000266638000000,0.013613393000000,0.000278489000000,0.000216860000000 +0.000148119000000,0.000264267000000,0.000084514000000,0.000081354000000,0.000196317000000,0.000170243000000,0.000053305000000,0.000132712000000,0.000107823000000,0.000070292000000,0.000280070000000,0.000265452000000,0.000258342000000,0.000265847000000,0.013872947000000,0.000298242000000,0.014115910000000,0.000331428000000,0.000208563000000 +0.000147329000000,0.000298242000000,0.000048168000000,0.000081749000000,0.000196316000000,0.000185650000000,0.000056860000000,0.000130342000000,0.000143378000000,0.000071082000000,0.000331823000000,0.000258736000000,0.000256761000000,0.000270193000000,0.014322133000000,0.000277699000000,0.013986725000000,0.000278094000000,0.000208168000000 +0.000147329000000,0.000261502000000,0.000045798000000,0.000082144000000,0.000196316000000,0.000171823000000,0.000053699000000,0.000130737000000,0.000107822000000,0.000070292000000,0.000271379000000,0.000274934000000,0.000297847000000,0.000301008000000,0.014204404000000,0.000260316000000,0.014140404000000,0.000275724000000,0.000207773000000 +0.000147724000000,0.000261502000000,0.000046193000000,0.000081354000000,0.000195526000000,0.000172613000000,0.000053304000000,0.000130341000000,0.000107427000000,0.000139823000000,0.000280465000000,0.000304168000000,0.000275724000000,0.000243329000000,0.014617244000000,0.000292712000000,0.014275911000000,0.000380020000000,0.000208564000000 +0.000411230000000,0.000349206000000,0.000050539000000,0.000080563000000,0.000230687000000,0.000205008000000,0.000068317000000,0.000132711000000,0.000110983000000,0.000086095000000,0.000324711000000,0.000269008000000,0.000292317000000,0.000234638000000,0.016164699000000,0.000257946000000,0.013937738000000,0.000280859000000,0.000289551000000 +0.000250044000000,0.000260317000000,0.000046193000000,0.000080564000000,0.000195132000000,0.000171032000000,0.000054094000000,0.000130736000000,0.000107823000000,0.000074638000000,0.000276119000000,0.000313254000000,0.000255576000000,0.000299033000000,0.014787515000000,0.000259131000000,0.013817639000000,0.000263082000000,0.000261502000000 +0.000180909000000,0.000292712000000,0.000046193000000,0.000080563000000,0.000195922000000,0.000171823000000,0.000053700000000,0.000165502000000,0.000107427000000,0.000069897000000,0.000369353000000,0.000257551000000,0.000260316000000,0.000265452000000,0.014052701000000,0.000272564000000,0.014480157000000,0.000265057000000,0.000243329000000 +0.000147724000000,0.000260316000000,0.000045798000000,0.000081354000000,0.000196316000000,0.000172218000000,0.000054490000000,0.000131921000000,0.000154835000000,0.000071477000000,0.000528563000000,0.000268613000000,0.000294292000000,0.000272564000000,0.014025441000000,0.000256760000000,0.014525589000000,0.000259922000000,0.000210539000000 +0.000146144000000,0.000333798000000,0.000082144000000,0.000081353000000,0.000228316000000,0.000192761000000,0.000053304000000,0.000151279000000,0.000109008000000,0.000071873000000,0.000337354000000,0.000309699000000,0.000256761000000,0.000338143000000,0.013976059000000,0.000293501000000,0.014212305000000,0.000366193000000,0.000208959000000 +0.000148119000000,0.000259132000000,0.000047774000000,0.000081354000000,0.000195131000000,0.000343279000000,0.000056465000000,0.000145749000000,0.000109008000000,0.000071477000000,0.000265057000000,0.000276119000000,0.000257551000000,0.000267032000000,0.014312256000000,0.000260712000000,0.013840947000000,0.000263477000000,0.000208959000000 +0.000146144000000,0.000297057000000,0.000047774000000,0.000080959000000,0.000194736000000,0.000172218000000,0.000054095000000,0.000163526000000,0.000111378000000,0.000083724000000,0.000271379000000,0.000351576000000,0.000504069000000,0.000300218000000,0.014119071000000,0.000257156000000,0.014553244000000,0.000295872000000,0.000207773000000 +0.000145749000000,0.000262292000000,0.000048169000000,0.000080564000000,0.000195921000000,0.000173403000000,0.000053699000000,0.000131922000000,0.000109008000000,0.000070292000000,0.000319181000000,0.000424662000000,0.000398588000000,0.000257156000000,0.014757095000000,0.000342095000000,0.013995812000000,0.000261502000000,0.000230687000000 +0.000146539000000,0.000259526000000,0.000046194000000,0.000080958000000,0.000195131000000,0.000172218000000,0.000056859000000,0.000131922000000,0.000144169000000,0.000069502000000,0.000271773000000,0.000351971000000,0.000274144000000,0.000254391000000,0.014356898000000,0.000256761000000,0.014474627000000,0.000280070000000,0.000207379000000 +0.000148514000000,0.000261502000000,0.000048169000000,0.000080959000000,0.000197106000000,0.000172218000000,0.000058440000000,0.000130737000000,0.000108218000000,0.000070291000000,0.000288761000000,0.000262292000000,0.000258342000000,0.000306934000000,0.014465935000000,0.000292712000000,0.014461194000000,0.000323921000000,0.000209353000000 +0.000148119000000,0.000264267000000,0.000045798000000,0.000116909000000,0.000194736000000,0.000170638000000,0.000056069000000,0.000130342000000,0.000107428000000,0.000091230000000,0.000282045000000,0.000273353000000,0.000333403000000,0.000262292000000,0.014825836000000,0.000259526000000,0.014232454000000,0.000260317000000,0.000241748000000 +0.000189600000000,0.000294291000000,0.000045403000000,0.000081749000000,0.000230292000000,0.000170242000000,0.000054489000000,0.000131921000000,0.000108613000000,0.000071082000000,0.000271774000000,0.000339724000000,0.000259132000000,0.000262292000000,0.013758775000000,0.000257551000000,0.013938923000000,0.000311675000000,0.000216859000000 +0.000147329000000,0.000261106000000,0.000064366000000,0.000080563000000,0.000195132000000,0.000171428000000,0.000054885000000,0.000131527000000,0.000107823000000,0.000071873000000,0.000299823000000,0.000275329000000,0.000331033000000,0.000261501000000,0.013727565000000,0.000311675000000,0.014207959000000,0.000296267000000,0.000206588000000 +0.000146934000000,0.000333403000000,0.000046588000000,0.000081749000000,0.000196316000000,0.000173008000000,0.000054885000000,0.000132317000000,0.000176959000000,0.000071477000000,0.000261897000000,0.000302193000000,0.000261897000000,0.000258736000000,0.016502081000000,0.000260712000000,0.014687169000000,0.000259922000000,0.000267032000000 +0.000148119000000,0.000260712000000,0.000045798000000,0.000080564000000,0.000195921000000,0.000170637000000,0.000053699000000,0.000132316000000,0.000127971000000,0.000071478000000,0.000268613000000,0.000272958000000,0.000259131000000,0.000238588000000,0.014156601000000,0.000259131000000,0.014328849000000,0.000260711000000,0.000209749000000 +0.000149304000000,0.000264267000000,0.000048169000000,0.000081354000000,0.000194736000000,0.000173008000000,0.000087675000000,0.000132316000000,0.000111378000000,0.000070687000000,0.000344465000000,0.000270983000000,0.000332613000000,0.000329847000000,0.014179516000000,0.000305353000000,0.014110775000000,0.000262687000000,0.000209354000000 +0.000146539000000,0.000259526000000,0.000046984000000,0.000175773000000,0.000194736000000,0.000170637000000,0.000053304000000,0.000132316000000,0.000108613000000,0.000071477000000,0.000267033000000,0.000350786000000,0.000259526000000,0.000257551000000,0.014802132000000,0.000259131000000,0.013932997000000,0.000262292000000,0.000226736000000 +0.000147724000000,0.000261896000000,0.000045798000000,0.000200267000000,0.000195921000000,0.000171428000000,0.000053699000000,0.000133106000000,0.000107823000000,0.000070292000000,0.000301007000000,0.000273354000000,0.000283230000000,0.000225156000000,0.015147416000000,0.000373304000000,0.013680157000000,0.000293897000000,0.000206588000000 +0.000144958000000,0.000332218000000,0.000045798000000,0.000111378000000,0.000230292000000,0.000171033000000,0.000054095000000,0.000132316000000,0.000186045000000,0.000069897000000,0.000270588000000,0.000344069000000,0.000255576000000,0.000262687000000,0.014463959000000,0.000258736000000,0.014390083000000,0.000262292000000,0.000208169000000 +0.000146144000000,0.000261106000000,0.000045798000000,0.000080564000000,0.000202638000000,0.000173403000000,0.000053304000000,0.000131921000000,0.000111774000000,0.000075427000000,0.000271379000000,0.000285996000000,0.000260317000000,0.000245304000000,0.014940008000000,0.000257551000000,0.014202429000000,0.000260712000000,0.000206983000000 +0.000161156000000,0.000297847000000,0.000082143000000,0.000084119000000,0.000194341000000,0.000172218000000,0.000054885000000,0.000215674000000,0.000108613000000,0.000069501000000,0.000269798000000,0.000267428000000,0.000354736000000,0.000336958000000,0.014074429000000,0.000258736000000,0.014010824000000,0.000260712000000,0.000216465000000 +0.000150094000000,0.000312465000000,0.000045403000000,0.000080959000000,0.000195132000000,0.000170638000000,0.000053304000000,0.000130736000000,0.000107428000000,0.000070292000000,0.000259526000000,0.000321156000000,0.000259131000000,0.000271774000000,0.014356108000000,0.000257551000000,0.013819614000000,0.000259921000000,0.000209748000000 +0.000148909000000,0.000462588000000,0.000048563000000,0.000082144000000,0.000208563000000,0.000171427000000,0.000053304000000,0.000134292000000,0.000107033000000,0.000069502000000,0.000292711000000,0.000271379000000,0.000257946000000,0.000261897000000,0.014195318000000,0.000294292000000,0.016694082000000,0.000265848000000,0.000206588000000 +0.000148514000000,0.000277699000000,0.000048564000000,0.000080958000000,0.000195131000000,0.000174588000000,0.000088859000000,0.000139032000000,0.000108612000000,0.000071873000000,0.000265057000000,0.000311280000000,0.000294687000000,0.000265848000000,0.014061392000000,0.000255971000000,0.014316997000000,0.000261107000000,0.000243724000000 +0.000180119000000,0.000315625000000,0.000045403000000,0.000082144000000,0.000196317000000,0.000170637000000,0.000055279000000,0.000167477000000,0.000107032000000,0.000069107000000,0.000272168000000,0.000274933000000,0.000256366000000,0.000242539000000,0.014159762000000,0.000256366000000,0.014404305000000,0.000294687000000,0.000208959000000 +0.000147329000000,0.000264662000000,0.000046193000000,0.000082144000000,0.000228712000000,0.000169847000000,0.000054094000000,0.000134292000000,0.000107033000000,0.000069502000000,0.000302588000000,0.000276119000000,0.000257946000000,0.000264267000000,0.013918380000000,0.000334983000000,0.014304354000000,0.000260316000000,0.000207774000000 +0.000147329000000,0.000295082000000,0.000047773000000,0.000080168000000,0.000196712000000,0.000170638000000,0.000056465000000,0.000133106000000,0.000107428000000,0.000070687000000,0.000261502000000,0.000320366000000,0.000258342000000,0.000560563000000,0.014032553000000,0.000256761000000,0.015452008000000,0.000298242000000,0.000238983000000 +0.000144958000000,0.000261502000000,0.000048169000000,0.000082143000000,0.000196317000000,0.000170638000000,0.000056070000000,0.000134292000000,0.000110193000000,0.000107823000000,0.000270588000000,0.000278489000000,0.000260711000000,0.000263082000000,0.013837788000000,0.000256761000000,0.014862971000000,0.000265847000000,0.000393057000000 +0.000148119000000,0.000261501000000,0.000067921000000,0.000081353000000,0.000196711000000,0.000174193000000,0.000053700000000,0.000171822000000,0.000142193000000,0.000086094000000,0.000349995000000,0.000273354000000,0.000293502000000,0.000299032000000,0.013852405000000,0.000259922000000,0.014597491000000,0.000259526000000,0.000220415000000 +0.000215280000000,0.000261897000000,0.000065552000000,0.000081354000000,0.000231082000000,0.000173403000000,0.000055674000000,0.000226736000000,0.000107033000000,0.000070292000000,0.000270193000000,0.000275724000000,0.000256761000000,0.000206983000000,0.014120256000000,0.000259922000000,0.014128552000000,0.000265847000000,0.000340514000000 +0.000147724000000,0.000264662000000,0.000062786000000,0.000081749000000,0.000195527000000,0.000171428000000,0.000056465000000,0.000132316000000,0.000107428000000,0.000070292000000,0.000268613000000,0.000272959000000,0.000257156000000,0.000260317000000,0.013938923000000,0.000299822000000,0.013966182000000,0.000262687000000,0.000219230000000 +0.000148514000000,0.000297057000000,0.000049749000000,0.000081749000000,0.000195131000000,0.000172218000000,0.000054489000000,0.000131131000000,0.000108613000000,0.000074242000000,0.000268218000000,0.000352761000000,0.000259921000000,0.000301008000000,0.013802232000000,0.000257552000000,0.015237095000000,0.000295082000000,0.000211329000000 +0.000146538000000,0.000261897000000,0.000045403000000,0.000080959000000,0.000196316000000,0.000173403000000,0.000054489000000,0.000167082000000,0.000108612000000,0.000103872000000,0.000266637000000,0.000270588000000,0.000362638000000,0.000255971000000,0.014294874000000,0.000260712000000,0.014032158000000,0.000262687000000,0.000207774000000 +0.000203823000000,0.000295477000000,0.000045403000000,0.000082539000000,0.000194341000000,0.000170637000000,0.000054489000000,0.000131526000000,0.000108218000000,0.000069897000000,0.000317600000000,0.000259132000000,0.000314440000000,0.000333797000000,0.013908108000000,0.000307724000000,0.014118280000000,0.000348810000000,0.000206588000000 +0.000147329000000,0.000261107000000,0.000045798000000,0.000080958000000,0.000195132000000,0.000172217000000,0.000054490000000,0.000135082000000,0.000108613000000,0.000069896000000,0.000269007000000,0.000317995000000,0.000261502000000,0.000205403000000,0.014062182000000,0.000265057000000,0.013637096000000,0.000259921000000,0.000216859000000 +0.000146934000000,0.000294687000000,0.000045798000000,0.000082144000000,0.000196712000000,0.000171033000000,0.000054095000000,0.000130342000000,0.000109008000000,0.000073058000000,0.000269798000000,0.000258737000000,0.000284415000000,0.000265848000000,0.014956207000000,0.000255971000000,0.014472651000000,0.000284810000000,0.000207773000000 +0.000146144000000,0.000264662000000,0.000060810000000,0.000080564000000,0.000228711000000,0.000173008000000,0.000054490000000,0.000130736000000,0.000109008000000,0.000071082000000,0.000442439000000,0.000257551000000,0.000258736000000,0.000369353000000,0.014348602000000,0.000289156000000,0.013783269000000,0.000265848000000,0.000208563000000 +0.000146539000000,0.000259132000000,0.000048169000000,0.000080168000000,0.000195921000000,0.000173403000000,0.000053699000000,0.000200662000000,0.000108218000000,0.000070292000000,0.000274934000000,0.000291131000000,0.000273354000000,0.000279674000000,0.013692010000000,0.000257551000000,0.014260108000000,0.000259526000000,0.000208563000000 +0.000146539000000,0.000265452000000,0.000046193000000,0.000081749000000,0.000244119000000,0.000172613000000,0.000054489000000,0.000131527000000,0.000108218000000,0.000071082000000,0.000349601000000,0.000268612000000,0.000292711000000,0.000263477000000,0.014135664000000,0.000263082000000,0.014485688000000,0.000261897000000,0.000207378000000 +0.000145748000000,0.000264662000000,0.000048168000000,0.000080168000000,0.000194737000000,0.000172218000000,0.000052909000000,0.000136268000000,0.000108613000000,0.000139428000000,0.000270588000000,0.000371329000000,0.000260316000000,0.000260712000000,0.014303169000000,0.000263477000000,0.013972109000000,0.000299427000000,0.000216859000000 +0.000146539000000,0.000294687000000,0.000047773000000,0.000080959000000,0.000208959000000,0.000176168000000,0.000056860000000,0.000130736000000,0.000108218000000,0.000071477000000,0.000276514000000,0.000259922000000,0.000268613000000,0.000225551000000,0.014023071000000,0.000256761000000,0.014170429000000,0.000297847000000,0.000207773000000 +0.000147724000000,0.000264268000000,0.000045798000000,0.000081749000000,0.000196316000000,0.000170637000000,0.000054489000000,0.000129946000000,0.000108613000000,0.000070292000000,0.000366193000000,0.000279675000000,0.000348415000000,0.000260712000000,0.013964997000000,0.000342095000000,0.014222972000000,0.000263872000000,0.000218045000000 +0.000179329000000,0.000295082000000,0.000117304000000,0.000080564000000,0.000195131000000,0.000171427000000,0.000055675000000,0.000138242000000,0.000106637000000,0.000069897000000,0.000269798000000,0.000262687000000,0.000259922000000,0.000281255000000,0.014000552000000,0.000260711000000,0.013980800000000,0.000307724000000,0.000206588000000 +0.000146538000000,0.000260317000000,0.000048168000000,0.000082143000000,0.000216465000000,0.000170243000000,0.000054490000000,0.000131526000000,0.000112564000000,0.000070687000000,0.000302193000000,0.000259921000000,0.000293106000000,0.000274143000000,0.014164503000000,0.000257551000000,0.013901787000000,0.000263872000000,0.000218045000000 +0.000146539000000,0.000262292000000,0.000046193000000,0.000081748000000,0.000196711000000,0.000207379000000,0.000056465000000,0.000133107000000,0.000141008000000,0.000071872000000,0.000277699000000,0.000293502000000,0.000261107000000,0.000251625000000,0.014161737000000,0.000273354000000,0.014787910000000,0.000259131000000,0.000216465000000 +0.000146144000000,0.000258736000000,0.000045403000000,0.000081354000000,0.000196316000000,0.000171033000000,0.000087675000000,0.000131922000000,0.000107033000000,0.000071082000000,0.000269008000000,0.000265452000000,0.000261106000000,0.000267822000000,0.014496750000000,0.000257946000000,0.014011220000000,0.000279279000000,0.000296662000000 +0.000146934000000,0.000262687000000,0.000046193000000,0.000080959000000,0.000195921000000,0.000172217000000,0.000054094000000,0.000223181000000,0.000109008000000,0.000069897000000,0.000307329000000,0.000258341000000,0.000543181000000,0.000227131000000,0.013975269000000,0.000293501000000,0.013705837000000,0.000261897000000,0.000216069000000 +0.000146539000000,0.000262687000000,0.000048169000000,0.000129551000000,0.000228317000000,0.000172218000000,0.000056860000000,0.000131921000000,0.000108613000000,0.000069502000000,0.000265057000000,0.000306539000000,0.000273353000000,0.000299823000000,0.014149095000000,0.000256761000000,0.013899416000000,0.000296267000000,0.000206983000000 +0.000146144000000,0.000260712000000,0.000048959000000,0.000080959000000,0.000194736000000,0.000173008000000,0.000053700000000,0.000131922000000,0.000106638000000,0.000070687000000,0.000272958000000,0.000276514000000,0.000293107000000,0.000261501000000,0.014357688000000,0.000255576000000,0.014276305000000,0.000263082000000,0.000217650000000 +0.000146539000000,0.000307329000000,0.000045798000000,0.000081353000000,0.000195131000000,0.000170637000000,0.000054489000000,0.000131922000000,0.000127971000000,0.000071477000000,0.000314835000000,0.000257156000000,0.000258736000000,0.000249650000000,0.014892601000000,0.000325501000000,0.013809738000000,0.000305749000000,0.000208564000000 +0.000146934000000,0.000260711000000,0.000048169000000,0.000081354000000,0.000194736000000,0.000171822000000,0.000053304000000,0.000131922000000,0.000109798000000,0.000072268000000,0.000266637000000,0.000272564000000,0.000259922000000,0.000316020000000,0.014487268000000,0.000261107000000,0.014220601000000,0.000259921000000,0.000218045000000 +0.000230687000000,0.000306143000000,0.000045798000000,0.000081354000000,0.000266638000000,0.000171427000000,0.000054489000000,0.000132317000000,0.000108613000000,0.000071082000000,0.000270588000000,0.000269798000000,0.000271773000000,0.000231477000000,0.014377837000000,0.000258341000000,0.014115121000000,0.000262686000000,0.000215279000000 +0.000146934000000,0.000260711000000,0.000045403000000,0.000081354000000,0.000195527000000,0.000182490000000,0.000055675000000,0.000131132000000,0.000107032000000,0.000157996000000,0.000269403000000,0.000295082000000,0.000262292000000,0.000280465000000,0.014513737000000,0.000305749000000,0.014434330000000,0.000263082000000,0.000206983000000 +0.000147329000000,0.000261896000000,0.000048168000000,0.000081748000000,0.000194736000000,0.000199872000000,0.000070292000000,0.000132711000000,0.000107032000000,0.000072267000000,0.000265847000000,0.000269007000000,0.000289946000000,0.000297848000000,0.014441441000000,0.000306933000000,0.013934182000000,0.000258737000000,0.000218440000000 +0.000147724000000,0.000265847000000,0.000047773000000,0.000081749000000,0.000209748000000,0.000171032000000,0.000055674000000,0.000131922000000,0.000108217000000,0.000070292000000,0.000302588000000,0.000260317000000,0.000257946000000,0.000242144000000,0.014131318000000,0.000292317000000,0.014392454000000,0.000294292000000,0.000207773000000 +0.000179724000000,0.000264662000000,0.000045798000000,0.000080564000000,0.000195922000000,0.000170637000000,0.000055280000000,0.000200662000000,0.000106242000000,0.000071872000000,0.000266637000000,0.000299428000000,0.000262292000000,0.000272958000000,0.014693491000000,0.000257551000000,0.014158182000000,0.000262292000000,0.000217650000000 +0.000146538000000,0.000295082000000,0.000045403000000,0.000081353000000,0.000196712000000,0.000173008000000,0.000054094000000,0.000131132000000,0.000127576000000,0.000071082000000,0.000279279000000,0.000279280000000,0.000291921000000,0.000296267000000,0.014749589000000,0.000257946000000,0.014504255000000,0.000332218000000,0.000217650000000 +0.000145748000000,0.000261502000000,0.000045798000000,0.000080563000000,0.000233057000000,0.000171822000000,0.000054490000000,0.000131526000000,0.000123625000000,0.000069897000000,0.000291527000000,0.000286390000000,0.000259131000000,0.000237008000000,0.014064552000000,0.000537649000000,0.014056651000000,0.000573996000000,0.000207773000000 +0.000148514000000,0.000261896000000,0.000059625000000,0.000080958000000,0.000195132000000,0.000171427000000,0.000056070000000,0.000131922000000,0.000107428000000,0.000117304000000,0.000263082000000,0.000307329000000,0.000257156000000,0.000293502000000,0.015656255000000,0.000274934000000,0.013995417000000,0.000447971000000,0.000217650000000 +0.000146538000000,0.000293107000000,0.000048168000000,0.000080564000000,0.000196711000000,0.000171033000000,0.000054095000000,0.000130736000000,0.000108218000000,0.000070292000000,0.000257156000000,0.000264267000000,0.000258736000000,0.000242934000000,0.014638972000000,0.000296662000000,0.013868207000000,0.000314835000000,0.000209749000000 +0.000159181000000,0.000261502000000,0.000048169000000,0.000081748000000,0.000195921000000,0.000173008000000,0.000107428000000,0.000130736000000,0.000127971000000,0.000072662000000,0.000317206000000,0.000260711000000,0.000257156000000,0.000263477000000,0.014224948000000,0.000258737000000,0.013820010000000,0.000462983000000,0.000208958000000 +0.000146539000000,0.000259526000000,0.000047774000000,0.000081354000000,0.000229501000000,0.000172218000000,0.000067921000000,0.000130737000000,0.000108613000000,0.000069897000000,0.000257551000000,0.000263082000000,0.000278094000000,0.000347230000000,0.015105539000000,0.000261501000000,0.014680454000000,0.000259526000000,0.000218044000000 +0.000146144000000,0.000260712000000,0.000060020000000,0.000082144000000,0.000193947000000,0.000172218000000,0.000054094000000,0.000131921000000,0.000108613000000,0.000071478000000,0.000312069000000,0.000270983000000,0.000259526000000,0.000287181000000,0.014710873000000,0.000258341000000,0.013629590000000,0.000263872000000,0.000233057000000 +0.000146144000000,0.000403724000000,0.000045798000000,0.000081353000000,0.000195922000000,0.000170243000000,0.000054095000000,0.000132316000000,0.000107428000000,0.000071873000000,0.000269008000000,0.000341304000000,0.000256366000000,0.000231082000000,0.014499120000000,0.000257946000000,0.014182676000000,0.000261107000000,0.000211723000000 +0.000180119000000,0.000261107000000,0.000048168000000,0.000083329000000,0.000196316000000,0.000207379000000,0.000053699000000,0.000152070000000,0.000109403000000,0.000070292000000,0.000273354000000,0.000265452000000,0.000296267000000,0.000241353000000,0.014305935000000,0.000303773000000,0.013987910000000,0.000260711000000,0.000227526000000 +0.000146143000000,0.000297848000000,0.000063181000000,0.000081353000000,0.000196317000000,0.000171032000000,0.000055674000000,0.000132712000000,0.000181304000000,0.000085699000000,0.000310094000000,0.000276119000000,0.000308119000000,0.000257156000000,0.014713638000000,0.000260712000000,0.013784454000000,0.000260712000000,0.000241354000000 +0.000147328000000,0.000261897000000,0.000048564000000,0.000080959000000,0.000196711000000,0.000172218000000,0.000054095000000,0.000131527000000,0.000107428000000,0.000070687000000,0.000263081000000,0.000306538000000,0.000258341000000,0.000280070000000,0.014689145000000,0.000264662000000,0.013462479000000,0.000408464000000,0.000222786000000 +0.000148120000000,0.000262687000000,0.000045798000000,0.000081748000000,0.000194342000000,0.000171823000000,0.000053699000000,0.000185255000000,0.000107032000000,0.000071872000000,0.000259526000000,0.000277699000000,0.000274539000000,0.000269798000000,0.014377441000000,0.000272563000000,0.014051910000000,0.000309304000000,0.000220416000000 +0.000146538000000,0.000299428000000,0.000045798000000,0.000081354000000,0.000231082000000,0.000172613000000,0.000124415000000,0.000165502000000,0.000109008000000,0.000072267000000,0.000445600000000,0.000259131000000,0.000257156000000,0.000229107000000,0.015651119000000,0.000261107000000,0.014394034000000,0.000399773000000,0.000223181000000 +0.000420316000000,0.000260712000000,0.000045799000000,0.000082539000000,0.000196712000000,0.000170638000000,0.000057255000000,0.000131922000000,0.000107032000000,0.000071477000000,0.000268218000000,0.000270193000000,0.000296662000000,0.000274539000000,0.014627515000000,0.000295872000000,0.013797886000000,0.000267823000000,0.000231477000000 +0.000162736000000,0.000261897000000,0.000048169000000,0.000080169000000,0.000195132000000,0.000170638000000,0.000056860000000,0.000130736000000,0.000142983000000,0.000073452000000,0.000304958000000,0.000263477000000,0.000256366000000,0.000264267000000,0.014777638000000,0.000273354000000,0.014328849000000,0.000293897000000,0.000224366000000 +0.000146539000000,0.000260317000000,0.000052909000000,0.000083329000000,0.000196711000000,0.000170243000000,0.000053700000000,0.000131131000000,0.000107033000000,0.000119280000000,0.000357502000000,0.000323921000000,0.000255971000000,0.000263082000000,0.015167959000000,0.000259132000000,0.014679268000000,0.000259921000000,0.000224366000000 +0.000181304000000,0.000356317000000,0.000150489000000,0.000081354000000,0.000212910000000,0.000174983000000,0.000053699000000,0.000131131000000,0.000108613000000,0.000070687000000,0.000291527000000,0.000272958000000,0.000325106000000,0.000291922000000,0.014423663000000,0.000292316000000,0.014127367000000,0.000310489000000,0.000222391000000 +0.000147329000000,0.000262292000000,0.000146144000000,0.000080168000000,0.000196316000000,0.000171823000000,0.000055674000000,0.000212514000000,0.000108218000000,0.000073848000000,0.000270193000000,0.000271773000000,0.000258341000000,0.000266638000000,0.014574182000000,0.000262687000000,0.014068108000000,0.000263477000000,0.000225551000000 +0.000146934000000,0.000296662000000,0.000119279000000,0.000082539000000,0.000210539000000,0.000170637000000,0.000087675000000,0.000131526000000,0.000108218000000,0.000069897000000,0.000269008000000,0.000335773000000,0.000262292000000,0.000211329000000,0.015301885000000,0.000260712000000,0.013619714000000,0.000306538000000,0.000221995000000 +0.000147329000000,0.000259922000000,0.000112169000000,0.000082144000000,0.000197107000000,0.000171822000000,0.000054095000000,0.000131921000000,0.000109008000000,0.000070292000000,0.000305749000000,0.000270983000000,0.000272168000000,0.000294292000000,0.014299219000000,0.000289946000000,0.014140009000000,0.000260711000000,0.000225156000000 +0.000180909000000,0.000334588000000,0.000048564000000,0.000080958000000,0.000195922000000,0.000173402000000,0.000054094000000,0.000130342000000,0.000123230000000,0.000070687000000,0.000274934000000,0.000289156000000,0.000262292000000,0.000259131000000,0.014681243000000,0.000258736000000,0.014464354000000,0.000260712000000,0.000225946000000 +0.000146934000000,0.000260712000000,0.000045798000000,0.000081354000000,0.000216465000000,0.000170242000000,0.000054095000000,0.000131132000000,0.000108613000000,0.000069501000000,0.000274933000000,0.000278094000000,0.000294292000000,0.000265452000000,0.015022182000000,0.000319970000000,0.014750774000000,0.000260317000000,0.000224761000000 +0.000145748000000,0.000263872000000,0.000048168000000,0.000080563000000,0.000197107000000,0.000171033000000,0.000053304000000,0.000130736000000,0.000107033000000,0.000151280000000,0.000343280000000,0.000280465000000,0.000255180000000,0.000416366000000,0.014357688000000,0.000256366000000,0.015750280000000,0.000261502000000,0.000223181000000 +0.000146539000000,0.000262292000000,0.000045008000000,0.000080959000000,0.000195132000000,0.000172613000000,0.000055674000000,0.000130341000000,0.000108613000000,0.000110983000000,0.000259132000000,0.000313650000000,0.000259131000000,0.000244514000000,0.014205589000000,0.000256366000000,0.014582478000000,0.000312465000000,0.000208168000000 +0.000147724000000,0.000258341000000,0.000047379000000,0.000080958000000,0.000195922000000,0.000173403000000,0.000056860000000,0.000129946000000,0.000109008000000,0.000088464000000,0.000302983000000,0.000272168000000,0.000295477000000,0.000265057000000,0.014267219000000,0.000289551000000,0.014080355000000,0.000263082000000,0.000206983000000 +0.000179724000000,0.000300612000000,0.000048168000000,0.000081749000000,0.000230687000000,0.000172218000000,0.000055675000000,0.000131526000000,0.000141403000000,0.000073057000000,0.000269798000000,0.000274143000000,0.000259922000000,0.000259131000000,0.016203810000000,0.000261107000000,0.014200453000000,0.000334983000000,0.000208168000000 +0.000146934000000,0.000261106000000,0.000045403000000,0.000080564000000,0.000194736000000,0.000171823000000,0.000055674000000,0.000130737000000,0.000109008000000,0.000077008000000,0.000257551000000,0.000265848000000,0.000259131000000,0.000256761000000,0.015256847000000,0.000258341000000,0.014042034000000,0.000263872000000,0.000208168000000 +0.000146934000000,0.000296662000000,0.000047774000000,0.000081353000000,0.000194737000000,0.000170243000000,0.000054489000000,0.000144168000000,0.000108613000000,0.000072662000000,0.000330637000000,0.000276909000000,0.000259526000000,0.000288366000000,0.015874724000000,0.000273748000000,0.014116701000000,0.000269403000000,0.000208168000000 +0.000146143000000,0.000261107000000,0.000048168000000,0.000082539000000,0.000315625000000,0.000193551000000,0.000054884000000,0.000130736000000,0.000109403000000,0.000069502000000,0.000258341000000,0.000305353000000,0.000257551000000,0.000239378000000,0.014818725000000,0.000258341000000,0.014050330000000,0.000261897000000,0.000207379000000 +0.000181699000000,0.000260712000000,0.000045798000000,0.000082144000000,0.000213699000000,0.000209354000000,0.000053700000000,0.000130737000000,0.000108613000000,0.000069502000000,0.000259921000000,0.000276514000000,0.000295082000000,0.000229502000000,0.014552058000000,0.000292712000000,0.014017145000000,0.000262687000000,0.000357501000000 +0.000147329000000,0.000262687000000,0.000045798000000,0.000080564000000,0.000196316000000,0.000170242000000,0.000053304000000,0.000130736000000,0.000146934000000,0.000071477000000,0.000291131000000,0.000269403000000,0.000259527000000,0.000300613000000,0.014503861000000,0.000261107000000,0.013856750000000,0.000263082000000,0.000216465000000 +0.000147724000000,0.000264267000000,0.000045403000000,0.000080958000000,0.000194736000000,0.000171823000000,0.000057650000000,0.000165106000000,0.000108218000000,0.000070292000000,0.000257946000000,0.000303378000000,0.000259921000000,0.000270193000000,0.014926576000000,0.000294687000000,0.014918280000000,0.000259527000000,0.000206588000000 +0.000145749000000,0.000276119000000,0.000049354000000,0.000081354000000,0.000195527000000,0.000173798000000,0.000053699000000,0.000130736000000,0.000107428000000,0.000071082000000,0.000259922000000,0.000272169000000,0.000293106000000,0.000262292000000,0.014274330000000,0.000292316000000,0.013873738000000,0.000293897000000,0.000208168000000 +0.000148514000000,0.000264267000000,0.000045798000000,0.000080169000000,0.000194736000000,0.000173403000000,0.000070292000000,0.000130736000000,0.000109798000000,0.000071477000000,0.000598094000000,0.000270588000000,0.000261106000000,0.000288366000000,0.014462774000000,0.000255971000000,0.014076405000000,0.000261502000000,0.000262687000000 +0.000180514000000,0.000296267000000,0.000045798000000,0.000080168000000,0.000196317000000,0.000172612000000,0.000054094000000,0.000131131000000,0.000107032000000,0.000093206000000,0.000308909000000,0.000333798000000,0.000257946000000,0.000282835000000,0.014540601000000,0.000260712000000,0.015066823000000,0.000300613000000,0.000208564000000 +0.000146934000000,0.000261502000000,0.000047774000000,0.000081748000000,0.000275724000000,0.000172218000000,0.000055674000000,0.000133897000000,0.000108612000000,0.000072267000000,0.000265058000000,0.000275724000000,0.000289156000000,0.000223971000000,0.014068108000000,0.000255576000000,0.016697242000000,0.000262291000000,0.000209354000000 +0.000145749000000,0.000262687000000,0.000047773000000,0.000082144000000,0.000196712000000,0.000175378000000,0.000054489000000,0.000130736000000,0.000137848000000,0.000070687000000,0.000260712000000,0.000308119000000,0.000257156000000,0.000270983000000,0.014342676000000,0.000260317000000,0.014422083000000,0.000259526000000,0.000208959000000 +0.000146934000000,0.000263082000000,0.000045798000000,0.000081354000000,0.000194341000000,0.000174193000000,0.000056070000000,0.000132317000000,0.000107033000000,0.000071872000000,0.000291131000000,0.000269402000000,0.000259131000000,0.000259922000000,0.014994527000000,0.000290341000000,0.014537441000000,0.000272958000000,0.000208563000000 +0.000180909000000,0.000263082000000,0.000045798000000,0.000082539000000,0.000196317000000,0.000170637000000,0.000053305000000,0.000133502000000,0.000108613000000,0.000074242000000,0.000342489000000,0.000293107000000,0.000261107000000,0.000237798000000,0.015052996000000,0.000257551000000,0.015163218000000,0.000259526000000,0.000207773000000 +0.000146539000000,0.000438489000000,0.000048168000000,0.000081354000000,0.000196317000000,0.000172613000000,0.000053699000000,0.000131132000000,0.000107033000000,0.000070292000000,0.000262687000000,0.000272958000000,0.000260316000000,0.000280069000000,0.014622379000000,0.000257946000000,0.014333194000000,0.000524613000000,0.000208564000000 +0.000147724000000,0.000262292000000,0.000045403000000,0.000080958000000,0.000194736000000,0.000173008000000,0.000053700000000,0.000178934000000,0.000107428000000,0.000070292000000,0.000259526000000,0.000286391000000,0.000309304000000,0.000291922000000,0.014402725000000,0.000292316000000,0.014900503000000,0.000319971000000,0.000211329000000 +0.000147329000000,0.000262687000000,0.000052909000000,0.000092811000000,0.000195922000000,0.000171823000000,0.000053700000000,0.000130341000000,0.000151675000000,0.000088464000000,0.000257551000000,0.000304563000000,0.000257156000000,0.000293501000000,0.014318182000000,0.000257946000000,0.014214281000000,0.000600464000000,0.000209354000000 +0.000148119000000,0.000264267000000,0.000045798000000,0.000082539000000,0.000280070000000,0.000171823000000,0.000054490000000,0.000133502000000,0.000108613000000,0.000074637000000,0.000292712000000,0.000273353000000,0.000257156000000,0.000260317000000,0.014397589000000,0.000261896000000,0.014185441000000,0.000430193000000,0.000207774000000 +0.000216070000000,0.000267822000000,0.000048168000000,0.000081749000000,0.000195132000000,0.000171032000000,0.000054884000000,0.000130736000000,0.000107033000000,0.000070292000000,0.000259526000000,0.000272958000000,0.000368564000000,0.000278490000000,0.014786329000000,0.000292711000000,0.013822380000000,0.000297848000000,0.000207773000000 +0.000146933000000,0.000258341000000,0.000082538000000,0.000082143000000,0.000195131000000,0.000171823000000,0.000055279000000,0.000186045000000,0.000108613000000,0.000070687000000,0.000272168000000,0.000334588000000,0.000256366000000,0.000256761000000,0.014187022000000,0.000259132000000,0.015079465000000,0.000259526000000,0.000207773000000 +0.000147724000000,0.000263872000000,0.000047773000000,0.000081748000000,0.000288366000000,0.000171823000000,0.000055280000000,0.000365008000000,0.000108218000000,0.000069897000000,0.000301403000000,0.000273749000000,0.000293106000000,0.000257156000000,0.014480948000000,0.000257551000000,0.013799466000000,0.000263477000000,0.000208959000000 +0.000146144000000,0.000264663000000,0.000045799000000,0.000081354000000,0.000194342000000,0.000172218000000,0.000055675000000,0.000344464000000,0.000141008000000,0.000074243000000,0.000266243000000,0.000272563000000,0.000273749000000,0.000263872000000,0.014645293000000,0.000257946000000,0.014045589000000,0.000268613000000,0.000206193000000 +0.000180514000000,0.000345255000000,0.000046193000000,0.000081354000000,0.000194736000000,0.000171427000000,0.000054489000000,0.000153650000000,0.000111379000000,0.000071872000000,0.000270193000000,0.000278094000000,0.000257156000000,0.000268613000000,0.014201244000000,0.000257946000000,0.014306330000000,0.000269007000000,0.000206983000000 +0.000146934000000,0.000260317000000,0.000045798000000,0.000095181000000,0.000194341000000,0.000170638000000,0.000103477000000,0.000138637000000,0.000109008000000,0.000104267000000,0.000304168000000,0.000272168000000,0.000272563000000,0.000245304000000,0.014414972000000,0.000313255000000,0.013936947000000,0.000305749000000,0.000208168000000 +0.000147329000000,0.000281255000000,0.000046193000000,0.000080959000000,0.000211724000000,0.000174193000000,0.000053699000000,0.000138242000000,0.000108218000000,0.000070292000000,0.000308119000000,0.000337748000000,0.000261897000000,0.000314045000000,0.014462379000000,0.000257551000000,0.013643022000000,0.000262292000000,0.000207378000000 +0.000147724000000,0.000262687000000,0.000048168000000,0.000080563000000,0.000196712000000,0.000207378000000,0.000054095000000,0.000176959000000,0.000108613000000,0.000072267000000,0.000304168000000,0.000271378000000,0.000292711000000,0.000267822000000,0.014729441000000,0.000257156000000,0.014460799000000,0.000371329000000,0.000210143000000 +0.000147329000000,0.000260711000000,0.000047378000000,0.000081748000000,0.000195527000000,0.000171428000000,0.000070687000000,0.000141008000000,0.000108613000000,0.000070292000000,0.000279674000000,0.000271378000000,0.000260317000000,0.000268217000000,0.014627910000000,0.000291921000000,0.014064157000000,0.000278094000000,0.000216464000000 +0.000210539000000,0.000274143000000,0.000048959000000,0.000082143000000,0.000196316000000,0.000171033000000,0.000054095000000,0.000140612000000,0.000107033000000,0.000071477000000,0.000270193000000,0.000294687000000,0.000257552000000,0.000237008000000,0.015576058000000,0.000261501000000,0.014172800000000,0.000275724000000,0.000210538000000 +0.000146933000000,0.000259921000000,0.000048168000000,0.000084909000000,0.000194341000000,0.000171032000000,0.000053304000000,0.000138637000000,0.000109798000000,0.000069897000000,0.000302193000000,0.000330243000000,0.000343674000000,0.000238588000000,0.014166478000000,0.000257946000000,0.014472651000000,0.000278490000000,0.000208958000000 +0.000147724000000,0.000297847000000,0.000045798000000,0.000081749000000,0.000195921000000,0.000171428000000,0.000053700000000,0.000182489000000,0.000110193000000,0.000069896000000,0.000268613000000,0.000312465000000,0.000255971000000,0.000263477000000,0.014592750000000,0.000406884000000,0.014228108000000,0.000277304000000,0.000206983000000 +0.000146934000000,0.000259526000000,0.000045798000000,0.000080959000000,0.000265452000000,0.000171033000000,0.000054094000000,0.000139823000000,0.000108218000000,0.000114933000000,0.000258341000000,0.000269798000000,0.000259132000000,0.000259131000000,0.014734577000000,0.000256761000000,0.013682133000000,0.000276514000000,0.000207774000000 +0.000237008000000,0.000377649000000,0.000048169000000,0.000081749000000,0.000195131000000,0.000171032000000,0.000054884000000,0.000138637000000,0.000107427000000,0.000071082000000,0.000265453000000,0.000267822000000,0.000272958000000,0.000259526000000,0.014581292000000,0.000337353000000,0.013747713000000,0.000278489000000,0.000216860000000 +0.000146539000000,0.000259922000000,0.000049354000000,0.000080168000000,0.000196711000000,0.000171428000000,0.000055280000000,0.000138638000000,0.000157600000000,0.000072663000000,0.000272563000000,0.000365403000000,0.000263477000000,0.000290341000000,0.014078774000000,0.000263872000000,0.014919070000000,0.000280464000000,0.000207379000000 +0.000148119000000,0.000291131000000,0.000045798000000,0.000081354000000,0.000196317000000,0.000170638000000,0.000054095000000,0.000140218000000,0.000107033000000,0.000070292000000,0.000354736000000,0.000269008000000,0.000291131000000,0.000219230000000,0.014151466000000,0.000261502000000,0.014682429000000,0.000276909000000,0.000216070000000 +0.000146143000000,0.000259526000000,0.000045798000000,0.000080958000000,0.000210144000000,0.000170242000000,0.000054490000000,0.000173402000000,0.000109008000000,0.000068317000000,0.000268217000000,0.000290736000000,0.000257156000000,0.000265452000000,0.014493985000000,0.000288366000000,0.014067713000000,0.000279675000000,0.000216860000000 +0.000180514000000,0.000263081000000,0.000061600000000,0.000083724000000,0.000195922000000,0.000171427000000,0.000054490000000,0.000140217000000,0.000110983000000,0.000069896000000,0.000270983000000,0.000274143000000,0.000263082000000,0.000295872000000,0.014913144000000,0.000260712000000,0.014260898000000,0.000278489000000,0.000207773000000 +0.000145749000000,0.000293107000000,0.000048168000000,0.000081354000000,0.000195131000000,0.000170243000000,0.000054489000000,0.000142984000000,0.000109008000000,0.000071477000000,0.000308909000000,0.000275329000000,0.000293897000000,0.000269403000000,0.014224947000000,0.000293106000000,0.014621589000000,0.000281650000000,0.000208168000000 +0.000147724000000,0.000264662000000,0.000046193000000,0.000081353000000,0.000233057000000,0.000171428000000,0.000056465000000,0.000132316000000,0.000200663000000,0.000104268000000,0.000276909000000,0.000315230000000,0.000257946000000,0.000271773000000,0.014367959000000,0.000263477000000,0.014047565000000,0.000280464000000,0.000229897000000 +0.000146934000000,0.000328662000000,0.000045798000000,0.000080958000000,0.000195922000000,0.000172613000000,0.000053304000000,0.000130736000000,0.000125995000000,0.000070292000000,0.000286390000000,0.000274538000000,0.000256366000000,0.000263082000000,0.014828602000000,0.000269403000000,0.014536651000000,0.000278095000000,0.000207379000000 +0.000146144000000,0.000264662000000,0.000048168000000,0.000081749000000,0.000195922000000,0.000171823000000,0.000060416000000,0.000171822000000,0.000109798000000,0.000071478000000,0.000269403000000,0.000270193000000,0.000348810000000,0.000260712000000,0.014199664000000,0.000330242000000,0.013836602000000,0.000278489000000,0.000208169000000 +0.000174983000000,0.000286391000000,0.000047773000000,0.000080564000000,0.000194737000000,0.000174193000000,0.000054095000000,0.000135873000000,0.000107033000000,0.000071082000000,0.000269798000000,0.000383575000000,0.000260711000000,0.000267823000000,0.014469096000000,0.000258736000000,0.014007664000000,0.000276909000000,0.000207378000000 +0.000146539000000,0.000262292000000,0.000047773000000,0.000081749000000,0.000194736000000,0.000170637000000,0.000053304000000,0.000131922000000,0.000108218000000,0.000069897000000,0.000319971000000,0.000268218000000,0.000277304000000,0.000299823000000,0.014679268000000,0.000299033000000,0.014038479000000,0.000276514000000,0.000251230000000 +0.000147724000000,0.000260711000000,0.000045798000000,0.000080959000000,0.000195132000000,0.000170638000000,0.000055280000000,0.000132317000000,0.000110983000000,0.000070292000000,0.000269798000000,0.000303378000000,0.000261502000000,0.000263872000000,0.014251021000000,0.000261897000000,0.014422083000000,0.000474045000000,0.000206983000000 +0.000147329000000,0.000309699000000,0.000045798000000,0.000080959000000,0.000194342000000,0.000171823000000,0.000054094000000,0.000186440000000,0.000107428000000,0.000071082000000,0.000274539000000,0.000271378000000,0.000261502000000,0.000239378000000,0.014432355000000,0.000258342000000,0.013882429000000,0.000330638000000,0.000207773000000 +0.000181304000000,0.000263872000000,0.000045798000000,0.000082144000000,0.000249254000000,0.000282440000000,0.000056070000000,0.000130736000000,0.000107032000000,0.000105057000000,0.000257156000000,0.000266243000000,0.000389107000000,0.000293896000000,0.014956601000000,0.000327082000000,0.014245490000000,0.000274934000000,0.000209353000000 +0.000145748000000,0.000321946000000,0.000047773000000,0.000081749000000,0.000195922000000,0.000185255000000,0.000053304000000,0.000130342000000,0.000157996000000,0.000071083000000,0.000259922000000,0.000370144000000,0.000257946000000,0.000265452000000,0.014301195000000,0.000258341000000,0.014442626000000,0.000278490000000,0.000209354000000 +0.000163527000000,0.000261106000000,0.000051724000000,0.000081353000000,0.000196317000000,0.000171032000000,0.000052910000000,0.000135872000000,0.000107428000000,0.000070687000000,0.000291527000000,0.000267033000000,0.000258341000000,0.000282439000000,0.015033638000000,0.000306539000000,0.013575071000000,0.000276514000000,0.000207773000000 +0.000147724000000,0.000430588000000,0.000045403000000,0.000080959000000,0.000195922000000,0.000172218000000,0.000060020000000,0.000165896000000,0.000107428000000,0.000071477000000,0.000267033000000,0.000317996000000,0.000261107000000,0.000269403000000,0.015099614000000,0.000258342000000,0.013695960000000,0.000317995000000,0.000208168000000 +0.000180909000000,0.000298638000000,0.000048169000000,0.000082934000000,0.000275329000000,0.000170637000000,0.000054884000000,0.000130736000000,0.000109798000000,0.000071082000000,0.000276514000000,0.000274539000000,0.000257946000000,0.000252810000000,0.014297244000000,0.000257946000000,0.014236009000000,0.000259921000000,0.000216070000000 +0.000146539000000,0.000262292000000,0.000048169000000,0.000081354000000,0.000197501000000,0.000170637000000,0.000054095000000,0.000131526000000,0.000107032000000,0.000069897000000,0.000309304000000,0.000262687000000,0.000330243000000,0.000263477000000,0.014318182000000,0.000340514000000,0.014256948000000,0.000295082000000,0.000207378000000 +0.000147329000000,0.000264267000000,0.000064366000000,0.000080168000000,0.000196316000000,0.000171032000000,0.000054884000000,0.000131132000000,0.000108218000000,0.000071082000000,0.000272563000000,0.000336168000000,0.000258341000000,0.000269402000000,0.015482033000000,0.000257551000000,0.014135664000000,0.000260711000000,0.000209354000000 +0.000145749000000,0.000307724000000,0.000048563000000,0.000081749000000,0.000264267000000,0.000175379000000,0.000053305000000,0.000131131000000,0.000108218000000,0.000071477000000,0.000271379000000,0.000256761000000,0.000258341000000,0.000267427000000,0.014791070000000,0.000257551000000,0.013878083000000,0.000259921000000,0.000213699000000 +0.000146933000000,0.000260317000000,0.000048168000000,0.000115724000000,0.000195527000000,0.000171428000000,0.000054095000000,0.000144959000000,0.000142588000000,0.000070687000000,0.000302983000000,0.000257156000000,0.000292711000000,0.000373304000000,0.014764996000000,0.000293502000000,0.013993046000000,0.000265057000000,0.000215674000000 +0.000179329000000,0.000296662000000,0.000048168000000,0.000080958000000,0.000195921000000,0.000172218000000,0.000055279000000,0.000130341000000,0.000106638000000,0.000069897000000,0.000274538000000,0.000259922000000,0.000264662000000,0.000263082000000,0.014848354000000,0.000257156000000,0.014098923000000,0.000258341000000,0.000257947000000 +0.000146934000000,0.000260316000000,0.000046193000000,0.000084514000000,0.000196711000000,0.000173403000000,0.000052909000000,0.000133897000000,0.000107033000000,0.000069897000000,0.000273353000000,0.000263082000000,0.000318785000000,0.000311674000000,0.014816354000000,0.000256366000000,0.014344256000000,0.000298637000000,0.000210144000000 +0.000148119000000,0.000266242000000,0.000045403000000,0.000080168000000,0.000211723000000,0.000173008000000,0.000056860000000,0.000131921000000,0.000108613000000,0.000070687000000,0.000270588000000,0.000338144000000,0.000256761000000,0.000235428000000,0.015013095000000,0.000255971000000,0.014007269000000,0.000263872000000,0.000217255000000 +0.000148119000000,0.000264662000000,0.000048168000000,0.000081749000000,0.000196711000000,0.000170637000000,0.000055280000000,0.000210143000000,0.000108613000000,0.000070292000000,0.000267822000000,0.000259526000000,0.000279674000000,0.000277304000000,0.014999663000000,0.000265057000000,0.014372701000000,0.000309304000000,0.000216860000000 +0.000180909000000,0.000263082000000,0.000065946000000,0.000082538000000,0.000194736000000,0.000171033000000,0.000054094000000,0.000132317000000,0.000107033000000,0.000071082000000,0.000305353000000,0.000261106000000,0.000303378000000,0.000337748000000,0.014444602000000,0.000294291000000,0.014063763000000,0.000263872000000,0.000207773000000 +0.000151675000000,0.000292317000000,0.000045798000000,0.000081749000000,0.000290341000000,0.000172218000000,0.000057255000000,0.000132316000000,0.000174193000000,0.000071872000000,0.000270588000000,0.000343674000000,0.000255971000000,0.000244909000000,0.014290922000000,0.000258341000000,0.014576947000000,0.000296267000000,0.000209749000000 +0.000146934000000,0.000277700000000,0.000045798000000,0.000081354000000,0.000215279000000,0.000208563000000,0.000072268000000,0.000132316000000,0.000106242000000,0.000071477000000,0.000265453000000,0.000265847000000,0.000263082000000,0.000270193000000,0.014849145000000,0.000265057000000,0.013669491000000,0.000265058000000,0.000207378000000 +0.000146539000000,0.000294687000000,0.000048168000000,0.000081353000000,0.000194341000000,0.000171822000000,0.000053700000000,0.000130341000000,0.000108613000000,0.000070292000000,0.000426242000000,0.000257946000000,0.000255971000000,0.000306539000000,0.014247466000000,0.000626933000000,0.013795516000000,0.000258341000000,0.000206193000000 +0.000146144000000,0.000262687000000,0.000048168000000,0.000120465000000,0.000228712000000,0.000171823000000,0.000054095000000,0.000129946000000,0.000110194000000,0.000071873000000,0.000266242000000,0.000280859000000,0.000259922000000,0.000240563000000,0.014690724000000,0.000275329000000,0.014512157000000,0.000263082000000,0.000208959000000 +0.000230687000000,0.000259526000000,0.000045403000000,0.000097551000000,0.000196316000000,0.000170638000000,0.000053699000000,0.000130342000000,0.000110983000000,0.000070292000000,0.000307329000000,0.000272958000000,0.000330637000000,0.000276514000000,0.015120552000000,0.000259526000000,0.013654874000000,0.000263082000000,0.000216859000000 +0.000148119000000,0.000259921000000,0.000047773000000,0.000081354000000,0.000195131000000,0.000174983000000,0.000055675000000,0.000130736000000,0.000143773000000,0.000070292000000,0.000274538000000,0.000335378000000,0.000258341000000,0.000274538000000,0.014524404000000,0.000264267000000,0.013976454000000,0.000311674000000,0.000210538000000 +0.000146144000000,0.000261106000000,0.000045798000000,0.000081749000000,0.000196317000000,0.000171823000000,0.000055675000000,0.000132317000000,0.000110983000000,0.000071872000000,0.000268218000000,0.000274934000000,0.000255576000000,0.000262292000000,0.014495564000000,0.000300612000000,0.014321737000000,0.000260317000000,0.000208563000000 +0.000146144000000,0.000292712000000,0.000101502000000,0.000080564000000,0.000229107000000,0.000171823000000,0.000054489000000,0.000158786000000,0.000107032000000,0.000110193000000,0.000306539000000,0.000273748000000,0.000325501000000,0.000317995000000,0.014965687000000,0.000257551000000,0.014061392000000,0.000294687000000,0.000206193000000 +0.000180909000000,0.000265453000000,0.000047773000000,0.000082539000000,0.000195922000000,0.000171033000000,0.000053304000000,0.000130342000000,0.000110984000000,0.000071477000000,0.000270588000000,0.000285206000000,0.000257156000000,0.000235033000000,0.014453688000000,0.000257947000000,0.015168354000000,0.000259526000000,0.000207774000000 +0.000146539000000,0.000297057000000,0.000045798000000,0.000081749000000,0.000196317000000,0.000207773000000,0.000088070000000,0.000132317000000,0.000108217000000,0.000070687000000,0.000267427000000,0.000276119000000,0.000257552000000,0.000275329000000,0.016334576000000,0.000295872000000,0.014397985000000,0.000261107000000,0.000208168000000 +0.000146934000000,0.000260316000000,0.000045799000000,0.000080959000000,0.000195527000000,0.000172217000000,0.000053699000000,0.000130341000000,0.000127181000000,0.000073847000000,0.000273353000000,0.000354341000000,0.000265057000000,0.000313254000000,0.014713639000000,0.000260316000000,0.014362034000000,0.000261897000000,0.000209748000000 +0.000146539000000,0.000263477000000,0.000048169000000,0.000080168000000,0.000208563000000,0.000171033000000,0.000056070000000,0.000132712000000,0.000109008000000,0.000070292000000,0.000263082000000,0.000268218000000,0.000266637000000,0.000273748000000,0.016730427000000,0.000260317000000,0.013967367000000,0.000259132000000,0.000206193000000 +0.000147329000000,0.000264662000000,0.000045798000000,0.000081749000000,0.000196712000000,0.000170638000000,0.000054094000000,0.000200662000000,0.000110983000000,0.000072268000000,0.000277304000000,0.000274934000000,0.000328267000000,0.000268613000000,0.014290528000000,0.000270589000000,0.013863466000000,0.000414785000000,0.000218045000000 +0.000146934000000,0.000262292000000,0.000046193000000,0.000080169000000,0.000194737000000,0.000171428000000,0.000054094000000,0.000130342000000,0.000109008000000,0.000104663000000,0.000260317000000,0.000355131000000,0.000257551000000,0.000318786000000,0.015888551000000,0.000259921000000,0.014554034000000,0.000350390000000,0.000248069000000 +0.000146934000000,0.000297453000000,0.000045798000000,0.000081354000000,0.000238983000000,0.000171823000000,0.000054095000000,0.000134687000000,0.000108613000000,0.000069897000000,0.000257156000000,0.000271774000000,0.000258736000000,0.000225551000000,0.014879959000000,0.000291132000000,0.014168849000000,0.000444020000000,0.000270193000000 +0.000147724000000,0.000265057000000,0.000061600000000,0.000081749000000,0.000196316000000,0.000174588000000,0.000064366000000,0.000130737000000,0.000107033000000,0.000074243000000,0.000302588000000,0.000304958000000,0.000259132000000,0.000248464000000,0.014633046000000,0.000258736000000,0.014563515000000,0.000331033000000,0.000240959000000 +0.000146934000000,0.000296267000000,0.000048168000000,0.000080958000000,0.000195526000000,0.000191971000000,0.000054489000000,0.000130341000000,0.000123625000000,0.000072662000000,0.000265847000000,0.000271378000000,0.000261502000000,0.000474044000000,0.014687564000000,0.000257156000000,0.014391268000000,0.000261896000000,0.000209354000000 +0.000252415000000,0.000263082000000,0.000045798000000,0.000081749000000,0.000194737000000,0.000171823000000,0.000130737000000,0.000159576000000,0.000108612000000,0.000074638000000,0.000267032000000,0.000270193000000,0.000296662000000,0.000265848000000,0.015416452000000,0.000291131000000,0.013853590000000,0.000292712000000,0.000207379000000 +0.000176168000000,0.000263872000000,0.000047773000000,0.000080959000000,0.000209748000000,0.000172613000000,0.000072267000000,0.000131526000000,0.000108218000000,0.000071478000000,0.000301798000000,0.000623773000000,0.000257946000000,0.000305749000000,0.014817540000000,0.000313255000000,0.013847269000000,0.000266243000000,0.000209749000000 +0.000147724000000,0.000261502000000,0.000045799000000,0.000081749000000,0.000196711000000,0.000207378000000,0.000066341000000,0.000130736000000,0.000106638000000,0.000078194000000,0.000257946000000,0.000302983000000,0.000259922000000,0.000257946000000,0.014300404000000,0.000262687000000,0.014269194000000,0.000260712000000,0.000206983000000 +0.000147724000000,0.000263082000000,0.000047774000000,0.000081354000000,0.000195132000000,0.000173798000000,0.000053700000000,0.000134292000000,0.000109403000000,0.000105848000000,0.000263477000000,0.000272958000000,0.000293106000000,0.000206588000000,0.014473046000000,0.000261501000000,0.014347022000000,0.000259526000000,0.000206588000000 +0.000229897000000,0.000305748000000,0.000048959000000,0.000084119000000,0.000265057000000,0.000171032000000,0.000054094000000,0.000131921000000,0.000164317000000,0.000071477000000,0.000331823000000,0.000268613000000,0.000257551000000,0.000310885000000,0.014310675000000,0.000262291000000,0.016452304000000,0.000261502000000,0.000206588000000 +0.000147329000000,0.000261897000000,0.000070292000000,0.000081354000000,0.000196316000000,0.000170242000000,0.000054490000000,0.000133897000000,0.000108218000000,0.000069501000000,0.000259131000000,0.000324712000000,0.000259526000000,0.000266243000000,0.014770527000000,0.000293106000000,0.014147515000000,0.000296267000000,0.000211724000000 +0.000145748000000,0.000295082000000,0.000046193000000,0.000080958000000,0.000196316000000,0.000172613000000,0.000087675000000,0.000131922000000,0.000109008000000,0.000071873000000,0.000263082000000,0.000258341000000,0.000277699000000,0.000270983000000,0.015134379000000,0.000258736000000,0.014320552000000,0.000263872000000,0.000212514000000 +0.000146539000000,0.000261501000000,0.000045403000000,0.000080564000000,0.000194736000000,0.000207379000000,0.000055675000000,0.000130736000000,0.000108218000000,0.000071873000000,0.000264268000000,0.000261502000000,0.000258341000000,0.000269798000000,0.014381787000000,0.000261106000000,0.013745343000000,0.000387922000000,0.000207378000000 +0.000210144000000,0.000261107000000,0.000045798000000,0.000080564000000,0.000195131000000,0.000172613000000,0.000053699000000,0.000131527000000,0.000109008000000,0.000070687000000,0.000259921000000,0.000296267000000,0.000367774000000,0.000214095000000,0.014317787000000,0.000304959000000,0.015811119000000,0.000259131000000,0.000208958000000 +0.000147329000000,0.000260711000000,0.000045798000000,0.000082538000000,0.000194736000000,0.000171033000000,0.000053304000000,0.000170638000000,0.000107033000000,0.000071477000000,0.000291131000000,0.000270193000000,0.000270588000000,0.000286786000000,0.014412997000000,0.000258341000000,0.014774873000000,0.000297057000000,0.000261106000000 +0.000148514000000,0.000263082000000,0.000045403000000,0.000081353000000,0.000194736000000,0.000171822000000,0.000054884000000,0.000325501000000,0.000106638000000,0.000104267000000,0.000257551000000,0.000259527000000,0.000259922000000,0.000258341000000,0.014566676000000,0.000258737000000,0.014690330000000,0.000262686000000,0.000217650000000 +0.000147329000000,0.000278490000000,0.000045403000000,0.000082934000000,0.000229502000000,0.000206193000000,0.000054489000000,0.000200662000000,0.000108612000000,0.000069897000000,0.000261106000000,0.000261896000000,0.000483131000000,0.000261896000000,0.015184156000000,0.000256760000000,0.013963021000000,0.000260316000000,0.000209749000000 +0.000148119000000,0.000261897000000,0.000092811000000,0.000081354000000,0.000196317000000,0.000170638000000,0.000054489000000,0.000147724000000,0.000109008000000,0.000070291000000,0.000465353000000,0.000264662000000,0.000276909000000,0.000296267000000,0.014519663000000,0.000255180000000,0.014225737000000,0.000297847000000,0.000209749000000 +0.000161156000000,0.000295872000000,0.000048168000000,0.000081353000000,0.000195526000000,0.000171033000000,0.000054885000000,0.000130736000000,0.000107032000000,0.000071477000000,0.000294687000000,0.000304959000000,0.000259526000000,0.000244118000000,0.014314231000000,0.000290736000000,0.013999762000000,0.000285600000000,0.000207378000000 +0.000147724000000,0.000261107000000,0.000045798000000,0.000081748000000,0.000195922000000,0.000172217000000,0.000124020000000,0.000130736000000,0.000107823000000,0.000071872000000,0.000314835000000,0.000269798000000,0.000278885000000,0.000231872000000,0.014204009000000,0.000259131000000,0.014095368000000,0.000262292000000,0.000206983000000 +0.000147329000000,0.000276909000000,0.000048168000000,0.000081749000000,0.000278094000000,0.000233452000000,0.000054095000000,0.000130737000000,0.000107033000000,0.000072662000000,0.000274143000000,0.000274933000000,0.000295477000000,0.000395427000000,0.014719170000000,0.000258342000000,0.014290922000000,0.000262292000000,0.000208169000000 +0.000146538000000,0.000263082000000,0.000045798000000,0.000082143000000,0.000193551000000,0.000171427000000,0.000053699000000,0.000178143000000,0.000107033000000,0.000069897000000,0.000272958000000,0.000317995000000,0.000260316000000,0.000269798000000,0.014655960000000,0.000289946000000,0.013959467000000,0.000292712000000,0.000257946000000 +0.000163131000000,0.000261501000000,0.000048563000000,0.000081354000000,0.000196316000000,0.000170243000000,0.000055675000000,0.000131921000000,0.000107427000000,0.000084514000000,0.000338539000000,0.000274144000000,0.000257946000000,0.000269008000000,0.014557194000000,0.000259526000000,0.013962232000000,0.000262687000000,0.000207378000000 +0.000147329000000,0.000398983000000,0.000045403000000,0.000081353000000,0.000214885000000,0.000173403000000,0.000055675000000,0.000131527000000,0.000107033000000,0.000071083000000,0.000271773000000,0.000268613000000,0.000261502000000,0.000255971000000,0.014761046000000,0.000259132000000,0.014316207000000,0.000329452000000,0.000209748000000 +0.000147724000000,0.000263872000000,0.000045799000000,0.000080959000000,0.000194736000000,0.000170242000000,0.000054489000000,0.000134292000000,0.000107033000000,0.000069897000000,0.000266242000000,0.000302588000000,0.000260711000000,0.000261502000000,0.014364404000000,0.000258341000000,0.014379812000000,0.000261896000000,0.000242538000000 +0.000145748000000,0.000295082000000,0.000045798000000,0.000080168000000,0.000195526000000,0.000171823000000,0.000054490000000,0.000131922000000,0.000152069000000,0.000070687000000,0.000333798000000,0.000271378000000,0.000300218000000,0.000261502000000,0.014880354000000,0.000259526000000,0.013661195000000,0.000310489000000,0.000216069000000 +0.000252021000000,0.000261107000000,0.000045798000000,0.000081354000000,0.000195921000000,0.000171033000000,0.000054095000000,0.000189600000000,0.000107428000000,0.000070292000000,0.000268218000000,0.000273353000000,0.000257551000000,0.000263082000000,0.014928157000000,0.000291921000000,0.014244305000000,0.000263082000000,0.000210934000000 +0.000146934000000,0.000296662000000,0.000048564000000,0.000081748000000,0.000208958000000,0.000170242000000,0.000053700000000,0.000132317000000,0.000110983000000,0.000070687000000,0.000340909000000,0.000304959000000,0.000259921000000,0.000266242000000,0.014933688000000,0.000257946000000,0.014050330000000,0.000265057000000,0.000280070000000 +0.000147329000000,0.000266243000000,0.000045798000000,0.000080959000000,0.000194341000000,0.000184860000000,0.000054489000000,0.000160761000000,0.000109008000000,0.000071082000000,0.000267823000000,0.000270983000000,0.000292317000000,0.000333008000000,0.014691120000000,0.000259131000000,0.014272750000000,0.000262292000000,0.000325501000000 +0.000146934000000,0.000263872000000,0.000045798000000,0.000083329000000,0.000194736000000,0.000171032000000,0.000054095000000,0.000131526000000,0.000109798000000,0.000103872000000,0.000257946000000,0.000310095000000,0.000261897000000,0.000261502000000,0.014983860000000,0.000292316000000,0.013904552000000,0.000258342000000,0.000207773000000 +0.000201058000000,0.000262686000000,0.000048564000000,0.000081354000000,0.000262687000000,0.000174194000000,0.000053305000000,0.000200267000000,0.000128366000000,0.000070292000000,0.000257551000000,0.000274144000000,0.000257551000000,0.000228712000000,0.014274725000000,0.000257946000000,0.014075219000000,0.000483132000000,0.000208958000000 +0.000146934000000,0.000259131000000,0.000047378000000,0.000080168000000,0.000196316000000,0.000171428000000,0.000053699000000,0.000131131000000,0.000142588000000,0.000071477000000,0.000259921000000,0.000270983000000,0.000273354000000,0.000297847000000,0.014755515000000,0.000259526000000,0.014452898000000,0.000258342000000,0.000216859000000 +0.000146934000000,0.000329453000000,0.000047774000000,0.000081749000000,0.000194737000000,0.000171033000000,0.000053699000000,0.000132316000000,0.000108218000000,0.000070292000000,0.000347625000000,0.000315230000000,0.000257551000000,0.000262687000000,0.014519664000000,0.000301403000000,0.013722825000000,0.000257947000000,0.000209748000000 +0.000146144000000,0.000261107000000,0.000082144000000,0.000080563000000,0.000195922000000,0.000171823000000,0.000056070000000,0.000131921000000,0.000107033000000,0.000071477000000,0.000261896000000,0.000271773000000,0.000296267000000,0.000238983000000,0.014960157000000,0.000259527000000,0.013881639000000,0.000263872000000,0.000209353000000 +0.000161156000000,0.000298638000000,0.000048168000000,0.000080564000000,0.000208958000000,0.000171033000000,0.000095181000000,0.000133896000000,0.000107428000000,0.000071477000000,0.000259921000000,0.000314835000000,0.000257156000000,0.000295082000000,0.014158577000000,0.000257551000000,0.014030972000000,0.000329452000000,0.000207378000000 +0.000147329000000,0.000263082000000,0.000047774000000,0.000081353000000,0.000196317000000,0.000173403000000,0.000140217000000,0.000146539000000,0.000140613000000,0.000071083000000,0.000291526000000,0.000272169000000,0.000264267000000,0.000258341000000,0.014558380000000,0.000258736000000,0.014488848000000,0.000275329000000,0.000207378000000 +0.000146539000000,0.000285996000000,0.000045008000000,0.000084120000000,0.000196317000000,0.000398192000000,0.000055674000000,0.000132712000000,0.000109008000000,0.000085700000000,0.000259922000000,0.000258341000000,0.000289946000000,0.000230687000000,0.015097243000000,0.000258736000000,0.015072749000000,0.000340119000000,0.000208959000000 +0.000148119000000,0.000261107000000,0.000045798000000,0.000082143000000,0.000227922000000,0.000189996000000,0.000054489000000,0.000130342000000,0.000108613000000,0.000092415000000,0.000265847000000,0.000305749000000,0.000267033000000,0.000322736000000,0.015374576000000,0.000294687000000,0.014200849000000,0.000261502000000,0.000268613000000 +0.000146144000000,0.000259526000000,0.000045798000000,0.000081354000000,0.000195526000000,0.000171033000000,0.000054885000000,0.000133107000000,0.000108218000000,0.000070292000000,0.000295477000000,0.000259921000000,0.000264267000000,0.000241354000000,0.014926576000000,0.000257946000000,0.014197293000000,0.000262292000000,0.000206588000000 +0.000215279000000,0.000272959000000,0.000046194000000,0.000082143000000,0.000196317000000,0.000170242000000,0.000056070000000,0.000165897000000,0.000112563000000,0.000069897000000,0.000259921000000,0.000257946000000,0.000272958000000,0.000279279000000,0.014962922000000,0.000257551000000,0.014446577000000,0.000259132000000,0.000217255000000 +0.000146539000000,0.000261502000000,0.000048564000000,0.000081354000000,0.000195131000000,0.000171822000000,0.000053304000000,0.000131132000000,0.000190786000000,0.000069896000000,0.000265452000000,0.000290341000000,0.000258736000000,0.000259131000000,0.014422478000000,0.000329452000000,0.013921146000000,0.000260317000000,0.000244119000000 +0.000147329000000,0.000295082000000,0.000048169000000,0.000080959000000,0.000346440000000,0.000171427000000,0.000057255000000,0.000130737000000,0.000108218000000,0.000069897000000,0.000265057000000,0.000257156000000,0.000293897000000,0.000263477000000,0.014508601000000,0.000255971000000,0.013838182000000,0.000260712000000,0.000207773000000 +0.000147329000000,0.000258736000000,0.000045798000000,0.000081748000000,0.000196317000000,0.000172218000000,0.000054094000000,0.000159181000000,0.000107033000000,0.000103872000000,0.000258341000000,0.000259527000000,0.000259922000000,0.000261897000000,0.014468700000000,0.000256365000000,0.013768256000000,0.000259131000000,0.000210934000000 +0.000297847000000,0.000303773000000,0.000048168000000,0.000081353000000,0.000196317000000,0.000171033000000,0.000054095000000,0.000138638000000,0.000109798000000,0.000071872000000,0.000326687000000,0.000292712000000,0.000257551000000,0.000242934000000,0.014635022000000,0.000289946000000,0.014315022000000,0.000342095000000,0.000227526000000 +0.000161551000000,0.000263872000000,0.000048168000000,0.000080564000000,0.000229897000000,0.000171428000000,0.000054094000000,0.000138242000000,0.000107822000000,0.000071082000000,0.000265057000000,0.000261502000000,0.000289551000000,0.000270193000000,0.014278281000000,0.000261106000000,0.014608552000000,0.000262687000000,0.000207378000000 +0.000148119000000,0.000261501000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000170638000000,0.000054094000000,0.000139823000000,0.000159971000000,0.000069107000000,0.000267032000000,0.000257947000000,0.000256366000000,0.000402143000000,0.014453293000000,0.000270588000000,0.014521638000000,0.000294686000000,0.000206588000000 +0.000146144000000,0.000390687000000,0.000045403000000,0.000081749000000,0.000197107000000,0.000171428000000,0.000055280000000,0.000139823000000,0.000110588000000,0.000071477000000,0.000329452000000,0.000257946000000,0.000257946000000,0.000299428000000,0.014553639000000,0.000259131000000,0.014687565000000,0.000260316000000,0.000208563000000 +0.000406489000000,0.000262291000000,0.000045798000000,0.000081353000000,0.000194341000000,0.000169847000000,0.000054885000000,0.000137847000000,0.000108613000000,0.000070292000000,0.000261897000000,0.000259921000000,0.000327872000000,0.000227922000000,0.014607762000000,0.000282045000000,0.014299614000000,0.000260317000000,0.000208564000000 +0.000205403000000,0.000258737000000,0.000045798000000,0.000082144000000,0.000193946000000,0.000172218000000,0.000107033000000,0.000139428000000,0.000107032000000,0.000069897000000,0.000261107000000,0.000291132000000,0.000258341000000,0.000242933000000,0.015391959000000,0.000258737000000,0.014260503000000,0.000263477000000,0.000220020000000 +0.000167082000000,0.000262292000000,0.000048958000000,0.000082539000000,0.000196317000000,0.000171428000000,0.000053699000000,0.000138242000000,0.000108218000000,0.000086094000000,0.000261107000000,0.000262687000000,0.000297847000000,0.000258341000000,0.014931713000000,0.000259526000000,0.014381392000000,0.000263872000000,0.000217255000000 +0.000146144000000,0.000332612000000,0.000046588000000,0.000080959000000,0.000196316000000,0.000172613000000,0.000053699000000,0.000138243000000,0.000178538000000,0.000070292000000,0.000263872000000,0.000259921000000,0.000257946000000,0.000256366000000,0.014124997000000,0.000304958000000,0.014546527000000,0.000332217000000,0.000210539000000 +0.000147329000000,0.000259526000000,0.000048958000000,0.000081354000000,0.000230292000000,0.000222390000000,0.000053700000000,0.000139033000000,0.000109008000000,0.000071477000000,0.000336958000000,0.000294291000000,0.000256366000000,0.000261897000000,0.015080255000000,0.000260712000000,0.013733491000000,0.000263082000000,0.000216070000000 +0.000147329000000,0.000295872000000,0.000048168000000,0.000081748000000,0.000196712000000,0.000171032000000,0.000054884000000,0.000141403000000,0.000107428000000,0.000070687000000,0.000257947000000,0.000273353000000,0.000291921000000,0.000273748000000,0.015234724000000,0.000261106000000,0.013910874000000,0.000299427000000,0.000208958000000 +0.000146539000000,0.000258736000000,0.000052119000000,0.000080959000000,0.000196317000000,0.000170242000000,0.000073848000000,0.000140613000000,0.000107032000000,0.000069897000000,0.000257946000000,0.000257156000000,0.000259526000000,0.000250440000000,0.014396009000000,0.000330638000000,0.014002133000000,0.000260711000000,0.000206193000000 +0.000178538000000,0.000329847000000,0.000045798000000,0.000081353000000,0.000193946000000,0.000171823000000,0.000057650000000,0.000141403000000,0.000108217000000,0.000072267000000,0.000310489000000,0.000306538000000,0.000259526000000,0.000274143000000,0.014819910000000,0.000259527000000,0.014024651000000,0.000259131000000,0.000223575000000 +0.000146934000000,0.000261897000000,0.000045798000000,0.000118095000000,0.000210538000000,0.000173403000000,0.000054489000000,0.000140613000000,0.000142194000000,0.000071082000000,0.000269403000000,0.000258736000000,0.000459823000000,0.000261501000000,0.014892601000000,0.000328267000000,0.014257343000000,0.000263082000000,0.000206983000000 +0.000147329000000,0.000294687000000,0.000045798000000,0.000080958000000,0.000196712000000,0.000172217000000,0.000054095000000,0.000139822000000,0.000107822000000,0.000070292000000,0.000268613000000,0.000262686000000,0.000257551000000,0.000299427000000,0.014811218000000,0.000259131000000,0.014489244000000,0.000264662000000,0.000208563000000 +0.000146539000000,0.000261896000000,0.000061996000000,0.000080958000000,0.000195131000000,0.000171822000000,0.000056070000000,0.000138243000000,0.000109008000000,0.000070687000000,0.000604810000000,0.000284810000000,0.000292316000000,0.000322736000000,0.014348602000000,0.000257946000000,0.014239959000000,0.000431773000000,0.000208959000000 +0.000178934000000,0.000265452000000,0.000048168000000,0.000081354000000,0.000228316000000,0.000171822000000,0.000053699000000,0.000139823000000,0.000107032000000,0.000074638000000,0.000305749000000,0.000256761000000,0.000259526000000,0.000240959000000,0.015128453000000,0.000327872000000,0.013573492000000,0.000306143000000,0.000208169000000 +0.000147329000000,0.000261106000000,0.000045798000000,0.000081353000000,0.000195921000000,0.000210538000000,0.000053304000000,0.000139428000000,0.000109798000000,0.000069897000000,0.000257551000000,0.000312465000000,0.000259527000000,0.000229502000000,0.014199664000000,0.000261107000000,0.014017145000000,0.000346045000000,0.000207774000000 +0.000146934000000,0.000261106000000,0.000045799000000,0.000081749000000,0.000194736000000,0.000172217000000,0.000055279000000,0.000138242000000,0.000107428000000,0.000070292000000,0.000292711000000,0.000280465000000,0.000259131000000,0.000261897000000,0.014936848000000,0.000260316000000,0.014143565000000,0.000294687000000,0.000206589000000 +0.000146538000000,0.000264662000000,0.000048169000000,0.000080959000000,0.000194341000000,0.000171823000000,0.000056069000000,0.000140613000000,0.000125600000000,0.000071477000000,0.000293106000000,0.000257156000000,0.000256761000000,0.000263477000000,0.015463465000000,0.000260712000000,0.013970923000000,0.000260317000000,0.000229897000000 +0.000147724000000,0.000260316000000,0.000045798000000,0.000080958000000,0.000228316000000,0.000173798000000,0.000053305000000,0.000139428000000,0.000108613000000,0.000090835000000,0.000262292000000,0.000259526000000,0.000292712000000,0.000267033000000,0.014669787000000,0.000259131000000,0.013981985000000,0.000259527000000,0.000208563000000 +0.000180909000000,0.000346440000000,0.000045798000000,0.000080959000000,0.000196317000000,0.000174193000000,0.000067922000000,0.000144958000000,0.000106638000000,0.000088464000000,0.000270588000000,0.000272958000000,0.000261106000000,0.000244514000000,0.015097638000000,0.000327872000000,0.014734577000000,0.000274933000000,0.000206588000000 +0.000147724000000,0.000266637000000,0.000048958000000,0.000081749000000,0.000196712000000,0.000171823000000,0.000053304000000,0.000142588000000,0.000107033000000,0.000084514000000,0.000304958000000,0.000325501000000,0.000256761000000,0.000289551000000,0.017270871000000,0.000259527000000,0.013806577000000,0.000261107000000,0.000215675000000 +0.000147329000000,0.000297057000000,0.000076218000000,0.000082144000000,0.000215280000000,0.000171428000000,0.000057255000000,0.000141798000000,0.000107823000000,0.000071082000000,0.000269798000000,0.000268613000000,0.000300613000000,0.000275724000000,0.014696256000000,0.000260316000000,0.014028997000000,0.000294687000000,0.000208169000000 +0.000145748000000,0.000262292000000,0.000048169000000,0.000081353000000,0.000196317000000,0.000170638000000,0.000053699000000,0.000137847000000,0.000108218000000,0.000071477000000,0.000290736000000,0.000265847000000,0.000257551000000,0.000261897000000,0.014587614000000,0.000290736000000,0.015874724000000,0.000258736000000,0.000207378000000 +0.000187231000000,0.000323131000000,0.000051328000000,0.000080169000000,0.000194737000000,0.000222390000000,0.000054490000000,0.000141008000000,0.000108217000000,0.000071477000000,0.000295082000000,0.000305354000000,0.000260316000000,0.000306539000000,0.016425439000000,0.000256761000000,0.014343071000000,0.000293106000000,0.000208168000000 +0.000162737000000,0.000259526000000,0.000048168000000,0.000104662000000,0.000195527000000,0.000171033000000,0.000053699000000,0.000140613000000,0.000108613000000,0.000104662000000,0.000267428000000,0.000281255000000,0.000273354000000,0.000251230000000,0.015017440000000,0.000257946000000,0.014574972000000,0.000261107000000,0.000207773000000 +0.000147724000000,0.000261502000000,0.000048564000000,0.000093600000000,0.000195922000000,0.000171823000000,0.000054094000000,0.000138242000000,0.000107032000000,0.000071082000000,0.000290737000000,0.000271378000000,0.000261897000000,0.000270193000000,0.014863366000000,0.000256366000000,0.013878083000000,0.000260316000000,0.000208168000000 +0.000146934000000,0.000262291000000,0.000045798000000,0.000080563000000,0.000194737000000,0.000173798000000,0.000067526000000,0.000138638000000,0.000106638000000,0.000071477000000,0.000272563000000,0.000280859000000,0.000291922000000,0.000269798000000,0.015337836000000,0.000257946000000,0.014309490000000,0.000267822000000,0.000216465000000 +0.000166687000000,0.000260711000000,0.000050538000000,0.000081749000000,0.000242144000000,0.000173798000000,0.000056069000000,0.000144168000000,0.000179329000000,0.000070292000000,0.000272563000000,0.000274934000000,0.000256365000000,0.000268613000000,0.014645293000000,0.000304959000000,0.013688059000000,0.000258736000000,0.000245700000000 +0.000147329000000,0.000332613000000,0.000047773000000,0.000080959000000,0.000230687000000,0.000172218000000,0.000055280000000,0.000139823000000,0.000108613000000,0.000071872000000,0.000267823000000,0.000307724000000,0.000261501000000,0.000267428000000,0.014791466000000,0.000265452000000,0.014776058000000,0.000297848000000,0.000207378000000 +0.000146538000000,0.000261106000000,0.000082538000000,0.000081748000000,0.000194341000000,0.000171033000000,0.000058440000000,0.000140218000000,0.000107823000000,0.000071082000000,0.000274144000000,0.000267428000000,0.000292316000000,0.000249650000000,0.015075910000000,0.000261501000000,0.013955121000000,0.000261897000000,0.000208169000000 +0.000147329000000,0.000294687000000,0.000048169000000,0.000080168000000,0.000193947000000,0.000174588000000,0.000054884000000,0.000141403000000,0.000108218000000,0.000070292000000,0.000312860000000,0.000268217000000,0.000257156000000,0.000291526000000,0.014264453000000,0.000509600000000,0.013929047000000,0.000312069000000,0.000207773000000 +0.000145749000000,0.000260317000000,0.000045798000000,0.000080958000000,0.000195131000000,0.000173798000000,0.000054095000000,0.000140218000000,0.000108218000000,0.000105848000000,0.000270193000000,0.000290736000000,0.000258736000000,0.000320366000000,0.014508997000000,0.000293897000000,0.014412207000000,0.000258736000000,0.000217650000000 +0.000195527000000,0.000260712000000,0.000048563000000,0.000082144000000,0.000213305000000,0.000170242000000,0.000055280000000,0.000141403000000,0.000155230000000,0.000084514000000,0.000269008000000,0.000261896000000,0.000291527000000,0.000238588000000,0.014543367000000,0.000286786000000,0.014219812000000,0.000259922000000,0.000220020000000 +0.000146934000000,0.000261107000000,0.000045403000000,0.000081354000000,0.000195922000000,0.000171033000000,0.000141403000000,0.000139428000000,0.000106638000000,0.000070292000000,0.000360662000000,0.000259526000000,0.000258341000000,0.000277699000000,0.014679663000000,0.000258736000000,0.013720849000000,0.000260316000000,0.000249255000000 +0.000147329000000,0.000261501000000,0.000045403000000,0.000080958000000,0.000197501000000,0.000170638000000,0.000053305000000,0.000138637000000,0.000107427000000,0.000069502000000,0.000270193000000,0.000324316000000,0.000263082000000,0.000284810000000,0.014698231000000,0.000296267000000,0.015317687000000,0.000260712000000,0.000225156000000 +0.000146539000000,0.000261502000000,0.000050934000000,0.000080959000000,0.000269797000000,0.000183279000000,0.000053699000000,0.000138638000000,0.000109008000000,0.000071478000000,0.000270588000000,0.000260712000000,0.000261897000000,0.000262687000000,0.014369935000000,0.000257946000000,0.013973689000000,0.000329453000000,0.000221995000000 +0.000179328000000,0.000296268000000,0.000084909000000,0.000080959000000,0.000195131000000,0.000171428000000,0.000055675000000,0.000140218000000,0.000107823000000,0.000069897000000,0.000347230000000,0.000293897000000,0.000258736000000,0.000278094000000,0.014966873000000,0.000308119000000,0.014343071000000,0.000262687000000,0.000269798000000 +0.000146538000000,0.000591377000000,0.000045403000000,0.000083724000000,0.000195921000000,0.000173403000000,0.000054094000000,0.000141007000000,0.000109403000000,0.000069897000000,0.000272564000000,0.000259526000000,0.000309699000000,0.000245699000000,0.014267614000000,0.000293502000000,0.013883219000000,0.000305748000000,0.000239378000000 +0.000146144000000,0.000265847000000,0.000045403000000,0.000081354000000,0.000230687000000,0.000171823000000,0.000054094000000,0.000139032000000,0.000122045000000,0.000087674000000,0.000310884000000,0.000257156000000,0.000257156000000,0.000271773000000,0.014472651000000,0.000257156000000,0.015993243000000,0.000260712000000,0.000207773000000 +0.000147329000000,0.000263477000000,0.000045798000000,0.000081749000000,0.000196316000000,0.000206588000000,0.000054490000000,0.000140218000000,0.000106637000000,0.000071082000000,0.000310094000000,0.000296662000000,0.000257946000000,0.000241749000000,0.014531515000000,0.000298638000000,0.014362428000000,0.000423082000000,0.000208564000000 +0.000148119000000,0.000261502000000,0.000045403000000,0.000081354000000,0.000195922000000,0.000171032000000,0.000088070000000,0.000139428000000,0.000107428000000,0.000071872000000,0.000318390000000,0.000262292000000,0.000290736000000,0.000267428000000,0.014595515000000,0.000260711000000,0.013974083000000,0.000264268000000,0.000208959000000 +0.000180119000000,0.000261107000000,0.000045798000000,0.000080563000000,0.000195131000000,0.000171032000000,0.000054884000000,0.000137848000000,0.000108613000000,0.000071082000000,0.000267427000000,0.000260316000000,0.000255576000000,0.000257551000000,0.014823861000000,0.000258341000000,0.014515713000000,0.000295082000000,0.000207773000000 +0.000148514000000,0.000322342000000,0.000062391000000,0.000081749000000,0.000195922000000,0.000170637000000,0.000053700000000,0.000138243000000,0.000108613000000,0.000071477000000,0.000260316000000,0.000340514000000,0.000262687000000,0.000286785000000,0.014811614000000,0.000292317000000,0.014115515000000,0.000324317000000,0.000207774000000 +0.000146539000000,0.000262687000000,0.000045798000000,0.000083329000000,0.000197502000000,0.000174589000000,0.000053304000000,0.000140217000000,0.000143378000000,0.000069502000000,0.000340514000000,0.000258342000000,0.000257551000000,0.000236218000000,0.014592749000000,0.000257946000000,0.013953145000000,0.000295477000000,0.000208563000000 +0.000145749000000,0.000293106000000,0.000077403000000,0.000081749000000,0.000195131000000,0.000171823000000,0.000053305000000,0.000148514000000,0.000107822000000,0.000071872000000,0.000263477000000,0.000257156000000,0.000263082000000,0.000251625000000,0.014520849000000,0.000257946000000,0.014317787000000,0.000260316000000,0.000206588000000 +0.000210933000000,0.000264662000000,0.000048168000000,0.000081749000000,0.000241749000000,0.000170638000000,0.000053699000000,0.000165896000000,0.000107033000000,0.000106243000000,0.000262687000000,0.000381206000000,0.000295081000000,0.000305354000000,0.014485688000000,0.000274934000000,0.013740602000000,0.000343675000000,0.000206983000000 +0.000147329000000,0.000262687000000,0.000045798000000,0.000082538000000,0.000197107000000,0.000170638000000,0.000056465000000,0.000144563000000,0.000108613000000,0.000077798000000,0.000312465000000,0.000290736000000,0.000282044000000,0.000266242000000,0.014153046000000,0.000257946000000,0.013676602000000,0.000260712000000,0.000209748000000 +0.000148119000000,0.000260712000000,0.000045799000000,0.000080958000000,0.000195131000000,0.000210934000000,0.000054094000000,0.000130736000000,0.000107428000000,0.000071082000000,0.000263477000000,0.000358687000000,0.000257946000000,0.000256761000000,0.014487268000000,0.000327477000000,0.014192552000000,0.000262292000000,0.000208168000000 +0.000147328000000,0.000261501000000,0.000048169000000,0.000081354000000,0.000196317000000,0.000171032000000,0.000069897000000,0.000131131000000,0.000108613000000,0.000070687000000,0.000270193000000,0.000276119000000,0.000326687000000,0.000314440000000,0.014472255000000,0.000256761000000,0.014179911000000,0.000261501000000,0.000208563000000 +0.000148119000000,0.000263872000000,0.000045798000000,0.000080958000000,0.000252416000000,0.000170637000000,0.000053699000000,0.000130737000000,0.000124020000000,0.000075823000000,0.000293502000000,0.000314439000000,0.000255180000000,0.000207773000000,0.014862181000000,0.000257946000000,0.014152651000000,0.000261502000000,0.000206983000000 +0.000147329000000,0.000260316000000,0.000046983000000,0.000083329000000,0.000194342000000,0.000171033000000,0.000058045000000,0.000187230000000,0.000109008000000,0.000069897000000,0.000259132000000,0.000333007000000,0.000258736000000,0.000281254000000,0.014174774000000,0.000340118000000,0.014392059000000,0.000306144000000,0.000207378000000 +0.000147724000000,0.000331032000000,0.000065947000000,0.000081354000000,0.000195131000000,0.000174193000000,0.000055675000000,0.000131526000000,0.000112959000000,0.000071478000000,0.000349206000000,0.000444810000000,0.000258341000000,0.000319575000000,0.014419713000000,0.000261106000000,0.014646083000000,0.000262687000000,0.000209354000000 +0.000146539000000,0.000262292000000,0.000045798000000,0.000081749000000,0.000229896000000,0.000170638000000,0.000054489000000,0.000130736000000,0.000110193000000,0.000086094000000,0.000261107000000,0.000277699000000,0.000265057000000,0.000262687000000,0.014570626000000,0.000258341000000,0.014175564000000,0.000297057000000,0.000208563000000 +0.000149304000000,0.000294687000000,0.000048168000000,0.000081748000000,0.000193551000000,0.000172613000000,0.000054884000000,0.000131131000000,0.000114539000000,0.000071477000000,0.000258737000000,0.000306539000000,0.000291921000000,0.000269798000000,0.014755910000000,0.000260712000000,0.013855565000000,0.000262291000000,0.000217255000000 +0.000214884000000,0.000259526000000,0.000045798000000,0.000081354000000,0.000197107000000,0.000171823000000,0.000056070000000,0.000134292000000,0.000109798000000,0.000071872000000,0.000452712000000,0.000259526000000,0.000258341000000,0.000224366000000,0.014856651000000,0.000255971000000,0.014647268000000,0.000280859000000,0.000219626000000 +0.000147329000000,0.000261107000000,0.000047773000000,0.000081353000000,0.000195526000000,0.000267428000000,0.000071477000000,0.000212514000000,0.000107823000000,0.000069897000000,0.000378045000000,0.000257551000000,0.000259921000000,0.000262292000000,0.014876404000000,0.000325501000000,0.014136454000000,0.000263082000000,0.000207773000000 +0.000148119000000,0.000260712000000,0.000045798000000,0.000081749000000,0.000230292000000,0.000200268000000,0.000067527000000,0.000131131000000,0.000108613000000,0.000103872000000,0.000312464000000,0.000362637000000,0.000329847000000,0.000256761000000,0.014808453000000,0.000258342000000,0.013964207000000,0.000266637000000,0.000278094000000 +0.000147329000000,0.000262687000000,0.000045403000000,0.000081353000000,0.000196711000000,0.000170637000000,0.000053699000000,0.000131526000000,0.000107033000000,0.000069502000000,0.000257551000000,0.000259131000000,0.000256366000000,0.000400563000000,0.014300009000000,0.000258341000000,0.014187022000000,0.000353551000000,0.000207379000000 +0.000180119000000,0.000295082000000,0.000045403000000,0.000082144000000,0.000195131000000,0.000170638000000,0.000054094000000,0.000132316000000,0.000107033000000,0.000071477000000,0.000257551000000,0.000259526000000,0.000261502000000,0.000262687000000,0.014611713000000,0.000304564000000,0.014354527000000,0.000259921000000,0.000208563000000 +0.000147329000000,0.000259131000000,0.000046194000000,0.000081749000000,0.000229897000000,0.000174193000000,0.000055280000000,0.000219230000000,0.000272169000000,0.000069897000000,0.000259526000000,0.000259527000000,0.000272958000000,0.000276909000000,0.014406676000000,0.000255971000000,0.014318577000000,0.000271773000000,0.000218439000000 +0.000146144000000,0.000305749000000,0.000045798000000,0.000081749000000,0.000195526000000,0.000171822000000,0.000056465000000,0.000179328000000,0.000129551000000,0.000069897000000,0.000260712000000,0.000262292000000,0.000257551000000,0.000231873000000,0.014068898000000,0.000257946000000,0.013829491000000,0.000263082000000,0.000220415000000 +0.000147724000000,0.000258737000000,0.000048169000000,0.000081749000000,0.000196317000000,0.000173798000000,0.000053700000000,0.000131921000000,0.000107033000000,0.000069897000000,0.000290736000000,0.000331428000000,0.000323527000000,0.000259131000000,0.015046675000000,0.000263477000000,0.014383367000000,0.000310490000000,0.000208563000000 +0.000148119000000,0.000308119000000,0.000045798000000,0.000081353000000,0.000196317000000,0.000171822000000,0.000093600000000,0.000130737000000,0.000108613000000,0.000071082000000,0.000257551000000,0.000259132000000,0.000258736000000,0.000351575000000,0.014955416000000,0.000261896000000,0.013949195000000,0.000268613000000,0.000210539000000 +0.000159971000000,0.000262687000000,0.000045798000000,0.000081749000000,0.000196316000000,0.000173798000000,0.000130341000000,0.000163921000000,0.000123625000000,0.000103872000000,0.000259526000000,0.000257551000000,0.000258736000000,0.000267427000000,0.014100898000000,0.000292316000000,0.013882824000000,0.000281255000000,0.000207773000000 +0.000146539000000,0.000335378000000,0.000048564000000,0.000081354000000,0.000196316000000,0.000170243000000,0.000084514000000,0.000130736000000,0.000109008000000,0.000072268000000,0.000293896000000,0.000296267000000,0.000378045000000,0.000240958000000,0.015986922000000,0.000257552000000,0.014965688000000,0.000261502000000,0.000206983000000 +0.000146538000000,0.000262687000000,0.000045798000000,0.000082539000000,0.000195922000000,0.000170637000000,0.000057650000000,0.000131922000000,0.000107428000000,0.000069897000000,0.000258736000000,0.000259921000000,0.000260712000000,0.000296662000000,0.014556799000000,0.000255180000000,0.014382972000000,0.000264662000000,0.000206193000000 +0.000148119000000,0.000261897000000,0.000045798000000,0.000082538000000,0.000319181000000,0.000170637000000,0.000053699000000,0.000136267000000,0.000107033000000,0.000069897000000,0.000264267000000,0.000257947000000,0.000293896000000,0.000235428000000,0.014763416000000,0.000455082000000,0.013647762000000,0.000261896000000,0.000291131000000 +0.000181700000000,0.000329848000000,0.000047378000000,0.000081354000000,0.000212910000000,0.000174589000000,0.000054094000000,0.000131921000000,0.000109008000000,0.000069897000000,0.000291526000000,0.000325502000000,0.000262292000000,0.000257551000000,0.014891021000000,0.000258341000000,0.014327663000000,0.000259526000000,0.000218045000000 +0.000146539000000,0.000259527000000,0.000045798000000,0.000080564000000,0.000195131000000,0.000205798000000,0.000077798000000,0.000200267000000,0.000141403000000,0.000071082000000,0.000258341000000,0.000258737000000,0.000258341000000,0.000301008000000,0.014131317000000,0.000292712000000,0.013719664000000,0.000294687000000,0.000207379000000 +0.000146538000000,0.000297847000000,0.000046588000000,0.000080563000000,0.000233057000000,0.000172218000000,0.000054095000000,0.000130341000000,0.000128366000000,0.000071477000000,0.000262687000000,0.000272564000000,0.000326686000000,0.000244119000000,0.014235614000000,0.000258737000000,0.013980405000000,0.000260317000000,0.000236218000000 +0.000148514000000,0.000259132000000,0.000046194000000,0.000082934000000,0.000195131000000,0.000172218000000,0.000053304000000,0.000132712000000,0.000107033000000,0.000103872000000,0.000264267000000,0.000274934000000,0.000259132000000,0.000293502000000,0.014640157000000,0.000257551000000,0.014154626000000,0.000330638000000,0.000218440000000 +0.000145749000000,0.000264662000000,0.000048169000000,0.000082144000000,0.000195921000000,0.000173008000000,0.000054094000000,0.000131131000000,0.000106637000000,0.000069897000000,0.000272563000000,0.000273353000000,0.000293501000000,0.000228317000000,0.014489639000000,0.000293107000000,0.014059022000000,0.000263477000000,0.000239773000000 +0.000215280000000,0.000259922000000,0.000047774000000,0.000080168000000,0.000196316000000,0.000172218000000,0.000055280000000,0.000152465000000,0.000107033000000,0.000070687000000,0.000293501000000,0.000357897000000,0.000262686000000,0.000259526000000,0.014479367000000,0.000255576000000,0.013830676000000,0.000261107000000,0.000207773000000 +0.000146933000000,0.000261106000000,0.000050934000000,0.000081354000000,0.000325501000000,0.000170638000000,0.000054095000000,0.000131527000000,0.000129947000000,0.000071477000000,0.000269798000000,0.000271773000000,0.000259131000000,0.000312464000000,0.014472256000000,0.000258736000000,0.014109590000000,0.000265453000000,0.000208168000000 +0.000147329000000,0.000260712000000,0.000048564000000,0.000080959000000,0.000195527000000,0.000174193000000,0.000055279000000,0.000130736000000,0.000107428000000,0.000072662000000,0.000280070000000,0.000268613000000,0.000342489000000,0.000256366000000,0.015270280000000,0.000273353000000,0.014002133000000,0.000259922000000,0.000222785000000 +0.000148514000000,0.000259527000000,0.000047774000000,0.000081353000000,0.000194736000000,0.000171427000000,0.000056069000000,0.000132711000000,0.000108612000000,0.000070292000000,0.000301008000000,0.000337749000000,0.000259921000000,0.000263082000000,0.015023762000000,0.000257156000000,0.014736947000000,0.000390687000000,0.000209354000000 +0.000179329000000,0.000297058000000,0.000045798000000,0.000080959000000,0.000229107000000,0.000170242000000,0.000087674000000,0.000131526000000,0.000110194000000,0.000069897000000,0.000269008000000,0.000274539000000,0.000259131000000,0.000325897000000,0.014914725000000,0.000295082000000,0.014177540000000,0.000263872000000,0.000209353000000 +0.000148909000000,0.000260712000000,0.000048168000000,0.000154045000000,0.000195132000000,0.000172613000000,0.000054490000000,0.000185255000000,0.000108613000000,0.000105058000000,0.000271378000000,0.000325896000000,0.000278489000000,0.000232663000000,0.014597490000000,0.000257156000000,0.014604997000000,0.000296267000000,0.000208563000000 +0.000146934000000,0.000296662000000,0.000048169000000,0.000086490000000,0.000196317000000,0.000171428000000,0.000053304000000,0.000129946000000,0.000109798000000,0.000069896000000,0.000273354000000,0.000257156000000,0.000257946000000,0.000257946000000,0.014392454000000,0.000257551000000,0.014599465000000,0.000259526000000,0.000208958000000 +0.000147329000000,0.000269798000000,0.000045798000000,0.000082143000000,0.000196712000000,0.000224761000000,0.000053699000000,0.000131922000000,0.000120860000000,0.000071082000000,0.000280465000000,0.000257156000000,0.000333008000000,0.000275329000000,0.014584058000000,0.000291132000000,0.013697936000000,0.000376859000000,0.000208564000000 +0.000146144000000,0.000261897000000,0.000048169000000,0.000080169000000,0.000272563000000,0.000170638000000,0.000054490000000,0.000132712000000,0.000107428000000,0.000105453000000,0.000338933000000,0.000305353000000,0.000258736000000,0.000260712000000,0.015287267000000,0.000257946000000,0.015059712000000,0.000281254000000,0.000207773000000 +0.000146934000000,0.000368563000000,0.000045798000000,0.000081353000000,0.000194737000000,0.000171823000000,0.000053699000000,0.000131526000000,0.000106638000000,0.000071082000000,0.000271774000000,0.000268613000000,0.000310094000000,0.000302588000000,0.014203219000000,0.000263477000000,0.013883615000000,0.000304959000000,0.000208168000000 +0.000147329000000,0.000259922000000,0.000047378000000,0.000080564000000,0.000194736000000,0.000173403000000,0.000054489000000,0.000165106000000,0.000107033000000,0.000071082000000,0.000262292000000,0.000258341000000,0.000256761000000,0.000263872000000,0.014480552000000,0.000257946000000,0.013874528000000,0.000260316000000,0.000206983000000 +0.000146934000000,0.000261106000000,0.000048168000000,0.000083724000000,0.000196712000000,0.000173798000000,0.000053700000000,0.000130737000000,0.000106637000000,0.000070687000000,0.000302193000000,0.000323922000000,0.000258736000000,0.000236218000000,0.014938034000000,0.000257946000000,0.014463564000000,0.000310884000000,0.000218440000000 +0.000148119000000,0.000263477000000,0.000045403000000,0.000081749000000,0.000199872000000,0.000170638000000,0.000056465000000,0.000133897000000,0.000193551000000,0.000107428000000,0.000257551000000,0.000274934000000,0.000277304000000,0.000315230000000,0.014236404000000,0.000294291000000,0.014446182000000,0.000270193000000,0.000216070000000 +0.000180119000000,0.000295477000000,0.000045403000000,0.000079773000000,0.000195527000000,0.000170243000000,0.000054095000000,0.000130342000000,0.000107427000000,0.000089255000000,0.000259527000000,0.000272168000000,0.000274933000000,0.000291132000000,0.013978824000000,0.000260316000000,0.013771417000000,0.000259921000000,0.000206984000000 +0.000147329000000,0.000262292000000,0.000047773000000,0.000080959000000,0.000197107000000,0.000170637000000,0.000055280000000,0.000150490000000,0.000108612000000,0.000070687000000,0.000291921000000,0.000274143000000,0.000255971000000,0.000357897000000,0.016265440000000,0.000259131000000,0.014239565000000,0.000258341000000,0.000217255000000 +0.000147724000000,0.000295872000000,0.000045798000000,0.000081354000000,0.000195921000000,0.000174193000000,0.000054094000000,0.000132317000000,0.000110193000000,0.000071477000000,0.000259131000000,0.000277304000000,0.000292317000000,0.000257551000000,0.015681143000000,0.000293106000000,0.014768947000000,0.000261106000000,0.000208563000000 +0.000146934000000,0.000261501000000,0.000121255000000,0.000080563000000,0.000195131000000,0.000172218000000,0.000054489000000,0.000131921000000,0.000108218000000,0.000072663000000,0.000296267000000,0.000511181000000,0.000269007000000,0.000226341000000,0.015007959000000,0.000261502000000,0.013949984000000,0.000295082000000,0.000207378000000 +0.000147724000000,0.000264267000000,0.000048564000000,0.000101897000000,0.000196316000000,0.000171823000000,0.000054094000000,0.000131922000000,0.000142588000000,0.000071478000000,0.000257946000000,0.000408465000000,0.000257156000000,0.000304959000000,0.015531021000000,0.000258341000000,0.014187416000000,0.000264267000000,0.000210143000000 +0.000225946000000,0.000262687000000,0.000045798000000,0.000080563000000,0.000229107000000,0.000171822000000,0.000055674000000,0.000130341000000,0.000107428000000,0.000071082000000,0.000259526000000,0.000269798000000,0.000269798000000,0.000261897000000,0.016043020000000,0.000311674000000,0.015541292000000,0.000296267000000,0.000215675000000 +0.000146539000000,0.000262687000000,0.000047773000000,0.000080564000000,0.000194341000000,0.000172613000000,0.000088860000000,0.000131922000000,0.000110193000000,0.000072663000000,0.000291921000000,0.000269403000000,0.000260317000000,0.000265453000000,0.015054972000000,0.000261897000000,0.014521243000000,0.000262687000000,0.000208169000000 +0.000145354000000,0.000295082000000,0.000045798000000,0.000080958000000,0.000197107000000,0.000171822000000,0.000054490000000,0.000130736000000,0.000110983000000,0.000071477000000,0.000259921000000,0.000306143000000,0.000316810000000,0.000275724000000,0.015252897000000,0.000282045000000,0.013753639000000,0.000264267000000,0.000206983000000 +0.000180514000000,0.000264267000000,0.000045798000000,0.000080564000000,0.000194736000000,0.000170638000000,0.000054094000000,0.000133107000000,0.000108613000000,0.000073453000000,0.000258341000000,0.000270588000000,0.000263872000000,0.000265057000000,0.014610922000000,0.000261501000000,0.014337935000000,0.000265058000000,0.000208958000000 +0.000162736000000,0.000346044000000,0.000048564000000,0.000081749000000,0.000208564000000,0.000172218000000,0.000054094000000,0.000131922000000,0.000108613000000,0.000070291000000,0.000261502000000,0.000270588000000,0.000263082000000,0.000211329000000,0.014723120000000,0.000257946000000,0.013927466000000,0.000262687000000,0.000206588000000 +0.000147329000000,0.000260316000000,0.000082539000000,0.000081749000000,0.000195131000000,0.000180514000000,0.000054884000000,0.000152860000000,0.000109798000000,0.000069897000000,0.000262686000000,0.000302193000000,0.000545551000000,0.000275329000000,0.014836503000000,0.000620217000000,0.013887565000000,0.000291526000000,0.000208958000000 +0.000145748000000,0.000261106000000,0.000045403000000,0.000125206000000,0.000196316000000,0.000172613000000,0.000054884000000,0.000131922000000,0.000108218000000,0.000109403000000,0.000315230000000,0.000267032000000,0.000286785000000,0.000263872000000,0.014179515000000,0.000255971000000,0.014126577000000,0.000264662000000,0.000208168000000 +0.000167082000000,0.000259131000000,0.000048168000000,0.000081354000000,0.000242144000000,0.000171822000000,0.000054095000000,0.000131526000000,0.000107032000000,0.000069502000000,0.000259131000000,0.000282440000000,0.000291922000000,0.000262687000000,0.014604206000000,0.000293501000000,0.013950775000000,0.000303379000000,0.000210144000000 +0.000148119000000,0.000258737000000,0.000048168000000,0.000080958000000,0.000194736000000,0.000170242000000,0.000054095000000,0.000131922000000,0.000107033000000,0.000069502000000,0.000269008000000,0.000272563000000,0.000257947000000,0.000258341000000,0.014887466000000,0.000261107000000,0.013886775000000,0.000262686000000,0.000206588000000 +0.000148909000000,0.000269008000000,0.000047773000000,0.000080959000000,0.000195526000000,0.000174588000000,0.000053304000000,0.000132712000000,0.000108217000000,0.000069896000000,0.000306144000000,0.000275724000000,0.000259526000000,0.000237798000000,0.015246181000000,0.000299823000000,0.013881639000000,0.000260711000000,0.000208958000000 +0.000146539000000,0.000260712000000,0.000046193000000,0.000081748000000,0.000195527000000,0.000171032000000,0.000053305000000,0.000148909000000,0.000156415000000,0.000069897000000,0.000259921000000,0.000316020000000,0.000263082000000,0.000233057000000,0.015044305000000,0.000256366000000,0.014334774000000,0.000260316000000,0.000211328000000 +0.000147329000000,0.000274143000000,0.000048168000000,0.000081354000000,0.000264267000000,0.000171427000000,0.000053699000000,0.000131921000000,0.000107033000000,0.000069502000000,0.000261107000000,0.000276909000000,0.000259921000000,0.000261896000000,0.014606972000000,0.000274538000000,0.014345836000000,0.000260316000000,0.000207378000000 +0.000176168000000,0.000267427000000,0.000048564000000,0.000121650000000,0.000199082000000,0.000171823000000,0.000056860000000,0.000130736000000,0.000108613000000,0.000071082000000,0.000290737000000,0.000273749000000,0.000296662000000,0.000265452000000,0.014552454000000,0.000340514000000,0.015033638000000,0.000349995000000,0.000207774000000 +0.000162736000000,0.000347625000000,0.000086490000000,0.000080564000000,0.000195922000000,0.000207379000000,0.000053700000000,0.000132712000000,0.000108217000000,0.000145353000000,0.000257156000000,0.000295477000000,0.000263477000000,0.000293107000000,0.014583663000000,0.000259921000000,0.016576353000000,0.000260711000000,0.000208958000000 +0.000146934000000,0.000261501000000,0.000046194000000,0.000098736000000,0.000229897000000,0.000169847000000,0.000056070000000,0.000133502000000,0.000109007000000,0.000073452000000,0.000260316000000,0.000263082000000,0.000265847000000,0.000238588000000,0.014574182000000,0.000303773000000,0.014765391000000,0.000291921000000,0.000323131000000 +0.000147724000000,0.000293896000000,0.000048564000000,0.000095575000000,0.000195922000000,0.000172612000000,0.000054489000000,0.000161946000000,0.000147724000000,0.000070687000000,0.000272564000000,0.000259922000000,0.000295872000000,0.000233847000000,0.015505737000000,0.000261896000000,0.014234429000000,0.000315230000000,0.000206588000000 +0.000180514000000,0.000263082000000,0.000048169000000,0.000081353000000,0.000194736000000,0.000170637000000,0.000107033000000,0.000131526000000,0.000107428000000,0.000069897000000,0.000257551000000,0.000273353000000,0.000263082000000,0.000303379000000,0.014426429000000,0.000257946000000,0.014192158000000,0.000328267000000,0.000209748000000 +0.000147724000000,0.000261107000000,0.000045798000000,0.000100317000000,0.000195921000000,0.000175378000000,0.000067922000000,0.000132316000000,0.000108613000000,0.000072662000000,0.000265057000000,0.000272958000000,0.000256366000000,0.000277699000000,0.014145540000000,0.000293501000000,0.014535466000000,0.000263477000000,0.000244119000000 +0.000146934000000,0.000261107000000,0.000045798000000,0.000097156000000,0.000345650000000,0.000171032000000,0.000052909000000,0.000131922000000,0.000109008000000,0.000069897000000,0.000317995000000,0.000319970000000,0.000275724000000,0.000260711000000,0.014575762000000,0.000259526000000,0.014858231000000,0.000261107000000,0.000210934000000 +0.000146539000000,0.000262292000000,0.000046193000000,0.000081749000000,0.000194736000000,0.000171033000000,0.000053699000000,0.000146538000000,0.000106637000000,0.000069897000000,0.000259131000000,0.000273353000000,0.000257551000000,0.000291526000000,0.014619219000000,0.000259526000000,0.015024552000000,0.000260712000000,0.000220416000000 +0.000190391000000,0.000295477000000,0.000045798000000,0.000080958000000,0.000195132000000,0.000171823000000,0.000053700000000,0.000131921000000,0.000107823000000,0.000070292000000,0.000312069000000,0.000268613000000,0.000289946000000,0.000263477000000,0.013999763000000,0.000292317000000,0.014072454000000,0.000260316000000,0.000244119000000 +0.000147724000000,0.000263082000000,0.000060811000000,0.000082144000000,0.000228317000000,0.000171823000000,0.000052909000000,0.000135478000000,0.000122440000000,0.000071082000000,0.000263082000000,0.000292317000000,0.000308514000000,0.000237008000000,0.014832551000000,0.000259131000000,0.014329639000000,0.000304564000000,0.000207378000000 +0.000146934000000,0.000259131000000,0.000045799000000,0.000080958000000,0.000194341000000,0.000171823000000,0.000055279000000,0.000130736000000,0.000107032000000,0.000071873000000,0.000268612000000,0.000276514000000,0.000258341000000,0.000321946000000,0.014592750000000,0.000257946000000,0.013724009000000,0.000265452000000,0.000218440000000 +0.000146934000000,0.000262687000000,0.000045798000000,0.000080959000000,0.000194737000000,0.000171823000000,0.000110983000000,0.000131526000000,0.000107033000000,0.000069897000000,0.000272168000000,0.000281650000000,0.000291527000000,0.000269403000000,0.014181885000000,0.000257551000000,0.014049935000000,0.000293502000000,0.000242144000000 +0.000148119000000,0.000259922000000,0.000048168000000,0.000094786000000,0.000237403000000,0.000182094000000,0.000053699000000,0.000337749000000,0.000108613000000,0.000071873000000,0.000272168000000,0.000336958000000,0.000255971000000,0.000334984000000,0.014886676000000,0.000259131000000,0.013643812000000,0.000261107000000,0.000208564000000 +0.000195527000000,0.000272169000000,0.000045798000000,0.000081353000000,0.000196711000000,0.000171822000000,0.000055675000000,0.000165501000000,0.000415576000000,0.000076218000000,0.000368168000000,0.000267823000000,0.000257551000000,0.000268218000000,0.014246676000000,0.000291921000000,0.014432355000000,0.000310094000000,0.000209353000000 +0.000148514000000,0.000264662000000,0.000048168000000,0.000080958000000,0.000197107000000,0.000171427000000,0.000053304000000,0.000139032000000,0.000120859000000,0.000091626000000,0.000272168000000,0.000269008000000,0.000272958000000,0.000226341000000,0.014327268000000,0.000261502000000,0.014422478000000,0.000261897000000,0.000263082000000 +0.000146538000000,0.000310885000000,0.000048168000000,0.000081354000000,0.000194737000000,0.000170637000000,0.000053700000000,0.000172612000000,0.000109799000000,0.000070292000000,0.000281650000000,0.000262292000000,0.000265848000000,0.000360267000000,0.014886675000000,0.000260317000000,0.014356108000000,0.000261897000000,0.000207378000000 +0.000148119000000,0.000308909000000,0.000167872000000,0.000080958000000,0.000230292000000,0.000172613000000,0.000053699000000,0.000131922000000,0.000108613000000,0.000071478000000,0.000271773000000,0.000272563000000,0.000291131000000,0.000285996000000,0.014542577000000,0.000383971000000,0.013951170000000,0.000268217000000,0.000206984000000 +0.000183279000000,0.000296662000000,0.000048169000000,0.000081354000000,0.000242143000000,0.000170638000000,0.000055279000000,0.000130736000000,0.000109403000000,0.000072662000000,0.000275328000000,0.000313254000000,0.000260316000000,0.000255576000000,0.014435515000000,0.000282045000000,0.014282627000000,0.000261106000000,0.000215674000000 +0.000146934000000,0.000260711000000,0.000045798000000,0.000082934000000,0.000195132000000,0.000171427000000,0.000072663000000,0.000130341000000,0.000109008000000,0.000070687000000,0.000363032000000,0.000281255000000,0.000255971000000,0.000282835000000,0.014661885000000,0.000259921000000,0.013867417000000,0.000292711000000,0.000209353000000 +0.000147329000000,0.000261897000000,0.000045798000000,0.000081749000000,0.000229107000000,0.000189205000000,0.000054884000000,0.000130737000000,0.000108612000000,0.000070292000000,0.000322341000000,0.000273749000000,0.000329057000000,0.000266637000000,0.014471465000000,0.000256761000000,0.013872947000000,0.000260712000000,0.000207378000000 +0.000146539000000,0.000262687000000,0.000045403000000,0.000080958000000,0.000209748000000,0.000185650000000,0.000053699000000,0.000133897000000,0.000107427000000,0.000069502000000,0.000292712000000,0.000323921000000,0.000260317000000,0.000271378000000,0.014400750000000,0.000257946000000,0.013999762000000,0.000431773000000,0.000206983000000 +0.000146539000000,0.000259921000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000172613000000,0.000055280000000,0.000131132000000,0.000108613000000,0.000089650000000,0.000275329000000,0.000270193000000,0.000292711000000,0.000300613000000,0.014348207000000,0.000291922000000,0.013725985000000,0.000262292000000,0.000257551000000 +0.000160761000000,0.000294687000000,0.000045403000000,0.000080958000000,0.000196316000000,0.000170242000000,0.000058045000000,0.000129947000000,0.000142984000000,0.000071872000000,0.000269007000000,0.000267033000000,0.000257946000000,0.000244514000000,0.014840848000000,0.000257946000000,0.013740207000000,0.000374884000000,0.000217650000000 +0.000148119000000,0.000274144000000,0.000087280000000,0.000081354000000,0.000229502000000,0.000172218000000,0.000054490000000,0.000130341000000,0.000108613000000,0.000071872000000,0.000342094000000,0.000270983000000,0.000262292000000,0.000307724000000,0.014755910000000,0.000256761000000,0.014493194000000,0.000414786000000,0.000207773000000 +0.000147329000000,0.000391872000000,0.000048959000000,0.000080959000000,0.000194342000000,0.000171032000000,0.000054489000000,0.000150489000000,0.000107033000000,0.000069897000000,0.000272168000000,0.000270193000000,0.000291921000000,0.000271773000000,0.014477392000000,0.000290341000000,0.014096947000000,0.000261897000000,0.000244119000000 +0.000146539000000,0.000263082000000,0.000047378000000,0.000214094000000,0.000197107000000,0.000336563000000,0.000054885000000,0.000131922000000,0.000109403000000,0.000071872000000,0.000274539000000,0.000314045000000,0.000265058000000,0.000272168000000,0.014461194000000,0.000259527000000,0.013770232000000,0.000259922000000,0.000208168000000 +0.000215279000000,0.000308909000000,0.000045798000000,0.000112169000000,0.000195527000000,0.000205798000000,0.000054884000000,0.000131132000000,0.000108218000000,0.000073058000000,0.000337354000000,0.000273749000000,0.000261107000000,0.000277304000000,0.014143565000000,0.000257946000000,0.014059022000000,0.000297847000000,0.000206588000000 +0.000148119000000,0.000263477000000,0.000048169000000,0.000081748000000,0.000194736000000,0.000171428000000,0.000053304000000,0.000131922000000,0.000108613000000,0.000072267000000,0.000273354000000,0.000266637000000,0.000265057000000,0.000241353000000,0.014767367000000,0.000257156000000,0.014374281000000,0.000260317000000,0.000253205000000 +0.000147329000000,0.000338538000000,0.000048169000000,0.000082538000000,0.000195922000000,0.000208168000000,0.000052910000000,0.000131132000000,0.000108218000000,0.000154044000000,0.000353946000000,0.000302983000000,0.000259526000000,0.000269403000000,0.014990972000000,0.000256761000000,0.014375860000000,0.000294291000000,0.000208168000000 +0.000145749000000,0.000262687000000,0.000045404000000,0.000102687000000,0.000195132000000,0.000172218000000,0.000055279000000,0.000164711000000,0.000109007000000,0.000072267000000,0.000270983000000,0.000269798000000,0.000290341000000,0.000314440000000,0.014660700000000,0.000292317000000,0.013833836000000,0.000261501000000,0.000208958000000 +0.000165897000000,0.000263872000000,0.000052119000000,0.000080564000000,0.000229897000000,0.000170242000000,0.000056859000000,0.000131526000000,0.000107823000000,0.000070292000000,0.000267427000000,0.000291131000000,0.000260316000000,0.000274144000000,0.014359663000000,0.000255576000000,0.014280651000000,0.000266242000000,0.000207378000000 +0.000146539000000,0.000262687000000,0.000084514000000,0.000080958000000,0.000195131000000,0.000172217000000,0.000054885000000,0.000131921000000,0.000112564000000,0.000072267000000,0.000340119000000,0.000257946000000,0.000270588000000,0.000230686000000,0.015436601000000,0.000257156000000,0.013478282000000,0.000262686000000,0.000242539000000 +0.000146144000000,0.000260711000000,0.000048168000000,0.000080564000000,0.000617452000000,0.000242539000000,0.000110588000000,0.000131131000000,0.000107032000000,0.000069501000000,0.000274538000000,0.000272168000000,0.000306143000000,0.000250440000000,0.014242725000000,0.000293106000000,0.013894281000000,0.000382785000000,0.000207773000000 +0.000147724000000,0.000332218000000,0.000046193000000,0.000081353000000,0.000196712000000,0.000170637000000,0.000053699000000,0.000130736000000,0.000150884000000,0.000071872000000,0.000349600000000,0.000300217000000,0.000259527000000,0.000267823000000,0.014431170000000,0.000261502000000,0.014459614000000,0.000325502000000,0.000206193000000 +0.000146934000000,0.000261501000000,0.000048564000000,0.000080959000000,0.000196711000000,0.000172218000000,0.000055280000000,0.000134292000000,0.000107427000000,0.000069897000000,0.000511180000000,0.000270193000000,0.000264663000000,0.000282440000000,0.014463170000000,0.000343279000000,0.013699515000000,0.000261107000000,0.000244514000000 +0.000291526000000,0.000292316000000,0.000049354000000,0.000081353000000,0.000194736000000,0.000171428000000,0.000054095000000,0.000131922000000,0.000107427000000,0.000070687000000,0.000279675000000,0.000258737000000,0.000260712000000,0.000268613000000,0.014684404000000,0.000257946000000,0.014001342000000,0.000262687000000,0.000218045000000 +0.000146934000000,0.000263477000000,0.000049749000000,0.000080958000000,0.000208168000000,0.000185650000000,0.000054094000000,0.000135872000000,0.000141008000000,0.000070687000000,0.000271379000000,0.000291131000000,0.000256761000000,0.000259131000000,0.014494379000000,0.000256366000000,0.013959071000000,0.000261107000000,0.000206983000000 +0.000147329000000,0.000261502000000,0.000048169000000,0.000081749000000,0.000195132000000,0.000172218000000,0.000053699000000,0.000132317000000,0.000108612000000,0.000072267000000,0.000291131000000,0.000260711000000,0.000295082000000,0.000243329000000,0.014396799000000,0.000294687000000,0.014719169000000,0.000262292000000,0.000207378000000 +0.000147329000000,0.000290342000000,0.000048168000000,0.000081749000000,0.000196317000000,0.000172218000000,0.000054094000000,0.000149304000000,0.000143378000000,0.000070292000000,0.000257156000000,0.000257552000000,0.000256366000000,0.000350786000000,0.014672552000000,0.000257551000000,0.014616848000000,0.000259921000000,0.000305354000000 +0.000355131000000,0.000279279000000,0.000048564000000,0.000080169000000,0.000264267000000,0.000171428000000,0.000054884000000,0.000140218000000,0.000110193000000,0.000071082000000,0.000272168000000,0.000363032000000,0.000257551000000,0.000269007000000,0.015005984000000,0.000257551000000,0.014108405000000,0.000496168000000,0.000216465000000 +0.000177353000000,0.000332612000000,0.000046193000000,0.000081354000000,0.000196316000000,0.000185255000000,0.000053699000000,0.000136662000000,0.000111378000000,0.000070687000000,0.000305354000000,0.000261502000000,0.000291922000000,0.000291921000000,0.015042329000000,0.000275724000000,0.014416947000000,0.000263081000000,0.000207378000000 +0.000147329000000,0.000263872000000,0.000047773000000,0.000080563000000,0.000195132000000,0.000172613000000,0.000057650000000,0.000131921000000,0.000108613000000,0.000103872000000,0.000281254000000,0.000302588000000,0.000262687000000,0.000265847000000,0.014495564000000,0.000257946000000,0.014481342000000,0.000314045000000,0.000208168000000 +0.000220811000000,0.000262687000000,0.000048168000000,0.000082934000000,0.000195526000000,0.000173403000000,0.000054094000000,0.000133502000000,0.000107032000000,0.000069897000000,0.000269798000000,0.000262687000000,0.000258736000000,0.000244119000000,0.014062972000000,0.000355527000000,0.014172799000000,0.000265452000000,0.000207379000000 +0.000147724000000,0.000260711000000,0.000047378000000,0.000080563000000,0.000229896000000,0.000193156000000,0.000054490000000,0.000168662000000,0.000107033000000,0.000073452000000,0.000307724000000,0.000261107000000,0.000291132000000,0.000242933000000,0.014487268000000,0.000257946000000,0.014294478000000,0.000296267000000,0.000207378000000 +0.000146143000000,0.000296267000000,0.000046193000000,0.000084119000000,0.000195131000000,0.000170638000000,0.000058045000000,0.000130737000000,0.000108218000000,0.000071082000000,0.000274934000000,0.000308514000000,0.000257551000000,0.000268218000000,0.014532701000000,0.000260711000000,0.013732305000000,0.000258341000000,0.000242144000000 +0.000148514000000,0.000259526000000,0.000045403000000,0.000081354000000,0.000195132000000,0.000171428000000,0.000056070000000,0.000132316000000,0.000108613000000,0.000069502000000,0.000304563000000,0.000272563000000,0.000255576000000,0.000304564000000,0.014578527000000,0.000300612000000,0.014155812000000,0.000308909000000,0.000207774000000 +0.000147329000000,0.000304563000000,0.000081749000000,0.000080958000000,0.000229897000000,0.000172217000000,0.000053700000000,0.000131132000000,0.000108218000000,0.000071872000000,0.000270983000000,0.000269008000000,0.000319971000000,0.000258341000000,0.014468305000000,0.000259131000000,0.014501885000000,0.000267823000000,0.000206983000000 +0.000148514000000,0.000264267000000,0.000045403000000,0.000081354000000,0.000196317000000,0.000172613000000,0.000087674000000,0.000132712000000,0.000108612000000,0.000071477000000,0.000271773000000,0.000269798000000,0.000259132000000,0.000249255000000,0.014679663000000,0.000290341000000,0.014170824000000,0.000259131000000,0.000207773000000 +0.000146934000000,0.000262687000000,0.000045403000000,0.000080563000000,0.000196317000000,0.000170637000000,0.000056464000000,0.000180909000000,0.000107032000000,0.000099921000000,0.000309699000000,0.000268218000000,0.000294292000000,0.000317995000000,0.014698231000000,0.000258341000000,0.014384947000000,0.000293107000000,0.000206983000000 +0.000147329000000,0.000261501000000,0.000048169000000,0.000116514000000,0.000196712000000,0.000172218000000,0.000053700000000,0.000131922000000,0.000191181000000,0.000071082000000,0.000272168000000,0.000306144000000,0.000256366000000,0.000266242000000,0.014101293000000,0.000263082000000,0.014049936000000,0.000261897000000,0.000208564000000 +0.000146934000000,0.000263477000000,0.000047379000000,0.000082144000000,0.000228317000000,0.000171823000000,0.000053699000000,0.000132712000000,0.000110984000000,0.000070687000000,0.000266242000000,0.000259526000000,0.000291131000000,0.000265057000000,0.015243416000000,0.000290341000000,0.014328849000000,0.000261502000000,0.000206983000000 +0.000216069000000,0.000294291000000,0.000048169000000,0.000081353000000,0.000196317000000,0.000170638000000,0.000055674000000,0.000131526000000,0.000108218000000,0.000071082000000,0.000308119000000,0.000261107000000,0.000262292000000,0.000312070000000,0.014021886000000,0.000263477000000,0.013847269000000,0.000262687000000,0.000208169000000 +0.000146539000000,0.000272958000000,0.000045798000000,0.000080168000000,0.000196317000000,0.000171823000000,0.000055674000000,0.000134292000000,0.000108613000000,0.000073057000000,0.000270193000000,0.000308909000000,0.000255970000000,0.000250440000000,0.017236105000000,0.000257156000000,0.014063763000000,0.000328267000000,0.000208563000000 +0.000147329000000,0.000294292000000,0.000046193000000,0.000082144000000,0.000195527000000,0.000170638000000,0.000055675000000,0.000146934000000,0.000106637000000,0.000070687000000,0.000320366000000,0.000271378000000,0.000294687000000,0.000299823000000,0.014797391000000,0.000259526000000,0.014327268000000,0.000263872000000,0.000208958000000 +0.000146934000000,0.000263082000000,0.000045798000000,0.000081749000000,0.000196316000000,0.000170637000000,0.000053304000000,0.000130342000000,0.000176959000000,0.000070292000000,0.000270193000000,0.000273748000000,0.000257551000000,0.000229107000000,0.014343070000000,0.000255971000000,0.014013194000000,0.000346439000000,0.000208168000000 +0.000183675000000,0.000259921000000,0.000048169000000,0.000083724000000,0.000194736000000,0.000171823000000,0.000087279000000,0.000130736000000,0.000109403000000,0.000071477000000,0.000271773000000,0.000300613000000,0.000259526000000,0.000263872000000,0.016070279000000,0.000294687000000,0.014185441000000,0.000262687000000,0.000206588000000 +0.000146934000000,0.000263872000000,0.000045404000000,0.000081749000000,0.000195132000000,0.000188810000000,0.000056464000000,0.000132317000000,0.000107033000000,0.000071477000000,0.000425057000000,0.000329057000000,0.000327872000000,0.000297847000000,0.015191268000000,0.000255575000000,0.015000848000000,0.000263082000000,0.000207773000000 +0.000147724000000,0.000261897000000,0.000047774000000,0.000081354000000,0.000227922000000,0.000171427000000,0.000055675000000,0.000201452000000,0.000106638000000,0.000075823000000,0.000272563000000,0.000345255000000,0.000257946000000,0.000238193000000,0.014609737000000,0.000258737000000,0.013795911000000,0.000262687000000,0.000208168000000 +0.000163132000000,0.000263477000000,0.000048169000000,0.000081353000000,0.000195921000000,0.000208168000000,0.000054884000000,0.000133897000000,0.000109403000000,0.000071477000000,0.000337748000000,0.000274143000000,0.000260712000000,0.000299428000000,0.014505046000000,0.000293106000000,0.015838378000000,0.000264267000000,0.000287576000000 +0.000146539000000,0.000261107000000,0.000045798000000,0.000081354000000,0.000193946000000,0.000170638000000,0.000057255000000,0.000129946000000,0.000107428000000,0.000069897000000,0.000275724000000,0.000268217000000,0.000262686000000,0.000353946000000,0.014690725000000,0.000256761000000,0.014663070000000,0.000263477000000,0.000207378000000 +0.000147329000000,0.000295082000000,0.000045798000000,0.000081353000000,0.000193551000000,0.000172218000000,0.000053699000000,0.000130737000000,0.000161551000000,0.000069897000000,0.000272168000000,0.000270588000000,0.000259921000000,0.000227131000000,0.014165293000000,0.000262687000000,0.013776553000000,0.000266638000000,0.000209353000000 +0.000146539000000,0.000267823000000,0.000045798000000,0.000082934000000,0.000238193000000,0.000171032000000,0.000054095000000,0.000130341000000,0.000108218000000,0.000076613000000,0.000306144000000,0.000259921000000,0.000293897000000,0.000267033000000,0.015005589000000,0.000291921000000,0.013552948000000,0.000347230000000,0.000210538000000 +0.000146539000000,0.000306539000000,0.000047773000000,0.000080959000000,0.000194341000000,0.000206588000000,0.000054884000000,0.000144168000000,0.000109798000000,0.000085699000000,0.000267033000000,0.000291526000000,0.000255970000000,0.000282044000000,0.014478576000000,0.000257551000000,0.013931812000000,0.000404119000000,0.000207773000000 +0.000146143000000,0.000260711000000,0.000048169000000,0.000080564000000,0.000242934000000,0.000170638000000,0.000054094000000,0.000181304000000,0.000108613000000,0.000070687000000,0.000308909000000,0.000256761000000,0.000258341000000,0.000263872000000,0.014744849000000,0.000306539000000,0.013960652000000,0.000263082000000,0.000208169000000 +0.000196712000000,0.000263477000000,0.000047774000000,0.000080564000000,0.000228317000000,0.000172218000000,0.000054095000000,0.000131526000000,0.000145749000000,0.000071082000000,0.000271378000000,0.000272168000000,0.000291526000000,0.000263872000000,0.014810823000000,0.000258736000000,0.014041639000000,0.000262291000000,0.000208563000000 +0.000147724000000,0.000264267000000,0.000045798000000,0.000081354000000,0.000195921000000,0.000170638000000,0.000054094000000,0.000134291000000,0.000109798000000,0.000069897000000,0.000273353000000,0.000415180000000,0.000261897000000,0.000246490000000,0.015149786000000,0.000257946000000,0.014452502000000,0.000261107000000,0.000207378000000 +0.000146933000000,0.000263477000000,0.000045798000000,0.000080563000000,0.000196712000000,0.000225551000000,0.000055675000000,0.000183279000000,0.000111379000000,0.000069897000000,0.000306538000000,0.000289551000000,0.000258341000000,0.000265847000000,0.014926971000000,0.000292712000000,0.013946430000000,0.000265452000000,0.000218440000000 +0.000147328000000,0.000274934000000,0.000046588000000,0.000095576000000,0.000195922000000,0.000171823000000,0.000054885000000,0.000133106000000,0.000107428000000,0.000087279000000,0.000269798000000,0.000292317000000,0.000275329000000,0.000238983000000,0.014356898000000,0.000257946000000,0.014030577000000,0.000261501000000,0.000206588000000 +0.000214490000000,0.000261897000000,0.000045403000000,0.000080959000000,0.000228317000000,0.000171823000000,0.000055279000000,0.000131527000000,0.000110193000000,0.000084909000000,0.000271378000000,0.000270588000000,0.000257551000000,0.000263477000000,0.014466725000000,0.000257552000000,0.014012799000000,0.000259921000000,0.000207379000000 +0.000148514000000,0.000312465000000,0.000045798000000,0.000081353000000,0.000195921000000,0.000191971000000,0.000053700000000,0.000131132000000,0.000142193000000,0.000069502000000,0.000304958000000,0.000275329000000,0.000295477000000,0.000261107000000,0.015201539000000,0.000437699000000,0.014034923000000,0.000331033000000,0.000208169000000 +0.000147724000000,0.000259131000000,0.000049749000000,0.000081354000000,0.000196316000000,0.000424267000000,0.000057255000000,0.000131921000000,0.000108612000000,0.000070292000000,0.000264662000000,0.000351576000000,0.000263477000000,0.000327872000000,0.014412601000000,0.000255576000000,0.013556503000000,0.000259131000000,0.000217255000000 +0.000146539000000,0.000298242000000,0.000045403000000,0.000081353000000,0.000194342000000,0.000170638000000,0.000054490000000,0.000180514000000,0.000107032000000,0.000070292000000,0.000259131000000,0.000272169000000,0.000256366000000,0.000422687000000,0.014046775000000,0.000294687000000,0.016635612000000,0.000296662000000,0.000244909000000 +0.000146144000000,0.000261107000000,0.000048564000000,0.000080959000000,0.000197107000000,0.000171033000000,0.000053305000000,0.000131132000000,0.000107428000000,0.000071082000000,0.000309699000000,0.000269008000000,0.000296267000000,0.000281650000000,0.015104354000000,0.000257946000000,0.014596305000000,0.000257946000000,0.000206588000000 +0.000146539000000,0.000268613000000,0.000048169000000,0.000115724000000,0.000196316000000,0.000171033000000,0.000053304000000,0.000130736000000,0.000109403000000,0.000069897000000,0.000336959000000,0.000302983000000,0.000256761000000,0.000267428000000,0.014665046000000,0.000259131000000,0.014468305000000,0.000262686000000,0.000207773000000 +0.000146934000000,0.000542786000000,0.000045403000000,0.000081749000000,0.000196711000000,0.000171428000000,0.000054095000000,0.000131131000000,0.000107428000000,0.000071477000000,0.000260317000000,0.000267428000000,0.000286391000000,0.000265452000000,0.014523219000000,0.000309304000000,0.015421984000000,0.000275724000000,0.000207379000000 +0.000146539000000,0.000281255000000,0.000047774000000,0.000081748000000,0.000338143000000,0.000172613000000,0.000054885000000,0.000154045000000,0.000106638000000,0.000088464000000,0.000261107000000,0.000271378000000,0.000258341000000,0.000330637000000,0.015066034000000,0.000260712000000,0.014362823000000,0.000260317000000,0.000208169000000 +0.000146934000000,0.000261502000000,0.000048169000000,0.000080169000000,0.000212119000000,0.000170637000000,0.000059230000000,0.000132712000000,0.000107428000000,0.000075032000000,0.000295872000000,0.000259921000000,0.000255970000000,0.000264662000000,0.014255763000000,0.000259527000000,0.014294873000000,0.000262292000000,0.000207378000000 +0.000146934000000,0.000261107000000,0.000045798000000,0.000081354000000,0.000194736000000,0.000170638000000,0.000087675000000,0.000132317000000,0.000111378000000,0.000069897000000,0.000278885000000,0.000265452000000,0.000402933000000,0.000213700000000,0.014725490000000,0.000257946000000,0.013651714000000,0.000261897000000,0.000207773000000 +0.000146539000000,0.000262687000000,0.000122045000000,0.000081354000000,0.000229897000000,0.000170638000000,0.000054490000000,0.000130737000000,0.000110589000000,0.000069897000000,0.000276514000000,0.000658144000000,0.000271774000000,0.000299032000000,0.014668206000000,0.000263477000000,0.013931812000000,0.000393452000000,0.000209354000000 +0.000146538000000,0.000260711000000,0.000066341000000,0.000083724000000,0.000195131000000,0.000172613000000,0.000054094000000,0.000134687000000,0.000107427000000,0.000070292000000,0.000258341000000,0.000322341000000,0.000258736000000,0.000268218000000,0.014625935000000,0.000345649000000,0.014352552000000,0.000261107000000,0.000207378000000 +0.000147329000000,0.000275724000000,0.000046194000000,0.000079773000000,0.000194736000000,0.000172218000000,0.000055279000000,0.000164711000000,0.000142193000000,0.000070292000000,0.000257156000000,0.000285206000000,0.000258341000000,0.000272959000000,0.014157392000000,0.000260711000000,0.013825145000000,0.000294687000000,0.000207773000000 +0.000230687000000,0.000267822000000,0.000046193000000,0.000081749000000,0.000195527000000,0.000174588000000,0.000055674000000,0.000130341000000,0.000107032000000,0.000141008000000,0.000291922000000,0.000267428000000,0.000259131000000,0.000330243000000,0.014678478000000,0.000258736000000,0.014462774000000,0.000261107000000,0.000217649000000 +0.000147724000000,0.000314440000000,0.000048169000000,0.000081354000000,0.000228711000000,0.000171033000000,0.000056070000000,0.000132317000000,0.000107032000000,0.000069501000000,0.000261896000000,0.000306934000000,0.000324316000000,0.000207378000000,0.015145046000000,0.000299823000000,0.014098922000000,0.000262687000000,0.000208168000000 +0.000146539000000,0.000263872000000,0.000046193000000,0.000080958000000,0.000196316000000,0.000170637000000,0.000055280000000,0.000132712000000,0.000110983000000,0.000071477000000,0.000263082000000,0.000270193000000,0.000264662000000,0.000262687000000,0.014474626000000,0.000261502000000,0.013697935000000,0.000275329000000,0.000211724000000 +0.000147724000000,0.000261897000000,0.000045798000000,0.000081354000000,0.000195132000000,0.000172218000000,0.000053699000000,0.000131527000000,0.000107823000000,0.000069897000000,0.000554242000000,0.000259132000000,0.000274933000000,0.000275329000000,0.014658725000000,0.000257946000000,0.014227713000000,0.000259527000000,0.000206983000000 +0.000234638000000,0.000261501000000,0.000047773000000,0.000080959000000,0.000196317000000,0.000173008000000,0.000053304000000,0.000131527000000,0.000143378000000,0.000070292000000,0.000440069000000,0.000329058000000,0.000284020000000,0.000262686000000,0.014966477000000,0.000263477000000,0.015066033000000,0.000297058000000,0.000207378000000 +0.000145748000000,0.000260711000000,0.000048169000000,0.000093995000000,0.000195131000000,0.000174193000000,0.000054490000000,0.000131527000000,0.000107428000000,0.000069897000000,0.000424267000000,0.000270983000000,0.000259922000000,0.000300217000000,0.014979909000000,0.000261896000000,0.013557689000000,0.000272564000000,0.000216465000000 +0.000147724000000,0.000292316000000,0.000045403000000,0.000081748000000,0.000195131000000,0.000170242000000,0.000054094000000,0.000131132000000,0.000107033000000,0.000092810000000,0.000304168000000,0.000274539000000,0.000332613000000,0.000242538000000,0.014301984000000,0.000291527000000,0.014104453000000,0.000310490000000,0.000208169000000 +0.000146144000000,0.000263476000000,0.000048169000000,0.000081354000000,0.000196712000000,0.000170243000000,0.000054094000000,0.000130341000000,0.000108218000000,0.000205403000000,0.000280465000000,0.000292711000000,0.000256761000000,0.000227526000000,0.015013490000000,0.000259526000000,0.014082726000000,0.000262292000000,0.000208563000000 +0.000202638000000,0.000299823000000,0.000048169000000,0.000114934000000,0.000267032000000,0.000172613000000,0.000054490000000,0.000165502000000,0.000107033000000,0.000119674000000,0.000274143000000,0.000261106000000,0.000257946000000,0.000302588000000,0.014428009000000,0.000256366000000,0.014196503000000,0.000280069000000,0.000207773000000 +0.000146539000000,0.000259921000000,0.000047774000000,0.000097551000000,0.000195131000000,0.000173798000000,0.000053699000000,0.000131921000000,0.000141008000000,0.000088465000000,0.000299033000000,0.000374094000000,0.000299428000000,0.000264662000000,0.014794626000000,0.000259527000000,0.013606677000000,0.000411230000000,0.000217255000000 +0.000146144000000,0.000259526000000,0.000050539000000,0.000080563000000,0.000194342000000,0.000171033000000,0.000054094000000,0.000133106000000,0.000107033000000,0.000070292000000,0.000270983000000,0.000269798000000,0.000256366000000,0.000267428000000,0.014635417000000,0.000259526000000,0.014030577000000,0.000280859000000,0.000224366000000 +0.000146934000000,0.000265848000000,0.000049354000000,0.000082144000000,0.000196711000000,0.000171823000000,0.000054489000000,0.000130736000000,0.000108613000000,0.000069896000000,0.000313255000000,0.000270588000000,0.000257156000000,0.000327872000000,0.014322133000000,0.000465353000000,0.014251812000000,0.000261107000000,0.000222785000000 +0.000146143000000,0.000261897000000,0.000045403000000,0.000081354000000,0.000229501000000,0.000174193000000,0.000053699000000,0.000133502000000,0.000107033000000,0.000071478000000,0.000276119000000,0.000363032000000,0.000257946000000,0.000267428000000,0.014263663000000,0.000295477000000,0.013903367000000,0.000263872000000,0.000216070000000 +0.000161551000000,0.000295872000000,0.000048169000000,0.000080958000000,0.000196316000000,0.000171033000000,0.000056070000000,0.000145749000000,0.000106638000000,0.000071082000000,0.000277305000000,0.000270193000000,0.000259131000000,0.000261502000000,0.014749194000000,0.000294291000000,0.013852009000000,0.000297847000000,0.000208169000000 +0.000147723000000,0.000259526000000,0.000045403000000,0.000081748000000,0.000196711000000,0.000171033000000,0.000054094000000,0.000130341000000,0.000108613000000,0.000071873000000,0.000316415000000,0.000270193000000,0.000293897000000,0.000283230000000,0.014540997000000,0.000257946000000,0.014789095000000,0.000260711000000,0.000218045000000 +0.000146934000000,0.000341304000000,0.000049749000000,0.000081354000000,0.000228712000000,0.000172218000000,0.000054094000000,0.000131921000000,0.000121255000000,0.000071872000000,0.000266242000000,0.000291921000000,0.000256761000000,0.000267823000000,0.014466330000000,0.000260316000000,0.013745738000000,0.000297848000000,0.000210538000000 +0.000148910000000,0.000261502000000,0.000048563000000,0.000080168000000,0.000196316000000,0.000171032000000,0.000054490000000,0.000131527000000,0.000108218000000,0.000069897000000,0.000282440000000,0.000272959000000,0.000262687000000,0.000329057000000,0.014819514000000,0.000295872000000,0.013755220000000,0.000261897000000,0.000219230000000 +0.000214885000000,0.000278884000000,0.000047773000000,0.000081354000000,0.000195921000000,0.000171823000000,0.000053699000000,0.000132317000000,0.000108613000000,0.000085304000000,0.000268217000000,0.000305749000000,0.000327082000000,0.000263082000000,0.014638576000000,0.000259922000000,0.014291713000000,0.000295477000000,0.000312070000000 +0.000147329000000,0.000260711000000,0.000045798000000,0.000080959000000,0.000194737000000,0.000170242000000,0.000075428000000,0.000131131000000,0.000108217000000,0.000071872000000,0.000265848000000,0.000257551000000,0.000257946000000,0.000231477000000,0.014299614000000,0.000260712000000,0.014032948000000,0.000263872000000,0.000231082000000 +0.000146934000000,0.000265057000000,0.000045403000000,0.000081353000000,0.000210143000000,0.000171822000000,0.000055674000000,0.000135477000000,0.000108613000000,0.000070292000000,0.000316810000000,0.000257552000000,0.000260317000000,0.000305748000000,0.014129738000000,0.000259131000000,0.013654874000000,0.000261896000000,0.000222390000000 +0.000146933000000,0.000291922000000,0.000064761000000,0.000081354000000,0.000194736000000,0.000174589000000,0.000056069000000,0.000135082000000,0.000127181000000,0.000072662000000,0.000260711000000,0.000340514000000,0.000259131000000,0.000272168000000,0.015101589000000,0.000258341000000,0.013892306000000,0.000289551000000,0.000224366000000 +0.000223181000000,0.000262687000000,0.000045798000000,0.000081354000000,0.000197107000000,0.000172218000000,0.000057650000000,0.000131131000000,0.000108218000000,0.000069897000000,0.000284810000000,0.000277700000000,0.000256761000000,0.000242144000000,0.014753145000000,0.000299032000000,0.014584058000000,0.000262687000000,0.000257156000000 +0.000311675000000,0.000292316000000,0.000048563000000,0.000081353000000,0.000265452000000,0.000172218000000,0.000053699000000,0.000169453000000,0.000110588000000,0.000071082000000,0.000276909000000,0.000341304000000,0.000339723000000,0.000277305000000,0.014520058000000,0.000291922000000,0.013867022000000,0.000296663000000,0.000231082000000 +0.000148119000000,0.000263082000000,0.000047773000000,0.000080563000000,0.000194736000000,0.000171033000000,0.000053305000000,0.000203033000000,0.000108613000000,0.000117305000000,0.000273748000000,0.000269798000000,0.000255575000000,0.000264267000000,0.014651614000000,0.000256761000000,0.014042034000000,0.000264662000000,0.000314835000000 +0.000179329000000,0.000260317000000,0.000045799000000,0.000081353000000,0.000195132000000,0.000171032000000,0.000053699000000,0.000131132000000,0.000108613000000,0.000070687000000,0.000297847000000,0.000277304000000,0.000256366000000,0.000262291000000,0.014514132000000,0.000290341000000,0.014854675000000,0.000308909000000,0.000229897000000 +0.000146539000000,0.000260712000000,0.000052514000000,0.000080563000000,0.000195921000000,0.000170243000000,0.000053304000000,0.000131921000000,0.000128366000000,0.000071477000000,0.000276909000000,0.000506835000000,0.000340909000000,0.000280859000000,0.015011910000000,0.000258737000000,0.014505046000000,0.000260316000000,0.000212910000000 +0.000147724000000,0.000263872000000,0.000048168000000,0.000081354000000,0.000210144000000,0.000171428000000,0.000105848000000,0.000203032000000,0.000108613000000,0.000071477000000,0.000272958000000,0.000309699000000,0.000256365000000,0.000247280000000,0.015135169000000,0.000261897000000,0.013512257000000,0.000261502000000,0.000210144000000 +0.000147329000000,0.000294686000000,0.000045798000000,0.000080563000000,0.000195132000000,0.000170637000000,0.000082933000000,0.000131921000000,0.000109798000000,0.000072267000000,0.000284020000000,0.000301798000000,0.000317206000000,0.000353156000000,0.014448552000000,0.000256366000000,0.014416947000000,0.000260711000000,0.000206983000000 +0.000148514000000,0.000266638000000,0.000047774000000,0.000081354000000,0.000196711000000,0.000170638000000,0.000055674000000,0.000131526000000,0.000108613000000,0.000071082000000,0.000284020000000,0.000267033000000,0.000257946000000,0.000264267000000,0.014377046000000,0.000261896000000,0.013701096000000,0.000263477000000,0.000206589000000 +0.000146539000000,0.000346045000000,0.000047774000000,0.000081353000000,0.000276514000000,0.000171823000000,0.000054094000000,0.000131527000000,0.000108613000000,0.000069897000000,0.000286390000000,0.000306538000000,0.000258341000000,0.000323526000000,0.015198774000000,0.000291132000000,0.015075910000000,0.000319576000000,0.000209354000000 +0.000148119000000,0.000266637000000,0.000046193000000,0.000081353000000,0.000196712000000,0.000171823000000,0.000056860000000,0.000137848000000,0.000107428000000,0.000103872000000,0.000286390000000,0.000268613000000,0.000338934000000,0.000229502000000,0.014421293000000,0.000259921000000,0.014806083000000,0.000261106000000,0.000207773000000 +0.000146144000000,0.000261897000000,0.000048168000000,0.000081749000000,0.000196316000000,0.000171823000000,0.000053305000000,0.000131131000000,0.000152069000000,0.000072267000000,0.000285205000000,0.000270983000000,0.000260712000000,0.000242539000000,0.013973688000000,0.000255970000000,0.013996997000000,0.000329057000000,0.000207379000000 +0.000146143000000,0.000275724000000,0.000045798000000,0.000081749000000,0.000194342000000,0.000171823000000,0.000088465000000,0.000130736000000,0.000109799000000,0.000069502000000,0.000306539000000,0.000317996000000,0.000258341000000,0.000477205000000,0.014866132000000,0.000294687000000,0.014078379000000,0.000260317000000,0.000209354000000 +0.000195922000000,0.000260317000000,0.000048168000000,0.000080563000000,0.000193946000000,0.000171032000000,0.000055280000000,0.000133897000000,0.000108613000000,0.000069897000000,0.000512760000000,0.000258341000000,0.000256366000000,0.000527774000000,0.014269195000000,0.000258736000000,0.013807368000000,0.000264663000000,0.000243724000000 +0.000146539000000,0.000293897000000,0.000048168000000,0.000081354000000,0.000195921000000,0.000170242000000,0.000053699000000,0.000130342000000,0.000109798000000,0.000069897000000,0.000318390000000,0.000259921000000,0.000256366000000,0.000274144000000,0.014947910000000,0.000257946000000,0.013893490000000,0.000265057000000,0.000219625000000 +0.000147329000000,0.000263872000000,0.000114934000000,0.000082538000000,0.000198687000000,0.000170243000000,0.000056859000000,0.000179724000000,0.000109798000000,0.000073452000000,0.000288365000000,0.000340119000000,0.000511181000000,0.000227527000000,0.015090132000000,0.000257551000000,0.013836602000000,0.000265453000000,0.000214094000000 +0.000146934000000,0.000295872000000,0.000046983000000,0.000084119000000,0.000304958000000,0.000173403000000,0.000055674000000,0.000131527000000,0.000107033000000,0.000069897000000,0.000276514000000,0.000270588000000,0.000304169000000,0.000257551000000,0.014438281000000,0.000258736000000,0.014371120000000,0.000258736000000,0.000227131000000 +0.000165897000000,0.000264662000000,0.000048563000000,0.000081354000000,0.000234242000000,0.000174193000000,0.000055279000000,0.000132317000000,0.000108218000000,0.000072268000000,0.000310885000000,0.000308909000000,0.000307724000000,0.000276119000000,0.014338330000000,0.000329057000000,0.014043220000000,0.000262291000000,0.000224761000000 +0.000147329000000,0.000365798000000,0.000046983000000,0.000080959000000,0.000195131000000,0.000171823000000,0.000054094000000,0.000130736000000,0.000108613000000,0.000070292000000,0.000282440000000,0.000270983000000,0.000259132000000,0.000284810000000,0.016861983000000,0.000256366000000,0.014103268000000,0.000294292000000,0.000222391000000 +0.000146144000000,0.000275724000000,0.000045798000000,0.000080958000000,0.000230687000000,0.000171428000000,0.000091230000000,0.000132711000000,0.000110588000000,0.000071872000000,0.000275329000000,0.000269798000000,0.000265057000000,0.000317600000000,0.014625145000000,0.000260711000000,0.013953145000000,0.000346045000000,0.000225946000000 +0.000147724000000,0.000330637000000,0.000045403000000,0.000081749000000,0.000194737000000,0.000170638000000,0.000053699000000,0.000213305000000,0.000109798000000,0.000070292000000,0.000276119000000,0.000306934000000,0.000262687000000,0.000267032000000,0.015950181000000,0.000301008000000,0.014786329000000,0.000299033000000,0.000223575000000 +0.000146143000000,0.000258342000000,0.000048169000000,0.000082144000000,0.000195527000000,0.000173798000000,0.000054094000000,0.000130341000000,0.000142984000000,0.000070687000000,0.000284020000000,0.000270983000000,0.000263082000000,0.000203823000000,0.015690230000000,0.000255971000000,0.014118280000000,0.000263477000000,0.000220811000000 +0.000178934000000,0.000262292000000,0.000048564000000,0.000082539000000,0.000193946000000,0.000184859000000,0.000054490000000,0.000149699000000,0.000108613000000,0.000071872000000,0.000324711000000,0.000281650000000,0.000302983000000,0.000294687000000,0.015273836000000,0.000257156000000,0.013927071000000,0.000365798000000,0.000225551000000 +0.000146934000000,0.000261501000000,0.000045799000000,0.000194341000000,0.000264662000000,0.000172218000000,0.000052910000000,0.000150095000000,0.000106638000000,0.000071477000000,0.000289551000000,0.000481946000000,0.000261896000000,0.000263872000000,0.014719170000000,0.000257156000000,0.014745243000000,0.000273354000000,0.000243724000000 +0.000147724000000,0.000260712000000,0.000045798000000,0.000085304000000,0.000195131000000,0.000171428000000,0.000057255000000,0.000164711000000,0.000108613000000,0.000122045000000,0.000311675000000,0.000363427000000,0.000259132000000,0.000260711000000,0.014592355000000,0.000261106000000,0.014126972000000,0.000293501000000,0.000208958000000 +0.000147724000000,0.000333008000000,0.000047774000000,0.000080959000000,0.000195922000000,0.000172218000000,0.000054095000000,0.000130341000000,0.000106638000000,0.000074637000000,0.000289946000000,0.000273354000000,0.000262292000000,0.000305749000000,0.014567466000000,0.000292316000000,0.014116305000000,0.000262687000000,0.000208959000000 +0.000165502000000,0.000261897000000,0.000045403000000,0.000081353000000,0.000228712000000,0.000172217000000,0.000066737000000,0.000131132000000,0.000153650000000,0.000071082000000,0.000276909000000,0.000264267000000,0.000261896000000,0.000246884000000,0.014418133000000,0.000261501000000,0.015109490000000,0.000262292000000,0.000208168000000 +0.000146539000000,0.000328267000000,0.000045798000000,0.000102687000000,0.000195131000000,0.000170242000000,0.000053699000000,0.000131131000000,0.000109403000000,0.000072267000000,0.000318391000000,0.000345254000000,0.000297453000000,0.000230292000000,0.014681244000000,0.000259131000000,0.015019021000000,0.000261502000000,0.000209748000000 +0.000146143000000,0.000258341000000,0.000045798000000,0.000082144000000,0.000195526000000,0.000170637000000,0.000053700000000,0.000131921000000,0.000111774000000,0.000071872000000,0.000278094000000,0.000271378000000,0.000256761000000,0.000369748000000,0.015237885000000,0.000304563000000,0.014171614000000,0.000266242000000,0.000210143000000 +0.000146144000000,0.000359081000000,0.000045403000000,0.000081748000000,0.000195922000000,0.000172613000000,0.000056070000000,0.000165106000000,0.000107032000000,0.000071082000000,0.000274143000000,0.000270193000000,0.000258736000000,0.000281650000000,0.014624750000000,0.000262686000000,0.013691614000000,0.000292317000000,0.000218045000000 +0.000146144000000,0.000264662000000,0.000048958000000,0.000081749000000,0.000222390000000,0.000171033000000,0.000053699000000,0.000130736000000,0.000109008000000,0.000103872000000,0.000286391000000,0.000327082000000,0.000293106000000,0.000293897000000,0.014398774000000,0.000257946000000,0.014266429000000,0.000261107000000,0.000208958000000 +0.000179724000000,0.000262686000000,0.000085305000000,0.000081353000000,0.000197107000000,0.000172218000000,0.000056464000000,0.000131922000000,0.000141007000000,0.000071873000000,0.000285206000000,0.000272168000000,0.000257551000000,0.000250835000000,0.015034428000000,0.000258341000000,0.013945244000000,0.000299032000000,0.000216465000000 +0.000146934000000,0.000267428000000,0.000151279000000,0.000081354000000,0.000195132000000,0.000171822000000,0.000053700000000,0.000131922000000,0.000108613000000,0.000070687000000,0.000319181000000,0.000319180000000,0.000259922000000,0.000228317000000,0.014743268000000,0.000259526000000,0.013650923000000,0.000262687000000,0.000207378000000 +0.000147724000000,0.000259921000000,0.000060416000000,0.000081354000000,0.000228711000000,0.000171033000000,0.000054489000000,0.000129946000000,0.000108613000000,0.000069502000000,0.000285206000000,0.000278490000000,0.000291132000000,0.000359082000000,0.014260898000000,0.000291921000000,0.014601046000000,0.000262291000000,0.000292316000000 +0.000147328000000,0.000260712000000,0.000048563000000,0.000081354000000,0.000196317000000,0.000173008000000,0.000053304000000,0.000146934000000,0.000109403000000,0.000070292000000,0.000287971000000,0.000274934000000,0.000259132000000,0.000260316000000,0.014864947000000,0.000257946000000,0.013515813000000,0.000261502000000,0.000209749000000 +0.000148119000000,0.000261107000000,0.000048168000000,0.000080958000000,0.000197897000000,0.000171033000000,0.000055280000000,0.000131131000000,0.000107428000000,0.000071477000000,0.000302192000000,0.000321155000000,0.000296662000000,0.000299822000000,0.014572601000000,0.000257156000000,0.014222577000000,0.000261897000000,0.000211329000000 +0.000147329000000,0.000274934000000,0.000045798000000,0.000081353000000,0.000193946000000,0.000171822000000,0.000055280000000,0.000131921000000,0.000107033000000,0.000070687000000,0.000296267000000,0.000278885000000,0.000257551000000,0.000247279000000,0.014508206000000,0.000293896000000,0.014315811000000,0.000261502000000,0.000209353000000 +0.000146539000000,0.000266638000000,0.000047774000000,0.000081749000000,0.000245304000000,0.000174193000000,0.000055280000000,0.000135872000000,0.000107823000000,0.000117700000000,0.000321551000000,0.000311675000000,0.000259921000000,0.000262686000000,0.014930132000000,0.000263082000000,0.014395219000000,0.000262687000000,0.000206589000000 +0.000147329000000,0.000309700000000,0.000048563000000,0.000081353000000,0.000197501000000,0.000171428000000,0.000053699000000,0.000130736000000,0.000108613000000,0.000071082000000,0.000274934000000,0.000272564000000,0.000290341000000,0.000321551000000,0.015246181000000,0.000307329000000,0.013847664000000,0.000297057000000,0.000208168000000 +0.000145749000000,0.000257946000000,0.000045798000000,0.000080959000000,0.000194736000000,0.000171427000000,0.000055675000000,0.000133502000000,0.000108613000000,0.000071872000000,0.000282045000000,0.000272958000000,0.000267427000000,0.000263082000000,0.014926576000000,0.000289551000000,0.015159663000000,0.000263477000000,0.000207378000000 +0.000180909000000,0.000334193000000,0.000048168000000,0.000084119000000,0.000230292000000,0.000170637000000,0.000054489000000,0.000129947000000,0.000108217000000,0.000076217000000,0.000307723000000,0.000302193000000,0.000258341000000,0.000264267000000,0.015080255000000,0.000257946000000,0.016251218000000,0.000260316000000,0.000223971000000 +0.000147329000000,0.000280860000000,0.000048169000000,0.000081354000000,0.000198291000000,0.000174588000000,0.000054095000000,0.000135082000000,0.000108218000000,0.000069897000000,0.000272563000000,0.000269798000000,0.000272959000000,0.000279675000000,0.015054576000000,0.000261502000000,0.014298824000000,0.000261897000000,0.000207378000000 +0.000144958000000,0.000398588000000,0.000045404000000,0.000081748000000,0.000195526000000,0.000171033000000,0.000054489000000,0.000133502000000,0.000123231000000,0.000069502000000,0.000274539000000,0.000270193000000,0.000289551000000,0.000265848000000,0.014188997000000,0.000258342000000,0.014325293000000,0.000262291000000,0.000207378000000 +0.000144564000000,0.000260711000000,0.000045798000000,0.000081354000000,0.000194342000000,0.000170242000000,0.000053700000000,0.000181700000000,0.000106637000000,0.000069501000000,0.000285205000000,0.000303773000000,0.000255181000000,0.000266638000000,0.014766577000000,0.000257551000000,0.014089836000000,0.000259922000000,0.000351971000000 +0.000166292000000,0.000293501000000,0.000045403000000,0.000080563000000,0.000263477000000,0.000171428000000,0.000053700000000,0.000131921000000,0.000106637000000,0.000083724000000,0.000294687000000,0.000274538000000,0.000258736000000,0.000242539000000,0.014645293000000,0.000401354000000,0.014395219000000,0.000260316000000,0.000222390000000 +0.000147724000000,0.000263082000000,0.000046194000000,0.000081354000000,0.000196317000000,0.000173403000000,0.000058045000000,0.000130342000000,0.000109798000000,0.000073452000000,0.000321946000000,0.000274934000000,0.000291922000000,0.000265057000000,0.014540207000000,0.000276909000000,0.013784454000000,0.000368958000000,0.000259131000000 +0.000148514000000,0.000258736000000,0.000045798000000,0.000080563000000,0.000194736000000,0.000169847000000,0.000054095000000,0.000132317000000,0.000109798000000,0.000070292000000,0.000289156000000,0.000273354000000,0.000257156000000,0.000246884000000,0.014574577000000,0.000291527000000,0.014917095000000,0.000259131000000,0.000241749000000 +0.000148119000000,0.000262687000000,0.000045798000000,0.000082934000000,0.000230687000000,0.000170243000000,0.000056070000000,0.000131922000000,0.000141008000000,0.000070292000000,0.000293897000000,0.000271378000000,0.000259922000000,0.000333008000000,0.014260108000000,0.000263477000000,0.014407465000000,0.000310094000000,0.000216069000000 +0.000146934000000,0.000269008000000,0.000047773000000,0.000081354000000,0.000195526000000,0.000171428000000,0.000053304000000,0.000165897000000,0.000109008000000,0.000073057000000,0.000287971000000,0.000367773000000,0.000265057000000,0.000266638000000,0.014391268000000,0.000259921000000,0.014368355000000,0.000264267000000,0.000217255000000 +0.000147329000000,0.000297057000000,0.000045403000000,0.000081354000000,0.000195527000000,0.000192761000000,0.000101896000000,0.000131921000000,0.000109798000000,0.000073452000000,0.000286391000000,0.000291131000000,0.000258341000000,0.000315625000000,0.014851910000000,0.000295477000000,0.014204009000000,0.000350785000000,0.000242539000000 +0.000146934000000,0.000262292000000,0.000045798000000,0.000081748000000,0.000195922000000,0.000209354000000,0.000055279000000,0.000132316000000,0.000107428000000,0.000070687000000,0.000492217000000,0.000270193000000,0.000304168000000,0.000262292000000,0.015048255000000,0.000257551000000,0.014009639000000,0.000261502000000,0.000206588000000 +0.000145748000000,0.000304958000000,0.000064762000000,0.000081749000000,0.000285600000000,0.000173403000000,0.000053699000000,0.000130341000000,0.000108218000000,0.000118885000000,0.000293501000000,0.000271774000000,0.000274144000000,0.000240563000000,0.014386528000000,0.000259526000000,0.014014775000000,0.000262686000000,0.000206588000000 +0.000147724000000,0.000267427000000,0.000045798000000,0.000080959000000,0.000196316000000,0.000171033000000,0.000053304000000,0.000132712000000,0.000108218000000,0.000070687000000,0.000319971000000,0.000274934000000,0.000264662000000,0.000291131000000,0.015164798000000,0.000273353000000,0.013969342000000,0.000261502000000,0.000207774000000 +0.000179724000000,0.000257946000000,0.000045798000000,0.000081354000000,0.000198687000000,0.000173403000000,0.000054489000000,0.000131526000000,0.000121254000000,0.000069896000000,0.000288366000000,0.000306143000000,0.000292711000000,0.000257156000000,0.014996107000000,0.000256761000000,0.014268799000000,0.000262292000000,0.000221601000000 +0.000148119000000,0.000262292000000,0.000045798000000,0.000080563000000,0.000264267000000,0.000171032000000,0.000053700000000,0.000133897000000,0.000108218000000,0.000073057000000,0.000285205000000,0.000276514000000,0.000261897000000,0.000304959000000,0.014360848000000,0.000297453000000,0.013842133000000,0.000260316000000,0.000209354000000 +0.000146538000000,0.000264267000000,0.000045798000000,0.000080564000000,0.000197897000000,0.000172217000000,0.000054885000000,0.000130341000000,0.000107427000000,0.000071872000000,0.000295872000000,0.000270984000000,0.000275329000000,0.000266243000000,0.014448158000000,0.000260316000000,0.013955120000000,0.000268613000000,0.000206983000000 +0.000146539000000,0.000263872000000,0.000046193000000,0.000080958000000,0.000194736000000,0.000171822000000,0.000054094000000,0.000129946000000,0.000107033000000,0.000105452000000,0.000276909000000,0.000302193000000,0.000261107000000,0.000240168000000,0.014898132000000,0.000258341000000,0.014335170000000,0.000298243000000,0.000243329000000 +0.000146144000000,0.000261106000000,0.000047378000000,0.000081749000000,0.000197107000000,0.000173403000000,0.000123230000000,0.000151279000000,0.000107032000000,0.000071082000000,0.000276514000000,0.000381995000000,0.000255575000000,0.000261106000000,0.014452502000000,0.000296267000000,0.014483317000000,0.000260712000000,0.000208563000000 +0.000146539000000,0.000295477000000,0.000048564000000,0.000080959000000,0.000196316000000,0.000171823000000,0.000053699000000,0.000306539000000,0.000141008000000,0.000070292000000,0.000272958000000,0.000490637000000,0.000293897000000,0.000297058000000,0.014728256000000,0.000258341000000,0.013788009000000,0.000281650000000,0.000206984000000 +0.000148514000000,0.000261896000000,0.000100712000000,0.000080168000000,0.000196316000000,0.000172218000000,0.000054490000000,0.000162341000000,0.000107823000000,0.000073058000000,0.000272564000000,0.000319576000000,0.000262687000000,0.000353551000000,0.015334675000000,0.000258737000000,0.014218231000000,0.000264663000000,0.000244119000000 +0.000147329000000,0.000300217000000,0.000045798000000,0.000081749000000,0.000195922000000,0.000172218000000,0.000054094000000,0.000131526000000,0.000107033000000,0.000073453000000,0.000277304000000,0.000301798000000,0.000260316000000,0.000293896000000,0.014622775000000,0.000263477000000,0.013512257000000,0.000261897000000,0.000207378000000 +0.000148514000000,0.000263082000000,0.000048564000000,0.000081749000000,0.000263872000000,0.000207378000000,0.000054094000000,0.000164317000000,0.000108613000000,0.000072662000000,0.000275329000000,0.000277304000000,0.000295082000000,0.000214489000000,0.014372305000000,0.000257946000000,0.014029392000000,0.000258736000000,0.000209749000000 +0.000180119000000,0.000302983000000,0.000048563000000,0.000081748000000,0.000195921000000,0.000170242000000,0.000054884000000,0.000134292000000,0.000108613000000,0.000069896000000,0.000278094000000,0.000273353000000,0.000262291000000,0.000264662000000,0.015275811000000,0.000291921000000,0.015025737000000,0.000259921000000,0.000210538000000 +0.000145354000000,0.000262292000000,0.000045798000000,0.000080959000000,0.000199082000000,0.000172217000000,0.000053304000000,0.000144563000000,0.000107427000000,0.000152069000000,0.000284416000000,0.000300613000000,0.000259526000000,0.000336959000000,0.014744453000000,0.000260712000000,0.013729145000000,0.000397403000000,0.000207379000000 +0.000146538000000,0.000261897000000,0.000050539000000,0.000081749000000,0.000194342000000,0.000171032000000,0.000076218000000,0.000132316000000,0.000148514000000,0.000070292000000,0.000272959000000,0.000271379000000,0.000261107000000,0.000309304000000,0.015236305000000,0.000257946000000,0.013952355000000,0.000259132000000,0.000217255000000 +0.000147724000000,0.000261502000000,0.000045798000000,0.000081353000000,0.000197107000000,0.000172613000000,0.000054094000000,0.000201452000000,0.000123230000000,0.000070292000000,0.000273354000000,0.000270588000000,0.000261897000000,0.000321156000000,0.015205885000000,0.000289551000000,0.014027811000000,0.000296267000000,0.000208564000000 +0.000164711000000,0.000260317000000,0.000047379000000,0.000080169000000,0.000196317000000,0.000172217000000,0.000054094000000,0.000131132000000,0.000108613000000,0.000071477000000,0.000276514000000,0.000269403000000,0.000347626000000,0.000275724000000,0.015309391000000,0.000257552000000,0.014816355000000,0.000263477000000,0.000250440000000 +0.000146539000000,0.000260712000000,0.000085305000000,0.000083724000000,0.000196712000000,0.000171427000000,0.000052910000000,0.000132712000000,0.000108218000000,0.000071477000000,0.000274144000000,0.000267822000000,0.000277305000000,0.000374884000000,0.014079960000000,0.000293896000000,0.013808552000000,0.000353551000000,0.000207379000000 +0.000146934000000,0.000260316000000,0.000045403000000,0.000080958000000,0.000415971000000,0.000170638000000,0.000054489000000,0.000130342000000,0.000141008000000,0.000073847000000,0.000282440000000,0.000328662000000,0.000259131000000,0.000263872000000,0.014975959000000,0.000261106000000,0.013951960000000,0.000272563000000,0.000207378000000 +0.000147724000000,0.000294687000000,0.000048564000000,0.000080959000000,0.000229106000000,0.000182885000000,0.000054490000000,0.000152860000000,0.000107428000000,0.000090440000000,0.000272958000000,0.000267823000000,0.000259922000000,0.000260317000000,0.014640552000000,0.000258736000000,0.014288157000000,0.000295872000000,0.000265057000000 +0.000146539000000,0.000261897000000,0.000047774000000,0.000081748000000,0.000228711000000,0.000170637000000,0.000055675000000,0.000131131000000,0.000107032000000,0.000070292000000,0.000277304000000,0.000268218000000,0.000263872000000,0.000296662000000,0.014627120000000,0.000384365000000,0.013975664000000,0.000260317000000,0.000208168000000 +0.000179329000000,0.000275329000000,0.000045799000000,0.000081354000000,0.000195921000000,0.000171428000000,0.000055675000000,0.000132317000000,0.000109798000000,0.000070292000000,0.000273354000000,0.000316020000000,0.000291526000000,0.000267428000000,0.015605292000000,0.000258341000000,0.013893886000000,0.000268612000000,0.000219230000000 +0.000163526000000,0.000266243000000,0.000045404000000,0.000080564000000,0.000196712000000,0.000172218000000,0.000053700000000,0.000132317000000,0.000107033000000,0.000071082000000,0.000272958000000,0.000270588000000,0.000259131000000,0.000248070000000,0.014470281000000,0.000330637000000,0.013949195000000,0.000258736000000,0.000207378000000 +0.000146143000000,0.000263082000000,0.000045798000000,0.000098341000000,0.000196317000000,0.000171033000000,0.000053304000000,0.000130736000000,0.000128761000000,0.000071477000000,0.000279675000000,0.000271773000000,0.000262292000000,0.000279675000000,0.015012304000000,0.000257946000000,0.013873343000000,0.000263477000000,0.000206983000000 +0.000146539000000,0.000264267000000,0.000047773000000,0.000081354000000,0.000209749000000,0.000171428000000,0.000053699000000,0.000144564000000,0.000138242000000,0.000072267000000,0.000359477000000,0.000275329000000,0.000291527000000,0.000275329000000,0.015030478000000,0.000307329000000,0.013797096000000,0.000261107000000,0.000206588000000 +0.000166292000000,0.000261106000000,0.000048168000000,0.000081354000000,0.000194736000000,0.000191971000000,0.000056070000000,0.000131921000000,0.000106637000000,0.000069897000000,0.000289551000000,0.000267032000000,0.000258736000000,0.000268613000000,0.014374676000000,0.000329452000000,0.014110774000000,0.000264267000000,0.000209353000000 +0.000146144000000,0.000296663000000,0.000047773000000,0.000081353000000,0.000195922000000,0.000254390000000,0.000054094000000,0.000131526000000,0.000109798000000,0.000071477000000,0.000327477000000,0.000307724000000,0.000257551000000,0.000259131000000,0.014505441000000,0.000258341000000,0.014528355000000,0.000329452000000,0.000257946000000 +0.000145749000000,0.000262292000000,0.000047774000000,0.000081749000000,0.000228711000000,0.000173798000000,0.000053304000000,0.000135082000000,0.000192761000000,0.000069502000000,0.000295082000000,0.000270193000000,0.000289946000000,0.000285995000000,0.014695466000000,0.000278094000000,0.013713738000000,0.000262292000000,0.000208169000000 +0.000146539000000,0.000310094000000,0.000045798000000,0.000081353000000,0.000195921000000,0.000170242000000,0.000053699000000,0.000178934000000,0.000124020000000,0.000073847000000,0.000293501000000,0.000284020000000,0.000259921000000,0.000253601000000,0.014884305000000,0.000260712000000,0.014184651000000,0.000304958000000,0.000208169000000 +0.000148514000000,0.000262687000000,0.000048168000000,0.000080564000000,0.000195921000000,0.000170242000000,0.000055280000000,0.000131921000000,0.000108613000000,0.000073057000000,0.000269008000000,0.000312860000000,0.000255971000000,0.000274143000000,0.014350182000000,0.000260316000000,0.014311861000000,0.000261502000000,0.000243329000000 +0.000192366000000,0.000259132000000,0.000045798000000,0.000080959000000,0.000194342000000,0.000171823000000,0.000053700000000,0.000129947000000,0.000108613000000,0.000069897000000,0.000270983000000,0.000274539000000,0.000264663000000,0.000279279000000,0.014517688000000,0.000327082000000,0.014021886000000,0.000468514000000,0.000209354000000 +0.000147329000000,0.000261897000000,0.000045403000000,0.000079773000000,0.000266637000000,0.000174588000000,0.000053699000000,0.000133502000000,0.000107033000000,0.000069897000000,0.000323921000000,0.000291526000000,0.000256365000000,0.000258341000000,0.014571812000000,0.000257946000000,0.014112750000000,0.000262687000000,0.000207378000000 +0.000146934000000,0.000261107000000,0.000045798000000,0.000080959000000,0.000196711000000,0.000172218000000,0.000054095000000,0.000130736000000,0.000108613000000,0.000073847000000,0.000272958000000,0.000277699000000,0.000291526000000,0.000282835000000,0.014567070000000,0.000258341000000,0.014970823000000,0.000296662000000,0.000207378000000 +0.000146539000000,0.000264662000000,0.000045403000000,0.000081354000000,0.000194341000000,0.000171822000000,0.000053699000000,0.000186045000000,0.000127971000000,0.000069897000000,0.000272564000000,0.000273354000000,0.000259527000000,0.000244514000000,0.014185836000000,0.000278884000000,0.014465145000000,0.000260711000000,0.000220810000000 +0.000181304000000,0.000261501000000,0.000045798000000,0.000080958000000,0.000227922000000,0.000171822000000,0.000056860000000,0.000131132000000,0.000120860000000,0.000191181000000,0.000348416000000,0.000301403000000,0.000257551000000,0.000293502000000,0.016732402000000,0.000259131000000,0.013762725000000,0.000293502000000,0.000207378000000 +0.000147329000000,0.000308514000000,0.000045798000000,0.000081353000000,0.000194341000000,0.000222786000000,0.000053699000000,0.000130736000000,0.000109008000000,0.000105057000000,0.000272168000000,0.000283230000000,0.000296267000000,0.000273354000000,0.014666626000000,0.000300218000000,0.014863762000000,0.000263477000000,0.000208959000000 +0.000146144000000,0.000262687000000,0.000045403000000,0.000116514000000,0.000195526000000,0.000173403000000,0.000054094000000,0.000131131000000,0.000108218000000,0.000074243000000,0.000350390000000,0.000274539000000,0.000309304000000,0.000255181000000,0.014924997000000,0.000255576000000,0.014036503000000,0.000260317000000,0.000243329000000 +0.000148514000000,0.000336168000000,0.000045403000000,0.000081749000000,0.000194342000000,0.000171033000000,0.000071082000000,0.000132317000000,0.000107033000000,0.000069897000000,0.000268613000000,0.000308119000000,0.000292712000000,0.000278884000000,0.014812008000000,0.000256761000000,0.013725195000000,0.000260317000000,0.000209749000000 +0.000147329000000,0.000278094000000,0.000045798000000,0.000081354000000,0.000230292000000,0.000171823000000,0.000053699000000,0.000131921000000,0.000107033000000,0.000103873000000,0.000277699000000,0.000270193000000,0.000258736000000,0.000287181000000,0.014480552000000,0.000291921000000,0.014522428000000,0.000260316000000,0.000208169000000 +0.000260316000000,0.000261896000000,0.000047774000000,0.000080958000000,0.000196712000000,0.000173798000000,0.000053700000000,0.000133502000000,0.000107427000000,0.000075428000000,0.000304564000000,0.000306143000000,0.000260317000000,0.000244514000000,0.014571021000000,0.000258736000000,0.014047565000000,0.000258736000000,0.000385551000000 +0.000147724000000,0.000262292000000,0.000045798000000,0.000081353000000,0.000194737000000,0.000170638000000,0.000053699000000,0.000132317000000,0.000110588000000,0.000070687000000,0.000267823000000,0.000264267000000,0.000299822000000,0.000317995000000,0.014318577000000,0.000260317000000,0.013868207000000,0.000258341000000,0.000248860000000 +0.000147329000000,0.000263477000000,0.000061996000000,0.000081353000000,0.000213699000000,0.000172218000000,0.000053699000000,0.000213699000000,0.000107032000000,0.000071082000000,0.000272168000000,0.000287575000000,0.000257946000000,0.000264662000000,0.014070874000000,0.000328267000000,0.013877293000000,0.000295082000000,0.000209354000000 +0.000145354000000,0.000295872000000,0.000048168000000,0.000081354000000,0.000193946000000,0.000174193000000,0.000054489000000,0.000146143000000,0.000107033000000,0.000069502000000,0.000269798000000,0.000338934000000,0.000261502000000,0.000291131000000,0.014490428000000,0.000259131000000,0.014272355000000,0.000259131000000,0.000208169000000 +0.000160366000000,0.000265452000000,0.000045798000000,0.000080564000000,0.000195131000000,0.000173403000000,0.000056860000000,0.000130736000000,0.000107032000000,0.000071477000000,0.000273749000000,0.000263082000000,0.000311279000000,0.000821699000000,0.014368355000000,0.000280464000000,0.014216256000000,0.000295082000000,0.000212119000000 +0.000146539000000,0.000332217000000,0.000045799000000,0.000080958000000,0.000195922000000,0.000174589000000,0.000054095000000,0.000131527000000,0.000179328000000,0.000070687000000,0.000306539000000,0.000259921000000,0.000256761000000,0.000397008000000,0.013800256000000,0.000265058000000,0.014000553000000,0.000262687000000,0.000207378000000 +0.000146539000000,0.000261106000000,0.000045798000000,0.000080959000000,0.000230292000000,0.000172218000000,0.000053699000000,0.000136662000000,0.000108612000000,0.000104662000000,0.000268218000000,0.000281650000000,0.000291527000000,0.000304563000000,0.013918380000000,0.000261897000000,0.015532601000000,0.000264663000000,0.000217255000000 +0.000146144000000,0.000319576000000,0.000045403000000,0.000082539000000,0.000195132000000,0.000171428000000,0.000055674000000,0.000130737000000,0.000108613000000,0.000072267000000,0.000275329000000,0.000273354000000,0.000255575000000,0.000266637000000,0.013982774000000,0.000307724000000,0.014635021000000,0.000260711000000,0.000208563000000 +0.000179724000000,0.000267032000000,0.000045403000000,0.000080959000000,0.000196317000000,0.000289551000000,0.000053700000000,0.000163131000000,0.000108613000000,0.000070687000000,0.000294292000000,0.000326292000000,0.000260316000000,0.000299033000000,0.014476996000000,0.000257156000000,0.013823565000000,0.000262291000000,0.000207378000000 +0.000145748000000,0.000261502000000,0.000048959000000,0.000081749000000,0.000194341000000,0.000187230000000,0.000053305000000,0.000131526000000,0.000111773000000,0.000071477000000,0.000260317000000,0.000272168000000,0.000309304000000,0.000355526000000,0.014203219000000,0.000259526000000,0.014720750000000,0.000297452000000,0.000206983000000 +0.000145748000000,0.000261107000000,0.000045799000000,0.000080959000000,0.000196712000000,0.000171033000000,0.000053699000000,0.000129947000000,0.000141008000000,0.000071477000000,0.000257156000000,0.000276909000000,0.000256366000000,0.000284020000000,0.014617639000000,0.000318785000000,0.014134874000000,0.000265452000000,0.000209748000000 +0.000147329000000,0.000260712000000,0.000045403000000,0.000081354000000,0.000242934000000,0.000172218000000,0.000095181000000,0.000129946000000,0.000108613000000,0.000073452000000,0.000385946000000,0.000423082000000,0.000257156000000,0.000241354000000,0.014210725000000,0.000261106000000,0.014113145000000,0.000301798000000,0.000222391000000 +0.000148119000000,0.000348810000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000204218000000,0.000054884000000,0.000131132000000,0.000107823000000,0.000070687000000,0.000273748000000,0.000270588000000,0.000255576000000,0.000257552000000,0.014511367000000,0.000315625000000,0.013994231000000,0.000264267000000,0.000235428000000 +0.000147329000000,0.000261502000000,0.000048564000000,0.000082934000000,0.000296267000000,0.000170638000000,0.000056070000000,0.000130342000000,0.000110588000000,0.000114143000000,0.000472859000000,0.000320761000000,0.000259526000000,0.000287971000000,0.014178725000000,0.000256761000000,0.013931021000000,0.000264267000000,0.000210538000000 +0.000147329000000,0.000298637000000,0.000046193000000,0.000080168000000,0.000193946000000,0.000171033000000,0.000054885000000,0.000130341000000,0.000108218000000,0.000070292000000,0.000302193000000,0.000272959000000,0.000298637000000,0.000284810000000,0.014842429000000,0.000258341000000,0.013776552000000,0.000260712000000,0.000207773000000 +0.000147329000000,0.000258736000000,0.000046193000000,0.000081749000000,0.000195131000000,0.000172217000000,0.000053699000000,0.000130342000000,0.000109403000000,0.000070687000000,0.000300217000000,0.000259131000000,0.000255970000000,0.000289156000000,0.013882824000000,0.000292317000000,0.013765887000000,0.000260712000000,0.000216859000000 +0.000146934000000,0.000263477000000,0.000046193000000,0.000083329000000,0.000214885000000,0.000210934000000,0.000054884000000,0.000130736000000,0.000191971000000,0.000071477000000,0.000268613000000,0.000263477000000,0.000261107000000,0.000292316000000,0.014012009000000,0.000255971000000,0.014394033000000,0.000259921000000,0.000213304000000 +0.000179329000000,0.000268217000000,0.000045798000000,0.000081748000000,0.000196712000000,0.000174588000000,0.000054490000000,0.000215280000000,0.000108613000000,0.000070292000000,0.000269798000000,0.000272563000000,0.000328267000000,0.000253995000000,0.013915219000000,0.000262687000000,0.013956700000000,0.000264267000000,0.000221205000000 +0.000148514000000,0.000260316000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000171823000000,0.000053304000000,0.000131922000000,0.000108612000000,0.000071083000000,0.000334984000000,0.000357897000000,0.000257551000000,0.000272168000000,0.013746133000000,0.000365007000000,0.014305540000000,0.000299428000000,0.000223971000000 +0.000146143000000,0.000332613000000,0.000045798000000,0.000080959000000,0.000196316000000,0.000170243000000,0.000053700000000,0.000132316000000,0.000142589000000,0.000070292000000,0.000268613000000,0.000271378000000,0.000257946000000,0.000295477000000,0.013794725000000,0.000257551000000,0.017052007000000,0.000309305000000,0.000225946000000 +0.000146933000000,0.000259921000000,0.000050144000000,0.000080959000000,0.000227527000000,0.000186440000000,0.000054094000000,0.000132317000000,0.000110983000000,0.000105058000000,0.000306144000000,0.000291131000000,0.000257156000000,0.000279674000000,0.014108404000000,0.000351971000000,0.015058527000000,0.000304958000000,0.000224761000000 +0.000148119000000,0.000293502000000,0.000048168000000,0.000081354000000,0.000194736000000,0.000171823000000,0.000092415000000,0.000133107000000,0.000107033000000,0.000071082000000,0.000269008000000,0.000274933000000,0.000263872000000,0.000287181000000,0.014885095000000,0.000256761000000,0.014674923000000,0.000259132000000,0.000228317000000 +0.000146144000000,0.000260316000000,0.000045798000000,0.000080564000000,0.000194341000000,0.000170638000000,0.000072663000000,0.000143774000000,0.000108613000000,0.000071082000000,0.000270983000000,0.000270983000000,0.000293502000000,0.000258736000000,0.013911663000000,0.000259526000000,0.014834527000000,0.000263082000000,0.000221206000000 +0.000147329000000,0.000292316000000,0.000045403000000,0.000084119000000,0.000197107000000,0.000171822000000,0.000056465000000,0.000130736000000,0.000107032000000,0.000071477000000,0.000302193000000,0.000346045000000,0.000263082000000,0.000280069000000,0.013857145000000,0.000587032000000,0.014466725000000,0.000262291000000,0.000225156000000 +0.000146539000000,0.000264662000000,0.000048168000000,0.000081353000000,0.000194341000000,0.000170638000000,0.000054490000000,0.000130736000000,0.000142193000000,0.000071477000000,0.000281255000000,0.000270588000000,0.000257156000000,0.000275724000000,0.014495170000000,0.000258341000000,0.016500107000000,0.000262687000000,0.000224366000000 +0.000146933000000,0.000259527000000,0.000048168000000,0.000081749000000,0.000195131000000,0.000170638000000,0.000053699000000,0.000132317000000,0.000109008000000,0.000072662000000,0.000282835000000,0.000272959000000,0.000344465000000,0.000282440000000,0.013740207000000,0.000256366000000,0.015153737000000,0.000294291000000,0.000225551000000 +0.000180119000000,0.000357897000000,0.000045798000000,0.000080168000000,0.000194736000000,0.000171427000000,0.000054095000000,0.000199872000000,0.000107428000000,0.000071477000000,0.000287576000000,0.000288760000000,0.000258341000000,0.000278884000000,0.014349392000000,0.000257946000000,0.014302380000000,0.000264267000000,0.000242144000000 +0.000146539000000,0.000258736000000,0.000045403000000,0.000080169000000,0.000238588000000,0.000225552000000,0.000053699000000,0.000130736000000,0.000108613000000,0.000071478000000,0.000270983000000,0.000267823000000,0.000257551000000,0.000300217000000,0.014437095000000,0.000299822000000,0.014689145000000,0.000298637000000,0.000230687000000 +0.000147329000000,0.000329452000000,0.000045798000000,0.000082143000000,0.000195132000000,0.000169847000000,0.000055675000000,0.000131921000000,0.000108218000000,0.000071477000000,0.000323132000000,0.000353156000000,0.000255181000000,0.000238984000000,0.013974478000000,0.000257551000000,0.014570231000000,0.000266243000000,0.000223180000000 +0.000147329000000,0.000261897000000,0.000045798000000,0.000080564000000,0.000196317000000,0.000173008000000,0.000054490000000,0.000130341000000,0.000107427000000,0.000071872000000,0.000272168000000,0.000270588000000,0.000258736000000,0.000278489000000,0.013943269000000,0.000258737000000,0.014356107000000,0.000282045000000,0.000223181000000 +0.000152859000000,0.000340514000000,0.000049748000000,0.000080564000000,0.000203427000000,0.000171428000000,0.000053699000000,0.000175773000000,0.000108613000000,0.000069897000000,0.000274143000000,0.000278885000000,0.000334588000000,0.000282835000000,0.014318182000000,0.000291527000000,0.015314527000000,0.000266242000000,0.000232267000000 +0.000146934000000,0.000259921000000,0.000046588000000,0.000081353000000,0.000227921000000,0.000208169000000,0.000055279000000,0.000131131000000,0.000108612000000,0.000070687000000,0.000334983000000,0.000340909000000,0.000287576000000,0.000273749000000,0.014343861000000,0.000257946000000,0.015033243000000,0.000260712000000,0.000206589000000 +0.000146144000000,0.000338144000000,0.000067527000000,0.000081353000000,0.000195922000000,0.000170242000000,0.000056070000000,0.000139427000000,0.000107427000000,0.000070292000000,0.000272564000000,0.000271378000000,0.000309304000000,0.000253996000000,0.014560355000000,0.000258341000000,0.014745638000000,0.000276514000000,0.000263872000000 +0.000146144000000,0.000263872000000,0.000045798000000,0.000080563000000,0.000196316000000,0.000170638000000,0.000053699000000,0.000131921000000,0.000109008000000,0.000069896000000,0.000304564000000,0.000469699000000,0.000258736000000,0.000327872000000,0.013877293000000,0.000272168000000,0.014251021000000,0.000261106000000,0.000216859000000 +0.000148119000000,0.000330243000000,0.000050144000000,0.000081354000000,0.000194341000000,0.000170242000000,0.000054489000000,0.000131527000000,0.000110984000000,0.000071478000000,0.000272959000000,0.000303378000000,0.000261502000000,0.000255181000000,0.014380207000000,0.000265452000000,0.014540207000000,0.000295872000000,0.000208168000000 +0.000180909000000,0.000269008000000,0.000045798000000,0.000080959000000,0.000195132000000,0.000206193000000,0.000068316000000,0.000243329000000,0.000140613000000,0.000069897000000,0.000277304000000,0.000394242000000,0.000340119000000,0.000368958000000,0.013875318000000,0.000292316000000,0.014358478000000,0.000267823000000,0.000207378000000 +0.000147329000000,0.000263872000000,0.000048169000000,0.000083329000000,0.000194736000000,0.000170242000000,0.000053305000000,0.000168662000000,0.000108613000000,0.000069897000000,0.000302983000000,0.000272959000000,0.000263872000000,0.000258341000000,0.013757194000000,0.000257551000000,0.014623169000000,0.000367773000000,0.000208168000000 +0.000147329000000,0.000265057000000,0.000045403000000,0.000080564000000,0.000196711000000,0.000172612000000,0.000053304000000,0.000130737000000,0.000110588000000,0.000071477000000,0.000275724000000,0.000259526000000,0.000257946000000,0.000247675000000,0.014039664000000,0.000255576000000,0.014808453000000,0.000277699000000,0.000217255000000 +0.000146538000000,0.000261501000000,0.000050934000000,0.000080959000000,0.000240564000000,0.000220021000000,0.000054489000000,0.000132317000000,0.000109403000000,0.000073057000000,0.000273748000000,0.000273749000000,0.000297452000000,0.000354341000000,0.014115515000000,0.000294291000000,0.014813589000000,0.000293897000000,0.000216860000000 +0.000179724000000,0.000259527000000,0.000045404000000,0.000080168000000,0.000196712000000,0.000188020000000,0.000054095000000,0.000131527000000,0.000108613000000,0.000069897000000,0.000269403000000,0.000261106000000,0.000258342000000,0.000240168000000,0.014495564000000,0.000256366000000,0.014219811000000,0.000269008000000,0.000209749000000 +0.000148119000000,0.000265847000000,0.000082934000000,0.000081749000000,0.000196316000000,0.000171428000000,0.000054489000000,0.000130736000000,0.000142193000000,0.000069896000000,0.000281255000000,0.000328662000000,0.000259921000000,0.000267428000000,0.014193738000000,0.000294687000000,0.014903268000000,0.000263872000000,0.000207378000000 +0.000146143000000,0.000341699000000,0.000048168000000,0.000082144000000,0.000195922000000,0.000170638000000,0.000054490000000,0.000132316000000,0.000109403000000,0.000085700000000,0.000303378000000,0.000257551000000,0.000259526000000,0.000264267000000,0.014811219000000,0.000261107000000,0.014741688000000,0.000262687000000,0.000218440000000 +0.000161551000000,0.000270193000000,0.000049749000000,0.000081748000000,0.000229502000000,0.000205798000000,0.000088465000000,0.000132317000000,0.000109403000000,0.000069897000000,0.000274538000000,0.000259131000000,0.000257156000000,0.000246885000000,0.013961836000000,0.000259921000000,0.014300800000000,0.000261896000000,0.000218045000000 +0.000145354000000,0.000331823000000,0.000045403000000,0.000080563000000,0.000196712000000,0.000170242000000,0.000055280000000,0.000151674000000,0.000109403000000,0.000071872000000,0.000267823000000,0.000259132000000,0.000306934000000,0.000302588000000,0.014198874000000,0.000344465000000,0.014334775000000,0.000294292000000,0.000248860000000 +0.000238983000000,0.000260317000000,0.000045799000000,0.000081749000000,0.000196711000000,0.000170242000000,0.000056860000000,0.000131131000000,0.000110193000000,0.000069897000000,0.000444810000000,0.000267823000000,0.000257946000000,0.000651823000000,0.014365589000000,0.000263081000000,0.014824651000000,0.000263477000000,0.000229897000000 +0.000146144000000,0.000316020000000,0.000048563000000,0.000081748000000,0.000195526000000,0.000171033000000,0.000055675000000,0.000130736000000,0.000107032000000,0.000071872000000,0.000271774000000,0.000304168000000,0.000259921000000,0.000286786000000,0.013722429000000,0.000259527000000,0.014597885000000,0.000308119000000,0.000207378000000 +0.000146144000000,0.000262292000000,0.000048959000000,0.000080959000000,0.000195921000000,0.000193551000000,0.000054095000000,0.000131526000000,0.000122440000000,0.000069502000000,0.000287971000000,0.000272958000000,0.000658144000000,0.000266637000000,0.013849639000000,0.000291921000000,0.014457638000000,0.000259526000000,0.000219230000000 +0.000146934000000,0.000262687000000,0.000045798000000,0.000080958000000,0.000195132000000,0.000170637000000,0.000055280000000,0.000130341000000,0.000107032000000,0.000069897000000,0.000271378000000,0.000271774000000,0.000352761000000,0.000244514000000,0.014464750000000,0.000256761000000,0.014875219000000,0.000259527000000,0.000217650000000 +0.000180909000000,0.000261106000000,0.000089255000000,0.000082144000000,0.000196711000000,0.000171032000000,0.000054095000000,0.000178934000000,0.000109798000000,0.000072267000000,0.000345255000000,0.000317601000000,0.000262292000000,0.000263081000000,0.014369145000000,0.000317996000000,0.014313046000000,0.000274144000000,0.000208169000000 +0.000147724000000,0.000261106000000,0.000045798000000,0.000083329000000,0.000303773000000,0.000172218000000,0.000058835000000,0.000130341000000,0.000108217000000,0.000073057000000,0.000268218000000,0.000271378000000,0.000262291000000,0.000263082000000,0.014536651000000,0.000257946000000,0.015162033000000,0.000313650000000,0.000220415000000 +0.000146539000000,0.000326686000000,0.000048169000000,0.000081354000000,0.000223971000000,0.000214095000000,0.000069107000000,0.000136267000000,0.000107033000000,0.000104267000000,0.000271378000000,0.000257946000000,0.000294687000000,0.000279674000000,0.014368750000000,0.000259131000000,0.015052601000000,0.000293107000000,0.000207773000000 +0.000146538000000,0.000262292000000,0.000045403000000,0.000080959000000,0.000195131000000,0.000171033000000,0.000054490000000,0.000132316000000,0.000191181000000,0.000071872000000,0.000307724000000,0.000270193000000,0.000259922000000,0.000225946000000,0.015254872000000,0.000308514000000,0.014231663000000,0.000260712000000,0.000216464000000 +0.000146144000000,0.000331428000000,0.000045403000000,0.000080959000000,0.000230292000000,0.000173403000000,0.000053699000000,0.000132316000000,0.000109008000000,0.000070292000000,0.000272169000000,0.000272564000000,0.000265057000000,0.000247674000000,0.014648454000000,0.000264267000000,0.014507417000000,0.000291921000000,0.000208958000000 +0.000147329000000,0.000259527000000,0.000062786000000,0.000080959000000,0.000196316000000,0.000170242000000,0.000054885000000,0.000165897000000,0.000124416000000,0.000071082000000,0.000271379000000,0.000290341000000,0.000258737000000,0.000293501000000,0.014397589000000,0.000271773000000,0.014570231000000,0.000263477000000,0.000217255000000 +0.000147329000000,0.000259526000000,0.000046194000000,0.000081353000000,0.000194736000000,0.000207773000000,0.000053700000000,0.000182094000000,0.000107032000000,0.000103872000000,0.000297057000000,0.000267032000000,0.000263872000000,0.000256761000000,0.013663960000000,0.000271773000000,0.014728650000000,0.000261502000000,0.000208168000000 +0.000147329000000,0.000261501000000,0.000082539000000,0.000080959000000,0.000194736000000,0.000170637000000,0.000053699000000,0.000132317000000,0.000108613000000,0.000074242000000,0.000270588000000,0.000272564000000,0.000293897000000,0.000263872000000,0.013911268000000,0.000261106000000,0.014636601000000,0.000262292000000,0.000207378000000 +0.000147329000000,0.000267427000000,0.000047378000000,0.000080959000000,0.000242934000000,0.000171427000000,0.000054489000000,0.000130737000000,0.000110984000000,0.000107032000000,0.000308514000000,0.000299428000000,0.000257946000000,0.000305748000000,0.014135664000000,0.000298638000000,0.014791071000000,0.000260316000000,0.000209748000000 +0.000180909000000,0.000259922000000,0.000045403000000,0.000081353000000,0.000196317000000,0.000171823000000,0.000067132000000,0.000166687000000,0.000106638000000,0.000069897000000,0.000267033000000,0.000281255000000,0.000259526000000,0.000246489000000,0.013964602000000,0.000257155000000,0.014537046000000,0.000295477000000,0.000208563000000 +0.000147329000000,0.000257946000000,0.000045798000000,0.000081354000000,0.000195132000000,0.000206589000000,0.000054885000000,0.000130737000000,0.000108217000000,0.000069501000000,0.000267823000000,0.000268218000000,0.000258736000000,0.000260316000000,0.014603811000000,0.000256761000000,0.014360848000000,0.000263477000000,0.000216464000000 +0.000147329000000,0.000991970000000,0.000047774000000,0.000080959000000,0.000261897000000,0.000171823000000,0.000056860000000,0.000131921000000,0.000109008000000,0.000070687000000,0.000346045000000,0.000287180000000,0.000263082000000,0.000317600000000,0.014061787000000,0.000299822000000,0.014479762000000,0.000329057000000,0.000207773000000 +0.000147329000000,0.000259527000000,0.000048168000000,0.000081353000000,0.000198687000000,0.000170637000000,0.000053304000000,0.000130736000000,0.000109008000000,0.000152070000000,0.000270588000000,0.000274933000000,0.000377255000000,0.000276119000000,0.014071268000000,0.000259921000000,0.015076305000000,0.000260711000000,0.000210144000000 +0.000147329000000,0.000265452000000,0.000050934000000,0.000080564000000,0.000348020000000,0.000171823000000,0.000057255000000,0.000129947000000,0.000140612000000,0.000071872000000,0.000272563000000,0.000312070000000,0.000262686000000,0.000274933000000,0.014138429000000,0.000257946000000,0.014382182000000,0.000263082000000,0.000207378000000 +0.000146934000000,0.000262292000000,0.000046194000000,0.000152070000000,0.000243724000000,0.000206588000000,0.000056070000000,0.000165107000000,0.000109798000000,0.000074638000000,0.000270588000000,0.000275724000000,0.000257946000000,0.000234242000000,0.014141985000000,0.000259131000000,0.014455268000000,0.000261897000000,0.000206983000000 +0.000146934000000,0.000265057000000,0.000103082000000,0.000085304000000,0.000195131000000,0.000171033000000,0.000056860000000,0.000130737000000,0.000108218000000,0.000069897000000,0.000267032000000,0.000284811000000,0.000306143000000,0.000273354000000,0.013929046000000,0.000259922000000,0.014360453000000,0.000262687000000,0.000207773000000 +0.000146143000000,0.000275329000000,0.000081749000000,0.000081354000000,0.000196316000000,0.000171427000000,0.000074242000000,0.000130736000000,0.000108218000000,0.000072268000000,0.000341699000000,0.000307329000000,0.000264662000000,0.000278490000000,0.015560650000000,0.000373699000000,0.014895762000000,0.000297452000000,0.000210539000000 +0.000148119000000,0.000261897000000,0.000048564000000,0.000081354000000,0.000199477000000,0.000171427000000,0.000054095000000,0.000131527000000,0.000107032000000,0.000069897000000,0.000291526000000,0.000269008000000,0.000313255000000,0.000277699000000,0.014755514000000,0.000326687000000,0.014338330000000,0.000261502000000,0.000216860000000 +0.000214884000000,0.000293501000000,0.000045403000000,0.000081749000000,0.000229502000000,0.000319181000000,0.000056070000000,0.000130341000000,0.000178539000000,0.000069896000000,0.000282439000000,0.000274143000000,0.000337354000000,0.000275329000000,0.016586229000000,0.000292712000000,0.015303070000000,0.000297847000000,0.000274144000000 +0.000147329000000,0.000312464000000,0.000095971000000,0.000082538000000,0.000196711000000,0.000227921000000,0.000055675000000,0.000165897000000,0.000107033000000,0.000070292000000,0.000321551000000,0.000374884000000,0.000256761000000,0.000254786000000,0.014254577000000,0.000259921000000,0.015105144000000,0.000259922000000,0.000229106000000 +0.000146934000000,0.000283625000000,0.000047774000000,0.000117304000000,0.000195526000000,0.000171427000000,0.000055675000000,0.000131131000000,0.000107032000000,0.000069897000000,0.000273354000000,0.000269403000000,0.000303378000000,0.000248860000000,0.014436305000000,0.000258737000000,0.014401540000000,0.000261897000000,0.000207379000000 +0.000147724000000,0.000259131000000,0.000116909000000,0.000112563000000,0.000234243000000,0.000184860000000,0.000053304000000,0.000130736000000,0.000107427000000,0.000071477000000,0.000272563000000,0.000351180000000,0.000259921000000,0.000282835000000,0.014247466000000,0.000305749000000,0.014311466000000,0.000265058000000,0.000206588000000 +0.000181304000000,0.000277304000000,0.000045798000000,0.000082143000000,0.000196712000000,0.000172613000000,0.000053699000000,0.000131131000000,0.000108613000000,0.000071872000000,0.000259527000000,0.000260711000000,0.000275724000000,0.000312464000000,0.013761146000000,0.000261896000000,0.014764996000000,0.000265453000000,0.000207378000000 +0.000146934000000,0.000260712000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000172613000000,0.000087674000000,0.000130342000000,0.000144563000000,0.000070292000000,0.000267428000000,0.000260711000000,0.000261502000000,0.000274538000000,0.014175169000000,0.000258342000000,0.014365590000000,0.000259131000000,0.000207378000000 +0.000146933000000,0.000267427000000,0.000045798000000,0.000080169000000,0.000196317000000,0.000171427000000,0.000053700000000,0.000133502000000,0.000122440000000,0.000071082000000,0.000306144000000,0.000286390000000,0.000264662000000,0.000254390000000,0.014531120000000,0.000294687000000,0.014937638000000,0.000260711000000,0.000219230000000 +0.000147724000000,0.000262291000000,0.000048169000000,0.000081354000000,0.000195922000000,0.000206193000000,0.000054489000000,0.000130342000000,0.000106638000000,0.000091230000000,0.000257946000000,0.000270983000000,0.000293897000000,0.000244514000000,0.014077985000000,0.000256761000000,0.014039268000000,0.000293896000000,0.000263477000000 +0.000145749000000,0.000270193000000,0.000045798000000,0.000117304000000,0.000196712000000,0.000170243000000,0.000053305000000,0.000130341000000,0.000108612000000,0.000069502000000,0.000257946000000,0.000306538000000,0.000256761000000,0.000287971000000,0.014253392000000,0.000278094000000,0.015184946000000,0.000261502000000,0.000216860000000 +0.000179724000000,0.000470489000000,0.000049749000000,0.000080564000000,0.000196712000000,0.000170242000000,0.000054094000000,0.000130342000000,0.000108218000000,0.000071477000000,0.000295477000000,0.000273354000000,0.000258736000000,0.000274538000000,0.013761541000000,0.000258341000000,0.015246576000000,0.000298637000000,0.000216465000000 +0.000148514000000,0.000391477000000,0.000045798000000,0.000080564000000,0.000265452000000,0.000172218000000,0.000053699000000,0.000134687000000,0.000150094000000,0.000071872000000,0.000269403000000,0.000279280000000,0.000325897000000,0.000278490000000,0.014703762000000,0.000259921000000,0.014734576000000,0.000262292000000,0.000226341000000 +0.000146539000000,0.000263082000000,0.000045798000000,0.000079773000000,0.000196316000000,0.000205798000000,0.000056860000000,0.000133502000000,0.000109008000000,0.000071477000000,0.000312465000000,0.000308514000000,0.000256761000000,0.000255971000000,0.014325688000000,0.000292317000000,0.014674923000000,0.000261897000000,0.000208168000000 +0.000146538000000,0.000260712000000,0.000045008000000,0.000081354000000,0.000195131000000,0.000172218000000,0.000054885000000,0.000132711000000,0.000108613000000,0.000069897000000,0.000272563000000,0.000270193000000,0.000258736000000,0.000293501000000,0.014202033000000,0.000261502000000,0.014414577000000,0.000261502000000,0.000208958000000 +0.000174194000000,0.000266638000000,0.000046193000000,0.000081748000000,0.000196316000000,0.000170638000000,0.000084514000000,0.000131526000000,0.000108613000000,0.000070292000000,0.000272959000000,0.000276119000000,0.000261897000000,0.000242934000000,0.014379812000000,0.000258736000000,0.014768156000000,0.000261106000000,0.000219625000000 +0.000147329000000,0.000264662000000,0.000048168000000,0.000081354000000,0.000197107000000,0.000170243000000,0.000056069000000,0.000135872000000,0.000109403000000,0.000116909000000,0.000355921000000,0.000306538000000,0.000258341000000,0.000293502000000,0.014178725000000,0.000304958000000,0.014719565000000,0.000354341000000,0.000207378000000 +0.000146539000000,0.000296662000000,0.000045798000000,0.000080959000000,0.000194736000000,0.000174588000000,0.000053699000000,0.000159576000000,0.000107428000000,0.000071477000000,0.000269007000000,0.000269798000000,0.000309699000000,0.000283625000000,0.013729146000000,0.000258736000000,0.014529144000000,0.000263081000000,0.000206983000000 +0.000146934000000,0.000259526000000,0.000048168000000,0.000080564000000,0.000195921000000,0.000170243000000,0.000053700000000,0.000129947000000,0.000109008000000,0.000071873000000,0.000302588000000,0.000277305000000,0.000257946000000,0.000258737000000,0.014450527000000,0.000258736000000,0.016412008000000,0.000410045000000,0.000206984000000 +0.000146934000000,0.000294687000000,0.000045798000000,0.000080564000000,0.000265058000000,0.000171033000000,0.000054094000000,0.000135082000000,0.000109404000000,0.000071082000000,0.000275724000000,0.000269007000000,0.000257946000000,0.000283625000000,0.013955516000000,0.000272958000000,0.014470676000000,0.000261897000000,0.000220020000000 +0.000179724000000,0.000258341000000,0.000045798000000,0.000080168000000,0.000194736000000,0.000170637000000,0.000055280000000,0.000131922000000,0.000107032000000,0.000071477000000,0.000269403000000,0.000269008000000,0.000293897000000,0.000274934000000,0.014349392000000,0.000258736000000,0.014346231000000,0.000295477000000,0.000207378000000 +0.000147329000000,0.000266243000000,0.000062391000000,0.000081748000000,0.000195921000000,0.000173007000000,0.000054885000000,0.000166687000000,0.000107033000000,0.000069897000000,0.000479971000000,0.000418342000000,0.000257551000000,0.000240168000000,0.014388502000000,0.000280070000000,0.014785935000000,0.000262291000000,0.000209749000000 +0.000146539000000,0.000262292000000,0.000045798000000,0.000080564000000,0.000194736000000,0.000171822000000,0.000073848000000,0.000132317000000,0.000108218000000,0.000070687000000,0.000290736000000,0.000284810000000,0.000306539000000,0.000282439000000,0.014125787000000,0.000257156000000,0.016314032000000,0.000332612000000,0.000220020000000 +0.000146934000000,0.000259527000000,0.000045798000000,0.000080564000000,0.000227922000000,0.000172218000000,0.000054094000000,0.000132317000000,0.000142193000000,0.000104663000000,0.000306539000000,0.000272958000000,0.000256366000000,0.000303378000000,0.014568256000000,0.000256366000000,0.014736947000000,0.000262292000000,0.000209354000000 +0.000250835000000,0.000297847000000,0.000045403000000,0.000081354000000,0.000196317000000,0.000171428000000,0.000053305000000,0.000131131000000,0.000107033000000,0.000070292000000,0.000270983000000,0.000270983000000,0.000257551000000,0.000268218000000,0.014091812000000,0.000314835000000,0.015103564000000,0.000319181000000,0.000259922000000 +0.000167082000000,0.000263477000000,0.000048169000000,0.000081749000000,0.000194341000000,0.000174193000000,0.000052909000000,0.000130736000000,0.000127971000000,0.000071477000000,0.000277305000000,0.000270588000000,0.000293897000000,0.000292712000000,0.013936553000000,0.000260316000000,0.014872058000000,0.000260316000000,0.000219625000000 +0.000146144000000,0.000295872000000,0.000048563000000,0.000081353000000,0.000264267000000,0.000170243000000,0.000056464000000,0.000195132000000,0.000115329000000,0.000069897000000,0.000336168000000,0.000311674000000,0.000255576000000,0.000230292000000,0.014497935000000,0.000295872000000,0.016302576000000,0.000258736000000,0.000210538000000 +0.000147329000000,0.000260316000000,0.000045798000000,0.000080958000000,0.000194737000000,0.000172218000000,0.000054885000000,0.000130341000000,0.000165897000000,0.000071082000000,0.000270983000000,0.000259527000000,0.000257156000000,0.000272168000000,0.013902577000000,0.000256761000000,0.015483218000000,0.000261897000000,0.000218045000000 +0.000180514000000,0.000267032000000,0.000048168000000,0.000081749000000,0.000196712000000,0.000172218000000,0.000053699000000,0.000130341000000,0.000141008000000,0.000069897000000,0.000292316000000,0.000271378000000,0.000504069000000,0.000311675000000,0.014512947000000,0.000270588000000,0.014758280000000,0.000268613000000,0.000206589000000 +0.000146934000000,0.000261501000000,0.000047774000000,0.000081748000000,0.000196316000000,0.000173008000000,0.000053304000000,0.000132712000000,0.000109008000000,0.000071872000000,0.000267822000000,0.000357107000000,0.000275724000000,0.000263872000000,0.013708998000000,0.000291921000000,0.014875218000000,0.000333798000000,0.000220810000000 +0.000148119000000,0.000267428000000,0.000047773000000,0.000080564000000,0.000228316000000,0.000171428000000,0.000133107000000,0.000164316000000,0.000107428000000,0.000103872000000,0.000258341000000,0.000270983000000,0.000289156000000,0.000260712000000,0.013873738000000,0.000257551000000,0.014739318000000,0.000260317000000,0.000216070000000 +0.000146539000000,0.000306144000000,0.000045403000000,0.000080563000000,0.000196711000000,0.000170637000000,0.000054095000000,0.000129946000000,0.000107032000000,0.000073058000000,0.000311674000000,0.000311280000000,0.000260317000000,0.000306539000000,0.014688354000000,0.000257551000000,0.014576552000000,0.000346045000000,0.000208564000000 +0.000148119000000,0.000261106000000,0.000045403000000,0.000080959000000,0.000195131000000,0.000171822000000,0.000054094000000,0.000133107000000,0.000107033000000,0.000072267000000,0.000271378000000,0.000270983000000,0.000260316000000,0.000239378000000,0.013628800000000,0.000270983000000,0.014516898000000,0.000260711000000,0.000207773000000 +0.000186440000000,0.000329452000000,0.000048563000000,0.000079773000000,0.000231082000000,0.000180119000000,0.000055675000000,0.000132712000000,0.000108613000000,0.000069897000000,0.000270193000000,0.000270193000000,0.000293897000000,0.000265058000000,0.013662775000000,0.000259526000000,0.014663465000000,0.000353551000000,0.000206983000000 +0.000146144000000,0.000266637000000,0.000047378000000,0.000080959000000,0.000195131000000,0.000171033000000,0.000054095000000,0.000132317000000,0.000111379000000,0.000071872000000,0.000349995000000,0.000304958000000,0.000256761000000,0.000370539000000,0.014475021000000,0.000292317000000,0.014132898000000,0.000278489000000,0.000206589000000 +0.000147724000000,0.000282045000000,0.000047773000000,0.000095575000000,0.000195526000000,0.000172613000000,0.000052909000000,0.000131526000000,0.000113749000000,0.000075823000000,0.000273353000000,0.000278094000000,0.000295477000000,0.000282835000000,0.013969738000000,0.000259922000000,0.015148206000000,0.000456267000000,0.000216069000000 +0.000146934000000,0.000259921000000,0.000045403000000,0.000079774000000,0.000195921000000,0.000171032000000,0.000057255000000,0.000131921000000,0.000112168000000,0.000091625000000,0.000356711000000,0.000270588000000,0.000294686000000,0.000304563000000,0.014271959000000,0.000257551000000,0.015039169000000,0.000346439000000,0.000209354000000 +0.000180514000000,0.000259921000000,0.000086489000000,0.000080959000000,0.000229502000000,0.000171428000000,0.000089650000000,0.000131527000000,0.000109008000000,0.000071477000000,0.000259921000000,0.000351576000000,0.000257551000000,0.000268612000000,0.014057837000000,0.000294291000000,0.014729836000000,0.000263477000000,0.000208563000000 +0.000146934000000,0.000336169000000,0.000046193000000,0.000080959000000,0.000194736000000,0.000171427000000,0.000053305000000,0.000131131000000,0.000109403000000,0.000070687000000,0.000277304000000,0.000272169000000,0.000290736000000,0.000207773000000,0.013980405000000,0.000255971000000,0.015180206000000,0.000260317000000,0.000207774000000 +0.000147724000000,0.000262292000000,0.000045798000000,0.000081354000000,0.000197106000000,0.000170638000000,0.000056465000000,0.000169847000000,0.000154045000000,0.000070687000000,0.000309699000000,0.000301798000000,0.000258736000000,0.000301008000000,0.013996602000000,0.000259922000000,0.014892996000000,0.000298637000000,0.000209749000000 +0.000147724000000,0.000261502000000,0.000047774000000,0.000081749000000,0.000196711000000,0.000172218000000,0.000053304000000,0.000131922000000,0.000108218000000,0.000069897000000,0.000264663000000,0.000259132000000,0.000260712000000,0.000272563000000,0.014529935000000,0.000270983000000,0.014379022000000,0.000264662000000,0.000206588000000 +0.000165897000000,0.000261897000000,0.000045798000000,0.000117304000000,0.000195921000000,0.000171823000000,0.000054490000000,0.000131922000000,0.000107427000000,0.000072267000000,0.000260317000000,0.000311280000000,0.000255576000000,0.000265058000000,0.014502280000000,0.000260316000000,0.014487663000000,0.000306934000000,0.000206984000000 +0.000163131000000,0.000326292000000,0.000050934000000,0.000081749000000,0.000195921000000,0.000186044000000,0.000055280000000,0.000130736000000,0.000107033000000,0.000069897000000,0.000276514000000,0.000294686000000,0.000256366000000,0.000303378000000,0.014185837000000,0.000298242000000,0.014337935000000,0.000258341000000,0.000220020000000 +0.000146933000000,0.000260712000000,0.000045798000000,0.000080958000000,0.000195132000000,0.000170242000000,0.000054489000000,0.000135082000000,0.000107032000000,0.000086884000000,0.000272563000000,0.000259526000000,0.000276514000000,0.000210144000000,0.014061787000000,0.000257551000000,0.014638972000000,0.000266242000000,0.000210144000000 +0.000147329000000,0.000295082000000,0.000045798000000,0.000080959000000,0.000208959000000,0.000171428000000,0.000052909000000,0.000163921000000,0.000163131000000,0.000071477000000,0.000267823000000,0.000261107000000,0.000259526000000,0.000271774000000,0.014347416000000,0.000256761000000,0.014538231000000,0.000316020000000,0.000218045000000 +0.000147724000000,0.000261896000000,0.000114539000000,0.000081354000000,0.000196316000000,0.000172218000000,0.000102687000000,0.000130341000000,0.000108613000000,0.000071478000000,0.000276514000000,0.000328662000000,0.000261502000000,0.000284415000000,0.013553739000000,0.000292317000000,0.014363614000000,0.000262292000000,0.000217255000000 +0.000179329000000,0.000259527000000,0.000045403000000,0.000081353000000,0.000195131000000,0.000172613000000,0.000053699000000,0.000130737000000,0.000110588000000,0.000071082000000,0.000273749000000,0.000257156000000,0.000292316000000,0.000268218000000,0.014215861000000,0.000263477000000,0.014461984000000,0.000262687000000,0.000216069000000 +0.000147724000000,0.000261897000000,0.000045798000000,0.000081354000000,0.000230687000000,0.000171822000000,0.000053305000000,0.000130736000000,0.000107427000000,0.000070292000000,0.000347625000000,0.000259132000000,0.000257156000000,0.000302193000000,0.014154232000000,0.000258342000000,0.014724305000000,0.000263872000000,0.000218045000000 +0.000146538000000,0.000259921000000,0.000045403000000,0.000080958000000,0.000195921000000,0.000170637000000,0.000054095000000,0.000130341000000,0.000107427000000,0.000069897000000,0.000268612000000,0.000274933000000,0.000259922000000,0.000242144000000,0.013842923000000,0.000295477000000,0.014886280000000,0.000302193000000,0.000206983000000 +0.000147724000000,0.000282835000000,0.000048564000000,0.000081354000000,0.000194737000000,0.000171428000000,0.000055280000000,0.000146143000000,0.000146143000000,0.000071477000000,0.000311279000000,0.000260316000000,0.000305748000000,0.000225156000000,0.014501491000000,0.000257156000000,0.014372305000000,0.000263872000000,0.000217255000000 +0.000238193000000,0.000258341000000,0.000045403000000,0.000080564000000,0.000196711000000,0.000172613000000,0.000054884000000,0.000131131000000,0.000108613000000,0.000071082000000,0.000269798000000,0.000298242000000,0.000256761000000,0.000328267000000,0.014145540000000,0.000258341000000,0.014667021000000,0.000296267000000,0.000216860000000 +0.000145748000000,0.000309304000000,0.000048169000000,0.000082144000000,0.000195526000000,0.000172218000000,0.000055279000000,0.000167872000000,0.000110588000000,0.000069897000000,0.000276514000000,0.000258341000000,0.000295082000000,0.000264267000000,0.014279466000000,0.000275329000000,0.014407070000000,0.000260316000000,0.000209748000000 +0.000147724000000,0.000261502000000,0.000086884000000,0.000080959000000,0.000194736000000,0.000171823000000,0.000110983000000,0.000130736000000,0.000110983000000,0.000071872000000,0.000302193000000,0.000259922000000,0.000262292000000,0.000312860000000,0.013973689000000,0.000261502000000,0.015064453000000,0.000261106000000,0.000207378000000 +0.000146933000000,0.000296662000000,0.000047774000000,0.000079773000000,0.000196317000000,0.000171823000000,0.000171033000000,0.000166687000000,0.000107032000000,0.000069897000000,0.000276119000000,0.000532909000000,0.000258736000000,0.000316415000000,0.014045985000000,0.000489847000000,0.014362429000000,0.000263082000000,0.000208564000000 +0.000195527000000,0.000259526000000,0.000047774000000,0.000116909000000,0.000272563000000,0.000173798000000,0.000071082000000,0.000132317000000,0.000258341000000,0.000069897000000,0.000269798000000,0.000278884000000,0.000346834000000,0.000263477000000,0.014456849000000,0.000322736000000,0.014277095000000,0.000261106000000,0.000208168000000 +0.000147724000000,0.000262292000000,0.000050539000000,0.000081749000000,0.000597699000000,0.000170638000000,0.000068712000000,0.000130736000000,0.000125206000000,0.000071477000000,0.000307329000000,0.000327082000000,0.000258341000000,0.000252415000000,0.013714528000000,0.000276119000000,0.014950280000000,0.000304563000000,0.000218439000000 +0.000147724000000,0.000261107000000,0.000048168000000,0.000080959000000,0.000266242000000,0.000180909000000,0.000054095000000,0.000130341000000,0.000107033000000,0.000104662000000,0.000270588000000,0.000258341000000,0.000256365000000,0.000269403000000,0.013505936000000,0.000257946000000,0.014601045000000,0.000262292000000,0.000207378000000 +0.000147724000000,0.000261107000000,0.000045798000000,0.000081354000000,0.000195132000000,0.000171032000000,0.000053700000000,0.000133502000000,0.000147329000000,0.000071477000000,0.000280069000000,0.000270193000000,0.000258341000000,0.000255971000000,0.016127563000000,0.000351576000000,0.014312651000000,0.000308119000000,0.000208563000000 +0.000148119000000,0.000258736000000,0.000048564000000,0.000081354000000,0.000196316000000,0.000174193000000,0.000055280000000,0.000165897000000,0.000178143000000,0.000075823000000,0.000265847000000,0.000288761000000,0.000257156000000,0.000271378000000,0.014472651000000,0.000273354000000,0.014687170000000,0.000261897000000,0.000217650000000 +0.000390291000000,0.000262292000000,0.000045403000000,0.000080958000000,0.000194736000000,0.000172218000000,0.000054884000000,0.000136267000000,0.000108612000000,0.000071872000000,0.000273748000000,0.000276514000000,0.000289946000000,0.000259526000000,0.013941689000000,0.000360267000000,0.014254577000000,0.000259527000000,0.000209749000000 +0.000161946000000,0.000333798000000,0.000085700000000,0.000080564000000,0.000208959000000,0.000171823000000,0.000053699000000,0.000137847000000,0.000107427000000,0.000069897000000,0.000309699000000,0.000329057000000,0.000256366000000,0.000231081000000,0.014215070000000,0.000260712000000,0.014332010000000,0.000259526000000,0.000208959000000 +0.000180514000000,0.000262292000000,0.000045403000000,0.000140613000000,0.000196712000000,0.000171822000000,0.000054095000000,0.000132317000000,0.000108613000000,0.000069897000000,0.000317995000000,0.000263477000000,0.000259921000000,0.000354736000000,0.014361638000000,0.000257946000000,0.015137935000000,0.000261897000000,0.000207378000000 +0.000146538000000,0.000295082000000,0.000045798000000,0.000166686000000,0.000196316000000,0.000173008000000,0.000055674000000,0.000131526000000,0.000107823000000,0.000070292000000,0.000270983000000,0.000257947000000,0.000291922000000,0.000253600000000,0.014027812000000,0.000376465000000,0.014467910000000,0.000310885000000,0.000217255000000 +0.000146539000000,0.000262687000000,0.000046588000000,0.000085700000000,0.000229107000000,0.000173008000000,0.000053699000000,0.000201452000000,0.000107428000000,0.000121255000000,0.000307328000000,0.000341699000000,0.000257156000000,0.000237798000000,0.013909688000000,0.000265057000000,0.014476997000000,0.000264267000000,0.000216860000000 +0.000146934000000,0.000262687000000,0.000047773000000,0.000081354000000,0.000196317000000,0.000171428000000,0.000053305000000,0.000131131000000,0.000124020000000,0.000086095000000,0.000271773000000,0.000259921000000,0.000257551000000,0.000294292000000,0.014315416000000,0.000328662000000,0.014550873000000,0.000296662000000,0.000207378000000 +0.000146934000000,0.000278490000000,0.000045403000000,0.000080958000000,0.000197107000000,0.000172217000000,0.000053700000000,0.000129946000000,0.000111379000000,0.000070687000000,0.000302193000000,0.000259527000000,0.000292317000000,0.000265452000000,0.014319367000000,0.000256761000000,0.015075119000000,0.000261107000000,0.000207378000000 +0.000179724000000,0.000261106000000,0.000048959000000,0.000080563000000,0.000240563000000,0.000172612000000,0.000054489000000,0.000131132000000,0.000107428000000,0.000071082000000,0.000270983000000,0.000261502000000,0.000260316000000,0.000229897000000,0.014394429000000,0.000259132000000,0.014443416000000,0.000261897000000,0.000219230000000 +0.000147724000000,0.000293897000000,0.000045403000000,0.000081354000000,0.000196712000000,0.000172613000000,0.000053699000000,0.000165107000000,0.000107033000000,0.000070291000000,0.000271378000000,0.000264662000000,0.000261107000000,0.000297453000000,0.014483317000000,0.000345649000000,0.015192848000000,0.000261897000000,0.000208168000000 +0.000146934000000,0.000262292000000,0.000092415000000,0.000081749000000,0.000195131000000,0.000172218000000,0.000054489000000,0.000132712000000,0.000108613000000,0.000070687000000,0.000321551000000,0.000356316000000,0.000256365000000,0.000256761000000,0.014029392000000,0.000258341000000,0.014417342000000,0.000261897000000,0.000208168000000 +0.000146538000000,0.000355526000000,0.000047773000000,0.000080958000000,0.000195921000000,0.000171428000000,0.000053700000000,0.000131526000000,0.000158390000000,0.000070687000000,0.000271773000000,0.000273748000000,0.000256761000000,0.000299428000000,0.014100503000000,0.000293897000000,0.014811218000000,0.000296662000000,0.000338144000000 +0.000179724000000,0.000260711000000,0.000045798000000,0.000080959000000,0.000265057000000,0.000173008000000,0.000053699000000,0.000131526000000,0.000106242000000,0.000071477000000,0.000271378000000,0.000271378000000,0.000297058000000,0.000265848000000,0.016491020000000,0.000261502000000,0.014465935000000,0.000259132000000,0.000216860000000 +0.000146934000000,0.000279280000000,0.000047773000000,0.000118884000000,0.000195526000000,0.000172218000000,0.000054884000000,0.000135082000000,0.000107428000000,0.000069897000000,0.000360267000000,0.000361848000000,0.000259921000000,0.000262292000000,0.014237194000000,0.000262292000000,0.014898923000000,0.000361847000000,0.000219625000000 +0.000146539000000,0.000263082000000,0.000045798000000,0.000081748000000,0.000196317000000,0.000170242000000,0.000071082000000,0.000131131000000,0.000107033000000,0.000071873000000,0.000276514000000,0.000276119000000,0.000310489000000,0.000261502000000,0.014034922000000,0.000342094000000,0.014678873000000,0.000263872000000,0.000210539000000 +0.000146538000000,0.000264662000000,0.000045403000000,0.000081354000000,0.000194736000000,0.000170638000000,0.000055280000000,0.000135872000000,0.000108218000000,0.000071873000000,0.000285600000000,0.000314440000000,0.000295872000000,0.000240564000000,0.015218527000000,0.000257156000000,0.014800552000000,0.000293106000000,0.000207773000000 +0.000146539000000,0.000269798000000,0.000045403000000,0.000081749000000,0.000530934000000,0.000172613000000,0.000053699000000,0.000137452000000,0.000142193000000,0.000073848000000,0.000294292000000,0.000274539000000,0.000266637000000,0.000267428000000,0.014251416000000,0.000257551000000,0.015225638000000,0.000260711000000,0.000207378000000 +0.000180119000000,0.000258341000000,0.000045798000000,0.000079773000000,0.000260316000000,0.000172218000000,0.000054490000000,0.000131922000000,0.000111774000000,0.000069502000000,0.000259526000000,0.000271774000000,0.000263477000000,0.000292712000000,0.014220996000000,0.000626143000000,0.015092107000000,0.000293501000000,0.000255576000000 +0.000146144000000,0.000324317000000,0.000095576000000,0.000081749000000,0.000197897000000,0.000171428000000,0.000055675000000,0.000165502000000,0.000106637000000,0.000070687000000,0.000289551000000,0.000373700000000,0.000261502000000,0.000258342000000,0.014059417000000,0.000278489000000,0.014320552000000,0.000259131000000,0.000218045000000 +0.000146538000000,0.000260712000000,0.000045798000000,0.000081354000000,0.000196317000000,0.000171033000000,0.000053700000000,0.000130737000000,0.000107032000000,0.000072267000000,0.000269008000000,0.000276909000000,0.000258341000000,0.000227922000000,0.014295663000000,0.000256761000000,0.016190378000000,0.000261897000000,0.000216465000000 +0.000146538000000,0.000339329000000,0.000048169000000,0.000081749000000,0.000195131000000,0.000174588000000,0.000055279000000,0.000130341000000,0.000109403000000,0.000072267000000,0.000310095000000,0.000309699000000,0.000296662000000,0.000297847000000,0.014094182000000,0.000258736000000,0.014786724000000,0.000262687000000,0.000207773000000 +0.000188810000000,0.000261501000000,0.000048169000000,0.000080958000000,0.000209353000000,0.000171823000000,0.000053699000000,0.000139033000000,0.000128761000000,0.000071477000000,0.000262292000000,0.000324316000000,0.000258736000000,0.000268612000000,0.014065737000000,0.000289551000000,0.014868503000000,0.000262292000000,0.000207773000000 +0.000146144000000,0.000359081000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000223181000000,0.000053700000000,0.000130341000000,0.000107033000000,0.000073452000000,0.000257946000000,0.000269798000000,0.000258736000000,0.000262687000000,0.014191367000000,0.000257551000000,0.015330329000000,0.000343674000000,0.000206193000000 +0.000146934000000,0.000260316000000,0.000048169000000,0.000080958000000,0.000196317000000,0.000171428000000,0.000055675000000,0.000199872000000,0.000108613000000,0.000071082000000,0.000308514000000,0.000321946000000,0.000388316000000,0.000297057000000,0.013914429000000,0.000257946000000,0.014807663000000,0.000262687000000,0.000216069000000 +0.000147724000000,0.000260711000000,0.000048169000000,0.000080564000000,0.000228317000000,0.000230292000000,0.000053699000000,0.000137452000000,0.000109008000000,0.000071477000000,0.000259131000000,0.000267427000000,0.000256761000000,0.000267823000000,0.013872158000000,0.000327477000000,0.014030972000000,0.000295872000000,0.000255971000000 +0.000147329000000,0.000299823000000,0.000048169000000,0.000081749000000,0.000194341000000,0.000189206000000,0.000055280000000,0.000133897000000,0.000112959000000,0.000071082000000,0.000272958000000,0.000281650000000,0.000328268000000,0.000212119000000,0.014385737000000,0.000257551000000,0.015951761000000,0.000259922000000,0.000223970000000 +0.000193946000000,0.000301798000000,0.000063971000000,0.000083329000000,0.000196711000000,0.000170637000000,0.000054490000000,0.000132317000000,0.000107428000000,0.000070687000000,0.000302983000000,0.000260711000000,0.000266242000000,0.000297057000000,0.013873342000000,0.000257551000000,0.014175565000000,0.000283625000000,0.000231081000000 +0.000146934000000,0.000262292000000,0.000045799000000,0.000081354000000,0.000197107000000,0.000170243000000,0.000056860000000,0.000131132000000,0.000120860000000,0.000071873000000,0.000268613000000,0.000263082000000,0.000256366000000,0.000262687000000,0.014557984000000,0.000258341000000,0.014619614000000,0.000259921000000,0.000226736000000 +0.000146934000000,0.000263082000000,0.000045799000000,0.000080958000000,0.000229897000000,0.000173798000000,0.000054884000000,0.000130736000000,0.000108613000000,0.000075033000000,0.000274538000000,0.000336959000000,0.000327872000000,0.000257156000000,0.014527960000000,0.000258341000000,0.014765787000000,0.000260712000000,0.000220811000000 +0.000148119000000,0.000313255000000,0.000045798000000,0.000117305000000,0.000195527000000,0.000170638000000,0.000074242000000,0.000136267000000,0.000106637000000,0.000072267000000,0.000259527000000,0.000275328000000,0.000257946000000,0.000270193000000,0.014202429000000,0.000293897000000,0.014696255000000,0.000258737000000,0.000222786000000 +0.000193551000000,0.000258736000000,0.000048169000000,0.000081749000000,0.000196317000000,0.000172613000000,0.000053699000000,0.000133896000000,0.000110588000000,0.000070687000000,0.000275724000000,0.000338934000000,0.000255576000000,0.000244909000000,0.013875318000000,0.000262687000000,0.013974874000000,0.000260316000000,0.000242144000000 +0.000146539000000,0.000308119000000,0.000052119000000,0.000080959000000,0.000215280000000,0.000172218000000,0.000055280000000,0.000130736000000,0.000106638000000,0.000069502000000,0.000306144000000,0.000270984000000,0.000258341000000,0.000244119000000,0.014207565000000,0.000262292000000,0.016900699000000,0.000294686000000,0.000224365000000 +0.000148119000000,0.000263082000000,0.000065551000000,0.000117699000000,0.000196317000000,0.000181304000000,0.000053304000000,0.000131922000000,0.000153254000000,0.000069897000000,0.000269403000000,0.000276119000000,0.000257551000000,0.000355131000000,0.013900997000000,0.000295082000000,0.015261983000000,0.000261106000000,0.000222390000000 +0.000147329000000,0.000314835000000,0.000081749000000,0.000080958000000,0.000195922000000,0.000171823000000,0.000054490000000,0.000132317000000,0.000108613000000,0.000071082000000,0.000271378000000,0.000549106000000,0.000321156000000,0.000268217000000,0.014473836000000,0.000373699000000,0.014554429000000,0.000279279000000,0.000228712000000 +0.000146934000000,0.000265453000000,0.000045403000000,0.000081354000000,0.000197107000000,0.000170638000000,0.000053700000000,0.000131131000000,0.000108613000000,0.000073453000000,0.000295082000000,0.000292316000000,0.000261502000000,0.000295082000000,0.014096158000000,0.000492613000000,0.015626625000000,0.000266242000000,0.000230292000000 +0.000159576000000,0.000259922000000,0.000048168000000,0.000082144000000,0.000278490000000,0.000171032000000,0.000057255000000,0.000131131000000,0.000110193000000,0.000069501000000,0.000267427000000,0.000297452000000,0.000257946000000,0.000237798000000,0.014960947000000,0.000307724000000,0.015006379000000,0.000264662000000,0.000231872000000 +0.000146934000000,0.000262292000000,0.000045798000000,0.000082144000000,0.000196712000000,0.000173008000000,0.000054094000000,0.000199872000000,0.000110589000000,0.000104268000000,0.000268217000000,0.000260711000000,0.000302983000000,0.000226736000000,0.014411812000000,0.000356711000000,0.014591565000000,0.000261107000000,0.000236613000000 +0.000146933000000,0.000280465000000,0.000048168000000,0.000080563000000,0.000218835000000,0.000170638000000,0.000089650000000,0.000131921000000,0.000140218000000,0.000085305000000,0.000303378000000,0.000263082000000,0.000257156000000,0.000299823000000,0.013961046000000,0.000273749000000,0.014817540000000,0.000261502000000,0.000469304000000 +0.000147724000000,0.000591773000000,0.000045403000000,0.000082934000000,0.000217650000000,0.000172218000000,0.000054095000000,0.000131922000000,0.000107823000000,0.000069897000000,0.000294687000000,0.000259921000000,0.000261502000000,0.000266242000000,0.014194133000000,0.000278094000000,0.014659514000000,0.000291922000000,0.000248069000000 +0.000180909000000,0.000293107000000,0.000046589000000,0.000082144000000,0.000210144000000,0.000170638000000,0.000053700000000,0.000131527000000,0.000108613000000,0.000071477000000,0.000288365000000,0.000259921000000,0.000272564000000,0.000261896000000,0.013782478000000,0.000276119000000,0.014630280000000,0.000263477000000,0.000214884000000 +0.000147329000000,0.000262292000000,0.000048169000000,0.000080959000000,0.000208563000000,0.000174588000000,0.000056860000000,0.000131922000000,0.000107428000000,0.000069502000000,0.000283230000000,0.000300217000000,0.000261896000000,0.000244119000000,0.014195713000000,0.000281254000000,0.016833933000000,0.000293896000000,0.000232267000000 +0.000146143000000,0.000264663000000,0.000045798000000,0.000080958000000,0.000207773000000,0.000173008000000,0.000056070000000,0.000131131000000,0.000108218000000,0.000069896000000,0.000270983000000,0.000257551000000,0.000291527000000,0.000265847000000,0.014243120000000,0.000321156000000,0.014445787000000,0.000259527000000,0.000223971000000 +0.000146143000000,0.000263082000000,0.000045798000000,0.000080564000000,0.000208169000000,0.000172218000000,0.000054885000000,0.000132712000000,0.000141008000000,0.000071477000000,0.000395033000000,0.000259922000000,0.000257551000000,0.000249650000000,0.014441046000000,0.000274144000000,0.014204009000000,0.000267823000000,0.000231082000000 +0.000145748000000,0.000270983000000,0.000046588000000,0.000081353000000,0.000206984000000,0.000170243000000,0.000055279000000,0.000131922000000,0.000107033000000,0.000139033000000,0.000269798000000,0.000313649000000,0.000255576000000,0.000266637000000,0.014017540000000,0.000271378000000,0.014196503000000,0.000260711000000,0.000221205000000 +0.000166292000000,0.000310489000000,0.000048169000000,0.000081354000000,0.000206983000000,0.000172613000000,0.000109008000000,0.000131921000000,0.000108613000000,0.000069896000000,0.000278489000000,0.000260316000000,0.000324711000000,0.000266242000000,0.013984355000000,0.000273749000000,0.014622379000000,0.000261896000000,0.000222390000000 +0.000147329000000,0.000262292000000,0.000045798000000,0.000105847000000,0.000206983000000,0.000170638000000,0.000053304000000,0.000173403000000,0.000107427000000,0.000069896000000,0.000297057000000,0.000270193000000,0.000256366000000,0.000319180000000,0.013908503000000,0.000277304000000,0.015177046000000,0.000294687000000,0.000225156000000 +0.000146934000000,0.000336959000000,0.000048169000000,0.000080959000000,0.000207773000000,0.000170638000000,0.000053700000000,0.000131922000000,0.000108613000000,0.000073058000000,0.000275329000000,0.000340909000000,0.000256761000000,0.000266243000000,0.014297639000000,0.000278094000000,0.014441441000000,0.000261501000000,0.000224761000000 +0.000145748000000,0.000266242000000,0.000046983000000,0.000081748000000,0.000207774000000,0.000171823000000,0.000053699000000,0.000131132000000,0.000108218000000,0.000071872000000,0.000353551000000,0.000270193000000,0.000264663000000,0.000228712000000,0.014542971000000,0.000274539000000,0.014693490000000,0.000346440000000,0.000233058000000 +0.000179329000000,0.000262687000000,0.000047774000000,0.000080564000000,0.000207773000000,0.000174588000000,0.000055280000000,0.000131526000000,0.000199872000000,0.000069896000000,0.000331822000000,0.000273354000000,0.000256761000000,0.000304959000000,0.014201243000000,0.000287180000000,0.014490033000000,0.000261897000000,0.000220811000000 +0.000146934000000,0.000260712000000,0.000045798000000,0.000080959000000,0.000209354000000,0.000172613000000,0.000055280000000,0.000131526000000,0.000109008000000,0.000071477000000,0.000269403000000,0.000291131000000,0.000436909000000,0.000269403000000,0.014143170000000,0.000272563000000,0.014302380000000,0.000280465000000,0.000217650000000 +0.000148119000000,0.000262292000000,0.000048168000000,0.000079773000000,0.000209353000000,0.000170637000000,0.000054095000000,0.000165502000000,0.000110193000000,0.000083329000000,0.000274539000000,0.000270193000000,0.000393452000000,0.000255181000000,0.014793835000000,0.000283230000000,0.015317292000000,0.000260316000000,0.000218045000000 +0.000148119000000,0.000304958000000,0.000045798000000,0.000080958000000,0.000208564000000,0.000170638000000,0.000074637000000,0.000130342000000,0.000107823000000,0.000071082000000,0.000267428000000,0.000309304000000,0.000306934000000,0.000550292000000,0.014384158000000,0.000278884000000,0.014793046000000,0.000264662000000,0.000209354000000 +0.000180910000000,0.000261502000000,0.000045798000000,0.000081748000000,0.000207774000000,0.000172613000000,0.000056465000000,0.000130341000000,0.000106638000000,0.000071082000000,0.000361057000000,0.000285996000000,0.000257551000000,0.000268613000000,0.013975269000000,0.000276119000000,0.014629490000000,0.000260317000000,0.000271378000000 +0.000147329000000,0.000293896000000,0.000047773000000,0.000081354000000,0.000206588000000,0.000172217000000,0.000056465000000,0.000130736000000,0.000141008000000,0.000070291000000,0.000268217000000,0.000273354000000,0.000296662000000,0.000269403000000,0.013955120000000,0.000272958000000,0.015169145000000,0.000261897000000,0.000218440000000 +0.000147329000000,0.000261897000000,0.000046193000000,0.000081748000000,0.000207774000000,0.000171032000000,0.000055280000000,0.000196712000000,0.000108218000000,0.000069502000000,0.000257551000000,0.000267032000000,0.000258341000000,0.000265847000000,0.014360849000000,0.000341304000000,0.014702576000000,0.000322341000000,0.000209354000000 +0.000146144000000,0.000295477000000,0.000048168000000,0.000080563000000,0.000208958000000,0.000171033000000,0.000054095000000,0.000131132000000,0.000110588000000,0.000071477000000,0.000283230000000,0.000272564000000,0.000258737000000,0.000251625000000,0.014062972000000,0.000278094000000,0.014569836000000,0.000259132000000,0.000208564000000 +0.000147724000000,0.000268613000000,0.000046193000000,0.000082144000000,0.000243724000000,0.000174588000000,0.000053304000000,0.000133107000000,0.000109008000000,0.000071477000000,0.000272564000000,0.000302983000000,0.000345255000000,0.000276909000000,0.013904948000000,0.000273353000000,0.014477392000000,0.000293897000000,0.000206588000000 +0.000160761000000,0.000262686000000,0.000059625000000,0.000082144000000,0.000207773000000,0.000170243000000,0.000053699000000,0.000133502000000,0.000108613000000,0.000135082000000,0.000309304000000,0.000266637000000,0.000258341000000,0.000275724000000,0.014922626000000,0.000272564000000,0.014714034000000,0.000261107000000,0.000207378000000 +0.000147724000000,0.000260712000000,0.000048168000000,0.000082934000000,0.000205798000000,0.000171033000000,0.000054884000000,0.000130736000000,0.000125996000000,0.000073057000000,0.000276514000000,0.000269798000000,0.000278884000000,0.000336168000000,0.014260503000000,0.000270983000000,0.014417738000000,0.000263872000000,0.000207378000000 +0.000147329000000,0.000261107000000,0.000045798000000,0.000080958000000,0.000216465000000,0.000171823000000,0.000054094000000,0.000164316000000,0.000120070000000,0.000070687000000,0.000269797000000,0.000335378000000,0.000259131000000,0.000231082000000,0.014217441000000,0.000276514000000,0.015252503000000,0.000279280000000,0.000206983000000 +0.000147329000000,0.000329452000000,0.000048168000000,0.000081354000000,0.000207773000000,0.000170638000000,0.000054885000000,0.000136267000000,0.000107033000000,0.000072267000000,0.000341304000000,0.000274538000000,0.000259132000000,0.000243328000000,0.014104849000000,0.000274144000000,0.015211021000000,0.000261106000000,0.000217255000000 +0.000180119000000,0.000261501000000,0.000045403000000,0.000081354000000,0.000208564000000,0.000171428000000,0.000055675000000,0.000130736000000,0.000109008000000,0.000071477000000,0.000272959000000,0.000306144000000,0.000259526000000,0.000333798000000,0.014080355000000,0.000273354000000,0.014421293000000,0.000261106000000,0.000218835000000 +0.000148119000000,0.000310094000000,0.000047774000000,0.000082538000000,0.000206193000000,0.000172613000000,0.000054885000000,0.000131131000000,0.000107822000000,0.000071872000000,0.000320761000000,0.000270983000000,0.000256366000000,0.000283625000000,0.014010034000000,0.000293502000000,0.014121441000000,0.000261502000000,0.000241353000000 +0.000147724000000,0.000263082000000,0.000045798000000,0.000081353000000,0.000207774000000,0.000173403000000,0.000053304000000,0.000132317000000,0.000107032000000,0.000070292000000,0.000289946000000,0.000274144000000,0.000295872000000,0.000280860000000,0.014004108000000,0.000259132000000,0.014313441000000,0.000324316000000,0.000216859000000 +0.000145749000000,0.000295082000000,0.000045403000000,0.000083724000000,0.000207379000000,0.000173798000000,0.000055280000000,0.000164317000000,0.000110193000000,0.000069896000000,0.000272959000000,0.000309304000000,0.000259131000000,0.000271378000000,0.014126973000000,0.000258341000000,0.014361243000000,0.000262291000000,0.000232267000000 +0.000147329000000,0.000262687000000,0.000045798000000,0.000082144000000,0.000206983000000,0.000208169000000,0.000054885000000,0.000131527000000,0.000108613000000,0.000071477000000,0.000343675000000,0.000268218000000,0.000261501000000,0.000248859000000,0.013701886000000,0.000258736000000,0.014781984000000,0.000747822000000,0.000223971000000 +0.000178143000000,0.000278884000000,0.000045798000000,0.000079773000000,0.000207773000000,0.000170637000000,0.000123230000000,0.000130341000000,0.000108613000000,0.000073452000000,0.000268613000000,0.000259131000000,0.000294687000000,0.000252415000000,0.014185047000000,0.000256366000000,0.014820700000000,0.000373304000000,0.000226341000000 +0.000147724000000,0.000266637000000,0.000045798000000,0.000081354000000,0.000208168000000,0.000169848000000,0.000054489000000,0.000130737000000,0.000108613000000,0.000070292000000,0.000275329000000,0.000357501000000,0.000261897000000,0.000308119000000,0.014895761000000,0.000378835000000,0.014294873000000,0.000265452000000,0.000229896000000 +0.000145749000000,0.000266242000000,0.000045008000000,0.000080958000000,0.000208564000000,0.000170242000000,0.000053700000000,0.000131921000000,0.000107427000000,0.000070292000000,0.000269403000000,0.000266637000000,0.000257551000000,0.000270984000000,0.014772898000000,0.000683822000000,0.014766182000000,0.000280464000000,0.000243724000000 +0.000146934000000,0.000294291000000,0.000045798000000,0.000081749000000,0.000206983000000,0.000174983000000,0.000054095000000,0.000301402000000,0.000183675000000,0.000071477000000,0.000274934000000,0.000301008000000,0.000330637000000,0.000312464000000,0.014458428000000,0.000307724000000,0.015231959000000,0.000265452000000,0.000207379000000 +0.000178933000000,0.000263872000000,0.000045798000000,0.000082144000000,0.000208564000000,0.000170638000000,0.000054094000000,0.000278094000000,0.000107032000000,0.000069502000000,0.000345650000000,0.000270193000000,0.000257156000000,0.000212119000000,0.014108799000000,0.000277304000000,0.014571811000000,0.000262687000000,0.000206983000000 +0.000148120000000,0.000301403000000,0.000048168000000,0.000082144000000,0.000218835000000,0.000171428000000,0.000054489000000,0.000181304000000,0.000107428000000,0.000071477000000,0.000274539000000,0.000268613000000,0.000258341000000,0.000270193000000,0.014045985000000,0.000287971000000,0.014213886000000,0.000261897000000,0.000207378000000 +0.000146143000000,0.000260317000000,0.000080563000000,0.000081354000000,0.000241748000000,0.000171822000000,0.000056465000000,0.000132711000000,0.000107033000000,0.000070292000000,0.000258342000000,0.000303378000000,0.000257947000000,0.000334983000000,0.014347812000000,0.000275724000000,0.015255268000000,0.000259527000000,0.000218440000000 +0.000146539000000,0.000262292000000,0.000045798000000,0.000080168000000,0.000265452000000,0.000172218000000,0.000052909000000,0.000129947000000,0.000107428000000,0.000069502000000,0.000261897000000,0.000266638000000,0.000260317000000,0.000259132000000,0.014351367000000,0.000333798000000,0.014145935000000,0.000297057000000,0.000207379000000 +0.000146934000000,0.000258342000000,0.000045798000000,0.000080959000000,0.000195921000000,0.000171427000000,0.000067132000000,0.000132317000000,0.000126786000000,0.000069897000000,0.000271378000000,0.000272563000000,0.000301798000000,0.000272959000000,0.013950775000000,0.000271378000000,0.014026627000000,0.000261107000000,0.000216860000000 +0.000178934000000,0.000261897000000,0.000048564000000,0.000080564000000,0.000195921000000,0.000171823000000,0.000054489000000,0.000131921000000,0.000110983000000,0.000071477000000,0.000336563000000,0.000273749000000,0.000257552000000,0.000291527000000,0.013943269000000,0.000280859000000,0.015377736000000,0.000394243000000,0.000242144000000 +0.000147329000000,0.000293106000000,0.000047774000000,0.000081354000000,0.000251626000000,0.000186045000000,0.000053699000000,0.000215279000000,0.000111774000000,0.000069897000000,0.000271378000000,0.000272564000000,0.000258737000000,0.000238983000000,0.013667121000000,0.000319971000000,0.014632651000000,0.000260317000000,0.000208959000000 +0.000148119000000,0.000261106000000,0.000045798000000,0.000082934000000,0.000269008000000,0.000171823000000,0.000053699000000,0.000131922000000,0.000108613000000,0.000088069000000,0.000269798000000,0.000306144000000,0.000293501000000,0.000263872000000,0.014764996000000,0.000261501000000,0.014168453000000,0.000312070000000,0.000207773000000 +0.000146538000000,0.000296662000000,0.000048564000000,0.000082144000000,0.000196317000000,0.000171032000000,0.000054094000000,0.000130736000000,0.000107428000000,0.000069897000000,0.000301402000000,0.000270983000000,0.000257551000000,0.000280464000000,0.013625639000000,0.000306539000000,0.015405786000000,0.000259921000000,0.000208958000000 +0.000188020000000,0.000267033000000,0.000066341000000,0.000081749000000,0.000229107000000,0.000171823000000,0.000054095000000,0.000131527000000,0.000108218000000,0.000070687000000,0.000276119000000,0.000271773000000,0.000261897000000,0.000260316000000,0.013945244000000,0.000260711000000,0.014589984000000,0.000295477000000,0.000208563000000 +0.000146144000000,0.000261501000000,0.000045798000000,0.000080958000000,0.000194736000000,0.000172218000000,0.000056465000000,0.000130736000000,0.000159180000000,0.000070292000000,0.000275724000000,0.000319181000000,0.000259921000000,0.000290341000000,0.014769737000000,0.000286391000000,0.014535861000000,0.000263872000000,0.000209749000000 +0.000147328000000,0.000275329000000,0.000046193000000,0.000082144000000,0.000194342000000,0.000170637000000,0.000085699000000,0.000135872000000,0.000108218000000,0.000071477000000,0.000654588000000,0.000269403000000,0.000257551000000,0.000231477000000,0.015176256000000,0.000345650000000,0.014392848000000,0.000299032000000,0.000216465000000 +0.000147329000000,0.000267428000000,0.000045403000000,0.000080958000000,0.000195131000000,0.000171822000000,0.000073848000000,0.000133106000000,0.000110983000000,0.000069896000000,0.000317205000000,0.000283625000000,0.000291131000000,0.000279279000000,0.014756305000000,0.000259921000000,0.015129243000000,0.000263477000000,0.000211329000000 +0.000147329000000,0.000408070000000,0.000045403000000,0.000081353000000,0.000196712000000,0.000172613000000,0.000068316000000,0.000131921000000,0.000116119000000,0.000071872000000,0.000272563000000,0.000268613000000,0.000307329000000,0.000350785000000,0.014784355000000,0.000340909000000,0.014202429000000,0.000263081000000,0.000207773000000 +0.000147329000000,0.000262291000000,0.000047774000000,0.000081748000000,0.000194341000000,0.000173798000000,0.000053304000000,0.000130341000000,0.000129551000000,0.000073848000000,0.000269403000000,0.000261107000000,0.000260316000000,0.000265847000000,0.015518773000000,0.000257946000000,0.014299614000000,0.000262686000000,0.000218045000000 +0.000146143000000,0.000302983000000,0.000045798000000,0.000081354000000,0.000194737000000,0.000171428000000,0.000055280000000,0.000201058000000,0.000109008000000,0.000228711000000,0.000299033000000,0.000334588000000,0.000291131000000,0.000245699000000,0.014257343000000,0.000270983000000,0.015695761000000,0.000261896000000,0.000218044000000 +0.000146934000000,0.000263477000000,0.000045798000000,0.000080958000000,0.000230687000000,0.000171823000000,0.000057255000000,0.000131922000000,0.000107428000000,0.000088860000000,0.000259131000000,0.000410834000000,0.000256760000000,0.000296663000000,0.014730231000000,0.000274538000000,0.014963317000000,0.000300613000000,0.000209748000000 +0.000147724000000,0.000295477000000,0.000088465000000,0.000080959000000,0.000196317000000,0.000169847000000,0.000054885000000,0.000129946000000,0.000107427000000,0.000069897000000,0.000261106000000,0.000302588000000,0.000291526000000,0.000231476000000,0.014237590000000,0.000277304000000,0.014468306000000,0.000259921000000,0.000214094000000 +0.000246489000000,0.000260317000000,0.000045403000000,0.000080958000000,0.000195131000000,0.000170243000000,0.000054094000000,0.000131131000000,0.000109007000000,0.000114539000000,0.000360267000000,0.000269798000000,0.000257947000000,0.000268612000000,0.013726380000000,0.000275328000000,0.014670972000000,0.000261502000000,0.000216070000000 +0.000165897000000,0.000263872000000,0.000048168000000,0.000080169000000,0.000196712000000,0.000171822000000,0.000056070000000,0.000131526000000,0.000108612000000,0.000071477000000,0.000272563000000,0.000269403000000,0.000261106000000,0.000267428000000,0.014263269000000,0.000277699000000,0.014492799000000,0.000261896000000,0.000214095000000 +0.000147329000000,0.000259921000000,0.000045798000000,0.000103477000000,0.000228712000000,0.000170638000000,0.000053305000000,0.000131921000000,0.000174983000000,0.000073058000000,0.000289155000000,0.000314835000000,0.000408860000000,0.000242143000000,0.014631071000000,0.000277304000000,0.014451317000000,0.000259131000000,0.000207774000000 +0.000146934000000,0.000263082000000,0.000045008000000,0.000081749000000,0.000196317000000,0.000170243000000,0.000053699000000,0.000131921000000,0.000107033000000,0.000071872000000,0.000275724000000,0.000281255000000,0.000270193000000,0.000263872000000,0.013906528000000,0.000278489000000,0.015046280000000,0.000263082000000,0.000208959000000 +0.000180119000000,0.000308514000000,0.000045798000000,0.000081353000000,0.000195131000000,0.000171823000000,0.000053700000000,0.000131922000000,0.000107427000000,0.000070292000000,0.000257946000000,0.000271378000000,0.000292711000000,0.000259922000000,0.013839367000000,0.000275329000000,0.014134479000000,0.000264662000000,0.000208958000000 +0.000145748000000,0.000263872000000,0.000048168000000,0.000080958000000,0.000215280000000,0.000215674000000,0.000053304000000,0.000131922000000,0.000107428000000,0.000071872000000,0.000306538000000,0.000303773000000,0.000262686000000,0.000228712000000,0.014021491000000,0.000274538000000,0.014488453000000,0.000274934000000,0.000207378000000 +0.000163526000000,0.000309699000000,0.000045008000000,0.000080959000000,0.000194341000000,0.000171032000000,0.000054094000000,0.000152070000000,0.000108613000000,0.000071477000000,0.000267033000000,0.000268613000000,0.000257156000000,0.000325106000000,0.014244700000000,0.000275329000000,0.014609342000000,0.000263082000000,0.000210144000000 +0.000147329000000,0.000261106000000,0.000119674000000,0.000080564000000,0.000194736000000,0.000172218000000,0.000069501000000,0.000130342000000,0.000141403000000,0.000139823000000,0.000270193000000,0.000272958000000,0.000293107000000,0.000355131000000,0.014207169000000,0.000272168000000,0.014517293000000,0.000295872000000,0.000217649000000 +0.000146934000000,0.000260316000000,0.000062786000000,0.000080959000000,0.000196317000000,0.000170242000000,0.000053304000000,0.000134292000000,0.000108218000000,0.000072662000000,0.000322341000000,0.000274933000000,0.000260711000000,0.000293896000000,0.014305145000000,0.000361452000000,0.014377046000000,0.000260711000000,0.000208958000000 +0.000147724000000,0.000280070000000,0.000045798000000,0.000082144000000,0.000231872000000,0.000172218000000,0.000054094000000,0.000131527000000,0.000107822000000,0.000069502000000,0.000274538000000,0.000272958000000,0.000263477000000,0.000257551000000,0.013597590000000,0.000478390000000,0.014361244000000,0.000260316000000,0.000259921000000 +0.000146934000000,0.000259526000000,0.000045798000000,0.000081353000000,0.000195921000000,0.000172218000000,0.000053699000000,0.000131921000000,0.000108612000000,0.000069897000000,0.000270588000000,0.000302983000000,0.000295082000000,0.000225946000000,0.014047564000000,0.000308119000000,0.017708994000000,0.000263082000000,0.000220020000000 +0.000146934000000,0.000266242000000,0.000048563000000,0.000080959000000,0.000194342000000,0.000171033000000,0.000053699000000,0.000164316000000,0.000107033000000,0.000073057000000,0.000261896000000,0.000289156000000,0.000260316000000,0.000297057000000,0.013963416000000,0.000273353000000,0.016279267000000,0.000259526000000,0.000219230000000 +0.000146934000000,0.000260711000000,0.000045798000000,0.000080169000000,0.000196316000000,0.000173403000000,0.000053699000000,0.000131921000000,0.000111378000000,0.000070687000000,0.000264267000000,0.000271774000000,0.000263082000000,0.000241354000000,0.014407861000000,0.000308909000000,0.015413292000000,0.000306144000000,0.000217650000000 +0.000179724000000,0.000294686000000,0.000113354000000,0.000080169000000,0.000210539000000,0.000170242000000,0.000055279000000,0.000131921000000,0.000122440000000,0.000070687000000,0.000342490000000,0.000309699000000,0.000258736000000,0.000255971000000,0.013683318000000,0.000273354000000,0.014255367000000,0.000264268000000,0.000208959000000 +0.000147329000000,0.000261502000000,0.000045403000000,0.000081354000000,0.000196316000000,0.000171033000000,0.000053305000000,0.000130736000000,0.000108613000000,0.000090045000000,0.000270588000000,0.000274143000000,0.000260317000000,0.000297847000000,0.013842133000000,0.000307724000000,0.014207564000000,0.000327872000000,0.000334193000000 +0.000147329000000,0.000293502000000,0.000047773000000,0.000082934000000,0.000196316000000,0.000171823000000,0.000055675000000,0.000134292000000,0.000109798000000,0.000071478000000,0.000274539000000,0.000298637000000,0.000293501000000,0.000262292000000,0.014403120000000,0.000275724000000,0.015366675000000,0.000260317000000,0.000207379000000 +0.000146934000000,0.000259526000000,0.000045798000000,0.000080959000000,0.000242144000000,0.000233847000000,0.000054490000000,0.000214884000000,0.000108218000000,0.000070687000000,0.000385551000000,0.000269403000000,0.000255971000000,0.000279675000000,0.014482527000000,0.000331428000000,0.015038774000000,0.000296267000000,0.000207378000000 +0.000167477000000,0.000260316000000,0.000045798000000,0.000081353000000,0.000195132000000,0.000342490000000,0.000054094000000,0.000130737000000,0.000109799000000,0.000070292000000,0.000278094000000,0.000267427000000,0.000261896000000,0.000330638000000,0.013657639000000,0.000271773000000,0.014574182000000,0.000261896000000,0.000210144000000 +0.000146933000000,0.000262687000000,0.000048169000000,0.000081354000000,0.000195526000000,0.000185649000000,0.000054490000000,0.000133897000000,0.000121255000000,0.000071477000000,0.000322736000000,0.000304958000000,0.000293897000000,0.000266242000000,0.014287367000000,0.000274144000000,0.014588404000000,0.000264662000000,0.000206983000000 +0.000145748000000,0.000263477000000,0.000045798000000,0.000080958000000,0.000194341000000,0.000173008000000,0.000056860000000,0.000131526000000,0.000108613000000,0.000073847000000,0.000278094000000,0.000276514000000,0.000257551000000,0.000259921000000,0.013904552000000,0.000308909000000,0.015129243000000,0.000258736000000,0.000208168000000 +0.000148119000000,0.000293897000000,0.000045403000000,0.000081354000000,0.000230292000000,0.000171823000000,0.000054490000000,0.000149304000000,0.000109798000000,0.000084909000000,0.000277304000000,0.000280069000000,0.000258342000000,0.000273748000000,0.014223367000000,0.000272958000000,0.014397589000000,0.000262292000000,0.000217254000000 +0.000146934000000,0.000262687000000,0.000047773000000,0.000081748000000,0.000195921000000,0.000171032000000,0.000053304000000,0.000132317000000,0.000107823000000,0.000071477000000,0.000307328000000,0.000301798000000,0.000274934000000,0.000257156000000,0.014819120000000,0.000273353000000,0.014917095000000,0.000312860000000,0.000218044000000 +0.000181304000000,0.000333798000000,0.000047774000000,0.000083328000000,0.000198687000000,0.000172218000000,0.000073847000000,0.000131527000000,0.000107427000000,0.000070687000000,0.000270588000000,0.000275724000000,0.000258341000000,0.000244119000000,0.014004898000000,0.000308119000000,0.014858626000000,0.000326687000000,0.000208563000000 +0.000146539000000,0.000259922000000,0.000045403000000,0.000081354000000,0.000196712000000,0.000206588000000,0.000053699000000,0.000131527000000,0.000189996000000,0.000069897000000,0.000270193000000,0.000274934000000,0.000294687000000,0.000260712000000,0.013788405000000,0.000279279000000,0.014515318000000,0.000295477000000,0.000208168000000 +0.000147329000000,0.000300613000000,0.000047774000000,0.000081749000000,0.000211329000000,0.000171823000000,0.000054490000000,0.000130736000000,0.000107428000000,0.000070292000000,0.000301798000000,0.000308909000000,0.000260711000000,0.000265057000000,0.014300009000000,0.000276119000000,0.014320552000000,0.000259921000000,0.000209749000000 +0.000147329000000,0.000260317000000,0.000045799000000,0.000082539000000,0.000196316000000,0.000172613000000,0.000053699000000,0.000231872000000,0.000107428000000,0.000071873000000,0.000274933000000,0.000271774000000,0.000257551000000,0.000295872000000,0.014272355000000,0.000279279000000,0.014608157000000,0.000262291000000,0.000218045000000 +0.000167477000000,0.000260317000000,0.000047774000000,0.000080958000000,0.000194342000000,0.000171033000000,0.000053699000000,0.000205403000000,0.000107032000000,0.000104662000000,0.000306144000000,0.000306934000000,0.000304563000000,0.000274934000000,0.013917590000000,0.000276909000000,0.014349787000000,0.000262292000000,0.000206588000000 +0.000146934000000,0.000260712000000,0.000045798000000,0.000116514000000,0.000229897000000,0.000208564000000,0.000054885000000,0.000130737000000,0.000109403000000,0.000069897000000,0.000259131000000,0.000270193000000,0.000258341000000,0.000213700000000,0.013600355000000,0.000356316000000,0.015145045000000,0.000259922000000,0.000287576000000 +0.000147724000000,0.000260712000000,0.000062785000000,0.000081748000000,0.000195922000000,0.000171823000000,0.000053699000000,0.000234242000000,0.000120859000000,0.000069897000000,0.000272959000000,0.000281649000000,0.000257156000000,0.000294291000000,0.014341491000000,0.000273749000000,0.014601836000000,0.000295477000000,0.000217254000000 +0.000146934000000,0.000296267000000,0.000052909000000,0.000080168000000,0.000195131000000,0.000172218000000,0.000053699000000,0.000130341000000,0.000106637000000,0.000073848000000,0.000352366000000,0.000292317000000,0.000331033000000,0.000267823000000,0.013803022000000,0.000271378000000,0.014498725000000,0.000263082000000,0.000206983000000 +0.000145749000000,0.000259131000000,0.000045798000000,0.000080959000000,0.000275724000000,0.000171427000000,0.000087280000000,0.000130736000000,0.000110589000000,0.000071082000000,0.000261106000000,0.000268218000000,0.000310884000000,0.000259922000000,0.014000158000000,0.000280070000000,0.014361243000000,0.000294292000000,0.000206983000000 +0.000174193000000,0.000306934000000,0.000048169000000,0.000081353000000,0.000196317000000,0.000206983000000,0.000056070000000,0.000133897000000,0.000107428000000,0.000071872000000,0.000270983000000,0.000261501000000,0.000330243000000,0.000296662000000,0.014554428000000,0.000273749000000,0.014901293000000,0.000259526000000,0.000208958000000 +0.000147724000000,0.000259921000000,0.000045403000000,0.000081354000000,0.000196316000000,0.000171428000000,0.000054094000000,0.000130736000000,0.000107822000000,0.000069897000000,0.000270588000000,0.000272959000000,0.000261106000000,0.000247279000000,0.014614478000000,0.000316810000000,0.014122626000000,0.000282044000000,0.000216464000000 +0.000146539000000,0.000259921000000,0.000045798000000,0.000082143000000,0.000195921000000,0.000172218000000,0.000055279000000,0.000239773000000,0.000178143000000,0.000105057000000,0.000271773000000,0.000272168000000,0.000259527000000,0.000233847000000,0.013999763000000,0.000272959000000,0.014457244000000,0.000259921000000,0.000215674000000 +0.000146539000000,0.000264267000000,0.000045798000000,0.000081354000000,0.000230291000000,0.000170637000000,0.000054489000000,0.000206193000000,0.000107032000000,0.000071082000000,0.000319180000000,0.000319971000000,0.000306539000000,0.000353551000000,0.014087071000000,0.000277304000000,0.015578033000000,0.000260712000000,0.000208958000000 +0.000193551000000,0.000259921000000,0.000045798000000,0.000082934000000,0.000194341000000,0.000174588000000,0.000053699000000,0.000131922000000,0.000109798000000,0.000069897000000,0.000272564000000,0.000271378000000,0.000258736000000,0.000265848000000,0.014285392000000,0.000272564000000,0.014582873000000,0.000308514000000,0.000207378000000 +0.000147329000000,0.000294292000000,0.000048563000000,0.000080959000000,0.000194737000000,0.000172613000000,0.000056070000000,0.000150489000000,0.000109403000000,0.000072267000000,0.000281650000000,0.000268613000000,0.000276119000000,0.000299823000000,0.013784059000000,0.000273749000000,0.014176750000000,0.000259131000000,0.000210539000000 +0.000146934000000,0.000263082000000,0.000046193000000,0.000081353000000,0.000219230000000,0.000171428000000,0.000054094000000,0.000130736000000,0.000107428000000,0.000071083000000,0.000260317000000,0.000351576000000,0.000256366000000,0.000244119000000,0.014425639000000,0.000309699000000,0.015139120000000,0.000372909000000,0.000219625000000 +0.000146934000000,0.000310094000000,0.000064366000000,0.000081353000000,0.000195921000000,0.000171428000000,0.000055675000000,0.000152069000000,0.000128761000000,0.000070687000000,0.000263477000000,0.000257552000000,0.000257156000000,0.000260317000000,0.014123417000000,0.000277305000000,0.014638577000000,0.000272168000000,0.000218440000000 +0.000145748000000,0.000278094000000,0.000050934000000,0.000080959000000,0.000195921000000,0.000294687000000,0.000056465000000,0.000140218000000,0.000108613000000,0.000070292000000,0.000381996000000,0.000280860000000,0.000291921000000,0.000269798000000,0.014579317000000,0.000274934000000,0.014467120000000,0.000295477000000,0.000209353000000 +0.000146934000000,0.000298638000000,0.000048563000000,0.000081749000000,0.000194737000000,0.000189996000000,0.000053305000000,0.000138637000000,0.000107822000000,0.000103477000000,0.000343280000000,0.000259921000000,0.000255576000000,0.000260317000000,0.013709787000000,0.000274539000000,0.015190477000000,0.000258341000000,0.000207773000000 +0.000148119000000,0.000280465000000,0.000048564000000,0.000081749000000,0.000229502000000,0.000198687000000,0.000055279000000,0.000140612000000,0.000109798000000,0.000070687000000,0.000316415000000,0.000276119000000,0.000258341000000,0.000261107000000,0.014684403000000,0.000275329000000,0.014480157000000,0.000262292000000,0.000217650000000 +0.000147724000000,0.000318390000000,0.000062391000000,0.000119279000000,0.000197501000000,0.000170637000000,0.000055674000000,0.000138242000000,0.000112168000000,0.000071477000000,0.000269007000000,0.000316020000000,0.000304958000000,0.000279675000000,0.013866627000000,0.000274934000000,0.014471071000000,0.000270588000000,0.000207773000000 +0.000146934000000,0.000263082000000,0.000092811000000,0.000081748000000,0.000194736000000,0.000171427000000,0.000053700000000,0.000142983000000,0.000107032000000,0.000070292000000,0.000275724000000,0.000259527000000,0.000263477000000,0.000259922000000,0.014103268000000,0.000308909000000,0.014127367000000,0.000263082000000,0.000209749000000 +0.000257156000000,0.000258736000000,0.000048169000000,0.000081749000000,0.000214885000000,0.000170637000000,0.000056070000000,0.000139823000000,0.000255576000000,0.000071477000000,0.000307724000000,0.000257946000000,0.000257551000000,0.000225946000000,0.014129343000000,0.000271378000000,0.014863367000000,0.000318390000000,0.000209354000000 +0.000163922000000,0.000262291000000,0.000052514000000,0.000080959000000,0.000194341000000,0.000171822000000,0.000075032000000,0.000139822000000,0.000154045000000,0.000074242000000,0.000267428000000,0.000319971000000,0.000258341000000,0.000293897000000,0.014060602000000,0.000575180000000,0.014723910000000,0.000262292000000,0.000207378000000 +0.000145748000000,0.000261897000000,0.000047773000000,0.000082144000000,0.000196316000000,0.000445206000000,0.000053699000000,0.000142193000000,0.000110983000000,0.000069897000000,0.000270983000000,0.000270193000000,0.000258342000000,0.000263082000000,0.013697146000000,0.000277304000000,0.014433935000000,0.000364613000000,0.000207773000000 +0.000147329000000,0.000297452000000,0.000047773000000,0.000080958000000,0.000195131000000,0.000223181000000,0.000053699000000,0.000141798000000,0.000155625000000,0.000071082000000,0.000281649000000,0.000291526000000,0.000290737000000,0.000241749000000,0.014207565000000,0.000273748000000,0.014812008000000,0.000259526000000,0.000216860000000 +0.000180119000000,0.000259131000000,0.000047773000000,0.000174193000000,0.000228712000000,0.000206193000000,0.000055280000000,0.000139033000000,0.000126786000000,0.000071477000000,0.000274934000000,0.000274539000000,0.000259526000000,0.000280070000000,0.014378626000000,0.000282045000000,0.014358083000000,0.000292711000000,0.000299033000000 +0.000145749000000,0.000330638000000,0.000048168000000,0.000098341000000,0.000195132000000,0.000172613000000,0.000054885000000,0.000142983000000,0.000121650000000,0.000072662000000,0.000308514000000,0.000271773000000,0.000257946000000,0.000268218000000,0.015569737000000,0.000273353000000,0.014094972000000,0.000260712000000,0.000211724000000 +0.000146539000000,0.000260712000000,0.000048563000000,0.000095181000000,0.000194736000000,0.000170638000000,0.000054094000000,0.000140218000000,0.000108218000000,0.000069897000000,0.000271378000000,0.000308909000000,0.000293501000000,0.000227527000000,0.014700997000000,0.000272169000000,0.014672552000000,0.000260711000000,0.000208168000000 +0.000147329000000,0.000311674000000,0.000046193000000,0.000080168000000,0.000195527000000,0.000171428000000,0.000056860000000,0.000142193000000,0.000107427000000,0.000069897000000,0.000272563000000,0.000275329000000,0.000260711000000,0.000266638000000,0.014050331000000,0.000278885000000,0.014531910000000,0.000263872000000,0.000207773000000 +0.000148119000000,0.000259921000000,0.000045798000000,0.000080169000000,0.000263082000000,0.000173798000000,0.000056465000000,0.000137848000000,0.000141008000000,0.000077403000000,0.000301403000000,0.000272169000000,0.000257551000000,0.000242934000000,0.013934182000000,0.000275329000000,0.014814774000000,0.000266242000000,0.000208168000000 +0.000146539000000,0.000262687000000,0.000045798000000,0.000116119000000,0.000194737000000,0.000172217000000,0.000132316000000,0.000139823000000,0.000107033000000,0.000070291000000,0.000264267000000,0.000266242000000,0.000257551000000,0.000311674000000,0.013832256000000,0.000277304000000,0.015343762000000,0.000260317000000,0.000243329000000 +0.000146143000000,0.000272564000000,0.000045798000000,0.000081749000000,0.000195526000000,0.000170637000000,0.000088860000000,0.000139032000000,0.000107428000000,0.000071478000000,0.000259527000000,0.000272958000000,0.000260317000000,0.000269403000000,0.014588008000000,0.000274933000000,0.014520058000000,0.000261897000000,0.000244909000000 +0.000146933000000,0.000259526000000,0.000050144000000,0.000081353000000,0.000229897000000,0.000171033000000,0.000054094000000,0.000142984000000,0.000107427000000,0.000071082000000,0.000291132000000,0.000322341000000,0.000401749000000,0.000266637000000,0.013769047000000,0.000273748000000,0.014459218000000,0.000293502000000,0.000217255000000 +0.000146934000000,0.000309699000000,0.000045798000000,0.000081748000000,0.000195921000000,0.000173008000000,0.000054094000000,0.000140218000000,0.000108613000000,0.000071477000000,0.000259526000000,0.000272564000000,0.000270588000000,0.000263872000000,0.014365194000000,0.000274539000000,0.014359269000000,0.000260712000000,0.000208168000000 +0.000178934000000,0.000261897000000,0.000084514000000,0.000081749000000,0.000195132000000,0.000170637000000,0.000054095000000,0.000139822000000,0.000108217000000,0.000070687000000,0.000270193000000,0.000275724000000,0.000258342000000,0.000247675000000,0.014245096000000,0.000278884000000,0.014932108000000,0.000342094000000,0.000210144000000 +0.000146144000000,0.000493007000000,0.000045798000000,0.000081749000000,0.000195131000000,0.000171033000000,0.000101501000000,0.000138242000000,0.000107032000000,0.000071477000000,0.000317601000000,0.000421896000000,0.000269008000000,0.000267032000000,0.014756305000000,0.000273353000000,0.014476207000000,0.000260711000000,0.000218440000000 +0.000146933000000,0.000263082000000,0.000052514000000,0.000083329000000,0.000229897000000,0.000169847000000,0.000055280000000,0.000138243000000,0.000107427000000,0.000071082000000,0.000274538000000,0.000269403000000,0.000258341000000,0.000323131000000,0.013943664000000,0.000274934000000,0.014451318000000,0.000299032000000,0.000208168000000 +0.000147724000000,0.000275329000000,0.000047773000000,0.000081749000000,0.000196317000000,0.000217255000000,0.000053699000000,0.000139823000000,0.000107033000000,0.000110194000000,0.000302588000000,0.000309304000000,0.000344070000000,0.000257946000000,0.014170824000000,0.000310489000000,0.015122922000000,0.000261106000000,0.000238193000000 +0.000193551000000,0.000261106000000,0.000046193000000,0.000082144000000,0.000195131000000,0.000172217000000,0.000056465000000,0.000139033000000,0.000107033000000,0.000072662000000,0.000271773000000,0.000270193000000,0.000256761000000,0.000234638000000,0.014079564000000,0.000278885000000,0.014501095000000,0.000261897000000,0.000207774000000 +0.000145748000000,0.000295082000000,0.000045798000000,0.000081354000000,0.000195132000000,0.000170638000000,0.000053305000000,0.000138242000000,0.000108613000000,0.000069897000000,0.000267822000000,0.000274144000000,0.000258341000000,0.000390292000000,0.015654674000000,0.000321156000000,0.014689144000000,0.000258736000000,0.000216860000000 +0.000147724000000,0.000261501000000,0.000047773000000,0.000080563000000,0.000291526000000,0.000172613000000,0.000053699000000,0.000139823000000,0.000193551000000,0.000071873000000,0.000304168000000,0.000280069000000,0.000274539000000,0.000272169000000,0.014288947000000,0.000274143000000,0.015147811000000,0.000262292000000,0.000208958000000 +0.000146934000000,0.000268613000000,0.000048168000000,0.000081749000000,0.000194736000000,0.000255575000000,0.000055675000000,0.000139033000000,0.000109798000000,0.000071872000000,0.000326291000000,0.000271773000000,0.000262292000000,0.000319181000000,0.016652205000000,0.000272564000000,0.015704848000000,0.000420317000000,0.000216859000000 +0.000147329000000,0.000260712000000,0.000065946000000,0.000080959000000,0.000194736000000,0.000171033000000,0.000053700000000,0.000138637000000,0.000109798000000,0.000070291000000,0.000269403000000,0.000291921000000,0.000397403000000,0.000278885000000,0.014721539000000,0.000282835000000,0.015525489000000,0.000261896000000,0.000209354000000 +0.000147724000000,0.000262687000000,0.000048168000000,0.000080959000000,0.000231477000000,0.000171822000000,0.000054490000000,0.000142983000000,0.000108217000000,0.000070687000000,0.000412415000000,0.000260316000000,0.000256761000000,0.000276909000000,0.014187811000000,0.000274934000000,0.014767367000000,0.000329057000000,0.000207378000000 +0.000146539000000,0.000275724000000,0.000045798000000,0.000081353000000,0.000198292000000,0.000172218000000,0.000054489000000,0.000139428000000,0.000111774000000,0.000071477000000,0.000272564000000,0.000263872000000,0.000257551000000,0.000264662000000,0.014267219000000,0.000278884000000,0.014485293000000,0.000261501000000,0.000243329000000 +0.000147724000000,0.000261502000000,0.000045798000000,0.000080564000000,0.000201452000000,0.000173403000000,0.000054094000000,0.000140218000000,0.000107032000000,0.000069502000000,0.000281255000000,0.000402144000000,0.000296662000000,0.000265452000000,0.014178726000000,0.000273749000000,0.015048256000000,0.000329057000000,0.000207378000000 +0.000145749000000,0.000333798000000,0.000048169000000,0.000085699000000,0.000283230000000,0.000172218000000,0.000054490000000,0.000141403000000,0.000109798000000,0.000070687000000,0.000270193000000,0.000392662000000,0.000257551000000,0.000277304000000,0.013674231000000,0.000272958000000,0.015099219000000,0.000262687000000,0.000216860000000 +0.000215675000000,0.000267427000000,0.000048169000000,0.000086094000000,0.000196712000000,0.000170637000000,0.000054095000000,0.000139033000000,0.000110193000000,0.000071872000000,0.000304959000000,0.000304958000000,0.000329452000000,0.000351971000000,0.015036799000000,0.000274143000000,0.014791466000000,0.000298243000000,0.000207378000000 +0.000148515000000,0.000355526000000,0.000045798000000,0.000085699000000,0.000195526000000,0.000172218000000,0.000057255000000,0.000139428000000,0.000109008000000,0.000071082000000,0.000268218000000,0.000269798000000,0.000257946000000,0.000280860000000,0.014129342000000,0.000274539000000,0.014716008000000,0.000263872000000,0.000207378000000 +0.000147328000000,0.000269008000000,0.000048168000000,0.000086885000000,0.000194341000000,0.000173798000000,0.000053699000000,0.000140613000000,0.000107033000000,0.000072267000000,0.000269403000000,0.000272168000000,0.000258737000000,0.000248859000000,0.013972898000000,0.000281255000000,0.014593145000000,0.000263082000000,0.000206983000000 +0.000146539000000,0.000297848000000,0.000061995000000,0.000086095000000,0.000228317000000,0.000172612000000,0.000074638000000,0.000145354000000,0.000142983000000,0.000070292000000,0.000319180000000,0.000286390000000,0.000328662000000,0.000234242000000,0.014373096000000,0.000296662000000,0.014299219000000,0.000289552000000,0.000207378000000 +0.000179724000000,0.000263872000000,0.000047773000000,0.000109798000000,0.000194737000000,0.000171823000000,0.000053700000000,0.000140613000000,0.000107033000000,0.000088465000000,0.000260712000000,0.000280464000000,0.000258736000000,0.000269798000000,0.013734281000000,0.000257946000000,0.014290133000000,0.000262687000000,0.000244118000000 +0.000146934000000,0.000263477000000,0.000045798000000,0.000082538000000,0.000195131000000,0.000170637000000,0.000055279000000,0.000140613000000,0.000107033000000,0.000069897000000,0.000257946000000,0.000308514000000,0.000261501000000,0.000375674000000,0.014661095000000,0.000258736000000,0.014827811000000,0.000327872000000,0.000207773000000 +0.000147724000000,0.000259922000000,0.000045403000000,0.000080958000000,0.000276514000000,0.000173403000000,0.000056070000000,0.000140613000000,0.000109798000000,0.000069502000000,0.000307329000000,0.000272168000000,0.000272959000000,0.000271773000000,0.014392848000000,0.000262292000000,0.014292898000000,0.000263477000000,0.000220020000000 +0.000146934000000,0.000266637000000,0.000046194000000,0.000081353000000,0.000242539000000,0.000174588000000,0.000057255000000,0.000146539000000,0.000108218000000,0.000071477000000,0.000270193000000,0.000273748000000,0.000257947000000,0.000253995000000,0.013882034000000,0.000294687000000,0.017119957000000,0.000280069000000,0.000218835000000 +0.000146538000000,0.000341699000000,0.000048564000000,0.000080959000000,0.000198292000000,0.000171033000000,0.000054095000000,0.000174588000000,0.000107428000000,0.000070292000000,0.000266243000000,0.000304959000000,0.000291131000000,0.000317205000000,0.013638677000000,0.000291526000000,0.015433045000000,0.000261502000000,0.000217650000000 +0.000223971000000,0.000259131000000,0.000049749000000,0.000081353000000,0.000230687000000,0.000171823000000,0.000053699000000,0.000138637000000,0.000108218000000,0.000071082000000,0.000270983000000,0.000269798000000,0.000260317000000,0.000276514000000,0.013642627000000,0.000259527000000,0.015054576000000,0.000259131000000,0.000209354000000 +0.000148514000000,0.000296267000000,0.000047773000000,0.000081749000000,0.000197106000000,0.000174983000000,0.000053699000000,0.000140218000000,0.000107033000000,0.000072662000000,0.000270983000000,0.000277304000000,0.000260711000000,0.000313255000000,0.014456454000000,0.000263872000000,0.015654675000000,0.000261502000000,0.000208959000000 +0.000148119000000,0.000258341000000,0.000045799000000,0.000080959000000,0.000196711000000,0.000170637000000,0.000091626000000,0.000143774000000,0.000107032000000,0.000072267000000,0.000311674000000,0.000279280000000,0.000451922000000,0.000272958000000,0.013773787000000,0.000257551000000,0.015353637000000,0.000264267000000,0.000244514000000 +0.000147329000000,0.000296662000000,0.000045798000000,0.000080958000000,0.000195921000000,0.000171823000000,0.000053304000000,0.000140217000000,0.000108217000000,0.000072267000000,0.000273353000000,0.000275724000000,0.000257946000000,0.000247280000000,0.013932207000000,0.000263477000000,0.014677293000000,0.000270193000000,0.000207378000000 +0.000180119000000,0.000259131000000,0.000045798000000,0.000081354000000,0.000278094000000,0.000170242000000,0.000055279000000,0.000140217000000,0.000108613000000,0.000069502000000,0.000271773000000,0.000335773000000,0.000290342000000,0.000352366000000,0.014540997000000,0.000295872000000,0.014273935000000,0.000261501000000,0.000216860000000 +0.000146539000000,0.000265057000000,0.000047773000000,0.000118094000000,0.000197502000000,0.000206193000000,0.000053699000000,0.000189601000000,0.000163921000000,0.000070292000000,0.000308119000000,0.000274934000000,0.000256366000000,0.000231477000000,0.013948404000000,0.000257551000000,0.015273835000000,0.000331032000000,0.000208168000000 +0.000146539000000,0.000261897000000,0.000051329000000,0.000081354000000,0.000195527000000,0.000173008000000,0.000055675000000,0.000152069000000,0.000106637000000,0.000070687000000,0.000267032000000,0.000268612000000,0.000260317000000,0.000284810000000,0.013800256000000,0.000256366000000,0.015249342000000,0.000261896000000,0.000206984000000 +0.000146538000000,0.000263872000000,0.000047773000000,0.000081354000000,0.000229897000000,0.000171822000000,0.000054489000000,0.000205798000000,0.000108613000000,0.000071477000000,0.000271773000000,0.000290342000000,0.000295082000000,0.000288761000000,0.014318972000000,0.000292317000000,0.014422478000000,0.000347625000000,0.000207773000000 +0.000148909000000,0.000296662000000,0.000045798000000,0.000082144000000,0.000195921000000,0.000172218000000,0.000055674000000,0.000227132000000,0.000107033000000,0.000071873000000,0.000268613000000,0.000257551000000,0.000261106000000,0.000246885000000,0.013934973000000,0.000259922000000,0.015298724000000,0.000263477000000,0.000206588000000 +0.000195132000000,0.000260316000000,0.000067132000000,0.000081749000000,0.000195131000000,0.000174589000000,0.000053304000000,0.000157601000000,0.000112168000000,0.000071477000000,0.000274538000000,0.000291921000000,0.000276909000000,0.000369353000000,0.014258132000000,0.000257551000000,0.014853491000000,0.000281650000000,0.000280465000000 +0.000146143000000,0.000295477000000,0.000063971000000,0.000082143000000,0.000194737000000,0.000259922000000,0.000088860000000,0.000152069000000,0.000179329000000,0.000071082000000,0.000303773000000,0.000271773000000,0.000257946000000,0.000275329000000,0.014453292000000,0.000299428000000,0.014467120000000,0.000266637000000,0.000207379000000 +0.000146538000000,0.000259526000000,0.000058045000000,0.000084119000000,0.000510786000000,0.000182489000000,0.000055675000000,0.000139427000000,0.000107823000000,0.000070687000000,0.000271378000000,0.000270588000000,0.000257551000000,0.000235823000000,0.014170429000000,0.000258736000000,0.014998478000000,0.000265057000000,0.000217650000000 +0.000147724000000,0.000264267000000,0.000046193000000,0.000081354000000,0.000229502000000,0.000419131000000,0.000056860000000,0.000141403000000,0.000108612000000,0.000071872000000,0.000272168000000,0.000353156000000,0.000341304000000,0.000278884000000,0.013881639000000,0.000257946000000,0.014850330000000,0.000259921000000,0.000207773000000 +0.000179724000000,0.000524612000000,0.000045798000000,0.000080959000000,0.000229107000000,0.000219625000000,0.000053699000000,0.000138638000000,0.000108613000000,0.000075823000000,0.000524218000000,0.000257156000000,0.000259131000000,0.000241749000000,0.014183071000000,0.000328663000000,0.014451713000000,0.000259922000000,0.000208563000000 +0.000146539000000,0.000293501000000,0.000045403000000,0.000081354000000,0.000195131000000,0.000172217000000,0.000071082000000,0.000143773000000,0.000108613000000,0.000071872000000,0.000270588000000,0.000274539000000,0.000263082000000,0.000263477000000,0.014025837000000,0.000293502000000,0.014517687000000,0.000331033000000,0.000217650000000 +0.000146539000000,0.000261501000000,0.000045403000000,0.000082934000000,0.000196316000000,0.000174588000000,0.000087675000000,0.000138242000000,0.000141008000000,0.000103477000000,0.000311280000000,0.000270983000000,0.000258341000000,0.000257551000000,0.014118281000000,0.000257156000000,0.014622380000000,0.000258342000000,0.000207378000000 +0.000146934000000,0.000259526000000,0.000045798000000,0.000081354000000,0.000249254000000,0.000172613000000,0.000100316000000,0.000139823000000,0.000113354000000,0.000075822000000,0.000272168000000,0.000257156000000,0.000257156000000,0.000240564000000,0.014201244000000,0.000259131000000,0.014226923000000,0.000327477000000,0.000217255000000 +0.000146538000000,0.000261501000000,0.000048168000000,0.000082539000000,0.000196317000000,0.000172218000000,0.000054489000000,0.000140613000000,0.000106638000000,0.000070687000000,0.000267427000000,0.000299823000000,0.000326292000000,0.000294687000000,0.014371910000000,0.000294687000000,0.014463564000000,0.000463378000000,0.000212514000000 +0.000159575000000,0.000267823000000,0.000045403000000,0.000083724000000,0.000196316000000,0.000172613000000,0.000057649000000,0.000139428000000,0.000107427000000,0.000069897000000,0.000276909000000,0.000275328000000,0.000259132000000,0.000244119000000,0.014100898000000,0.000263872000000,0.014532701000000,0.000424662000000,0.000216465000000 +0.000146539000000,0.000329847000000,0.000099527000000,0.000080958000000,0.000196316000000,0.000176168000000,0.000056860000000,0.000143773000000,0.000108612000000,0.000071477000000,0.000338144000000,0.000282835000000,0.000259132000000,0.000265848000000,0.013796306000000,0.000259131000000,0.015006774000000,0.000262687000000,0.000257551000000 +0.000146144000000,0.000264662000000,0.000048563000000,0.000081354000000,0.000285206000000,0.000172218000000,0.000053305000000,0.000137848000000,0.000107427000000,0.000070292000000,0.000312069000000,0.000325896000000,0.000366193000000,0.000299428000000,0.014290528000000,0.000292711000000,0.014324898000000,0.000300218000000,0.000207378000000 +0.000146144000000,0.000296662000000,0.000046194000000,0.000080958000000,0.000197107000000,0.000171428000000,0.000054884000000,0.000140218000000,0.000107033000000,0.000069897000000,0.000269402000000,0.000272168000000,0.000257946000000,0.000267427000000,0.013686084000000,0.000255971000000,0.014372701000000,0.000261897000000,0.000209749000000 +0.000179328000000,0.000261107000000,0.000046194000000,0.000081354000000,0.000195131000000,0.000171823000000,0.000053304000000,0.000139822000000,0.000108613000000,0.000114934000000,0.000315230000000,0.000261502000000,0.000292317000000,0.000227526000000,0.014237984000000,0.000258341000000,0.014216256000000,0.000294687000000,0.000389896000000 +0.000146144000000,0.000300613000000,0.000048169000000,0.000080959000000,0.000265453000000,0.000173008000000,0.000099921000000,0.000138243000000,0.000107032000000,0.000070292000000,0.000261106000000,0.000316810000000,0.000260316000000,0.000274143000000,0.014754725000000,0.000258341000000,0.014617638000000,0.000260712000000,0.000232267000000 +0.000146539000000,0.000262292000000,0.000046193000000,0.000082143000000,0.000195131000000,0.000171033000000,0.000055279000000,0.000140218000000,0.000108613000000,0.000105453000000,0.000270193000000,0.000323131000000,0.000259921000000,0.000260316000000,0.014418528000000,0.000255576000000,0.015084601000000,0.000260316000000,0.000208168000000 +0.000147724000000,0.000293502000000,0.000048564000000,0.000082144000000,0.000194341000000,0.000171033000000,0.000053699000000,0.000139823000000,0.000110588000000,0.000075428000000,0.000304959000000,0.000315625000000,0.000299823000000,0.000264267000000,0.013783269000000,0.000292316000000,0.014795022000000,0.000262687000000,0.000216070000000 +0.000146934000000,0.000261502000000,0.000048564000000,0.000081749000000,0.000195922000000,0.000172218000000,0.000054489000000,0.000139823000000,0.000177749000000,0.000073847000000,0.000269798000000,0.000276514000000,0.000257552000000,0.000307724000000,0.013634330000000,0.000259131000000,0.014511762000000,0.000262687000000,0.000207773000000 +0.000146933000000,0.000261502000000,0.000053699000000,0.000080959000000,0.000194341000000,0.000172217000000,0.000053305000000,0.000140218000000,0.000108613000000,0.000071872000000,0.000278884000000,0.000283625000000,0.000366983000000,0.000254390000000,0.015134379000000,0.000260712000000,0.016403711000000,0.000295082000000,0.000219626000000 +0.000146539000000,0.000294687000000,0.000045403000000,0.000082144000000,0.000195526000000,0.000171822000000,0.000053699000000,0.000144563000000,0.000107033000000,0.000068316000000,0.000350390000000,0.000305354000000,0.000269403000000,0.000208959000000,0.013870183000000,0.000293106000000,0.014394034000000,0.000263477000000,0.000208168000000 +0.000146934000000,0.000260316000000,0.000045798000000,0.000081353000000,0.000195132000000,0.000171822000000,0.000055279000000,0.000138243000000,0.000107428000000,0.000084514000000,0.000273353000000,0.000272959000000,0.000257551000000,0.000331822000000,0.014367565000000,0.000259922000000,0.014609343000000,0.000294687000000,0.000206983000000 +0.000144958000000,0.000295872000000,0.000047774000000,0.000081353000000,0.000231477000000,0.000170637000000,0.000053700000000,0.000140218000000,0.000108613000000,0.000071872000000,0.000337354000000,0.000270588000000,0.000295477000000,0.000260317000000,0.013947614000000,0.000260316000000,0.014929342000000,0.000260316000000,0.000212910000000 +0.000180514000000,0.000260711000000,0.000045798000000,0.000103872000000,0.000194736000000,0.000175773000000,0.000055674000000,0.000139428000000,0.000135082000000,0.000071477000000,0.000269403000000,0.000293107000000,0.000259921000000,0.000258736000000,0.013855565000000,0.000260317000000,0.014199664000000,0.000343280000000,0.000252020000000 +0.000148119000000,0.000260316000000,0.000048168000000,0.000094785000000,0.000194737000000,0.000171822000000,0.000054094000000,0.000141403000000,0.000108218000000,0.000073057000000,0.000276514000000,0.000276909000000,0.000259526000000,0.000294292000000,0.013558874000000,0.000259131000000,0.014413787000000,0.000261107000000,0.000209353000000 +0.000146934000000,0.000264268000000,0.000046193000000,0.000081749000000,0.000195131000000,0.000171822000000,0.000053699000000,0.000138637000000,0.000108613000000,0.000071082000000,0.000352761000000,0.000306143000000,0.000342094000000,0.000207773000000,0.014042824000000,0.000329057000000,0.014740108000000,0.000267033000000,0.000219230000000 +0.000147723000000,0.000261106000000,0.000048169000000,0.000081354000000,0.000227527000000,0.000172218000000,0.000053304000000,0.000139822000000,0.000107033000000,0.000069897000000,0.000273354000000,0.000258736000000,0.000257946000000,0.000262686000000,0.014136453000000,0.000256761000000,0.014629095000000,0.000259527000000,0.000207379000000 +0.000221995000000,0.000327872000000,0.000047773000000,0.000081353000000,0.000195922000000,0.000222390000000,0.000054095000000,0.000139032000000,0.000108613000000,0.000069501000000,0.000302193000000,0.000274934000000,0.000261501000000,0.000262687000000,0.013872948000000,0.000260711000000,0.015000848000000,0.000260316000000,0.000207774000000 +0.000406094000000,0.000262687000000,0.000046983000000,0.000081353000000,0.000195131000000,0.000171823000000,0.000054884000000,0.000138243000000,0.000142983000000,0.000071082000000,0.000269798000000,0.000474440000000,0.000257946000000,0.000265847000000,0.014196108000000,0.000340909000000,0.014870083000000,0.000294292000000,0.000206983000000 +0.000177353000000,0.000305748000000,0.000045798000000,0.000083724000000,0.000194736000000,0.000172218000000,0.000054489000000,0.000141008000000,0.000108217000000,0.000071082000000,0.000267033000000,0.000288366000000,0.000260316000000,0.000350390000000,0.014425638000000,0.000256761000000,0.015000058000000,0.000263082000000,0.000206983000000 +0.000195922000000,0.000266637000000,0.000064761000000,0.000080563000000,0.000208958000000,0.000172217000000,0.000103872000000,0.000143774000000,0.000112168000000,0.000070687000000,0.000447180000000,0.000320366000000,0.000292316000000,0.000246489000000,0.013784059000000,0.000259527000000,0.014962132000000,0.000293897000000,0.000260317000000 +0.000146538000000,0.000261501000000,0.000046193000000,0.000081354000000,0.000194737000000,0.000220415000000,0.000053699000000,0.000142193000000,0.000144168000000,0.000070292000000,0.000291131000000,0.000273354000000,0.000259922000000,0.000239378000000,0.015001638000000,0.000257946000000,0.014625539000000,0.000259922000000,0.000239378000000 +0.000146934000000,0.000259921000000,0.000045403000000,0.000081749000000,0.000196712000000,0.000170638000000,0.000052909000000,0.000140218000000,0.000107033000000,0.000071082000000,0.000350786000000,0.000272563000000,0.000266242000000,0.000302193000000,0.014817934000000,0.000257551000000,0.014930923000000,0.000263082000000,0.000221601000000 +0.000147724000000,0.000259921000000,0.000048168000000,0.000081748000000,0.000233057000000,0.000171428000000,0.000054489000000,0.000140218000000,0.000189205000000,0.000071477000000,0.000271378000000,0.000286786000000,0.000291527000000,0.000271773000000,0.014240355000000,0.000292316000000,0.014422873000000,0.000260316000000,0.000259921000000 +0.000246885000000,0.000261897000000,0.000046193000000,0.000081354000000,0.000196317000000,0.000171428000000,0.000054094000000,0.000189996000000,0.000107033000000,0.000105057000000,0.000269798000000,0.000270193000000,0.000260316000000,0.000260316000000,0.013654874000000,0.000256761000000,0.014430379000000,0.000267032000000,0.000218045000000 +0.000146144000000,0.000262292000000,0.000045008000000,0.000080564000000,0.000372119000000,0.000265452000000,0.000053305000000,0.000139823000000,0.000107427000000,0.000071872000000,0.000305748000000,0.000293107000000,0.000257551000000,0.000277699000000,0.014649244000000,0.000256761000000,0.014977145000000,0.000275724000000,0.000219625000000 +0.000150885000000,0.000332217000000,0.000048169000000,0.000102687000000,0.000319971000000,0.000187625000000,0.000053304000000,0.000143378000000,0.000108613000000,0.000069897000000,0.000269007000000,0.000338934000000,0.000257156000000,0.000265057000000,0.014276700000000,0.000299823000000,0.014509786000000,0.000261106000000,0.000209354000000 +0.000145354000000,0.000261897000000,0.000045403000000,0.000093206000000,0.000195131000000,0.000171033000000,0.000073848000000,0.000138242000000,0.000107428000000,0.000069897000000,0.000271378000000,0.000323131000000,0.000255971000000,0.000286786000000,0.013879664000000,0.000258736000000,0.014442231000000,0.000340909000000,0.000216860000000 +0.000228712000000,0.000279279000000,0.000045798000000,0.000082144000000,0.000195131000000,0.000171033000000,0.000071873000000,0.000139428000000,0.000221996000000,0.000071873000000,0.000267822000000,0.000274144000000,0.000302193000000,0.000282440000000,0.014746824000000,0.000295477000000,0.014736157000000,0.000265452000000,0.000209354000000 +0.000146144000000,0.000260316000000,0.000048169000000,0.000081749000000,0.000237008000000,0.000173798000000,0.000068316000000,0.000138242000000,0.000197501000000,0.000070687000000,0.000273353000000,0.000269403000000,0.000259921000000,0.000309304000000,0.013867811000000,0.000257156000000,0.014827416000000,0.000295082000000,0.000208564000000 +0.000147724000000,0.000261501000000,0.000046193000000,0.000082144000000,0.000195922000000,0.000170637000000,0.000055674000000,0.000141008000000,0.000128761000000,0.000069897000000,0.000353156000000,0.000274144000000,0.000258341000000,0.000310884000000,0.014454478000000,0.000263082000000,0.014990577000000,0.000260316000000,0.000210538000000 +0.000148119000000,0.000306143000000,0.000049749000000,0.000118094000000,0.000195922000000,0.000171428000000,0.000053699000000,0.000144168000000,0.000109007000000,0.000109008000000,0.000270193000000,0.000267428000000,0.000295082000000,0.000260711000000,0.014292108000000,0.000307724000000,0.014747614000000,0.000259922000000,0.000208563000000 +0.000164317000000,0.000262687000000,0.000045799000000,0.000081748000000,0.000195921000000,0.000172218000000,0.000052909000000,0.000141403000000,0.000107033000000,0.000089255000000,0.000276118000000,0.000305354000000,0.000258341000000,0.000233057000000,0.014363614000000,0.000261106000000,0.014338330000000,0.000261502000000,0.000208958000000 +0.000145354000000,0.000292316000000,0.000045403000000,0.000081749000000,0.000210933000000,0.000171823000000,0.000056860000000,0.000138638000000,0.000107033000000,0.000069106000000,0.000304168000000,0.000267033000000,0.000261502000000,0.000310095000000,0.013854380000000,0.000259921000000,0.014328058000000,0.000259526000000,0.000242143000000 +0.000146539000000,0.000260316000000,0.000045008000000,0.000080168000000,0.000196316000000,0.000170242000000,0.000090045000000,0.000138638000000,0.000109008000000,0.000069897000000,0.000270984000000,0.000272168000000,0.000290341000000,0.000263477000000,0.013936947000000,0.000294687000000,0.016152057000000,0.000298242000000,0.000210538000000 +0.000145748000000,0.000289155000000,0.000086884000000,0.000081749000000,0.000196712000000,0.000171822000000,0.000056464000000,0.000139427000000,0.000107823000000,0.000073057000000,0.000357897000000,0.000314045000000,0.000263082000000,0.000248069000000,0.016285982000000,0.000265452000000,0.014560749000000,0.000261896000000,0.000216860000000 +0.000146934000000,0.000259921000000,0.000047378000000,0.000080169000000,0.000194737000000,0.000171427000000,0.000054884000000,0.000139427000000,0.000107822000000,0.000069502000000,0.000275329000000,0.000278490000000,0.000262292000000,0.000302193000000,0.014538231000000,0.000257946000000,0.014633836000000,0.000297057000000,0.000209749000000 +0.000180514000000,0.000264267000000,0.000048168000000,0.000102687000000,0.000196317000000,0.000173007000000,0.000056464000000,0.000139427000000,0.000143378000000,0.000104662000000,0.000271773000000,0.000270193000000,0.000724908000000,0.000265057000000,0.014727466000000,0.000259526000000,0.014727466000000,0.000261897000000,0.000209749000000 +0.000147724000000,0.000260711000000,0.000047773000000,0.000081353000000,0.000194736000000,0.000171428000000,0.000052909000000,0.000138638000000,0.000108613000000,0.000071872000000,0.000306143000000,0.000277305000000,0.000274144000000,0.000226736000000,0.014846774000000,0.000257946000000,0.015039564000000,0.000260711000000,0.000206983000000 +0.000146538000000,0.000260317000000,0.000047773000000,0.000080958000000,0.000230292000000,0.000171823000000,0.000054095000000,0.000139823000000,0.000109008000000,0.000071082000000,0.000269007000000,0.000269798000000,0.000258736000000,0.000304958000000,0.015671267000000,0.000307328000000,0.014369145000000,0.000268613000000,0.000215674000000 +0.000146539000000,0.000391082000000,0.000045403000000,0.000081354000000,0.000194341000000,0.000171823000000,0.000053699000000,0.000139428000000,0.000106638000000,0.000071477000000,0.000268217000000,0.000321156000000,0.000291921000000,0.000245699000000,0.014157392000000,0.000265453000000,0.014512552000000,0.000312465000000,0.000210934000000 +0.000147724000000,0.000265847000000,0.000048169000000,0.000082144000000,0.000197107000000,0.000173403000000,0.000053700000000,0.000142193000000,0.000107427000000,0.000071477000000,0.000276514000000,0.000269798000000,0.000261502000000,0.000270193000000,0.014134479000000,0.000257946000000,0.014305540000000,0.000346440000000,0.000219625000000 +0.000148119000000,0.000294687000000,0.000046193000000,0.000080563000000,0.000194342000000,0.000171823000000,0.000053699000000,0.000140218000000,0.000107428000000,0.000071872000000,0.000268218000000,0.000270193000000,0.000258341000000,0.000267033000000,0.013899022000000,0.000314045000000,0.014460404000000,0.000259526000000,0.000207378000000 +0.000147329000000,0.000260317000000,0.000089255000000,0.000081749000000,0.000196317000000,0.000253996000000,0.000053700000000,0.000140613000000,0.000107823000000,0.000070292000000,0.000328663000000,0.000355526000000,0.000329452000000,0.000267428000000,0.014211515000000,0.000258341000000,0.015651119000000,0.000263082000000,0.000277700000000 +0.000146538000000,0.000263082000000,0.000048168000000,0.000115724000000,0.000195132000000,0.000200663000000,0.000054884000000,0.000139823000000,0.000106638000000,0.000069897000000,0.000273749000000,0.000274934000000,0.000269798000000,0.000231872000000,0.014390873000000,0.000257946000000,0.014720354000000,0.000262292000000,0.000270193000000 +0.000147329000000,0.000262687000000,0.000046983000000,0.000081354000000,0.000195131000000,0.000170638000000,0.000057650000000,0.000191970000000,0.000108613000000,0.000069501000000,0.000252415000000,0.000280070000000,0.000300613000000,0.000250440000000,0.013904158000000,0.000259526000000,0.014603022000000,0.000295082000000,0.000209353000000 +0.000180514000000,0.000260316000000,0.000048168000000,0.000081749000000,0.000270983000000,0.000170243000000,0.000053304000000,0.000139822000000,0.000109798000000,0.000071082000000,0.000359872000000,0.000276119000000,0.000257551000000,0.000274539000000,0.013729540000000,0.000258737000000,0.016509983000000,0.000262292000000,0.000217254000000 +0.000147329000000,0.000274934000000,0.000061601000000,0.000081353000000,0.000259922000000,0.000171823000000,0.000055280000000,0.000139033000000,0.000107823000000,0.000071477000000,0.000272959000000,0.000271378000000,0.000258341000000,0.000370144000000,0.014090627000000,0.000347625000000,0.015024552000000,0.000264662000000,0.000209353000000 +0.000148119000000,0.000261106000000,0.000045798000000,0.000081353000000,0.000195922000000,0.000170242000000,0.000053699000000,0.000139428000000,0.000142983000000,0.000071872000000,0.000287180000000,0.000291526000000,0.000291132000000,0.000286390000000,0.014303960000000,0.000274538000000,0.015049046000000,0.000264662000000,0.000216859000000 +0.000147724000000,0.000343279000000,0.000046193000000,0.000081354000000,0.000230292000000,0.000170638000000,0.000068317000000,0.000152860000000,0.000108218000000,0.000071477000000,0.000270588000000,0.000271379000000,0.000257156000000,0.000234243000000,0.015704848000000,0.000261502000000,0.015919761000000,0.000262292000000,0.000206588000000 +0.000179724000000,0.000261106000000,0.000082143000000,0.000116909000000,0.000195922000000,0.000170243000000,0.000057255000000,0.000139033000000,0.000108613000000,0.000070292000000,0.000267823000000,0.000267823000000,0.000257946000000,0.000259922000000,0.020508400000000,0.000348811000000,0.015233539000000,0.000260711000000,0.000208563000000 +0.000147329000000,0.000293897000000,0.000045403000000,0.000081749000000,0.000197502000000,0.000170637000000,0.000054094000000,0.000140218000000,0.000107428000000,0.000070687000000,0.000310884000000,0.000315230000000,0.000327477000000,0.000354736000000,0.015284107000000,0.000258736000000,0.014872058000000,0.000264267000000,0.000207774000000 +0.000147329000000,0.000265847000000,0.000045798000000,0.000080959000000,0.000196317000000,0.000172218000000,0.000054095000000,0.000140217000000,0.000109798000000,0.000071082000000,0.000272168000000,0.000271773000000,0.000258736000000,0.000268217000000,0.016189588000000,0.000327477000000,0.014456849000000,0.000295476000000,0.000206588000000 +0.000146934000000,0.000261897000000,0.000112563000000,0.000082539000000,0.000228316000000,0.000173008000000,0.000053699000000,0.000140218000000,0.000107428000000,0.000069502000000,0.000270983000000,0.000269402000000,0.000255576000000,0.000271378000000,0.014568256000000,0.000259921000000,0.015284897000000,0.000263477000000,0.000263477000000 +0.000146933000000,0.000278884000000,0.000045798000000,0.000080959000000,0.000196316000000,0.000172613000000,0.000053304000000,0.000141008000000,0.000107033000000,0.000070687000000,0.000314045000000,0.000269403000000,0.000262292000000,0.000336958000000,0.013858331000000,0.000257552000000,0.014471860000000,0.000297058000000,0.000242538000000 +0.000228317000000,0.000261501000000,0.000047773000000,0.000081748000000,0.000196711000000,0.000171822000000,0.000053304000000,0.000138638000000,0.000109007000000,0.000072267000000,0.000268613000000,0.000276909000000,0.000258736000000,0.000208563000000,0.013701491000000,0.000291921000000,0.015074329000000,0.000263477000000,0.000209749000000 +0.000147724000000,0.000294291000000,0.000046194000000,0.000080959000000,0.000218045000000,0.000170638000000,0.000056860000000,0.000139823000000,0.000107033000000,0.000069897000000,0.000269008000000,0.000305353000000,0.000293107000000,0.000285996000000,0.014436700000000,0.000255971000000,0.014708503000000,0.000262687000000,0.000244119000000 +0.000146539000000,0.000263477000000,0.000048168000000,0.000081353000000,0.000196712000000,0.000170243000000,0.000054094000000,0.000144563000000,0.000107428000000,0.000089650000000,0.000272168000000,0.000275328000000,0.000256366000000,0.000301403000000,0.014311466000000,0.000349995000000,0.014475021000000,0.000261107000000,0.000207378000000 +0.000146143000000,0.000332613000000,0.000045798000000,0.000080959000000,0.000197107000000,0.000173008000000,0.000052909000000,0.000139032000000,0.000109403000000,0.000070687000000,0.000271379000000,0.000270983000000,0.000258737000000,0.000280070000000,0.013819614000000,0.000265057000000,0.014650823000000,0.000261897000000,0.000208564000000 +0.000180909000000,0.000265057000000,0.000045403000000,0.000080958000000,0.000196712000000,0.000170638000000,0.000054489000000,0.000189205000000,0.000146934000000,0.000071082000000,0.000305354000000,0.000301008000000,0.000325106000000,0.000382391000000,0.014375466000000,0.000261107000000,0.014884700000000,0.000293896000000,0.000207378000000 +0.000146539000000,0.000261107000000,0.000045799000000,0.000082144000000,0.000229897000000,0.000170637000000,0.000055279000000,0.000139428000000,0.000108613000000,0.000070292000000,0.000272959000000,0.000268613000000,0.000257156000000,0.000255575000000,0.014307120000000,0.000344860000000,0.014584453000000,0.000260316000000,0.000206983000000 +0.000146934000000,0.000267033000000,0.000048169000000,0.000082144000000,0.000196316000000,0.000171428000000,0.000054885000000,0.000139428000000,0.000107033000000,0.000070292000000,0.000270193000000,0.000280070000000,0.000257946000000,0.000235823000000,0.013656059000000,0.000258341000000,0.015802032000000,0.000340514000000,0.000207378000000 +0.000147328000000,0.000281255000000,0.000047773000000,0.000081354000000,0.000194736000000,0.000170637000000,0.000059230000000,0.000144169000000,0.000109798000000,0.000071477000000,0.000316416000000,0.000270588000000,0.000273353000000,0.000308514000000,0.014017145000000,0.000297452000000,0.014828602000000,0.000261502000000,0.000216860000000 +0.000146934000000,0.000262292000000,0.000048168000000,0.000081749000000,0.000229502000000,0.000170242000000,0.000056859000000,0.000189206000000,0.000108613000000,0.000069897000000,0.000262291000000,0.000283625000000,0.000257946000000,0.000279675000000,0.014273935000000,0.000261896000000,0.014460009000000,0.000315625000000,0.000218045000000 +0.000147329000000,0.000261501000000,0.000045798000000,0.000080959000000,0.000195922000000,0.000170243000000,0.000067526000000,0.000139823000000,0.000108613000000,0.000103872000000,0.000259131000000,0.000300218000000,0.000295477000000,0.000341699000000,0.013965393000000,0.000258341000000,0.014530725000000,0.000261502000000,0.000208958000000 +0.000146143000000,0.000305354000000,0.000046193000000,0.000081354000000,0.000196711000000,0.000303773000000,0.000054094000000,0.000138242000000,0.000108613000000,0.000069897000000,0.000299823000000,0.000270193000000,0.000260712000000,0.000247280000000,0.013850034000000,0.000294292000000,0.014653194000000,0.000261502000000,0.000209748000000 +0.000147329000000,0.000258737000000,0.000048168000000,0.000082144000000,0.000195526000000,0.000172613000000,0.000055675000000,0.000140613000000,0.000109008000000,0.000070291000000,0.000261106000000,0.000273749000000,0.000257156000000,0.000227922000000,0.013741393000000,0.000261107000000,0.014162132000000,0.000268217000000,0.000206983000000 +0.000147724000000,0.000392662000000,0.000048958000000,0.000081749000000,0.000229896000000,0.000172613000000,0.000054094000000,0.000141403000000,0.000108613000000,0.000071477000000,0.000277699000000,0.000302588000000,0.000476020000000,0.000306539000000,0.014174775000000,0.000255576000000,0.014300404000000,0.000263872000000,0.000216859000000 +0.000230687000000,0.000278094000000,0.000047773000000,0.000080959000000,0.000195131000000,0.000173008000000,0.000053699000000,0.000153650000000,0.000111773000000,0.000071477000000,0.000257946000000,0.000257946000000,0.000576366000000,0.000263477000000,0.014339515000000,0.000275329000000,0.014691120000000,0.000299428000000,0.000217650000000 +0.000147724000000,0.000302588000000,0.000045798000000,0.000094391000000,0.000195921000000,0.000170243000000,0.000053305000000,0.000139428000000,0.000108218000000,0.000069897000000,0.000272958000000,0.000257946000000,0.000260316000000,0.000283230000000,0.014035713000000,0.000258341000000,0.014999268000000,0.000262292000000,0.000218439000000 +0.000145749000000,0.000261106000000,0.000048168000000,0.000080958000000,0.000299428000000,0.000170243000000,0.000052909000000,0.000139822000000,0.000184860000000,0.000071873000000,0.000338933000000,0.000517502000000,0.000298243000000,0.000319181000000,0.014817144000000,0.000292712000000,0.014148700000000,0.000346045000000,0.000209354000000 +0.000146934000000,0.000293501000000,0.000050144000000,0.000081353000000,0.000208958000000,0.000170637000000,0.000058440000000,0.000139428000000,0.000107033000000,0.000105847000000,0.000276909000000,0.000270588000000,0.000278885000000,0.000278489000000,0.014278676000000,0.000259131000000,0.014244305000000,0.000263081000000,0.000218045000000 +0.000180514000000,0.000258736000000,0.000048168000000,0.000081749000000,0.000375279000000,0.000171427000000,0.000083329000000,0.000142193000000,0.000106638000000,0.000072267000000,0.000271773000000,0.000296267000000,0.000258341000000,0.000237798000000,0.014012404000000,0.000263082000000,0.014518478000000,0.000257946000000,0.000217255000000 +0.000147329000000,0.000295872000000,0.000047773000000,0.000081354000000,0.000225947000000,0.000171033000000,0.000053699000000,0.000139823000000,0.000109403000000,0.000069897000000,0.000496958000000,0.000279280000000,0.000342884000000,0.000315625000000,0.014309095000000,0.000576761000000,0.014505441000000,0.000263477000000,0.000210144000000 +0.000148514000000,0.000261897000000,0.000045403000000,0.000081353000000,0.000196316000000,0.000173403000000,0.000054490000000,0.000140218000000,0.000110193000000,0.000070291000000,0.000601650000000,0.000354737000000,0.000255971000000,0.000262292000000,0.013981195000000,0.000272169000000,0.014657935000000,0.000262687000000,0.000206589000000 +0.000145354000000,0.000265057000000,0.000045403000000,0.000119280000000,0.000194737000000,0.000171823000000,0.000053699000000,0.000145353000000,0.000191181000000,0.000070292000000,0.000447181000000,0.000273749000000,0.000256366000000,0.000244514000000,0.014005293000000,0.000258341000000,0.015012700000000,0.000297058000000,0.000208563000000 +0.000146539000000,0.000264662000000,0.000049353000000,0.000081749000000,0.000228711000000,0.000174193000000,0.000054885000000,0.000144169000000,0.000108613000000,0.000073057000000,0.000295477000000,0.000269403000000,0.000341699000000,0.000278094000000,0.014320947000000,0.000259921000000,0.014748009000000,0.000261897000000,0.000218440000000 +0.000180514000000,0.000259921000000,0.000045798000000,0.000081748000000,0.000195131000000,0.000171033000000,0.000054095000000,0.000140218000000,0.000107822000000,0.000070292000000,0.000742686000000,0.000344464000000,0.000262687000000,0.000267823000000,0.013964997000000,0.000290341000000,0.014533886000000,0.000308909000000,0.000225552000000 +0.000145749000000,0.000306934000000,0.000048168000000,0.000081354000000,0.000195922000000,0.000171823000000,0.000053699000000,0.000138638000000,0.000107427000000,0.000103872000000,0.000326292000000,0.000276514000000,0.000328663000000,0.000235822000000,0.014171219000000,0.000257551000000,0.015327169000000,0.000264267000000,0.000210539000000 +0.000146539000000,0.000263477000000,0.000048563000000,0.000080959000000,0.000195131000000,0.000171032000000,0.000054885000000,0.000138637000000,0.000106638000000,0.000069896000000,0.000284810000000,0.000344464000000,0.000276119000000,0.000532513000000,0.014480552000000,0.000258341000000,0.014862577000000,0.000293501000000,0.000220810000000 +0.000147329000000,0.000296267000000,0.000084514000000,0.000080169000000,0.000196711000000,0.000217255000000,0.000053305000000,0.000138243000000,0.000201847000000,0.000071477000000,0.000285995000000,0.000275724000000,0.000275329000000,0.000277304000000,0.014407071000000,0.000296267000000,0.015233935000000,0.000259921000000,0.000217255000000 +0.000166292000000,0.000262292000000,0.000045798000000,0.000116515000000,0.000196316000000,0.000172218000000,0.000053699000000,0.000141008000000,0.000107428000000,0.000069897000000,0.000296267000000,0.000268613000000,0.000309304000000,0.000261107000000,0.014328058000000,0.000258736000000,0.014817144000000,0.000265058000000,0.000206983000000 +0.000201452000000,0.000263082000000,0.000047773000000,0.000081354000000,0.000195131000000,0.000173798000000,0.000054094000000,0.000141403000000,0.000109008000000,0.000070292000000,0.000288761000000,0.000304564000000,0.000271773000000,0.000271774000000,0.014128158000000,0.000262291000000,0.014352157000000,0.000294687000000,0.000217650000000 +0.000146144000000,0.000261897000000,0.000048168000000,0.000081749000000,0.000223181000000,0.000172613000000,0.000055675000000,0.000140613000000,0.000107427000000,0.000073452000000,0.000322341000000,0.000269403000000,0.000316415000000,0.000301403000000,0.014203614000000,0.000259921000000,0.014486873000000,0.000264267000000,0.000207379000000 +0.000146539000000,0.000259921000000,0.000047774000000,0.000082144000000,0.000195527000000,0.000174193000000,0.000054884000000,0.000138638000000,0.000109403000000,0.000071477000000,0.000297847000000,0.000273354000000,0.000277304000000,0.000261502000000,0.014030972000000,0.000308909000000,0.014510577000000,0.000304958000000,0.000207773000000 +0.000180119000000,0.000297848000000,0.000048959000000,0.000080564000000,0.000194736000000,0.000171033000000,0.000054885000000,0.000141008000000,0.000142984000000,0.000142588000000,0.000288366000000,0.000269403000000,0.000272168000000,0.000238588000000,0.013956700000000,0.000291922000000,0.014495564000000,0.000259131000000,0.000209353000000 +0.000146934000000,0.000260712000000,0.000045403000000,0.000083724000000,0.000229501000000,0.000170638000000,0.000084910000000,0.000141403000000,0.000108613000000,0.000070687000000,0.000285600000000,0.000270588000000,0.000308119000000,0.000297057000000,0.014391268000000,0.000256366000000,0.014577342000000,0.000264267000000,0.000209354000000 +0.000146934000000,0.000342884000000,0.000047774000000,0.000080959000000,0.000195921000000,0.000171033000000,0.000055279000000,0.000138638000000,0.000110983000000,0.000071477000000,0.000321551000000,0.000322341000000,0.000273748000000,0.000256761000000,0.013708998000000,0.000261106000000,0.014855465000000,0.000283230000000,0.000208168000000 +0.000147724000000,0.000260711000000,0.000087280000000,0.000096366000000,0.000195922000000,0.000192761000000,0.000055674000000,0.000138637000000,0.000107033000000,0.000069897000000,0.000314440000000,0.000269008000000,0.000309304000000,0.000314044000000,0.013993836000000,0.000431378000000,0.014857046000000,0.000280860000000,0.000208563000000 +0.000146934000000,0.000332613000000,0.000048564000000,0.000080168000000,0.000197502000000,0.000171033000000,0.000054489000000,0.000140218000000,0.000110193000000,0.000071082000000,0.000272564000000,0.000271773000000,0.000276909000000,0.000230687000000,0.014291712000000,0.000263477000000,0.014527170000000,0.000263082000000,0.000232268000000 +0.000159971000000,0.000261107000000,0.000045798000000,0.000081353000000,0.000229897000000,0.000172218000000,0.000054489000000,0.000138242000000,0.000140218000000,0.000069502000000,0.000274144000000,0.000451921000000,0.000273749000000,0.000246490000000,0.014617639000000,0.000302983000000,0.015261984000000,0.000261107000000,0.000216070000000 +0.000146934000000,0.000272563000000,0.000048169000000,0.000081353000000,0.000195132000000,0.000172613000000,0.000054489000000,0.000138242000000,0.000110589000000,0.000071872000000,0.000370539000000,0.000282440000000,0.000310885000000,0.000331823000000,0.013825540000000,0.000263082000000,0.014989786000000,0.000259922000000,0.000216465000000 +0.000146144000000,0.000266638000000,0.000048169000000,0.000081354000000,0.000195921000000,0.000172613000000,0.000125600000000,0.000139823000000,0.000109798000000,0.000070292000000,0.000277699000000,0.000301403000000,0.000272168000000,0.000265452000000,0.013846083000000,0.000262686000000,0.014592354000000,0.000262292000000,0.000207773000000 +0.000146934000000,0.000261897000000,0.000048563000000,0.000081354000000,0.000215675000000,0.000171823000000,0.000056860000000,0.000141403000000,0.000107032000000,0.000071873000000,0.000275724000000,0.000273749000000,0.000311279000000,0.000256761000000,0.014097343000000,0.000344860000000,0.014789886000000,0.000293897000000,0.000207773000000 +0.000192366000000,0.000263872000000,0.000045798000000,0.000135082000000,0.000195922000000,0.000170243000000,0.000057255000000,0.000141008000000,0.000108613000000,0.000069897000000,0.000289551000000,0.000270983000000,0.000277304000000,0.000309699000000,0.014008848000000,0.000263872000000,0.015215367000000,0.000264662000000,0.000218440000000 +0.000146934000000,0.000261106000000,0.000048169000000,0.000081748000000,0.000196317000000,0.000173403000000,0.000056070000000,0.000142194000000,0.000107427000000,0.000115724000000,0.000286785000000,0.000273353000000,0.000275724000000,0.000251230000000,0.014361639000000,0.000278884000000,0.014197688000000,0.000329452000000,0.000207774000000 +0.000146934000000,0.000311674000000,0.000048169000000,0.000117700000000,0.000196316000000,0.000186044000000,0.000073453000000,0.000140218000000,0.000108218000000,0.000071872000000,0.000306538000000,0.000259131000000,0.000311279000000,0.000258736000000,0.014151466000000,0.000258736000000,0.014515317000000,0.000258736000000,0.000217650000000 +0.000146539000000,0.000261896000000,0.000047773000000,0.000081354000000,0.000229897000000,0.000274934000000,0.000054885000000,0.000139823000000,0.000110193000000,0.000073453000000,0.000289946000000,0.000337353000000,0.000275724000000,0.000328662000000,0.013801441000000,0.000262687000000,0.015258823000000,0.000263872000000,0.000223971000000 +0.000146539000000,0.000279279000000,0.000045798000000,0.000081749000000,0.000195922000000,0.000348020000000,0.000067132000000,0.000138242000000,0.000107033000000,0.000082934000000,0.000288365000000,0.000271378000000,0.000326291000000,0.000257156000000,0.013954726000000,0.000343674000000,0.014720354000000,0.000261107000000,0.000208564000000 +0.000147329000000,0.000260317000000,0.000048168000000,0.000080959000000,0.000195922000000,0.000208564000000,0.000054885000000,0.000141403000000,0.000110588000000,0.000071478000000,0.000283625000000,0.000274144000000,0.000275724000000,0.000257551000000,0.014453688000000,0.000261897000000,0.014530725000000,0.000263477000000,0.000216859000000 +0.000147724000000,0.000263477000000,0.000048168000000,0.000097946000000,0.000196317000000,0.000171823000000,0.000054490000000,0.000142193000000,0.000107032000000,0.000073453000000,0.000360267000000,0.000343675000000,0.000274934000000,0.000235032000000,0.013671071000000,0.000289946000000,0.015478478000000,0.000391872000000,0.000218440000000 +0.000146144000000,0.000261897000000,0.000048168000000,0.000081354000000,0.000244909000000,0.000171428000000,0.000053304000000,0.000138242000000,0.000112563000000,0.000071872000000,0.000408070000000,0.000267428000000,0.000589403000000,0.000259527000000,0.013776948000000,0.000256365000000,0.015434626000000,0.000260711000000,0.000207774000000 +0.000147724000000,0.000260317000000,0.000045798000000,0.000081353000000,0.000196317000000,0.000171033000000,0.000056464000000,0.000138637000000,0.000108613000000,0.000070687000000,0.000304958000000,0.000262292000000,0.000288761000000,0.000331823000000,0.013917984000000,0.000263082000000,0.014672947000000,0.000295082000000,0.000217255000000 +0.000180119000000,0.000305353000000,0.000093206000000,0.000080958000000,0.000196317000000,0.000193156000000,0.000053304000000,0.000138243000000,0.000107428000000,0.000070292000000,0.000292711000000,0.000261502000000,0.000364613000000,0.000268218000000,0.016248057000000,0.000294687000000,0.014650428000000,0.000270983000000,0.000218440000000 +0.000146539000000,0.000262291000000,0.000050538000000,0.000081354000000,0.000229502000000,0.000171428000000,0.000055280000000,0.000178539000000,0.000107033000000,0.000069502000000,0.000294687000000,0.000263872000000,0.000341700000000,0.000258341000000,0.014841243000000,0.000261107000000,0.014634231000000,0.000517502000000,0.000218045000000 +0.000146144000000,0.000315230000000,0.000048169000000,0.000081353000000,0.000201452000000,0.000171823000000,0.000068316000000,0.000138637000000,0.000107033000000,0.000069897000000,0.000288366000000,0.000340119000000,0.000274539000000,0.000295872000000,0.015398675000000,0.000261106000000,0.014559564000000,0.000461798000000,0.000217255000000 +0.000145353000000,0.000291922000000,0.000045403000000,0.000116514000000,0.000194736000000,0.000171428000000,0.000055279000000,0.000139823000000,0.000141008000000,0.000069897000000,0.000310489000000,0.000277304000000,0.000272168000000,0.000204613000000,0.014243120000000,0.000290341000000,0.014861391000000,0.000322341000000,0.000209354000000 +0.000146539000000,0.000283625000000,0.000045798000000,0.000081354000000,0.000195131000000,0.000172613000000,0.000073452000000,0.000139033000000,0.000106638000000,0.000071082000000,0.000284415000000,0.000272958000000,0.000275328000000,0.000258341000000,0.014309096000000,0.000261897000000,0.014635811000000,0.000297452000000,0.000207379000000 +0.000146539000000,0.000277304000000,0.000048168000000,0.000081749000000,0.000194736000000,0.000172218000000,0.000066737000000,0.000141007000000,0.000108218000000,0.000071872000000,0.000283625000000,0.000298242000000,0.000273354000000,0.000328267000000,0.014956996000000,0.000259131000000,0.014476996000000,0.000259922000000,0.000219625000000 +0.000148119000000,0.000276909000000,0.000045403000000,0.000082144000000,0.000195527000000,0.000169847000000,0.000055675000000,0.000138637000000,0.000109008000000,0.000071082000000,0.000291526000000,0.000309699000000,0.000273748000000,0.000259131000000,0.014259318000000,0.000259527000000,0.015121737000000,0.000284415000000,0.000218045000000 +0.000146144000000,0.000312070000000,0.000052910000000,0.000080564000000,0.000195132000000,0.000171822000000,0.000054490000000,0.000138638000000,0.000109798000000,0.000071477000000,0.000291526000000,0.000277304000000,0.000277304000000,0.000244909000000,0.013733096000000,0.000257946000000,0.014309095000000,0.000262292000000,0.000220020000000 +0.000146144000000,0.000276119000000,0.000082144000000,0.000081354000000,0.000229502000000,0.000206588000000,0.000053699000000,0.000138242000000,0.000108218000000,0.000070291000000,0.000320761000000,0.000270588000000,0.000278489000000,0.000276514000000,0.014015960000000,0.000292316000000,0.014831762000000,0.000265058000000,0.000216859000000 +0.000180909000000,0.000349205000000,0.000045798000000,0.000080958000000,0.000194737000000,0.000170242000000,0.000117304000000,0.000138638000000,0.000109008000000,0.000103477000000,0.000288761000000,0.000276514000000,0.000277699000000,0.000264267000000,0.014704552000000,0.000258737000000,0.016408847000000,0.000296267000000,0.000206983000000 +0.000146144000000,0.000262686000000,0.000048564000000,0.000216860000000,0.000195922000000,0.000171032000000,0.000054094000000,0.000218835000000,0.000107033000000,0.000084514000000,0.000285600000000,0.000344069000000,0.000277699000000,0.000272958000000,0.014133293000000,0.000258341000000,0.015528650000000,0.000264662000000,0.000226737000000 +0.000146934000000,0.000260316000000,0.000048168000000,0.000102292000000,0.000196316000000,0.000171823000000,0.000053700000000,0.000151675000000,0.000107033000000,0.000071477000000,0.000289156000000,0.000269007000000,0.000277304000000,0.000265452000000,0.013984355000000,0.000293502000000,0.014584453000000,0.000344069000000,0.000206984000000 +0.000147329000000,0.000259526000000,0.000045798000000,0.000096761000000,0.000449946000000,0.000174193000000,0.000054095000000,0.000138638000000,0.000109008000000,0.000070292000000,0.000276119000000,0.000271773000000,0.000272563000000,0.000248069000000,0.014576947000000,0.000257551000000,0.015246576000000,0.000259921000000,0.000207773000000 +0.000145749000000,0.000298637000000,0.000046194000000,0.000080959000000,0.000208958000000,0.000171823000000,0.000057255000000,0.000139032000000,0.000109008000000,0.000071082000000,0.000319970000000,0.000302588000000,0.000273353000000,0.000298637000000,0.013931812000000,0.000259131000000,0.014072058000000,0.000322341000000,0.000210539000000 +0.000160366000000,0.000262292000000,0.000046194000000,0.000081354000000,0.000214094000000,0.000170243000000,0.000055279000000,0.000143378000000,0.000154440000000,0.000090045000000,0.000273354000000,0.000266637000000,0.000274144000000,0.000234242000000,0.013772997000000,0.000291921000000,0.016132304000000,0.000262686000000,0.000216860000000 +0.000147329000000,0.000295477000000,0.000045798000000,0.000080958000000,0.000197502000000,0.000172613000000,0.000055674000000,0.000138243000000,0.000106638000000,0.000069896000000,0.000267032000000,0.000269008000000,0.000273354000000,0.000264662000000,0.014766182000000,0.000259526000000,0.015213391000000,0.000294291000000,0.000227526000000 +0.000147329000000,0.000260711000000,0.000048169000000,0.000080959000000,0.000195922000000,0.000206588000000,0.000054885000000,0.000139823000000,0.000108218000000,0.000071477000000,0.000275724000000,0.000269403000000,0.000273353000000,0.000583872000000,0.014060206000000,0.000382786000000,0.014849540000000,0.000261897000000,0.000220810000000 +0.000147329000000,0.000262292000000,0.000046193000000,0.000080168000000,0.000194736000000,0.000170638000000,0.000054490000000,0.000141008000000,0.000108613000000,0.000070292000000,0.000270984000000,0.000275329000000,0.000285600000000,0.000286785000000,0.014074824000000,0.000257946000000,0.014310280000000,0.000261106000000,0.000316415000000 +0.000179724000000,0.000294687000000,0.000046193000000,0.000080958000000,0.000278884000000,0.000172218000000,0.000054095000000,0.000139428000000,0.000107428000000,0.000076218000000,0.000338934000000,0.000361057000000,0.000273354000000,0.000267427000000,0.014233244000000,0.000260317000000,0.014975564000000,0.000266242000000,0.000207378000000 +0.000147329000000,0.000260711000000,0.000046193000000,0.000081749000000,0.000196711000000,0.000173798000000,0.000056465000000,0.000176563000000,0.000127181000000,0.000071477000000,0.000268613000000,0.000270983000000,0.000272958000000,0.000269403000000,0.014219022000000,0.000257946000000,0.014504256000000,0.000267032000000,0.000208958000000 +0.000146539000000,0.000297847000000,0.000045798000000,0.000083329000000,0.000194737000000,0.000208563000000,0.000055674000000,0.000144168000000,0.000110984000000,0.000071477000000,0.000276909000000,0.000270588000000,0.000273749000000,0.000274933000000,0.014077195000000,0.000258341000000,0.014565095000000,0.000264662000000,0.000208169000000 +0.000146539000000,0.000259922000000,0.000048169000000,0.000081749000000,0.000215674000000,0.000170638000000,0.000053304000000,0.000139427000000,0.000107033000000,0.000110193000000,0.000308909000000,0.000341304000000,0.000274143000000,0.000270193000000,0.013901787000000,0.000316020000000,0.015078280000000,0.000261107000000,0.000217255000000 +0.000146538000000,0.000329847000000,0.000047774000000,0.000081354000000,0.000195922000000,0.000172613000000,0.000054885000000,0.000141403000000,0.000107822000000,0.000071477000000,0.000268218000000,0.000269798000000,0.000297452000000,0.000245700000000,0.014305935000000,0.000291526000000,0.014832157000000,0.000374489000000,0.000216859000000 +0.000146144000000,0.000263082000000,0.000045798000000,0.000080959000000,0.000194736000000,0.000171823000000,0.000054490000000,0.000150489000000,0.000108613000000,0.000073058000000,0.000263082000000,0.000308119000000,0.000270983000000,0.000299032000000,0.013705837000000,0.000257156000000,0.014550478000000,0.000261107000000,0.000243328000000 +0.000146934000000,0.000297848000000,0.000045798000000,0.000081353000000,0.000194736000000,0.000349601000000,0.000067922000000,0.000148119000000,0.000106638000000,0.000071872000000,0.000289551000000,0.000275329000000,0.000274538000000,0.000270588000000,0.014114725000000,0.000290341000000,0.014869688000000,0.000293107000000,0.000217255000000 +0.000146934000000,0.000261502000000,0.000045799000000,0.000082144000000,0.000264662000000,0.000527773000000,0.000056464000000,0.000140218000000,0.000180514000000,0.000071477000000,0.000277304000000,0.000267427000000,0.000319181000000,0.000232662000000,0.014883910000000,0.000263082000000,0.014583663000000,0.000261106000000,0.000206983000000 +0.000147329000000,0.000258342000000,0.000049748000000,0.000081354000000,0.000194342000000,0.000332218000000,0.000057650000000,0.000139428000000,0.000107428000000,0.000071082000000,0.000319576000000,0.000357897000000,0.000258341000000,0.000299033000000,0.014153441000000,0.000258342000000,0.014592354000000,0.000370934000000,0.000219625000000 +0.000179724000000,0.000260712000000,0.000046193000000,0.000081354000000,0.000194736000000,0.000181699000000,0.000054489000000,0.000138243000000,0.000107428000000,0.000070292000000,0.000275724000000,0.000257551000000,0.000257551000000,0.000253601000000,0.013708997000000,0.000257551000000,0.014828997000000,0.000261897000000,0.000207773000000 +0.000146539000000,0.000264267000000,0.000048169000000,0.000081748000000,0.000274538000000,0.000183675000000,0.000054095000000,0.000139032000000,0.000108218000000,0.000085305000000,0.000267823000000,0.000276119000000,0.000256761000000,0.000263477000000,0.014060602000000,0.000256366000000,0.014774083000000,0.000308909000000,0.000216860000000 +0.000147724000000,0.000297057000000,0.000045798000000,0.000080169000000,0.000196316000000,0.000181304000000,0.000054094000000,0.000138638000000,0.000108612000000,0.000071477000000,0.000351970000000,0.000270193000000,0.000256365000000,0.000299033000000,0.014416947000000,0.000292711000000,0.014700601000000,0.000262686000000,0.000206588000000 +0.000147724000000,0.000263477000000,0.000045798000000,0.000081748000000,0.000196316000000,0.000181700000000,0.000088464000000,0.000139032000000,0.000198687000000,0.000071477000000,0.000270193000000,0.000270984000000,0.000292712000000,0.000274539000000,0.014099318000000,0.000258341000000,0.014150675000000,0.000261501000000,0.000260317000000 +0.000147329000000,0.000297452000000,0.000045798000000,0.000080959000000,0.000197106000000,0.000186045000000,0.000054884000000,0.000140613000000,0.000125601000000,0.000071478000000,0.000381206000000,0.000309699000000,0.000257551000000,0.000237008000000,0.014282626000000,0.000256365000000,0.014744058000000,0.000260712000000,0.000218045000000 +0.000147329000000,0.000261502000000,0.000083329000000,0.000080563000000,0.000264663000000,0.000228712000000,0.000054885000000,0.000143379000000,0.000108218000000,0.000071477000000,0.000507625000000,0.000265847000000,0.000261897000000,0.000301403000000,0.014504256000000,0.000295082000000,0.014413392000000,0.000259527000000,0.000208564000000 +0.000147329000000,0.000260317000000,0.000045798000000,0.000084119000000,0.000194736000000,0.000182885000000,0.000054490000000,0.000139823000000,0.000109008000000,0.000070292000000,0.000385156000000,0.000274144000000,0.000289946000000,0.000331428000000,0.014174379000000,0.000257156000000,0.014653589000000,0.000273353000000,0.000209354000000 +0.000146934000000,0.000261106000000,0.000048168000000,0.000080958000000,0.000195526000000,0.000181699000000,0.000054490000000,0.000138242000000,0.000108218000000,0.000090045000000,0.000275329000000,0.000448365000000,0.000326292000000,0.000305354000000,0.014050330000000,0.000258341000000,0.014768552000000,0.000261501000000,0.000208563000000 +0.000146934000000,0.000266242000000,0.000045798000000,0.000081749000000,0.000272168000000,0.000180910000000,0.000054884000000,0.000140218000000,0.000107032000000,0.000069502000000,0.000258736000000,0.000270193000000,0.000543575000000,0.000268218000000,0.014403120000000,0.000306934000000,0.014327268000000,0.000297057000000,0.000216859000000 +0.000181304000000,0.000497748000000,0.000046194000000,0.000082144000000,0.000195132000000,0.000185254000000,0.000053304000000,0.000139428000000,0.000108613000000,0.000073453000000,0.000259131000000,0.000317205000000,0.000271378000000,0.000265847000000,0.013520553000000,0.000259526000000,0.014638577000000,0.000261896000000,0.000246489000000 +0.000146539000000,0.000293896000000,0.000045403000000,0.000080958000000,0.000195526000000,0.000182095000000,0.000053304000000,0.000175378000000,0.000107033000000,0.000071477000000,0.000273353000000,0.000267033000000,0.000295872000000,0.000264662000000,0.013926281000000,0.000257156000000,0.014560749000000,0.000258737000000,0.000216860000000 +0.000147724000000,0.000258736000000,0.000048564000000,0.000080959000000,0.000194736000000,0.000181304000000,0.000120465000000,0.000139033000000,0.000107033000000,0.000071873000000,0.000306144000000,0.000277304000000,0.000257946000000,0.000270983000000,0.014386922000000,0.000260316000000,0.014933293000000,0.000261106000000,0.000212909000000 +0.000163527000000,0.000261897000000,0.000062391000000,0.000080959000000,0.000210144000000,0.000192761000000,0.000070687000000,0.000137848000000,0.000108613000000,0.000071477000000,0.000270983000000,0.000313255000000,0.000257551000000,0.000274144000000,0.014380601000000,0.000260712000000,0.014527169000000,0.000263872000000,0.000231477000000 +0.000180909000000,0.000261106000000,0.000050144000000,0.000082539000000,0.000194736000000,0.000205798000000,0.000067527000000,0.000143774000000,0.000157996000000,0.000070292000000,0.000268612000000,0.000270588000000,0.000292711000000,0.000303774000000,0.013886380000000,0.000293106000000,0.015071564000000,0.000276514000000,0.000207378000000 +0.000147724000000,0.000264662000000,0.000045799000000,0.000081353000000,0.000196711000000,0.000171032000000,0.000054885000000,0.000141403000000,0.000108218000000,0.000117304000000,0.000327477000000,0.000279279000000,0.000256761000000,0.000276514000000,0.014627910000000,0.000257946000000,0.014692305000000,0.000260316000000,0.000208959000000 +0.000146934000000,0.000293106000000,0.000050144000000,0.000081354000000,0.000278490000000,0.000170242000000,0.000054094000000,0.000139823000000,0.000114143000000,0.000071477000000,0.000274538000000,0.000274934000000,0.000256366000000,0.000215675000000,0.014152256000000,0.000259132000000,0.014390479000000,0.000293502000000,0.000220811000000 +0.000148119000000,0.000261107000000,0.000048959000000,0.000081749000000,0.000194341000000,0.000171427000000,0.000054884000000,0.000140613000000,0.000108613000000,0.000069897000000,0.000276909000000,0.000259922000000,0.000263082000000,0.000297058000000,0.014020701000000,0.000306539000000,0.015105144000000,0.000260316000000,0.000219230000000 +0.000146144000000,0.000346045000000,0.000049354000000,0.000080563000000,0.000194342000000,0.000171823000000,0.000067921000000,0.000138638000000,0.000107032000000,0.000071477000000,0.000270983000000,0.000315625000000,0.000263477000000,0.000278094000000,0.014315022000000,0.000256761000000,0.014723910000000,0.000280465000000,0.000218440000000 +0.000180119000000,0.000259921000000,0.000048564000000,0.000081749000000,0.000196316000000,0.000171823000000,0.000053700000000,0.000139428000000,0.000147724000000,0.000070687000000,0.000277304000000,0.000269403000000,0.000291132000000,0.000320365000000,0.013919565000000,0.000291922000000,0.014785935000000,0.000300613000000,0.000207773000000 +0.000146934000000,0.000301403000000,0.000105453000000,0.000082539000000,0.000208959000000,0.000170637000000,0.000054094000000,0.000217650000000,0.000110983000000,0.000071082000000,0.000311279000000,0.000274539000000,0.000255971000000,0.000266637000000,0.014330824000000,0.000257156000000,0.014798576000000,0.000262687000000,0.000218045000000 +0.000146934000000,0.000259131000000,0.000146538000000,0.000081354000000,0.000195132000000,0.000173007000000,0.000055674000000,0.000215280000000,0.000108218000000,0.000070687000000,0.000273354000000,0.000308514000000,0.000256761000000,0.000245699000000,0.014063763000000,0.000261896000000,0.014933293000000,0.000261897000000,0.000207378000000 +0.000147329000000,0.000264662000000,0.000148909000000,0.000081354000000,0.000196711000000,0.000170242000000,0.000053699000000,0.000583872000000,0.000107428000000,0.000141008000000,0.000277699000000,0.000260711000000,0.000344464000000,0.000299032000000,0.014107614000000,0.000365008000000,0.014502280000000,0.000262686000000,0.000211329000000 +0.000180514000000,0.000261502000000,0.000083724000000,0.000081354000000,0.000359477000000,0.000171032000000,0.000054490000000,0.000174983000000,0.000107032000000,0.000069897000000,0.000284810000000,0.000261897000000,0.000261502000000,0.000259921000000,0.013722429000000,0.000255576000000,0.014484502000000,0.000262687000000,0.000252810000000 +0.000148514000000,0.000261501000000,0.000060020000000,0.000080958000000,0.000195526000000,0.000170242000000,0.000054095000000,0.000142588000000,0.000151279000000,0.000070292000000,0.000275329000000,0.000332612000000,0.000313255000000,0.000296267000000,0.013980405000000,0.000293502000000,0.014645292000000,0.000267033000000,0.000206984000000 +0.000146144000000,0.000274539000000,0.000045008000000,0.000080168000000,0.000194736000000,0.000172613000000,0.000056465000000,0.000142983000000,0.000108613000000,0.000069107000000,0.000416760000000,0.000271773000000,0.000260316000000,0.000278884000000,0.015100404000000,0.000288761000000,0.014457639000000,0.000301008000000,0.000210539000000 +0.000146539000000,0.000262292000000,0.000045798000000,0.000082144000000,0.000228317000000,0.000200267000000,0.000053304000000,0.000188810000000,0.000107033000000,0.000070687000000,0.000259921000000,0.000304958000000,0.000255971000000,0.000247279000000,0.014037689000000,0.000259131000000,0.014298429000000,0.000263477000000,0.000206588000000 +0.000147724000000,0.000331033000000,0.000047774000000,0.000081354000000,0.000203428000000,0.000171428000000,0.000054094000000,0.000159181000000,0.000110983000000,0.000071477000000,0.000262292000000,0.000270193000000,0.000274538000000,0.000301007000000,0.014127762000000,0.000308909000000,0.014668206000000,0.000294292000000,0.000209748000000 +0.000180119000000,0.000261502000000,0.000045798000000,0.000081353000000,0.000196711000000,0.000172218000000,0.000054095000000,0.000147724000000,0.000110984000000,0.000071872000000,0.000273748000000,0.000274934000000,0.000264267000000,0.000237008000000,0.014561934000000,0.000257551000000,0.014610923000000,0.000265057000000,0.000206983000000 +0.000146144000000,0.000309700000000,0.000045798000000,0.000082144000000,0.000214884000000,0.000171822000000,0.000054885000000,0.000258736000000,0.000170637000000,0.000104267000000,0.000270983000000,0.000305749000000,0.000319970000000,0.000266243000000,0.014364404000000,0.000257551000000,0.014201639000000,0.000404514000000,0.000217255000000 +0.000145749000000,0.000265057000000,0.000047773000000,0.000081749000000,0.000194736000000,0.000224366000000,0.000056465000000,0.000225551000000,0.000157996000000,0.000070292000000,0.000290341000000,0.000270984000000,0.000262291000000,0.000312465000000,0.015231959000000,0.000273749000000,0.014588799000000,0.000488662000000,0.000286391000000 +0.000147724000000,0.000259527000000,0.000082144000000,0.000080958000000,0.000278094000000,0.000171033000000,0.000054094000000,0.000143379000000,0.000107033000000,0.000070687000000,0.000353551000000,0.000268613000000,0.000278884000000,0.000245304000000,0.014915120000000,0.000322341000000,0.014719564000000,0.000321946000000,0.000222391000000 +0.000216070000000,0.000259526000000,0.000045403000000,0.000081748000000,0.000196316000000,0.000171032000000,0.000055675000000,0.000171822000000,0.000107428000000,0.000071082000000,0.000259526000000,0.000272168000000,0.000256366000000,0.000269008000000,0.014281836000000,0.000335773000000,0.014617243000000,0.000259921000000,0.000206588000000 +0.000146539000000,0.000263477000000,0.000048169000000,0.000096366000000,0.000229106000000,0.000170638000000,0.000116909000000,0.000138242000000,0.000109798000000,0.000070292000000,0.000325897000000,0.000271378000000,0.000259922000000,0.000288761000000,0.014247465000000,0.000258341000000,0.014271564000000,0.000295872000000,0.000217255000000 +0.000147329000000,0.000292712000000,0.000045798000000,0.000081353000000,0.000194736000000,0.000169847000000,0.000055675000000,0.000139428000000,0.000178934000000,0.000071477000000,0.000284020000000,0.000337354000000,0.000294292000000,0.000268217000000,0.014127367000000,0.000258341000000,0.015171514000000,0.000261897000000,0.000207773000000 +0.000146539000000,0.000271378000000,0.000045798000000,0.000080959000000,0.000195922000000,0.000170243000000,0.000056860000000,0.000140218000000,0.000107428000000,0.000069897000000,0.000302193000000,0.000270193000000,0.000258341000000,0.000347230000000,0.014325293000000,0.000292711000000,0.014741292000000,0.000258341000000,0.000209354000000 +0.000146934000000,0.000346045000000,0.000048168000000,0.000081353000000,0.000215280000000,0.000171033000000,0.000061996000000,0.000139428000000,0.000107427000000,0.000145354000000,0.000273749000000,0.000271773000000,0.000259526000000,0.000243724000000,0.014288157000000,0.000263477000000,0.014797391000000,0.000261897000000,0.000216069000000 +0.000148514000000,0.000263082000000,0.000045403000000,0.000081354000000,0.000196711000000,0.000171823000000,0.000055279000000,0.000141008000000,0.000109799000000,0.000071477000000,0.000274934000000,0.000301402000000,0.000261502000000,0.000271378000000,0.013763911000000,0.000261107000000,0.015069983000000,0.000322737000000,0.000209353000000 +0.000146934000000,0.000305354000000,0.000045798000000,0.000080959000000,0.000197896000000,0.000170637000000,0.000056860000000,0.000143378000000,0.000108612000000,0.000073453000000,0.000387131000000,0.000269008000000,0.000264267000000,0.000478390000000,0.014594330000000,0.000258736000000,0.015439366000000,0.000260317000000,0.000207773000000 +0.000147329000000,0.000263477000000,0.000107822000000,0.000083329000000,0.000198292000000,0.000170638000000,0.000053699000000,0.000139428000000,0.000146144000000,0.000069897000000,0.000275328000000,0.000274144000000,0.000293107000000,0.000248464000000,0.014174775000000,0.000259131000000,0.015201934000000,0.000265058000000,0.000208564000000 +0.000145749000000,0.000355131000000,0.000048958000000,0.000090045000000,0.000265057000000,0.000171822000000,0.000092810000000,0.000140612000000,0.000109798000000,0.000069897000000,0.000272563000000,0.000269007000000,0.000259527000000,0.000292711000000,0.013949195000000,0.000306144000000,0.015126478000000,0.000262687000000,0.000207773000000 +0.000238983000000,0.000276514000000,0.000047378000000,0.000081354000000,0.000194737000000,0.000170242000000,0.000054884000000,0.000140612000000,0.000108612000000,0.000070687000000,0.000272958000000,0.000272168000000,0.000349600000000,0.000244514000000,0.014309490000000,0.000258341000000,0.014563120000000,0.000264267000000,0.000210143000000 +0.000164317000000,0.000329453000000,0.000045798000000,0.000080958000000,0.000194736000000,0.000171823000000,0.000055675000000,0.000139428000000,0.000108613000000,0.000103872000000,0.000270983000000,0.000305749000000,0.000289551000000,0.000297057000000,0.014302774000000,0.000257551000000,0.014870083000000,0.000333008000000,0.000207773000000 diff --git a/docs/source/media/bench/lua bench tests luacppinterface.csv b/docs/source/media/bench/lua bench tests luacppinterface.csv new file mode 100644 index 00000000..fefdc0ab --- /dev/null +++ b/docs/source/media/bench/lua bench tests luacppinterface.csv @@ -0,0 +1,2001 @@ +"luacppinterface - global get","luacppinterface - global set","luacppinterface - c function","luacppinterface - table chained get","luacppinterface - table get","luacppinterface - member function calls (simple)","luacppinterface - c function through lua","luacppinterface - table chained set","luacppinterface - table set","luacppinterface - lua function","luacppinterface - member function calls","luacppinterface - return userdata" +0.000068713000000,0.000050541000000,0.000167479000000,0.000361059000000,0.000053701000000,0.000265059000000,0.000191183000000,0.000356714000000,0.000046590000000,0.000056861000000,0.000228714000000,0.000955232000000 +0.000048961000000,0.000047775000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000227133000000,0.000188812000000,0.000390689000000,0.000045800000000,0.000057257000000,0.000270590000000,0.000938639000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000394245000000,0.000048171000000,0.000226739000000,0.000224367000000,0.000354738000000,0.000046590000000,0.000056466000000,0.000226738000000,0.000875824000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000358689000000,0.000048170000000,0.000225158000000,0.000189997000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000227133000000,0.000913750000000 +0.000048171000000,0.000046591000000,0.000245701000000,0.000362244000000,0.000055282000000,0.000307726000000,0.000188812000000,0.000594935000000,0.000066343000000,0.000056467000000,0.000227923000000,0.000880170000000 +0.000048565000000,0.000046591000000,0.000164714000000,0.000428615000000,0.000048566000000,0.000227924000000,0.000225158000000,0.000354738000000,0.000120466000000,0.000058442000000,0.000264664000000,0.000922441000000 +0.000048961000000,0.000046195000000,0.000164713000000,0.000362245000000,0.000048170000000,0.000227134000000,0.000204220000000,0.000390294000000,0.000061603000000,0.000092417000000,0.000225948000000,0.000878985000000 +0.000052121000000,0.000046590000000,0.000165109000000,0.000471676000000,0.000048566000000,0.000237405000000,0.000224763000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000901899000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000420319000000,0.000053306000000,0.000278491000000,0.000188417000000,0.000464960000000,0.000046195000000,0.000058047000000,0.000226738000000,0.000869108000000 +0.000048566000000,0.000046590000000,0.000201059000000,0.000396220000000,0.000048171000000,0.000225158000000,0.000188022000000,0.000374491000000,0.000045800000000,0.000056467000000,0.000243331000000,0.000891231000000 +0.000048170000000,0.000046195000000,0.000167874000000,0.000360664000000,0.000048170000000,0.000224763000000,0.000188417000000,0.000358689000000,0.000082541000000,0.000058442000000,0.000227529000000,0.000838689000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000359874000000,0.000048566000000,0.000224368000000,0.000189602000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000235825000000,0.000864367000000 +0.000053306000000,0.000046590000000,0.000164714000000,0.000441652000000,0.000054886000000,0.000476022000000,0.000206986000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000264269000000,0.000900318000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000358689000000,0.000076615000000,0.000242541000000,0.000188417000000,0.000391874000000,0.000045801000000,0.000056862000000,0.000226344000000,0.000863578000000 +0.000048565000000,0.000046591000000,0.000164714000000,0.000370540000000,0.000048566000000,0.000224763000000,0.000192368000000,0.000368171000000,0.000046195000000,0.000056862000000,0.000224368000000,0.001262984000000 +0.000048171000000,0.000046591000000,0.000237405000000,0.000395034000000,0.000048170000000,0.000261899000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000281257000000,0.000867528000000 +0.000048171000000,0.000046591000000,0.000166294000000,0.000358689000000,0.000053702000000,0.000225553000000,0.000224368000000,0.000392269000000,0.000046195000000,0.000056071000000,0.000263479000000,0.000878194000000 +0.000048566000000,0.000047775000000,0.000165109000000,0.000430195000000,0.000048565000000,0.000238195000000,0.000188022000000,0.000355924000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000831972000000 +0.000119677000000,0.000046590000000,0.000161553000000,0.000359874000000,0.000048566000000,0.000225553000000,0.000189602000000,0.000355133000000,0.000046195000000,0.000056072000000,0.000227528000000,0.000971034000000 +0.000048566000000,0.000047380000000,0.000165109000000,0.000358689000000,0.000048565000000,0.000272170000000,0.000188418000000,0.000477207000000,0.000046196000000,0.000056467000000,0.000225553000000,0.000865157000000 +0.000048565000000,0.000046195000000,0.000201059000000,0.000719775000000,0.000055282000000,0.000226343000000,0.000189997000000,0.000354343000000,0.000045801000000,0.000092418000000,0.000299429000000,0.000864367000000 +0.000048566000000,0.000046196000000,0.000164713000000,0.000419528000000,0.000048566000000,0.000225553000000,0.000222787000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000233849000000,0.000897552000000 +0.000048170000000,0.000046986000000,0.000167874000000,0.000358293000000,0.000048565000000,0.000225158000000,0.000202639000000,0.000357109000000,0.000046195000000,0.000056466000000,0.000224763000000,0.000877799000000 +0.000052121000000,0.000046195000000,0.000161553000000,0.000358294000000,0.000048566000000,0.000265454000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000228318000000,0.000918096000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000393850000000,0.000054886000000,0.000226343000000,0.000189998000000,0.000439282000000,0.000045800000000,0.000058047000000,0.000261504000000,0.000930738000000 +0.000048170000000,0.000046195000000,0.000220022000000,0.000357898000000,0.000048171000000,0.000226343000000,0.000188022000000,0.000354343000000,0.000046195000000,0.000056072000000,0.000227924000000,0.000973404000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000368170000000,0.000048170000000,0.000224368000000,0.000224368000000,0.000390294000000,0.000046196000000,0.000056072000000,0.000227924000000,0.000884911000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000393849000000,0.000048171000000,0.000260714000000,0.000189207000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000225158000000,0.000849355000000 +0.000048171000000,0.000046195000000,0.000167874000000,0.000358294000000,0.000053306000000,0.000283232000000,0.000190393000000,0.000354738000000,0.000065553000000,0.000056467000000,0.000263084000000,0.000828812000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000445207000000,0.000048171000000,0.000223973000000,0.000188417000000,0.000426245000000,0.000045800000000,0.000056861000000,0.000231084000000,0.001057552000000 +0.000048170000000,0.000046590000000,0.000168269000000,0.000358294000000,0.000065158000000,0.000261504000000,0.000188417000000,0.000355923000000,0.000046196000000,0.000056467000000,0.000226739000000,0.000864763000000 +0.000048566000000,0.000046195000000,0.000182096000000,0.000399380000000,0.000048170000000,0.000226343000000,0.000300220000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000864368000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000393455000000,0.000053702000000,0.000225553000000,0.000224763000000,0.000403331000000,0.000045800000000,0.000056861000000,0.000263874000000,0.000886886000000 +0.000048171000000,0.000046195000000,0.000161554000000,0.000361454000000,0.000048565000000,0.000224368000000,0.000188418000000,0.000364615000000,0.000045800000000,0.000056862000000,0.000225948000000,0.000882145000000 +0.000048170000000,0.000046195000000,0.000167479000000,0.000396220000000,0.000048566000000,0.000263084000000,0.000188417000000,0.000493405000000,0.000046195000000,0.000056467000000,0.000227923000000,0.000914935000000 +0.000119677000000,0.000046590000000,0.000162738000000,0.000368170000000,0.000048565000000,0.000224762000000,0.000228713000000,0.000376467000000,0.000045405000000,0.000162343000000,0.000225553000000,0.000865947000000 +0.000048171000000,0.000046196000000,0.000248466000000,0.000358294000000,0.000053702000000,0.000225158000000,0.000215676000000,0.000400170000000,0.000046195000000,0.000069899000000,0.000270195000000,0.000866343000000 +0.000048566000000,0.000046196000000,0.000164714000000,0.000393849000000,0.000048565000000,0.000225553000000,0.000188417000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000225948000000,0.000873849000000 +0.000048566000000,0.000046591000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000259924000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000227529000000,0.000831577000000 +0.000048171000000,0.000046985000000,0.000165898000000,0.000357899000000,0.000048565000000,0.000222393000000,0.000188812000000,0.000447972000000,0.000045800000000,0.000056862000000,0.000230689000000,0.000838688000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000404516000000,0.000053702000000,0.000225948000000,0.000270590000000,0.000354738000000,0.000045800000000,0.000056861000000,0.000264664000000,0.000867923000000 +0.000048171000000,0.000046195000000,0.000201059000000,0.000358689000000,0.000048565000000,0.000225948000000,0.000188812000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000229108000000,0.000867528000000 +0.000048565000000,0.000046195000000,0.000165899000000,0.000432170000000,0.000048566000000,0.000283232000000,0.000189207000000,0.000391479000000,0.000046195000000,0.000058443000000,0.000227133000000,0.000867133000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000048565000000,0.000225948000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000869108000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000053702000000,0.000224763000000,0.000188417000000,0.000390689000000,0.000045801000000,0.000056467000000,0.000261899000000,0.000865552000000 +0.000051331000000,0.000046195000000,0.000162738000000,0.000439676000000,0.000048170000000,0.000227133000000,0.000271776000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000226739000000,0.001106540000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048171000000,0.000261504000000,0.000190788000000,0.000355529000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000922047000000 +0.000048565000000,0.000046590000000,0.000214886000000,0.000393849000000,0.000119676000000,0.000239776000000,0.000189207000000,0.000398195000000,0.000101504000000,0.000076220000000,0.000224368000000,0.000910590000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000360664000000,0.000053307000000,0.000224763000000,0.000189603000000,0.000355133000000,0.000046195000000,0.000122442000000,0.000264269000000,0.000895183000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000357898000000,0.000048565000000,0.000224368000000,0.000227133000000,0.000357109000000,0.000046195000000,0.000075429000000,0.000226738000000,0.000828022000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000393850000000,0.000048566000000,0.000331825000000,0.000205010000000,0.000393059000000,0.000046195000000,0.000072664000000,0.000227924000000,0.000933108000000 +0.000048170000000,0.000046196000000,0.000166294000000,0.000358294000000,0.000048565000000,0.000226343000000,0.000188418000000,0.000354343000000,0.000046195000000,0.000058047000000,0.000225949000000,0.000953652000000 +0.000124812000000,0.000046591000000,0.000197504000000,0.000358293000000,0.000055282000000,0.000223577000000,0.000188812000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000244121000000,0.000900713000000 +0.000146146000000,0.000046196000000,0.000164714000000,0.000397799000000,0.000048565000000,0.000225553000000,0.000189602000000,0.000354343000000,0.000045801000000,0.000056467000000,0.000227528000000,0.000900713000000 +0.000137454000000,0.000046195000000,0.000164713000000,0.000361059000000,0.000048566000000,0.000261108000000,0.000266640000000,0.000406097000000,0.000046195000000,0.000061998000000,0.000225948000000,0.000919281000000 +0.000118491000000,0.000046195000000,0.000165899000000,0.000406491000000,0.000048565000000,0.000225553000000,0.000188417000000,0.000393849000000,0.000046195000000,0.000056467000000,0.000246491000000,0.000901503000000 +0.000083726000000,0.000046590000000,0.000165899000000,0.000358294000000,0.000054097000000,0.000229503000000,0.000191182000000,0.000354738000000,0.000045800000000,0.000062393000000,0.000233850000000,0.000929553000000 +0.000067529000000,0.000046195000000,0.000165108000000,0.000368170000000,0.000048565000000,0.000236615000000,0.000188812000000,0.000391874000000,0.000045800000000,0.000056467000000,0.000229899000000,0.001344763000000 +0.000051331000000,0.000046985000000,0.000509998000000,0.000397800000000,0.000048566000000,0.000274145000000,0.000189603000000,0.000356714000000,0.000046590000000,0.000056467000000,0.000226343000000,0.000867133000000 +0.000061997000000,0.000046195000000,0.000274541000000,0.000358294000000,0.000048565000000,0.000223973000000,0.000238985000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000262689000000,0.000864368000000 +0.000051331000000,0.000046195000000,0.000246886000000,0.000400565000000,0.000053702000000,0.000237010000000,0.000189603000000,0.000425849000000,0.000045801000000,0.000092417000000,0.000319183000000,0.000880565000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358293000000,0.000048565000000,0.000225553000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056072000000,0.000229109000000,0.000960367000000 +0.000083726000000,0.000046195000000,0.000166293000000,0.000363825000000,0.000048566000000,0.000261898000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000895578000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000399775000000,0.000084121000000,0.000224368000000,0.000188418000000,0.000390689000000,0.000045800000000,0.000056071000000,0.000261109000000,0.000865948000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000358689000000,0.000054491000000,0.000224763000000,0.000241355000000,0.000358294000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000877010000000 +0.000048170000000,0.000046195000000,0.000197504000000,0.000432171000000,0.000048565000000,0.000225158000000,0.000189602000000,0.000390689000000,0.000082146000000,0.000056467000000,0.000227529000000,0.000882936000000 +0.000048566000000,0.000047381000000,0.000178936000000,0.000361454000000,0.000048566000000,0.000269009000000,0.000189603000000,0.000357898000000,0.000046195000000,0.000056862000000,0.000227134000000,0.000908615000000 +0.000048565000000,0.000046590000000,0.000167874000000,0.000361454000000,0.000048565000000,0.000224368000000,0.000189207000000,0.000362640000000,0.000045800000000,0.000056072000000,0.000332220000000,0.000837109000000 +0.000048961000000,0.000046195000000,0.000165108000000,0.000408466000000,0.000053702000000,0.000223973000000,0.000267824000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000886095000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000048565000000,0.000226343000000,0.000205010000000,0.000359084000000,0.000045800000000,0.000056862000000,0.000234244000000,0.000867923000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000357899000000,0.000048566000000,0.000261899000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000061998000000,0.000227528000000,0.000873058000000 +0.000048170000000,0.000062392000000,0.000202245000000,0.000518294000000,0.000048170000000,0.000227134000000,0.000188418000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000277306000000,0.000882540000000 +0.000048961000000,0.000077800000000,0.000164713000000,0.000357899000000,0.000053306000000,0.000225948000000,0.000188417000000,0.000357503000000,0.000045800000000,0.000056466000000,0.000227529000000,0.000866738000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000394244000000,0.000048171000000,0.000227133000000,0.000259924000000,0.000425454000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000877009000000 +0.000048170000000,0.000046196000000,0.000164713000000,0.000358294000000,0.000048171000000,0.000259133000000,0.000189208000000,0.000354738000000,0.000046195000000,0.000092813000000,0.000248467000000,0.000915725000000 +0.000048171000000,0.000046196000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000225948000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056071000000,0.000226343000000,0.001001058000000 +0.000048170000000,0.000046986000000,0.000234244000000,0.000429009000000,0.000053701000000,0.000224368000000,0.000188418000000,0.000410442000000,0.000046196000000,0.000056467000000,0.000237405000000,0.000870293000000 +0.000048566000000,0.000046590000000,0.000165899000000,0.000361849000000,0.000048566000000,0.000225158000000,0.000189997000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000880960000000 +0.000048565000000,0.000046590000000,0.000167479000000,0.000394244000000,0.000048566000000,0.000259528000000,0.000325503000000,0.000354343000000,0.000046195000000,0.000056861000000,0.000263479000000,0.000916911000000 +0.000049751000000,0.000048960000000,0.000167479000000,0.000359874000000,0.000048565000000,0.000225553000000,0.000395824000000,0.000372121000000,0.000045800000000,0.000056467000000,0.000226344000000,0.000830392000000 +0.000084516000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000073454000000,0.000276911000000,0.000204615000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000830392000000 +0.000048566000000,0.000046195000000,0.000183281000000,0.000461010000000,0.000048171000000,0.000260714000000,0.000261899000000,0.000389899000000,0.000045800000000,0.000056466000000,0.000228318000000,0.000867527000000 +0.000048565000000,0.000046591000000,0.000165108000000,0.000358294000000,0.000048170000000,0.000226343000000,0.000203035000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000262294000000,0.000867923000000 +0.000048171000000,0.000046196000000,0.000165109000000,0.000397405000000,0.000048566000000,0.000225158000000,0.000188023000000,0.000354343000000,0.000065554000000,0.000056467000000,0.000226344000000,0.000922046000000 +0.000048566000000,0.000046196000000,0.000162738000000,0.000358689000000,0.000053701000000,0.000225158000000,0.000188022000000,0.000412417000000,0.000045800000000,0.000056467000000,0.000226739000000,0.000865948000000 +0.000048565000000,0.000046591000000,0.000165109000000,0.000361849000000,0.000048171000000,0.000293503000000,0.000189603000000,0.000357503000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000867923000000 +0.000048566000000,0.000046590000000,0.000165899000000,0.000441652000000,0.000048170000000,0.000238195000000,0.000225948000000,0.000396614000000,0.000046196000000,0.000056862000000,0.000270195000000,0.001160664000000 +0.000048565000000,0.000046195000000,0.000236220000000,0.000358294000000,0.000048171000000,0.000223973000000,0.000188418000000,0.000842244000000,0.000046195000000,0.000056862000000,0.000226343000000,0.000916121000000 +0.000048566000000,0.000046195000000,0.000162343000000,0.000397405000000,0.000053701000000,0.000225158000000,0.000190788000000,0.000701207000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000867133000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000402935000000,0.000048566000000,0.000352763000000,0.000189207000000,0.000634047000000,0.000045800000000,0.000073059000000,0.000226343000000,0.000846195000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000358293000000,0.000048565000000,0.000259924000000,0.000189602000000,0.000376466000000,0.000046195000000,0.000056861000000,0.000298244000000,0.000873849000000 +0.000048170000000,0.000046195000000,0.000161158000000,0.000441652000000,0.000048171000000,0.000227134000000,0.000223973000000,0.000950095000000,0.000045800000000,0.000056467000000,0.000235825000000,0.000901898000000 +0.000048566000000,0.000046195000000,0.000252022000000,0.000358294000000,0.000053701000000,0.000236220000000,0.000189208000000,0.000534491000000,0.000045800000000,0.000056072000000,0.000227529000000,0.000924021000000 +0.000052121000000,0.000046590000000,0.000166294000000,0.000376072000000,0.000048566000000,0.000225553000000,0.000189603000000,0.000379627000000,0.000045800000000,0.000056466000000,0.000226739000000,0.000912170000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000387923000000,0.000048565000000,0.000223578000000,0.000188417000000,0.000376467000000,0.000046195000000,0.000056862000000,0.000270590000000,0.000916910000000 +0.000048566000000,0.000046985000000,0.000161948000000,0.000367775000000,0.000048566000000,0.000225158000000,0.000207776000000,0.000464565000000,0.000045800000000,0.000056072000000,0.000233454000000,0.000917305000000 +0.000048170000000,0.000046195000000,0.000165504000000,0.000692515000000,0.000053701000000,0.000224763000000,0.000276911000000,0.000376072000000,0.000045800000000,0.000056466000000,0.000227528000000,0.000915330000000 +0.000067134000000,0.000046196000000,0.000199084000000,0.000480368000000,0.000048566000000,0.000226738000000,0.000189207000000,0.000413997000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000912960000000 +0.000064763000000,0.000046196000000,0.000180121000000,0.000444022000000,0.000100319000000,0.000224763000000,0.000189603000000,0.000354739000000,0.000046195000000,0.000056467000000,0.000323923000000,0.000959577000000 +0.000048565000000,0.000046591000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000239380000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000241356000000,0.001338046000000 +0.000048566000000,0.000046196000000,0.000166294000000,0.000394639000000,0.000054096000000,0.000260713000000,0.000225948000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000883726000000 +0.000048565000000,0.000046196000000,0.000165504000000,0.000363034000000,0.000048566000000,0.000225553000000,0.000189207000000,0.000355528000000,0.000046196000000,0.000056467000000,0.000225948000000,0.000878984000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000357899000000,0.000048565000000,0.000222393000000,0.000188417000000,0.000393454000000,0.000081750000000,0.000056467000000,0.000263874000000,0.000869898000000 +0.000048170000000,0.000046195000000,0.000201455000000,0.000408467000000,0.000048566000000,0.000225948000000,0.000188417000000,0.000354738000000,0.000045801000000,0.000092418000000,0.000226343000000,0.000875429000000 +0.000048171000000,0.000046590000000,0.000167874000000,0.000357503000000,0.000054886000000,0.000261899000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000227529000000,0.000900713000000 +0.000048565000000,0.000049355000000,0.000166294000000,0.000394245000000,0.000048566000000,0.000242541000000,0.000234640000000,0.000420318000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000864367000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000358293000000,0.000049355000000,0.000225553000000,0.000189602000000,0.000357108000000,0.000046195000000,0.000056467000000,0.000308911000000,0.000873849000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000361454000000,0.000048170000000,0.000223973000000,0.000188417000000,0.000431380000000,0.000045800000000,0.000056467000000,0.000227924000000,0.000837503000000 +0.000048565000000,0.000048171000000,0.000197503000000,0.000393849000000,0.000054887000000,0.000262689000000,0.000188417000000,0.000358689000000,0.000045800000000,0.000056466000000,0.000227134000000,0.000899132000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000048565000000,0.000223973000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000262689000000,0.000867528000000 +0.000048565000000,0.000047775000000,0.000166294000000,0.000394639000000,0.000048566000000,0.000234245000000,0.000227924000000,0.000400566000000,0.000046196000000,0.000056467000000,0.000227133000000,0.000954047000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000367381000000,0.000048565000000,0.000224368000000,0.000189207000000,0.000380022000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000872664000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000358293000000,0.000053702000000,0.000259133000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000884910000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000394639000000,0.000048565000000,0.000222788000000,0.000189208000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000293109000000,0.000865553000000 +0.000048565000000,0.000046590000000,0.000201059000000,0.000358294000000,0.000082541000000,0.000224763000000,0.000188417000000,0.000355134000000,0.000046195000000,0.000056467000000,0.000242146000000,0.000927972000000 +0.000067924000000,0.000046591000000,0.000161553000000,0.000359874000000,0.000063578000000,0.000225158000000,0.000259528000000,0.000519478000000,0.000046195000000,0.000056467000000,0.000227133000000,0.000867133000000 +0.000081355000000,0.000046591000000,0.000164714000000,0.000394244000000,0.000054887000000,0.000274936000000,0.000188813000000,0.000504071000000,0.000045800000000,0.000056466000000,0.000225948000000,0.000877800000000 +0.000048566000000,0.000046196000000,0.000164714000000,0.000358294000000,0.000048565000000,0.000223577000000,0.000189602000000,0.000468516000000,0.000045801000000,0.000056467000000,0.000263874000000,0.000994738000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000394244000000,0.000048566000000,0.000222788000000,0.000189603000000,0.000524220000000,0.000046195000000,0.000073455000000,0.000270985000000,0.000837503000000 +0.000048566000000,0.000046195000000,0.000237800000000,0.000358293000000,0.000048565000000,0.000225948000000,0.000224368000000,0.000517108000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000828812000000 +0.000048565000000,0.000046195000000,0.000162343000000,0.000358294000000,0.000053701000000,0.000261504000000,0.000190788000000,0.000356713000000,0.000081751000000,0.000056862000000,0.000227528000000,0.000876614000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000431380000000,0.000048170000000,0.000225949000000,0.000189208000000,0.000374491000000,0.000046195000000,0.000056072000000,0.000298244000000,0.000865157000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048171000000,0.000225158000000,0.000189997000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000227133000000,0.000920466000000 +0.000051331000000,0.000046195000000,0.000164713000000,0.000361850000000,0.000048170000000,0.000223973000000,0.000188022000000,0.000357899000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000872664000000 +0.000048565000000,0.000046590000000,0.000203430000000,0.000394244000000,0.000053701000000,0.000268220000000,0.000265850000000,0.000427430000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000892812000000 +0.000048566000000,0.000046195000000,0.000220812000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000263874000000,0.000867923000000 +0.000048170000000,0.000046195000000,0.000174985000000,0.000393849000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000373701000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000913355000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000226343000000,0.000188417000000,0.000403331000000,0.000045801000000,0.000056862000000,0.000229899000000,0.000865158000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000359479000000,0.000053306000000,0.000352763000000,0.000189997000000,0.000355133000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000876219000000 +0.000048566000000,0.000047776000000,0.000201454000000,0.000394244000000,0.000048566000000,0.000244516000000,0.000239381000000,0.000430985000000,0.000046195000000,0.000056467000000,0.000316417000000,0.000898342000000 +0.000048170000000,0.000046196000000,0.000215282000000,0.000357899000000,0.000048171000000,0.000226738000000,0.000229503000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000865158000000 +0.000048566000000,0.000046591000000,0.000165108000000,0.000377652000000,0.000084516000000,0.000285997000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000227528000000,0.000866342000000 +0.000084121000000,0.000046195000000,0.000162739000000,0.000373701000000,0.000055281000000,0.000225158000000,0.000189603000000,0.000401356000000,0.000045800000000,0.000112961000000,0.000263479000000,0.000876614000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000415578000000,0.000048566000000,0.000229109000000,0.000208565000000,0.000354738000000,0.000046195000000,0.000096368000000,0.000228714000000,0.000844219000000 +0.000048566000000,0.000046985000000,0.000184072000000,0.000407677000000,0.000048565000000,0.000226738000000,0.000206985000000,0.000374492000000,0.000046196000000,0.000060022000000,0.000225949000000,0.000830787000000 +0.000052121000000,0.000046195000000,0.000180516000000,0.000357898000000,0.000048566000000,0.000306541000000,0.000188418000000,0.000399380000000,0.000045800000000,0.000056072000000,0.000225948000000,0.000910590000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000361060000000,0.000055281000000,0.000249256000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000286392000000,0.000884911000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000402540000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000395825000000,0.000045800000000,0.000056467000000,0.000242146000000,0.000901899000000 +0.000048565000000,0.000046590000000,0.000167874000000,0.000358688000000,0.000048566000000,0.000225158000000,0.000225553000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000227133000000,0.000864368000000 +0.000048171000000,0.000046195000000,0.000161553000000,0.000397405000000,0.000048565000000,0.000260714000000,0.000188023000000,0.000356714000000,0.000081751000000,0.000056467000000,0.000236219000000,0.000916516000000 +0.000054491000000,0.000046195000000,0.000206590000000,0.000362245000000,0.000054887000000,0.000225158000000,0.000188417000000,0.000428614000000,0.000045800000000,0.000056467000000,0.000264269000000,0.000872664000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000048170000000,0.000225158000000,0.000189208000000,0.000393059000000,0.000046195000000,0.000056466000000,0.000226343000000,0.000911380000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000394640000000,0.000048171000000,0.000225158000000,0.000191183000000,0.000391083000000,0.000046195000000,0.000056862000000,0.000223973000000,0.000863972000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000048170000000,0.000260713000000,0.000225553000000,0.000355528000000,0.000045801000000,0.000056467000000,0.000228714000000,0.001237305000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000394244000000,0.000053702000000,0.000225553000000,0.000189208000000,0.000354738000000,0.000046196000000,0.000056466000000,0.000298640000000,0.000868318000000 +0.000048565000000,0.000048171000000,0.000201059000000,0.000363035000000,0.000048565000000,0.000237800000000,0.000189207000000,0.000425454000000,0.000046195000000,0.000092812000000,0.000226738000000,0.000904663000000 +0.000048171000000,0.000046195000000,0.000161948000000,0.000357898000000,0.000048566000000,0.000224763000000,0.000188417000000,0.000355134000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000866738000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000519479000000,0.000048170000000,0.000272961000000,0.000188417000000,0.000405306000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000931528000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000372516000000,0.000109010000000,0.000226343000000,0.000224763000000,0.000354738000000,0.000045800000000,0.000058442000000,0.000274540000000,0.000877405000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000396614000000,0.000061603000000,0.000225158000000,0.000189602000000,0.000354739000000,0.000045800000000,0.000056467000000,0.000233454000000,0.000869108000000 +0.000084516000000,0.000046590000000,0.000168269000000,0.000358294000000,0.000048566000000,0.000225553000000,0.000189207000000,0.000625750000000,0.000046591000000,0.000056862000000,0.000225158000000,0.000884910000000 +0.000052121000000,0.000046195000000,0.000394639000000,0.000358294000000,0.000048565000000,0.000275726000000,0.000188418000000,0.000422688000000,0.000045800000000,0.000056467000000,0.000227923000000,0.000920861000000 +0.000048171000000,0.000046195000000,0.000199084000000,0.000393849000000,0.000054887000000,0.000226343000000,0.000191183000000,0.000642343000000,0.000045800000000,0.000056861000000,0.000328269000000,0.000877799000000 +0.000048565000000,0.000046985000000,0.000165109000000,0.000360269000000,0.000048565000000,0.000226738000000,0.000227528000000,0.000379627000000,0.000046195000000,0.000056862000000,0.000227923000000,0.000873454000000 +0.000048171000000,0.000046196000000,0.000165108000000,0.000357898000000,0.000048566000000,0.000224368000000,0.000203035000000,0.000469701000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000875824000000 +0.000048565000000,0.000046196000000,0.000201059000000,0.000394245000000,0.000048565000000,0.000296664000000,0.000188813000000,0.000375676000000,0.000045800000000,0.000056467000000,0.000259528000000,0.000839084000000 +0.000048566000000,0.000046196000000,0.000168269000000,0.000365800000000,0.000053702000000,0.000225158000000,0.000189997000000,0.000376467000000,0.000045800000000,0.000056467000000,0.000243726000000,0.000828022000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000429009000000,0.000048565000000,0.000223973000000,0.000189602000000,0.000376071000000,0.000084121000000,0.000056467000000,0.000231084000000,0.000829602000000 +0.000048566000000,0.000046591000000,0.000167874000000,0.000360664000000,0.000048566000000,0.000225948000000,0.000224368000000,0.000376071000000,0.000093998000000,0.000056862000000,0.000226738000000,0.000910590000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000048565000000,0.000262689000000,0.000188418000000,0.000385158000000,0.000077800000000,0.000056467000000,0.000303380000000,0.000923232000000 +0.000048566000000,0.000046195000000,0.000201455000000,0.000406886000000,0.000053307000000,0.000225158000000,0.000189998000000,0.000376072000000,0.000048960000000,0.000073455000000,0.000457849000000,0.000914541000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000358294000000,0.000048170000000,0.000223972000000,0.000189602000000,0.000419133000000,0.000060023000000,0.000056466000000,0.000241751000000,0.000992763000000 +0.000048566000000,0.000046195000000,0.000167479000000,0.000449158000000,0.000048171000000,0.000226343000000,0.000189603000000,0.000379232000000,0.000046195000000,0.000056467000000,0.000264664000000,0.000864368000000 +0.000048565000000,0.000046590000000,0.000162738000000,0.000358293000000,0.000048170000000,0.000308516000000,0.000225553000000,0.000375676000000,0.000045800000000,0.000058442000000,0.000225553000000,0.000865948000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000073060000000,0.000224763000000,0.000189603000000,0.000376467000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000863577000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000448763000000,0.000048566000000,0.000225553000000,0.000189208000000,0.000376071000000,0.000045800000000,0.000056862000000,0.000225949000000,0.000880960000000 +0.000048170000000,0.000046195000000,0.000201059000000,0.000358689000000,0.000048170000000,0.000223577000000,0.000188022000000,0.000413998000000,0.000046195000000,0.000056466000000,0.000263479000000,0.000871479000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000490639000000,0.000048961000000,0.000239380000000,0.000188418000000,0.000376072000000,0.000045801000000,0.000056467000000,0.000230294000000,0.001289059000000 +0.000064368000000,0.000046590000000,0.000165109000000,0.000360269000000,0.000053306000000,0.000226343000000,0.000224368000000,0.000384368000000,0.000045800000000,0.000056467000000,0.000279676000000,0.000869109000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000360269000000,0.000048566000000,0.000225553000000,0.000188812000000,0.000376466000000,0.000046195000000,0.000062392000000,0.000229503000000,0.000875824000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000437701000000,0.000048565000000,0.000225949000000,0.000189207000000,0.000376862000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000999478000000 +0.000048170000000,0.000046195000000,0.000246491000000,0.000358294000000,0.000048171000000,0.000271776000000,0.000188417000000,0.000376072000000,0.000045800000000,0.000056862000000,0.000227528000000,0.000912565000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000411232000000,0.000053306000000,0.000225158000000,0.000188417000000,0.000376071000000,0.000046195000000,0.000056466000000,0.000225948000000,0.000907034000000 +0.000051331000000,0.000123232000000,0.000162738000000,0.000360269000000,0.000048171000000,0.000226738000000,0.000349998000000,0.000376071000000,0.000079776000000,0.000056467000000,0.000226739000000,0.000865947000000 +0.000048565000000,0.000059628000000,0.000165108000000,0.000357899000000,0.000048565000000,0.000261503000000,0.000204615000000,0.000411232000000,0.000061207000000,0.000099924000000,0.000264269000000,0.000889651000000 +0.000082146000000,0.000046196000000,0.000165109000000,0.000403725000000,0.000048566000000,0.000239380000000,0.000189207000000,0.000376072000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000908614000000 +0.000051331000000,0.000046591000000,0.000201059000000,0.000357898000000,0.000053701000000,0.000224368000000,0.000189207000000,0.000376072000000,0.000045801000000,0.000056467000000,0.000228319000000,0.000826047000000 +0.000061602000000,0.000046195000000,0.000165109000000,0.000378046000000,0.000048171000000,0.000223973000000,0.000225158000000,0.000414787000000,0.000046195000000,0.000056862000000,0.000226739000000,0.000893997000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000654195000000,0.000048170000000,0.000283232000000,0.000188417000000,0.000376071000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000872269000000 +0.000048170000000,0.000046195000000,0.000165899000000,0.000394244000000,0.000048171000000,0.000226343000000,0.000188022000000,0.000425849000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000901504000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000360269000000,0.000054096000000,0.000223973000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000228318000000,0.000878195000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000362244000000,0.000048171000000,0.000225553000000,0.000189603000000,0.000355923000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000901504000000 +0.000048566000000,0.000046195000000,0.000202244000000,0.000429405000000,0.000066343000000,0.000267824000000,0.000242936000000,0.000390294000000,0.000046195000000,0.000056467000000,0.000262293000000,0.000866738000000 +0.000048170000000,0.000046195000000,0.000165899000000,0.000358294000000,0.000048565000000,0.000277306000000,0.000188417000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000227924000000,0.000949305000000 +0.000067924000000,0.000046195000000,0.000166293000000,0.000398195000000,0.000053702000000,0.000229899000000,0.000190788000000,0.000504072000000,0.000045800000000,0.000056467000000,0.000233455000000,0.000870688000000 +0.000080960000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000235825000000,0.000189603000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000248862000000,0.001357009000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000357898000000,0.000048171000000,0.000309306000000,0.000209356000000,0.000357504000000,0.000046195000000,0.000056862000000,0.000226343000000,0.000864368000000 +0.000048170000000,0.000046195000000,0.000198294000000,0.000445997000000,0.000048170000000,0.000223972000000,0.000221602000000,0.000406096000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000899923000000 +0.000051331000000,0.000046195000000,0.000161948000000,0.000357504000000,0.000053307000000,0.000237405000000,0.000189603000000,0.000354343000000,0.000046195000000,0.000076220000000,0.000223183000000,0.000903478000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000359479000000,0.000048565000000,0.000245306000000,0.000189603000000,0.000390688000000,0.000046195000000,0.000089257000000,0.000262294000000,0.000869108000000 +0.000048566000000,0.000046986000000,0.000165503000000,0.000404516000000,0.000048171000000,0.000225948000000,0.000188417000000,0.000357504000000,0.000046196000000,0.000056467000000,0.000225553000000,0.000915725000000 +0.000048170000000,0.000046591000000,0.000165109000000,0.000357899000000,0.000048170000000,0.000223973000000,0.000265455000000,0.000378837000000,0.000082145000000,0.000056862000000,0.000224763000000,0.000913355000000 +0.000048171000000,0.000046591000000,0.000161553000000,0.000432960000000,0.000053307000000,0.000225158000000,0.000189602000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000883331000000 +0.000048565000000,0.000046195000000,0.000258343000000,0.000358294000000,0.000048170000000,0.000244911000000,0.000189602000000,0.000357504000000,0.000046196000000,0.000056467000000,0.000263874000000,0.000918491000000 +0.000048566000000,0.000047775000000,0.000161948000000,0.000358689000000,0.000048171000000,0.000649059000000,0.000267035000000,0.000355133000000,0.000046195000000,0.000062392000000,0.000227529000000,0.000883330000000 +0.000048170000000,0.000046195000000,0.000167874000000,0.000398195000000,0.000048170000000,0.000297849000000,0.000348417000000,0.000432565000000,0.000045800000000,0.000056467000000,0.000229898000000,0.000887676000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000053702000000,0.000223578000000,0.000189602000000,0.000356713000000,0.000045800000000,0.000056862000000,0.000226738000000,0.000875429000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000429405000000,0.000067528000000,0.000225948000000,0.000189208000000,0.000389899000000,0.000046195000000,0.000056467000000,0.000303380000000,0.000867528000000 +0.000048566000000,0.000046195000000,0.000201059000000,0.000358293000000,0.000065553000000,0.000225553000000,0.000188022000000,0.000355923000000,0.000046195000000,0.000056467000000,0.000244911000000,0.001111676000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000357899000000,0.000063182000000,0.000273750000000,0.000188417000000,0.000356713000000,0.000045800000000,0.000056862000000,0.000227134000000,0.000884911000000 +0.000048566000000,0.000046195000000,0.000215281000000,0.000466146000000,0.000053307000000,0.000225948000000,0.000259924000000,0.000506047000000,0.000046196000000,0.000056467000000,0.000227134000000,0.000899527000000 +0.000067923000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000131528000000,0.000227528000000,0.000188812000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000547528000000,0.000892417000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000440071000000,0.000084121000000,0.000223183000000,0.000189603000000,0.000403331000000,0.000046195000000,0.000092417000000,0.000303380000000,0.000869503000000 +0.000048566000000,0.000046195000000,0.000237405000000,0.000358689000000,0.000078590000000,0.000262294000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000056861000000,0.000226343000000,0.000875824000000 +0.000048565000000,0.000046196000000,0.000176566000000,0.000358294000000,0.000055282000000,0.000224368000000,0.000188417000000,0.000357899000000,0.000045800000000,0.000056072000000,0.000253998000000,0.000854095000000 +0.000048171000000,0.000046591000000,0.000165899000000,0.000394639000000,0.000048565000000,0.000224763000000,0.000205800000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000227529000000,0.000831973000000 +0.000048170000000,0.000046196000000,0.000167875000000,0.000357898000000,0.000048566000000,0.000223183000000,0.000190787000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000227528000000,0.000868318000000 +0.000049356000000,0.000048961000000,0.000168270000000,0.000361850000000,0.000049750000000,0.000261109000000,0.000189208000000,0.000390294000000,0.000045801000000,0.000056467000000,0.000269010000000,0.000905848000000 +0.000048565000000,0.000046195000000,0.000211725000000,0.000432960000000,0.000055282000000,0.000227134000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000868318000000 +0.000048171000000,0.000046985000000,0.000164714000000,0.000363430000000,0.000048171000000,0.000224368000000,0.000225158000000,0.000354343000000,0.000045800000000,0.000056861000000,0.000227923000000,0.000895182000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000395429000000,0.000048565000000,0.000225948000000,0.000188417000000,0.000393454000000,0.000082146000000,0.000056467000000,0.000225553000000,0.000863577000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000357108000000,0.000048566000000,0.000345256000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261899000000,0.000872664000000 +0.000048170000000,0.000046196000000,0.000163133000000,0.000358294000000,0.000055281000000,0.000252417000000,0.000188812000000,0.000354738000000,0.000045800000000,0.000058047000000,0.000226738000000,0.000867133000000 +0.000068714000000,0.000046196000000,0.000164714000000,0.000562540000000,0.000138244000000,0.000236615000000,0.000189602000000,0.000390688000000,0.000046195000000,0.000057652000000,0.000225553000000,0.000864762000000 +0.000113355000000,0.000046196000000,0.000452713000000,0.000358688000000,0.000154837000000,0.000224368000000,0.000260714000000,0.000354344000000,0.000046195000000,0.000058442000000,0.000233850000000,0.000865948000000 +0.000048171000000,0.000046196000000,0.000202245000000,0.000448368000000,0.000082936000000,0.000259923000000,0.000188022000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000263084000000,0.000874243000000 +0.000048170000000,0.000046590000000,0.000162343000000,0.000361059000000,0.000057652000000,0.000225158000000,0.000191182000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000864367000000 +0.000048566000000,0.000046590000000,0.000207380000000,0.000394244000000,0.000051331000000,0.000227528000000,0.000189207000000,0.000354738000000,0.000045801000000,0.000090047000000,0.000226343000000,0.000991972000000 +0.000071874000000,0.000046195000000,0.000166294000000,0.000358294000000,0.000051331000000,0.000225158000000,0.000189603000000,0.000466541000000,0.000046195000000,0.000056467000000,0.000226344000000,0.000867922000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000358293000000,0.000062393000000,0.000263874000000,0.000223973000000,0.000369356000000,0.000045800000000,0.000056862000000,0.000339726000000,0.000846985000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000429009000000,0.000055281000000,0.000236615000000,0.000189998000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000976170000000 +0.000052121000000,0.000046195000000,0.000165898000000,0.000358294000000,0.000048171000000,0.000225553000000,0.000189602000000,0.000371331000000,0.000045800000000,0.000057257000000,0.000226738000000,0.000873059000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000048170000000,0.000223578000000,0.000188417000000,0.000355923000000,0.000046195000000,0.000056467000000,0.000227133000000,0.000916120000000 +0.000048566000000,0.000046195000000,0.000233059000000,0.000394244000000,0.000048171000000,0.000261108000000,0.000188417000000,0.000397010000000,0.000046195000000,0.000056467000000,0.000269404000000,0.000864367000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000360664000000,0.000073849000000,0.000225158000000,0.000225948000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000227528000000,0.000898738000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000397009000000,0.000051331000000,0.000225949000000,0.000189207000000,0.000354739000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000868713000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000225158000000,0.000189602000000,0.000524614000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000929158000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000048566000000,0.000275331000000,0.000189603000000,0.000536071000000,0.000045800000000,0.000056467000000,0.000263479000000,0.000876614000000 +0.000048170000000,0.000046195000000,0.000216467000000,0.000429405000000,0.000054886000000,0.000224762000000,0.000189208000000,0.000414392000000,0.000082146000000,0.000056466000000,0.000226739000000,0.001374787000000 +0.000048566000000,0.000046591000000,0.000165109000000,0.000360664000000,0.000048566000000,0.000225553000000,0.000302195000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000876219000000 +0.000048170000000,0.000046591000000,0.000166293000000,0.000404121000000,0.000048565000000,0.000222787000000,0.000221603000000,0.000493404000000,0.000046590000000,0.000056862000000,0.000227528000000,0.000884515000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000363825000000,0.000049751000000,0.000297059000000,0.000188417000000,0.000447973000000,0.000064763000000,0.000092417000000,0.000277701000000,0.000870293000000 +0.000048170000000,0.000046590000000,0.000167874000000,0.000357898000000,0.000055282000000,0.000260318000000,0.000188813000000,0.000764812000000,0.000061998000000,0.000056861000000,0.000227528000000,0.000916910000000 +0.000048566000000,0.000049355000000,0.000204615000000,0.000397010000000,0.000048170000000,0.000240961000000,0.000259528000000,0.000793651000000,0.000048566000000,0.000056467000000,0.000225158000000,0.000922046000000 +0.000048565000000,0.000046195000000,0.000178541000000,0.000413998000000,0.000048171000000,0.000299035000000,0.000189207000000,0.000491824000000,0.000058837000000,0.000056467000000,0.000225158000000,0.000864762000000 +0.000084516000000,0.000046195000000,0.000164714000000,0.000377651000000,0.000048170000000,0.000224368000000,0.000188418000000,0.000459035000000,0.000046195000000,0.000056466000000,0.000386343000000,0.000867133000000 +0.000048171000000,0.000047776000000,0.000161553000000,0.000358294000000,0.000055282000000,0.000226343000000,0.000188417000000,0.000378442000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000875429000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000048171000000,0.000223972000000,0.000189208000000,0.000410837000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000921651000000 +0.000048961000000,0.000047775000000,0.000165899000000,0.000397405000000,0.000048566000000,0.000278096000000,0.000262689000000,0.000376467000000,0.000046195000000,0.000056466000000,0.000323529000000,0.000867923000000 +0.000048170000000,0.000046590000000,0.000201059000000,0.000358689000000,0.000048566000000,0.000224763000000,0.000189208000000,0.000379627000000,0.000046195000000,0.000057257000000,0.000245306000000,0.000867923000000 +0.000048171000000,0.000046195000000,0.000161948000000,0.000366195000000,0.000054886000000,0.000222787000000,0.000189602000000,0.000453504000000,0.000045801000000,0.000057256000000,0.000225553000000,0.000834738000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000394244000000,0.000091232000000,0.000222788000000,0.000189208000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000864763000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000361059000000,0.000048170000000,0.000261504000000,0.000188812000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000264665000000,0.000873849000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000429405000000,0.000049751000000,0.000225158000000,0.000269009000000,0.000371726000000,0.000045800000000,0.000056467000000,0.000226739000000,0.000877010000000 +0.000048565000000,0.000046590000000,0.000249652000000,0.000362245000000,0.000054491000000,0.000225553000000,0.000188417000000,0.000363825000000,0.000045800000000,0.000056467000000,0.000225158000000,0.001219133000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358293000000,0.000048171000000,0.000223973000000,0.000189603000000,0.000455874000000,0.000045800000000,0.000056467000000,0.000227923000000,0.000864762000000 +0.000048170000000,0.000046196000000,0.000164713000000,0.000396219000000,0.000048170000000,0.000259134000000,0.000189602000000,0.000354738000000,0.000074245000000,0.000092812000000,0.000242146000000,0.000865552000000 +0.000048171000000,0.000046196000000,0.000166294000000,0.000362245000000,0.000048171000000,0.000226343000000,0.000259923000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000227529000000,0.000867528000000 +0.000048170000000,0.000088072000000,0.000162343000000,0.000357898000000,0.000054491000000,0.000225553000000,0.000191183000000,0.000393060000000,0.000045800000000,0.000056467000000,0.000227529000000,0.000924416000000 +0.000048566000000,0.000046590000000,0.000201454000000,0.000400566000000,0.000048171000000,0.000225948000000,0.000189208000000,0.000521849000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000830788000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000357898000000,0.000048171000000,0.000262294000000,0.000189207000000,0.000529355000000,0.000046195000000,0.000056862000000,0.000243331000000,0.000828417000000 +0.000050936000000,0.000046590000000,0.000164713000000,0.000403725000000,0.000048566000000,0.000223973000000,0.000188417000000,0.000353948000000,0.000046195000000,0.000056466000000,0.000227529000000,0.000903083000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000360664000000,0.000054491000000,0.000225158000000,0.000260714000000,0.000384763000000,0.000045800000000,0.000056862000000,0.000227134000000,0.000878195000000 +0.000117702000000,0.000045800000000,0.000165108000000,0.000361059000000,0.000048170000000,0.000224763000000,0.000189997000000,0.000376071000000,0.000045801000000,0.000056467000000,0.000246096000000,0.000873454000000 +0.000063578000000,0.000046196000000,0.000161553000000,0.000393849000000,0.000048171000000,0.000261504000000,0.000188417000000,0.000376071000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000867923000000 +0.000048565000000,0.000046196000000,0.000236615000000,0.000365799000000,0.000048170000000,0.000226343000000,0.000188813000000,0.000411627000000,0.000045800000000,0.000056467000000,0.000229898000000,0.000919676000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000396220000000,0.000054887000000,0.000226738000000,0.000259923000000,0.000377652000000,0.000045800000000,0.000056072000000,0.000225948000000,0.001042145000000 +0.000048565000000,0.000047776000000,0.000164713000000,0.000358294000000,0.000048565000000,0.000226343000000,0.000242145000000,0.000385948000000,0.000046195000000,0.000057257000000,0.000272170000000,0.000936269000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000068319000000,0.000262294000000,0.000189603000000,0.000376071000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000906639000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000571232000000,0.000049356000000,0.000225158000000,0.000189603000000,0.000376072000000,0.000045800000000,0.000056466000000,0.000227528000000,0.001172120000000 +0.000048566000000,0.000046195000000,0.000235035000000,0.000383577000000,0.000054492000000,0.000225553000000,0.000189602000000,0.000560565000000,0.000045801000000,0.000092417000000,0.000227528000000,0.000909009000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000406886000000,0.000048170000000,0.000228319000000,0.000266639000000,0.000519479000000,0.000046195000000,0.000058047000000,0.000271775000000,0.000865947000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000362244000000,0.000048171000000,0.000263874000000,0.000188418000000,0.000376466000000,0.000046195000000,0.000056466000000,0.000226738000000,0.000908614000000 +0.000052122000000,0.000046590000000,0.000164713000000,0.000361060000000,0.000048170000000,0.000237800000000,0.000188417000000,0.000376071000000,0.000045800000000,0.000056467000000,0.000225949000000,0.000874244000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000426639000000,0.000054887000000,0.000235824000000,0.000188023000000,0.000376467000000,0.000082146000000,0.000058442000000,0.000226343000000,0.000909404000000 +0.000048170000000,0.000046590000000,0.000236220000000,0.000360269000000,0.000048565000000,0.000225553000000,0.000188417000000,0.000376862000000,0.000045800000000,0.000056467000000,0.000263084000000,0.000884516000000 +0.000048566000000,0.000047381000000,0.000168269000000,0.000396615000000,0.000048171000000,0.000274541000000,0.000260714000000,0.000380417000000,0.000046195000000,0.000058838000000,0.000227133000000,0.000921651000000 +0.000048170000000,0.000046591000000,0.000161948000000,0.000360269000000,0.000048170000000,0.000224368000000,0.000188023000000,0.000376467000000,0.000045800000000,0.000056072000000,0.000236220000000,0.000866343000000 +0.000054097000000,0.000046590000000,0.000164713000000,0.000417158000000,0.000054887000000,0.000225158000000,0.000188417000000,0.000376071000000,0.000046195000000,0.000056862000000,0.000228318000000,0.001033849000000 +0.000067528000000,0.000046195000000,0.000217652000000,0.000395035000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000377256000000,0.000045800000000,0.000056862000000,0.000263084000000,0.001329750000000 +0.000100319000000,0.000046590000000,0.000200664000000,0.000369750000000,0.000048171000000,0.000374096000000,0.000191183000000,0.000376072000000,0.000046196000000,0.000056862000000,0.000255578000000,0.000867133000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000393850000000,0.000048170000000,0.000239776000000,0.000261504000000,0.000376467000000,0.000046195000000,0.000056466000000,0.000228713000000,0.000839479000000 +0.000048566000000,0.000046590000000,0.000165898000000,0.000359084000000,0.000055281000000,0.000225553000000,0.000189207000000,0.000378442000000,0.000045800000000,0.000056862000000,0.000226738000000,0.000865158000000 +0.000048565000000,0.000047775000000,0.000165109000000,0.000358293000000,0.000048566000000,0.000274146000000,0.000189208000000,0.000377257000000,0.000045800000000,0.000056862000000,0.000263084000000,0.000888466000000 +0.000048171000000,0.000046195000000,0.000161553000000,0.000396219000000,0.000048565000000,0.000225158000000,0.000188417000000,0.000376071000000,0.000046195000000,0.000056466000000,0.000227529000000,0.000880564000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000358689000000,0.000067529000000,0.000222788000000,0.000246096000000,0.000376862000000,0.000046195000000,0.000073060000000,0.000225158000000,0.000878984000000 +0.000048566000000,0.000046195000000,0.000216467000000,0.000360664000000,0.000054887000000,0.000225948000000,0.000206986000000,0.000376072000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000880565000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000398590000000,0.000048170000000,0.000261109000000,0.000189602000000,0.000423874000000,0.000045801000000,0.000056466000000,0.000270195000000,0.000893997000000 +0.000048171000000,0.000046196000000,0.000168270000000,0.000358294000000,0.000048566000000,0.000224763000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056072000000,0.000225553000000,0.000927182000000 +0.000052122000000,0.000046196000000,0.000161554000000,0.000393849000000,0.000048565000000,0.000228713000000,0.000188418000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000227924000000,0.000882540000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000357898000000,0.000054886000000,0.000226343000000,0.000261899000000,0.000452714000000,0.000045800000000,0.000058442000000,0.000225158000000,0.000930343000000 +0.000048171000000,0.000046590000000,0.000201059000000,0.000357899000000,0.000048171000000,0.000263084000000,0.000189207000000,0.000389108000000,0.000045800000000,0.000056467000000,0.000396220000000,0.000881750000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000403726000000,0.000048170000000,0.000223973000000,0.000189602000000,0.000466935000000,0.000065948000000,0.000056466000000,0.000242541000000,0.000912565000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000048566000000,0.000224368000000,0.000188418000000,0.000649059000000,0.000061998000000,0.000056862000000,0.000225553000000,0.000850145000000 +0.000048171000000,0.000046195000000,0.000168269000000,0.000377257000000,0.000054886000000,0.000261899000000,0.000189602000000,0.000496960000000,0.000046195000000,0.000056467000000,0.000263479000000,0.000867528000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000426639000000,0.000048566000000,0.000259528000000,0.000261108000000,0.000354739000000,0.000045800000000,0.000056862000000,0.000231479000000,0.000866343000000 +0.000067529000000,0.000046195000000,0.000186837000000,0.000358689000000,0.000048565000000,0.000225553000000,0.000188418000000,0.000391874000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000864367000000 +0.000064368000000,0.000046590000000,0.000212121000000,0.000396220000000,0.000050146000000,0.000226343000000,0.000188812000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000226343000000,0.001005009000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000054887000000,0.000225553000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000299430000000,0.000868318000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000361849000000,0.000048565000000,0.000260318000000,0.000227924000000,0.000401356000000,0.000045800000000,0.000092813000000,0.000225948000000,0.000867133000000 +0.000048565000000,0.000046195000000,0.000167479000000,0.000412417000000,0.000048566000000,0.000227133000000,0.000219628000000,0.000354343000000,0.000046590000000,0.000056467000000,0.000227924000000,0.000934294000000 +0.000048566000000,0.000046591000000,0.000162344000000,0.000368171000000,0.000048170000000,0.000224368000000,0.000189602000000,0.000400170000000,0.000045800000000,0.000056071000000,0.000225554000000,0.000921256000000 +0.000048170000000,0.000046196000000,0.000201059000000,0.000394244000000,0.000073850000000,0.000225553000000,0.000189603000000,0.000358293000000,0.000046195000000,0.000056467000000,0.000262294000000,0.000969454000000 +0.000048171000000,0.000046196000000,0.000164713000000,0.000358294000000,0.000083331000000,0.000297059000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000829207000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000223578000000,0.000272565000000,0.000390689000000,0.000046196000000,0.000056466000000,0.000227134000000,0.000839083000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000393849000000,0.000048171000000,0.000222393000000,0.000188417000000,0.000362244000000,0.000045800000000,0.000056862000000,0.000229899000000,0.000865948000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000055281000000,0.000226344000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000280467000000,0.000928368000000 +0.000048171000000,0.000046195000000,0.000318787000000,0.000378442000000,0.000049751000000,0.000335380000000,0.000188022000000,0.000390294000000,0.000046195000000,0.000057257000000,0.000229504000000,0.000872269000000 +0.000048565000000,0.000046195000000,0.000424664000000,0.000390689000000,0.000048170000000,0.000226344000000,0.000189208000000,0.000355924000000,0.000046195000000,0.000058442000000,0.000227528000000,0.000866737000000 +0.000048566000000,0.000046195000000,0.000183281000000,0.000358293000000,0.000048565000000,0.000225948000000,0.000507627000000,0.000424664000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000875824000000 +0.000048170000000,0.000046195000000,0.000201059000000,0.000393850000000,0.000054887000000,0.000259133000000,0.000263874000000,0.000371726000000,0.000046196000000,0.000056072000000,0.000262294000000,0.000865553000000 +0.000050936000000,0.000046590000000,0.000162739000000,0.000358294000000,0.000048170000000,0.000241751000000,0.000203035000000,0.000354738000000,0.000081751000000,0.000056466000000,0.000226343000000,0.000867132000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000377256000000,0.000048566000000,0.000225158000000,0.000227133000000,0.000391084000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000886096000000 +0.000048961000000,0.000046195000000,0.000165109000000,0.000423873000000,0.000048565000000,0.000239380000000,0.000189207000000,0.000362639000000,0.000045800000000,0.000075035000000,0.000224368000000,0.000865553000000 +0.000084911000000,0.000046195000000,0.000165108000000,0.000357898000000,0.000054492000000,0.000260318000000,0.000189603000000,0.000357503000000,0.000046196000000,0.000072664000000,0.000300220000000,0.000967084000000 +0.000048171000000,0.000046985000000,0.000164714000000,0.000393850000000,0.000048565000000,0.000224368000000,0.000189207000000,0.000395430000000,0.000046195000000,0.000056467000000,0.000227134000000,0.000877800000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000048566000000,0.000225553000000,0.000188417000000,0.000357898000000,0.000046195000000,0.000056467000000,0.000227529000000,0.001912466000000 +0.000048566000000,0.000046591000000,0.000165899000000,0.000358294000000,0.000048565000000,0.000226343000000,0.000224368000000,0.000478787000000,0.000046195000000,0.000058047000000,0.000245307000000,0.000944170000000 +0.000048171000000,0.000046196000000,0.000161948000000,0.000394245000000,0.000055282000000,0.000314837000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000227923000000,0.000957997000000 +0.000048170000000,0.000046196000000,0.000164713000000,0.000361059000000,0.000084516000000,0.000309306000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000871874000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000395034000000,0.000048171000000,0.000225158000000,0.000189207000000,0.000514738000000,0.000046195000000,0.000062392000000,0.000225553000000,0.000900318000000 +0.000048565000000,0.000046195000000,0.000202244000000,0.000454688000000,0.000048170000000,0.000225158000000,0.000207776000000,0.000357899000000,0.000045800000000,0.000056467000000,0.000247676000000,0.000882935000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000358294000000,0.000054887000000,0.000266244000000,0.000190788000000,0.000391479000000,0.000045800000000,0.000061998000000,0.000260714000000,0.001628021000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000404516000000,0.000048565000000,0.000235825000000,0.000189603000000,0.000355528000000,0.000046195000000,0.000056072000000,0.000230294000000,0.000884120000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000361059000000,0.000048566000000,0.000237800000000,0.000189602000000,0.000374886000000,0.000046195000000,0.000056466000000,0.000226343000000,0.000867923000000 +0.000048565000000,0.000046195000000,0.000161948000000,0.000396615000000,0.000048565000000,0.000223973000000,0.000188812000000,0.000479577000000,0.000045800000000,0.000056862000000,0.000263874000000,0.000914541000000 +0.000051331000000,0.000046195000000,0.000181306000000,0.000377652000000,0.000055282000000,0.000321948000000,0.000226343000000,0.000354344000000,0.000045800000000,0.000056467000000,0.000223183000000,0.000880960000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000242145000000,0.000391083000000,0.000045800000000,0.000056466000000,0.000229109000000,0.000886096000000 +0.000048170000000,0.000046590000000,0.000165899000000,0.000412813000000,0.000048170000000,0.000225948000000,0.000188417000000,0.000354738000000,0.000046196000000,0.000092417000000,0.000225553000000,0.000889652000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000363824000000,0.000048566000000,0.000260318000000,0.000188417000000,0.000354343000000,0.000087281000000,0.000056467000000,0.000302590000000,0.000881355000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000358689000000,0.000054886000000,0.000225158000000,0.000189207000000,0.000394244000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000895972000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000443232000000,0.000048171000000,0.000225553000000,0.000261109000000,0.000354343000000,0.000045801000000,0.000056467000000,0.000280072000000,0.000914935000000 +0.000143381000000,0.000047776000000,0.000197899000000,0.000361059000000,0.000048170000000,0.000225553000000,0.000189998000000,0.000391084000000,0.000046195000000,0.000056862000000,0.000227529000000,0.000882935000000 +0.000052911000000,0.000065949000000,0.000167874000000,0.000397404000000,0.000048171000000,0.000280466000000,0.000189602000000,0.000362639000000,0.000045800000000,0.000056467000000,0.000266640000000,0.000879380000000 +0.000082936000000,0.000063182000000,0.000164713000000,0.000357898000000,0.000054886000000,0.000237010000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000073454000000,0.000265850000000,0.000882145000000 +0.000067529000000,0.000061208000000,0.000164714000000,0.000358294000000,0.000048566000000,0.000225949000000,0.000189603000000,0.000395825000000,0.000045800000000,0.000069899000000,0.000280072000000,0.000879380000000 +0.000051726000000,0.000046195000000,0.000165108000000,0.000441652000000,0.000084121000000,0.000225553000000,0.000259528000000,0.000354343000000,0.000046590000000,0.000062393000000,0.000299824000000,0.000924416000000 +0.000063183000000,0.000046590000000,0.000211726000000,0.000360664000000,0.000048171000000,0.000263479000000,0.000188417000000,0.000354739000000,0.000045800000000,0.000056071000000,0.000227528000000,0.000919676000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000398590000000,0.000055281000000,0.000225948000000,0.000188417000000,0.000393059000000,0.000045801000000,0.000056862000000,0.000227133000000,0.000887676000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000048171000000,0.000227134000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000227133000000,0.000866738000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048565000000,0.000223578000000,0.000215282000000,0.000398195000000,0.000046195000000,0.000056861000000,0.000266244000000,0.001003824000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000429405000000,0.000048171000000,0.000297454000000,0.000188022000000,0.000354739000000,0.000045800000000,0.000074640000000,0.000226738000000,0.000873453000000 +0.000048171000000,0.000046195000000,0.000162344000000,0.000358293000000,0.000054096000000,0.000224368000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000146541000000,0.000237010000000,0.000953651000000 +0.000048565000000,0.000046195000000,0.000248861000000,0.000398194000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000390689000000,0.000045800000000,0.000095578000000,0.000227529000000,0.000832368000000 +0.000048566000000,0.000046195000000,0.000167479000000,0.000358293000000,0.000048170000000,0.000223182000000,0.000190393000000,0.000354343000000,0.000046195000000,0.000060022000000,0.000511183000000,0.000863972000000 +0.000048960000000,0.000048961000000,0.000167874000000,0.000359479000000,0.000049751000000,0.000315232000000,0.000225553000000,0.000354343000000,0.000046196000000,0.000086491000000,0.000417552000000,0.000911380000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000598887000000,0.000054492000000,0.000240960000000,0.000189603000000,0.000425850000000,0.000045800000000,0.000056467000000,0.000261899000000,0.000873058000000 +0.000084516000000,0.000046590000000,0.000165108000000,0.000464170000000,0.000048170000000,0.000224368000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000228318000000,0.000882145000000 +0.000048565000000,0.000046195000000,0.000245306000000,0.000394244000000,0.000048171000000,0.000226343000000,0.000188418000000,0.000390689000000,0.000123627000000,0.000056467000000,0.000226343000000,0.000883725000000 +0.000048566000000,0.000046195000000,0.000165504000000,0.000361454000000,0.000049355000000,0.000296664000000,0.000188022000000,0.000354343000000,0.000098344000000,0.000056467000000,0.000225949000000,0.000980120000000 +0.000048565000000,0.000046195000000,0.000163134000000,0.000394639000000,0.000055282000000,0.000225553000000,0.000224763000000,0.000377652000000,0.000132318000000,0.000056466000000,0.000302195000000,0.000878590000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000362245000000,0.000048566000000,0.000236219000000,0.000189207000000,0.000409652000000,0.000153652000000,0.000056467000000,0.000225158000000,0.000997503000000 +0.000048565000000,0.000046590000000,0.000165899000000,0.000357899000000,0.000048170000000,0.000224368000000,0.000189998000000,0.000354738000000,0.000132713000000,0.000056862000000,0.000234245000000,0.000867923000000 +0.000048566000000,0.000046590000000,0.000202244000000,0.000449553000000,0.000083726000000,0.000237405000000,0.000188417000000,0.000391479000000,0.000132714000000,0.000056861000000,0.000225948000000,0.000886886000000 +0.000048170000000,0.000046195000000,0.000162738000000,0.000358293000000,0.000069504000000,0.000224763000000,0.000190787000000,0.000354738000000,0.000151676000000,0.000072664000000,0.000297850000000,0.000843824000000 +0.000048566000000,0.000046196000000,0.000164714000000,0.000363035000000,0.000048566000000,0.000227528000000,0.000222788000000,0.000354343000000,0.000139825000000,0.000056467000000,0.000226738000000,0.000893602000000 +0.000048565000000,0.000046591000000,0.000165899000000,0.000404121000000,0.000048565000000,0.000244911000000,0.000189603000000,0.000390689000000,0.000132714000000,0.000056467000000,0.000226343000000,0.000930737000000 +0.000048171000000,0.000046591000000,0.000161553000000,0.000358689000000,0.000049751000000,0.000243726000000,0.000188417000000,0.000354738000000,0.000124022000000,0.000056466000000,0.000235824000000,0.000862787000000 +0.000048170000000,0.000046591000000,0.000164713000000,0.000393849000000,0.000054886000000,0.000236219000000,0.000189602000000,0.000355923000000,0.000107035000000,0.000056467000000,0.000260714000000,0.000919675000000 +0.000052121000000,0.000046195000000,0.000218047000000,0.000357504000000,0.000048171000000,0.000225158000000,0.000189603000000,0.000427034000000,0.000079380000000,0.000056467000000,0.000227134000000,0.000873454000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000371331000000,0.000048170000000,0.000259528000000,0.000259923000000,0.000404516000000,0.000050541000000,0.000056862000000,0.000227134000000,0.000941800000000 +0.000048565000000,0.000046590000000,0.000161553000000,0.000405701000000,0.000048566000000,0.000224763000000,0.000188417000000,0.000390688000000,0.000063578000000,0.000056467000000,0.000269800000000,0.000893207000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000054887000000,0.000225158000000,0.000189603000000,0.000354739000000,0.000050541000000,0.000056467000000,0.000227528000000,0.000912960000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000413602000000,0.000048170000000,0.000226738000000,0.000189207000000,0.000354343000000,0.000050146000000,0.000056467000000,0.000225948000000,0.000864368000000 +0.000067923000000,0.000046195000000,0.000246886000000,0.000358293000000,0.000048566000000,0.000302985000000,0.000189207000000,0.000390689000000,0.000050541000000,0.000056467000000,0.000227133000000,0.001342787000000 +0.000064763000000,0.000046195000000,0.000164714000000,0.000357898000000,0.000048170000000,0.000239380000000,0.000274936000000,0.000354738000000,0.000108220000000,0.000056467000000,0.000263874000000,0.000871083000000 +0.000048171000000,0.000046195000000,0.000166293000000,0.000407282000000,0.000055677000000,0.000225158000000,0.000189603000000,0.000390689000000,0.000061997000000,0.000056467000000,0.000226738000000,0.000868318000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000363034000000,0.000048565000000,0.000225553000000,0.000189207000000,0.000357503000000,0.000048961000000,0.000056467000000,0.000226343000000,0.000903084000000 +0.000048171000000,0.000046590000000,0.000166294000000,0.000358294000000,0.000048566000000,0.000258738000000,0.000188417000000,0.000357503000000,0.000048961000000,0.000114540000000,0.000227528000000,0.000871479000000 +0.000048170000000,0.000046195000000,0.000237405000000,0.000398590000000,0.000049751000000,0.000225553000000,0.000224368000000,0.000387924000000,0.000048565000000,0.000072664000000,0.000261898000000,0.000873454000000 +0.000048566000000,0.000046195000000,0.000167479000000,0.000357504000000,0.000090837000000,0.000223972000000,0.000188023000000,0.000354738000000,0.000048961000000,0.000056467000000,0.000227528000000,0.000886885000000 +0.000048565000000,0.000049356000000,0.000165898000000,0.000441652000000,0.000049355000000,0.000226343000000,0.000188417000000,0.000354738000000,0.000048566000000,0.000056072000000,0.000225158000000,0.000905059000000 +0.000048171000000,0.000101504000000,0.000165109000000,0.000362639000000,0.000048170000000,0.000297059000000,0.000189603000000,0.000516714000000,0.000049355000000,0.000056467000000,0.000225553000000,0.000874244000000 +0.000048565000000,0.000081751000000,0.000165109000000,0.000361850000000,0.000048170000000,0.000224368000000,0.000187627000000,0.000363429000000,0.000048566000000,0.000056466000000,0.000298640000000,0.000883725000000 +0.000048171000000,0.000067529000000,0.000197504000000,0.000394244000000,0.000054491000000,0.000226738000000,0.000224368000000,0.000394245000000,0.000048565000000,0.000056467000000,0.000227134000000,0.000859627000000 +0.000048170000000,0.000048960000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000223578000000,0.000189602000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000226739000000,0.000885305000000 +0.000048566000000,0.000061998000000,0.000165898000000,0.000415182000000,0.000048565000000,0.000270591000000,0.000191183000000,0.000355133000000,0.000048961000000,0.000056466000000,0.000226738000000,0.000865948000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000367776000000,0.000049751000000,0.000224763000000,0.000189208000000,0.000460615000000,0.000048960000000,0.000056467000000,0.000261109000000,0.000875824000000 +0.000048171000000,0.000046590000000,0.000161948000000,0.000358293000000,0.000054491000000,0.000222787000000,0.000189602000000,0.000354343000000,0.000048961000000,0.000056862000000,0.000225158000000,0.001152367000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000394639000000,0.000048171000000,0.000222788000000,0.000225158000000,0.000396615000000,0.000048566000000,0.000056467000000,0.000224368000000,0.000871874000000 +0.000048566000000,0.000046195000000,0.000200665000000,0.000400170000000,0.000048566000000,0.000578738000000,0.000188417000000,0.000354738000000,0.000048960000000,0.000056467000000,0.000279282000000,0.000865157000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000410442000000,0.000049355000000,0.000296269000000,0.000188418000000,0.000360664000000,0.000067529000000,0.000056466000000,0.000263083000000,0.000863182000000 +0.000084516000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000054492000000,0.000261108000000,0.000188417000000,0.000425454000000,0.000064368000000,0.000147726000000,0.000225553000000,0.000909010000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048170000000,0.000223578000000,0.000189603000000,0.000379232000000,0.000048566000000,0.000056467000000,0.000228318000000,0.000829207000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000394244000000,0.000049356000000,0.000223183000000,0.000225553000000,0.000390294000000,0.000048960000000,0.000056467000000,0.000225553000000,0.000832763000000 +0.000048566000000,0.000046195000000,0.000207775000000,0.000358294000000,0.000048566000000,0.000226343000000,0.000188417000000,0.000357503000000,0.000048566000000,0.000056467000000,0.000270196000000,0.000840663000000 +0.000048566000000,0.000046195000000,0.000162738000000,0.000357899000000,0.000055281000000,0.000261504000000,0.000191183000000,0.000356713000000,0.000048565000000,0.000056861000000,0.000227924000000,0.000897947000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000406491000000,0.000104269000000,0.000225948000000,0.000189207000000,0.000425059000000,0.000048566000000,0.000056467000000,0.000226344000000,0.000928762000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000062393000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000048961000000,0.000056072000000,0.000227133000000,0.000865552000000 +0.000051331000000,0.000046196000000,0.000165108000000,0.000411627000000,0.000048171000000,0.000224368000000,0.000224368000000,0.000357898000000,0.000048565000000,0.000056466000000,0.000318788000000,0.000881750000000 +0.000048170000000,0.000046591000000,0.000164714000000,0.000358294000000,0.000054886000000,0.000261503000000,0.000189997000000,0.000389504000000,0.000048566000000,0.000056467000000,0.000227133000000,0.000884516000000 +0.000048171000000,0.000046590000000,0.000201849000000,0.000358294000000,0.000048171000000,0.000225158000000,0.000240566000000,0.000354738000000,0.000048961000000,0.000056862000000,0.000227528000000,0.000910195000000 +0.000048565000000,0.000046590000000,0.000161948000000,0.000394244000000,0.000048565000000,0.000225158000000,0.000188417000000,0.000611133000000,0.000048960000000,0.000056862000000,0.000261504000000,0.000870689000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000357899000000,0.000048566000000,0.000226343000000,0.000188417000000,0.000608367000000,0.000048566000000,0.000056467000000,0.000230294000000,0.000865948000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000055282000000,0.000298244000000,0.000446787000000,0.000392664000000,0.000048961000000,0.000056861000000,0.000226343000000,0.000875429000000 +0.000048566000000,0.000047775000000,0.000164714000000,0.000393849000000,0.000048170000000,0.000260713000000,0.000207380000000,0.000357898000000,0.000064764000000,0.000081751000000,0.000234639000000,0.000865157000000 +0.000048565000000,0.000046195000000,0.000214491000000,0.000357899000000,0.000048566000000,0.000242541000000,0.000189603000000,0.000392664000000,0.000046195000000,0.000086096000000,0.000262689000000,0.000867133000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000500516000000,0.000048565000000,0.000225553000000,0.000225553000000,0.000354738000000,0.000045800000000,0.000056071000000,0.000227529000000,0.000993157000000 +0.000048565000000,0.000046195000000,0.000162738000000,0.000374492000000,0.000054887000000,0.000261899000000,0.000189208000000,0.000364615000000,0.000045800000000,0.000056862000000,0.000227529000000,0.000969059000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000399380000000,0.000048565000000,0.000228713000000,0.000189207000000,0.000406886000000,0.000111775000000,0.000056467000000,0.000228714000000,0.000900713000000 +0.000084911000000,0.000046195000000,0.000164319000000,0.000357899000000,0.000048566000000,0.000226738000000,0.000188022000000,0.000354343000000,0.000046196000000,0.000056862000000,0.000262294000000,0.000901503000000 +0.000052121000000,0.000046195000000,0.000201059000000,0.000358293000000,0.000048565000000,0.000237800000000,0.000188417000000,0.000392269000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000908219000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000396615000000,0.000054492000000,0.000272170000000,0.000224367000000,0.000370935000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000920071000000 +0.000048171000000,0.000046591000000,0.000165108000000,0.000358294000000,0.000084516000000,0.000225158000000,0.000188812000000,0.000359874000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000931923000000 +0.000048565000000,0.000046196000000,0.000168269000000,0.000358689000000,0.000048170000000,0.000225158000000,0.000189208000000,0.000389898000000,0.000046195000000,0.000056862000000,0.000301405000000,0.000863973000000 +0.000048566000000,0.000046590000000,0.000161949000000,0.000397405000000,0.000048171000000,0.000224763000000,0.000188417000000,0.000356714000000,0.000046195000000,0.000056861000000,0.000294689000000,0.001383083000000 +0.000054096000000,0.000046590000000,0.000164714000000,0.000361454000000,0.000054887000000,0.000261108000000,0.000188022000000,0.000357504000000,0.000045800000000,0.000056467000000,0.000227924000000,0.001287083000000 +0.000048170000000,0.000046590000000,0.000201849000000,0.000393454000000,0.000048565000000,0.000225553000000,0.000225948000000,0.000428614000000,0.000045801000000,0.000056467000000,0.000225949000000,0.000865157000000 +0.000048171000000,0.000046985000000,0.000165109000000,0.000372120000000,0.000048566000000,0.000224763000000,0.000191183000000,0.000355924000000,0.000046195000000,0.000056466000000,0.000260714000000,0.000871083000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000357899000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000391874000000,0.000046195000000,0.000092812000000,0.000229109000000,0.000901898000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000394245000000,0.000055282000000,0.000309701000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000837898000000 +0.000048170000000,0.000047775000000,0.000164714000000,0.000358293000000,0.000048170000000,0.000237799000000,0.000188812000000,0.000355133000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000858046000000 +0.000048171000000,0.000046195000000,0.000196714000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000230294000000,0.000426639000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000881355000000 +0.000083726000000,0.000046196000000,0.000255183000000,0.000400961000000,0.000049751000000,0.000259923000000,0.000188023000000,0.000360664000000,0.000045800000000,0.000057257000000,0.000225553000000,0.000873058000000 +0.000064763000000,0.000046196000000,0.000178936000000,0.000358294000000,0.000055281000000,0.000225948000000,0.000188417000000,0.000392269000000,0.000045801000000,0.000058442000000,0.000227923000000,0.000889256000000 +0.000051331000000,0.000046195000000,0.000165109000000,0.000457849000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000386739000000,0.000046195000000,0.000056467000000,0.000233454000000,0.000912960000000 +0.000067528000000,0.000046590000000,0.000168269000000,0.000358294000000,0.000048565000000,0.000225158000000,0.000189603000000,0.000354343000000,0.000046195000000,0.000057257000000,0.000242145000000,0.000870688000000 +0.000052121000000,0.000046195000000,0.000197899000000,0.000358689000000,0.000050146000000,0.000265059000000,0.000224763000000,0.000398195000000,0.000081751000000,0.000056467000000,0.000227923000000,0.000878984000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000393454000000,0.000054887000000,0.000226343000000,0.000190788000000,0.000355133000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000866343000000 +0.000048170000000,0.000046590000000,0.000216467000000,0.000360664000000,0.000048170000000,0.000225948000000,0.000189207000000,0.000379232000000,0.000046195000000,0.000056862000000,0.000228318000000,0.000866343000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000393849000000,0.000068319000000,0.000223973000000,0.000189997000000,0.000415973000000,0.000046195000000,0.000056467000000,0.000240566000000,0.000884120000000 +0.000048960000000,0.000046590000000,0.000165109000000,0.000370540000000,0.000050146000000,0.000266639000000,0.000188813000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000866738000000 +0.000048171000000,0.000046195000000,0.000203825000000,0.000365800000000,0.000055282000000,0.000225553000000,0.000262294000000,0.000444813000000,0.000045800000000,0.000056072000000,0.000227528000000,0.000925207000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000505652000000,0.000067133000000,0.000223577000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000075034000000,0.000267429000000,0.000874244000000 +0.000048171000000,0.000046195000000,0.000167874000000,0.000359874000000,0.000064763000000,0.000225553000000,0.000188022000000,0.000354343000000,0.000046196000000,0.000146541000000,0.000226738000000,0.000875429000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000394245000000,0.000063183000000,0.000297849000000,0.000188022000000,0.000397800000000,0.000046195000000,0.000162343000000,0.000226343000000,0.000927973000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000357898000000,0.000055282000000,0.000225553000000,0.000209355000000,0.000354343000000,0.000045800000000,0.000105060000000,0.000227923000000,0.000865553000000 +0.000048170000000,0.000046986000000,0.000161158000000,0.000358293000000,0.000048565000000,0.000224367000000,0.000189602000000,0.000432171000000,0.000045800000000,0.000072665000000,0.000262294000000,0.000911380000000 +0.000048566000000,0.000046196000000,0.000204220000000,0.000438492000000,0.000048171000000,0.000226738000000,0.000189997000000,0.000372911000000,0.000046195000000,0.000056072000000,0.000228319000000,0.000873453000000 +0.000048566000000,0.000046591000000,0.000162738000000,0.000357898000000,0.000049355000000,0.000259923000000,0.000189603000000,0.000354738000000,0.000045800000000,0.000058047000000,0.000225553000000,0.000877009000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000394244000000,0.000054492000000,0.000225158000000,0.000189603000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000881355000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000362244000000,0.000048170000000,0.000225948000000,0.000225553000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000282047000000,0.000865553000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000223973000000,0.000188022000000,0.000357109000000,0.000046591000000,0.000056467000000,0.000258343000000,0.000864368000000 +0.000048566000000,0.000046195000000,0.000202639000000,0.000446788000000,0.000048171000000,0.000258738000000,0.000188417000000,0.000700812000000,0.000045800000000,0.000092418000000,0.000229504000000,0.000905849000000 +0.000067923000000,0.000046590000000,0.000165109000000,0.000360269000000,0.000055281000000,0.000226343000000,0.000188417000000,0.000398195000000,0.000046195000000,0.000056467000000,0.000227923000000,0.000920862000000 +0.000061998000000,0.000046195000000,0.000165108000000,0.000360664000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000354343000000,0.000100714000000,0.000062788000000,0.000265454000000,0.000936663000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000438886000000,0.000067528000000,0.000226343000000,0.000225158000000,0.000355133000000,0.000062392000000,0.000056862000000,0.000227133000000,0.000853701000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000064368000000,0.000297454000000,0.000202244000000,0.000390293000000,0.000045800000000,0.000056862000000,0.000227528000000,0.001003824000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000446788000000,0.000055282000000,0.000224763000000,0.000188418000000,0.000354343000000,0.000045801000000,0.000056466000000,0.000225948000000,0.000920072000000 +0.000051331000000,0.000046195000000,0.000199479000000,0.000360269000000,0.000048171000000,0.000226739000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000263084000000,0.000910194000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000225553000000,0.000191182000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000931133000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000397800000000,0.000049751000000,0.000454689000000,0.000280467000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000224763000000,0.000902293000000 +0.000048566000000,0.000046195000000,0.000164319000000,0.000357898000000,0.000054886000000,0.000290343000000,0.000189603000000,0.000390294000000,0.000045800000000,0.000056862000000,0.000228713000000,0.000939824000000 +0.000048170000000,0.000046591000000,0.000165108000000,0.000441256000000,0.000048566000000,0.000224368000000,0.000189207000000,0.000370936000000,0.000045800000000,0.000056467000000,0.000304565000000,0.000869108000000 +0.000048171000000,0.000046196000000,0.000201454000000,0.000359874000000,0.000048565000000,0.000262294000000,0.000188022000000,0.000354738000000,0.000046196000000,0.000056466000000,0.000228319000000,0.000899133000000 +0.000048565000000,0.000046196000000,0.000165899000000,0.000358294000000,0.000048566000000,0.000225948000000,0.000188813000000,0.000390294000000,0.000045800000000,0.000056862000000,0.000225948000000,0.000914145000000 +0.000048171000000,0.000046591000000,0.000161948000000,0.000396220000000,0.000055282000000,0.000258738000000,0.000335775000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000227923000000,0.000959972000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000362639000000,0.000048170000000,0.000240566000000,0.000218442000000,0.000355133000000,0.000046195000000,0.000056862000000,0.000263479000000,0.000922046000000 +0.000048171000000,0.000046195000000,0.000164318000000,0.000394640000000,0.000048566000000,0.000224763000000,0.000201850000000,0.000390689000000,0.000046195000000,0.000073455000000,0.000225948000000,0.001124713000000 +0.000048565000000,0.000046590000000,0.000165899000000,0.000423479000000,0.000048565000000,0.000225553000000,0.000201060000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227529000000,0.000877405000000 +0.000048171000000,0.000046195000000,0.000202244000000,0.000362639000000,0.000054492000000,0.000229899000000,0.000239380000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000233849000000,0.000842244000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000394245000000,0.000048170000000,0.000272565000000,0.000201454000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000266245000000,0.000846984000000 +0.000084911000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000048171000000,0.000237405000000,0.000201455000000,0.000357504000000,0.000046196000000,0.000056467000000,0.000226739000000,0.000867923000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000383577000000,0.000048170000000,0.000223578000000,0.000236220000000,0.000393059000000,0.000082145000000,0.000056466000000,0.000227924000000,0.000873453000000 +0.000050936000000,0.000046590000000,0.000161948000000,0.000503282000000,0.000071875000000,0.000237405000000,0.000251628000000,0.000354739000000,0.000045801000000,0.000056862000000,0.000222788000000,0.000912565000000 +0.000048565000000,0.000046195000000,0.000201060000000,0.000363034000000,0.000048170000000,0.000260319000000,0.000203430000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000300614000000,0.000872269000000 +0.000048566000000,0.000046195000000,0.000165503000000,0.000405307000000,0.000048171000000,0.000239381000000,0.000237010000000,0.000400170000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000869503000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000048565000000,0.000223973000000,0.000201060000000,0.000379232000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000909009000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000432961000000,0.000054887000000,0.000225158000000,0.000238590000000,0.000425454000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000936664000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000373701000000,0.000048565000000,0.000261504000000,0.000254787000000,0.000357503000000,0.000046195000000,0.000056467000000,0.000227133000000,0.000879379000000 +0.000048170000000,0.000047776000000,0.000161949000000,0.000358689000000,0.000048566000000,0.000225553000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000062393000000,0.000227528000000,0.000865553000000 +0.000048171000000,0.000046590000000,0.000208961000000,0.000398590000000,0.000048565000000,0.000224763000000,0.000189603000000,0.000461800000000,0.000045801000000,0.000056862000000,0.000229504000000,0.000866738000000 +0.000048960000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000055282000000,0.000223973000000,0.000189207000000,0.000361454000000,0.000066344000000,0.000092417000000,0.000246096000000,0.000867923000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000412812000000,0.000048170000000,0.000262689000000,0.000225948000000,0.000404121000000,0.000063183000000,0.000056862000000,0.000234244000000,0.000866738000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000786540000000,0.000048566000000,0.000225553000000,0.000188022000000,0.000355528000000,0.000060022000000,0.000056467000000,0.000227528000000,0.000871873000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000393849000000,0.000048566000000,0.000227529000000,0.000188418000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000839083000000 +0.000048960000000,0.000082936000000,0.000237010000000,0.000358294000000,0.000055282000000,0.000225948000000,0.000188417000000,0.000392269000000,0.000045800000000,0.000056862000000,0.000262293000000,0.000837503000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000404516000000,0.000048171000000,0.000263479000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056072000000,0.000241356000000,0.000889256000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000359084000000,0.000048170000000,0.000223182000000,0.000224763000000,0.000354344000000,0.000046196000000,0.000056861000000,0.000230294000000,0.000878984000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358689000000,0.000048566000000,0.000225553000000,0.000188023000000,0.000390688000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000878985000000 +0.000084121000000,0.000046195000000,0.000162343000000,0.000394244000000,0.000054886000000,0.000224368000000,0.000188417000000,0.000356713000000,0.000065158000000,0.000056467000000,0.000273355000000,0.000888071000000 +0.000048170000000,0.000046195000000,0.000201059000000,0.000358294000000,0.000075035000000,0.000272170000000,0.000189208000000,0.000390689000000,0.000048566000000,0.000056466000000,0.000227528000000,0.000866738000000 +0.000048171000000,0.000046590000000,0.000184862000000,0.000357899000000,0.000048566000000,0.000223578000000,0.000190788000000,0.000354738000000,0.000059232000000,0.000056467000000,0.000227133000000,0.000864367000000 +0.000048960000000,0.000049356000000,0.000167874000000,0.000442837000000,0.000048565000000,0.000225158000000,0.000225553000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000226343000000,0.000895972000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000361849000000,0.000054887000000,0.000227529000000,0.000189208000000,0.000390689000000,0.000045800000000,0.000056466000000,0.000262294000000,0.000880565000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000399381000000,0.000048565000000,0.000261109000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000228319000000,0.000865552000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000360664000000,0.000048566000000,0.000226344000000,0.000188417000000,0.000357503000000,0.000046196000000,0.000056862000000,0.000226344000000,0.000920861000000 +0.000048565000000,0.000046195000000,0.000201059000000,0.000357108000000,0.000048565000000,0.000225158000000,0.000188022000000,0.000390294000000,0.000045800000000,0.000072269000000,0.000226343000000,0.000877799000000 +0.000048566000000,0.000046195000000,0.000163133000000,0.000394244000000,0.000054887000000,0.000225553000000,0.000224762000000,0.000354738000000,0.000045800000000,0.000058047000000,0.000263084000000,0.000882145000000 +0.000048565000000,0.000046590000000,0.000165504000000,0.000358294000000,0.000048565000000,0.000331034000000,0.000189997000000,0.000401356000000,0.000045800000000,0.000057257000000,0.000225554000000,0.000831183000000 +0.000048171000000,0.000046590000000,0.000165899000000,0.000378442000000,0.000048566000000,0.000224368000000,0.000189603000000,0.000354343000000,0.000046590000000,0.000058047000000,0.000234245000000,0.000831182000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000423479000000,0.000048170000000,0.000223973000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000852516000000 +0.000048566000000,0.000046195000000,0.000198294000000,0.000377256000000,0.000055676000000,0.000225158000000,0.000190787000000,0.000393059000000,0.000045800000000,0.000056467000000,0.000327479000000,0.000993157000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000444417000000,0.000048566000000,0.000263874000000,0.000234639000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000277702000000,0.000945750000000 +0.000048566000000,0.000046985000000,0.000166689000000,0.000358294000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000355923000000,0.000046196000000,0.000056862000000,0.000225948000000,0.000894787000000 +0.000048170000000,0.000046196000000,0.000161553000000,0.000429009000000,0.000048961000000,0.000227133000000,0.000188813000000,0.000518294000000,0.000046195000000,0.000057257000000,0.000236220000000,0.001872565000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000358293000000,0.000054491000000,0.000236219000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000272961000000,0.001287083000000 +0.000071480000000,0.000046196000000,0.000165899000000,0.000358294000000,0.000067529000000,0.000261899000000,0.000208170000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000226739000000,0.001148812000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000394244000000,0.000064763000000,0.000223182000000,0.000325109000000,0.000355924000000,0.000046195000000,0.000056467000000,0.000227134000000,0.000893207000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000358293000000,0.000048171000000,0.000225158000000,0.000204615000000,0.000354738000000,0.000062393000000,0.000056861000000,0.000304961000000,0.000856467000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000360664000000,0.000055281000000,0.000225553000000,0.000189603000000,0.000406886000000,0.000059627000000,0.000056467000000,0.000227134000000,0.001194243000000 +0.000048170000000,0.000046195000000,0.000216467000000,0.000415972000000,0.000048566000000,0.000273751000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000092418000000,0.000226344000000,0.000874244000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000048565000000,0.000225158000000,0.000225158000000,0.000424664000000,0.000046195000000,0.000056862000000,0.000227133000000,0.000884121000000 +0.000048566000000,0.000046195000000,0.000201455000000,0.000439677000000,0.000048566000000,0.000239380000000,0.000189603000000,0.000362244000000,0.000046196000000,0.000056466000000,0.000263874000000,0.001091527000000 +0.000048170000000,0.000046195000000,0.000166293000000,0.000358293000000,0.000054886000000,0.000224763000000,0.000189602000000,0.000434936000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000878985000000 +0.000048566000000,0.000046590000000,0.000165504000000,0.000360664000000,0.000048171000000,0.000261898000000,0.000189207000000,0.000392269000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000885700000000 +0.000048170000000,0.000046195000000,0.000165899000000,0.000403330000000,0.000048565000000,0.000222392000000,0.000188418000000,0.000384763000000,0.000046195000000,0.000056862000000,0.000227528000000,0.000875034000000 +0.000048566000000,0.000046590000000,0.000165899000000,0.000361454000000,0.000048171000000,0.000225553000000,0.000273355000000,0.000425849000000,0.000045800000000,0.000056467000000,0.000310492000000,0.000856466000000 +0.000048170000000,0.000046590000000,0.000203825000000,0.000394244000000,0.000054886000000,0.000223578000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056071000000,0.000227924000000,0.000918491000000 +0.000048566000000,0.000048961000000,0.000165899000000,0.000357899000000,0.000048171000000,0.000314047000000,0.000188812000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000888071000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000361849000000,0.000048170000000,0.000225949000000,0.000189602000000,0.000427034000000,0.000046196000000,0.000056467000000,0.000225158000000,0.000880169000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000478393000000,0.000048565000000,0.000224368000000,0.000223578000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000314441000000,0.000880565000000 +0.000048565000000,0.000048170000000,0.000161553000000,0.000371331000000,0.000054887000000,0.000296269000000,0.000188418000000,0.000428219000000,0.000046195000000,0.000056072000000,0.000227134000000,0.000879380000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000503281000000,0.000048565000000,0.000237800000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000881750000000 +0.000048565000000,0.000048566000000,0.000185652000000,0.000561750000000,0.000048566000000,0.000248861000000,0.000190787000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000246096000000,0.000881355000000 +0.000103084000000,0.000046195000000,0.000165109000000,0.000394245000000,0.000071874000000,0.000237800000000,0.000189603000000,0.000458244000000,0.000046195000000,0.000095578000000,0.000255182000000,0.001175676000000 +0.000048565000000,0.000046590000000,0.000161948000000,0.000365800000000,0.000055282000000,0.000282442000000,0.000269405000000,0.000355924000000,0.000045800000000,0.000084911000000,0.000225158000000,0.000922441000000 +0.000048566000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000048170000000,0.000223183000000,0.000189603000000,0.000435726000000,0.000127578000000,0.000056467000000,0.000224367000000,0.001015676000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000397009000000,0.000048566000000,0.000224763000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056072000000,0.000299035000000,0.000888862000000 +0.000048566000000,0.000046195000000,0.000198294000000,0.000358688000000,0.000048170000000,0.000225158000000,0.000188417000000,0.000354343000000,0.000045801000000,0.000056466000000,0.000240171000000,0.000875429000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000398195000000,0.000054887000000,0.000261504000000,0.000188417000000,0.000820121000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000874639000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000048565000000,0.000223578000000,0.000236614000000,0.000422293000000,0.000045800000000,0.000056467000000,0.000228318000000,0.000875429000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000360269000000,0.000048566000000,0.000222787000000,0.000189997000000,0.000354343000000,0.000046590000000,0.000056071000000,0.000310886000000,0.000867528000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000397800000000,0.000048565000000,0.000225948000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000227923000000,0.000886886000000 +0.000048566000000,0.000046195000000,0.000181306000000,0.000357899000000,0.000055282000000,0.000271775000000,0.000190788000000,0.000391479000000,0.000045800000000,0.000056071000000,0.000227528000000,0.000874244000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000483133000000,0.000048566000000,0.000226344000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000091627000000,0.000227133000000,0.000847380000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000360664000000,0.000048170000000,0.000225158000000,0.000299034000000,0.000374491000000,0.000046196000000,0.000071084000000,0.000311676000000,0.000829207000000 +0.000051331000000,0.000046195000000,0.000164714000000,0.000363034000000,0.000048171000000,0.000223973000000,0.000188418000000,0.000353948000000,0.000046195000000,0.000056862000000,0.000227528000000,0.001025157000000 +0.000048170000000,0.000046591000000,0.000165109000000,0.000433751000000,0.000054491000000,0.000340911000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000094788000000,0.000227133000000,0.000871874000000 +0.000048171000000,0.000046591000000,0.000165109000000,0.000362244000000,0.000048566000000,0.000238590000000,0.000189207000000,0.000390293000000,0.000045800000000,0.000073454000000,0.000227133000000,0.001040170000000 +0.000048565000000,0.000046196000000,0.000288367000000,0.000392269000000,0.000048565000000,0.000225158000000,0.000261109000000,0.000354344000000,0.000046195000000,0.000056466000000,0.000290343000000,0.001713354000000 +0.000048566000000,0.000046195000000,0.000184861000000,0.000382788000000,0.000048566000000,0.000281257000000,0.000204615000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000229898000000,0.001003034000000 +0.000084516000000,0.000046195000000,0.000164714000000,0.000359874000000,0.000081355000000,0.000226739000000,0.000189603000000,0.000391479000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000945355000000 +0.000048565000000,0.000048170000000,0.000164713000000,0.000393454000000,0.000048566000000,0.000226739000000,0.000189603000000,0.000354343000000,0.000045801000000,0.000057257000000,0.000347232000000,0.000911775000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048171000000,0.000226738000000,0.000189997000000,0.000374096000000,0.000065948000000,0.000056467000000,0.000512762000000,0.000884120000000 +0.000048565000000,0.000046195000000,0.000201059000000,0.000357899000000,0.000048170000000,0.000296664000000,0.000272961000000,0.000370936000000,0.000046196000000,0.000056862000000,0.000227528000000,0.000903873000000 +0.000048566000000,0.000046195000000,0.000162738000000,0.000404121000000,0.000054887000000,0.000225158000000,0.000189603000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000299429000000,0.000914145000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000227923000000,0.000189207000000,0.000438097000000,0.000045800000000,0.000058443000000,0.000228714000000,0.000877009000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000398590000000,0.000048171000000,0.000226738000000,0.000188812000000,0.000354343000000,0.000046590000000,0.000056467000000,0.000226344000000,0.001128663000000 +0.000051726000000,0.000046590000000,0.000164714000000,0.000361059000000,0.000048565000000,0.000299824000000,0.000188417000000,0.000407281000000,0.000045800000000,0.000056467000000,0.000262294000000,0.000916910000000 +0.000048565000000,0.000046196000000,0.000236220000000,0.000390294000000,0.000054887000000,0.000225158000000,0.000205010000000,0.000390294000000,0.000045800000000,0.000058047000000,0.000226343000000,0.000905849000000 +0.000048566000000,0.000046196000000,0.000165108000000,0.000406886000000,0.000048565000000,0.000225553000000,0.000188812000000,0.000355528000000,0.000046195000000,0.000056467000000,0.000226739000000,0.000958392000000 +0.000048170000000,0.000046196000000,0.000167479000000,0.000360664000000,0.000048171000000,0.000225553000000,0.000189603000000,0.000400960000000,0.000046196000000,0.000094787000000,0.000278491000000,0.000885700000000 +0.000048566000000,0.000046591000000,0.000161948000000,0.000430985000000,0.000048170000000,0.000295874000000,0.000188022000000,0.000354343000000,0.000045801000000,0.000056467000000,0.000272565000000,0.000880565000000 +0.000054492000000,0.000046195000000,0.000164714000000,0.000358293000000,0.000054492000000,0.000225158000000,0.000222393000000,0.000354739000000,0.000046195000000,0.000056467000000,0.000227924000000,0.000927972000000 +0.000048565000000,0.000046195000000,0.000184466000000,0.000358688000000,0.000048566000000,0.000225158000000,0.000373306000000,0.000393454000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000881355000000 +0.000048171000000,0.000046195000000,0.000198689000000,0.000407282000000,0.000048565000000,0.000225158000000,0.000210145000000,0.000354343000000,0.000046195000000,0.000057257000000,0.000224368000000,0.000917701000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000316417000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000274936000000,0.000922836000000 +0.000048566000000,0.000046195000000,0.000165898000000,0.000358688000000,0.000074639000000,0.000224763000000,0.000225553000000,0.000392269000000,0.000045800000000,0.000056862000000,0.000227133000000,0.000881750000000 +0.000048565000000,0.000048170000000,0.000165109000000,0.000394244000000,0.000048170000000,0.000228713000000,0.000189602000000,0.000355923000000,0.000045800000000,0.000056072000000,0.000226738000000,0.000890442000000 +0.000084121000000,0.000046195000000,0.000161948000000,0.000359874000000,0.000048171000000,0.000243331000000,0.000188418000000,0.000391084000000,0.000046196000000,0.000056467000000,0.000227528000000,0.001122737000000 +0.000048566000000,0.000046195000000,0.000240960000000,0.000404911000000,0.000048170000000,0.000252812000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000297454000000,0.000897553000000 +0.000048170000000,0.000051726000000,0.000164713000000,0.000361059000000,0.000054887000000,0.000225553000000,0.000188813000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000227923000000,0.000909404000000 +0.000048566000000,0.000046591000000,0.000165109000000,0.000361455000000,0.000048170000000,0.000224763000000,0.000225948000000,0.000390294000000,0.000114541000000,0.000056467000000,0.000233454000000,0.000866737000000 +0.000048565000000,0.000046591000000,0.000167874000000,0.000394244000000,0.000048566000000,0.000306936000000,0.000189603000000,0.000357504000000,0.000060022000000,0.000056467000000,0.000225553000000,0.000865947000000 +0.000051726000000,0.000046195000000,0.000161553000000,0.000357899000000,0.000048170000000,0.000239380000000,0.000188417000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000300615000000,0.001402836000000 +0.000048566000000,0.000046195000000,0.000212516000000,0.000394244000000,0.000054886000000,0.000225553000000,0.000191182000000,0.000441257000000,0.000046195000000,0.000058047000000,0.000225158000000,0.001006589000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000357899000000,0.000048566000000,0.000225158000000,0.000189208000000,0.000354343000000,0.000045801000000,0.000073059000000,0.000228319000000,0.000877405000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000367775000000,0.000048170000000,0.000306540000000,0.000238985000000,0.000390689000000,0.000046196000000,0.000056466000000,0.000227529000000,0.000868318000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000519084000000,0.000048566000000,0.000283232000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000261504000000,0.000871084000000 +0.000048566000000,0.000046195000000,0.000168269000000,0.000377652000000,0.000055281000000,0.000225158000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000865158000000 +0.000048565000000,0.000046590000000,0.000240566000000,0.000434146000000,0.000048566000000,0.000226343000000,0.000189602000000,0.000448367000000,0.000045800000000,0.000056862000000,0.000231084000000,0.001026737000000 +0.000048566000000,0.000046590000000,0.000393850000000,0.000358293000000,0.000048565000000,0.000276121000000,0.000188022000000,0.000355528000000,0.000046195000000,0.000056467000000,0.000226739000000,0.000918096000000 +0.000048170000000,0.000046590000000,0.000180911000000,0.000359874000000,0.000048171000000,0.000235429000000,0.000231874000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000262689000000,0.000831973000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000429009000000,0.000054886000000,0.000224368000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000227923000000,0.000870689000000 +0.000048170000000,0.000046195000000,0.000198294000000,0.000361455000000,0.000066739000000,0.000248466000000,0.000189603000000,0.000365010000000,0.000046196000000,0.000056467000000,0.000225948000000,0.000885701000000 +0.000048565000000,0.000046195000000,0.000167479000000,0.000430985000000,0.000114146000000,0.000242146000000,0.000189207000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000227924000000,0.000863973000000 +0.000067924000000,0.000046195000000,0.000162343000000,0.000368170000000,0.000097158000000,0.000224368000000,0.000189997000000,0.000355133000000,0.000045800000000,0.000056467000000,0.000241750000000,0.000871874000000 +0.000099133000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000058047000000,0.000224763000000,0.000225553000000,0.000357899000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000864763000000 +0.000048171000000,0.000046196000000,0.000164713000000,0.000429010000000,0.000063183000000,0.000279282000000,0.000189602000000,0.000390689000000,0.000046195000000,0.000056466000000,0.000225948000000,0.000876614000000 +0.000048565000000,0.000046196000000,0.000239775000000,0.000358294000000,0.000048566000000,0.000553454000000,0.000188418000000,0.000354343000000,0.000065553000000,0.000056467000000,0.000246491000000,0.000907034000000 +0.000048566000000,0.000047776000000,0.000179330000000,0.000378442000000,0.000048565000000,0.000256763000000,0.000188417000000,0.000411232000000,0.000045800000000,0.000092418000000,0.000275331000000,0.000863972000000 +0.000048170000000,0.000082145000000,0.000165109000000,0.000407282000000,0.000055282000000,0.000261108000000,0.000188023000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000227923000000,0.000873848000000 +0.000048566000000,0.000046591000000,0.000164713000000,0.000358688000000,0.000048565000000,0.000227133000000,0.000224368000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000229108000000,0.001104565000000 +0.000048565000000,0.000046196000000,0.000165899000000,0.000447577000000,0.000048566000000,0.000224763000000,0.000189207000000,0.000709503000000,0.000046196000000,0.000058442000000,0.000263479000000,0.000830787000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048565000000,0.000226738000000,0.000188022000000,0.000384368000000,0.000045800000000,0.000056466000000,0.000227924000000,0.000830392000000 +0.000048170000000,0.000046195000000,0.000201454000000,0.000378442000000,0.000054887000000,0.000275330000000,0.000188417000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000916516000000 +0.000051331000000,0.000046195000000,0.000163133000000,0.000635232000000,0.000048565000000,0.000227528000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000865552000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000429010000000,0.000048171000000,0.000225158000000,0.000207776000000,0.000404516000000,0.000046195000000,0.000056467000000,0.000274146000000,0.000913750000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000048171000000,0.000229108000000,0.000189207000000,0.000362245000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000911775000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000073454000000,0.000241356000000,0.000189208000000,0.000357898000000,0.000045800000000,0.000056467000000,0.000228318000000,0.000902294000000 +0.000048565000000,0.000046590000000,0.000200664000000,0.000394245000000,0.000050936000000,0.000223973000000,0.000189208000000,0.000448368000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000866343000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048171000000,0.000227133000000,0.000224368000000,0.000357504000000,0.000046196000000,0.000056862000000,0.000264269000000,0.000912170000000 +0.000048170000000,0.000046590000000,0.000166293000000,0.000358293000000,0.000048565000000,0.000224762000000,0.000188022000000,0.000390294000000,0.000045800000000,0.000058047000000,0.000226343000000,0.000876615000000 +0.000084121000000,0.000046195000000,0.000161553000000,0.000442441000000,0.000055282000000,0.000243726000000,0.000188813000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000227924000000,0.001354639000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000224368000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000227134000000,0.000972615000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000445207000000,0.000048171000000,0.000223578000000,0.000189602000000,0.000390294000000,0.000046195000000,0.000078985000000,0.000262294000000,0.000877009000000 +0.000048171000000,0.000046195000000,0.000201850000000,0.000358293000000,0.000049751000000,0.000223972000000,0.000224763000000,0.000358294000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000887676000000 +0.000048566000000,0.000046195000000,0.000166293000000,0.000358294000000,0.000054491000000,0.000246097000000,0.000190787000000,0.000354738000000,0.000045800000000,0.000061998000000,0.000233849000000,0.000881355000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000862392000000,0.000048566000000,0.000228319000000,0.000255577000000,0.000426640000000,0.000119282000000,0.000056466000000,0.000229899000000,0.000879775000000 +0.000048566000000,0.000046986000000,0.000165108000000,0.000397404000000,0.000048170000000,0.000228319000000,0.000189207000000,0.000357108000000,0.000060813000000,0.000056467000000,0.000262689000000,0.000887676000000 +0.000048170000000,0.000046196000000,0.000161949000000,0.000417158000000,0.000048171000000,0.000247281000000,0.000188418000000,0.000390689000000,0.000045800000000,0.000057257000000,0.000227923000000,0.000882541000000 +0.000051331000000,0.000046195000000,0.000198294000000,0.000396615000000,0.000055281000000,0.000228714000000,0.000275331000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000223182000000,0.000887676000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000354739000000,0.000045800000000,0.000056072000000,0.000229109000000,0.000878589000000 +0.000048170000000,0.000046195000000,0.000165898000000,0.000363430000000,0.000048566000000,0.000224763000000,0.000188417000000,0.000389898000000,0.000046195000000,0.000056862000000,0.000314837000000,0.000880170000000 +0.000048566000000,0.000080565000000,0.000164714000000,0.000399380000000,0.000048170000000,0.000243725000000,0.000188417000000,0.000354739000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000885700000000 +0.000048565000000,0.000078590000000,0.000161553000000,0.000358689000000,0.000054887000000,0.000254788000000,0.000190392000000,0.000358688000000,0.000045800000000,0.000056862000000,0.000225158000000,0.000911774000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000361454000000,0.000067923000000,0.000224368000000,0.000225554000000,0.000438096000000,0.000045801000000,0.000056467000000,0.000227529000000,0.000894392000000 +0.000048171000000,0.000047381000000,0.000178540000000,0.000397010000000,0.000100714000000,0.000225553000000,0.000189602000000,0.000355528000000,0.000046195000000,0.000056862000000,0.000263874000000,0.000884516000000 +0.000048565000000,0.000046591000000,0.000168269000000,0.000361454000000,0.000048170000000,0.000260713000000,0.000189602000000,0.000398590000000,0.000045800000000,0.000056467000000,0.000229504000000,0.000873848000000 +0.000048961000000,0.000046590000000,0.000165109000000,0.000394245000000,0.000054887000000,0.000227923000000,0.000189603000000,0.000354739000000,0.000045800000000,0.000127182000000,0.000226738000000,0.000865948000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000357898000000,0.000048170000000,0.000225553000000,0.000225158000000,0.000359479000000,0.000045800000000,0.000056862000000,0.000234245000000,0.000865553000000 +0.000120072000000,0.000046590000000,0.000165109000000,0.000358688000000,0.000048171000000,0.000225553000000,0.000188022000000,0.000390293000000,0.000046195000000,0.000062393000000,0.000263479000000,0.000991182000000 +0.000048171000000,0.000046195000000,0.000201849000000,0.000394245000000,0.000048171000000,0.000277702000000,0.000188417000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000227528000000,0.000893602000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000055281000000,0.000225158000000,0.000188417000000,0.000468911000000,0.000045801000000,0.000056467000000,0.000227528000000,0.000865948000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000048171000000,0.000237800000000,0.000188417000000,0.000592565000000,0.000046195000000,0.000056862000000,0.000227528000000,0.000854886000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000394245000000,0.000048565000000,0.000225553000000,0.000223578000000,0.000438096000000,0.000066343000000,0.000056466000000,0.000266244000000,0.000831182000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000048171000000,0.000272566000000,0.000203430000000,0.000406887000000,0.000045800000000,0.000056072000000,0.000226343000000,0.000848960000000 +0.000048171000000,0.000046985000000,0.000182887000000,0.000394639000000,0.000054886000000,0.000224368000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000237404000000,0.000865553000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000362244000000,0.000048566000000,0.000269800000000,0.000189602000000,0.000436121000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000886491000000 +0.000048171000000,0.000046195000000,0.000167874000000,0.000358293000000,0.000048565000000,0.000238195000000,0.000191183000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000349997000000,0.000936663000000 +0.000048960000000,0.000048961000000,0.000167874000000,0.000436911000000,0.000049751000000,0.000271775000000,0.000225553000000,0.000436121000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000868713000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000054887000000,0.000227133000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056072000000,0.000225948000000,0.000867132000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000429405000000,0.000066343000000,0.000223183000000,0.000189603000000,0.000354739000000,0.000046196000000,0.000056467000000,0.000264269000000,0.001173305000000 +0.000048566000000,0.000046195000000,0.000249652000000,0.000358294000000,0.000051726000000,0.000225158000000,0.000188417000000,0.000436516000000,0.000046196000000,0.000097553000000,0.000225554000000,0.000866738000000 +0.000049355000000,0.000046195000000,0.000164714000000,0.000362244000000,0.000048566000000,0.000261109000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000905454000000 +0.000048171000000,0.000046195000000,0.000162738000000,0.000461405000000,0.000055677000000,0.000224763000000,0.000224368000000,0.000459034000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000831972000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000361850000000,0.000048565000000,0.000227528000000,0.000189208000000,0.000357504000000,0.000045800000000,0.000056467000000,0.000261898000000,0.000866738000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000394244000000,0.000048171000000,0.000224368000000,0.000189602000000,0.000357899000000,0.000046195000000,0.000056466000000,0.000234640000000,0.000878195000000 +0.000084121000000,0.000046590000000,0.000201059000000,0.000358294000000,0.000048565000000,0.000263084000000,0.000188022000000,0.000444417000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000865948000000 +0.000048565000000,0.000046195000000,0.000162739000000,0.000358294000000,0.000055282000000,0.000225158000000,0.000191183000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000225948000000,0.000920862000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000398195000000,0.000048170000000,0.000235429000000,0.000225553000000,0.000438491000000,0.000045801000000,0.000056467000000,0.000297849000000,0.000866738000000 +0.000048565000000,0.000046591000000,0.000166294000000,0.000358294000000,0.000048171000000,0.000224763000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000952467000000 +0.000048566000000,0.000046196000000,0.000161553000000,0.000358689000000,0.000048170000000,0.000319973000000,0.000188417000000,0.000354738000000,0.000045800000000,0.000056072000000,0.000235825000000,0.000914145000000 +0.000048565000000,0.000046196000000,0.000183282000000,0.000394244000000,0.000054491000000,0.000227923000000,0.000189997000000,0.000440467000000,0.000045800000000,0.000056072000000,0.000227923000000,0.000865552000000 +0.000052121000000,0.000046195000000,0.000233059000000,0.000408072000000,0.000048171000000,0.000224368000000,0.000189208000000,0.000357504000000,0.000139035000000,0.000056467000000,0.000297454000000,0.001372812000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000406491000000,0.000048170000000,0.000263084000000,0.000224368000000,0.000438886000000,0.000050541000000,0.000056466000000,0.000227133000000,0.000866343000000 +0.000048565000000,0.000046985000000,0.000161554000000,0.000369750000000,0.000048566000000,0.000225158000000,0.000188023000000,0.000353948000000,0.000114146000000,0.000056467000000,0.000233849000000,0.000875824000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000358293000000,0.000054886000000,0.000224763000000,0.000189997000000,0.000354343000000,0.000130343000000,0.000092418000000,0.000263479000000,0.000913355000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000407677000000,0.000048171000000,0.000225948000000,0.000189602000000,0.000436515000000,0.000149701000000,0.000056467000000,0.000225949000000,0.000871478000000 +0.000048566000000,0.000046590000000,0.000206195000000,0.000358294000000,0.000067923000000,0.000259528000000,0.000189998000000,0.000354343000000,0.000137059000000,0.000056466000000,0.000227529000000,0.000919280000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000394244000000,0.000080961000000,0.000228318000000,0.000226343000000,0.000425454000000,0.000120861000000,0.000056467000000,0.000227924000000,0.000872269000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000358294000000,0.000054491000000,0.000223973000000,0.000189208000000,0.000354343000000,0.000148911000000,0.000056467000000,0.000281652000000,0.000867133000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000363034000000,0.000048171000000,0.000223578000000,0.000189208000000,0.000355134000000,0.000065158000000,0.000056862000000,0.000241750000000,0.000866342000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000393849000000,0.000048565000000,0.000262689000000,0.000188417000000,0.000440861000000,0.000048961000000,0.000056467000000,0.000227528000000,0.000958787000000 +0.000048566000000,0.000046195000000,0.000202245000000,0.000362244000000,0.000048566000000,0.000224368000000,0.000188418000000,0.000355134000000,0.000060417000000,0.000056467000000,0.000225948000000,0.000867923000000 +0.000048565000000,0.000046590000000,0.000167874000000,0.000357504000000,0.000054491000000,0.000226343000000,0.000229109000000,0.000392664000000,0.000046196000000,0.000056862000000,0.000263874000000,0.000848565000000 +0.000065159000000,0.000049751000000,0.000166294000000,0.000404516000000,0.000048171000000,0.000225158000000,0.000188417000000,0.000383578000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000839083000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000359479000000,0.000048171000000,0.000279677000000,0.000189208000000,0.000356714000000,0.000046195000000,0.000056071000000,0.000224763000000,0.000870688000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000505257000000,0.000048170000000,0.000223973000000,0.000188022000000,0.000746639000000,0.000045800000000,0.000056467000000,0.000227923000000,0.000867528000000 +0.000048566000000,0.000048170000000,0.000161553000000,0.000377256000000,0.000054887000000,0.000226343000000,0.000188418000000,0.000482738000000,0.000045800000000,0.000056467000000,0.000263479000000,0.000872663000000 +0.000048565000000,0.000046590000000,0.000288763000000,0.000377256000000,0.000048170000000,0.000227133000000,0.000338146000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000226343000000,0.000864763000000 +0.000048566000000,0.000048566000000,0.000166294000000,0.000358689000000,0.000048171000000,0.000261899000000,0.000204220000000,0.000357504000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000886490000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000366985000000,0.000048170000000,0.000224763000000,0.000189207000000,0.000415577000000,0.000045801000000,0.000073850000000,0.000225553000000,0.000958787000000 +0.000048566000000,0.000046195000000,0.000161554000000,0.000393849000000,0.000054887000000,0.000226738000000,0.000188812000000,0.000354739000000,0.000045800000000,0.000056862000000,0.000296664000000,0.000931923000000 +0.000048565000000,0.000046195000000,0.000200665000000,0.000358294000000,0.000048170000000,0.000225553000000,0.000225553000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000276120000000,0.000861602000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000048171000000,0.000261504000000,0.000188417000000,0.000391084000000,0.000046195000000,0.000056862000000,0.000227528000000,0.000964713000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000443232000000,0.000084516000000,0.000223973000000,0.000188022000000,0.000360664000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000879775000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000055282000000,0.000224763000000,0.000188417000000,0.000390294000000,0.000065158000000,0.000056862000000,0.000274541000000,0.000865158000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000399380000000,0.000048565000000,0.000227528000000,0.000189603000000,0.000378442000000,0.000045800000000,0.000056466000000,0.000228319000000,0.000836713000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000386343000000,0.000225948000000,0.000354738000000,0.000046195000000,0.000056072000000,0.000225553000000,0.000842639000000 +0.000048170000000,0.000046195000000,0.000203034000000,0.000357899000000,0.000048565000000,0.000297849000000,0.000188418000000,0.000393059000000,0.000045800000000,0.000056467000000,0.000227924000000,0.000884515000000 +0.000048566000000,0.000046195000000,0.000162344000000,0.000394244000000,0.000055282000000,0.000225553000000,0.000191182000000,0.000356319000000,0.000046195000000,0.000056861000000,0.000263479000000,0.000870689000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000360269000000,0.000048170000000,0.000260713000000,0.000241750000000,0.000354343000000,0.000045801000000,0.000056862000000,0.000226738000000,0.000866738000000 +0.000084516000000,0.000046591000000,0.000164714000000,0.000357899000000,0.000048171000000,0.000225158000000,0.000225553000000,0.000382393000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000871873000000 +0.000072664000000,0.000046591000000,0.000165503000000,0.000412417000000,0.000067923000000,0.000222788000000,0.000188417000000,0.000357898000000,0.000045800000000,0.000056466000000,0.000227924000000,0.000873849000000 +0.000064764000000,0.000046591000000,0.000198294000000,0.000358293000000,0.000071874000000,0.000224367000000,0.000189603000000,0.000396615000000,0.000045800000000,0.000056467000000,0.000547133000000,0.001094293000000 +0.000061997000000,0.000046590000000,0.000165504000000,0.000394245000000,0.000061602000000,0.000261899000000,0.000188813000000,0.000354343000000,0.000045800000000,0.000092813000000,0.000242936000000,0.000863973000000 +0.000048171000000,0.000046590000000,0.000161948000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000378836000000,0.000046195000000,0.000056467000000,0.000297059000000,0.000901108000000 +0.000048565000000,0.000046195000000,0.000164318000000,0.000376862000000,0.000048566000000,0.000225158000000,0.000270985000000,0.000390688000000,0.000045800000000,0.000056862000000,0.000229898000000,0.000863972000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000413998000000,0.000055281000000,0.000226344000000,0.000189997000000,0.000355133000000,0.000046196000000,0.000056467000000,0.000225948000000,0.000917700000000 +0.000048565000000,0.000047775000000,0.000165108000000,0.000358293000000,0.000048566000000,0.000308911000000,0.000189603000000,0.000692911000000,0.000046195000000,0.000056467000000,0.000233454000000,0.000846985000000 +0.000048171000000,0.000046195000000,0.000201059000000,0.000440861000000,0.000048565000000,0.000225553000000,0.000189603000000,0.000419923000000,0.000046195000000,0.000056072000000,0.000276516000000,0.000875034000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000103479000000,0.000224368000000,0.000189602000000,0.000437701000000,0.000045800000000,0.000056467000000,0.000227529000000,0.000920861000000 +0.000048170000000,0.000046195000000,0.000162738000000,0.000357899000000,0.000055282000000,0.000224763000000,0.000225949000000,0.000365009000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000866342000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000400170000000,0.000048565000000,0.000264269000000,0.000189207000000,0.000354344000000,0.000046195000000,0.000056862000000,0.000228319000000,0.000904269000000 +0.000048565000000,0.000046986000000,0.000165108000000,0.000357899000000,0.000048566000000,0.000227133000000,0.000188022000000,0.000392664000000,0.000046195000000,0.000056467000000,0.000277307000000,0.000873059000000 +0.000052122000000,0.000046591000000,0.000255973000000,0.000394244000000,0.000048170000000,0.000227923000000,0.000188417000000,0.000354738000000,0.000081751000000,0.000056467000000,0.000225553000000,0.000924021000000 +0.000048566000000,0.000046196000000,0.000233454000000,0.000360665000000,0.000054887000000,0.000225158000000,0.000188417000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000876219000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000048170000000,0.000261504000000,0.000224368000000,0.000359874000000,0.000045800000000,0.000056467000000,0.000226738000000,0.001216368000000 +0.000048566000000,0.000046590000000,0.000168269000000,0.000612319000000,0.000048566000000,0.000225553000000,0.000189208000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000299034000000,0.000830392000000 +0.000084516000000,0.000046195000000,0.000161948000000,0.000430195000000,0.000048565000000,0.000311677000000,0.000188417000000,0.000392664000000,0.000046195000000,0.000056467000000,0.000236219000000,0.000873453000000 +0.000054491000000,0.000046195000000,0.000201059000000,0.000445207000000,0.000055282000000,0.000243726000000,0.000188418000000,0.000357109000000,0.000046195000000,0.000083726000000,0.000228318000000,0.000864762000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000269010000000,0.000189602000000,0.000470491000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000864762000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000427430000000,0.000048171000000,0.000224763000000,0.000237800000000,0.000369751000000,0.000046195000000,0.000056862000000,0.000346047000000,0.000884120000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000372516000000,0.000048170000000,0.000224763000000,0.000189602000000,0.000357899000000,0.000046195000000,0.000056467000000,0.000229109000000,0.000866343000000 +0.000048170000000,0.000046590000000,0.000165898000000,0.000358293000000,0.000055282000000,0.000260319000000,0.000189602000000,0.000391084000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000941010000000 +0.000048961000000,0.000047775000000,0.000200665000000,0.000433750000000,0.000048171000000,0.000228713000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000298640000000,0.000875034000000 +0.000048170000000,0.000046196000000,0.000161553000000,0.000358294000000,0.000048170000000,0.000223973000000,0.000188812000000,0.000355133000000,0.000046196000000,0.000056466000000,0.000227924000000,0.001292219000000 +0.000048171000000,0.000046196000000,0.000164713000000,0.000403726000000,0.000048171000000,0.000225158000000,0.000225158000000,0.000408072000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000879775000000 +0.000048170000000,0.000046591000000,0.000165109000000,0.000374492000000,0.000071479000000,0.000262294000000,0.000188812000000,0.000354343000000,0.000045800000000,0.000058443000000,0.000227528000000,0.000891231000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000359874000000,0.000048170000000,0.000225158000000,0.000189603000000,0.000389899000000,0.000045800000000,0.000056467000000,0.000326689000000,0.000868318000000 +0.000048170000000,0.000046195000000,0.000168269000000,0.000394639000000,0.000048171000000,0.000225158000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000057257000000,0.000225158000000,0.000866343000000 +0.000052121000000,0.000046195000000,0.000197504000000,0.000358294000000,0.000048170000000,0.000238986000000,0.000188022000000,0.000355924000000,0.000045800000000,0.000056467000000,0.000227923000000,0.000886491000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000357899000000,0.000054886000000,0.000297454000000,0.000255973000000,0.000391084000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000865552000000 +0.000048170000000,0.000046985000000,0.000164714000000,0.000441652000000,0.000048171000000,0.000225158000000,0.000189208000000,0.000379627000000,0.000065554000000,0.000056861000000,0.000300220000000,0.000866343000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000048565000000,0.000224368000000,0.000189207000000,0.000453503000000,0.000078985000000,0.000149701000000,0.000227528000000,0.000866738000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000444812000000,0.000048566000000,0.000224368000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000128368000000,0.000224763000000,0.000991972000000 +0.000048171000000,0.000046195000000,0.000204615000000,0.000365800000000,0.000054886000000,0.000274935000000,0.000302195000000,0.000354738000000,0.000045800000000,0.000109010000000,0.000227529000000,0.000882540000000 +0.000119676000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000048171000000,0.000226738000000,0.000227133000000,0.000482738000000,0.000045800000000,0.000059628000000,0.000302590000000,0.000872664000000 +0.000084516000000,0.000046195000000,0.000167874000000,0.000444417000000,0.000048565000000,0.000225948000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000072665000000,0.000227134000000,0.000863973000000 +0.000065554000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000049751000000,0.000235429000000,0.000188417000000,0.000433355000000,0.000045801000000,0.000056467000000,0.000226343000000,0.000875824000000 +0.000063577000000,0.000046591000000,0.000165108000000,0.000461800000000,0.000054492000000,0.000260318000000,0.000209356000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000283232000000,0.000826442000000 +0.000048566000000,0.000046196000000,0.000161553000000,0.000389503000000,0.000048565000000,0.000228714000000,0.000189207000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000240565000000,0.000840664000000 +0.000048170000000,0.000046196000000,0.000204220000000,0.000386738000000,0.000048566000000,0.000226738000000,0.000189603000000,0.000398195000000,0.000046195000000,0.000056467000000,0.000264664000000,0.000874244000000 +0.000048171000000,0.000046195000000,0.000162343000000,0.000358294000000,0.000048565000000,0.000224368000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000058442000000,0.000238195000000,0.000902689000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000074245000000,0.000374887000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000262294000000,0.000973009000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000451133000000,0.000099133000000,0.000240565000000,0.000243726000000,0.000390294000000,0.000045800000000,0.000092417000000,0.000225948000000,0.000884120000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000061998000000,0.000227528000000,0.000205405000000,0.000357109000000,0.000046196000000,0.000056466000000,0.000227528000000,0.000908219000000 +0.000048566000000,0.000046195000000,0.000237405000000,0.000362245000000,0.000048171000000,0.000316812000000,0.000188417000000,0.000390689000000,0.000065158000000,0.000056467000000,0.000229503000000,0.000885701000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000431775000000,0.000054886000000,0.000225158000000,0.000188418000000,0.000362639000000,0.000062392000000,0.000056467000000,0.000312862000000,0.000907034000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000360269000000,0.000048566000000,0.000227134000000,0.000188417000000,0.000354343000000,0.000061208000000,0.000062392000000,0.000229504000000,0.000865947000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000438491000000,0.000048565000000,0.000224763000000,0.000225553000000,0.000478393000000,0.000082146000000,0.000056862000000,0.000227133000000,0.000917306000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000357899000000,0.000049751000000,0.000297849000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000227528000000,0.000863182000000 +0.000119676000000,0.000046985000000,0.000184467000000,0.000362639000000,0.000054887000000,0.000225158000000,0.000188417000000,0.000390294000000,0.000045800000000,0.000056862000000,0.000310491000000,0.000888861000000 +0.000051331000000,0.000046195000000,0.000163133000000,0.000430985000000,0.000048565000000,0.000226739000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000226738000000,0.000839873000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000191183000000,0.000354739000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000864367000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000600466000000,0.000048565000000,0.000412417000000,0.000278887000000,0.000390688000000,0.000045800000000,0.000056467000000,0.000279282000000,0.000951281000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000600071000000,0.000054887000000,0.000252812000000,0.000189603000000,0.000406096000000,0.000045801000000,0.000056862000000,0.000228713000000,0.000865553000000 +0.000048565000000,0.000046591000000,0.000164713000000,0.000393849000000,0.000048565000000,0.000223973000000,0.000189207000000,0.000377256000000,0.000046195000000,0.000056861000000,0.000226738000000,0.000884120000000 +0.000048566000000,0.000046591000000,0.000207380000000,0.000359874000000,0.000048566000000,0.000317998000000,0.000188418000000,0.000354343000000,0.000046195000000,0.000056072000000,0.000227923000000,0.000900318000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000394244000000,0.000048565000000,0.000258738000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000374886000000,0.000861997000000 +0.000048170000000,0.000046590000000,0.000199084000000,0.000360664000000,0.000055282000000,0.000227923000000,0.000224762000000,0.000403725000000,0.000045800000000,0.000132318000000,0.000385553000000,0.001319083000000 +0.000048171000000,0.000046195000000,0.000183282000000,0.000362639000000,0.000065553000000,0.000224368000000,0.000189602000000,0.000354739000000,0.000046195000000,0.000072664000000,0.000227134000000,0.000875824000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000394244000000,0.000048566000000,0.000335775000000,0.000189603000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000262294000000,0.000866343000000 +0.000048171000000,0.000046195000000,0.000202245000000,0.000358293000000,0.000048565000000,0.000223578000000,0.000188022000000,0.000435726000000,0.000046196000000,0.000056467000000,0.000227923000000,0.000899528000000 +0.000048565000000,0.000046195000000,0.000165898000000,0.000362640000000,0.000054887000000,0.000229899000000,0.000265059000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000233849000000,0.000866737000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000388713000000,0.000048170000000,0.000304170000000,0.000203825000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000229899000000,0.000866738000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000358294000000,0.000048171000000,0.000228319000000,0.000189998000000,0.000355133000000,0.000046195000000,0.000056862000000,0.000310887000000,0.000865948000000 +0.000048171000000,0.000046195000000,0.000161948000000,0.000397800000000,0.000048565000000,0.000227134000000,0.000188812000000,0.000357504000000,0.000046195000000,0.000056466000000,0.000227529000000,0.000988022000000 +0.000051331000000,0.000046195000000,0.000181306000000,0.000357504000000,0.000054492000000,0.000228714000000,0.000189602000000,0.000424664000000,0.000045800000000,0.000056467000000,0.000223183000000,0.000899133000000 +0.000116121000000,0.000046195000000,0.000165109000000,0.000362639000000,0.000048566000000,0.000307331000000,0.000225158000000,0.000354343000000,0.000062393000000,0.000056467000000,0.000229109000000,0.000873453000000 +0.000060812000000,0.000046590000000,0.000165898000000,0.000404911000000,0.000048565000000,0.000224763000000,0.000188417000000,0.000357504000000,0.000046195000000,0.000056466000000,0.000261898000000,0.000931133000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000050146000000,0.000223973000000,0.000188417000000,0.000415578000000,0.000046195000000,0.000056862000000,0.000224763000000,0.000877009000000 +0.000048170000000,0.000046986000000,0.000161553000000,0.000403726000000,0.000054886000000,0.000225553000000,0.000189997000000,0.000354738000000,0.000058837000000,0.000056467000000,0.000225158000000,0.000855676000000 +0.000048171000000,0.000046196000000,0.000164318000000,0.000358294000000,0.000048171000000,0.000306146000000,0.000189603000000,0.000404121000000,0.000048565000000,0.000076220000000,0.000227529000000,0.000866343000000 +0.000048565000000,0.000047776000000,0.000198689000000,0.000408467000000,0.000048566000000,0.000225553000000,0.000259528000000,0.000354738000000,0.000048961000000,0.000061997000000,0.000263479000000,0.001040169000000 +0.000048566000000,0.000046195000000,0.000167874000000,0.000398195000000,0.000048565000000,0.000224763000000,0.000189602000000,0.000361455000000,0.000048960000000,0.000056467000000,0.000229899000000,0.000882146000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000357898000000,0.000054887000000,0.000227528000000,0.000208961000000,0.000392664000000,0.000048566000000,0.000056467000000,0.000226344000000,0.000866343000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000378046000000,0.000048565000000,0.000310491000000,0.000214492000000,0.000354738000000,0.000048566000000,0.000056466000000,0.000234245000000,0.000902293000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000357899000000,0.000141405000000,0.000225158000000,0.000233059000000,0.000391874000000,0.000048960000000,0.000056467000000,0.000263874000000,0.000880960000000 +0.000048170000000,0.000046195000000,0.000220022000000,0.000358294000000,0.000156418000000,0.000235430000000,0.000199874000000,0.000357109000000,0.000048566000000,0.000056467000000,0.000227133000000,0.000903874000000 +0.000048566000000,0.000046195000000,0.000306936000000,0.000442441000000,0.000171824000000,0.000244516000000,0.000199479000000,0.000356318000000,0.000048566000000,0.000056467000000,0.000227133000000,0.000864367000000 +0.000048565000000,0.000046195000000,0.000180121000000,0.000357898000000,0.000082146000000,0.000291529000000,0.000222393000000,0.000395035000000,0.000048960000000,0.000056467000000,0.000227528000000,0.000846984000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000358689000000,0.000086887000000,0.000225553000000,0.000189207000000,0.000354343000000,0.000048961000000,0.000056466000000,0.000266639000000,0.000848169000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000393850000000,0.000051331000000,0.000225553000000,0.000238195000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000226738000000,0.000831972000000 +0.000048171000000,0.000046195000000,0.000198689000000,0.000357898000000,0.000070294000000,0.000306145000000,0.000188417000000,0.000402540000000,0.000048960000000,0.000056467000000,0.000237010000000,0.000865157000000 +0.000048170000000,0.000046195000000,0.000165899000000,0.000394244000000,0.000048565000000,0.000226738000000,0.000189603000000,0.000354343000000,0.000048566000000,0.000056466000000,0.000246887000000,0.000884911000000 +0.000117307000000,0.000046196000000,0.000167874000000,0.000358294000000,0.000048566000000,0.000223182000000,0.000190788000000,0.000390689000000,0.000049355000000,0.000056467000000,0.000227529000000,0.000883726000000 +0.000064763000000,0.000048961000000,0.000168269000000,0.000362639000000,0.000048565000000,0.000224763000000,0.000189207000000,0.000354738000000,0.000048961000000,0.000056467000000,0.000226343000000,0.000893602000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000433356000000,0.000090442000000,0.000311281000000,0.000239775000000,0.000354343000000,0.000048566000000,0.000092417000000,0.000225948000000,0.000871874000000 +0.000048171000000,0.000046195000000,0.000236615000000,0.000362639000000,0.000048170000000,0.000223182000000,0.000189208000000,0.000498935000000,0.000048960000000,0.000056861000000,0.000267429000000,0.000885306000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000398195000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000412417000000,0.000048961000000,0.000056467000000,0.000226343000000,0.000864367000000 +0.000048170000000,0.000046985000000,0.000165109000000,0.000374096000000,0.000048170000000,0.000225158000000,0.000188418000000,0.000390689000000,0.000048566000000,0.000056467000000,0.000225949000000,0.000864762000000 +0.000048566000000,0.000046195000000,0.000163133000000,0.000358293000000,0.000055282000000,0.000581899000000,0.000188022000000,0.000354738000000,0.000048960000000,0.000058047000000,0.000245306000000,0.000933503000000 +0.000048170000000,0.000046196000000,0.000165109000000,0.000394640000000,0.000048170000000,0.000326293000000,0.000261504000000,0.000354738000000,0.000048566000000,0.000057257000000,0.000316022000000,0.001269701000000 +0.000048171000000,0.000046196000000,0.000202244000000,0.000358293000000,0.000048171000000,0.000260318000000,0.000189603000000,0.000425454000000,0.000048961000000,0.000058047000000,0.000234244000000,0.000907034000000 +0.000048565000000,0.000046591000000,0.000165109000000,0.000360664000000,0.000048170000000,0.000226343000000,0.000188417000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000226343000000,0.000939824000000 +0.000048566000000,0.000046195000000,0.000162738000000,0.000431775000000,0.000054492000000,0.000224763000000,0.000191182000000,0.000376861000000,0.000048566000000,0.000056467000000,0.000225948000000,0.000907429000000 +0.000048170000000,0.000046195000000,0.000164319000000,0.000358294000000,0.000048170000000,0.000235429000000,0.000225159000000,0.000354343000000,0.000048960000000,0.000056467000000,0.000297455000000,0.000910194000000 +0.000048566000000,0.000046590000000,0.000166294000000,0.000393849000000,0.000048171000000,0.000261503000000,0.000189997000000,0.000355924000000,0.000048961000000,0.000056467000000,0.000226344000000,0.000920071000000 +0.000048565000000,0.000046590000000,0.000161158000000,0.000358294000000,0.000048170000000,0.000235430000000,0.000188417000000,0.000440861000000,0.000048566000000,0.000057257000000,0.000235430000000,0.000911379000000 +0.000048171000000,0.000046590000000,0.000236220000000,0.000358294000000,0.000054887000000,0.000228319000000,0.000189603000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000227528000000,0.000915330000000 +0.000052121000000,0.000046195000000,0.000165899000000,0.000393849000000,0.000048565000000,0.000223973000000,0.000189602000000,0.000354343000000,0.000048961000000,0.000057256000000,0.000243725000000,0.000919281000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000357899000000,0.000048171000000,0.000276516000000,0.000257553000000,0.000391874000000,0.000048961000000,0.000092417000000,0.000227133000000,0.001029503000000 +0.000117306000000,0.000046195000000,0.000161948000000,0.000393849000000,0.000048171000000,0.000225158000000,0.000202244000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000233454000000,0.001035824000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000361060000000,0.000054886000000,0.000225158000000,0.000189602000000,0.000391084000000,0.000049356000000,0.000056467000000,0.000247281000000,0.000978540000000 +0.000048170000000,0.000046195000000,0.000211726000000,0.000361059000000,0.000089257000000,0.000226343000000,0.000189208000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000225948000000,0.000865158000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000519084000000,0.000061603000000,0.000259528000000,0.000189602000000,0.000354739000000,0.000048960000000,0.000056467000000,0.000227924000000,0.000866738000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000372516000000,0.000048170000000,0.000228713000000,0.000225553000000,0.000629701000000,0.000048566000000,0.000056467000000,0.000227529000000,0.000877800000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000444417000000,0.000055282000000,0.000255577000000,0.000189207000000,0.000380812000000,0.000048565000000,0.000056467000000,0.000263479000000,0.000865552000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000361059000000,0.000048170000000,0.000223578000000,0.000189602000000,0.000426639000000,0.000048565000000,0.000056467000000,0.000225948000000,0.000866737000000 +0.000048171000000,0.000049356000000,0.000220813000000,0.000370936000000,0.000048566000000,0.000262293000000,0.000188023000000,0.000354343000000,0.000048961000000,0.000056861000000,0.000227528000000,0.000828416000000 +0.000048565000000,0.000242935000000,0.000178935000000,0.000403331000000,0.000048170000000,0.000224763000000,0.000188417000000,0.000357503000000,0.000048565000000,0.000056072000000,0.000226343000000,0.000836713000000 +0.000048566000000,0.000085307000000,0.000168270000000,0.000357899000000,0.000054492000000,0.000226739000000,0.000458640000000,0.000406491000000,0.000048566000000,0.000056467000000,0.000263479000000,0.000863972000000 +0.000048565000000,0.000052517000000,0.000165899000000,0.000393849000000,0.000048171000000,0.000225158000000,0.000365010000000,0.000354343000000,0.000048566000000,0.000056862000000,0.000224763000000,0.000864763000000 +0.000048566000000,0.000048960000000,0.000165109000000,0.000362244000000,0.000048565000000,0.000261108000000,0.000202245000000,0.000405701000000,0.000048960000000,0.000056467000000,0.000225553000000,0.000882540000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000358293000000,0.000048171000000,0.000224368000000,0.000204615000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000227134000000,0.000917305000000 +0.000048566000000,0.000048171000000,0.000178146000000,0.000393455000000,0.000055676000000,0.000226343000000,0.000188417000000,0.000356713000000,0.000048565000000,0.000056467000000,0.000262294000000,0.001145256000000 +0.000048566000000,0.000046196000000,0.000164714000000,0.000358293000000,0.000048171000000,0.000226344000000,0.000189603000000,0.000425849000000,0.000048960000000,0.000127578000000,0.000240170000000,0.000863578000000 +0.000048565000000,0.000047775000000,0.000166294000000,0.000361455000000,0.000048170000000,0.000261899000000,0.000191183000000,0.000354738000000,0.000048961000000,0.000056071000000,0.000226738000000,0.000865158000000 +0.000067924000000,0.000046195000000,0.000165109000000,0.000407676000000,0.000048566000000,0.000224762000000,0.000236220000000,0.000396219000000,0.000048565000000,0.000057257000000,0.000225158000000,0.000864368000000 +0.000360269000000,0.000046195000000,0.000161948000000,0.000366590000000,0.000055676000000,0.000226738000000,0.000189602000000,0.000355923000000,0.000048961000000,0.000056467000000,0.000261109000000,0.001012911000000 +0.000067924000000,0.000046590000000,0.000248466000000,0.000394244000000,0.000067529000000,0.000225948000000,0.000189207000000,0.000354738000000,0.000048961000000,0.000056466000000,0.000224368000000,0.000883330000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000361454000000,0.000064763000000,0.000267034000000,0.000188418000000,0.000390294000000,0.000049355000000,0.000056467000000,0.000227529000000,0.000914540000000 +0.000048171000000,0.000046195000000,0.000161553000000,0.000358689000000,0.000049751000000,0.000223578000000,0.000188417000000,0.000354738000000,0.000048961000000,0.000056862000000,0.000227133000000,0.000876219000000 +0.000048170000000,0.000046985000000,0.000164713000000,0.000398195000000,0.000054886000000,0.000225553000000,0.000265455000000,0.000464961000000,0.000048566000000,0.000056467000000,0.000261504000000,0.000869108000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048171000000,0.000227133000000,0.000227528000000,0.000368960000000,0.000048565000000,0.000056467000000,0.000227924000000,0.000913355000000 +0.000048170000000,0.000046195000000,0.000201849000000,0.000359874000000,0.000048171000000,0.000243331000000,0.000189602000000,0.000354738000000,0.000048961000000,0.000056466000000,0.000225158000000,0.000870293000000 +0.000048171000000,0.000046196000000,0.000166294000000,0.000398195000000,0.000048170000000,0.000225158000000,0.000188418000000,0.000390688000000,0.000048566000000,0.000056862000000,0.000227528000000,0.000865552000000 +0.000048170000000,0.000046196000000,0.000162343000000,0.000358294000000,0.000055282000000,0.000225158000000,0.000191183000000,0.000357504000000,0.000048960000000,0.000056467000000,0.000263874000000,0.000952466000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000399775000000,0.000048565000000,0.000224763000000,0.000238985000000,0.000354738000000,0.000048566000000,0.000056466000000,0.000226343000000,0.000901108000000 +0.000048566000000,0.000046196000000,0.000184071000000,0.000360664000000,0.000048566000000,0.000276911000000,0.000189603000000,0.000390294000000,0.000048960000000,0.000056862000000,0.000227133000000,0.000866343000000 +0.000105454000000,0.000046195000000,0.000235825000000,0.000362640000000,0.000048170000000,0.000222787000000,0.000188417000000,0.000353948000000,0.000048565000000,0.000092418000000,0.000227134000000,0.000869108000000 +0.000065158000000,0.000046195000000,0.000164714000000,0.000444417000000,0.000054887000000,0.000224368000000,0.000189602000000,0.000425455000000,0.000048961000000,0.000056862000000,0.000263479000000,0.001221898000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000362640000000,0.000048565000000,0.000261899000000,0.000189998000000,0.000354343000000,0.000048960000000,0.000056862000000,0.000227923000000,0.000905848000000 +0.000048565000000,0.000046195000000,0.000161948000000,0.000394244000000,0.000048171000000,0.000225158000000,0.000205010000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000225948000000,0.000910590000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000366195000000,0.000048565000000,0.000224763000000,0.000188418000000,0.000390689000000,0.000048566000000,0.000056467000000,0.000229898000000,0.000921256000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000360269000000,0.000055282000000,0.000225948000000,0.000189602000000,0.000355923000000,0.000048960000000,0.000056467000000,0.000350788000000,0.000983281000000 +0.000048961000000,0.000047775000000,0.000233850000000,0.000394245000000,0.000048566000000,0.000263479000000,0.000189998000000,0.000354343000000,0.000048566000000,0.000056862000000,0.000254393000000,0.000882935000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000358293000000,0.000048170000000,0.000225158000000,0.000228319000000,0.000404121000000,0.000048961000000,0.000056467000000,0.000226343000000,0.000943380000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000064763000000,0.000224763000000,0.000220023000000,0.000354738000000,0.000048960000000,0.000056862000000,0.000227528000000,0.000895972000000 +0.000048170000000,0.000046195000000,0.000162738000000,0.000412022000000,0.000055677000000,0.000225158000000,0.000189602000000,0.000390294000000,0.000048961000000,0.000056467000000,0.000263874000000,0.000898343000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000357898000000,0.000048565000000,0.000265059000000,0.000189207000000,0.000355133000000,0.000065158000000,0.000058442000000,0.000228318000000,0.000899923000000 +0.000048170000000,0.000046196000000,0.000236614000000,0.000435726000000,0.000048171000000,0.000226738000000,0.000188022000000,0.000354738000000,0.000048961000000,0.000056467000000,0.000226343000000,0.000901504000000 +0.000052121000000,0.000046196000000,0.000164319000000,0.000374491000000,0.000048171000000,0.000227923000000,0.000224368000000,0.000389899000000,0.000048565000000,0.000056467000000,0.000225949000000,0.001289454000000 +0.000048566000000,0.000124813000000,0.000165109000000,0.000389898000000,0.000054491000000,0.000225553000000,0.000188417000000,0.000354738000000,0.000048961000000,0.000058047000000,0.000309702000000,0.000922046000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000396615000000,0.000048566000000,0.000296269000000,0.000188418000000,0.000355529000000,0.000048566000000,0.000092417000000,0.000226738000000,0.000883725000000 +0.000048566000000,0.000046195000000,0.000167479000000,0.000360664000000,0.000048565000000,0.000225553000000,0.000189207000000,0.000408071000000,0.000048960000000,0.000058442000000,0.000227528000000,0.000878590000000 +0.000048565000000,0.000046195000000,0.000198294000000,0.000396220000000,0.000048171000000,0.000224763000000,0.000188417000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000285997000000,0.000891626000000 +0.000125603000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000054886000000,0.000224763000000,0.000224763000000,0.000390293000000,0.000048565000000,0.000056467000000,0.000227528000000,0.000880170000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048566000000,0.000261504000000,0.000189603000000,0.000357109000000,0.000048565000000,0.000056862000000,0.000226343000000,0.000877800000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000412022000000,0.000048565000000,0.000225158000000,0.000191183000000,0.000354343000000,0.000048961000000,0.000057652000000,0.000224368000000,0.000922441000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048171000000,0.000225158000000,0.000189207000000,0.000390689000000,0.000048565000000,0.000056467000000,0.000264664000000,0.000940614000000 +0.000048170000000,0.000046195000000,0.000166294000000,0.000394639000000,0.000055281000000,0.000224368000000,0.000189602000000,0.000356714000000,0.000048961000000,0.000056862000000,0.000226739000000,0.000914935000000 +0.000048566000000,0.000048171000000,0.000235824000000,0.000358293000000,0.000048566000000,0.000265059000000,0.000271380000000,0.000355923000000,0.000048566000000,0.000056467000000,0.000226739000000,0.000905849000000 +0.000048170000000,0.000046195000000,0.000161948000000,0.000360664000000,0.000048566000000,0.000223972000000,0.000188417000000,0.000390689000000,0.000048960000000,0.000056467000000,0.000227528000000,0.000866738000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000408466000000,0.000048565000000,0.000225948000000,0.000188418000000,0.000354738000000,0.000048961000000,0.000056861000000,0.000261899000000,0.000894392000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000361059000000,0.000071874000000,0.000225158000000,0.000188417000000,0.000389899000000,0.000048961000000,0.000056862000000,0.000227924000000,0.000846195000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000361059000000,0.000048566000000,0.000261109000000,0.000189208000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000233850000000,0.000831182000000 +0.000048565000000,0.000046590000000,0.000365010000000,0.000519478000000,0.000048565000000,0.000225158000000,0.000225553000000,0.000355924000000,0.000049356000000,0.000056072000000,0.000225158000000,0.000868318000000 +0.000052121000000,0.000046195000000,0.000161554000000,0.000358293000000,0.000048171000000,0.000238985000000,0.000188418000000,0.000579133000000,0.000067133000000,0.000056862000000,0.000264269000000,0.000873454000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000393455000000,0.000055281000000,0.000276121000000,0.000190788000000,0.000355923000000,0.000048566000000,0.000075429000000,0.000224763000000,0.000938639000000 +0.000048565000000,0.000046985000000,0.000165109000000,0.000358293000000,0.000048566000000,0.000261108000000,0.000189207000000,0.000390688000000,0.000048565000000,0.000056467000000,0.000228319000000,0.001000664000000 +0.000048566000000,0.000046590000000,0.000184467000000,0.000367776000000,0.000048566000000,0.000223973000000,0.000208961000000,0.000354739000000,0.000048961000000,0.000056467000000,0.000227528000000,0.000863182000000 +0.000048565000000,0.000046590000000,0.000530541000000,0.000429009000000,0.000048565000000,0.000224763000000,0.000188812000000,0.000355133000000,0.000048961000000,0.000056861000000,0.000261898000000,0.000868318000000 +0.000048566000000,0.000046196000000,0.000237010000000,0.000358688000000,0.000054492000000,0.000224763000000,0.000189603000000,0.000434936000000,0.000048565000000,0.000056467000000,0.000227133000000,0.000879774000000 +0.000087676000000,0.000046196000000,0.000201059000000,0.000432566000000,0.000048565000000,0.000262689000000,0.000189603000000,0.000354738000000,0.000048566000000,0.000056862000000,0.000230689000000,0.000878194000000 +0.000065158000000,0.000046196000000,0.000167874000000,0.000357899000000,0.000048566000000,0.000225948000000,0.000188417000000,0.000391874000000,0.000048960000000,0.000056467000000,0.000226739000000,0.000868318000000 +0.000048566000000,0.000046196000000,0.000164714000000,0.000360269000000,0.000048565000000,0.000235825000000,0.000243726000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000262689000000,0.000874244000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000427824000000,0.000054887000000,0.000223973000000,0.000189602000000,0.000354343000000,0.000048566000000,0.000056862000000,0.000227923000000,0.000831577000000 +0.000048171000000,0.000046195000000,0.000161158000000,0.000361850000000,0.000048170000000,0.000342491000000,0.000189602000000,0.000400961000000,0.000048565000000,0.000056467000000,0.000225948000000,0.000831182000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000409256000000,0.000048171000000,0.000240566000000,0.000189603000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000228319000000,0.000835922000000 +0.000048961000000,0.000046590000000,0.000198294000000,0.000367775000000,0.000048565000000,0.000224368000000,0.000189207000000,0.000356714000000,0.000048961000000,0.000056861000000,0.000261108000000,0.000870293000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000054887000000,0.000261108000000,0.000225553000000,0.000404911000000,0.000048960000000,0.000056467000000,0.000225948000000,0.000877404000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000443232000000,0.000076220000000,0.000224763000000,0.000189207000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000226343000000,0.000871874000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000357898000000,0.000048565000000,0.000227528000000,0.000188022000000,0.000448368000000,0.000048960000000,0.000131923000000,0.000227133000000,0.000880170000000 +0.000048565000000,0.000046590000000,0.000165899000000,0.000394244000000,0.000048171000000,0.000225554000000,0.000188417000000,0.000362639000000,0.000049355000000,0.000056467000000,0.000279676000000,0.000886886000000 +0.000048171000000,0.000046590000000,0.000201455000000,0.000396615000000,0.000054491000000,0.000263874000000,0.000188022000000,0.000354739000000,0.000048566000000,0.000056862000000,0.000227923000000,0.000916516000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000358689000000,0.000048171000000,0.000227133000000,0.000235825000000,0.000390293000000,0.000048960000000,0.000056072000000,0.000229503000000,0.000867133000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000832367000000,0.000048565000000,0.000224763000000,0.000189207000000,0.000355923000000,0.000048961000000,0.000058047000000,0.000227134000000,0.000873849000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000431380000000,0.000048171000000,0.000227134000000,0.000188417000000,0.000390689000000,0.000048566000000,0.000056467000000,0.000277306000000,0.000875034000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000357898000000,0.000054886000000,0.000267825000000,0.000188418000000,0.000354738000000,0.000048960000000,0.000056467000000,0.000225948000000,0.000992367000000 +0.000051331000000,0.000124813000000,0.000162343000000,0.000358294000000,0.000048566000000,0.000227133000000,0.000189207000000,0.000354738000000,0.000048961000000,0.000056466000000,0.000226738000000,0.000864367000000 +0.000083726000000,0.000060812000000,0.000249257000000,0.000406886000000,0.000048566000000,0.000225158000000,0.000474442000000,0.000393060000000,0.000048961000000,0.000056467000000,0.000227134000000,0.000863972000000 +0.000062788000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048565000000,0.000229109000000,0.000246491000000,0.000362639000000,0.000048565000000,0.000056467000000,0.000240961000000,0.000835528000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000394245000000,0.000054887000000,0.000260713000000,0.000189603000000,0.000356714000000,0.000048961000000,0.000056466000000,0.000228714000000,0.000875429000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000048170000000,0.000224368000000,0.000225553000000,0.000395034000000,0.000048565000000,0.000056467000000,0.000226738000000,0.000899527000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000357899000000,0.000048171000000,0.000226739000000,0.000188418000000,0.000354738000000,0.000048960000000,0.000056072000000,0.000227529000000,0.000868318000000 +0.000048565000000,0.000046591000000,0.000202640000000,0.000399775000000,0.000048565000000,0.000224763000000,0.000188417000000,0.000390293000000,0.000048961000000,0.000058047000000,0.000242145000000,0.001172515000000 +0.000048171000000,0.000046196000000,0.000161948000000,0.000357898000000,0.000054887000000,0.000263084000000,0.000241356000000,0.000354344000000,0.000048565000000,0.000102689000000,0.000227528000000,0.000944565000000 +0.000048565000000,0.000065158000000,0.000164713000000,0.000358294000000,0.000048170000000,0.000224763000000,0.000189998000000,0.000354738000000,0.000048566000000,0.000056467000000,0.000226738000000,0.000889652000000 +0.000048171000000,0.000062787000000,0.000165109000000,0.000407282000000,0.000065159000000,0.000223578000000,0.000261108000000,0.000618244000000,0.000048961000000,0.000062393000000,0.000245701000000,0.000863972000000 +0.000048565000000,0.000077010000000,0.000165899000000,0.000358293000000,0.000048170000000,0.000223973000000,0.000188417000000,0.000390689000000,0.000048565000000,0.000056467000000,0.000227924000000,0.000827232000000 +0.000048171000000,0.000046195000000,0.000201850000000,0.000394244000000,0.000055282000000,0.000265849000000,0.000190788000000,0.000390294000000,0.000048961000000,0.000061997000000,0.000233850000000,0.000833158000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000368170000000,0.000048565000000,0.000228318000000,0.000189208000000,0.000408862000000,0.000055677000000,0.000056467000000,0.000229899000000,0.000864367000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000360664000000,0.000048566000000,0.000227923000000,0.000208960000000,0.000410837000000,0.000048960000000,0.000056467000000,0.000262293000000,0.000874243000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000394244000000,0.000048565000000,0.000227528000000,0.000204219000000,0.000370935000000,0.000048566000000,0.000056862000000,0.000227529000000,0.000865553000000 +0.000051331000000,0.000046195000000,0.000161948000000,0.000361059000000,0.000054492000000,0.000265059000000,0.000189997000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000274541000000,0.000865553000000 +0.000048565000000,0.000083331000000,0.000165108000000,0.000394245000000,0.000048170000000,0.000225158000000,0.000189603000000,0.000405306000000,0.000048565000000,0.000056467000000,0.000229109000000,0.000862392000000 +0.000048171000000,0.000046590000000,0.000244121000000,0.000363824000000,0.000048171000000,0.000224763000000,0.000188813000000,0.000354738000000,0.000049356000000,0.000056467000000,0.000261898000000,0.000913355000000 +0.000067924000000,0.000046195000000,0.000180516000000,0.000363430000000,0.000048170000000,0.000224368000000,0.000224368000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000225553000000,0.000867527000000 +0.000082541000000,0.000046195000000,0.000161553000000,0.000407281000000,0.000054887000000,0.000261899000000,0.000189997000000,0.000427430000000,0.000048565000000,0.000056862000000,0.000224763000000,0.000871874000000 +0.000052911000000,0.000046195000000,0.000165109000000,0.000361059000000,0.000048170000000,0.000223973000000,0.000189602000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000228319000000,0.000904268000000 +0.000065553000000,0.000047776000000,0.000161553000000,0.000361059000000,0.000048171000000,0.000225553000000,0.000189603000000,0.000391874000000,0.000048960000000,0.000113356000000,0.000269404000000,0.000870293000000 +0.000062788000000,0.000046195000000,0.000239775000000,0.000432565000000,0.000048566000000,0.000224368000000,0.000189602000000,0.000362640000000,0.000048566000000,0.000056467000000,0.000229899000000,0.000869109000000 +0.000048566000000,0.000046195000000,0.000164319000000,0.000358294000000,0.000054886000000,0.000263479000000,0.000225948000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000226343000000,0.001145256000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000393850000000,0.000048566000000,0.000225553000000,0.000189207000000,0.000443232000000,0.000048960000000,0.000056861000000,0.000233850000000,0.000872663000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000357898000000,0.000048170000000,0.000225553000000,0.000188022000000,0.000354343000000,0.000048961000000,0.000062393000000,0.000263874000000,0.000931133000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000362640000000,0.000084516000000,0.000235430000000,0.000188022000000,0.000390688000000,0.000048566000000,0.000056072000000,0.000227528000000,0.000866738000000 +0.000048565000000,0.000046195000000,0.000201059000000,0.000393849000000,0.000054887000000,0.000308911000000,0.000188417000000,0.000357504000000,0.000048960000000,0.000056861000000,0.000227133000000,0.000881750000000 +0.000048566000000,0.000046195000000,0.000164319000000,0.000357899000000,0.000048170000000,0.000237405000000,0.000259924000000,0.000354738000000,0.000048961000000,0.000056862000000,0.000227528000000,0.000868713000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000433355000000,0.000048171000000,0.000225553000000,0.000189207000000,0.000426245000000,0.000048960000000,0.000056467000000,0.000266244000000,0.000922046000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000357898000000,0.000048565000000,0.000225949000000,0.000188022000000,0.000354738000000,0.000049355000000,0.000056071000000,0.000226343000000,0.000875034000000 +0.000048170000000,0.000046195000000,0.000162738000000,0.000358294000000,0.000054491000000,0.000318788000000,0.000188417000000,0.000355133000000,0.000048566000000,0.000056467000000,0.000237405000000,0.000868713000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000433356000000,0.000048566000000,0.000226739000000,0.000189602000000,0.000390294000000,0.000048960000000,0.000056467000000,0.000227529000000,0.000970243000000 +0.000048565000000,0.000046195000000,0.000209356000000,0.000358293000000,0.000048565000000,0.000222788000000,0.000227134000000,0.000354738000000,0.000048961000000,0.000056467000000,0.000372121000000,0.000868318000000 +0.000049356000000,0.000048961000000,0.000167874000000,0.000359873000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000425455000000,0.000048566000000,0.000056467000000,0.000242936000000,0.000871479000000 +0.000065158000000,0.000124812000000,0.000164713000000,0.000404516000000,0.000054491000000,0.000244121000000,0.000189602000000,0.000354738000000,0.000048565000000,0.000092418000000,0.000225948000000,0.000834738000000 +0.000048565000000,0.000133899000000,0.000164714000000,0.000358293000000,0.000048566000000,0.000223182000000,0.000188813000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000264665000000,0.000837898000000 +0.000048566000000,0.000067529000000,0.000164713000000,0.000443627000000,0.000048170000000,0.000225158000000,0.000188417000000,0.000390689000000,0.000049356000000,0.000056467000000,0.000225948000000,0.000831577000000 +0.000048565000000,0.000115331000000,0.000201850000000,0.000362244000000,0.000048171000000,0.000225158000000,0.000224763000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000226343000000,0.000876614000000 +0.000048171000000,0.000097553000000,0.000163133000000,0.000358689000000,0.000074244000000,0.000276516000000,0.000188022000000,0.000397800000000,0.000048961000000,0.000056071000000,0.000226738000000,0.000873059000000 +0.000082145000000,0.000049356000000,0.000165109000000,0.000398590000000,0.000064763000000,0.000227923000000,0.000189208000000,0.000402541000000,0.000048960000000,0.000056072000000,0.000305750000000,0.000871479000000 +0.000064763000000,0.000077010000000,0.000165899000000,0.000361059000000,0.000064368000000,0.000224763000000,0.000189997000000,0.000358294000000,0.000048960000000,0.000056467000000,0.000234244000000,0.001001453000000 +0.000064368000000,0.000046590000000,0.000165109000000,0.000393849000000,0.000076615000000,0.000262688000000,0.000188812000000,0.000391479000000,0.000048566000000,0.000056862000000,0.000225948000000,0.000878985000000 +0.000048566000000,0.000046195000000,0.000162343000000,0.000358293000000,0.000055281000000,0.000225553000000,0.000226738000000,0.000354738000000,0.000048960000000,0.000056467000000,0.000225553000000,0.000910195000000 +0.000048566000000,0.000046195000000,0.000216072000000,0.000363035000000,0.000048566000000,0.000235429000000,0.000189207000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000263084000000,0.000918886000000 +0.000048566000000,0.000046590000000,0.000165898000000,0.000398985000000,0.000048565000000,0.000225158000000,0.000189603000000,0.000812615000000,0.000048961000000,0.000056467000000,0.000226738000000,0.000900713000000 +0.000048170000000,0.000046985000000,0.000161553000000,0.000358689000000,0.000048566000000,0.000270986000000,0.000188812000000,0.000408861000000,0.000048565000000,0.000056467000000,0.000235824000000,0.000871874000000 +0.000048566000000,0.000046590000000,0.000165504000000,0.000358294000000,0.000055282000000,0.000228319000000,0.000189997000000,0.000355528000000,0.000048961000000,0.000056467000000,0.000227923000000,0.000910195000000 +0.000052121000000,0.000046195000000,0.000166294000000,0.000737948000000,0.000048565000000,0.000224367000000,0.000207381000000,0.000355923000000,0.000048961000000,0.000056467000000,0.000298244000000,0.000831577000000 +0.000048565000000,0.000046195000000,0.000201059000000,0.000422294000000,0.000048171000000,0.000226738000000,0.000188417000000,0.000390689000000,0.000048960000000,0.000075825000000,0.000226738000000,0.001140515000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000368170000000,0.000048170000000,0.000261108000000,0.000188418000000,0.000354738000000,0.000048566000000,0.000056467000000,0.000233849000000,0.000872268000000 +0.000084516000000,0.000046196000000,0.000165504000000,0.000358294000000,0.000054887000000,0.000225158000000,0.000189997000000,0.000393059000000,0.000048565000000,0.000056466000000,0.000227528000000,0.000883330000000 +0.000048565000000,0.000046196000000,0.000164713000000,0.000393454000000,0.000048170000000,0.000226343000000,0.000227923000000,0.000370936000000,0.000048565000000,0.000056467000000,0.000262689000000,0.000879379000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000223183000000,0.000218442000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000227924000000,0.000866737000000 +0.000048170000000,0.000046196000000,0.000201454000000,0.000394244000000,0.000048565000000,0.000264664000000,0.000189602000000,0.000395035000000,0.000048960000000,0.000056466000000,0.000228319000000,0.000909009000000 +0.000048566000000,0.000046195000000,0.000165504000000,0.000358294000000,0.000055282000000,0.000223182000000,0.000189207000000,0.000354343000000,0.000048566000000,0.000056467000000,0.000227134000000,0.000875429000000 +0.000048565000000,0.000046195000000,0.000165503000000,0.000363035000000,0.000048961000000,0.000223973000000,0.000189208000000,0.000357899000000,0.000048566000000,0.000056467000000,0.000460615000000,0.000920466000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000407676000000,0.000048170000000,0.000226344000000,0.000259528000000,0.000393454000000,0.000048960000000,0.000056467000000,0.000242540000000,0.000907429000000 +0.000048565000000,0.000046195000000,0.000165504000000,0.000362640000000,0.000048171000000,0.000321553000000,0.000188417000000,0.000354738000000,0.000048566000000,0.000056467000000,0.000225948000000,0.000851725000000 +0.000048171000000,0.000046195000000,0.000167874000000,0.000357503000000,0.000110195000000,0.000226343000000,0.000188022000000,0.000425455000000,0.000048566000000,0.000056467000000,0.000263874000000,0.000911775000000 +0.000048565000000,0.000050936000000,0.000202244000000,0.000394245000000,0.000063578000000,0.000225158000000,0.000188022000000,0.000354738000000,0.000048960000000,0.000056467000000,0.000225158000000,0.000875429000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000224762000000,0.000189208000000,0.000356713000000,0.000049356000000,0.000056467000000,0.000225553000000,0.000870688000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000493404000000,0.000048171000000,0.000260318000000,0.000224368000000,0.000412022000000,0.000048565000000,0.000056466000000,0.000227529000000,0.000932318000000 +0.000048566000000,0.000048170000000,0.000161553000000,0.000463380000000,0.000054886000000,0.000226343000000,0.000188417000000,0.000358293000000,0.000048566000000,0.000056467000000,0.000263479000000,0.001117207000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000544368000000,0.000048170000000,0.000226343000000,0.000189998000000,0.000354738000000,0.000048566000000,0.000091628000000,0.000226343000000,0.000866738000000 +0.000048566000000,0.000048961000000,0.000286392000000,0.000358689000000,0.000048171000000,0.000225553000000,0.000191183000000,0.000406491000000,0.000049355000000,0.000070294000000,0.000226738000000,0.000877800000000 +0.000048565000000,0.000046591000000,0.000326294000000,0.000367380000000,0.000048170000000,0.000372911000000,0.000189603000000,0.000380022000000,0.000049356000000,0.000056467000000,0.000276911000000,0.000887281000000 +0.000048171000000,0.000046195000000,0.000176565000000,0.000394639000000,0.000054492000000,0.000246492000000,0.000239380000000,0.000438096000000,0.000065553000000,0.000056862000000,0.000261109000000,0.000836713000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000359084000000,0.000048565000000,0.000225553000000,0.000189208000000,0.000354343000000,0.000048566000000,0.000091627000000,0.000224763000000,0.000924022000000 +0.000084121000000,0.000046590000000,0.000256763000000,0.000443627000000,0.000048171000000,0.000261503000000,0.000188417000000,0.000354738000000,0.000060812000000,0.000087676000000,0.000227529000000,0.000905849000000 +0.000048170000000,0.000046195000000,0.000161948000000,0.000357109000000,0.000048170000000,0.000223578000000,0.000188418000000,0.000396220000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000871083000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000358294000000,0.000055282000000,0.000225158000000,0.000309701000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000242541000000,0.000927182000000 +0.000048170000000,0.000045800000000,0.000164714000000,0.000519084000000,0.000048565000000,0.000227133000000,0.000205800000000,0.000415578000000,0.000045800000000,0.000056466000000,0.000227923000000,0.000907825000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358688000000,0.000048566000000,0.000298244000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056072000000,0.000225553000000,0.000869503000000 +0.000048565000000,0.000046195000000,0.000203429000000,0.000404515000000,0.000048170000000,0.000225158000000,0.000188418000000,0.000357504000000,0.000046195000000,0.000056467000000,0.000227134000000,0.000877404000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000358293000000,0.000074640000000,0.000225158000000,0.000190788000000,0.000427034000000,0.000045800000000,0.000056861000000,0.000227528000000,0.000864762000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000360269000000,0.000064368000000,0.000224763000000,0.000225158000000,0.000354739000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000886096000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000439676000000,0.000048171000000,0.000296664000000,0.000189602000000,0.000390688000000,0.000046195000000,0.000090442000000,0.000227133000000,0.000865948000000 +0.000050936000000,0.000046195000000,0.000165109000000,0.000361849000000,0.000048170000000,0.000223182000000,0.000188417000000,0.000358293000000,0.000045801000000,0.000071084000000,0.000253207000000,0.000874244000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000393850000000,0.000054887000000,0.000224368000000,0.000189603000000,0.000355924000000,0.000046196000000,0.000056467000000,0.000227134000000,0.000910985000000 +0.000048566000000,0.000046195000000,0.000182096000000,0.000358294000000,0.000048565000000,0.000224763000000,0.000189602000000,0.000448368000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000878984000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000358293000000,0.000048171000000,0.000306936000000,0.000225553000000,0.000372911000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000837898000000 +0.000048171000000,0.000046196000000,0.000165109000000,0.000447183000000,0.000048170000000,0.000275726000000,0.000188417000000,0.000376861000000,0.000045800000000,0.000056862000000,0.000265849000000,0.000881751000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000359479000000,0.000054492000000,0.000226343000000,0.000189998000000,0.000391084000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000909009000000 +0.000048566000000,0.000047775000000,0.000164713000000,0.000394244000000,0.000048565000000,0.000226344000000,0.000189998000000,0.000360269000000,0.000082146000000,0.000056466000000,0.000234244000000,0.000900713000000 +0.000048170000000,0.000118096000000,0.000200665000000,0.000357898000000,0.000048171000000,0.000262294000000,0.000189997000000,0.000393059000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000900318000000 +0.000067529000000,0.000076220000000,0.000164714000000,0.000358294000000,0.000048171000000,0.000224368000000,0.000348417000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000299034000000,0.000872268000000 +0.000064763000000,0.000046590000000,0.000276911000000,0.000429010000000,0.000054886000000,0.000224763000000,0.000221208000000,0.000365010000000,0.000045800000000,0.000056861000000,0.000227528000000,0.000920071000000 +0.000048565000000,0.000046195000000,0.000181702000000,0.000363825000000,0.000048566000000,0.000227923000000,0.000189602000000,0.000390294000000,0.000045800000000,0.000056862000000,0.000228713000000,0.000873848000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000377651000000,0.000048565000000,0.000320368000000,0.000188417000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000226738000000,0.000914540000000 +0.000052121000000,0.000046590000000,0.000211726000000,0.000373701000000,0.000048566000000,0.000228319000000,0.000259528000000,0.000410047000000,0.000045800000000,0.000056467000000,0.000262294000000,0.000869108000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000361059000000,0.000054886000000,0.000225553000000,0.000188417000000,0.000600466000000,0.000046195000000,0.000074640000000,0.000226344000000,0.000920466000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000439677000000,0.000048171000000,0.000295084000000,0.000188023000000,0.000400171000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000831183000000 +0.000048565000000,0.000046195000000,0.000168269000000,0.000359084000000,0.000064763000000,0.000239775000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000227923000000,0.000957997000000 +0.000048171000000,0.000046591000000,0.000161948000000,0.000361059000000,0.000061603000000,0.000224368000000,0.000188418000000,0.000356714000000,0.000045800000000,0.000056467000000,0.000319973000000,0.000925997000000 +0.000054096000000,0.000046591000000,0.000201454000000,0.000469306000000,0.000054886000000,0.000224763000000,0.000272960000000,0.000487874000000,0.000045800000000,0.000056072000000,0.000227924000000,0.000863182000000 +0.000048565000000,0.000046591000000,0.000165109000000,0.000572021000000,0.000048566000000,0.000405701000000,0.000189602000000,0.000393059000000,0.000046196000000,0.000056072000000,0.000226344000000,0.000871873000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000455084000000,0.000048565000000,0.000367775000000,0.000190788000000,0.000426640000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000876219000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000399775000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000355923000000,0.000045800000000,0.000056467000000,0.000264269000000,0.000873059000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000429404000000,0.000054886000000,0.000274541000000,0.000225948000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000226738000000,0.000869109000000 +0.000048565000000,0.000047775000000,0.000184862000000,0.000359084000000,0.000048171000000,0.000229109000000,0.000189208000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000227134000000,0.000878195000000 +0.000048566000000,0.000047380000000,0.000161948000000,0.000442047000000,0.000048170000000,0.000223972000000,0.000188417000000,0.000355134000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000876615000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000364615000000,0.000050146000000,0.000225553000000,0.000188418000000,0.000429800000000,0.000064763000000,0.000056862000000,0.000296664000000,0.000848170000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000055282000000,0.000262293000000,0.000188417000000,0.000368565000000,0.000062392000000,0.000058442000000,0.000227528000000,0.000849751000000 +0.000082540000000,0.000046196000000,0.000164714000000,0.000430985000000,0.000048170000000,0.000225158000000,0.000261109000000,0.000354738000000,0.000067134000000,0.000056467000000,0.000233454000000,0.000869108000000 +0.000062788000000,0.000046591000000,0.000167874000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000390293000000,0.000048960000000,0.000056862000000,0.000225553000000,0.000924417000000 +0.000051726000000,0.000046195000000,0.000198689000000,0.000394244000000,0.000048170000000,0.000238985000000,0.000188417000000,0.000355924000000,0.000059232000000,0.000092812000000,0.000279281000000,0.000875825000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000054887000000,0.000261504000000,0.000191182000000,0.000355133000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000874244000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000360664000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000415578000000,0.000046195000000,0.000056862000000,0.000227923000000,0.000869503000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000705948000000,0.000067924000000,0.000224368000000,0.000225948000000,0.000379232000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000870294000000 +0.000048960000000,0.000046590000000,0.000165109000000,0.000841059000000,0.000048170000000,0.000224368000000,0.000188418000000,0.000445207000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000874639000000 +0.000048171000000,0.000046590000000,0.000207775000000,0.000388319000000,0.000055282000000,0.000261898000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000962737000000 +0.000048565000000,0.000046590000000,0.000178936000000,0.000627331000000,0.000048565000000,0.000227133000000,0.000189602000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000231084000000,0.000919676000000 +0.000048566000000,0.000046590000000,0.000167084000000,0.000402146000000,0.000048171000000,0.000225948000000,0.000188418000000,0.000421898000000,0.000046195000000,0.000056862000000,0.000262688000000,0.000896762000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000450343000000,0.000048565000000,0.000235429000000,0.000239380000000,0.000396614000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000881750000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000380022000000,0.000054887000000,0.000265849000000,0.000189603000000,0.000440467000000,0.000046195000000,0.000056466000000,0.000228318000000,0.000836318000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000425850000000,0.000048170000000,0.000228714000000,0.000189208000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000872269000000 +0.000048566000000,0.000046195000000,0.000250837000000,0.000390294000000,0.000048171000000,0.000226343000000,0.000189602000000,0.000357899000000,0.000046195000000,0.000056467000000,0.000291528000000,0.000957602000000 +0.000048171000000,0.000046590000000,0.000162343000000,0.000379627000000,0.000048565000000,0.000224368000000,0.000189602000000,0.000391084000000,0.000045800000000,0.000058442000000,0.000242936000000,0.000919280000000 +0.000048170000000,0.000046196000000,0.000165109000000,0.000415183000000,0.000054887000000,0.000242145000000,0.000225158000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000225554000000,0.000871084000000 +0.000048171000000,0.000046986000000,0.000164713000000,0.000383973000000,0.000048566000000,0.000224368000000,0.000189602000000,0.000390294000000,0.000081750000000,0.000075824000000,0.000226343000000,0.000878589000000 +0.000067923000000,0.000046590000000,0.000164714000000,0.000415182000000,0.000048566000000,0.000227134000000,0.000188022000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000904664000000 +0.000048170000000,0.000046590000000,0.000201849000000,0.000384367000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000354738000000,0.000046196000000,0.000056466000000,0.000229899000000,0.001298144000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000381997000000,0.000054886000000,0.000241356000000,0.000188023000000,0.000398195000000,0.000046196000000,0.000056467000000,0.000227924000000,0.000909799000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000383578000000,0.000048171000000,0.000227134000000,0.000253207000000,0.000354738000000,0.000045800000000,0.000062393000000,0.000229109000000,0.000864367000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000444417000000,0.000048565000000,0.000224763000000,0.000189208000000,0.000355133000000,0.000046195000000,0.000056466000000,0.000275330000000,0.000919676000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000381603000000,0.000048171000000,0.000227528000000,0.000188022000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000227528000000,0.000864368000000 +0.000048566000000,0.000046590000000,0.000200664000000,0.000383973000000,0.000071479000000,0.000241355000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000918096000000 +0.000051331000000,0.000046195000000,0.000162738000000,0.000379232000000,0.000048170000000,0.000226738000000,0.000225553000000,0.000389898000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000873454000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000415183000000,0.000048566000000,0.000224763000000,0.000191183000000,0.000354739000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000953256000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000383973000000,0.000048170000000,0.000265454000000,0.000189208000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000224368000000,0.000882145000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000380417000000,0.000054886000000,0.000224763000000,0.000189602000000,0.000398195000000,0.000046195000000,0.000056862000000,0.000228713000000,0.000906639000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000379627000000,0.000048566000000,0.000224368000000,0.000189207000000,0.000357504000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000868713000000 +0.000048170000000,0.000046195000000,0.000235430000000,0.000381998000000,0.000048565000000,0.000278097000000,0.000293109000000,0.000354738000000,0.000046195000000,0.000056071000000,0.000359874000000,0.000916516000000 +0.000048566000000,0.000046195000000,0.000165898000000,0.000380022000000,0.000049751000000,0.000296269000000,0.000205010000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000243330000000,0.000837898000000 +0.000048565000000,0.000046591000000,0.000161554000000,0.000382788000000,0.000054886000000,0.000227528000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000127973000000,0.000227923000000,0.001097058000000 +0.000048566000000,0.000046591000000,0.000164714000000,0.000418343000000,0.000048566000000,0.000224368000000,0.000189602000000,0.000391084000000,0.000045800000000,0.000106244000000,0.000269800000000,0.000872664000000 +0.000048566000000,0.000046591000000,0.000165109000000,0.000385158000000,0.000048565000000,0.000223578000000,0.000189602000000,0.000354738000000,0.000046591000000,0.000060417000000,0.000226343000000,0.000865553000000 +0.000048171000000,0.000046195000000,0.000202639000000,0.000358294000000,0.000048566000000,0.000259923000000,0.000206195000000,0.000354739000000,0.000065158000000,0.000069899000000,0.000227528000000,0.000867528000000 +0.000084122000000,0.000046590000000,0.000165899000000,0.000411627000000,0.000055282000000,0.000229899000000,0.000190787000000,0.000400960000000,0.000116516000000,0.000056466000000,0.000233849000000,0.000869108000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000048170000000,0.000228319000000,0.000189603000000,0.000354343000000,0.000097553000000,0.000056467000000,0.000266639000000,0.000878984000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000377257000000,0.000048171000000,0.000228319000000,0.000189603000000,0.000357504000000,0.000048961000000,0.000056467000000,0.000226343000000,0.000926392000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000361850000000,0.000048170000000,0.000263874000000,0.000221997000000,0.000519084000000,0.000048960000000,0.000056862000000,0.000228318000000,0.000869899000000 +0.000051331000000,0.000046590000000,0.000161948000000,0.000357503000000,0.000054887000000,0.000229109000000,0.000205800000000,0.000354738000000,0.000058838000000,0.000056467000000,0.000222787000000,0.000845405000000 +0.000048565000000,0.000046195000000,0.000181306000000,0.000445997000000,0.000065553000000,0.000225158000000,0.000189603000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000265059000000,0.000858837000000 +0.000048171000000,0.000046195000000,0.000166294000000,0.000368565000000,0.000049356000000,0.000224763000000,0.000188417000000,0.000357504000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000871083000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000048170000000,0.000261108000000,0.000188418000000,0.000379232000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000891626000000 +0.000048566000000,0.000046590000000,0.000161553000000,0.000398590000000,0.000054887000000,0.000225553000000,0.000225553000000,0.000425849000000,0.000045800000000,0.000092418000000,0.000225158000000,0.000874244000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000223973000000,0.000202640000000,0.000406096000000,0.000045800000000,0.000056467000000,0.000261109000000,0.000906639000000 +0.000048171000000,0.000047776000000,0.000197899000000,0.000394245000000,0.000048171000000,0.000225158000000,0.000189602000000,0.000404121000000,0.000046195000000,0.000062392000000,0.000224763000000,0.000873454000000 +0.000048565000000,0.000046196000000,0.000167874000000,0.000361849000000,0.000048565000000,0.000260714000000,0.000189602000000,0.000361455000000,0.000046196000000,0.000056467000000,0.000236615000000,0.000873849000000 +0.000048961000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000055282000000,0.000227528000000,0.000189603000000,0.000361059000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000885305000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000738738000000,0.000048565000000,0.000225553000000,0.000353948000000,0.000436516000000,0.000045800000000,0.000056861000000,0.000272960000000,0.000871873000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000791281000000,0.000048566000000,0.000225158000000,0.000462590000000,0.000355923000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000995923000000 +0.000048170000000,0.000046195000000,0.000200664000000,0.000358294000000,0.000048565000000,0.000271775000000,0.000206591000000,0.000393455000000,0.000064368000000,0.000056862000000,0.000227528000000,0.000871084000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000394244000000,0.000054887000000,0.000224763000000,0.000242936000000,0.000356318000000,0.000061998000000,0.000056862000000,0.000225158000000,0.000872268000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000237800000000,0.000188812000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000263874000000,0.000862788000000 +0.000084516000000,0.000046195000000,0.000164714000000,0.000394244000000,0.000048565000000,0.000225948000000,0.000189207000000,0.000425059000000,0.000046195000000,0.000056466000000,0.000236220000000,0.000832762000000 +0.000048566000000,0.000046590000000,0.000206590000000,0.000463775000000,0.000049751000000,0.000262293000000,0.000188418000000,0.000355528000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000878590000000 +0.000048565000000,0.000046985000000,0.000180516000000,0.000358294000000,0.000056072000000,0.000224368000000,0.000188417000000,0.000393849000000,0.000045800000000,0.000056467000000,0.000223578000000,0.000867923000000 +0.000048171000000,0.000046195000000,0.000183677000000,0.000405306000000,0.000048565000000,0.000226739000000,0.000226343000000,0.000354343000000,0.000045801000000,0.000056466000000,0.000261503000000,0.000873454000000 +0.000048566000000,0.000046195000000,0.000167479000000,0.000384763000000,0.000065553000000,0.000223183000000,0.000191182000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000924417000000 +0.000048961000000,0.000048961000000,0.000167874000000,0.000387923000000,0.000048171000000,0.000261108000000,0.000189207000000,0.000404516000000,0.000045800000000,0.000060417000000,0.000226343000000,0.000957997000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000419924000000,0.000054491000000,0.000227133000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000936268000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000384763000000,0.000048566000000,0.000223182000000,0.000208960000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000275331000000,0.000902688000000 +0.000048170000000,0.000046195000000,0.000200664000000,0.000381207000000,0.000048170000000,0.000224763000000,0.000188418000000,0.000393850000000,0.000046590000000,0.000056467000000,0.000224763000000,0.000865948000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000379232000000,0.000048171000000,0.000261108000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000926392000000 +0.000048566000000,0.000046195000000,0.000162739000000,0.000380022000000,0.000054886000000,0.000225158000000,0.000188418000000,0.000511973000000,0.000045801000000,0.000058047000000,0.000222788000000,0.000874243000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000380812000000,0.000048566000000,0.000228319000000,0.000189602000000,0.000681454000000,0.000045800000000,0.000058047000000,0.000261503000000,0.000846589000000 +0.000048566000000,0.000046590000000,0.000165899000000,0.000380022000000,0.000048170000000,0.000224367000000,0.000225948000000,0.000396220000000,0.000046590000000,0.000058047000000,0.000261109000000,0.000831183000000 +0.000048170000000,0.000046195000000,0.000184862000000,0.000382787000000,0.000048170000000,0.000262689000000,0.000188022000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000865553000000 +0.000048171000000,0.000046195000000,0.000350788000000,0.000382788000000,0.000055282000000,0.000225158000000,0.000191183000000,0.000392664000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000907429000000 +0.000048565000000,0.000046591000000,0.000180911000000,0.000380022000000,0.000048565000000,0.000235430000000,0.000189208000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000295874000000,0.000884120000000 +0.000048566000000,0.000046196000000,0.000166294000000,0.000380417000000,0.000048566000000,0.000224763000000,0.000189603000000,0.000355923000000,0.000082146000000,0.000056467000000,0.000226344000000,0.000909404000000 +0.000067133000000,0.000046196000000,0.000161554000000,0.000380023000000,0.000048565000000,0.000390294000000,0.000224763000000,0.000390294000000,0.000046195000000,0.000057257000000,0.000223578000000,0.000867923000000 +0.000064763000000,0.000046591000000,0.000236220000000,0.000415182000000,0.000055282000000,0.000242540000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000234244000000,0.000897158000000 +0.000051726000000,0.000046195000000,0.000165899000000,0.000379627000000,0.000048565000000,0.000224368000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000093603000000,0.000260713000000,0.000884910000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000380022000000,0.000048566000000,0.000262689000000,0.000188417000000,0.000391479000000,0.000045801000000,0.000057257000000,0.000222788000000,0.001223873000000 +0.000048170000000,0.000046985000000,0.000161948000000,0.000466541000000,0.000090047000000,0.000225158000000,0.000188022000000,0.000354739000000,0.000045800000000,0.000056466000000,0.000222788000000,0.000937058000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000380812000000,0.000055282000000,0.000225158000000,0.000225949000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000865947000000 +0.000048565000000,0.000046590000000,0.000236220000000,0.000383578000000,0.000048170000000,0.000226343000000,0.000189602000000,0.000354344000000,0.000045800000000,0.000056072000000,0.000261504000000,0.000880170000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000380022000000,0.000048171000000,0.000259923000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000873454000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000379627000000,0.000048565000000,0.000228319000000,0.000189208000000,0.000451133000000,0.000046195000000,0.000056467000000,0.000223578000000,0.000865948000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000380417000000,0.000054492000000,0.000223578000000,0.000189207000000,0.000365010000000,0.000045800000000,0.000056467000000,0.000222787000000,0.000869108000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000382787000000,0.000048170000000,0.000223972000000,0.000225553000000,0.000354343000000,0.000045801000000,0.000056072000000,0.000261899000000,0.000885701000000 +0.000048566000000,0.000046590000000,0.000203430000000,0.000393850000000,0.000048171000000,0.000314442000000,0.000188022000000,0.000371726000000,0.000046196000000,0.000056467000000,0.000225553000000,0.000873849000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000387528000000,0.000048170000000,0.000224367000000,0.000188023000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000225948000000,0.000920861000000 +0.000048566000000,0.000046591000000,0.000167874000000,0.000358294000000,0.000054492000000,0.000225948000000,0.000188417000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000865948000000 +0.000048565000000,0.000049751000000,0.000166294000000,0.000394244000000,0.000048565000000,0.000225158000000,0.000188417000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000260714000000,0.000867133000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000361850000000,0.000048566000000,0.000296270000000,0.000225158000000,0.000356714000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000892417000000 +0.000048171000000,0.000046590000000,0.000183281000000,0.000358293000000,0.000048565000000,0.000223973000000,0.000188418000000,0.000390294000000,0.000045800000000,0.000124812000000,0.000225553000000,0.000912960000000 +0.000048565000000,0.000047775000000,0.000194344000000,0.000486293000000,0.000054887000000,0.000226343000000,0.000188812000000,0.000357108000000,0.000065159000000,0.000071874000000,0.000224763000000,0.000835133000000 +0.000086887000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000225949000000,0.000189603000000,0.000354739000000,0.000045800000000,0.000056467000000,0.000262294000000,0.000836318000000 +0.000077800000000,0.000048171000000,0.000165899000000,0.000445602000000,0.000048170000000,0.000262689000000,0.000190788000000,0.000425059000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000865948000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000358688000000,0.000048171000000,0.000224368000000,0.000225158000000,0.000355923000000,0.000046196000000,0.000057652000000,0.000226343000000,0.000903479000000 +0.000048565000000,0.000046590000000,0.000161948000000,0.000402145000000,0.000090837000000,0.000226343000000,0.000189208000000,0.000405306000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000963132000000 +0.000048566000000,0.000046195000000,0.000520269000000,0.000358294000000,0.000048565000000,0.000225948000000,0.000240170000000,0.000354739000000,0.000045800000000,0.000056466000000,0.000266640000000,0.000871478000000 +0.000048170000000,0.000046985000000,0.000164713000000,0.000361059000000,0.000048171000000,0.000296269000000,0.000188418000000,0.000354343000000,0.000046195000000,0.000056072000000,0.000225553000000,0.000873058000000 +0.000048171000000,0.000046195000000,0.000161553000000,0.000394245000000,0.000049751000000,0.000223973000000,0.000188022000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000227924000000,0.000867923000000 +0.000048565000000,0.000046195000000,0.000236220000000,0.000362244000000,0.000054886000000,0.000225158000000,0.000259924000000,0.000364219000000,0.000045800000000,0.000056466000000,0.000226739000000,0.000871874000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000227529000000,0.000189603000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000237405000000,0.000885306000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000409257000000,0.000048565000000,0.000273356000000,0.000189602000000,0.000354738000000,0.000046591000000,0.000056467000000,0.000235824000000,0.000871084000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000362244000000,0.000049751000000,0.000225158000000,0.000188417000000,0.000354739000000,0.000045800000000,0.000056862000000,0.000224763000000,0.000872269000000 +0.000048565000000,0.000046196000000,0.000162343000000,0.000394244000000,0.000054492000000,0.000225158000000,0.000227133000000,0.000393454000000,0.000045800000000,0.000056072000000,0.000261109000000,0.000925997000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000364219000000,0.000048170000000,0.000224763000000,0.000189207000000,0.000354343000000,0.000045800000000,0.000131923000000,0.000224368000000,0.000936268000000 +0.000048565000000,0.000046196000000,0.000384762000000,0.000358294000000,0.000048566000000,0.000241356000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000873849000000 +0.000051331000000,0.000046196000000,0.000165109000000,0.000395430000000,0.000048565000000,0.000222788000000,0.000188417000000,0.000389503000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000873849000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000362244000000,0.000054887000000,0.000224368000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056861000000,0.000261109000000,0.000871083000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000362640000000,0.000048170000000,0.000225158000000,0.000225948000000,0.000395429000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000869504000000 +0.000084121000000,0.000046195000000,0.000233059000000,0.000521059000000,0.000048566000000,0.000241750000000,0.000188417000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000225948000000,0.000920466000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000365800000000,0.000048565000000,0.000224763000000,0.000188813000000,0.000354344000000,0.000081750000000,0.000056467000000,0.000238195000000,0.000873454000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000396219000000,0.000054887000000,0.000225949000000,0.000189997000000,0.000391874000000,0.000045800000000,0.000056072000000,0.000299429000000,0.000874639000000 +0.000048565000000,0.000047775000000,0.000164714000000,0.000358293000000,0.000084911000000,0.000226738000000,0.000189602000000,0.000354738000000,0.000045801000000,0.000057257000000,0.000306145000000,0.000877799000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000378047000000,0.000048566000000,0.000252417000000,0.000225948000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000869108000000 +0.000048170000000,0.000046195000000,0.000235825000000,0.000394245000000,0.000050145000000,0.000224368000000,0.000189207000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000225158000000,0.000999479000000 +0.000048566000000,0.000046195000000,0.000162738000000,0.000362244000000,0.000055282000000,0.000225158000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000261504000000,0.000921652000000 +0.000048565000000,0.000046196000000,0.000164714000000,0.000393850000000,0.000048170000000,0.000248467000000,0.000189602000000,0.000391874000000,0.000045800000000,0.000058047000000,0.000229108000000,0.000905454000000 +0.000048566000000,0.000083331000000,0.000164713000000,0.000362639000000,0.000048170000000,0.000226738000000,0.000188022000000,0.000408467000000,0.000046195000000,0.000056862000000,0.000226343000000,0.000837898000000 +0.000052121000000,0.000046590000000,0.000165109000000,0.000360664000000,0.000048171000000,0.000227923000000,0.000238195000000,0.000354343000000,0.000045800000000,0.000107035000000,0.000225948000000,0.000871478000000 +0.000048565000000,0.000046195000000,0.000164318000000,0.000474441000000,0.000055281000000,0.000225553000000,0.000188023000000,0.000649059000000,0.000045801000000,0.000071084000000,0.000296664000000,0.000902293000000 +0.000048171000000,0.000046196000000,0.000288763000000,0.000360269000000,0.000048566000000,0.000245306000000,0.000188417000000,0.000391874000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000872664000000 +0.000048565000000,0.000046196000000,0.000183282000000,0.000396219000000,0.000048170000000,0.000444812000000,0.000189208000000,0.000394640000000,0.000046590000000,0.000058442000000,0.000283628000000,0.001048071000000 +0.000048566000000,0.000046591000000,0.000161948000000,0.000360269000000,0.000048171000000,0.000224368000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000260714000000,0.000879380000000 +0.000054096000000,0.000046591000000,0.000164713000000,0.000358294000000,0.000054886000000,0.000244516000000,0.000225948000000,0.000403726000000,0.000045800000000,0.000056862000000,0.000225554000000,0.000878984000000 +0.000048171000000,0.000046195000000,0.000241356000000,0.000779429000000,0.000048171000000,0.000252022000000,0.000189602000000,0.000355528000000,0.000046195000000,0.000056862000000,0.000226738000000,0.000865157000000 +0.000048566000000,0.000046195000000,0.000181701000000,0.000423084000000,0.000048170000000,0.000224763000000,0.000190787000000,0.000354343000000,0.000046195000000,0.000057652000000,0.000225158000000,0.001061108000000 +0.000067528000000,0.000046590000000,0.000165109000000,0.000357898000000,0.000048171000000,0.000225158000000,0.000189207000000,0.000390689000000,0.000045801000000,0.000056071000000,0.000293108000000,0.000850145000000 +0.000064764000000,0.000046195000000,0.000165898000000,0.000358689000000,0.000054886000000,0.000293899000000,0.000189208000000,0.000356714000000,0.000045800000000,0.000056862000000,0.000241751000000,0.000923231000000 +0.000048566000000,0.000047775000000,0.000164714000000,0.000414393000000,0.000048566000000,0.000241750000000,0.000230294000000,0.000355923000000,0.000078985000000,0.000056467000000,0.000224763000000,0.000916120000000 +0.000048170000000,0.000046590000000,0.000197899000000,0.000360269000000,0.000143775000000,0.000223578000000,0.000188417000000,0.000438491000000,0.000049356000000,0.000056862000000,0.000225158000000,0.000874244000000 +0.000048566000000,0.000046590000000,0.000165108000000,0.000394639000000,0.000118097000000,0.000225553000000,0.000188023000000,0.000355134000000,0.000045800000000,0.000056862000000,0.000262293000000,0.000877405000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000361059000000,0.000106244000000,0.000267824000000,0.000188417000000,0.000390689000000,0.000045800000000,0.000092417000000,0.000223578000000,0.000872269000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000361454000000,0.000131923000000,0.000225158000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000223183000000,0.000915330000000 +0.000048565000000,0.000046196000000,0.000167874000000,0.000393849000000,0.000086886000000,0.000225553000000,0.000236220000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000882541000000 +0.000052121000000,0.000046196000000,0.000161948000000,0.000358294000000,0.000051331000000,0.000238985000000,0.000188418000000,0.000427825000000,0.000045800000000,0.000056467000000,0.000306935000000,0.000872664000000 +0.000048171000000,0.000046985000000,0.000200665000000,0.000358294000000,0.000105454000000,0.000261109000000,0.000191578000000,0.000355923000000,0.000045800000000,0.000058047000000,0.000226343000000,0.000892022000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000394244000000,0.000086097000000,0.000275330000000,0.000189602000000,0.000389898000000,0.000045801000000,0.000056467000000,0.000225948000000,0.001160268000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000368171000000,0.000090047000000,0.000224368000000,0.000225158000000,0.000368566000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000869109000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000449158000000,0.000334590000000,0.000224367000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000263479000000,0.000874244000000 +0.000048566000000,0.000046195000000,0.000168269000000,0.000358293000000,0.000110195000000,0.000296664000000,0.000189603000000,0.000442837000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000930342000000 +0.000048170000000,0.000046195000000,0.000236220000000,0.000363429000000,0.000086096000000,0.000226343000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056861000000,0.000239776000000,0.000901503000000 +0.000048566000000,0.000046195000000,0.000167084000000,0.000394244000000,0.000052516000000,0.000225949000000,0.000188417000000,0.000355529000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000867527000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000360269000000,0.000050936000000,0.000235430000000,0.000224368000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000552269000000,0.000873454000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000394244000000,0.000056862000000,0.000252022000000,0.000189603000000,0.000354738000000,0.000046196000000,0.000056861000000,0.000299035000000,0.000888071000000 +0.000094392000000,0.000046195000000,0.000161553000000,0.000362244000000,0.000051331000000,0.000229109000000,0.000189207000000,0.000400565000000,0.000045801000000,0.000056467000000,0.000261899000000,0.000877404000000 +0.000048171000000,0.000046195000000,0.000186047000000,0.000360269000000,0.000051331000000,0.000226343000000,0.000189207000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000224367000000,0.000918095000000 +0.000048170000000,0.000046196000000,0.000162739000000,0.000404120000000,0.000052121000000,0.000243331000000,0.000189603000000,0.000357503000000,0.000046195000000,0.000161948000000,0.000225553000000,0.000908614000000 +0.000048171000000,0.000046196000000,0.000165503000000,0.000357898000000,0.000088862000000,0.000269800000000,0.000254788000000,0.000400170000000,0.000062393000000,0.000056466000000,0.000225158000000,0.000884910000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000358294000000,0.000064763000000,0.000224763000000,0.000259924000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261898000000,0.000831182000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000406886000000,0.000051726000000,0.000227529000000,0.000188022000000,0.000387923000000,0.000046195000000,0.000056467000000,0.000229899000000,0.000833553000000 +0.000048170000000,0.000046195000000,0.000166294000000,0.000358293000000,0.000051331000000,0.000305751000000,0.000188813000000,0.000518689000000,0.000045800000000,0.000056862000000,0.000236220000000,0.000856861000000 +0.000048171000000,0.000065158000000,0.000201454000000,0.000393850000000,0.000058047000000,0.000225158000000,0.000188417000000,0.000533701000000,0.000045800000000,0.000056862000000,0.000237405000000,0.000872269000000 +0.000048170000000,0.000062787000000,0.000165109000000,0.000358293000000,0.000051331000000,0.000227134000000,0.000225158000000,0.000479182000000,0.000045800000000,0.000056861000000,0.000283627000000,0.000892022000000 +0.000048566000000,0.000060418000000,0.000165899000000,0.000358293000000,0.000051331000000,0.000224763000000,0.000189207000000,0.000355924000000,0.000046195000000,0.000078195000000,0.000235825000000,0.000905058000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000441257000000,0.000051331000000,0.000299034000000,0.000188023000000,0.000426244000000,0.000045800000000,0.000073454000000,0.000225158000000,0.000992762000000 +0.000048171000000,0.000046195000000,0.000165504000000,0.000357899000000,0.000138639000000,0.000225553000000,0.000188417000000,0.000354738000000,0.000045800000000,0.000070294000000,0.000225948000000,0.000922836000000 +0.000051330000000,0.000046195000000,0.000196713000000,0.000377652000000,0.000153256000000,0.000227133000000,0.000208566000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000260714000000,0.000919676000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000127183000000,0.000225158000000,0.000190787000000,0.000355529000000,0.000045800000000,0.000056862000000,0.000225553000000,0.000920072000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000377257000000,0.000137059000000,0.000265454000000,0.000189208000000,0.000362244000000,0.000045800000000,0.000076220000000,0.000225553000000,0.000922836000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000428219000000,0.000177356000000,0.000224368000000,0.000189602000000,0.000425059000000,0.000045800000000,0.000089256000000,0.000225553000000,0.000923627000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000166689000000,0.000224368000000,0.000256763000000,0.000356319000000,0.000046195000000,0.000056467000000,0.000259924000000,0.000904269000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000357899000000,0.000144961000000,0.000226343000000,0.000224368000000,0.000393059000000,0.000046196000000,0.000056467000000,0.000223578000000,0.000913355000000 +0.000065553000000,0.000046195000000,0.000201849000000,0.000404911000000,0.000122837000000,0.000296269000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000058047000000,0.000225948000000,0.000909405000000 +0.000048565000000,0.000046590000000,0.000161553000000,0.000358294000000,0.000090047000000,0.000227528000000,0.000188813000000,0.000354343000000,0.000045800000000,0.000056072000000,0.000225554000000,0.001287479000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000397010000000,0.000051331000000,0.000224367000000,0.000189603000000,0.000425059000000,0.000045800000000,0.000056466000000,0.000310887000000,0.000867528000000 +0.000048565000000,0.000046591000000,0.000164714000000,0.000361059000000,0.000061602000000,0.000223578000000,0.000189602000000,0.000354738000000,0.000082541000000,0.000061998000000,0.000226343000000,0.000867923000000 +0.000048171000000,0.000046591000000,0.000166294000000,0.000357899000000,0.000048170000000,0.000259529000000,0.000272961000000,0.000358294000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000868318000000 +0.000048565000000,0.000046591000000,0.000208170000000,0.000400170000000,0.000053701000000,0.000229504000000,0.000190788000000,0.000390294000000,0.000045800000000,0.000061997000000,0.000223183000000,0.000873454000000 +0.000048171000000,0.000046196000000,0.000165108000000,0.000368171000000,0.000048171000000,0.000228318000000,0.000189603000000,0.000355923000000,0.000045800000000,0.000056072000000,0.000264665000000,0.000867133000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000399380000000,0.000048170000000,0.000228318000000,0.000189207000000,0.000440862000000,0.000046195000000,0.000056862000000,0.000224368000000,0.000867132000000 +0.000048566000000,0.000046590000000,0.000161553000000,0.000554244000000,0.000048565000000,0.000298640000000,0.000188417000000,0.000354343000000,0.000046196000000,0.000056862000000,0.000225158000000,0.000869108000000 +0.000050936000000,0.000046195000000,0.000161948000000,0.000379627000000,0.000054887000000,0.000228714000000,0.000226343000000,0.000354343000000,0.000045801000000,0.000056467000000,0.000278492000000,0.000877009000000 +0.000066739000000,0.000046195000000,0.000165108000000,0.000374492000000,0.000048170000000,0.000225158000000,0.000189602000000,0.000390689000000,0.000045800000000,0.000095578000000,0.000225948000000,0.000912565000000 +0.000065553000000,0.000087281000000,0.000251232000000,0.000363824000000,0.000048171000000,0.000224763000000,0.000188418000000,0.000354738000000,0.000046195000000,0.000122047000000,0.000227528000000,0.000865158000000 +0.000051331000000,0.000046196000000,0.000165109000000,0.000398986000000,0.000048170000000,0.000224368000000,0.000188417000000,0.000374492000000,0.000045800000000,0.000162739000000,0.000224763000000,0.000871479000000 +0.000048566000000,0.000046196000000,0.000161553000000,0.000358688000000,0.000053702000000,0.000224763000000,0.000208171000000,0.000403330000000,0.000045800000000,0.000160763000000,0.000313257000000,0.000866738000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000361455000000,0.000048170000000,0.000224368000000,0.000205800000000,0.000354738000000,0.000045800000000,0.000108220000000,0.000240170000000,0.000876219000000 +0.000048565000000,0.000047776000000,0.000161949000000,0.000397010000000,0.000048171000000,0.000244121000000,0.000189603000000,0.000394244000000,0.000046195000000,0.000073850000000,0.000224763000000,0.000835133000000 +0.000068319000000,0.000046195000000,0.000205009000000,0.000361849000000,0.000048170000000,0.000601652000000,0.000189603000000,0.000362640000000,0.000045801000000,0.000056467000000,0.000235825000000,0.000835528000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000430590000000,0.000053307000000,0.000244911000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000260318000000,0.000866342000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000373701000000,0.000048170000000,0.000261899000000,0.000223183000000,0.000409257000000,0.000046195000000,0.000092812000000,0.000223973000000,0.000876614000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000112961000000,0.000225553000000,0.000203035000000,0.000354343000000,0.000046195000000,0.000062392000000,0.000225158000000,0.000974194000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000398590000000,0.000048170000000,0.000235825000000,0.000188418000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000878984000000 +0.000048566000000,0.000046195000000,0.000211726000000,0.000357899000000,0.000053702000000,0.000224763000000,0.000188022000000,0.000357899000000,0.000064763000000,0.000056467000000,0.000261108000000,0.000875034000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000357899000000,0.000048170000000,0.000273751000000,0.000188023000000,0.000374096000000,0.000058837000000,0.000056861000000,0.000227133000000,0.000907825000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000430590000000,0.000048171000000,0.000226344000000,0.000260318000000,0.000497750000000,0.000046195000000,0.000056862000000,0.000236220000000,0.000879775000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000277701000000,0.000188022000000,0.000615084000000,0.000046195000000,0.000056467000000,0.000225554000000,0.000908219000000 +0.000048566000000,0.000046590000000,0.000163133000000,0.000394244000000,0.000053307000000,0.000223973000000,0.000188022000000,0.000660121000000,0.000045800000000,0.000056466000000,0.000259529000000,0.000901108000000 +0.000048565000000,0.000046591000000,0.000165899000000,0.000362244000000,0.000048565000000,0.000275330000000,0.000189602000000,0.000388318000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000930738000000 +0.000048566000000,0.000046591000000,0.000203825000000,0.000358294000000,0.000048171000000,0.000222788000000,0.000191183000000,0.000369355000000,0.000046196000000,0.000056467000000,0.000224763000000,0.000836318000000 +0.000049355000000,0.000049356000000,0.000167479000000,0.000430590000000,0.000048565000000,0.000225158000000,0.000225553000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226344000000,0.000846984000000 +0.000048171000000,0.000046985000000,0.000165108000000,0.000358294000000,0.000053307000000,0.000263479000000,0.000189208000000,0.000390294000000,0.000046195000000,0.000056467000000,0.000310096000000,0.000871874000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000437306000000,0.000048565000000,0.000222787000000,0.000189208000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000239380000000,0.001010146000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000372516000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000224763000000,0.000951281000000 +0.000048170000000,0.000046195000000,0.000201850000000,0.000361850000000,0.000048565000000,0.000225948000000,0.000188418000000,0.000390689000000,0.000046195000000,0.000092418000000,0.000225553000000,0.000907034000000 +0.000048566000000,0.000046196000000,0.000181306000000,0.000394639000000,0.000053702000000,0.000261109000000,0.000224763000000,0.000380417000000,0.000046195000000,0.000056467000000,0.000303776000000,0.000927973000000 +0.000084516000000,0.000046196000000,0.000212911000000,0.000361849000000,0.000048565000000,0.000228318000000,0.000189603000000,0.000393454000000,0.000046196000000,0.000056861000000,0.000225553000000,0.000914540000000 +0.000048565000000,0.000046196000000,0.000165899000000,0.000393849000000,0.000050541000000,0.000224368000000,0.000189602000000,0.000356714000000,0.000046195000000,0.000056467000000,0.000223578000000,0.000838293000000 +0.000048171000000,0.000046591000000,0.000164713000000,0.000358294000000,0.000048170000000,0.000225948000000,0.000188417000000,0.000355923000000,0.000045800000000,0.000057257000000,0.000246887000000,0.000898738000000 +0.000048565000000,0.000046195000000,0.000199084000000,0.000358293000000,0.000054096000000,0.000309306000000,0.000191183000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000242146000000,0.000901899000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000434145000000,0.000048565000000,0.000235429000000,0.000231084000000,0.000354343000000,0.000046195000000,0.000056072000000,0.000224368000000,0.000941009000000 +0.000048960000000,0.000046195000000,0.000166293000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000921256000000 +0.000048171000000,0.000046590000000,0.000161949000000,0.000391874000000,0.000048566000000,0.000235430000000,0.000188417000000,0.000390688000000,0.000063183000000,0.000056467000000,0.000336960000000,0.000871479000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000373701000000,0.000054886000000,0.000264269000000,0.000189602000000,0.000355528000000,0.000045800000000,0.000056467000000,0.000544763000000,0.000920861000000 +0.000051726000000,0.000046195000000,0.000166294000000,0.000357504000000,0.000048566000000,0.000224368000000,0.000189603000000,0.000393454000000,0.000046195000000,0.000056467000000,0.000238590000000,0.000920466000000 +0.000048171000000,0.000046195000000,0.000201454000000,0.000413207000000,0.000048170000000,0.000226738000000,0.000476022000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000239380000000,0.001360170000000 +0.000048565000000,0.000046195000000,0.000161948000000,0.000368171000000,0.000048171000000,0.000224368000000,0.000259529000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000223183000000,0.000869899000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000053306000000,0.000261109000000,0.000189997000000,0.000403726000000,0.000046195000000,0.000056466000000,0.000224763000000,0.000864762000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000394244000000,0.000048566000000,0.000226344000000,0.000225553000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000934688000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048565000000,0.000223578000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000073060000000,0.000248467000000,0.000883726000000 +0.000048566000000,0.000046195000000,0.000200664000000,0.000414787000000,0.000048566000000,0.000228318000000,0.000189602000000,0.000390294000000,0.000046195000000,0.000056862000000,0.000223578000000,0.000941009000000 +0.000048170000000,0.000046986000000,0.000165899000000,0.000583084000000,0.000053701000000,0.000273750000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000222393000000,0.000931133000000 +0.000048566000000,0.000046591000000,0.000165503000000,0.000399380000000,0.000048171000000,0.000223578000000,0.000189208000000,0.000429010000000,0.000045800000000,0.000056862000000,0.000226344000000,0.000887676000000 +0.000048170000000,0.000046591000000,0.000165899000000,0.000358293000000,0.000048170000000,0.000226344000000,0.000238985000000,0.000357504000000,0.000046196000000,0.000056467000000,0.000242146000000,0.000837108000000 +0.000083726000000,0.000046590000000,0.000165899000000,0.000362245000000,0.000048566000000,0.000224763000000,0.000188813000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000225948000000,0.000884121000000 +0.000048566000000,0.000046195000000,0.000167874000000,0.000429009000000,0.000070293000000,0.000262689000000,0.000188417000000,0.000390294000000,0.000045800000000,0.000056862000000,0.000225553000000,0.000902689000000 +0.000048565000000,0.000050936000000,0.000218442000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000223973000000,0.000871479000000 +0.000048171000000,0.000046591000000,0.000165108000000,0.000397800000000,0.000048170000000,0.000224763000000,0.000189602000000,0.000375677000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000869899000000 +0.000049750000000,0.000046196000000,0.000165109000000,0.000361850000000,0.000048171000000,0.000224368000000,0.000224368000000,0.000490639000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000882540000000 +0.000048566000000,0.000048170000000,0.000161553000000,0.000358293000000,0.000053701000000,0.000262294000000,0.000188417000000,0.000355924000000,0.000045800000000,0.000056466000000,0.000224762000000,0.000869898000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000439281000000,0.000048566000000,0.000226343000000,0.000189208000000,0.000425454000000,0.000084121000000,0.000056467000000,0.000226343000000,0.000875824000000 +0.000048566000000,0.000047775000000,0.000202640000000,0.000359084000000,0.000048565000000,0.000225948000000,0.000190787000000,0.000357504000000,0.000062393000000,0.000056467000000,0.000269405000000,0.001090342000000 +0.000048170000000,0.000046591000000,0.000165108000000,0.000367380000000,0.000048566000000,0.000223973000000,0.000189602000000,0.000423874000000,0.000045800000000,0.000056861000000,0.000241356000000,0.000868713000000 +0.000048171000000,0.000046196000000,0.000161553000000,0.000374886000000,0.000053701000000,0.000298245000000,0.000264269000000,0.000354738000000,0.000045800000000,0.000127578000000,0.000226344000000,0.000871084000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000358689000000,0.000048566000000,0.000225948000000,0.000291528000000,0.000354344000000,0.000045800000000,0.000056467000000,0.000261504000000,0.000848169000000 +0.000048171000000,0.000046591000000,0.000165108000000,0.000429405000000,0.000048566000000,0.000224763000000,0.000188813000000,0.000390688000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000837503000000 +0.000048565000000,0.000046195000000,0.000252813000000,0.000398195000000,0.000048566000000,0.000223973000000,0.000188022000000,0.000360664000000,0.000045800000000,0.000056467000000,0.000228714000000,0.000871479000000 +0.000048566000000,0.000046590000000,0.000236614000000,0.000357899000000,0.000053306000000,0.000261504000000,0.000277701000000,0.000354738000000,0.000045801000000,0.000056861000000,0.000226739000000,0.000865553000000 +0.000048565000000,0.000045800000000,0.000165109000000,0.000394639000000,0.000048170000000,0.000227529000000,0.000189997000000,0.000508812000000,0.000045800000000,0.000056862000000,0.000287183000000,0.000877800000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358688000000,0.000048171000000,0.000226738000000,0.000189603000000,0.000354344000000,0.000046590000000,0.000056862000000,0.000235824000000,0.000877404000000 +0.000048565000000,0.000046985000000,0.000165898000000,0.000429010000000,0.000048170000000,0.000225158000000,0.000188813000000,0.000393454000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000908220000000 +0.000067924000000,0.000046590000000,0.000242541000000,0.000358294000000,0.000054886000000,0.000261108000000,0.000245701000000,0.000356713000000,0.000045800000000,0.000056862000000,0.000225158000000,0.000913355000000 +0.000064368000000,0.000046590000000,0.000165109000000,0.000360269000000,0.000050146000000,0.000224763000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000296269000000,0.000872268000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000394244000000,0.000048565000000,0.000225158000000,0.000189603000000,0.000390294000000,0.000046195000000,0.000056072000000,0.000225158000000,0.000871083000000 +0.000050936000000,0.000046590000000,0.000164714000000,0.000362244000000,0.000048566000000,0.000222788000000,0.000188417000000,0.000358293000000,0.000045801000000,0.000056467000000,0.000225158000000,0.000875034000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000392269000000,0.000054492000000,0.000527380000000,0.000189997000000,0.000391478000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000867133000000 +0.000048566000000,0.000046195000000,0.000201454000000,0.000372911000000,0.000048565000000,0.000241356000000,0.000225553000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261504000000,0.000925602000000 +0.000048170000000,0.000046195000000,0.000161948000000,0.000357899000000,0.000048171000000,0.000319183000000,0.000188417000000,0.000373701000000,0.000046195000000,0.000091628000000,0.000225948000000,0.000872269000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000394244000000,0.000048565000000,0.000225158000000,0.000188022000000,0.000516318000000,0.000081751000000,0.000070294000000,0.000237404000000,0.000873059000000 +0.000048565000000,0.000046196000000,0.000165108000000,0.000358293000000,0.000054097000000,0.000225948000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000846194000000 +0.000048566000000,0.000047776000000,0.000164714000000,0.000358294000000,0.000048565000000,0.000226343000000,0.000189603000000,0.000393454000000,0.000046195000000,0.000056467000000,0.000308911000000,0.000909010000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000441652000000,0.000048566000000,0.000261503000000,0.000273751000000,0.000356318000000,0.000046195000000,0.000056467000000,0.000226344000000,0.000906639000000 +0.000048171000000,0.000046590000000,0.000250442000000,0.000358294000000,0.000048960000000,0.000224763000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000874244000000 +0.000048170000000,0.000046590000000,0.000162739000000,0.000399775000000,0.000053702000000,0.000225158000000,0.000189602000000,0.000400960000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000918490000000 +0.000048566000000,0.000046590000000,0.000165504000000,0.000363430000000,0.000048170000000,0.000228714000000,0.000189208000000,0.000354344000000,0.000045801000000,0.000056467000000,0.000265455000000,0.000910195000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048171000000,0.000269010000000,0.000188022000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000226344000000,0.000911775000000 +0.000052121000000,0.000046195000000,0.000164713000000,0.000819330000000,0.000048565000000,0.000227923000000,0.000224368000000,0.000390294000000,0.000061998000000,0.000056467000000,0.000225948000000,0.000911774000000 +0.000048171000000,0.000046195000000,0.000206985000000,0.000431775000000,0.000055282000000,0.000225553000000,0.000188417000000,0.000354738000000,0.000059627000000,0.000056467000000,0.000224368000000,0.000917700000000 +0.000048170000000,0.000046195000000,0.000164319000000,0.000358294000000,0.000048565000000,0.000225553000000,0.000188417000000,0.000396220000000,0.000045800000000,0.000056466000000,0.000260319000000,0.000947725000000 +0.000084121000000,0.000046985000000,0.000167874000000,0.000358689000000,0.000048171000000,0.000261109000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000225158000000,0.001266540000000 +0.000048566000000,0.000046591000000,0.000161948000000,0.000407677000000,0.000069109000000,0.000224367000000,0.000188418000000,0.000356714000000,0.000045801000000,0.000056862000000,0.000223578000000,0.000924812000000 +0.000054491000000,0.000046196000000,0.000165109000000,0.000361849000000,0.000071084000000,0.000225158000000,0.000272565000000,0.000406096000000,0.000046195000000,0.000092812000000,0.000225949000000,0.000871083000000 +0.000048566000000,0.000046196000000,0.000201454000000,0.000393454000000,0.000048170000000,0.000225158000000,0.000189208000000,0.000480368000000,0.000045800000000,0.000056467000000,0.000262689000000,0.000868713000000 +0.000048565000000,0.000046196000000,0.000164713000000,0.000358294000000,0.000048171000000,0.000260713000000,0.000190788000000,0.000391479000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000882541000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000225158000000,0.000189207000000,0.000355528000000,0.000045800000000,0.000056466000000,0.000223973000000,0.000873454000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000394244000000,0.000053307000000,0.000224368000000,0.000225553000000,0.000354738000000,0.000081751000000,0.000056467000000,0.000226738000000,0.000866738000000 +0.000048565000000,0.000048170000000,0.000164713000000,0.000362640000000,0.000048170000000,0.000228714000000,0.000189207000000,0.000390688000000,0.000045800000000,0.000056862000000,0.000296269000000,0.000888466000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000358294000000,0.000048566000000,0.000260319000000,0.000188417000000,0.000355134000000,0.000046195000000,0.000056466000000,0.000224763000000,0.000868318000000 +0.000048565000000,0.000046195000000,0.000236615000000,0.000401355000000,0.000048565000000,0.000225948000000,0.000188022000000,0.000397800000000,0.000045800000000,0.000056862000000,0.000225553000000,0.000856861000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000392664000000,0.000053307000000,0.000225948000000,0.000188812000000,0.000354343000000,0.000046195000000,0.000058047000000,0.000259923000000,0.000876220000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000411232000000,0.000048565000000,0.000225158000000,0.000261504000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000222392000000,0.000937059000000 +0.000048566000000,0.000046196000000,0.000167874000000,0.000358294000000,0.000048566000000,0.000261108000000,0.000189603000000,0.000396220000000,0.000046196000000,0.000057257000000,0.000225948000000,0.000875034000000 +0.000052121000000,0.000046591000000,0.000161553000000,0.000358294000000,0.000048565000000,0.000238985000000,0.000188022000000,0.000355924000000,0.000045800000000,0.000056072000000,0.000225553000000,0.000871478000000 +0.000048565000000,0.000046591000000,0.000201059000000,0.000394244000000,0.000053702000000,0.000225158000000,0.000190788000000,0.000355133000000,0.000046195000000,0.000056862000000,0.000262688000000,0.000863972000000 +0.000048566000000,0.000046591000000,0.000165109000000,0.000360665000000,0.000048170000000,0.000224763000000,0.000189603000000,0.000537652000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000878590000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000395824000000,0.000048171000000,0.000260713000000,0.000225553000000,0.000379627000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000884121000000 +0.000048566000000,0.000046590000000,0.000202640000000,0.000390293000000,0.000048170000000,0.000224368000000,0.000188813000000,0.000434935000000,0.000046195000000,0.000092813000000,0.000227134000000,0.000867133000000 +0.000132318000000,0.000046195000000,0.000180911000000,0.000365800000000,0.000055677000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000045801000000,0.000056466000000,0.000268220000000,0.001005405000000 +0.000086887000000,0.000046985000000,0.000200664000000,0.000394245000000,0.000048566000000,0.000227133000000,0.000189207000000,0.000372911000000,0.000045801000000,0.000056467000000,0.000239775000000,0.000883331000000 +0.000051331000000,0.000046195000000,0.000167479000000,0.000359874000000,0.000048565000000,0.000261898000000,0.000188418000000,0.000406096000000,0.000046590000000,0.000056862000000,0.000224763000000,0.000872664000000 +0.000063183000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048171000000,0.000235430000000,0.000396219000000,0.000362245000000,0.000045800000000,0.000056466000000,0.000224368000000,0.000872664000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000429009000000,0.000053306000000,0.000223973000000,0.000263874000000,0.000425454000000,0.000045800000000,0.000056467000000,0.000261899000000,0.000835528000000 +0.000048566000000,0.000046195000000,0.000161158000000,0.000358294000000,0.000048566000000,0.000228714000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000843034000000 +0.000048170000000,0.000046195000000,0.000167874000000,0.000413998000000,0.000048565000000,0.000297849000000,0.000228318000000,0.000357109000000,0.000064763000000,0.000056466000000,0.000259923000000,0.000865552000000 +0.000048170000000,0.000046195000000,0.000246886000000,0.000358293000000,0.000048566000000,0.000224763000000,0.000218442000000,0.000425059000000,0.000062393000000,0.000058442000000,0.000239380000000,0.000871084000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000053306000000,0.000225158000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000261504000000,0.000875824000000 +0.000048170000000,0.000046591000000,0.000165109000000,0.000397405000000,0.000048170000000,0.000224763000000,0.000189602000000,0.000391084000000,0.000046195000000,0.000056467000000,0.000225554000000,0.001132219000000 +0.000048171000000,0.000046196000000,0.000165109000000,0.000357899000000,0.000048170000000,0.000277306000000,0.000188022000000,0.000356714000000,0.000046196000000,0.000056862000000,0.000229899000000,0.000904269000000 +0.000048170000000,0.000046196000000,0.000165899000000,0.000398590000000,0.000048171000000,0.000225553000000,0.000224763000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000236614000000,0.000926392000000 +0.000048566000000,0.000046196000000,0.000201454000000,0.000360269000000,0.000053701000000,0.000225158000000,0.000188418000000,0.000411627000000,0.000045800000000,0.000056467000000,0.000368960000000,0.000867528000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000360269000000,0.000048565000000,0.000226738000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000130344000000,0.000253998000000,0.000905849000000 +0.000048566000000,0.000046195000000,0.000166293000000,0.000436911000000,0.000048566000000,0.000297849000000,0.000189208000000,0.000464170000000,0.000046195000000,0.000070689000000,0.000235430000000,0.000850935000000 +0.000084516000000,0.000046195000000,0.000164714000000,0.000358293000000,0.000048566000000,0.000227133000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000261503000000,0.000877009000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000362640000000,0.000054096000000,0.000224762000000,0.000224763000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000903873000000 +0.000051331000000,0.000046195000000,0.000199084000000,0.000395824000000,0.000048565000000,0.000246096000000,0.000223972000000,0.000425455000000,0.000045801000000,0.000056862000000,0.000224368000000,0.000866738000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000050541000000,0.000224763000000,0.000207775000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000937059000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000398195000000,0.000048566000000,0.000229504000000,0.000189603000000,0.000476417000000,0.000046195000000,0.000056467000000,0.000280466000000,0.000902293000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000053701000000,0.000224763000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000240566000000,0.000908220000000 +0.000048170000000,0.000046985000000,0.000164713000000,0.000358294000000,0.000048566000000,0.000244121000000,0.000225553000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000867528000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000395429000000,0.000048565000000,0.000294294000000,0.000188417000000,0.000437701000000,0.000046195000000,0.000056466000000,0.000223578000000,0.000934688000000 +0.000048565000000,0.000046195000000,0.000462985000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000263084000000,0.000875034000000 +0.000048171000000,0.000046591000000,0.000219627000000,0.000396615000000,0.000053306000000,0.000227923000000,0.000188417000000,0.000373701000000,0.000045801000000,0.000056467000000,0.000225553000000,0.001949601000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000362640000000,0.000048171000000,0.000262689000000,0.000189602000000,0.000372121000000,0.000085702000000,0.000056861000000,0.000227529000000,0.000887281000000 +0.000048170000000,0.000046196000000,0.000220418000000,0.000358293000000,0.000048565000000,0.000223577000000,0.000206195000000,0.000354739000000,0.000062392000000,0.000056467000000,0.000225948000000,0.000928762000000 +0.000048566000000,0.000046196000000,0.000166294000000,0.000446787000000,0.000048566000000,0.000224368000000,0.000188417000000,0.000425849000000,0.000045801000000,0.000092418000000,0.000299430000000,0.000913750000000 +0.000048565000000,0.000046195000000,0.000165899000000,0.000362244000000,0.000054491000000,0.000229503000000,0.000191183000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000223183000000,0.000889652000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000048171000000,0.000264269000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000228319000000,0.001078490000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000522640000000,0.000048565000000,0.000227923000000,0.000225553000000,0.000391873000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000873849000000 +0.000048171000000,0.000046195000000,0.000161948000000,0.000358688000000,0.000048171000000,0.000227528000000,0.000188417000000,0.000357503000000,0.000045800000000,0.000056862000000,0.000297059000000,0.000918096000000 +0.000051331000000,0.000046195000000,0.000247281000000,0.000404120000000,0.000054886000000,0.000229108000000,0.000189602000000,0.000459035000000,0.000046195000000,0.000056466000000,0.000223578000000,0.000879380000000 +0.000084121000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000048566000000,0.000267825000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000870688000000 +0.000048565000000,0.000046590000000,0.000165898000000,0.000402541000000,0.000048566000000,0.000224763000000,0.000188022000000,0.000357504000000,0.000046196000000,0.000056467000000,0.000227133000000,0.000880170000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000374096000000,0.000048565000000,0.000223973000000,0.000224762000000,0.000429405000000,0.000045800000000,0.000056467000000,0.000296269000000,0.000857651000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000361850000000,0.000066343000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000964318000000 +0.000048566000000,0.000046195000000,0.000249257000000,0.000394244000000,0.000048565000000,0.000295479000000,0.000189208000000,0.000409652000000,0.000045800000000,0.000056467000000,0.000225158000000,0.001029108000000 +0.000048170000000,0.000047775000000,0.000161553000000,0.000358689000000,0.000048171000000,0.000225553000000,0.000189603000000,0.000672368000000,0.000046195000000,0.000061997000000,0.000224763000000,0.000870688000000 +0.000048171000000,0.000046195000000,0.000167874000000,0.000361849000000,0.000048565000000,0.000224368000000,0.000189602000000,0.000397405000000,0.000046195000000,0.000056467000000,0.000272565000000,0.000877405000000 +0.000048565000000,0.000066739000000,0.000164713000000,0.000394245000000,0.000053702000000,0.000227528000000,0.000225554000000,0.000361849000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000846194000000 +0.000048171000000,0.000097158000000,0.000164714000000,0.000358294000000,0.000048565000000,0.000261503000000,0.000189207000000,0.000354343000000,0.000045800000000,0.000116516000000,0.000223578000000,0.001237305000000 +0.000048960000000,0.000064368000000,0.000249257000000,0.000429009000000,0.000048171000000,0.000225553000000,0.000188023000000,0.000391478000000,0.000046196000000,0.000056467000000,0.000225553000000,0.000941404000000 +0.000048171000000,0.000062392000000,0.000165109000000,0.000358293000000,0.000048565000000,0.000235429000000,0.000188417000000,0.000356713000000,0.000062392000000,0.000056862000000,0.000278492000000,0.000892416000000 +0.000048565000000,0.000060022000000,0.000164714000000,0.000358294000000,0.000053307000000,0.000224763000000,0.000188418000000,0.000391874000000,0.000046196000000,0.000056467000000,0.000225158000000,0.000892416000000 +0.000048566000000,0.000046196000000,0.000165108000000,0.000449158000000,0.000048170000000,0.000383577000000,0.000224368000000,0.000354343000000,0.000045801000000,0.000056072000000,0.000227923000000,0.000880564000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000358689000000,0.000048171000000,0.000256368000000,0.000189208000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000255183000000,0.000882540000000 +0.000048566000000,0.000046196000000,0.000235034000000,0.000395034000000,0.000048170000000,0.000226344000000,0.000188022000000,0.000390293000000,0.000046195000000,0.000056467000000,0.000241355000000,0.000885306000000 +0.000048566000000,0.000046196000000,0.000175381000000,0.000357898000000,0.000053307000000,0.000260319000000,0.000188418000000,0.000356713000000,0.000045800000000,0.000056467000000,0.000223578000000,0.000882935000000 +0.000048170000000,0.000046195000000,0.000165898000000,0.000358689000000,0.000048565000000,0.000226738000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000897158000000 +0.000067529000000,0.000046195000000,0.000167874000000,0.000408072000000,0.000048566000000,0.000222788000000,0.000274935000000,0.000390294000000,0.000046195000000,0.000056072000000,0.000263874000000,0.000881355000000 +0.000085701000000,0.000048960000000,0.000167479000000,0.000361849000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000525800000000,0.000908614000000 +0.000048171000000,0.000046195000000,0.000219627000000,0.000362244000000,0.000054887000000,0.000298639000000,0.000189603000000,0.000429404000000,0.000045801000000,0.000056466000000,0.000225158000000,0.000911380000000 +0.000048170000000,0.000046195000000,0.000179726000000,0.000404515000000,0.000050541000000,0.000237405000000,0.000189207000000,0.000372515000000,0.000045800000000,0.000056467000000,0.000275331000000,0.001148416000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000358689000000,0.000091627000000,0.000225158000000,0.000188418000000,0.000357898000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000903479000000 +0.000048170000000,0.000046196000000,0.000165109000000,0.000450738000000,0.000051331000000,0.000225948000000,0.000571232000000,0.000390294000000,0.000046195000000,0.000092812000000,0.000225948000000,0.000829602000000 +0.000048171000000,0.000046196000000,0.000163133000000,0.000372121000000,0.000084911000000,0.000312467000000,0.000201850000000,0.000354738000000,0.000045800000000,0.000058047000000,0.000261504000000,0.000911380000000 +0.000048170000000,0.000046591000000,0.000164713000000,0.000358689000000,0.000048565000000,0.000227924000000,0.000189602000000,0.000354344000000,0.000045800000000,0.000057257000000,0.000305356000000,0.000871874000000 +0.000048171000000,0.000046195000000,0.000182492000000,0.000394244000000,0.000048171000000,0.000224368000000,0.000225948000000,0.000389898000000,0.000046195000000,0.000058442000000,0.000223973000000,0.000907430000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000360664000000,0.000048171000000,0.000226343000000,0.000188417000000,0.000354343000000,0.000046196000000,0.000056466000000,0.000225948000000,0.000954441000000 +0.000048171000000,0.000046590000000,0.000162344000000,0.000444022000000,0.000054886000000,0.000297059000000,0.000191183000000,0.000392269000000,0.000045800000000,0.000056467000000,0.000244516000000,0.000904268000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000397009000000,0.000048566000000,0.000235430000000,0.000189208000000,0.000354738000000,0.000081750000000,0.000056467000000,0.000224368000000,0.000875034000000 +0.000048961000000,0.000046590000000,0.000166294000000,0.000358294000000,0.000048170000000,0.000225158000000,0.000189208000000,0.000355924000000,0.000046196000000,0.000056466000000,0.000226343000000,0.000913750000000 +0.000048170000000,0.000046195000000,0.000253207000000,0.000393849000000,0.000048171000000,0.000235430000000,0.000224368000000,0.000425454000000,0.000045800000000,0.000056862000000,0.000223973000000,0.000872269000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000358293000000,0.000053701000000,0.000244121000000,0.000189998000000,0.000354343000000,0.000046195000000,0.000056072000000,0.000270590000000,0.001010145000000 +0.000052122000000,0.000046195000000,0.000166294000000,0.000428615000000,0.000048566000000,0.000223973000000,0.000189602000000,0.000374096000000,0.000045800000000,0.000057257000000,0.000224763000000,0.000831183000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048565000000,0.000226738000000,0.000188418000000,0.000372515000000,0.000046195000000,0.000056467000000,0.000222392000000,0.001004614000000 +0.000067133000000,0.000046590000000,0.000182096000000,0.000358294000000,0.000048566000000,0.000243726000000,0.000188812000000,0.000354738000000,0.000045800000000,0.000056861000000,0.000223183000000,0.000888071000000 +0.000064764000000,0.000046590000000,0.000253998000000,0.000407676000000,0.000053701000000,0.000258343000000,0.000225554000000,0.000395034000000,0.000046195000000,0.000076220000000,0.000258738000000,0.000921651000000 +0.000048171000000,0.000046591000000,0.000164713000000,0.000361059000000,0.000050146000000,0.000226343000000,0.000189207000000,0.000354739000000,0.000045801000000,0.000093207000000,0.000224763000000,0.000869503000000 +0.000048170000000,0.000046591000000,0.000165109000000,0.000358293000000,0.000048171000000,0.000223577000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000872664000000 +0.000048566000000,0.000046591000000,0.000164713000000,0.000421109000000,0.000048170000000,0.000263479000000,0.000189208000000,0.000398195000000,0.000046195000000,0.000056466000000,0.000223973000000,0.000881751000000 +0.000048170000000,0.000046196000000,0.000166294000000,0.000358294000000,0.000053702000000,0.000239775000000,0.000213701000000,0.000365405000000,0.000046195000000,0.000056467000000,0.000259133000000,0.000869899000000 +0.000048566000000,0.000046196000000,0.000201850000000,0.000397009000000,0.000048565000000,0.000281256000000,0.000189207000000,0.000388318000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000872664000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000370540000000,0.000048566000000,0.000226738000000,0.000188022000000,0.000372120000000,0.000046590000000,0.000056862000000,0.000225553000000,0.000867923000000 +0.000048566000000,0.000046195000000,0.000165504000000,0.000362640000000,0.000048565000000,0.000331429000000,0.000188417000000,0.000357108000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000901108000000 +0.000048565000000,0.000046985000000,0.000167874000000,0.000429010000000,0.000053307000000,0.000226343000000,0.000188417000000,0.000426245000000,0.000045801000000,0.000056071000000,0.000261503000000,0.000912170000000 +0.000048171000000,0.000049751000000,0.000166294000000,0.000361059000000,0.000048170000000,0.000225158000000,0.000224763000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000224368000000,0.000873454000000 +0.000048170000000,0.000046196000000,0.000184071000000,0.000408861000000,0.000048171000000,0.000224763000000,0.000189603000000,0.000356318000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000867527000000 +0.000048171000000,0.000046196000000,0.000216862000000,0.000358293000000,0.000048565000000,0.000270985000000,0.000188022000000,0.000390294000000,0.000064368000000,0.000056466000000,0.000225158000000,0.000875429000000 +0.000048565000000,0.000047775000000,0.000161553000000,0.000358294000000,0.000054887000000,0.000226343000000,0.000223577000000,0.000357109000000,0.000061998000000,0.000056467000000,0.000261108000000,0.000867923000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000804318000000,0.000048565000000,0.000226343000000,0.000205800000000,0.000425454000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000880565000000 +0.000048565000000,0.000048170000000,0.000165898000000,0.000410046000000,0.000048171000000,0.000225553000000,0.000227528000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000226343000000,0.000871083000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048170000000,0.000294294000000,0.000189208000000,0.000357504000000,0.000045800000000,0.000094788000000,0.000226738000000,0.000883726000000 +0.000048565000000,0.000046591000000,0.000212911000000,0.000366195000000,0.000053702000000,0.000226343000000,0.000189603000000,0.000392269000000,0.000046195000000,0.000091233000000,0.000262294000000,0.001014096000000 +0.000084516000000,0.000046591000000,0.000164713000000,0.000439282000000,0.000048170000000,0.000225553000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000869108000000 +0.000048171000000,0.000046591000000,0.000165109000000,0.000361059000000,0.000048171000000,0.000225158000000,0.000188418000000,0.000354343000000,0.000046196000000,0.000056466000000,0.000225158000000,0.000873454000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000394640000000,0.000086096000000,0.000240565000000,0.000259528000000,0.000432960000000,0.000045800000000,0.000056862000000,0.000229899000000,0.000882145000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000361849000000,0.000053702000000,0.000225158000000,0.000188417000000,0.000379232000000,0.000046195000000,0.000056862000000,0.000298640000000,0.000929947000000 +0.000048566000000,0.000046195000000,0.000247677000000,0.000358294000000,0.000048170000000,0.000227134000000,0.000189603000000,0.000500516000000,0.000046195000000,0.000056466000000,0.000237404000000,0.000907824000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000457849000000,0.000048171000000,0.000226739000000,0.000189602000000,0.000369751000000,0.000046195000000,0.000056862000000,0.000235825000000,0.000908220000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000362245000000,0.000048565000000,0.000641553000000,0.000188417000000,0.000390689000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000910589000000 +0.000048565000000,0.000046195000000,0.000161948000000,0.000394244000000,0.000054097000000,0.000242541000000,0.000226738000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261108000000,0.000863577000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000361454000000,0.000118886000000,0.000261108000000,0.000189602000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000224763000000,0.000879775000000 +0.000048170000000,0.000046195000000,0.000219627000000,0.000430195000000,0.000100318000000,0.000225553000000,0.000189998000000,0.000389899000000,0.000046195000000,0.000056861000000,0.000225158000000,0.000870688000000 +0.000050936000000,0.000046985000000,0.000178146000000,0.000824862000000,0.000051331000000,0.000222787000000,0.000188417000000,0.000353948000000,0.000045800000000,0.000056467000000,0.000225158000000,0.001155528000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000479577000000,0.000068319000000,0.000224368000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261108000000,0.000874639000000 +0.000048565000000,0.000046590000000,0.000165504000000,0.000362640000000,0.000048170000000,0.000261504000000,0.000318393000000,0.000390294000000,0.000045800000000,0.000090442000000,0.000225158000000,0.000917306000000 +0.000048566000000,0.000046590000000,0.000161948000000,0.000358293000000,0.000048960000000,0.000224762000000,0.000201849000000,0.000354738000000,0.000082146000000,0.000070689000000,0.000225553000000,0.000836713000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000401750000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000389898000000,0.000045800000000,0.000056467000000,0.000237800000000,0.000834343000000 +0.000048171000000,0.000046196000000,0.000410442000000,0.000360269000000,0.000055281000000,0.000225948000000,0.000189603000000,0.000355924000000,0.000045800000000,0.000056071000000,0.000261108000000,0.000933898000000 +0.000048170000000,0.000047776000000,0.000182097000000,0.000393850000000,0.000121652000000,0.000273356000000,0.000225553000000,0.000354738000000,0.000045800000000,0.000057257000000,0.000222788000000,0.000942985000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000358293000000,0.000063972000000,0.000225553000000,0.000189998000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000226344000000,0.000903874000000 +0.000117701000000,0.000046590000000,0.000164714000000,0.000357898000000,0.000048170000000,0.000224368000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000873454000000 +0.000062393000000,0.000046590000000,0.000180121000000,0.000398590000000,0.000053306000000,0.000225158000000,0.000188812000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000297454000000,0.000922046000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000245306000000,0.000189603000000,0.000392269000000,0.000045800000000,0.000058442000000,0.000228713000000,0.000869504000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000362245000000,0.000048565000000,0.000226738000000,0.000223973000000,0.000354344000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000907429000000 +0.000052122000000,0.000046590000000,0.000165108000000,0.000397009000000,0.000048171000000,0.000228319000000,0.000188417000000,0.000396219000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000880565000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000389898000000,0.000053701000000,0.000225158000000,0.000188022000000,0.000369355000000,0.000046195000000,0.000058047000000,0.000329060000000,0.001380317000000 +0.000048565000000,0.000046195000000,0.000201059000000,0.000395430000000,0.000048171000000,0.000225553000000,0.000188812000000,0.000355133000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000871873000000 +0.000048566000000,0.000046195000000,0.000167479000000,0.000360664000000,0.000048170000000,0.000224763000000,0.000189207000000,0.000395034000000,0.000046195000000,0.000058442000000,0.000225158000000,0.000868713000000 +0.000048170000000,0.000046590000000,0.000161948000000,0.000359874000000,0.000048566000000,0.000224367000000,0.000224368000000,0.000354738000000,0.000046196000000,0.000076220000000,0.000223973000000,0.000873849000000 +0.000054492000000,0.000046195000000,0.000164714000000,0.000393850000000,0.000054887000000,0.000225158000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000261898000000,0.000881355000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000358689000000,0.000048565000000,0.000225158000000,0.000189602000000,0.000393454000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000907034000000 +0.000048566000000,0.000046196000000,0.000184467000000,0.000406491000000,0.000048566000000,0.000225158000000,0.000191182000000,0.000354738000000,0.000046195000000,0.000057257000000,0.000225158000000,0.000910194000000 +0.000048170000000,0.000046591000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000225158000000,0.000189207000000,0.000425454000000,0.000046195000000,0.000056467000000,0.000223972000000,0.000871083000000 +0.000048566000000,0.000046195000000,0.000165898000000,0.000359084000000,0.000053702000000,0.000224368000000,0.000240566000000,0.000356319000000,0.000045800000000,0.000056862000000,0.000269405000000,0.000873848000000 +0.000048565000000,0.000048170000000,0.000164714000000,0.000393849000000,0.000071479000000,0.000228714000000,0.000189207000000,0.000355528000000,0.000062393000000,0.000056466000000,0.000224368000000,0.000917306000000 +0.000048171000000,0.000046590000000,0.000161553000000,0.000360664000000,0.000064763000000,0.000223973000000,0.000188813000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000830787000000 +0.000067528000000,0.000046590000000,0.000164713000000,0.000358689000000,0.000048565000000,0.000225553000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000854490000000 +0.000064763000000,0.000046195000000,0.000201060000000,0.000432170000000,0.000053702000000,0.000244121000000,0.000223972000000,0.000354343000000,0.000045800000000,0.000056861000000,0.000274540000000,0.000880565000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000361455000000,0.000048565000000,0.000225158000000,0.000202244000000,0.000390293000000,0.000046196000000,0.000056072000000,0.000222788000000,0.000886095000000 +0.000048565000000,0.000046195000000,0.000168269000000,0.000393849000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000409256000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000872664000000 +0.000052121000000,0.000046591000000,0.000161553000000,0.000357899000000,0.000048565000000,0.000274936000000,0.000188417000000,0.000422689000000,0.000045800000000,0.000056071000000,0.000280862000000,0.000870293000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000357898000000,0.000053307000000,0.000274146000000,0.000190787000000,0.000355924000000,0.000045800000000,0.000058047000000,0.000225948000000,0.000873849000000 +0.000048565000000,0.000046591000000,0.000184861000000,0.000429404000000,0.000048170000000,0.000225158000000,0.000238590000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000225948000000,0.000925602000000 +0.000048171000000,0.000046591000000,0.000165108000000,0.000367776000000,0.000048171000000,0.000224368000000,0.000189602000000,0.000390294000000,0.000046195000000,0.000149306000000,0.000225553000000,0.000995133000000 +0.000048960000000,0.000046590000000,0.000164714000000,0.000441651000000,0.000048565000000,0.000224368000000,0.000188812000000,0.000354738000000,0.000045800000000,0.000138244000000,0.000318788000000,0.000873454000000 +0.000048171000000,0.000046590000000,0.000167479000000,0.000357898000000,0.000053307000000,0.000297059000000,0.000189603000000,0.000440072000000,0.000046196000000,0.000088072000000,0.000265849000000,0.000871874000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000362245000000,0.000048170000000,0.000226738000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000076615000000,0.000239775000000,0.000877405000000 +0.000048171000000,0.000046195000000,0.000167875000000,0.000394244000000,0.000048566000000,0.000225948000000,0.000224763000000,0.000355528000000,0.000046195000000,0.000059627000000,0.000224368000000,0.000878195000000 +0.000048170000000,0.000046195000000,0.000201850000000,0.000360269000000,0.000048565000000,0.000235429000000,0.000188417000000,0.000389898000000,0.000045800000000,0.000056467000000,0.000273750000000,0.000833553000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000053307000000,0.000260318000000,0.000189998000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000835923000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000408072000000,0.000048170000000,0.000228714000000,0.000189208000000,0.000384763000000,0.000046195000000,0.000056466000000,0.000225948000000,0.000873454000000 +0.000048566000000,0.000046985000000,0.000167874000000,0.000360269000000,0.000050146000000,0.000226343000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000223973000000,0.000882145000000 +0.000048566000000,0.000046590000000,0.000162739000000,0.000403726000000,0.000048566000000,0.000224763000000,0.000225553000000,0.000357109000000,0.000118492000000,0.000056467000000,0.000261899000000,0.000955626000000 +0.000082936000000,0.000080566000000,0.000244516000000,0.000358294000000,0.000054886000000,0.000261504000000,0.000189602000000,0.000393849000000,0.000096368000000,0.000056466000000,0.000225158000000,0.000890046000000 +0.000080170000000,0.000048960000000,0.000233059000000,0.000358293000000,0.000048171000000,0.000224763000000,0.000189602000000,0.000354738000000,0.000065553000000,0.000073849000000,0.000225553000000,0.000946146000000 +0.000048171000000,0.000048961000000,0.000164713000000,0.000394245000000,0.000048565000000,0.000227529000000,0.000188023000000,0.000354739000000,0.000048961000000,0.000056072000000,0.000229503000000,0.000897552000000 +0.000048170000000,0.000048960000000,0.000165899000000,0.000358294000000,0.000048961000000,0.000225158000000,0.000188417000000,0.000398195000000,0.000046195000000,0.000056862000000,0.000272960000000,0.000918096000000 +0.000048566000000,0.000049356000000,0.000164714000000,0.000404121000000,0.000053701000000,0.000260713000000,0.000224368000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000237405000000,0.000868318000000 +0.000048170000000,0.000049355000000,0.000201850000000,0.000358688000000,0.000048566000000,0.000227528000000,0.000188418000000,0.000393059000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000913750000000 +0.000048566000000,0.000048961000000,0.000166294000000,0.000358293000000,0.000048565000000,0.000224368000000,0.000188812000000,0.000472861000000,0.000046195000000,0.000058047000000,0.000274936000000,0.000868713000000 +0.000048565000000,0.000048961000000,0.000164714000000,0.000394245000000,0.000048566000000,0.000227133000000,0.000188022000000,0.000354739000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000842639000000 +0.000048171000000,0.000048961000000,0.000165109000000,0.000358293000000,0.000055281000000,0.000261504000000,0.000267825000000,0.000390293000000,0.000045801000000,0.000056467000000,0.000226344000000,0.000839873000000 +0.000051331000000,0.000049356000000,0.000162738000000,0.000358293000000,0.000048566000000,0.000227133000000,0.000237405000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000223973000000,0.000908614000000 +0.000048565000000,0.000049356000000,0.000164713000000,0.000481158000000,0.000048170000000,0.000225158000000,0.000190788000000,0.000428615000000,0.000046590000000,0.000056467000000,0.000272170000000,0.000904664000000 +0.000048566000000,0.000048961000000,0.000182887000000,0.000357899000000,0.000048566000000,0.000229504000000,0.000189208000000,0.000377256000000,0.000045800000000,0.000056466000000,0.000225948000000,0.000883726000000 +0.000048565000000,0.000048960000000,0.000164713000000,0.000412812000000,0.000053701000000,0.000266639000000,0.000189207000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000927578000000 +0.000048170000000,0.000049356000000,0.000165109000000,0.000454293000000,0.000048566000000,0.000224368000000,0.000260319000000,0.000394639000000,0.000046195000000,0.000056862000000,0.000224763000000,0.000871479000000 +0.000048171000000,0.000048960000000,0.000165108000000,0.000393850000000,0.000048565000000,0.000226739000000,0.000188417000000,0.000357504000000,0.000046195000000,0.000056861000000,0.000259924000000,0.001352268000000 +0.000048565000000,0.000049356000000,0.000165899000000,0.000357899000000,0.000048566000000,0.000224763000000,0.000188022000000,0.000354343000000,0.000081751000000,0.000095183000000,0.000225948000000,0.001054787000000 +0.000048566000000,0.000049356000000,0.000212516000000,0.000358293000000,0.000091627000000,0.000261503000000,0.000188417000000,0.000425849000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000890836000000 +0.000048170000000,0.000049355000000,0.000165109000000,0.000397404000000,0.000048171000000,0.000224763000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000884515000000 +0.000081751000000,0.000061603000000,0.000164714000000,0.000361060000000,0.000048170000000,0.000223577000000,0.000225949000000,0.000390293000000,0.000046195000000,0.000062393000000,0.000297059000000,0.000873849000000 +0.000051331000000,0.000046195000000,0.000165899000000,0.000357898000000,0.000048171000000,0.000223578000000,0.000188022000000,0.000358293000000,0.000045800000000,0.000056862000000,0.000227528000000,0.000877010000000 +0.000048566000000,0.000046195000000,0.000165898000000,0.000406887000000,0.000053306000000,0.000266640000000,0.000190788000000,0.000354739000000,0.000046195000000,0.000061997000000,0.000223183000000,0.000888071000000 +0.000048566000000,0.000046590000000,0.000201060000000,0.000367775000000,0.000048171000000,0.000228714000000,0.000189208000000,0.000724910000000,0.000045800000000,0.000056072000000,0.000227924000000,0.000869503000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000416763000000,0.000048565000000,0.000228318000000,0.000189602000000,0.000356318000000,0.000046195000000,0.000056467000000,0.000309306000000,0.000906244000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000509997000000,0.000048961000000,0.000227528000000,0.000223973000000,0.000390294000000,0.000046195000000,0.000056862000000,0.000261109000000,0.000913355000000 +0.000051331000000,0.000046195000000,0.000161948000000,0.000431775000000,0.000053701000000,0.000265454000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056072000000,0.000238195000000,0.000912170000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000410047000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000838293000000 +0.000048566000000,0.000046195000000,0.000165898000000,0.000448763000000,0.000048565000000,0.000225158000000,0.000188418000000,0.000354738000000,0.000046196000000,0.000056466000000,0.000244911000000,0.000875035000000 +0.000048170000000,0.000046590000000,0.000201455000000,0.000380812000000,0.000048961000000,0.000224368000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000868318000000 +0.000048171000000,0.000046195000000,0.000161948000000,0.000358689000000,0.000054887000000,0.000271776000000,0.000206590000000,0.000393849000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000867132000000 +0.000048565000000,0.000046195000000,0.000164713000000,0.000439281000000,0.000048565000000,0.000224368000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000075825000000,0.000224763000000,0.000868318000000 +0.000048171000000,0.000047776000000,0.000161553000000,0.000361455000000,0.000048171000000,0.000225553000000,0.000189603000000,0.000356319000000,0.000046590000000,0.000056467000000,0.000291924000000,0.000881355000000 +0.000048170000000,0.000046591000000,0.000168269000000,0.000361454000000,0.000048170000000,0.000224368000000,0.000189208000000,0.000433750000000,0.000045800000000,0.000056467000000,0.000236615000000,0.000865552000000 +0.000048566000000,0.000046590000000,0.000200665000000,0.000394244000000,0.000054887000000,0.000375281000000,0.000225553000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000224367000000,0.001005404000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000050146000000,0.000225158000000,0.000189208000000,0.000395035000000,0.000064764000000,0.000056467000000,0.000260319000000,0.001222688000000 +0.000049356000000,0.000046985000000,0.000165109000000,0.000430985000000,0.000048170000000,0.000225158000000,0.000188022000000,0.000354738000000,0.000096368000000,0.000061998000000,0.000225158000000,0.000872664000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000360269000000,0.000048171000000,0.000271380000000,0.000188418000000,0.000354343000000,0.000059232000000,0.000056467000000,0.000227133000000,0.000871084000000 +0.000083726000000,0.000046590000000,0.000164319000000,0.000357899000000,0.000053306000000,0.000225158000000,0.000188022000000,0.000393454000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000882935000000 +0.000061603000000,0.000046195000000,0.000164713000000,0.000394245000000,0.000048171000000,0.000237405000000,0.000224368000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000363035000000,0.000874244000000 +0.000048170000000,0.000046590000000,0.000201059000000,0.000358293000000,0.000048170000000,0.000225553000000,0.000188812000000,0.000391084000000,0.000046195000000,0.000056862000000,0.000403331000000,0.000871478000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000377652000000,0.000048171000000,0.000305751000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000877405000000 +0.000048170000000,0.000046195000000,0.000162343000000,0.000598886000000,0.000053701000000,0.000224367000000,0.000188022000000,0.000355133000000,0.000045801000000,0.000056467000000,0.000259924000000,0.000884911000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000397799000000,0.000048566000000,0.000226738000000,0.000189603000000,0.000425059000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000912565000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000358293000000,0.000048565000000,0.000222788000000,0.000261503000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000224763000000,0.000873454000000 +0.000049356000000,0.000049356000000,0.000204615000000,0.000360269000000,0.000048566000000,0.000261109000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000880565000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000441256000000,0.000053306000000,0.000227134000000,0.000189603000000,0.000388319000000,0.000045800000000,0.000092417000000,0.000297060000000,0.000871874000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000223183000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000239776000000,0.000871479000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000048170000000,0.000224763000000,0.000188417000000,0.000390294000000,0.000046195000000,0.000056467000000,0.000224763000000,0.000878985000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000397405000000,0.000048171000000,0.000296664000000,0.000225158000000,0.000354738000000,0.000045801000000,0.000056072000000,0.000225553000000,0.000852911000000 +0.000048171000000,0.000046195000000,0.000163133000000,0.000358689000000,0.000054886000000,0.000225553000000,0.000188417000000,0.000379232000000,0.000045801000000,0.000056467000000,0.000259134000000,0.000835528000000 +0.000048170000000,0.000046195000000,0.000201849000000,0.000433750000000,0.000048171000000,0.000228318000000,0.000189603000000,0.000413998000000,0.000045800000000,0.000056467000000,0.000225949000000,0.000846589000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000358294000000,0.000048170000000,0.000224763000000,0.000189602000000,0.000357503000000,0.000046195000000,0.000056467000000,0.000223973000000,0.001002639000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000357899000000,0.000086097000000,0.000263084000000,0.000188417000000,0.000355528000000,0.000086491000000,0.000056862000000,0.000225948000000,0.000872664000000 +0.000048566000000,0.000046195000000,0.000162738000000,0.000393849000000,0.000053701000000,0.000225158000000,0.000227133000000,0.000426244000000,0.000046196000000,0.000056467000000,0.000310097000000,0.000884516000000 +0.000084516000000,0.000046196000000,0.000164713000000,0.000363035000000,0.000048171000000,0.000235035000000,0.000189207000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000223973000000,0.000875429000000 +0.000048960000000,0.000052122000000,0.000202245000000,0.000429405000000,0.000048170000000,0.000225158000000,0.000189603000000,0.000479972000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000917701000000 +0.000048171000000,0.000046196000000,0.000161553000000,0.000358689000000,0.000048566000000,0.000271380000000,0.000188417000000,0.000373701000000,0.000046195000000,0.000056467000000,0.000223577000000,0.000903479000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000358293000000,0.000053306000000,0.000227923000000,0.000189602000000,0.000375281000000,0.000045800000000,0.000056466000000,0.000250837000000,0.000920466000000 +0.000052121000000,0.000046590000000,0.000165899000000,0.000393059000000,0.000048566000000,0.000224368000000,0.000339726000000,0.000357503000000,0.000045800000000,0.000056862000000,0.000223973000000,0.000869898000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000421503000000,0.000048566000000,0.000226343000000,0.000206195000000,0.000354739000000,0.000046195000000,0.000092418000000,0.000222788000000,0.002209947000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000451923000000,0.000048566000000,0.000241751000000,0.000188417000000,0.000390293000000,0.000046196000000,0.000056467000000,0.000222788000000,0.001172910000000 +0.000048566000000,0.000046195000000,0.000211331000000,0.000358294000000,0.000055281000000,0.000225158000000,0.000189603000000,0.000354343000000,0.000046196000000,0.000056466000000,0.000257948000000,0.001490145000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000358293000000,0.000048171000000,0.000226343000000,0.000261108000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225159000000,0.000910195000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000394244000000,0.000048170000000,0.000223578000000,0.000189602000000,0.000808664000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000942589000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000048171000000,0.000279677000000,0.000189603000000,0.000425059000000,0.000045800000000,0.000056467000000,0.000258738000000,0.000893996000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000358293000000,0.000053701000000,0.000223578000000,0.000189208000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000236615000000,0.000891627000000 +0.000048565000000,0.000046195000000,0.000202244000000,0.000446787000000,0.000048566000000,0.000223973000000,0.000189207000000,0.000357109000000,0.000045800000000,0.000056466000000,0.000226343000000,0.001090343000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000357899000000,0.000048170000000,0.000262294000000,0.000259923000000,0.000393454000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000895972000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000402936000000,0.000048171000000,0.000224763000000,0.000188813000000,0.000355134000000,0.000046196000000,0.000056467000000,0.000297059000000,0.000927577000000 +0.000048171000000,0.000046590000000,0.000168269000000,0.000357503000000,0.000094392000000,0.000226343000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056861000000,0.000225158000000,0.000882145000000 +0.000048565000000,0.000050541000000,0.000166294000000,0.000358293000000,0.000048171000000,0.000225158000000,0.000188418000000,0.000390294000000,0.000065158000000,0.000056467000000,0.000224368000000,0.000886491000000 +0.000048171000000,0.000046195000000,0.000184861000000,0.000434146000000,0.000048170000000,0.000286787000000,0.000225158000000,0.000357108000000,0.000048961000000,0.000056467000000,0.000225158000000,0.000880960000000 +0.000125208000000,0.000046195000000,0.000261504000000,0.000362244000000,0.000048171000000,0.000224367000000,0.000227528000000,0.000413998000000,0.000059232000000,0.000056862000000,0.000261504000000,0.001156317000000 +0.000106244000000,0.000047776000000,0.000199479000000,0.000393850000000,0.000053701000000,0.000226343000000,0.000206985000000,0.000358689000000,0.000045800000000,0.000056862000000,0.000224763000000,0.001221502000000 +0.000119282000000,0.000083331000000,0.000182491000000,0.000358294000000,0.000048566000000,0.000226738000000,0.000189208000000,0.000354343000000,0.000045800000000,0.000092417000000,0.000225948000000,0.000893602000000 +0.000150886000000,0.000048566000000,0.000166294000000,0.000358688000000,0.000048565000000,0.000262293000000,0.000190788000000,0.000426639000000,0.000046195000000,0.000056466000000,0.000277701000000,0.000900713000000 +0.000114146000000,0.000046590000000,0.000202639000000,0.000748219000000,0.000048566000000,0.000223973000000,0.000260713000000,0.000380022000000,0.000046196000000,0.000056467000000,0.000308911000000,0.000889256000000 +0.000068319000000,0.000046195000000,0.000161948000000,0.001083232000000,0.000055281000000,0.000226343000000,0.000189602000000,0.000390294000000,0.000045800000000,0.000056862000000,0.000225948000000,0.000886885000000 +0.000051331000000,0.000046590000000,0.000164714000000,0.000647084000000,0.000048566000000,0.000225553000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000889651000000 +0.000061997000000,0.000046195000000,0.000165109000000,0.000427034000000,0.000048565000000,0.000387923000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000090442000000,0.000225553000000,0.000893997000000 +0.000048566000000,0.000046195000000,0.000161554000000,0.000931133000000,0.000048566000000,0.000339330000000,0.000188023000000,0.000396614000000,0.000045800000000,0.000060022000000,0.000263874000000,0.000885306000000 +0.000048565000000,0.000046590000000,0.000206986000000,0.000617454000000,0.000055281000000,0.000225158000000,0.000229504000000,0.000354738000000,0.000045800000000,0.000060022000000,0.000226738000000,0.000883725000000 +0.000109800000000,0.000045800000000,0.000165108000000,0.000380417000000,0.000048566000000,0.000263874000000,0.000189602000000,0.000379627000000,0.000045800000000,0.000060417000000,0.000237405000000,0.000888861000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000429010000000,0.000048566000000,0.000227134000000,0.000189997000000,0.000390294000000,0.000067134000000,0.000060022000000,0.000235825000000,0.000887281000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000380022000000,0.000048170000000,0.000225158000000,0.000188418000000,0.000355133000000,0.000061998000000,0.000059627000000,0.000309306000000,0.000897552000000 +0.000048566000000,0.000046590000000,0.000162343000000,0.000415577000000,0.000053306000000,0.000224763000000,0.000190788000000,0.000392269000000,0.000059627000000,0.000060022000000,0.000225158000000,0.000926787000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000381998000000,0.000086097000000,0.000297060000000,0.000261899000000,0.000354739000000,0.000045800000000,0.000059627000000,0.000224368000000,0.000886096000000 +0.000048170000000,0.000046591000000,0.000201850000000,0.000413207000000,0.000048565000000,0.000225158000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000092812000000,0.000261108000000,0.000878194000000 +0.000050936000000,0.000046591000000,0.000165108000000,0.000398590000000,0.000048566000000,0.000222787000000,0.000188418000000,0.000445207000000,0.000063578000000,0.000060022000000,0.000225158000000,0.000868713000000 +0.000048566000000,0.000046591000000,0.000165109000000,0.000442442000000,0.000053306000000,0.000224368000000,0.000189603000000,0.000412812000000,0.000045800000000,0.000060022000000,0.000224763000000,0.000882935000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000380417000000,0.000048171000000,0.000272171000000,0.000226343000000,0.000390688000000,0.000045800000000,0.000095578000000,0.000225158000000,0.001001849000000 +0.000048171000000,0.000046195000000,0.000161554000000,0.000379627000000,0.000048170000000,0.000293504000000,0.000188417000000,0.000379232000000,0.000046195000000,0.000072269000000,0.000261899000000,0.000901503000000 +0.000048170000000,0.000046985000000,0.000246097000000,0.000380022000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000354739000000,0.000045801000000,0.000056466000000,0.000237800000000,0.000839478000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000410837000000,0.000053701000000,0.000226343000000,0.000189998000000,0.000391084000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000868713000000 +0.000048565000000,0.000047775000000,0.000164714000000,0.000380022000000,0.000048171000000,0.000278096000000,0.000189602000000,0.000360269000000,0.000046195000000,0.000056467000000,0.000222788000000,0.000984861000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000380417000000,0.000048565000000,0.000224763000000,0.000299824000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000338936000000,0.001629997000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000379627000000,0.000048566000000,0.000224367000000,0.000569256000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000512762000000,0.001063084000000 +0.000048171000000,0.000046195000000,0.000201454000000,0.000379627000000,0.000054886000000,0.000259528000000,0.000242936000000,0.000365010000000,0.000046195000000,0.000056862000000,0.000242146000000,0.001087182000000 +0.000066738000000,0.000046196000000,0.000181306000000,0.000416763000000,0.000048170000000,0.000242541000000,0.000203035000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000265455000000,0.000918885000000 +0.000110590000000,0.000046196000000,0.000165108000000,0.000379627000000,0.000048171000000,0.000226738000000,0.000188022000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000226343000000,0.000880960000000 +0.000052121000000,0.000046196000000,0.000164714000000,0.000390689000000,0.000048170000000,0.000227924000000,0.000188813000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000226343000000,0.000871084000000 +0.000048171000000,0.000046196000000,0.000165109000000,0.000381998000000,0.000053306000000,0.000295478000000,0.000188417000000,0.000390688000000,0.000046195000000,0.000092022000000,0.000224368000000,0.000882935000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000379627000000,0.000048566000000,0.000272566000000,0.000222788000000,0.000359874000000,0.000045800000000,0.000056861000000,0.000273356000000,0.000867527000000 +0.000048566000000,0.000046195000000,0.000203825000000,0.000416368000000,0.000050541000000,0.000278492000000,0.000203825000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000225158000000,0.001040565000000 +0.000048170000000,0.000046590000000,0.000162343000000,0.000383183000000,0.000048170000000,0.000224368000000,0.000188023000000,0.000374096000000,0.000046195000000,0.000056467000000,0.000223578000000,0.000887676000000 +0.000054097000000,0.000046195000000,0.000165108000000,0.000383973000000,0.000054887000000,0.000310886000000,0.000188417000000,0.000357504000000,0.000045800000000,0.000056466000000,0.000225553000000,0.000901504000000 +0.000048565000000,0.000046195000000,0.000164319000000,0.000380022000000,0.000048170000000,0.000238590000000,0.000189208000000,0.000429404000000,0.000100319000000,0.000056072000000,0.000262294000000,0.000887676000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000380417000000,0.000048171000000,0.000238591000000,0.000227133000000,0.000355528000000,0.000059627000000,0.000056467000000,0.000225553000000,0.000883725000000 +0.000048565000000,0.000046195000000,0.000213701000000,0.000409652000000,0.000048566000000,0.000286393000000,0.000189207000000,0.000357899000000,0.000045801000000,0.000056071000000,0.000224368000000,0.001191083000000 +0.000048566000000,0.000046590000000,0.000166294000000,0.000358294000000,0.000054886000000,0.000255578000000,0.000189603000000,0.000403330000000,0.000046195000000,0.000056467000000,0.000227133000000,0.000927182000000 +0.000048566000000,0.000048170000000,0.000164714000000,0.000361849000000,0.000048566000000,0.000228318000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261108000000,0.000916910000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000429800000000,0.000048565000000,0.000223973000000,0.000188417000000,0.000391084000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000882935000000 +0.000048171000000,0.000046986000000,0.000164713000000,0.000365405000000,0.000048566000000,0.000262293000000,0.000223973000000,0.000362244000000,0.000045800000000,0.000056862000000,0.000225553000000,0.000922837000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000638788000000,0.000053306000000,0.000225158000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000058442000000,0.000223578000000,0.000869108000000 +0.000048171000000,0.000046195000000,0.000181306000000,0.000429405000000,0.000048171000000,0.000224762000000,0.000189602000000,0.000478788000000,0.000045800000000,0.000056467000000,0.000294294000000,0.000875034000000 +0.000086491000000,0.000046590000000,0.000167874000000,0.000394244000000,0.000048170000000,0.000225158000000,0.000189602000000,0.000369356000000,0.000046196000000,0.000097948000000,0.000226343000000,0.000866737000000 +0.000068714000000,0.000046195000000,0.000161948000000,0.000358294000000,0.000048171000000,0.000323923000000,0.000188022000000,0.000427034000000,0.000046195000000,0.000056466000000,0.000225553000000,0.001133009000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000054096000000,0.000225158000000,0.000226738000000,0.000355528000000,0.000045800000000,0.000056467000000,0.000262689000000,0.000875429000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000396615000000,0.000048171000000,0.000225158000000,0.000189208000000,0.000379627000000,0.000045800000000,0.000073455000000,0.000225553000000,0.000927182000000 +0.000048566000000,0.000046195000000,0.000201059000000,0.000357898000000,0.000048170000000,0.000224368000000,0.000189207000000,0.000451133000000,0.000046195000000,0.000071479000000,0.000225158000000,0.000881750000000 +0.000048960000000,0.000046195000000,0.000165109000000,0.000461800000000,0.000048171000000,0.000261109000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000227529000000,0.000926392000000 +0.000048171000000,0.000046195000000,0.000168664000000,0.000555429000000,0.000110195000000,0.000225158000000,0.000189603000000,0.000441652000000,0.000045800000000,0.000056072000000,0.000261504000000,0.000919281000000 +0.000048961000000,0.000046195000000,0.000164713000000,0.000525800000000,0.000062393000000,0.000226738000000,0.000225948000000,0.000368565000000,0.000045800000000,0.000056467000000,0.000239775000000,0.001014096000000 +0.000048171000000,0.000046195000000,0.000167874000000,0.000413602000000,0.000048566000000,0.000225948000000,0.000188418000000,0.000390689000000,0.000046195000000,0.000056862000000,0.000224762000000,0.000867528000000 +0.000048565000000,0.000046195000000,0.000199479000000,0.000393849000000,0.000048565000000,0.000307725000000,0.000188417000000,0.000449158000000,0.000063973000000,0.000056467000000,0.000223973000000,0.000897553000000 +0.000048566000000,0.000046196000000,0.000180516000000,0.000358294000000,0.000054887000000,0.000224368000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000299429000000,0.000833157000000 +0.000048170000000,0.000046591000000,0.000161553000000,0.000358293000000,0.000048170000000,0.000228713000000,0.000189603000000,0.000463775000000,0.000046195000000,0.000056466000000,0.000256368000000,0.000834738000000 +0.000048566000000,0.000046196000000,0.000167479000000,0.000440861000000,0.000048171000000,0.000226343000000,0.000225553000000,0.000357899000000,0.000046195000000,0.000056467000000,0.000223973000000,0.000959182000000 +0.000048565000000,0.000046590000000,0.000162738000000,0.000358294000000,0.000048170000000,0.000301009000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000058442000000,0.000225158000000,0.000912960000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000393454000000,0.000053307000000,0.000225158000000,0.000189207000000,0.000426244000000,0.000046195000000,0.000092812000000,0.000261108000000,0.000923626000000 +0.000048170000000,0.000046195000000,0.000201454000000,0.000362244000000,0.000048565000000,0.000224763000000,0.000189208000000,0.000354343000000,0.000045800000000,0.000069899000000,0.000225553000000,0.000925602000000 +0.000048566000000,0.000067133000000,0.000164714000000,0.000358294000000,0.000048566000000,0.000247282000000,0.000188417000000,0.000427824000000,0.000046196000000,0.000056466000000,0.000230293000000,0.000999084000000 +0.000103084000000,0.000103084000000,0.000166294000000,0.000384763000000,0.000048565000000,0.000531330000000,0.000224763000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000236220000000,0.000860022000000 +0.000063578000000,0.000116516000000,0.000165109000000,0.000381997000000,0.000053702000000,0.000242936000000,0.000188022000000,0.000362245000000,0.000045800000000,0.000056467000000,0.000287973000000,0.000892022000000 +0.000048565000000,0.000065553000000,0.000165109000000,0.000382393000000,0.000048565000000,0.000274145000000,0.000239381000000,0.000425454000000,0.000046195000000,0.000062392000000,0.000225158000000,0.000925997000000 +0.000048171000000,0.000048961000000,0.000202639000000,0.000399775000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000355133000000,0.000046195000000,0.000056467000000,0.000236219000000,0.000918491000000 +0.000048170000000,0.000060417000000,0.000165109000000,0.000379628000000,0.000048565000000,0.000226738000000,0.000224367000000,0.000408862000000,0.000045800000000,0.000056862000000,0.000225158000000,0.000882145000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000420318000000,0.000056862000000,0.000225158000000,0.000188417000000,0.000370936000000,0.000046195000000,0.000056466000000,0.000262688000000,0.000909800000000 +0.000050936000000,0.000046195000000,0.000162738000000,0.000381998000000,0.000048171000000,0.000263084000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000224368000000,0.001017651000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000379627000000,0.000048565000000,0.000225158000000,0.000190788000000,0.000425059000000,0.000046196000000,0.000056467000000,0.000225949000000,0.000865553000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000384763000000,0.000048566000000,0.000265059000000,0.000189602000000,0.000354344000000,0.000046195000000,0.000056071000000,0.000225158000000,0.000889257000000 +0.000048565000000,0.000046590000000,0.000201060000000,0.000380022000000,0.000054096000000,0.000254788000000,0.000225158000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261503000000,0.000867133000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000380417000000,0.000048566000000,0.000271381000000,0.000202639000000,0.000872269000000,0.000084516000000,0.000056467000000,0.000224763000000,0.000827627000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000381997000000,0.000048565000000,0.000226738000000,0.000188022000000,0.000403330000000,0.000147330000000,0.000092022000000,0.000223182000000,0.000906243000000 +0.000048565000000,0.000046590000000,0.000165898000000,0.000379627000000,0.000048171000000,0.000224368000000,0.000188022000000,0.000354343000000,0.000148516000000,0.000056466000000,0.000225948000000,0.000865553000000 +0.000048171000000,0.000046196000000,0.000220418000000,0.000382788000000,0.000053306000000,0.000227923000000,0.000188812000000,0.000354738000000,0.000132318000000,0.000056467000000,0.000262293000000,0.000880170000000 +0.000048565000000,0.000046986000000,0.000201455000000,0.000384368000000,0.000048566000000,0.000242146000000,0.000225948000000,0.000389899000000,0.000096368000000,0.000056862000000,0.000227133000000,0.000868713000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000380812000000,0.000048565000000,0.000223973000000,0.000189997000000,0.000354343000000,0.000050541000000,0.000056467000000,0.000226343000000,0.000913750000000 +0.000048170000000,0.000046590000000,0.000165899000000,0.000379627000000,0.000048566000000,0.000223578000000,0.000188418000000,0.000390294000000,0.000061603000000,0.000056467000000,0.000227528000000,0.000871083000000 +0.000084516000000,0.000046590000000,0.000165899000000,0.000384367000000,0.000054886000000,0.000230293000000,0.000191183000000,0.000354343000000,0.000058837000000,0.000056467000000,0.000259923000000,0.000874244000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000380417000000,0.000048171000000,0.000244911000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000228318000000,0.000882145000000 +0.000048565000000,0.000046195000000,0.000201455000000,0.000380022000000,0.000048170000000,0.000228318000000,0.000230293000000,0.000393455000000,0.000046195000000,0.000056467000000,0.000224763000000,0.000887281000000 +0.000048566000000,0.000046195000000,0.000161554000000,0.000399380000000,0.000048171000000,0.000227133000000,0.000188417000000,0.000357108000000,0.000100714000000,0.000056862000000,0.000225158000000,0.000931528000000 +0.000051331000000,0.000046195000000,0.000161949000000,0.000517504000000,0.000053306000000,0.000228713000000,0.000189603000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000301405000000,0.000871479000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000381997000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000880170000000 +0.000048566000000,0.000046590000000,0.000166294000000,0.000434540000000,0.000096763000000,0.000225158000000,0.000188417000000,0.000357109000000,0.000046195000000,0.000056467000000,0.000227528000000,0.000848565000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000390689000000,0.000130343000000,0.000223973000000,0.000224763000000,0.000456269000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000908614000000 +0.000048170000000,0.000046195000000,0.000199479000000,0.000398195000000,0.000071875000000,0.000244121000000,0.000189998000000,0.000370541000000,0.000046195000000,0.000056467000000,0.000242936000000,0.000931923000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000051331000000,0.000224367000000,0.000189208000000,0.000357109000000,0.000045800000000,0.000072664000000,0.000225158000000,0.000872664000000 +0.000048565000000,0.000047776000000,0.000161948000000,0.000358689000000,0.000051331000000,0.000224763000000,0.000189602000000,0.000390293000000,0.000046196000000,0.000061998000000,0.000224763000000,0.000878590000000 +0.000048566000000,0.000046591000000,0.000167874000000,0.000433355000000,0.000061997000000,0.000224368000000,0.000189602000000,0.000361454000000,0.000046195000000,0.000056467000000,0.000255973000000,0.000865157000000 +0.000048960000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000053702000000,0.000246491000000,0.000225553000000,0.000392664000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000869504000000 +0.000048566000000,0.000046590000000,0.000206195000000,0.000500516000000,0.000048170000000,0.000240961000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000223972000000,0.000872269000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000405701000000,0.000048171000000,0.000225158000000,0.000188417000000,0.000355924000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000872269000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000429800000000,0.000048170000000,0.000235035000000,0.000188417000000,0.000410442000000,0.000045800000000,0.000056862000000,0.000247281000000,0.000877405000000 +0.000048565000000,0.000046195000000,0.000164318000000,0.000357898000000,0.000054887000000,0.000279677000000,0.000188023000000,0.000356318000000,0.000045800000000,0.000057257000000,0.000225158000000,0.000886886000000 +0.000067529000000,0.000083331000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000237800000000,0.000224763000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000931528000000 +0.000098738000000,0.000046195000000,0.000165108000000,0.000412022000000,0.000048171000000,0.000225553000000,0.000189602000000,0.000436120000000,0.000046195000000,0.000056467000000,0.000236615000000,0.000850540000000 +0.000048566000000,0.000046195000000,0.000201454000000,0.000358688000000,0.000048170000000,0.000225553000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000259529000000,0.000879380000000 +0.000048170000000,0.000046590000000,0.000162739000000,0.000358294000000,0.000053702000000,0.000557010000000,0.000188417000000,0.000392269000000,0.000045800000000,0.000056467000000,0.000237800000000,0.000894392000000 +0.000048566000000,0.000046590000000,0.000166293000000,0.000393849000000,0.000048566000000,0.000241751000000,0.000189602000000,0.000354738000000,0.000082146000000,0.000056072000000,0.000225158000000,0.000870689000000 +0.000048170000000,0.000046195000000,0.000167874000000,0.000358293000000,0.000048565000000,0.000222788000000,0.000227529000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000873454000000 +0.000049751000000,0.000049356000000,0.000167874000000,0.000440467000000,0.000048566000000,0.000261109000000,0.000189207000000,0.000436516000000,0.000046195000000,0.000092417000000,0.000299825000000,0.000880960000000 +0.000048565000000,0.000046196000000,0.000200665000000,0.000361849000000,0.000054096000000,0.000227528000000,0.000189602000000,0.000412022000000,0.000045800000000,0.000056467000000,0.000297455000000,0.000880170000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000469306000000,0.000048566000000,0.000223182000000,0.000189603000000,0.000407281000000,0.000045800000000,0.000056467000000,0.000239380000000,0.000875824000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000375676000000,0.000048565000000,0.000224763000000,0.000207775000000,0.000357504000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000998293000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000357504000000,0.000048566000000,0.000261109000000,0.000204615000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000306540000000,0.000871478000000 +0.000048170000000,0.000046195000000,0.000163134000000,0.000429405000000,0.000055281000000,0.000225158000000,0.000188417000000,0.000390689000000,0.000045800000000,0.000058047000000,0.000274936000000,0.000899133000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000359084000000,0.000048566000000,0.000227529000000,0.000189603000000,0.000354738000000,0.000045800000000,0.000057257000000,0.000225553000000,0.000871478000000 +0.000048565000000,0.000046195000000,0.000293899000000,0.000358293000000,0.000048565000000,0.000223973000000,0.000189603000000,0.000390293000000,0.000046195000000,0.000058442000000,0.000295084000000,0.000909009000000 +0.000048171000000,0.000046590000000,0.000180911000000,0.000431381000000,0.000048566000000,0.000262294000000,0.000224763000000,0.000354739000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000912565000000 +0.000048566000000,0.000046195000000,0.000162738000000,0.000361059000000,0.000055282000000,0.000225553000000,0.000190788000000,0.000357108000000,0.000045800000000,0.000056467000000,0.000225554000000,0.000852911000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000429405000000,0.000146935000000,0.000235429000000,0.000189207000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000870688000000 +0.000092813000000,0.000046195000000,0.000213306000000,0.000358294000000,0.000065158000000,0.000224763000000,0.000189602000000,0.000355924000000,0.000046591000000,0.000056862000000,0.000262688000000,0.001051626000000 +0.000051331000000,0.000046985000000,0.000161553000000,0.000358293000000,0.000051331000000,0.000277701000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000882540000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000394245000000,0.000060417000000,0.000228318000000,0.000226343000000,0.000389899000000,0.000045800000000,0.000056467000000,0.000234244000000,0.000873849000000 +0.000052121000000,0.000046591000000,0.000165899000000,0.000433355000000,0.000051726000000,0.000224368000000,0.000189208000000,0.000354343000000,0.000046195000000,0.000090047000000,0.000224763000000,0.000878589000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000689356000000,0.000051331000000,0.000226739000000,0.000188022000000,0.000391874000000,0.000046195000000,0.000056467000000,0.000259133000000,0.000869503000000 +0.000048171000000,0.000046590000000,0.000161948000000,0.000563726000000,0.000051331000000,0.000261109000000,0.000188418000000,0.000354738000000,0.000065553000000,0.000056467000000,0.000222788000000,0.000870688000000 +0.000048170000000,0.000046195000000,0.000238195000000,0.000377257000000,0.000213306000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000079775000000,0.000056861000000,0.000225158000000,0.000884121000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000361454000000,0.000053701000000,0.000225948000000,0.000300614000000,0.000403725000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000864763000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000394244000000,0.000053306000000,0.000278096000000,0.000241750000000,0.000406097000000,0.000046195000000,0.000056467000000,0.000261503000000,0.000836713000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000357898000000,0.000076220000000,0.000241750000000,0.000189602000000,0.000362244000000,0.000045801000000,0.000056861000000,0.000223578000000,0.000836318000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000358294000000,0.000053306000000,0.000223973000000,0.000189603000000,0.000494195000000,0.000046195000000,0.000056467000000,0.000223578000000,0.000886491000000 +0.000048566000000,0.000046590000000,0.000201454000000,0.000397010000000,0.000048566000000,0.000223973000000,0.000224763000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000867528000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000367775000000,0.000048565000000,0.000263084000000,0.000188022000000,0.000390294000000,0.000046195000000,0.000056862000000,0.000261504000000,0.000874639000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000397800000000,0.000048566000000,0.000224763000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000905059000000 +0.000048170000000,0.000046195000000,0.000167874000000,0.000358294000000,0.000054096000000,0.000226738000000,0.000188023000000,0.000354344000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000874639000000 +0.000048566000000,0.000051726000000,0.000165899000000,0.000361059000000,0.000048171000000,0.000225553000000,0.000231084000000,0.000403725000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000868318000000 +0.000048565000000,0.000046590000000,0.000205010000000,0.000398195000000,0.000050541000000,0.000261109000000,0.000240960000000,0.000356318000000,0.000046196000000,0.000056467000000,0.000310887000000,0.000870294000000 +0.000086887000000,0.000046590000000,0.000180911000000,0.000358294000000,0.000048565000000,0.000224368000000,0.000188022000000,0.000435726000000,0.000046195000000,0.000056466000000,0.000225158000000,0.001076121000000 +0.000064763000000,0.000048171000000,0.000161553000000,0.000393849000000,0.000053702000000,0.000226343000000,0.000188417000000,0.000356713000000,0.000045800000000,0.000092417000000,0.000225158000000,0.000893997000000 +0.000048171000000,0.000046196000000,0.000165108000000,0.000358688000000,0.000048170000000,0.000226738000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225948000000,0.001007380000000 +0.000048565000000,0.000049750000000,0.000166294000000,0.000361060000000,0.000048171000000,0.000261898000000,0.000191183000000,0.000431380000000,0.000046195000000,0.000056467000000,0.000263084000000,0.000935874000000 +0.000048566000000,0.000081751000000,0.000165109000000,0.000394639000000,0.000048170000000,0.000224763000000,0.000225553000000,0.000354738000000,0.000046195000000,0.000057257000000,0.000226343000000,0.000879775000000 +0.000048565000000,0.000046195000000,0.000226343000000,0.000366590000000,0.000053307000000,0.000227133000000,0.000189602000000,0.000392664000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000935479000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000048565000000,0.000225553000000,0.000189208000000,0.000354739000000,0.000114936000000,0.000056072000000,0.000225158000000,0.000867528000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000397010000000,0.000048171000000,0.000298244000000,0.000188417000000,0.000354343000000,0.000061208000000,0.000056072000000,0.000261504000000,0.000914935000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000358689000000,0.000048170000000,0.000298244000000,0.000188418000000,0.000426244000000,0.000045800000000,0.000056862000000,0.000228318000000,0.000872664000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000431775000000,0.000053702000000,0.000225158000000,0.000224368000000,0.000363825000000,0.000045800000000,0.000056071000000,0.000226738000000,0.000895973000000 +0.000048170000000,0.000046195000000,0.000419529000000,0.000357899000000,0.000048960000000,0.000227529000000,0.000189208000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000237405000000,0.000867527000000 +0.000048566000000,0.000046590000000,0.000223182000000,0.000360269000000,0.000048566000000,0.000263479000000,0.000189602000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000304565000000,0.000873454000000 +0.000048170000000,0.000046195000000,0.000165899000000,0.000433355000000,0.000048565000000,0.000225553000000,0.000188022000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000871874000000 +0.000048171000000,0.000046590000000,0.000161948000000,0.000358293000000,0.000054492000000,0.000225158000000,0.000191183000000,0.000393454000000,0.000045801000000,0.000056467000000,0.000224763000000,0.001079281000000 +0.000048170000000,0.000046590000000,0.000233849000000,0.000397010000000,0.000048170000000,0.000224763000000,0.000225553000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000923627000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000048171000000,0.000261108000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000110985000000,0.000261504000000,0.000873059000000 +0.000050936000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000098343000000,0.000222788000000,0.000188417000000,0.000437701000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000910590000000 +0.000068318000000,0.000046590000000,0.000164713000000,0.000396615000000,0.000127182000000,0.000224368000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000920466000000 +0.000080961000000,0.000046196000000,0.000165109000000,0.000362639000000,0.000051331000000,0.000225553000000,0.000189998000000,0.000374097000000,0.000046195000000,0.000056467000000,0.000224763000000,0.000901898000000 +0.000048170000000,0.000046591000000,0.000197898000000,0.000377257000000,0.000051331000000,0.000261899000000,0.000260714000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000261899000000,0.000885305000000 +0.000067924000000,0.000046195000000,0.000164714000000,0.000456269000000,0.000051331000000,0.000225158000000,0.000188417000000,0.000354738000000,0.000045801000000,0.000056466000000,0.000238196000000,0.000919281000000 +0.000064763000000,0.000046195000000,0.000165108000000,0.000360269000000,0.000092417000000,0.000225948000000,0.000189998000000,0.000391874000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000867923000000 +0.000063578000000,0.000048170000000,0.000164714000000,0.000393850000000,0.000051331000000,0.000227133000000,0.000189603000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000222788000000,0.000915725000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000358293000000,0.000051331000000,0.000261899000000,0.000242541000000,0.000354738000000,0.000082146000000,0.000056467000000,0.000262294000000,0.000867923000000 +0.000048566000000,0.000046590000000,0.000201455000000,0.000357899000000,0.000051331000000,0.000224368000000,0.000189602000000,0.000647874000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000845009000000 +0.000048170000000,0.000046590000000,0.000162738000000,0.000398985000000,0.000056861000000,0.000225158000000,0.000189207000000,0.000426245000000,0.000045800000000,0.000056071000000,0.000225158000000,0.000832368000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000051331000000,0.000228714000000,0.000189208000000,0.000427034000000,0.000046195000000,0.000058442000000,0.000229108000000,0.001049256000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000438886000000,0.000051331000000,0.000273751000000,0.000188022000000,0.000354343000000,0.000046195000000,0.000056861000000,0.000373306000000,0.000866342000000 +0.000052121000000,0.000046195000000,0.000165109000000,0.000484713000000,0.000069899000000,0.000228318000000,0.000238195000000,0.000437701000000,0.000045800000000,0.000056467000000,0.000260318000000,0.000914935000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000669207000000,0.000179726000000,0.000225158000000,0.000188022000000,0.000354343000000,0.000045800000000,0.000094788000000,0.000239775000000,0.000922441000000 +0.000048565000000,0.000046196000000,0.000202244000000,0.000918096000000,0.000152072000000,0.000225553000000,0.000188813000000,0.000355528000000,0.000045801000000,0.000056466000000,0.000260713000000,0.000882145000000 +0.000048171000000,0.000046196000000,0.000167874000000,0.000469306000000,0.000150096000000,0.000296269000000,0.000188812000000,0.000393850000000,0.000046195000000,0.000058442000000,0.000225158000000,0.000917306000000 +0.000048170000000,0.000046196000000,0.000161948000000,0.000513948000000,0.000071479000000,0.000224368000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000223973000000,0.000837108000000 +0.000092812000000,0.000046195000000,0.000165109000000,0.000380022000000,0.000163923000000,0.000224763000000,0.000225158000000,0.000425849000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000874243000000 +0.000077405000000,0.000046195000000,0.000165109000000,0.000381207000000,0.000152861000000,0.000225158000000,0.000189603000000,0.000357504000000,0.000045800000000,0.000056862000000,0.000262689000000,0.000905848000000 +0.000048565000000,0.000046195000000,0.000201060000000,0.000393059000000,0.000149307000000,0.000241356000000,0.000190788000000,0.000354738000000,0.000046195000000,0.000057257000000,0.000225158000000,0.000872269000000 +0.000048566000000,0.000046195000000,0.000165503000000,0.000380022000000,0.000137059000000,0.000224763000000,0.000189207000000,0.000425454000000,0.000046195000000,0.000056467000000,0.000223973000000,0.001263380000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000556615000000,0.000074245000000,0.000224763000000,0.000189603000000,0.000356319000000,0.000045801000000,0.000056466000000,0.000226738000000,0.000882146000000 +0.000048566000000,0.000047775000000,0.000165109000000,0.000379627000000,0.000052911000000,0.000228713000000,0.000297454000000,0.000374491000000,0.000045800000000,0.000056072000000,0.000308121000000,0.000874244000000 +0.000048565000000,0.000046590000000,0.000161554000000,0.000421109000000,0.000079381000000,0.000223578000000,0.000188417000000,0.000371330000000,0.000046195000000,0.000056467000000,0.000225159000000,0.001187133000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000381208000000,0.000051331000000,0.000225158000000,0.000188417000000,0.000355134000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000874639000000 +0.000048170000000,0.000047776000000,0.000187232000000,0.000384368000000,0.000056467000000,0.000225553000000,0.000188812000000,0.000461800000000,0.000045800000000,0.000056467000000,0.000223182000000,0.000889256000000 +0.000048566000000,0.000082145000000,0.000165109000000,0.000383182000000,0.000109800000000,0.000225158000000,0.000225553000000,0.000354738000000,0.000081751000000,0.000056466000000,0.000258343000000,0.000887281000000 +0.000048170000000,0.000046590000000,0.000167874000000,0.000380023000000,0.000051331000000,0.000325503000000,0.000189602000000,0.000357899000000,0.000046195000000,0.000074640000000,0.000226343000000,0.000904269000000 +0.000052121000000,0.000046195000000,0.000161948000000,0.000391874000000,0.000055677000000,0.000239380000000,0.000188813000000,0.000448368000000,0.000045800000000,0.000072270000000,0.000225948000000,0.000875824000000 +0.000048171000000,0.000046591000000,0.000165108000000,0.000379627000000,0.000056862000000,0.000224763000000,0.000190787000000,0.000356318000000,0.000046195000000,0.000058047000000,0.000226738000000,0.000869503000000 +0.000048170000000,0.000046591000000,0.000201454000000,0.000379627000000,0.000051331000000,0.000466935000000,0.000189207000000,0.000425059000000,0.000045800000000,0.000056467000000,0.000297849000000,0.000865157000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000391083000000,0.000051331000000,0.000425849000000,0.000225553000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000225158000000,0.000900318000000 +0.000048565000000,0.000046591000000,0.000164714000000,0.000379627000000,0.000053307000000,0.000280467000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056861000000,0.000227133000000,0.000907429000000 +0.000048171000000,0.000066738000000,0.000167874000000,0.000380812000000,0.000058047000000,0.000225158000000,0.000189603000000,0.000459035000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000925207000000 +0.000103084000000,0.000062393000000,0.000164714000000,0.000492220000000,0.000051331000000,0.000226343000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000239381000000,0.000829997000000 +0.000063183000000,0.000061602000000,0.000204220000000,0.000541997000000,0.000051331000000,0.000225553000000,0.000188022000000,0.000426244000000,0.000046195000000,0.000056071000000,0.000224763000000,0.000872269000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000381997000000,0.000051331000000,0.000319578000000,0.000259529000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000224367000000,0.000869503000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000380022000000,0.000056862000000,0.000223973000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000245701000000,0.000915725000000 +0.000048566000000,0.000046590000000,0.000161553000000,0.000387528000000,0.000051331000000,0.000228714000000,0.000189602000000,0.000415972000000,0.000045801000000,0.000056467000000,0.000242146000000,0.000882145000000 +0.000048170000000,0.000046590000000,0.000167874000000,0.000382392000000,0.000050936000000,0.000226344000000,0.000189998000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000223577000000,0.000871479000000 +0.000048171000000,0.000046195000000,0.000162343000000,0.000391083000000,0.000052516000000,0.000260714000000,0.000189603000000,0.000392664000000,0.000046195000000,0.000056861000000,0.000225553000000,0.000872664000000 +0.000048170000000,0.000046590000000,0.000201059000000,0.000380022000000,0.000056467000000,0.000225158000000,0.000225553000000,0.000358294000000,0.000045800000000,0.000056467000000,0.000261504000000,0.000989997000000 +0.000048566000000,0.000046591000000,0.000164714000000,0.000380022000000,0.000051331000000,0.000224763000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000091232000000,0.000225553000000,0.000885701000000 +0.000048565000000,0.000046986000000,0.000165108000000,0.000381207000000,0.000050936000000,0.000227528000000,0.000188022000000,0.000447973000000,0.000046195000000,0.000070294000000,0.000229899000000,0.000872663000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000380022000000,0.000050936000000,0.000308911000000,0.000188813000000,0.000362244000000,0.000092023000000,0.000056467000000,0.000236615000000,0.000905454000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000380812000000,0.000056862000000,0.000225158000000,0.000188022000000,0.000390294000000,0.000046195000000,0.000056467000000,0.000321553000000,0.000871478000000 +0.000048171000000,0.000046195000000,0.000220023000000,0.000380418000000,0.000051331000000,0.000226738000000,0.000317208000000,0.000354738000000,0.000045800000000,0.000056466000000,0.000224763000000,0.000905849000000 +0.000048170000000,0.000046195000000,0.000165899000000,0.000380022000000,0.000051331000000,0.000224763000000,0.000189207000000,0.000354343000000,0.000046195000000,0.000058442000000,0.000235825000000,0.000832367000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000380812000000,0.000051331000000,0.000263084000000,0.000188023000000,0.000655775000000,0.000046195000000,0.000056466000000,0.000224763000000,0.000882540000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000379627000000,0.000058442000000,0.000225158000000,0.000188417000000,0.000529355000000,0.000045800000000,0.000056467000000,0.000262294000000,0.000920861000000 +0.000051331000000,0.000046195000000,0.000163133000000,0.000381207000000,0.000051331000000,0.000227133000000,0.000225158000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000863578000000 +0.000104269000000,0.000046590000000,0.000165109000000,0.000464565000000,0.000051331000000,0.000225158000000,0.000204220000000,0.000355529000000,0.000046196000000,0.000056466000000,0.000225553000000,0.001226244000000 +0.000062788000000,0.000046590000000,0.000237009000000,0.000379627000000,0.000051331000000,0.000279282000000,0.000189207000000,0.000397800000000,0.000045800000000,0.000056467000000,0.000225554000000,0.000904664000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000421108000000,0.000056467000000,0.000224368000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000303380000000,0.000878984000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000380022000000,0.000051331000000,0.000223972000000,0.000189603000000,0.000359479000000,0.000045800000000,0.000056071000000,0.000224368000000,0.000829207000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000425454000000,0.000051331000000,0.000227528000000,0.000269800000000,0.000393454000000,0.000046590000000,0.000056467000000,0.000223578000000,0.000846589000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000380022000000,0.000051331000000,0.000261109000000,0.000188022000000,0.000354343000000,0.000045800000000,0.000097158000000,0.000226343000000,0.000869898000000 +0.000048170000000,0.000046196000000,0.000198294000000,0.000380022000000,0.000056467000000,0.000227924000000,0.000188417000000,0.000354739000000,0.000046196000000,0.000107825000000,0.000274935000000,0.000868318000000 +0.000048171000000,0.000046591000000,0.000164713000000,0.000381602000000,0.000051331000000,0.000224368000000,0.000189603000000,0.000390293000000,0.000045800000000,0.000076220000000,0.000227528000000,0.000868713000000 +0.000048170000000,0.000046196000000,0.000165109000000,0.000382788000000,0.000051331000000,0.000223577000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000078591000000,0.000225553000000,0.000885305000000 +0.000048171000000,0.000046591000000,0.000165898000000,0.000438886000000,0.000051331000000,0.000308911000000,0.000224367000000,0.000394639000000,0.000045800000000,0.000056072000000,0.000227528000000,0.000909009000000 +0.000048565000000,0.000046590000000,0.000165504000000,0.000380022000000,0.000057257000000,0.000229899000000,0.000191182000000,0.000354738000000,0.000045800000000,0.000061997000000,0.000582688000000,0.000924416000000 +0.000048566000000,0.000066343000000,0.000201454000000,0.000391083000000,0.000051331000000,0.000228714000000,0.000189207000000,0.000355924000000,0.000065158000000,0.000056072000000,0.000260319000000,0.000882935000000 +0.000048170000000,0.000062788000000,0.000164714000000,0.000450343000000,0.000051331000000,0.000301800000000,0.000189603000000,0.000397010000000,0.000107825000000,0.000056467000000,0.000302590000000,0.000868318000000 +0.000048566000000,0.000060418000000,0.000161553000000,0.000358293000000,0.000051331000000,0.000227133000000,0.000188812000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000903083000000 +0.000051331000000,0.000046195000000,0.000161553000000,0.000401355000000,0.000059232000000,0.000228714000000,0.000275330000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000223182000000,0.000867923000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000051331000000,0.000225158000000,0.000189207000000,0.000370935000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000878590000000 +0.000048565000000,0.000046195000000,0.000165899000000,0.000473257000000,0.000051331000000,0.000308516000000,0.000188023000000,0.000354738000000,0.000046196000000,0.000056861000000,0.000263479000000,0.000883726000000 +0.000119677000000,0.000046195000000,0.000201059000000,0.000679874000000,0.000051331000000,0.000223973000000,0.000188417000000,0.000390293000000,0.000046195000000,0.000056467000000,0.000224763000000,0.000867133000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000447183000000,0.000056862000000,0.000225553000000,0.000225948000000,0.000358294000000,0.000045800000000,0.000109010000000,0.000226343000000,0.000938244000000 +0.000048566000000,0.000046195000000,0.000225553000000,0.000361454000000,0.000051726000000,0.000224368000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000888861000000 +0.000048565000000,0.000047775000000,0.000161948000000,0.000361455000000,0.000051331000000,0.000261504000000,0.000189208000000,0.000391083000000,0.000046195000000,0.000056862000000,0.000261109000000,0.000937059000000 +0.000048566000000,0.000046195000000,0.000167874000000,0.000412022000000,0.000051331000000,0.000224368000000,0.000189207000000,0.000362640000000,0.000045800000000,0.000056467000000,0.000236219000000,0.000877800000000 +0.000048960000000,0.000046196000000,0.000201060000000,0.000357899000000,0.000058047000000,0.000227528000000,0.000189602000000,0.000374096000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000906244000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000357898000000,0.000051331000000,0.000225553000000,0.000261504000000,0.000410837000000,0.000046195000000,0.000056862000000,0.000223973000000,0.000868713000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000406886000000,0.000051331000000,0.000275726000000,0.000188022000000,0.000354738000000,0.000046196000000,0.000061997000000,0.000274936000000,0.000871874000000 +0.000048566000000,0.000046196000000,0.000164713000000,0.000362245000000,0.000051331000000,0.000235430000000,0.000188022000000,0.000400565000000,0.000045800000000,0.000056467000000,0.000227529000000,0.000884120000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000408071000000,0.000058047000000,0.000392664000000,0.000188022000000,0.000408466000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000931528000000 +0.000048566000000,0.000046590000000,0.000201059000000,0.000357899000000,0.000051331000000,0.000306936000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000227133000000,0.000840664000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000051330000000,0.000326293000000,0.000264664000000,0.000403726000000,0.000046195000000,0.000056467000000,0.000272565000000,0.000829602000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000395034000000,0.000051331000000,0.000225948000000,0.000188417000000,0.000354343000000,0.000081751000000,0.000056467000000,0.000225553000000,0.000926392000000 +0.000048170000000,0.000046985000000,0.000162738000000,0.000358294000000,0.000058047000000,0.000223973000000,0.000188813000000,0.000391084000000,0.000046195000000,0.000056466000000,0.000223182000000,0.000886490000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000399380000000,0.000082541000000,0.000259528000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000919281000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000358689000000,0.000051331000000,0.000222788000000,0.000190788000000,0.000354738000000,0.000046195000000,0.000060417000000,0.000261899000000,0.000872664000000 +0.000049356000000,0.000049356000000,0.000203825000000,0.000359874000000,0.000050936000000,0.000225158000000,0.000293109000000,0.000390294000000,0.000046196000000,0.000056466000000,0.000226343000000,0.000884516000000 +0.000119281000000,0.000046590000000,0.000164714000000,0.000680269000000,0.000071084000000,0.000311281000000,0.000189208000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000225158000000,0.000903478000000 +0.000048171000000,0.000046195000000,0.000186837000000,0.000430590000000,0.000048170000000,0.000222787000000,0.000189207000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000239381000000,0.000883726000000 +0.000048170000000,0.000046195000000,0.000188022000000,0.000359084000000,0.000048170000000,0.000224763000000,0.000188812000000,0.000371725000000,0.000046195000000,0.000056467000000,0.000261109000000,0.000869898000000 +0.000048566000000,0.000046195000000,0.000174986000000,0.000362244000000,0.000048171000000,0.000225948000000,0.000224368000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000867923000000 +0.000048565000000,0.000046195000000,0.000209355000000,0.000359084000000,0.000052911000000,0.000440072000000,0.000188418000000,0.000413997000000,0.000045800000000,0.000076219000000,0.000222788000000,0.000919676000000 +0.000048171000000,0.000046195000000,0.000174985000000,0.000362244000000,0.000048170000000,0.000383578000000,0.000189602000000,0.000357504000000,0.000046195000000,0.000072270000000,0.000270195000000,0.000867133000000 +0.000048170000000,0.000046195000000,0.000210540000000,0.000358293000000,0.000048566000000,0.000224368000000,0.000189603000000,0.000358294000000,0.000046195000000,0.000056467000000,0.000253208000000,0.000915726000000 +0.000048566000000,0.000046590000000,0.000177751000000,0.000496171000000,0.000048170000000,0.000242146000000,0.000188022000000,0.000391874000000,0.000045801000000,0.000056862000000,0.000239380000000,0.000867923000000 +0.000048171000000,0.000046195000000,0.000162343000000,0.000358294000000,0.000053702000000,0.000225158000000,0.000338935000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000248071000000,0.001163429000000 +0.000048170000000,0.000046195000000,0.000201059000000,0.000363825000000,0.000048565000000,0.000260318000000,0.000483133000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000260318000000,0.000870293000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000358293000000,0.000048566000000,0.000239380000000,0.000209355000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000866343000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000358688000000,0.000048566000000,0.000249257000000,0.000236220000000,0.000354739000000,0.000046195000000,0.000110590000000,0.000223972000000,0.000847379000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000053702000000,0.000241750000000,0.000189602000000,0.000404911000000,0.000045800000000,0.000056467000000,0.000234245000000,0.000836713000000 +0.000052121000000,0.000046196000000,0.000166294000000,0.000357504000000,0.000048170000000,0.000237800000000,0.000189998000000,0.000357503000000,0.000064368000000,0.000056466000000,0.000296269000000,0.000887281000000 +0.000048565000000,0.000046196000000,0.000203825000000,0.000391479000000,0.000086097000000,0.000241355000000,0.000188417000000,0.000354739000000,0.000078985000000,0.000056467000000,0.000223183000000,0.000877800000000 +0.000048171000000,0.000083331000000,0.000254392000000,0.000461010000000,0.000048565000000,0.000238985000000,0.000188812000000,0.000524219000000,0.000048960000000,0.000056072000000,0.000222788000000,0.000867923000000 +0.000048170000000,0.000046196000000,0.000178146000000,0.000358294000000,0.000054887000000,0.000238590000000,0.000225158000000,0.000354738000000,0.000046195000000,0.000056861000000,0.000224763000000,0.000906244000000 +0.000083331000000,0.000046196000000,0.000164714000000,0.000367380000000,0.000048566000000,0.000239775000000,0.000189998000000,0.000406097000000,0.000045800000000,0.000056467000000,0.000261504000000,0.000931922000000 +0.000071479000000,0.000046196000000,0.000164714000000,0.000358294000000,0.000048565000000,0.000281652000000,0.000189208000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000225158000000,0.000875034000000 +0.000118492000000,0.000046196000000,0.000206590000000,0.000357899000000,0.000048566000000,0.000242145000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000223578000000,0.000872664000000 +0.000087676000000,0.000046195000000,0.000166294000000,0.000359479000000,0.000053701000000,0.000237010000000,0.000189998000000,0.000390689000000,0.000045800000000,0.000056862000000,0.000223578000000,0.000873454000000 +0.000067924000000,0.000046195000000,0.000165109000000,0.000363430000000,0.000048170000000,0.000237404000000,0.000205800000000,0.000357504000000,0.000045800000000,0.000056466000000,0.000262293000000,0.000884515000000 +0.000064763000000,0.000046195000000,0.000165898000000,0.000358293000000,0.000048170000000,0.000240566000000,0.000208961000000,0.000393454000000,0.000046590000000,0.000056467000000,0.000225158000000,0.000871083000000 +0.000048565000000,0.000046590000000,0.000165899000000,0.000363035000000,0.000048171000000,0.000237800000000,0.000206195000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000943774000000 +0.000048170000000,0.000046195000000,0.000167479000000,0.000357504000000,0.000054886000000,0.000239775000000,0.000188417000000,0.000354739000000,0.000045800000000,0.000056861000000,0.000225158000000,0.000869503000000 +0.000048566000000,0.000049356000000,0.000182886000000,0.000378046000000,0.000048171000000,0.000238590000000,0.000225553000000,0.000390688000000,0.000045800000000,0.000098343000000,0.000266639000000,0.000916120000000 +0.000048565000000,0.000046196000000,0.000164714000000,0.000388318000000,0.000048565000000,0.000239380000000,0.000189207000000,0.000357108000000,0.000046196000000,0.000070689000000,0.000225553000000,0.000941009000000 +0.000048171000000,0.000046196000000,0.000164713000000,0.000361455000000,0.000048566000000,0.000237405000000,0.000188023000000,0.000424269000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000869503000000 +0.000048170000000,0.000048171000000,0.000161553000000,0.000360269000000,0.000054096000000,0.000240565000000,0.000188022000000,0.000358294000000,0.000046195000000,0.000056862000000,0.000225159000000,0.000871874000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000240565000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000262689000000,0.000870294000000 +0.000048565000000,0.000048170000000,0.000202244000000,0.000358688000000,0.000048565000000,0.000239775000000,0.000227133000000,0.000443232000000,0.000046195000000,0.000056467000000,0.000278886000000,0.000868318000000 +0.000068319000000,0.000046195000000,0.000164714000000,0.000368170000000,0.000087282000000,0.000237800000000,0.000189602000000,0.000380022000000,0.000063183000000,0.000056862000000,0.000226738000000,0.000870688000000 +0.000048171000000,0.000046591000000,0.000161553000000,0.000358294000000,0.000053701000000,0.000240565000000,0.000189603000000,0.000354738000000,0.000045800000000,0.000056861000000,0.000225948000000,0.000877799000000 +0.000048170000000,0.000069899000000,0.000164713000000,0.000358293000000,0.000048566000000,0.000238985000000,0.000189207000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000261899000000,0.000871478000000 +0.000048566000000,0.000062788000000,0.000164714000000,0.000358293000000,0.000048170000000,0.000239380000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000907429000000 +0.000048170000000,0.000046195000000,0.000180516000000,0.000359873000000,0.000048171000000,0.000237405000000,0.000224368000000,0.000396220000000,0.000046196000000,0.000056071000000,0.000228319000000,0.000873059000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000358688000000,0.000054887000000,0.000239380000000,0.000188813000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000226739000000,0.000916121000000 +0.000048170000000,0.000045800000000,0.000164714000000,0.000358689000000,0.000048565000000,0.000241750000000,0.000189997000000,0.000379232000000,0.000045800000000,0.000056467000000,0.000273751000000,0.000875429000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000048566000000,0.000240565000000,0.000189997000000,0.000390294000000,0.000046195000000,0.000056072000000,0.000235825000000,0.000845800000000 +0.000048565000000,0.000046590000000,0.000165899000000,0.000359084000000,0.000048565000000,0.000238985000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000095183000000,0.000224763000000,0.000914935000000 +0.000048566000000,0.000046590000000,0.000162343000000,0.000358294000000,0.000053702000000,0.000238590000000,0.000227133000000,0.000356713000000,0.000045800000000,0.000056861000000,0.000225158000000,0.000878194000000 +0.000048565000000,0.000046195000000,0.000260714000000,0.000360269000000,0.000048565000000,0.000296269000000,0.000189208000000,0.000381998000000,0.000045800000000,0.000056072000000,0.000270985000000,0.000872664000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000358689000000,0.000048566000000,0.000415183000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000875430000000 +0.000051331000000,0.000046195000000,0.000165109000000,0.000362639000000,0.000048565000000,0.000287183000000,0.000188812000000,0.000393849000000,0.000045801000000,0.000056467000000,0.000225158000000,0.000874639000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000359084000000,0.000054097000000,0.000274146000000,0.000189603000000,0.000356319000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000871479000000 +0.000048565000000,0.000046196000000,0.000165504000000,0.000358294000000,0.000048170000000,0.000238590000000,0.000239775000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261899000000,0.001015676000000 +0.000048171000000,0.000046196000000,0.000197504000000,0.000358294000000,0.000048171000000,0.000241751000000,0.000188022000000,0.000657750000000,0.000046195000000,0.000056467000000,0.000226344000000,0.000876219000000 +0.000048170000000,0.000046590000000,0.000165108000000,0.000358689000000,0.000048170000000,0.000224763000000,0.000188417000000,0.000357109000000,0.000045800000000,0.000056862000000,0.000237800000000,0.000910985000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000056072000000,0.000263479000000,0.000189602000000,0.000391084000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000885306000000 +0.000084516000000,0.000047775000000,0.000165108000000,0.000357898000000,0.000048171000000,0.000226738000000,0.000189208000000,0.000357504000000,0.000085306000000,0.000056467000000,0.000258343000000,0.000897158000000 +0.000048170000000,0.000046590000000,0.000164714000000,0.000413998000000,0.000048565000000,0.000225158000000,0.000206590000000,0.000428219000000,0.000062788000000,0.000056467000000,0.000226344000000,0.000907824000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000374887000000,0.000048566000000,0.000224368000000,0.000189603000000,0.000353949000000,0.000045800000000,0.000056466000000,0.000224763000000,0.000871873000000 +0.000048170000000,0.000083726000000,0.000178936000000,0.000382392000000,0.000055281000000,0.000268615000000,0.000189208000000,0.000365009000000,0.000045800000000,0.000056467000000,0.000225158000000,0.001178441000000 +0.000048566000000,0.000060022000000,0.000164714000000,0.000457059000000,0.000048566000000,0.000227923000000,0.000189207000000,0.000390688000000,0.000045800000000,0.000095183000000,0.000451924000000,0.000880960000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000358293000000,0.000048565000000,0.000226738000000,0.000208171000000,0.000354739000000,0.000046195000000,0.000069899000000,0.000244516000000,0.000877800000000 +0.000051726000000,0.000046590000000,0.000202640000000,0.000359084000000,0.000048566000000,0.000227923000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000893601000000 +0.000048171000000,0.000046196000000,0.000177750000000,0.000361059000000,0.000053306000000,0.000275725000000,0.000188417000000,0.000430195000000,0.000045800000000,0.000056467000000,0.000261108000000,0.000871479000000 +0.000048565000000,0.000046196000000,0.000255973000000,0.000358293000000,0.000048171000000,0.000225158000000,0.000188417000000,0.000359874000000,0.000045801000000,0.000056467000000,0.000224763000000,0.000852911000000 +0.000048171000000,0.000046196000000,0.000167874000000,0.000436121000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000390689000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000835923000000 +0.000048170000000,0.000046591000000,0.000162343000000,0.000361455000000,0.000048566000000,0.000224763000000,0.000223973000000,0.000356319000000,0.000045800000000,0.000056467000000,0.000223578000000,0.000868318000000 +0.000054097000000,0.000046590000000,0.000184862000000,0.000363034000000,0.000053306000000,0.000261503000000,0.000188417000000,0.000376861000000,0.000045800000000,0.000056071000000,0.000261898000000,0.000875824000000 +0.000048566000000,0.000046195000000,0.000272170000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000494985000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000886885000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000225158000000,0.000191183000000,0.000355924000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000871478000000 +0.000048566000000,0.000046590000000,0.000165108000000,0.000358689000000,0.000048171000000,0.000224763000000,0.000189208000000,0.000391479000000,0.000046195000000,0.000056466000000,0.000223972000000,0.000880960000000 +0.000048565000000,0.000046590000000,0.000165899000000,0.000358293000000,0.000053701000000,0.000261503000000,0.000266244000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000279281000000,0.000873059000000 +0.000048566000000,0.000048170000000,0.000164714000000,0.000360665000000,0.000050146000000,0.000228319000000,0.000204219000000,0.000354738000000,0.000045801000000,0.000056467000000,0.000224368000000,0.000873454000000 +0.000048565000000,0.000046195000000,0.000161553000000,0.000358294000000,0.000048566000000,0.000223578000000,0.000188022000000,0.000391479000000,0.000046195000000,0.000056072000000,0.000225158000000,0.000872268000000 +0.000094788000000,0.000046195000000,0.000236614000000,0.000365009000000,0.000048565000000,0.000225948000000,0.000188022000000,0.000361060000000,0.000080565000000,0.000122047000000,0.000225553000000,0.000875034000000 +0.000061998000000,0.000046195000000,0.000164714000000,0.000358688000000,0.000053702000000,0.000261504000000,0.000188022000000,0.000392269000000,0.000060418000000,0.000058047000000,0.000295084000000,0.000872664000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000359874000000,0.000048565000000,0.000224367000000,0.000225948000000,0.000371331000000,0.000046195000000,0.000056072000000,0.000223183000000,0.000877010000000 +0.000048566000000,0.000047381000000,0.000167875000000,0.000358688000000,0.000048566000000,0.000225158000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000883725000000 +0.000052121000000,0.000046195000000,0.000161553000000,0.000359084000000,0.000048565000000,0.000238985000000,0.000188418000000,0.000391479000000,0.000045800000000,0.000056466000000,0.000245306000000,0.001119972000000 +0.000048565000000,0.000046195000000,0.000201850000000,0.000358294000000,0.000053307000000,0.000242146000000,0.000191182000000,0.000355134000000,0.000045800000000,0.000056467000000,0.000259924000000,0.000882541000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000360664000000,0.000048170000000,0.000225158000000,0.000189207000000,0.000380022000000,0.000045800000000,0.000056862000000,0.000225554000000,0.000870294000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000358689000000,0.000048171000000,0.000224368000000,0.000225948000000,0.000462985000000,0.000046591000000,0.000056862000000,0.000225553000000,0.001199379000000 +0.000048566000000,0.000046590000000,0.000165108000000,0.000357899000000,0.000048565000000,0.000224368000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000263084000000,0.000887676000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000366195000000,0.000053306000000,0.000261504000000,0.000189208000000,0.000445602000000,0.000045800000000,0.000056466000000,0.000225158000000,0.000870294000000 +0.000048566000000,0.000046195000000,0.000200270000000,0.000358294000000,0.000048566000000,0.000226738000000,0.000189997000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000239775000000,0.000879775000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000360269000000,0.000048566000000,0.000225553000000,0.000188022000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000224763000000,0.000904663000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000408071000000,0.000048565000000,0.000235035000000,0.000261899000000,0.000683034000000,0.000046195000000,0.000056467000000,0.000266245000000,0.000831577000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000357898000000,0.000055282000000,0.000224368000000,0.000189603000000,0.000373701000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000923626000000 +0.000048170000000,0.000046195000000,0.000161553000000,0.000358294000000,0.000048565000000,0.000228318000000,0.000189207000000,0.000370936000000,0.000045800000000,0.000137454000000,0.000277307000000,0.000892812000000 +0.000048566000000,0.000046195000000,0.000167874000000,0.000371726000000,0.000048566000000,0.000226343000000,0.000189602000000,0.000357108000000,0.000046196000000,0.000056071000000,0.000223973000000,0.000881750000000 +0.000067923000000,0.000046196000000,0.000199084000000,0.000358294000000,0.000129948000000,0.000244121000000,0.000243331000000,0.000390689000000,0.000045800000000,0.000058442000000,0.000261898000000,0.000929552000000 +0.000064369000000,0.000046196000000,0.000165108000000,0.000359084000000,0.000150492000000,0.000361060000000,0.000288368000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000867923000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000362244000000,0.000081356000000,0.000224763000000,0.000189208000000,0.000354739000000,0.000082146000000,0.000056467000000,0.000225553000000,0.000926392000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000444812000000,0.000063973000000,0.000227133000000,0.000226738000000,0.000392269000000,0.000046195000000,0.000056862000000,0.000229503000000,0.001253503000000 +0.000048566000000,0.000046195000000,0.000166294000000,0.000363035000000,0.000048566000000,0.000261504000000,0.000224762000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000272960000000,0.000867133000000 +0.000048170000000,0.000046195000000,0.000201454000000,0.000360269000000,0.000052911000000,0.000225158000000,0.000188417000000,0.000398590000000,0.000046195000000,0.000056467000000,0.000237405000000,0.000915726000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000360664000000,0.000048170000000,0.000226738000000,0.000188813000000,0.000354738000000,0.000045800000000,0.000062393000000,0.000224763000000,0.000876219000000 +0.000048170000000,0.000104664000000,0.000165899000000,0.000368961000000,0.000118887000000,0.000225158000000,0.000189207000000,0.000445603000000,0.000046195000000,0.000056861000000,0.000235825000000,0.000913355000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000357898000000,0.000048565000000,0.000381603000000,0.000188022000000,0.000390689000000,0.000046196000000,0.000056862000000,0.000294293000000,0.000880960000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000402540000000,0.000053702000000,0.000244517000000,0.000224368000000,0.000354343000000,0.000046196000000,0.000056862000000,0.000225948000000,0.000887281000000 +0.000051331000000,0.000046590000000,0.000162738000000,0.000374886000000,0.000048565000000,0.000227134000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000865552000000 +0.000048171000000,0.000046591000000,0.000216071000000,0.000358294000000,0.000048566000000,0.000261504000000,0.000191183000000,0.000427034000000,0.000046195000000,0.000056467000000,0.000225553000000,0.001315527000000 +0.000048565000000,0.000046196000000,0.000164714000000,0.000363034000000,0.000050541000000,0.000229108000000,0.000189207000000,0.000354343000000,0.000045800000000,0.000107034000000,0.000261899000000,0.000873454000000 +0.000048566000000,0.000046196000000,0.000165108000000,0.000358294000000,0.000053306000000,0.000224368000000,0.000189603000000,0.000391479000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000872269000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000358294000000,0.000048566000000,0.000223973000000,0.000225553000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000223973000000,0.000928762000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000400565000000,0.000048170000000,0.000263084000000,0.000188813000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000223578000000,0.000884910000000 +0.000048566000000,0.000046590000000,0.000206986000000,0.000358294000000,0.000048171000000,0.000224763000000,0.000188022000000,0.000390689000000,0.000046196000000,0.000056467000000,0.000262293000000,0.000864367000000 +0.000048565000000,0.000046195000000,0.000161948000000,0.000361454000000,0.000053306000000,0.000227528000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000875034000000 +0.000082146000000,0.000046195000000,0.000164713000000,0.000362244000000,0.000048170000000,0.000224763000000,0.000189602000000,0.000390689000000,0.000045800000000,0.000056466000000,0.000227528000000,0.000905849000000 +0.000063973000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048170000000,0.000273356000000,0.000225948000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000882145000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000395034000000,0.000048171000000,0.000223182000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000868318000000 +0.000048565000000,0.000046195000000,0.000166294000000,0.000362244000000,0.000053701000000,0.000229504000000,0.000190787000000,0.000438491000000,0.000062788000000,0.000056466000000,0.000223183000000,0.000879380000000 +0.000048171000000,0.000046195000000,0.000201454000000,0.000357899000000,0.000048566000000,0.000228319000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000228319000000,0.000905454000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000503281000000,0.000048566000000,0.000264269000000,0.000189603000000,0.000356319000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000846984000000 +0.000048170000000,0.000046195000000,0.000161948000000,0.000362640000000,0.000048566000000,0.000227134000000,0.000223973000000,0.000393059000000,0.000046195000000,0.000056861000000,0.000261899000000,0.000830392000000 +0.000051331000000,0.000046985000000,0.000161553000000,0.000357898000000,0.000053701000000,0.000229109000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000092417000000,0.000223183000000,0.000854491000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000362639000000,0.000048565000000,0.000225553000000,0.000189602000000,0.000425454000000,0.000045800000000,0.000056467000000,0.000225949000000,0.000994738000000 +0.000048170000000,0.000046591000000,0.000201850000000,0.000368960000000,0.000048566000000,0.000267035000000,0.000188023000000,0.000357503000000,0.000046196000000,0.000056862000000,0.000227133000000,0.000867923000000 +0.000048171000000,0.000046196000000,0.000165108000000,0.000414392000000,0.000048566000000,0.000224368000000,0.000188417000000,0.000379232000000,0.000046195000000,0.000056466000000,0.000261109000000,0.000892812000000 +0.000048170000000,0.000046196000000,0.000161948000000,0.000362639000000,0.000053701000000,0.000225553000000,0.000225948000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000226344000000,0.000871479000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000359083000000,0.000052121000000,0.000224763000000,0.000189602000000,0.000355133000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000867133000000 +0.000048565000000,0.000047775000000,0.000161553000000,0.000358688000000,0.000048171000000,0.000261504000000,0.000189603000000,0.000390688000000,0.000046195000000,0.000062392000000,0.000225158000000,0.000826837000000 +0.000048566000000,0.000046590000000,0.000167874000000,0.000361850000000,0.000048170000000,0.000224368000000,0.000189603000000,0.000361455000000,0.000045800000000,0.000056467000000,0.000272566000000,0.000835923000000 +0.000048565000000,0.000046590000000,0.000194343000000,0.000394639000000,0.000055282000000,0.000227528000000,0.000189207000000,0.000360269000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000864368000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000358689000000,0.000048170000000,0.000225158000000,0.000225554000000,0.000390294000000,0.000045801000000,0.000056466000000,0.000223578000000,0.000920071000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000048171000000,0.000261504000000,0.000188022000000,0.000355923000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000872663000000 +0.000101109000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000048170000000,0.000235429000000,0.000188418000000,0.000357109000000,0.000045800000000,0.000056862000000,0.000263874000000,0.000870293000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000055282000000,0.000224763000000,0.000188022000000,0.000391874000000,0.000046195000000,0.000056862000000,0.000225158000000,0.000867923000000 +0.000048171000000,0.000046195000000,0.000302590000000,0.000433750000000,0.000048171000000,0.000237405000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000227528000000,0.000870688000000 +0.000048170000000,0.000046195000000,0.000183281000000,0.000371726000000,0.000048170000000,0.000347627000000,0.000239775000000,0.000390689000000,0.000099529000000,0.000056467000000,0.000255183000000,0.000966293000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048171000000,0.000225948000000,0.000188418000000,0.000354738000000,0.000105059000000,0.000163528000000,0.000225553000000,0.000930738000000 +0.000048565000000,0.000046196000000,0.000162738000000,0.000359084000000,0.000053306000000,0.000224368000000,0.000188417000000,0.000357899000000,0.000065553000000,0.000178541000000,0.000223578000000,0.000869899000000 +0.000048171000000,0.000046196000000,0.000242146000000,0.000358294000000,0.000048170000000,0.000226343000000,0.000189603000000,0.000390689000000,0.000048566000000,0.000177750000000,0.000225158000000,0.000919676000000 +0.000047775000000,0.000046196000000,0.000183281000000,0.000358294000000,0.000048170000000,0.000238985000000,0.000209751000000,0.000354343000000,0.000061207000000,0.000108615000000,0.000243726000000,0.000869108000000 +0.000049356000000,0.000083331000000,0.000167479000000,0.000777849000000,0.000048171000000,0.000225158000000,0.000205800000000,0.000354738000000,0.000046196000000,0.000060023000000,0.000226738000000,0.000970639000000 +0.000048565000000,0.000149306000000,0.000164714000000,0.000363034000000,0.000054886000000,0.000227133000000,0.000189603000000,0.000390689000000,0.000045800000000,0.000072665000000,0.000225158000000,0.000912960000000 +0.000048566000000,0.000154047000000,0.000164713000000,0.000357899000000,0.000048171000000,0.000223183000000,0.000189207000000,0.000408862000000,0.000045800000000,0.000056467000000,0.000239380000000,0.000914145000000 +0.000048171000000,0.000119282000000,0.000165109000000,0.000359479000000,0.000048565000000,0.000289948000000,0.000188417000000,0.000483528000000,0.000046195000000,0.000075825000000,0.000263874000000,0.000944170000000 +0.000048170000000,0.000097553000000,0.000215281000000,0.000358689000000,0.000050146000000,0.000224763000000,0.000242541000000,0.000389503000000,0.000046195000000,0.000101108000000,0.000312466000000,0.000912960000000 +0.000048566000000,0.000050541000000,0.000162739000000,0.000358294000000,0.000053306000000,0.000224763000000,0.000203825000000,0.000354739000000,0.000045800000000,0.000058047000000,0.000222787000000,0.000912565000000 +0.000048170000000,0.000050936000000,0.000165108000000,0.000358688000000,0.000048566000000,0.000264269000000,0.000189603000000,0.000376071000000,0.000045800000000,0.000057652000000,0.000276516000000,0.000921651000000 +0.000048171000000,0.000060417000000,0.000165899000000,0.000409256000000,0.000048566000000,0.000223973000000,0.000189603000000,0.000354343000000,0.000046195000000,0.000058047000000,0.000259923000000,0.000924812000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000360665000000,0.000048565000000,0.000226343000000,0.000188417000000,0.000390688000000,0.000046196000000,0.000056467000000,0.000225553000000,0.000918886000000 +0.000089652000000,0.000046195000000,0.000199084000000,0.000365799000000,0.000053306000000,0.000225553000000,0.000232270000000,0.000357109000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000833947000000 +0.000048566000000,0.000046985000000,0.000164714000000,0.000358293000000,0.000048171000000,0.000306936000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000224368000000,0.001059133000000 +0.000048960000000,0.000046195000000,0.000166294000000,0.000358294000000,0.000048171000000,0.000224763000000,0.000189602000000,0.000391479000000,0.000081751000000,0.000056467000000,0.000319182000000,0.000865947000000 +0.000048171000000,0.000046195000000,0.000161553000000,0.000358689000000,0.000048170000000,0.000235430000000,0.000188418000000,0.000354739000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000882145000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000358294000000,0.000053701000000,0.000227924000000,0.000189602000000,0.000372911000000,0.000045800000000,0.000056071000000,0.000234244000000,0.000973009000000 +0.000052121000000,0.000046195000000,0.000165899000000,0.000357899000000,0.000048171000000,0.000260714000000,0.000236219000000,0.000371331000000,0.000046195000000,0.000057257000000,0.000258738000000,0.000870688000000 +0.000048566000000,0.000046591000000,0.000231084000000,0.000358689000000,0.000048171000000,0.000226738000000,0.000188417000000,0.000355923000000,0.000046195000000,0.000056072000000,0.000240170000000,0.000854095000000 +0.000048170000000,0.000046196000000,0.000161553000000,0.000357898000000,0.000048170000000,0.000296270000000,0.000188812000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000222787000000,0.000833947000000 +0.000067134000000,0.000046195000000,0.000164713000000,0.000361849000000,0.000054887000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000114146000000,0.000225158000000,0.000828416000000 +0.000065158000000,0.000046195000000,0.000164714000000,0.000361059000000,0.000048170000000,0.000297454000000,0.000189603000000,0.000354739000000,0.000046196000000,0.000072664000000,0.000296664000000,0.000934688000000 +0.000062788000000,0.000046195000000,0.000164713000000,0.000358294000000,0.000048171000000,0.000223182000000,0.000225948000000,0.000390293000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000909010000000 +0.000048566000000,0.000046195000000,0.000201455000000,0.000358689000000,0.000048565000000,0.000228318000000,0.000189603000000,0.000362245000000,0.000045800000000,0.000056862000000,0.000223973000000,0.000877405000000 +0.000048170000000,0.000046590000000,0.000166294000000,0.000358294000000,0.000055282000000,0.000262294000000,0.000189603000000,0.000384763000000,0.000046195000000,0.000056466000000,0.000223183000000,0.000864367000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000361059000000,0.000048566000000,0.000223577000000,0.000189207000000,0.000718195000000,0.000045800000000,0.000056467000000,0.000261898000000,0.000870294000000 +0.000048170000000,0.000046590000000,0.000166294000000,0.000370540000000,0.000048565000000,0.000227133000000,0.000188418000000,0.000389898000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000999083000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000363824000000,0.000048566000000,0.000224763000000,0.000280467000000,0.000357504000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000867133000000 +0.000084516000000,0.000046195000000,0.000237800000000,0.000357899000000,0.000053701000000,0.000296665000000,0.000188022000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000225158000000,0.000867133000000 +0.000048565000000,0.000049751000000,0.000165899000000,0.000395429000000,0.000048171000000,0.000225158000000,0.000188418000000,0.000425850000000,0.000046196000000,0.000056466000000,0.000388318000000,0.000873059000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000362244000000,0.000048170000000,0.000225158000000,0.000189207000000,0.000356318000000,0.000046195000000,0.000056467000000,0.000450343000000,0.000878195000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000395034000000,0.000048171000000,0.000223973000000,0.000259133000000,0.000425454000000,0.000046195000000,0.000056467000000,0.000225158000000,0.000990392000000 +0.000048566000000,0.000047775000000,0.000161553000000,0.000371725000000,0.000053701000000,0.000273355000000,0.000188417000000,0.000356713000000,0.000065158000000,0.000056466000000,0.000261503000000,0.000831182000000 +0.000048565000000,0.000046195000000,0.000201455000000,0.000358689000000,0.000048171000000,0.000226738000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000918886000000 +0.000048566000000,0.000048566000000,0.000166293000000,0.000361850000000,0.000048170000000,0.000225948000000,0.000191183000000,0.000425850000000,0.000046195000000,0.000092418000000,0.000226738000000,0.000928762000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000358689000000,0.000048171000000,0.000224368000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000057652000000,0.000226343000000,0.000871478000000 +0.000048566000000,0.000046590000000,0.000161553000000,0.000366195000000,0.000053306000000,0.000298244000000,0.000225948000000,0.000356318000000,0.000045800000000,0.000056862000000,0.000309307000000,0.000912170000000 +0.000048565000000,0.000046590000000,0.000164713000000,0.000359084000000,0.000048566000000,0.000225553000000,0.000189603000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000908614000000 +0.000048566000000,0.000046590000000,0.000164714000000,0.000361059000000,0.000048565000000,0.000225158000000,0.000188417000000,0.000354738000000,0.000046196000000,0.000056467000000,0.000225553000000,0.001013305000000 +0.000048170000000,0.000046195000000,0.000360664000000,0.000359479000000,0.000048566000000,0.000223973000000,0.000188417000000,0.000457059000000,0.000045800000000,0.000056862000000,0.000248466000000,0.000887676000000 +0.000048171000000,0.000046195000000,0.000498146000000,0.000362244000000,0.000053306000000,0.000261503000000,0.000188022000000,0.000364219000000,0.000045800000000,0.000056862000000,0.000226739000000,0.000875034000000 +0.000048170000000,0.000045800000000,0.000232664000000,0.000358294000000,0.000048170000000,0.000227133000000,0.000239380000000,0.000354739000000,0.000046195000000,0.000056466000000,0.000237405000000,0.000867528000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000360664000000,0.000050540000000,0.000226738000000,0.000189602000000,0.000390293000000,0.000046195000000,0.000056467000000,0.000235429000000,0.001123923000000 +0.000048170000000,0.000046590000000,0.000165899000000,0.000362640000000,0.000098739000000,0.000224763000000,0.000188417000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000296269000000,0.000919676000000 +0.000048170000000,0.000046590000000,0.000162738000000,0.000357899000000,0.000092812000000,0.000314837000000,0.000191183000000,0.000391479000000,0.000045800000000,0.000056466000000,0.000225553000000,0.000913751000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000365009000000,0.000051331000000,0.000224763000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000224763000000,0.000920861000000 +0.000084121000000,0.000046590000000,0.000164714000000,0.000360269000000,0.000051331000000,0.000225158000000,0.000225948000000,0.000354343000000,0.000046591000000,0.000056467000000,0.000225158000000,0.000932317000000 +0.000051331000000,0.000046590000000,0.000181701000000,0.000359479000000,0.000063578000000,0.000222788000000,0.000188418000000,0.000394245000000,0.000045800000000,0.000056467000000,0.000261109000000,0.000885306000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000362639000000,0.000053702000000,0.000261109000000,0.000189997000000,0.000354343000000,0.000046195000000,0.000092418000000,0.000224763000000,0.000913355000000 +0.000048566000000,0.000046196000000,0.000165108000000,0.000362640000000,0.000048565000000,0.000225158000000,0.000189602000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000909800000000 +0.000048565000000,0.000046196000000,0.000161553000000,0.000358689000000,0.000048566000000,0.000224763000000,0.000188418000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000840664000000 +0.000048171000000,0.000046591000000,0.000164714000000,0.000365800000000,0.000048565000000,0.000225158000000,0.000224368000000,0.000354738000000,0.000082146000000,0.000056467000000,0.000273751000000,0.000933503000000 +0.000048170000000,0.000046986000000,0.000241750000000,0.000360664000000,0.000053702000000,0.000297850000000,0.000189998000000,0.000391084000000,0.000045800000000,0.000056072000000,0.000225158000000,0.000905453000000 +0.000048171000000,0.000047775000000,0.000164714000000,0.000363824000000,0.000048565000000,0.000226739000000,0.000189997000000,0.000354343000000,0.000045800000000,0.000057256000000,0.000223183000000,0.000902293000000 +0.000048170000000,0.000046195000000,0.000164318000000,0.000358293000000,0.000048566000000,0.000225158000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000226343000000,0.001321059000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000224368000000,0.000189603000000,0.000404121000000,0.000045801000000,0.000056467000000,0.000261109000000,0.000838293000000 +0.000048565000000,0.000046195000000,0.000162343000000,0.000501701000000,0.000053702000000,0.000224763000000,0.000304960000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000841849000000 +0.000048171000000,0.000046195000000,0.000201454000000,0.000357899000000,0.000048565000000,0.000229504000000,0.000206195000000,0.000354738000000,0.000045800000000,0.000058047000000,0.000229109000000,0.000873454000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000363035000000,0.000050541000000,0.000227133000000,0.000188022000000,0.000483133000000,0.000046195000000,0.000056467000000,0.000226344000000,0.000965898000000 +0.000052121000000,0.000046590000000,0.000164714000000,0.000361059000000,0.000048566000000,0.000247676000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000340121000000,0.000871478000000 +0.000048566000000,0.000046591000000,0.000165108000000,0.000390294000000,0.000054096000000,0.000368171000000,0.000259133000000,0.000390293000000,0.000045800000000,0.000075430000000,0.000319183000000,0.000872268000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000361454000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000355528000000,0.000045800000000,0.000072269000000,0.000316022000000,0.000873453000000 +0.000048171000000,0.000046196000000,0.000167874000000,0.000360664000000,0.000048565000000,0.000225158000000,0.000189207000000,0.000358689000000,0.000046591000000,0.000095182000000,0.000258738000000,0.000873059000000 +0.000048566000000,0.000046591000000,0.000198294000000,0.000360664000000,0.000048566000000,0.000260319000000,0.000188022000000,0.000425059000000,0.000045800000000,0.000056467000000,0.000223578000000,0.000927183000000 +0.000124022000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000053306000000,0.000225158000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000225948000000,0.000915725000000 +0.000061998000000,0.000046590000000,0.000165109000000,0.000359084000000,0.000048171000000,0.000225553000000,0.000225553000000,0.000402541000000,0.000045800000000,0.000056862000000,0.000226738000000,0.000871479000000 +0.000048565000000,0.000066738000000,0.000164714000000,0.000407677000000,0.000048170000000,0.000225158000000,0.000190788000000,0.000354738000000,0.000046195000000,0.000057257000000,0.000261898000000,0.000880565000000 +0.000048566000000,0.000062788000000,0.000165109000000,0.000408071000000,0.000048171000000,0.000260714000000,0.000189602000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000223973000000,0.000882935000000 +0.000048565000000,0.000060812000000,0.000237010000000,0.000358688000000,0.000054886000000,0.000224763000000,0.000189602000000,0.000427034000000,0.000045800000000,0.000056467000000,0.000226738000000,0.000877009000000 +0.000048566000000,0.000048170000000,0.000221998000000,0.000358689000000,0.000048171000000,0.000228318000000,0.000189208000000,0.000356318000000,0.000065158000000,0.000056467000000,0.000224763000000,0.000840269000000 +0.000048565000000,0.000066739000000,0.000179726000000,0.000360664000000,0.000048170000000,0.000280467000000,0.000240170000000,0.000354738000000,0.000046590000000,0.000056466000000,0.000266639000000,0.000923232000000 +0.000048566000000,0.000062787000000,0.000165108000000,0.000359479000000,0.000048171000000,0.000242146000000,0.000188023000000,0.000371726000000,0.000045800000000,0.000056467000000,0.000225948000000,0.000866343000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000361060000000,0.000054886000000,0.000225948000000,0.000188417000000,0.000354738000000,0.000046196000000,0.000056862000000,0.000223973000000,0.000983281000000 +0.000048566000000,0.000046195000000,0.000201059000000,0.000361454000000,0.000048171000000,0.000225158000000,0.000189603000000,0.000428220000000,0.000045801000000,0.000056467000000,0.000222788000000,0.000902688000000 +0.000048170000000,0.000046591000000,0.000167874000000,0.000358689000000,0.000048170000000,0.000225158000000,0.000225553000000,0.000371330000000,0.000046195000000,0.000056467000000,0.000298244000000,0.000918096000000 +0.000052121000000,0.000046196000000,0.000161553000000,0.000357899000000,0.000048171000000,0.000291528000000,0.000202244000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000879380000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000054887000000,0.000225158000000,0.000190788000000,0.000427034000000,0.000045800000000,0.000077800000000,0.000226343000000,0.000882935000000 +0.000048170000000,0.000046590000000,0.000164713000000,0.000359084000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225949000000,0.000871479000000 +0.000048170000000,0.000046590000000,0.000183677000000,0.000367776000000,0.000048566000000,0.000270985000000,0.000189602000000,0.000517503000000,0.000046195000000,0.000056861000000,0.000297059000000,0.000916911000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000048566000000,0.000224367000000,0.000272960000000,0.000658540000000,0.000046195000000,0.000056467000000,0.000226738000000,0.000868318000000 +0.000067923000000,0.000046195000000,0.000167874000000,0.000357898000000,0.000053306000000,0.000225158000000,0.000189603000000,0.000443232000000,0.000045801000000,0.000056467000000,0.000225158000000,0.000875429000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000362640000000,0.000048565000000,0.000226738000000,0.000189603000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000275725000000,0.000835923000000 +0.000048170000000,0.000046195000000,0.000167874000000,0.000467331000000,0.000048566000000,0.000263084000000,0.000188812000000,0.000391874000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000869503000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000393849000000,0.000048565000000,0.000248072000000,0.000188418000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000891231000000 +0.000048170000000,0.000046195000000,0.000238195000000,0.000358294000000,0.000055282000000,0.000223973000000,0.000265454000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000920861000000 +0.000048566000000,0.000046590000000,0.000161553000000,0.000362244000000,0.000048566000000,0.000228714000000,0.000189208000000,0.000440862000000,0.000046195000000,0.000056862000000,0.000262294000000,0.000910194000000 +0.000048171000000,0.000046590000000,0.000167874000000,0.000360665000000,0.000048170000000,0.000312862000000,0.000189603000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000223973000000,0.000871083000000 +0.000048565000000,0.000046195000000,0.000162343000000,0.000404911000000,0.000048171000000,0.000224368000000,0.000189207000000,0.000391084000000,0.000045801000000,0.000056467000000,0.000225553000000,0.000918095000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358293000000,0.000053701000000,0.000224763000000,0.000209356000000,0.000358294000000,0.000081750000000,0.000056467000000,0.000224762000000,0.000870293000000 +0.000048565000000,0.000046986000000,0.000211725000000,0.000357899000000,0.000048566000000,0.000224763000000,0.000251627000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000281257000000,0.000909010000000 +0.000048171000000,0.000046591000000,0.000165109000000,0.000358689000000,0.000048565000000,0.000299034000000,0.000219232000000,0.000400566000000,0.000046196000000,0.000056072000000,0.000452714000000,0.001390984000000 +0.000048565000000,0.000046591000000,0.000165899000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000188417000000,0.000362244000000,0.000045800000000,0.000092418000000,0.000250047000000,0.000920071000000 +0.000047776000000,0.000046195000000,0.000165108000000,0.000358294000000,0.000053701000000,0.000224763000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000270985000000,0.000916911000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000427034000000,0.000050146000000,0.000227134000000,0.000279677000000,0.000436120000000,0.000046195000000,0.000056466000000,0.000224763000000,0.000886096000000 +0.000048566000000,0.000046590000000,0.000166294000000,0.000358294000000,0.000048170000000,0.000274936000000,0.000189602000000,0.000354739000000,0.000046590000000,0.000058047000000,0.000236219000000,0.000936269000000 +0.000048170000000,0.000046590000000,0.000181306000000,0.000359084000000,0.000048171000000,0.000227133000000,0.000188022000000,0.000390293000000,0.000045800000000,0.000056466000000,0.000225553000000,0.000866738000000 +0.000048171000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000054887000000,0.000225158000000,0.000209356000000,0.000354343000000,0.000045800000000,0.000056467000000,0.000262293000000,0.000907824000000 +0.000051331000000,0.000046195000000,0.000162344000000,0.000358294000000,0.000048170000000,0.000227133000000,0.000296269000000,0.000354738000000,0.000045800000000,0.000056072000000,0.000224763000000,0.000877009000000 +0.000084516000000,0.000046590000000,0.000165109000000,0.000394639000000,0.000048171000000,0.000261504000000,0.000190788000000,0.000391084000000,0.000046196000000,0.000056466000000,0.000225553000000,0.001080466000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048170000000,0.000229504000000,0.000189208000000,0.000362244000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000872663000000 +0.000048171000000,0.000046195000000,0.000249651000000,0.000358294000000,0.000053702000000,0.000224367000000,0.000189602000000,0.000354739000000,0.000045800000000,0.000056072000000,0.000261899000000,0.000866343000000 +0.000048170000000,0.000046590000000,0.000165109000000,0.000358689000000,0.000048565000000,0.000224368000000,0.000189208000000,0.000430985000000,0.000045800000000,0.000056466000000,0.000224763000000,0.000877009000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000395034000000,0.000048566000000,0.000269010000000,0.000258738000000,0.000357503000000,0.000046195000000,0.000056467000000,0.000223973000000,0.000892811000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000422689000000,0.000048565000000,0.000225158000000,0.000188417000000,0.000400961000000,0.000046195000000,0.000057652000000,0.000225948000000,0.000871478000000 +0.000048170000000,0.000046195000000,0.000161948000000,0.000358294000000,0.000053702000000,0.000227923000000,0.000188022000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000261898000000,0.000871873000000 +0.000048566000000,0.000046196000000,0.000237010000000,0.000361059000000,0.000048170000000,0.000224763000000,0.000189602000000,0.000354343000000,0.000045801000000,0.000097158000000,0.000227133000000,0.000867923000000 +0.000048170000000,0.000046196000000,0.000164714000000,0.000361455000000,0.000048171000000,0.000295084000000,0.000189603000000,0.000390689000000,0.000082540000000,0.000062393000000,0.000225948000000,0.000906244000000 +0.000048566000000,0.000046196000000,0.000166294000000,0.000357898000000,0.000048170000000,0.000223577000000,0.000481553000000,0.000417948000000,0.000045800000000,0.000057257000000,0.000227528000000,0.000834343000000 +0.000048170000000,0.000046986000000,0.000165899000000,0.000358293000000,0.000053306000000,0.000229899000000,0.000212121000000,0.000438097000000,0.000045801000000,0.000061998000000,0.000259528000000,0.000869108000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000423478000000,0.000048566000000,0.000264665000000,0.000189208000000,0.000355923000000,0.000046195000000,0.000056467000000,0.000263874000000,0.000865157000000 +0.000048170000000,0.000046195000000,0.000200665000000,0.000361849000000,0.000048566000000,0.000228319000000,0.000260319000000,0.000356714000000,0.000046195000000,0.000056467000000,0.000267429000000,0.000872269000000 +0.000048566000000,0.000046590000000,0.000161948000000,0.000359084000000,0.000050540000000,0.000227529000000,0.000188812000000,0.000390688000000,0.000045800000000,0.000056862000000,0.000496170000000,0.000879379000000 +0.000051331000000,0.000046590000000,0.000161553000000,0.000361059000000,0.000053307000000,0.000228713000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000270985000000,0.000871873000000 +0.000048565000000,0.000046590000000,0.000164714000000,0.000358294000000,0.000048170000000,0.000259923000000,0.000189998000000,0.000391084000000,0.000045800000000,0.000056467000000,0.000258738000000,0.000870688000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000423874000000,0.000048171000000,0.000239380000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056862000000,0.000263479000000,0.000867133000000 +0.000048170000000,0.000046195000000,0.000164713000000,0.000363035000000,0.000048565000000,0.000223972000000,0.000224763000000,0.000354738000000,0.000046196000000,0.000056072000000,0.000224763000000,0.000867133000000 +0.000083331000000,0.000046195000000,0.000355924000000,0.000359479000000,0.000053702000000,0.000225158000000,0.000189997000000,0.000509997000000,0.000045800000000,0.000056862000000,0.000225948000000,0.000991577000000 +0.000061998000000,0.000046195000000,0.000445997000000,0.000361059000000,0.000048565000000,0.000260713000000,0.000189603000000,0.000373306000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000866343000000 +0.000048170000000,0.000047776000000,0.000222393000000,0.000361454000000,0.000048566000000,0.000225553000000,0.000189603000000,0.000390689000000,0.000046195000000,0.000056467000000,0.000261108000000,0.000879775000000 +0.000048171000000,0.000046591000000,0.000198689000000,0.000398195000000,0.000048565000000,0.000224763000000,0.000189602000000,0.000362639000000,0.000046195000000,0.000056861000000,0.000236220000000,0.000870688000000 +0.000048565000000,0.000046591000000,0.000164714000000,0.000358294000000,0.000054887000000,0.000227923000000,0.000225158000000,0.000354343000000,0.000046195000000,0.000073849000000,0.000224368000000,0.000829602000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000357899000000,0.000048565000000,0.000342886000000,0.000189207000000,0.000395035000000,0.000045800000000,0.000056467000000,0.000223973000000,0.000829601000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000048171000000,0.000279282000000,0.000188418000000,0.000354738000000,0.000046196000000,0.000062393000000,0.000275331000000,0.000833552000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000362639000000,0.000048170000000,0.000235034000000,0.000188417000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000227133000000,0.000873453000000 +0.000048565000000,0.000046195000000,0.000200664000000,0.000414788000000,0.000055282000000,0.000224763000000,0.000188417000000,0.000425850000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000872268000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000739528000000,0.000048566000000,0.000310097000000,0.000224368000000,0.000354738000000,0.000082146000000,0.000056467000000,0.000227134000000,0.000983281000000 +0.000048566000000,0.000046195000000,0.000165108000000,0.000358688000000,0.000048565000000,0.000225948000000,0.000189208000000,0.000390689000000,0.000046195000000,0.000056466000000,0.000315232000000,0.000888466000000 +0.000048565000000,0.000046985000000,0.000165109000000,0.000358293000000,0.000048566000000,0.000225948000000,0.000188417000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000907429000000 +0.000048566000000,0.000046590000000,0.000162738000000,0.000358294000000,0.000053306000000,0.000244516000000,0.000188418000000,0.000355133000000,0.000046195000000,0.000056467000000,0.000223578000000,0.000920071000000 +0.000048170000000,0.000046590000000,0.000207380000000,0.000363035000000,0.000050146000000,0.000226738000000,0.000189602000000,0.000389898000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000919676000000 +0.000048171000000,0.000046195000000,0.000167875000000,0.000358293000000,0.000048565000000,0.000222787000000,0.000207775000000,0.000354343000000,0.000048961000000,0.000056467000000,0.000261503000000,0.000878985000000 +0.000048960000000,0.000048961000000,0.000167874000000,0.000401355000000,0.000048171000000,0.000225158000000,0.000189208000000,0.000354738000000,0.000048565000000,0.000056467000000,0.000226738000000,0.000938639000000 +0.000048171000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000053306000000,0.000263084000000,0.000189602000000,0.000427034000000,0.000059233000000,0.000056467000000,0.000225158000000,0.000828812000000 +0.000084516000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000048171000000,0.000223578000000,0.000189207000000,0.000354739000000,0.000045800000000,0.000056862000000,0.000239380000000,0.000830787000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000048170000000,0.000224763000000,0.000224763000000,0.000390293000000,0.000046195000000,0.000127577000000,0.000316022000000,0.000902689000000 +0.000048566000000,0.000046590000000,0.000201454000000,0.000362244000000,0.000048171000000,0.000224763000000,0.000188418000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000926392000000 +0.000048565000000,0.000046590000000,0.000163134000000,0.000358689000000,0.000053701000000,0.000261108000000,0.000188417000000,0.000379627000000,0.000046195000000,0.000056467000000,0.000222788000000,0.000922047000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000395034000000,0.000048171000000,0.000227923000000,0.000189998000000,0.000406886000000,0.000045800000000,0.000056467000000,0.000281257000000,0.000870293000000 +0.000048565000000,0.000046590000000,0.000214491000000,0.000358293000000,0.000048565000000,0.000224368000000,0.000189603000000,0.000357899000000,0.000046196000000,0.000056862000000,0.000237800000000,0.000916910000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000395035000000,0.000048566000000,0.000226739000000,0.000259528000000,0.000391874000000,0.000045800000000,0.000056467000000,0.000226343000000,0.000870688000000 +0.000048170000000,0.000046195000000,0.000209750000000,0.000358294000000,0.000053701000000,0.000261109000000,0.000191182000000,0.000357504000000,0.000045800000000,0.000056467000000,0.000225949000000,0.001370046000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000362639000000,0.000048566000000,0.000235430000000,0.000189207000000,0.000412417000000,0.000045800000000,0.000056467000000,0.000260714000000,0.000875824000000 +0.000048960000000,0.000046195000000,0.000166294000000,0.000359084000000,0.000048565000000,0.000225158000000,0.000189603000000,0.000436911000000,0.000082146000000,0.000056467000000,0.000226344000000,0.000931528000000 +0.000048566000000,0.000046195000000,0.000161553000000,0.000358689000000,0.000048566000000,0.000235035000000,0.000188417000000,0.000355133000000,0.000046195000000,0.000056862000000,0.000223578000000,0.000904268000000 +0.000048170000000,0.000046196000000,0.000164713000000,0.000358294000000,0.000054491000000,0.000264270000000,0.000226344000000,0.000374887000000,0.000045800000000,0.000056072000000,0.000234244000000,0.000870293000000 +0.000052121000000,0.000046196000000,0.000202245000000,0.000357898000000,0.000048171000000,0.000224368000000,0.000189602000000,0.000355924000000,0.000045800000000,0.000056071000000,0.000260713000000,0.000900318000000 +0.000048171000000,0.000046196000000,0.000165108000000,0.000371330000000,0.000048170000000,0.000226738000000,0.000188417000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000222392000000,0.000884516000000 +0.000048565000000,0.000083330000000,0.000161948000000,0.000407282000000,0.000048170000000,0.000225158000000,0.000188418000000,0.000390294000000,0.000045800000000,0.000056467000000,0.000222788000000,0.000871874000000 +0.000048566000000,0.000046196000000,0.000164714000000,0.000358294000000,0.000053307000000,0.000261109000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000102689000000,0.000224763000000,0.000903083000000 +0.000048170000000,0.000046196000000,0.000164713000000,0.000358293000000,0.000048170000000,0.000225949000000,0.000225159000000,0.000354343000000,0.000045801000000,0.000056467000000,0.000261504000000,0.000866738000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000358688000000,0.000048566000000,0.000223183000000,0.000189207000000,0.000390294000000,0.000046195000000,0.000056071000000,0.000225158000000,0.000893207000000 +0.000084517000000,0.000046195000000,0.000201059000000,0.000358293000000,0.000048565000000,0.000228319000000,0.000189603000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000223973000000,0.000850145000000 +0.000048565000000,0.000046195000000,0.000165899000000,0.000357899000000,0.000053307000000,0.000260318000000,0.000242146000000,0.000372911000000,0.000045800000000,0.000056467000000,0.000223183000000,0.000882541000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000363430000000,0.000048565000000,0.000223972000000,0.000189603000000,0.000371330000000,0.000045800000000,0.000056466000000,0.000262293000000,0.000978145000000 +0.000048170000000,0.000046195000000,0.000166294000000,0.000358293000000,0.000048566000000,0.000226343000000,0.000270985000000,0.000357898000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000900713000000 +0.000048566000000,0.000046195000000,0.000165899000000,0.000363429000000,0.000048170000000,0.000224368000000,0.000199874000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000916515000000 +0.000048171000000,0.000046195000000,0.000204220000000,0.000393059000000,0.000053701000000,0.000262294000000,0.000199479000000,0.000354738000000,0.000045801000000,0.000056862000000,0.000225158000000,0.000892022000000 +0.000048565000000,0.000049356000000,0.000166293000000,0.000358294000000,0.000048170000000,0.000225158000000,0.000242936000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000260318000000,0.000873848000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000362640000000,0.000048171000000,0.000225158000000,0.000221208000000,0.000392664000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000885701000000 +0.000048565000000,0.000046196000000,0.000165109000000,0.000361454000000,0.000048565000000,0.000223973000000,0.000188417000000,0.000365405000000,0.000045800000000,0.000056467000000,0.000224763000000,0.000869108000000 +0.000048171000000,0.000048170000000,0.000161553000000,0.000357899000000,0.000053306000000,0.000323529000000,0.000188417000000,0.000394244000000,0.000045800000000,0.000056467000000,0.000335380000000,0.000875034000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000048171000000,0.000275331000000,0.000189603000000,0.000354738000000,0.000088072000000,0.000056466000000,0.000259529000000,0.000840269000000 +0.000048566000000,0.000048170000000,0.000218442000000,0.000358689000000,0.000048565000000,0.000239775000000,0.000191183000000,0.000355924000000,0.000046195000000,0.000092417000000,0.000226343000000,0.000837899000000 +0.000048170000000,0.000046195000000,0.000165109000000,0.000367775000000,0.000048170000000,0.000224367000000,0.000225158000000,0.000455874000000,0.000045800000000,0.000056467000000,0.000226739000000,0.000871874000000 +0.000048566000000,0.000046591000000,0.000161949000000,0.000560960000000,0.000055677000000,0.000263084000000,0.000189207000000,0.000354343000000,0.000045800000000,0.000056862000000,0.000225948000000,0.000871479000000 +0.000048170000000,0.000047381000000,0.000164714000000,0.000358689000000,0.000048170000000,0.000225948000000,0.000189207000000,0.000354738000000,0.000046195000000,0.000056861000000,0.000374491000000,0.000869108000000 +0.000048171000000,0.000046590000000,0.000164714000000,0.000358689000000,0.000048171000000,0.000225158000000,0.000188418000000,0.000391084000000,0.000046196000000,0.000056862000000,0.000240171000000,0.000867528000000 +0.000048565000000,0.000046195000000,0.000246886000000,0.000359874000000,0.000048170000000,0.000224368000000,0.000188022000000,0.000360664000000,0.000045800000000,0.000056467000000,0.000228319000000,0.000919281000000 +0.000048566000000,0.000046195000000,0.000164713000000,0.000358689000000,0.000053307000000,0.000261108000000,0.000241751000000,0.000480763000000,0.000046195000000,0.000056862000000,0.000309306000000,0.000873849000000 +0.000076220000000,0.000046195000000,0.000165109000000,0.000358689000000,0.000048565000000,0.000227133000000,0.000189603000000,0.000411232000000,0.000045800000000,0.000056072000000,0.000237405000000,0.000880960000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358689000000,0.000048171000000,0.000227133000000,0.000189602000000,0.000373306000000,0.000046195000000,0.000056071000000,0.000235824000000,0.000871084000000 +0.000048565000000,0.000046195000000,0.000165899000000,0.000413207000000,0.000048565000000,0.000224763000000,0.000188417000000,0.000370936000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000874639000000 +0.000048566000000,0.000046195000000,0.000198294000000,0.000415973000000,0.000053307000000,0.000261109000000,0.000210146000000,0.000356318000000,0.000045800000000,0.000056862000000,0.000319578000000,0.001013305000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000360269000000,0.000048170000000,0.000293899000000,0.000240566000000,0.000425454000000,0.000046196000000,0.000056466000000,0.000224763000000,0.000867923000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048171000000,0.000224763000000,0.000189997000000,0.000354738000000,0.000046195000000,0.000056072000000,0.000225158000000,0.000911379000000 +0.000051331000000,0.000046195000000,0.000164714000000,0.000361849000000,0.000048170000000,0.000259134000000,0.000188812000000,0.000358293000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000837898000000 +0.000048171000000,0.000046195000000,0.000165108000000,0.000358688000000,0.000054097000000,0.000224368000000,0.000190393000000,0.000442441000000,0.000046195000000,0.000056862000000,0.000275726000000,0.000871874000000 +0.000048170000000,0.000046195000000,0.000184862000000,0.000358294000000,0.000048170000000,0.000224763000000,0.000225948000000,0.000354343000000,0.000045800000000,0.000092417000000,0.000224763000000,0.000900318000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000358294000000,0.000048171000000,0.000225158000000,0.000188418000000,0.000461405000000,0.000046195000000,0.000056862000000,0.000225948000000,0.000907034000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048170000000,0.000261108000000,0.000188417000000,0.000354738000000,0.000101109000000,0.000056466000000,0.000257553000000,0.000959577000000 +0.000049751000000,0.000046195000000,0.000164713000000,0.000357899000000,0.000053307000000,0.000226343000000,0.000189603000000,0.000357899000000,0.000046195000000,0.000056467000000,0.000241751000000,0.000872664000000 +0.000048566000000,0.000047776000000,0.000164714000000,0.000358293000000,0.000048565000000,0.000226738000000,0.000189208000000,0.000396219000000,0.000046195000000,0.000056467000000,0.000222787000000,0.000918095000000 +0.000048566000000,0.000046590000000,0.000165109000000,0.000358688000000,0.000069504000000,0.000225158000000,0.000225948000000,0.000356318000000,0.000046195000000,0.000056466000000,0.000226343000000,0.000876219000000 +0.000048565000000,0.000046195000000,0.000200665000000,0.000357898000000,0.000064763000000,0.000271381000000,0.000189998000000,0.000425454000000,0.000045800000000,0.000056467000000,0.000267824000000,0.001430490000000 +0.000048566000000,0.000051726000000,0.000162738000000,0.000357899000000,0.000054887000000,0.000225158000000,0.000189602000000,0.000365010000000,0.000046195000000,0.000056467000000,0.000224763000000,0.000872269000000 +0.000048170000000,0.000063182000000,0.000164713000000,0.000365010000000,0.000048170000000,0.000228318000000,0.000189602000000,0.000354343000000,0.000045800000000,0.000056466000000,0.000228713000000,0.000865948000000 +0.000084516000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048171000000,0.000226738000000,0.000188023000000,0.000391479000000,0.000046196000000,0.000056467000000,0.000226343000000,0.000887281000000 +0.000052121000000,0.000046195000000,0.000165109000000,0.000358688000000,0.000160368000000,0.000264269000000,0.000226343000000,0.000354739000000,0.000045800000000,0.000056467000000,0.000628911000000,0.000865157000000 +0.000048566000000,0.000046196000000,0.000201059000000,0.000361059000000,0.000058837000000,0.000225948000000,0.000188023000000,0.000354343000000,0.000046195000000,0.000056466000000,0.000239776000000,0.000925602000000 +0.000048565000000,0.000046196000000,0.000164713000000,0.000357899000000,0.000051331000000,0.000225158000000,0.000188812000000,0.000430985000000,0.000045800000000,0.000056862000000,0.000224368000000,0.000865947000000 +0.000048566000000,0.000046591000000,0.000167479000000,0.000396219000000,0.000051726000000,0.000225553000000,0.000189208000000,0.000354738000000,0.000046195000000,0.000056862000000,0.000309701000000,0.000872664000000 +0.000048565000000,0.000046591000000,0.000161948000000,0.000361455000000,0.000051331000000,0.000260714000000,0.000188417000000,0.000392664000000,0.000046195000000,0.000090442000000,0.000223577000000,0.000923626000000 +0.000054492000000,0.000046195000000,0.000164714000000,0.000361454000000,0.000223973000000,0.000224763000000,0.000240171000000,0.000357503000000,0.000046195000000,0.000056467000000,0.000225948000000,0.000920861000000 +0.000048565000000,0.000046195000000,0.000165108000000,0.000359084000000,0.000089257000000,0.000224763000000,0.000189603000000,0.000393059000000,0.000045801000000,0.000056467000000,0.000246491000000,0.000838294000000 +0.000048566000000,0.000046195000000,0.000246097000000,0.000358294000000,0.000086887000000,0.000225158000000,0.000190787000000,0.000438097000000,0.000046195000000,0.000056862000000,0.000225553000000,0.000830392000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000359084000000,0.000061997000000,0.000261504000000,0.000189207000000,0.000355923000000,0.000046195000000,0.000056467000000,0.000223973000000,0.000882540000000 +0.000048171000000,0.000046195000000,0.000165899000000,0.000358293000000,0.000053306000000,0.000224368000000,0.000189208000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000865947000000 +0.000048960000000,0.000048170000000,0.000165108000000,0.000362639000000,0.000048170000000,0.000228714000000,0.000225158000000,0.000354738000000,0.000092022000000,0.000056467000000,0.000263479000000,0.000878195000000 +0.000048566000000,0.000046195000000,0.000161948000000,0.000394639000000,0.000048171000000,0.000223973000000,0.000188418000000,0.000355529000000,0.000046195000000,0.000056466000000,0.000225158000000,0.000878590000000 +0.000048170000000,0.000046195000000,0.000236615000000,0.000365404000000,0.000048170000000,0.000316812000000,0.000188022000000,0.000651824000000,0.000045801000000,0.000056862000000,0.000225553000000,0.000869108000000 +0.000048171000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000054097000000,0.000264269000000,0.000188418000000,0.000372911000000,0.000046195000000,0.000058442000000,0.000223973000000,0.000868318000000 +0.000048566000000,0.000046196000000,0.000165109000000,0.000361059000000,0.000048565000000,0.000225158000000,0.000189602000000,0.000430589000000,0.000045800000000,0.000056467000000,0.000293108000000,0.000991577000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000358294000000,0.000048566000000,0.000225158000000,0.000225949000000,0.000354738000000,0.000046195000000,0.000057257000000,0.000226343000000,0.000868713000000 +0.000052121000000,0.000047380000000,0.000161948000000,0.000358294000000,0.000048170000000,0.000310096000000,0.000188812000000,0.000391874000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000882145000000 +0.000084122000000,0.000046195000000,0.000212121000000,0.000359084000000,0.000053306000000,0.000225553000000,0.000190788000000,0.000355528000000,0.000046195000000,0.000056467000000,0.000226343000000,0.000919280000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000360269000000,0.000048565000000,0.000225158000000,0.000189208000000,0.000379627000000,0.000045800000000,0.000056071000000,0.000348417000000,0.000917306000000 +0.000048170000000,0.000046195000000,0.000164714000000,0.000358689000000,0.000048171000000,0.000224368000000,0.000189602000000,0.000415578000000,0.000046196000000,0.000073059000000,0.000333405000000,0.000865948000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000048566000000,0.000270590000000,0.000574392000000,0.000354343000000,0.000045800000000,0.000056072000000,0.000226738000000,0.000847380000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000417948000000,0.000053306000000,0.000225158000000,0.000547133000000,0.000354739000000,0.000045800000000,0.000056072000000,0.000345652000000,0.000871478000000 +0.000048171000000,0.000046195000000,0.000258738000000,0.000358689000000,0.000079775000000,0.000227133000000,0.000415578000000,0.000499330000000,0.000046195000000,0.000056466000000,0.000239776000000,0.000870688000000 +0.000048565000000,0.000046195000000,0.000167479000000,0.000359874000000,0.000048171000000,0.000283232000000,0.000220023000000,0.000354739000000,0.000046195000000,0.000056467000000,0.000224368000000,0.000870688000000 +0.000048171000000,0.000046590000000,0.000165109000000,0.000358294000000,0.000048565000000,0.000249257000000,0.000268220000000,0.000411232000000,0.000045800000000,0.000056467000000,0.000223972000000,0.000900713000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000363824000000,0.000053306000000,0.000223973000000,0.000207380000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000261504000000,0.001196219000000 +0.000048171000000,0.000046196000000,0.000161553000000,0.000358688000000,0.000048566000000,0.000228713000000,0.000206985000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000225554000000,0.000865948000000 +0.000048565000000,0.000046196000000,0.000167874000000,0.000498936000000,0.000048566000000,0.000309701000000,0.000207380000000,0.000427825000000,0.000046195000000,0.000056467000000,0.000223578000000,0.000910194000000 +0.000048566000000,0.000046591000000,0.000199084000000,0.000394244000000,0.000048565000000,0.000224763000000,0.000207380000000,0.000354343000000,0.000082146000000,0.000058047000000,0.000225553000000,0.000864762000000 +0.000048565000000,0.000046195000000,0.000165109000000,0.000380022000000,0.000055282000000,0.000225158000000,0.000250442000000,0.000389899000000,0.000045801000000,0.000056467000000,0.000261109000000,0.000920071000000 +0.000048171000000,0.000046195000000,0.000165109000000,0.000502096000000,0.000048565000000,0.000225158000000,0.000206985000000,0.000354343000000,0.000046195000000,0.000056467000000,0.000225553000000,0.000907034000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000358293000000,0.000048566000000,0.000314046000000,0.000205800000000,0.000356713000000,0.000046195000000,0.000056467000000,0.000229504000000,0.000872268000000 +0.000048566000000,0.000046590000000,0.000166293000000,0.000363035000000,0.000048565000000,0.000225158000000,0.000206195000000,0.000390688000000,0.000045800000000,0.000056467000000,0.000236220000000,0.000942589000000 +0.000048170000000,0.000046195000000,0.000255578000000,0.000360269000000,0.000054887000000,0.000225158000000,0.000240566000000,0.000362640000000,0.000046195000000,0.000092812000000,0.000273356000000,0.000880960000000 +0.000067529000000,0.000046590000000,0.000223973000000,0.000360269000000,0.000048170000000,0.000227133000000,0.000206195000000,0.000388318000000,0.000046195000000,0.000062393000000,0.000225158000000,0.000919281000000 +0.000048566000000,0.000066343000000,0.000180121000000,0.000417553000000,0.000048171000000,0.000296269000000,0.000216862000000,0.000369356000000,0.000046196000000,0.000056467000000,0.000235430000000,0.000870293000000 +0.000048565000000,0.000063183000000,0.000165109000000,0.000358294000000,0.000048565000000,0.000227134000000,0.000199479000000,0.000354738000000,0.000045801000000,0.000056862000000,0.000225158000000,0.000904269000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000362639000000,0.000053702000000,0.000277701000000,0.000219232000000,0.000438886000000,0.000046195000000,0.000056467000000,0.000262294000000,0.000945355000000 +0.000051331000000,0.000046195000000,0.000198689000000,0.000360269000000,0.000048565000000,0.000299035000000,0.000206590000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000224368000000,0.001349897000000 +0.000048566000000,0.000046590000000,0.000165108000000,0.000357898000000,0.000069899000000,0.000225553000000,0.000190788000000,0.000354738000000,0.000046195000000,0.000056466000000,0.000225553000000,0.000865948000000 +0.000048565000000,0.000046590000000,0.000165109000000,0.000737948000000,0.000064368000000,0.000229109000000,0.000189603000000,0.000390689000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000869503000000 +0.000048566000000,0.000046590000000,0.000164713000000,0.000441257000000,0.000058047000000,0.000224763000000,0.000189603000000,0.000354738000000,0.000045800000000,0.000056862000000,0.000275331000000,0.000894392000000 +0.000048565000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000051331000000,0.000296269000000,0.000227923000000,0.000390294000000,0.000046195000000,0.000056466000000,0.000224367000000,0.000885305000000 +0.000048566000000,0.000046195000000,0.000184862000000,0.000360269000000,0.000051331000000,0.000227134000000,0.000204615000000,0.000354343000000,0.000046196000000,0.000056467000000,0.000223578000000,0.000867528000000 +0.000048170000000,0.000046195000000,0.000212516000000,0.000395035000000,0.000051331000000,0.000224763000000,0.000188022000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225949000000,0.000872663000000 +0.000048566000000,0.000046591000000,0.000161948000000,0.000361059000000,0.000058047000000,0.000227528000000,0.000188813000000,0.000390293000000,0.000045800000000,0.000056466000000,0.000242541000000,0.000918096000000 +0.000048170000000,0.000046591000000,0.000165108000000,0.000362639000000,0.000053306000000,0.000275330000000,0.000189603000000,0.000354739000000,0.000064763000000,0.000056862000000,0.000227134000000,0.000868713000000 +0.000048171000000,0.000046196000000,0.000164714000000,0.000359084000000,0.000090838000000,0.000350788000000,0.000225158000000,0.000354343000000,0.000062788000000,0.000075035000000,0.000225554000000,0.000927578000000 +0.000048170000000,0.000046591000000,0.000166293000000,0.000358294000000,0.000067923000000,0.000223973000000,0.000188417000000,0.000390294000000,0.000045800000000,0.000069899000000,0.000227528000000,0.000890442000000 +0.000048566000000,0.000046195000000,0.000202245000000,0.000398985000000,0.000056862000000,0.000299429000000,0.000190787000000,0.000354738000000,0.000046195000000,0.000056467000000,0.000275331000000,0.000867923000000 +0.000048170000000,0.000046195000000,0.000165108000000,0.000357899000000,0.000051727000000,0.000242146000000,0.000189208000000,0.000390689000000,0.000045800000000,0.000056466000000,0.000228318000000,0.000882146000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000358294000000,0.000051331000000,0.000228318000000,0.000189603000000,0.000357503000000,0.000046195000000,0.000056467000000,0.000223973000000,0.000937059000000 +0.000082935000000,0.000046590000000,0.000161553000000,0.000363430000000,0.000051331000000,0.000227133000000,0.000291528000000,0.000357504000000,0.000045800000000,0.000056467000000,0.000268220000000,0.000897553000000 +0.000099134000000,0.000046590000000,0.000161948000000,0.000357108000000,0.000056862000000,0.000265454000000,0.000205009000000,0.000422689000000,0.000046196000000,0.000056466000000,0.000223577000000,0.000886096000000 +0.000067923000000,0.000047380000000,0.000248861000000,0.000408072000000,0.000075035000000,0.000225158000000,0.000189602000000,0.000354738000000,0.000045800000000,0.000056467000000,0.000225553000000,0.000909010000000 +0.000050936000000,0.000046195000000,0.000165504000000,0.000405306000000,0.000051331000000,0.000224763000000,0.000188813000000,0.000357504000000,0.000046195000000,0.000056862000000,0.000226738000000,0.000854096000000 +0.000051331000000,0.000046195000000,0.000165109000000,0.000358294000000,0.000051331000000,0.000224368000000,0.000188417000000,0.000409652000000,0.000046195000000,0.000056467000000,0.000295479000000,0.000941405000000 +0.000048566000000,0.000046590000000,0.000161553000000,0.000416763000000,0.000056466000000,0.000418738000000,0.000241355000000,0.000406096000000,0.000045800000000,0.000056467000000,0.000226344000000,0.000866738000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000358294000000,0.000051331000000,0.000436121000000,0.000189208000000,0.000393849000000,0.000045800000000,0.000056467000000,0.000225158000000,0.000884120000000 +0.000048171000000,0.000047776000000,0.000197899000000,0.000358689000000,0.000051331000000,0.000261503000000,0.000189602000000,0.000354739000000,0.000046195000000,0.000061998000000,0.000225158000000,0.000873454000000 +0.000048170000000,0.000046196000000,0.000168269000000,0.000750589000000,0.000051726000000,0.000224368000000,0.000189207000000,0.000361454000000,0.000046196000000,0.000056467000000,0.000283627000000,0.000873849000000 +0.000048566000000,0.000046195000000,0.000165109000000,0.000433750000000,0.000057652000000,0.000227529000000,0.000225158000000,0.000392269000000,0.000045800000000,0.000056467000000,0.000224368000000,0.000877799000000 +0.000048565000000,0.000046590000000,0.000165108000000,0.000358689000000,0.000051726000000,0.000225553000000,0.000189207000000,0.000354738000000,0.000045800000000,0.000092417000000,0.000223972000000,0.000885306000000 +0.000048566000000,0.000046195000000,0.000164714000000,0.000357899000000,0.000051331000000,0.000260713000000,0.000188418000000,0.000480763000000,0.000046195000000,0.000073849000000,0.000225158000000,0.000867133000000 +0.000067133000000,0.000046590000000,0.000165108000000,0.000359084000000,0.000052121000000,0.000248467000000,0.000188417000000,0.000374886000000,0.000046195000000,0.000071084000000,0.000263874000000,0.000871479000000 +0.000065158000000,0.000046590000000,0.000236220000000,0.000358294000000,0.000057256000000,0.000224762000000,0.000188023000000,0.000355924000000,0.000081751000000,0.000056467000000,0.000225158000000,0.000927577000000 +0.000064763000000,0.000046195000000,0.000165108000000,0.000358293000000,0.000051331000000,0.000237800000000,0.000224763000000,0.000390293000000,0.000045800000000,0.000056467000000,0.000227133000000,0.000872268000000 +0.000065553000000,0.000046590000000,0.000165109000000,0.000359478000000,0.000051331000000,0.000261898000000,0.000189207000000,0.000354343000000,0.000046590000000,0.000056862000000,0.000236220000000,0.000880960000000 +0.000048171000000,0.000046590000000,0.000164713000000,0.000358688000000,0.000051331000000,0.000225553000000,0.000188417000000,0.000390689000000,0.000045800000000,0.000056466000000,0.000261899000000,0.000874639000000 +0.000048565000000,0.000046195000000,0.000162344000000,0.000358294000000,0.000056862000000,0.000224368000000,0.000188417000000,0.000357108000000,0.000045800000000,0.000056467000000,0.000223577000000,0.000852910000000 +0.000048566000000,0.000046195000000,0.000216071000000,0.000358294000000,0.000053701000000,0.000226739000000,0.000189602000000,0.000354739000000,0.000045801000000,0.000056467000000,0.000224763000000,0.000837898000000 +0.000048565000000,0.000046195000000,0.000167874000000,0.000357899000000,0.000051726000000,0.000295084000000,0.000372516000000,0.000390688000000,0.000046195000000,0.000056071000000,0.000224763000000,0.000871873000000 +0.000049356000000,0.000048961000000,0.000168269000000,0.000366590000000,0.000051726000000,0.000225158000000,0.000559379000000,0.000424269000000,0.000045800000000,0.000056467000000,0.000262689000000,0.000875429000000 diff --git a/docs/source/media/bench/lua bench tests luawrapper.csv b/docs/source/media/bench/lua bench tests luawrapper.csv new file mode 100644 index 00000000..c01cd6ce --- /dev/null +++ b/docs/source/media/bench/lua bench tests luawrapper.csv @@ -0,0 +1,2001 @@ +"luawrapper - global get","luawrapper - return userdata","luawrapper - c function","luawrapper - global set","luawrapper - table chained get","luawrapper - table get","luawrapper - many userdata variables access last registered (simple)","luawrapper - lua function","luawrapper - table chained set","luawrapper - table set","luawrapper - c function through lua","luawrapper - member function calls","luawrapper - member function calls (simple)","luawrapper - userdata variable access","luawrapper - many userdata variables access","luawrapper - many userdata variables access last registered","luawrapper - userdata variable access (simple)","luawrapper - many userdata variable access (simple)","luawrapper - multi return","luawrapper - stateful c function" +0.000019542000000,0.000743083000000,0.000075824000000,0.000013028000000,0.000090441000000,0.000037898000000,0.000389107000000,0.000075429000000,0.000045799000000,0.000031577000000,0.000084910000000,0.000297058000000,0.000294688000000,0.000362243000000,0.019401043000000,0.000615083000000,0.000351971000000,0.020155610000000,0.000108614000000,0.000121651000000 +0.000019541500000,0.000749403000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000353157000000,0.000077009000000,0.000045404000000,0.000031576000000,0.000084120000000,0.000293897000000,0.000292712000000,0.000346441000000,0.019535364000000,0.000370144000000,0.000353157000000,0.019548401000000,0.000089650000000,0.000081354000000 +0.000018751500000,0.000677502000000,0.000038688000000,0.000029620333333,0.000055281000000,0.000037898000000,0.000355922000000,0.000076613000000,0.000044219000000,0.000031972000000,0.000082144000000,0.000338144000000,0.000327083000000,0.000417552000000,0.019541290000000,0.000379626000000,0.000347231000000,0.019617537000000,0.000089651000000,0.000081354000000 +0.000018751000000,0.000675922000000,0.000038688000000,0.000013818000000,0.000056071000000,0.000070688000000,0.000417157000000,0.000074638000000,0.000045404000000,0.000031577000000,0.000084515000000,0.000291132000000,0.000294688000000,0.000343675000000,0.019454771000000,0.000367774000000,0.000384366000000,0.019119759000000,0.000091626000000,0.000082935000000 +0.000019541500000,0.000764020000000,0.000038688000000,0.000012896000000,0.000056070000000,0.000037898000000,0.000355528000000,0.000074243000000,0.000045404000000,0.000031972000000,0.000082145000000,0.000291132000000,0.000328664000000,0.000623379000000,0.020007462000000,0.000381601000000,0.000355922000000,0.020031956000000,0.000124021000000,0.000083330000000 +0.000019541500000,0.000722540000000,0.000039083000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000377651000000,0.000077799000000,0.000043824000000,0.000031182000000,0.000130343000000,0.000291132000000,0.000291133000000,0.000374490000000,0.019369439000000,0.000419132000000,0.000435330000000,0.019615561000000,0.000093207000000,0.000083330000000 +0.000018751500000,0.000826045000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000346046000000,0.000074639000000,0.000044219000000,0.000032367000000,0.000081750000000,0.000293502000000,0.000293502000000,0.000363428000000,0.019514031000000,0.000547132000000,0.000344860000000,0.019416056000000,0.000090046000000,0.000082540000000 +0.000020134000000,0.000722540000000,0.000041454000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000347627000000,0.000077799000000,0.000044614000000,0.000030786000000,0.000082144000000,0.000329849000000,0.000333009000000,0.000348811000000,0.019426327000000,0.000350391000000,0.000382787000000,0.019364303000000,0.000090046000000,0.000154836000000 +0.000018751500000,0.000683033000000,0.000037502000000,0.000012896000000,0.000073059000000,0.000036713000000,0.000379231000000,0.000077009000000,0.000045404000000,0.000031182000000,0.000084516000000,0.000295083000000,0.000295478000000,0.000351576000000,0.019346129000000,0.000349602000000,0.000348021000000,0.019359957000000,0.000092812000000,0.000082935000000 +0.000018751500000,0.000756515000000,0.000076614000000,0.000013686000000,0.000055676000000,0.000037898000000,0.000347231000000,0.000076219000000,0.000044219000000,0.000030786000000,0.000084515000000,0.000294293000000,0.000295083000000,0.000347626000000,0.020499709000000,0.000424663000000,0.000431379000000,0.020083709000000,0.000092416000000,0.000082935000000 +0.000019739000000,0.000724119000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000669996000000,0.000077404000000,0.000046194000000,0.000031182000000,0.000084120000000,0.000292317000000,0.000341701000000,0.000418737000000,0.019799265000000,0.000349206000000,0.000352367000000,0.018812402000000,0.000112564000000,0.000080960000000 +0.000018751500000,0.000707922000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000381206000000,0.000079380000000,0.000043824000000,0.000031972000000,0.000084120000000,0.000329453000000,0.000292713000000,0.000347626000000,0.019884598000000,0.000347626000000,0.000380811000000,0.019792153000000,0.000090046000000,0.000081750000000 +0.000019541500000,0.000678293000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000346836000000,0.000095182000000,0.000044614000000,0.000031577000000,0.000171429000000,0.000324317000000,0.000324713000000,0.000425453000000,0.021023165000000,0.000343280000000,0.000348811000000,0.021242030000000,0.000090046000000,0.000083330000000 +0.000019541500000,0.000671576000000,0.000037503000000,0.000013027666667,0.000056861000000,0.000064762000000,0.000391478000000,0.000077009000000,0.000045404000000,0.000067528000000,0.000103478000000,0.000294293000000,0.000294688000000,0.000349601000000,0.019874326000000,0.000349207000000,0.000385947000000,0.019802821000000,0.000089256000000,0.000083330000000 +0.000018751500000,0.000764811000000,0.000037503000000,0.000012896000000,0.000057256000000,0.000039083000000,0.000353551000000,0.000077009000000,0.000044219000000,0.000033552000000,0.000084120000000,0.000293108000000,0.000297453000000,0.000422688000000,0.019425932000000,0.000394639000000,0.000354342000000,0.019312155000000,0.000092811000000,0.000082145000000 +0.000019936500000,0.000778638000000,0.000038293000000,0.000013686000000,0.000056071000000,0.000037108000000,0.000351577000000,0.000075034000000,0.000044219000000,0.000044614000000,0.000082144000000,0.000327873000000,0.000307330000000,0.000347231000000,0.020232252000000,0.000344860000000,0.000346441000000,0.018865340000000,0.000095577000000,0.000081750000000 +0.000018751500000,0.000709502000000,0.000038688000000,0.000013027666667,0.000175774000000,0.000056070000000,0.000380021000000,0.000077404000000,0.000045009000000,0.000031577000000,0.000081750000000,0.000293503000000,0.000292318000000,0.000381601000000,0.019283315000000,0.000353947000000,0.000357898000000,0.019488746000000,0.000093207000000,0.000080960000000 +0.000018553500000,0.000687774000000,0.000037503000000,0.000013686000000,0.000057256000000,0.000052910000000,0.000355528000000,0.000077009000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000326688000000,0.000332219000000,0.000344465000000,0.019001241000000,0.000347626000000,0.000345255000000,0.020138622000000,0.000139428000000,0.000080960000000 +0.000036924000000,0.000679083000000,0.000037898000000,0.000013686333333,0.000056071000000,0.000037503000000,0.000383576000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000117700000000,0.000294688000000,0.000293897000000,0.000436910000000,0.019338228000000,0.000346045000000,0.000388712000000,0.019311759000000,0.000092417000000,0.000082935000000 +0.000020727000000,0.000767971000000,0.000038688000000,0.000013027666667,0.000057651000000,0.000037503000000,0.000352367000000,0.000107824000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000291132000000,0.000292317000000,0.000348812000000,0.019236697000000,0.000346836000000,0.000351577000000,0.019670475000000,0.000092811000000,0.000081355000000 +0.000028233000000,0.000717799000000,0.000037898000000,0.000012896333333,0.000055281000000,0.000037503000000,0.000346046000000,0.000074638000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000325898000000,0.000548317000000,0.000425848000000,0.019547611000000,0.000350392000000,0.000381601000000,0.019787808000000,0.000088861000000,0.000101108000000 +0.000019739000000,0.000718589000000,0.000038688000000,0.000013686000000,0.000056071000000,0.000036713000000,0.000405305000000,0.000076614000000,0.000045799000000,0.000031577000000,0.000081749000000,0.000296663000000,0.000304960000000,0.000351577000000,0.020601635000000,0.000348416000000,0.000351181000000,0.020875018000000,0.000092812000000,0.000082540000000 +0.000018949000000,0.000680662000000,0.000042243000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000345255000000,0.000074639000000,0.000043824000000,0.000045009000000,0.000082540000000,0.000292318000000,0.000324318000000,0.000417157000000,0.021373980000000,0.000347626000000,0.000752959000000,0.020198672000000,0.000088860000000,0.000117701000000 +0.000019739000000,0.000692910000000,0.000037898000000,0.000012896000000,0.000108219000000,0.000037503000000,0.000385552000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000304960000000,0.000293503000000,0.000353947000000,0.020092006000000,0.000347231000000,0.000400169000000,0.021838177000000,0.000129157000000,0.000085305000000 +0.000019739000000,0.000718194000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000037898000000,0.000346836000000,0.000076614000000,0.000048170000000,0.000031577000000,0.000084910000000,0.000292713000000,0.000293898000000,0.000421502000000,0.019562623000000,0.000354737000000,0.000369749000000,0.020235807000000,0.000093602000000,0.000088071000000 +0.000018751500000,0.000758885000000,0.000037898000000,0.000013027666667,0.000060417000000,0.000037898000000,0.000351181000000,0.000075824000000,0.000045404000000,0.000032762000000,0.000173404000000,0.000328664000000,0.000292317000000,0.000377651000000,0.019962821000000,0.000587429000000,0.000404119000000,0.020227116000000,0.000092417000000,0.000080565000000 +0.000035936500000,0.000786144000000,0.000037503000000,0.000013027666667,0.000072663000000,0.000037108000000,0.000347626000000,0.000109799000000,0.000044218000000,0.000032367000000,0.000082144000000,0.000293108000000,0.000291132000000,0.000471676000000,0.019352846000000,0.000350391000000,0.000356317000000,0.019162031000000,0.000090046000000,0.000082540000000 +0.000019541500000,0.000687774000000,0.000038688000000,0.000013686000000,0.000069107000000,0.000037503000000,0.000348417000000,0.000076614000000,0.000044219000000,0.000032762000000,0.000084120000000,0.000291527000000,0.000328663000000,0.000354342000000,0.019534179000000,0.000429008000000,0.000381996000000,0.020023660000000,0.000090046000000,0.000082145000000 +0.000019739000000,0.000675527000000,0.000087675000000,0.000013027666667,0.000057256000000,0.000037108000000,0.000378046000000,0.000076219000000,0.000045404000000,0.000031577000000,0.000084516000000,0.000328268000000,0.000294293000000,0.000393849000000,0.019855759000000,0.000626539000000,0.000350787000000,0.019846277000000,0.000089651000000,0.000082540000000 +0.000019541500000,0.000730836000000,0.000038688000000,0.000013554333333,0.000056071000000,0.000037898000000,0.000345651000000,0.000074638000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000296268000000,0.000294688000000,0.000346441000000,0.021579807000000,0.000383972000000,0.000346441000000,0.019095266000000,0.000092416000000,0.000082935000000 +0.000019739000000,0.000705551000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037108000000,0.000359083000000,0.000074639000000,0.000045009000000,0.000031576000000,0.000082144000000,0.000291132000000,0.000306935000000,0.000366194000000,0.020297437000000,0.000349206000000,0.000354738000000,0.019668895000000,0.000092416000000,0.000083330000000 +0.000019146500000,0.000810243000000,0.000038688000000,0.000013554666667,0.000056861000000,0.000037897000000,0.000350786000000,0.000074639000000,0.000045799000000,0.000031577000000,0.000117306000000,0.000468119000000,0.000295082000000,0.000351971000000,0.019886573000000,0.000368564000000,0.000349601000000,0.019388006000000,0.000092417000000,0.000080959000000 +0.000018751500000,0.000692515000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000398194000000,0.000078194000000,0.000043824000000,0.000031972000000,0.000085305000000,0.000291132000000,0.000325898000000,0.000346045000000,0.019777142000000,0.000355922000000,0.000381206000000,0.019195216000000,0.000090046000000,0.000082145000000 +0.000019739500000,0.000677897000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000051330000000,0.000400959000000,0.000158391000000,0.000044219000000,0.000046984000000,0.000082145000000,0.000290737000000,0.000295083000000,0.000347231000000,0.019861290000000,0.000349601000000,0.000349601000000,0.019160056000000,0.000093206000000,0.000082935000000 +0.000018751000000,0.000749404000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000038688000000,0.000345651000000,0.000076614000000,0.000044219000000,0.000032367000000,0.000084910000000,0.000291527000000,0.000291528000000,0.000346836000000,0.019473734000000,0.000348416000000,0.000382391000000,0.020024845000000,0.000093207000000,0.000172614000000 +0.000018751500000,0.000718589000000,0.000037898000000,0.000012896000000,0.000054885000000,0.000038293000000,0.000358688000000,0.000074244000000,0.000043824000000,0.000032367000000,0.000085700000000,0.000328663000000,0.000363824000000,0.000380416000000,0.019214574000000,0.000351577000000,0.000350787000000,0.020286375000000,0.000090046000000,0.000194342000000 +0.000046998500000,0.000732811000000,0.000039873000000,0.000012896000000,0.000055280000000,0.000037898000000,0.000347231000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000297848000000,0.000294688000000,0.000348416000000,0.019660994000000,0.000347626000000,0.000382392000000,0.019401043000000,0.000092811000000,0.000094786000000 +0.000019541500000,0.000686984000000,0.000093602000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000349206000000,0.000074244000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000297848000000,0.000295478000000,0.000380811000000,0.019586722000000,0.000345651000000,0.000348416000000,0.019876697000000,0.000090441000000,0.000080564000000 +0.000018751500000,0.000722934000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037897000000,0.000394243000000,0.000074244000000,0.000044219000000,0.000031972000000,0.000163923000000,0.000372910000000,0.000295083000000,0.000353157000000,0.019373784000000,0.000346836000000,0.000380021000000,0.019105142000000,0.000089651000000,0.000114540000000 +0.000020134000000,0.000724515000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000037107000000,0.000344860000000,0.000074639000000,0.000057256000000,0.000030787000000,0.000083726000000,0.000292318000000,0.000296268000000,0.000382787000000,0.019277784000000,0.000349206000000,0.000349601000000,0.019573290000000,0.000089651000000,0.000082935000000 +0.000018751500000,0.000772318000000,0.000039874000000,0.000012896000000,0.000057256000000,0.000037897000000,0.000387922000000,0.000075033000000,0.000045009000000,0.000031182000000,0.000082144000000,0.000331824000000,0.000327083000000,0.000347626000000,0.019752253000000,0.000346046000000,0.000347626000000,0.019945833000000,0.000092021000000,0.000081354000000 +0.000018554000000,0.000720959000000,0.000038688000000,0.000013423000000,0.000055676000000,0.000037503000000,0.000346836000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000081750000000,0.000291922000000,0.000291528000000,0.000389503000000,0.019484796000000,0.000381601000000,0.000347626000000,0.019366277000000,0.000090836000000,0.000082540000000 +0.000019541500000,0.000718589000000,0.000037898000000,0.000013422666667,0.000055676000000,0.000037503000000,0.000352367000000,0.000077800000000,0.000044614000000,0.000031181000000,0.000084120000000,0.000292712000000,0.000294293000000,0.000363034000000,0.019285685000000,0.000344860000000,0.000349996000000,0.019681141000000,0.000125207000000,0.000082540000000 +0.000018751000000,0.000716218000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000075429000000,0.000549107000000,0.000077799000000,0.000044218000000,0.000046194000000,0.000082540000000,0.000329848000000,0.000327873000000,0.000346836000000,0.020089240000000,0.000355922000000,0.000398193000000,0.019796499000000,0.000090836000000,0.000080960000000 +0.000019739000000,0.001348712000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000973008000000,0.000074244000000,0.000044614000000,0.000031577000000,0.000084515000000,0.000294688000000,0.000327478000000,0.000345256000000,0.019586327000000,0.000346046000000,0.000351577000000,0.020423067000000,0.000090836000000,0.000080564000000 +0.000019541500000,0.000676712000000,0.000039478000000,0.000013027666667,0.000056070000000,0.000037503000000,0.000444811000000,0.000074243000000,0.000043823000000,0.000031577000000,0.000082145000000,0.000335774000000,0.000383577000000,0.000354737000000,0.019071167000000,0.000346441000000,0.000423478000000,0.018998081000000,0.000090441000000,0.000117306000000 +0.000032183500000,0.000744268000000,0.000073454000000,0.000013027666667,0.000055675000000,0.000037898000000,0.000712268000000,0.000077799000000,0.000044219000000,0.000031182000000,0.000084910000000,0.000294688000000,0.000291922000000,0.000389502000000,0.019781092000000,0.000351971000000,0.000353157000000,0.019282920000000,0.000089651000000,0.000083725000000 +0.000029813000000,0.000738737000000,0.000038293000000,0.000013027666667,0.000090046000000,0.000036713000000,0.000347231000000,0.000091231000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000293898000000,0.000297058000000,0.000355132000000,0.019591857000000,0.000346046000000,0.000381601000000,0.019308599000000,0.000092812000000,0.000082145000000 +0.000026060000000,0.000753354000000,0.000037898000000,0.000013686000000,0.000056466000000,0.000036713000000,0.000353947000000,0.000075429000000,0.000052515000000,0.000031972000000,0.000081750000000,0.000326688000000,0.000329058000000,0.000425058000000,0.020067511000000,0.000489058000000,0.000356317000000,0.019152945000000,0.000090046000000,0.000082145000000 +0.000018751500000,0.000704761000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000350391000000,0.000076614000000,0.000043824000000,0.000031182000000,0.000082145000000,0.000291923000000,0.000297453000000,0.000347626000000,0.019378920000000,0.000348416000000,0.000380416000000,0.019612796000000,0.000092812000000,0.000081750000000 +0.000019739000000,0.000706737000000,0.000041849000000,0.000013554333333,0.000057256000000,0.000037503000000,0.000388713000000,0.000078194000000,0.000044614000000,0.000031182000000,0.000082144000000,0.000295873000000,0.000326293000000,0.000388317000000,0.020600449000000,0.000362243000000,0.000346836000000,0.019180204000000,0.000090441000000,0.000081750000000 +0.000019739000000,0.000745058000000,0.000039873000000,0.000013028000000,0.000055676000000,0.000038293000000,0.000483922000000,0.000076614000000,0.000045009000000,0.000031181000000,0.000082145000000,0.000308515000000,0.000291922000000,0.000352762000000,0.020072647000000,0.000349207000000,0.000381997000000,0.020346820000000,0.000095577000000,0.000083330000000 +0.000019541500000,0.000707132000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000037503000000,0.000457058000000,0.000074639000000,0.000045404000000,0.000030786000000,0.000181305000000,0.000295082000000,0.000293898000000,0.000380812000000,0.019175463000000,0.000349997000000,0.000346836000000,0.019183364000000,0.000092021000000,0.000093602000000 +0.000018751500000,0.000764021000000,0.000038293000000,0.000013554666667,0.000056466000000,0.000083725000000,0.000397009000000,0.000096367000000,0.000044613000000,0.000031972000000,0.000169454000000,0.000363428000000,0.000338935000000,0.000409256000000,0.019474525000000,0.000346441000000,0.000458243000000,0.019269093000000,0.000092416000000,0.000080564000000 +0.000018751500000,0.000721749000000,0.000038689000000,0.000013027666667,0.000056466000000,0.000038293000000,0.000356317000000,0.000076614000000,0.000044614000000,0.000064367000000,0.000187231000000,0.000291527000000,0.000291132000000,0.000388318000000,0.019642821000000,0.000349997000000,0.000349207000000,0.019721043000000,0.000092417000000,0.000083330000000 +0.000019541500000,0.000681453000000,0.000041454000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000354737000000,0.000078194000000,0.000044218000000,0.000030787000000,0.000152860000000,0.000293503000000,0.000294688000000,0.000347231000000,0.020009833000000,0.000349602000000,0.000385157000000,0.019830080000000,0.000140614000000,0.000080960000000 +0.000019541500000,0.000758885000000,0.000037898000000,0.000013027666667,0.000162738000000,0.000037108000000,0.000385947000000,0.000076613000000,0.000044219000000,0.000031182000000,0.000195922000000,0.000327478000000,0.000306540000000,0.000380416000000,0.019667314000000,0.000349996000000,0.000348811000000,0.019800450000000,0.000093206000000,0.000082935000000 +0.000018554000000,0.000722144000000,0.000037503000000,0.000012896000000,0.000158787000000,0.000036712000000,0.000344070000000,0.000080170000000,0.000044219000000,0.000030787000000,0.000116515000000,0.000293503000000,0.000290737000000,0.000346440000000,0.019745932000000,0.000349206000000,0.000350392000000,0.019079858000000,0.000093602000000,0.000082935000000 +0.000018949000000,0.000746638000000,0.000038293000000,0.000013817666667,0.000059231000000,0.000036713000000,0.000394638000000,0.000075034000000,0.000044614000000,0.000031577000000,0.000105453000000,0.000313650000000,0.000367774000000,0.000352367000000,0.019035217000000,0.000461404000000,0.000350787000000,0.019324401000000,0.000092812000000,0.000080960000000 +0.000020332000000,0.000701996000000,0.000037503000000,0.000013027666667,0.000068713000000,0.000037898000000,0.000361849000000,0.000076614000000,0.000045404000000,0.000031577000000,0.000100317000000,0.000294292000000,0.000316022000000,0.000346046000000,0.019463858000000,0.000347626000000,0.000344861000000,0.020097536000000,0.000090046000000,0.000083330000000 +0.000019739000000,0.000687379000000,0.000037503000000,0.000012896000000,0.000126392000000,0.000037898000000,0.000346441000000,0.000111774000000,0.000046195000000,0.000031972000000,0.000089256000000,0.000291922000000,0.000314441000000,0.000347626000000,0.019619512000000,0.000346046000000,0.000433749000000,0.020091610000000,0.000089651000000,0.000082144000000 +0.000019541500000,0.000733996000000,0.000039873000000,0.000013554333333,0.000055281000000,0.000036712000000,0.000453503000000,0.000074638000000,0.000044614000000,0.000031972000000,0.000157997000000,0.000441255000000,0.000306540000000,0.000360268000000,0.019076698000000,0.000382786000000,0.000347626000000,0.019737241000000,0.000090441000000,0.000082540000000 +0.000019739000000,0.000752959000000,0.000037897000000,0.000013686000000,0.000055676000000,0.000036318000000,0.000344071000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000092416000000,0.000293108000000,0.000296663000000,0.000346441000000,0.021449437000000,0.000349996000000,0.000380812000000,0.020948499000000,0.000092416000000,0.000080565000000 +0.000018751500000,0.000713058000000,0.000037898000000,0.000013554333333,0.000057651000000,0.000070688000000,0.000414787000000,0.000077799000000,0.000043824000000,0.000031181000000,0.000099922000000,0.000378836000000,0.000324712000000,0.000381996000000,0.019785437000000,0.000346836000000,0.000351972000000,0.020058425000000,0.000089256000000,0.000080959000000 +0.000018751500000,0.000676318000000,0.000038688000000,0.000013554666667,0.000056466000000,0.000037503000000,0.000346836000000,0.000077404000000,0.000044614000000,0.000045009000000,0.000086886000000,0.000295083000000,0.000295083000000,0.000347231000000,0.019589488000000,0.000347231000000,0.000773108000000,0.019189290000000,0.000092021000000,0.000116515000000 +0.000036924000000,0.001366884000000,0.000056465000000,0.000013028000000,0.000055281000000,0.000036712000000,0.000351576000000,0.000074639000000,0.000045404000000,0.000031182000000,0.000167083000000,0.000291923000000,0.000299034000000,0.000386343000000,0.020491018000000,0.000362244000000,0.000948514000000,0.019042327000000,0.000090836000000,0.000114539000000 +0.000018751500000,0.000707922000000,0.000125601000000,0.000013554666667,0.000056070000000,0.000037503000000,0.000387527000000,0.000074243000000,0.000044219000000,0.000031972000000,0.000245700000000,0.000378836000000,0.000331429000000,0.000349206000000,0.019465833000000,0.000347626000000,0.000505651000000,0.019604500000000,0.000092811000000,0.000080960000000 +0.000018949000000,0.000744268000000,0.000054096000000,0.000013554666667,0.000056465000000,0.000036713000000,0.000347231000000,0.000125206000000,0.000045800000000,0.000030787000000,0.000211725000000,0.000299428000000,0.000293503000000,0.000381996000000,0.019461882000000,0.000346046000000,0.000468515000000,0.020257536000000,0.000090441000000,0.000082145000000 +0.000019541500000,0.000680663000000,0.000039478000000,0.000012896000000,0.000077009000000,0.000036318000000,0.000436910000000,0.000129157000000,0.000044614000000,0.000030787000000,0.000115725000000,0.000375280000000,0.000327082000000,0.000354737000000,0.020126771000000,0.000385552000000,0.000472860000000,0.019354426000000,0.000125601000000,0.000083330000000 +0.000019542000000,0.000712267000000,0.000038293000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000345256000000,0.000097552000000,0.000044219000000,0.000031577000000,0.000085305000000,0.000294293000000,0.000297453000000,0.000451132000000,0.019796499000000,0.000347231000000,0.000425058000000,0.019643216000000,0.000093207000000,0.000082935000000 +0.000018949000000,0.000766786000000,0.000038688000000,0.000013554333333,0.000055281000000,0.000036318000000,0.000351576000000,0.000090441000000,0.000045404000000,0.000031577000000,0.000084515000000,0.000290737000000,0.000296268000000,0.000365008000000,0.019567759000000,0.000348021000000,0.000345256000000,0.020135858000000,0.000089651000000,0.000082540000000 +0.000020134000000,0.000729650000000,0.000038293000000,0.000013554333333,0.000058836000000,0.000037898000000,0.000417947000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000380416000000,0.000437700000000,0.000379231000000,0.021627609000000,0.000345650000000,0.000392268000000,0.021493684000000,0.000092021000000,0.000083330000000 +0.000018949000000,0.000724515000000,0.000071873000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000343675000000,0.000143774000000,0.000044219000000,0.000031182000000,0.000095577000000,0.000292317000000,0.000293503000000,0.000354738000000,0.019491117000000,0.000449947000000,0.000350787000000,0.019977438000000,0.000093206000000,0.000151676000000 +0.000018554000000,0.000712663000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000057256000000,0.000385947000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000374885000000,0.000363823000000,0.000348811000000,0.019562624000000,0.000351182000000,0.000382391000000,0.021414671000000,0.000092021000000,0.000080960000000 +0.000019542000000,0.000767576000000,0.000040663000000,0.000013686000000,0.000055676000000,0.000050935000000,0.000374886000000,0.000076614000000,0.000043823000000,0.000031972000000,0.000084120000000,0.000294687000000,0.000294688000000,0.000356712000000,0.020512746000000,0.000351576000000,0.000351182000000,0.019907512000000,0.000090441000000,0.000080959000000 +0.000050159000000,0.000715823000000,0.000037898000000,0.000012896000000,0.000057256000000,0.000037108000000,0.000349206000000,0.000074243000000,0.000044218000000,0.000044218000000,0.000084121000000,0.000292317000000,0.000295083000000,0.000351577000000,0.019964796000000,0.000430194000000,0.000415182000000,0.019513636000000,0.000092811000000,0.000080565000000 +0.000019739000000,0.000754539000000,0.000039084000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000351972000000,0.000082935000000,0.000044219000000,0.000030787000000,0.000082144000000,0.000377650000000,0.000367774000000,0.000391083000000,0.020320746000000,0.000352367000000,0.000346441000000,0.019448451000000,0.000093207000000,0.000082935000000 +0.000019937000000,0.000714243000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000429799000000,0.000076613000000,0.000043824000000,0.000046590000000,0.000082145000000,0.000291527000000,0.000292713000000,0.000356317000000,0.020003117000000,0.000345256000000,0.000383576000000,0.020292697000000,0.000092416000000,0.000083330000000 +0.000018751000000,0.000713058000000,0.000038293000000,0.000013027666667,0.000058441000000,0.000037107000000,0.000354737000000,0.000096367000000,0.000047380000000,0.000030391000000,0.000110589000000,0.000382392000000,0.000397404000000,0.000393453000000,0.020134277000000,0.000349206000000,0.000493404000000,0.019072352000000,0.000090836000000,0.000082540000000 +0.000020134000000,0.000737552000000,0.000038688000000,0.000015134666667,0.000055676000000,0.000036712000000,0.000437700000000,0.000074638000000,0.000046589000000,0.000030786000000,0.000084120000000,0.000310885000000,0.000297848000000,0.000346441000000,0.020080549000000,0.000393058000000,0.000494984000000,0.019448450000000,0.000093602000000,0.000094787000000 +0.000018751500000,0.000716218000000,0.000038293000000,0.000013027666667,0.000057651000000,0.000036318000000,0.000396613000000,0.000076614000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000298638000000,0.000293502000000,0.000390687000000,0.019459512000000,0.000404515000000,0.000348811000000,0.018347414000000,0.000092021000000,0.000080564000000 +0.000018751500000,0.000730046000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037107000000,0.000351182000000,0.000074244000000,0.000044614000000,0.000032762000000,0.000081750000000,0.000294292000000,0.000328663000000,0.000353947000000,0.019760945000000,0.000351182000000,0.000383972000000,0.019259611000000,0.000093602000000,0.000080565000000 +0.000019541500000,0.000751774000000,0.000037502000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000415972000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000082144000000,0.000290737000000,0.000291133000000,0.000472860000000,0.019596599000000,0.000347626000000,0.000346836000000,0.018974772000000,0.000092811000000,0.000082935000000 +0.000019541500000,0.000690539000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000070688000000,0.000361848000000,0.000074243000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000398194000000,0.000369354000000,0.000346836000000,0.019465833000000,0.000349997000000,0.000393453000000,0.018778032000000,0.000092417000000,0.000081354000000 +0.000019541500000,0.000733996000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000347231000000,0.000074244000000,0.000044218000000,0.000031972000000,0.000084120000000,0.000294293000000,0.000293503000000,0.000380022000000,0.019312944000000,0.000347626000000,0.000349207000000,0.018967266000000,0.000130342000000,0.000080960000000 +0.000032183500000,0.000719379000000,0.000038293000000,0.000013554666667,0.000089256000000,0.000037503000000,0.000509601000000,0.000077404000000,0.000043823000000,0.000030391000000,0.000144959000000,0.000295478000000,0.000291923000000,0.000352762000000,0.020003117000000,0.000349996000000,0.000347231000000,0.018561933000000,0.000091232000000,0.000082935000000 +0.000018751500000,0.000713453000000,0.000037898000000,0.000013554333333,0.000055281000000,0.000037898000000,0.000352762000000,0.000077009000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000306934000000,0.000372910000000,0.000380416000000,0.019386821000000,0.000345256000000,0.000448762000000,0.018612105000000,0.000092811000000,0.000109799000000 +0.000019739000000,0.000718193000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000037503000000,0.000351182000000,0.000077009000000,0.000044614000000,0.000031182000000,0.000085305000000,0.000294688000000,0.000293502000000,0.000347231000000,0.019661783000000,0.000346836000000,0.000383181000000,0.018605784000000,0.000106639000000,0.000080169000000 +0.000019936500000,0.000674737000000,0.000037108000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000381601000000,0.000075428000000,0.000044614000000,0.000031577000000,0.000083725000000,0.000326293000000,0.000351577000000,0.000403330000000,0.019396697000000,0.000348022000000,0.000351577000000,0.018543760000000,0.000092416000000,0.000082935000000 +0.000018751500000,0.000837107000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000347626000000,0.000075824000000,0.000044219000000,0.000030391000000,0.000085701000000,0.000298244000000,0.000290738000000,0.000346441000000,0.019387611000000,0.000346835000000,0.000418342000000,0.019754228000000,0.000091231000000,0.000080960000000 +0.000019146500000,0.000771527000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000430985000000,0.000075034000000,0.000044219000000,0.000030392000000,0.000082540000000,0.000293108000000,0.000290738000000,0.000348416000000,0.019532203000000,0.000349601000000,0.000348021000000,0.018249835000000,0.000088861000000,0.000082934000000 +0.000019541500000,0.000723329000000,0.000092812000000,0.000013554333333,0.000056861000000,0.000036713000000,0.000358292000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000366589000000,0.000358293000000,0.000346441000000,0.019242624000000,0.000351181000000,0.000346441000000,0.018854278000000,0.000092416000000,0.000082145000000 +0.000019739000000,0.000709503000000,0.000041058000000,0.000013027666667,0.000055280000000,0.000036713000000,0.000343675000000,0.000077404000000,0.000045799000000,0.000030786000000,0.000112960000000,0.000292317000000,0.000292712000000,0.000353157000000,0.019516796000000,0.000348417000000,0.000349996000000,0.018863759000000,0.000089256000000,0.000116515000000 +0.000019541500000,0.000696465000000,0.000040268000000,0.000013027666667,0.000056071000000,0.000058047000000,0.000381207000000,0.000088861000000,0.000044614000000,0.000030786000000,0.000081750000000,0.000381996000000,0.000292712000000,0.000349206000000,0.019760944000000,0.000346836000000,0.000348021000000,0.019041932000000,0.000147330000000,0.000083329000000 +0.000029615500000,0.000704367000000,0.000040664000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000373305000000,0.000074638000000,0.000043824000000,0.000030787000000,0.000082145000000,0.000293898000000,0.000292318000000,0.000347626000000,0.019471759000000,0.000350391000000,0.000376465000000,0.018878377000000,0.000112564000000,0.000083330000000 +0.000046603500000,0.000767972000000,0.000180515000000,0.000013027666667,0.000057256000000,0.000038293000000,0.000356317000000,0.000074243000000,0.000045404000000,0.000032367000000,0.000109799000000,0.000293898000000,0.000292713000000,0.000702786000000,0.019683907000000,0.000445207000000,0.000349996000000,0.018688352000000,0.000090046000000,0.000080960000000 +0.000052924500000,0.000709502000000,0.000129947000000,0.000013817666667,0.000056071000000,0.000038293000000,0.000389898000000,0.000095182000000,0.000064367000000,0.000033157000000,0.000084120000000,0.000320367000000,0.000483527000000,0.000432169000000,0.019174673000000,0.000346836000000,0.000540021000000,0.018583661000000,0.000092811000000,0.000082935000000 +0.000020726500000,0.000720564000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000037503000000,0.000350786000000,0.000143379000000,0.000062391000000,0.000031576000000,0.000083725000000,0.000293107000000,0.000362244000000,0.000347231000000,0.019904351000000,0.000348021000000,0.000624960000000,0.018710476000000,0.000093207000000,0.000082540000000 +0.000018554000000,0.000678687000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000036318000000,0.000379626000000,0.000111380000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000570440000000,0.000327083000000,0.000394639000000,0.019065636000000,0.000352762000000,0.000610737000000,0.018378229000000,0.000092416000000,0.000084515000000 +0.000018751500000,0.000718984000000,0.000038293000000,0.000013554333333,0.000056070000000,0.000037897000000,0.000349206000000,0.000077009000000,0.000043823000000,0.000029996000000,0.000096367000000,0.000408465000000,0.000292317000000,0.000354738000000,0.018789883000000,0.000350786000000,0.000429009000000,0.018590772000000,0.000122836000000,0.000148910000000 +0.000019739000000,0.000720564000000,0.000071478000000,0.000012896000000,0.000059626000000,0.000036713000000,0.000352762000000,0.000074639000000,0.000044218000000,0.000030787000000,0.000086096000000,0.000294293000000,0.000326687000000,0.000368960000000,0.019203513000000,0.000343280000000,0.000413997000000,0.018530328000000,0.000090836000000,0.000081355000000 +0.000026455000000,0.000832762000000,0.000038688000000,0.000024484333333,0.000055675000000,0.000037898000000,0.000382786000000,0.000077009000000,0.000045404000000,0.000031577000000,0.000082144000000,0.000295478000000,0.000292317000000,0.000355527000000,0.019112648000000,0.000389898000000,0.000378046000000,0.019335462000000,0.000092021000000,0.000080960000000 +0.000018751500000,0.000722145000000,0.000037503000000,0.000014344333333,0.000090046000000,0.000037503000000,0.000345255000000,0.000076614000000,0.000044614000000,0.000030391000000,0.000081750000000,0.000374491000000,0.000292713000000,0.000351971000000,0.019713536000000,0.000346441000000,0.000401749000000,0.018439464000000,0.000091626000000,0.000080169000000 +0.000020134000000,0.000690540000000,0.000039873000000,0.000013554666667,0.000055676000000,0.000037897000000,0.000386342000000,0.000076614000000,0.000044219000000,0.000030392000000,0.000084120000000,0.000290342000000,0.000329848000000,0.000347231000000,0.019865240000000,0.000348416000000,0.000498144000000,0.018279464000000,0.000091627000000,0.000082145000000 +0.000018751500000,0.000758885000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000036712000000,0.000350786000000,0.000074638000000,0.000045009000000,0.000033158000000,0.000082145000000,0.000294293000000,0.000291527000000,0.000354342000000,0.020065537000000,0.000349996000000,0.000612713000000,0.019059315000000,0.000092021000000,0.000081355000000 +0.000018751500000,0.000754539000000,0.000058046000000,0.000013027666667,0.000055675000000,0.000038688000000,0.000351972000000,0.000108219000000,0.000044219000000,0.000031576000000,0.000109404000000,0.000295873000000,0.000291132000000,0.000352367000000,0.019209439000000,0.000346441000000,0.000387132000000,0.019233932000000,0.000112169000000,0.000082935000000 +0.000019739000000,0.000752169000000,0.000038688000000,0.000012896000000,0.000057651000000,0.000036318000000,0.000384762000000,0.000074639000000,0.000045009000000,0.000045009000000,0.000082540000000,0.000293898000000,0.000297453000000,0.000346836000000,0.019722228000000,0.000355923000000,0.000370539000000,0.019200747000000,0.000093206000000,0.000115725000000 +0.000018554000000,0.000760070000000,0.000037897000000,0.000020007333333,0.000056465000000,0.000036712000000,0.000345255000000,0.000077404000000,0.000044219000000,0.000030787000000,0.000084515000000,0.000327477000000,0.000295082000000,0.000425848000000,0.019533389000000,0.000346046000000,0.000370934000000,0.018606970000000,0.000090046000000,0.000080960000000 +0.000019541500000,0.000672367000000,0.000037898000000,0.000014476333333,0.000055675000000,0.000036713000000,0.000387922000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000295083000000,0.000326688000000,0.000354342000000,0.019671660000000,0.000347231000000,0.000372910000000,0.018815562000000,0.000092812000000,0.000081355000000 +0.000019936500000,0.000745058000000,0.000039873000000,0.000017636666667,0.000055281000000,0.000036713000000,0.000343676000000,0.000074638000000,0.000045009000000,0.000031181000000,0.000082145000000,0.000291923000000,0.000295083000000,0.000473651000000,0.022801336000000,0.000347231000000,0.000369750000000,0.019039957000000,0.000092021000000,0.000082935000000 +0.000018751500000,0.000711082000000,0.000037898000000,0.000013027666667,0.000075034000000,0.000036317000000,0.000347231000000,0.000076219000000,0.000044614000000,0.000031182000000,0.000084910000000,0.000359478000000,0.000292317000000,0.000346836000000,0.019958870000000,0.000348811000000,0.000376861000000,0.019484006000000,0.000090046000000,0.000082935000000 +0.000027048000000,0.000773107000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000346836000000,0.000076613000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000341305000000,0.000361848000000,0.000415576000000,0.020965881000000,0.000350391000000,0.000372120000000,0.019159265000000,0.000091231000000,0.000083725000000 +0.000019146500000,0.000704762000000,0.000038688000000,0.000013554333333,0.000056071000000,0.000037108000000,0.000342885000000,0.000108614000000,0.000045404000000,0.000031972000000,0.000157206000000,0.000330243000000,0.000291922000000,0.000352367000000,0.019692204000000,0.000345255000000,0.000366194000000,0.018240748000000,0.000093206000000,0.000084120000000 +0.000018751500000,0.000670391000000,0.000038293000000,0.000013027666667,0.000056070000000,0.000037503000000,0.000383181000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000083725000000,0.000292712000000,0.000365008000000,0.000413996000000,0.019308599000000,0.000458639000000,0.000370540000000,0.019603314000000,0.000090046000000,0.000147725000000 +0.000019936500000,0.000738737000000,0.000037898000000,0.000013554666667,0.000056071000000,0.000050540000000,0.000344861000000,0.000077404000000,0.000045799000000,0.000032762000000,0.000082145000000,0.000394243000000,0.000295083000000,0.000347626000000,0.019501389000000,0.000346046000000,0.000633256000000,0.019656648000000,0.000090046000000,0.000080960000000 +0.000019541500000,0.000709502000000,0.000082145000000,0.000013028000000,0.000055280000000,0.000037503000000,0.000560169000000,0.000076614000000,0.000045404000000,0.000032367000000,0.000082144000000,0.000293107000000,0.000294293000000,0.000415182000000,0.020231857000000,0.000346835000000,0.000368959000000,0.018814377000000,0.000088071000000,0.000082935000000 +0.000019541500000,0.000766391000000,0.000038292000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000413207000000,0.000077009000000,0.000045009000000,0.000031576000000,0.000081750000000,0.000294688000000,0.000340515000000,0.000346441000000,0.020016944000000,0.000349997000000,0.000373700000000,0.018926179000000,0.000092416000000,0.000081354000000 +0.000018949000000,0.000697650000000,0.000051330000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000353552000000,0.000076614000000,0.000060416000000,0.000044614000000,0.000084120000000,0.000327083000000,0.000291922000000,0.000417551000000,0.019736846000000,0.000353157000000,0.000368565000000,0.018816748000000,0.000092812000000,0.000080565000000 +0.000018553500000,0.000688959000000,0.000039873000000,0.000013027666667,0.000058046000000,0.000037898000000,0.000348416000000,0.000076614000000,0.000043823000000,0.000031181000000,0.000082144000000,0.000290737000000,0.000290737000000,0.000347231000000,0.019357981000000,0.000427033000000,0.000369355000000,0.018795414000000,0.000162737000000,0.000084910000000 +0.000019739000000,0.000752168000000,0.000040268000000,0.000023826000000,0.000060416000000,0.000036317000000,0.000347231000000,0.000109799000000,0.000046590000000,0.000030786000000,0.000084515000000,0.000293897000000,0.000297849000000,0.000421897000000,0.019356007000000,0.000347626000000,0.000368564000000,0.018543760000000,0.000090046000000,0.000119280000000 +0.000019541500000,0.000720565000000,0.000040269000000,0.000013554666667,0.000056861000000,0.000037108000000,0.000348417000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000081750000000,0.000366589000000,0.000293503000000,0.000348416000000,0.019190870000000,0.000383181000000,0.000376466000000,0.018830179000000,0.000091627000000,0.000082145000000 +0.000035739000000,0.000967873000000,0.000040268000000,0.000014081000000,0.000055676000000,0.000037898000000,0.000389898000000,0.000079775000000,0.000045404000000,0.000033552000000,0.000081750000000,0.000291527000000,0.000332614000000,0.000417157000000,0.021497239000000,0.000349207000000,0.000367379000000,0.019390377000000,0.000092812000000,0.000082540000000 +0.000018751500000,0.000723724000000,0.000040269000000,0.000013027666667,0.000056861000000,0.000037108000000,0.000343280000000,0.000074244000000,0.000044219000000,0.000032367000000,0.000086095000000,0.000362244000000,0.000293502000000,0.000354737000000,0.020285586000000,0.000348811000000,0.000383181000000,0.018581291000000,0.000089256000000,0.000080959000000 +0.000019541500000,0.000700415000000,0.000041058000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000378046000000,0.000075428000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000291923000000,0.000291132000000,0.000419132000000,0.020328647000000,0.000351182000000,0.000366194000000,0.021919955000000,0.000092021000000,0.000082935000000 +0.000020332000000,0.000715428000000,0.000039873000000,0.000013554333333,0.000056861000000,0.000071873000000,0.000346836000000,0.000074639000000,0.000046194000000,0.000032367000000,0.000084910000000,0.000293502000000,0.000358688000000,0.000346441000000,0.019927660000000,0.000348811000000,0.000379626000000,0.021290622000000,0.000126392000000,0.000082934000000 +0.000019739000000,0.000713453000000,0.000039874000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000342885000000,0.000074243000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000325898000000,0.000290737000000,0.000345650000000,0.020152845000000,0.000349601000000,0.000372515000000,0.019632154000000,0.000092416000000,0.000083725000000 +0.000020134500000,0.000766391000000,0.000039873000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000402539000000,0.000108219000000,0.000046195000000,0.000031577000000,0.000084120000000,0.000297848000000,0.000328663000000,0.000754934000000,0.018605389000000,0.000346836000000,0.000403725000000,0.019816253000000,0.000089651000000,0.000114540000000 +0.000018751500000,0.000713058000000,0.000039873000000,0.000013027666667,0.000089651000000,0.000036712000000,0.000351972000000,0.000075428000000,0.000045404000000,0.000050935000000,0.000084515000000,0.000316416000000,0.000295083000000,0.000362243000000,0.018830970000000,0.000400960000000,0.000372515000000,0.018719167000000,0.000092416000000,0.000080169000000 +0.000018553500000,0.000709897000000,0.000039873000000,0.000013027666667,0.000057256000000,0.000037108000000,0.000391873000000,0.000074244000000,0.000045009000000,0.000030786000000,0.000081750000000,0.000300614000000,0.000297453000000,0.000355527000000,0.018552451000000,0.000350787000000,0.000406886000000,0.018371118000000,0.000093207000000,0.000080170000000 +0.000019541500000,0.000675922000000,0.000041059000000,0.000012896000000,0.000073059000000,0.000037898000000,0.000343676000000,0.000076614000000,0.000045799000000,0.000030787000000,0.000084910000000,0.000294293000000,0.000327478000000,0.000385552000000,0.019528253000000,0.000345651000000,0.000367379000000,0.019047463000000,0.000092417000000,0.000080959000000 +0.000018751500000,0.000743477000000,0.000039873000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000344860000000,0.000076219000000,0.000044219000000,0.000032762000000,0.000088071000000,0.000327873000000,0.000295478000000,0.000347626000000,0.019586326000000,0.000383182000000,0.000449947000000,0.019293191000000,0.000092021000000,0.000081355000000 +0.000028430500000,0.000745058000000,0.000041849000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000344860000000,0.000074244000000,0.000045404000000,0.000031182000000,0.000082145000000,0.000293898000000,0.000293898000000,0.000404515000000,0.018869290000000,0.000345651000000,0.000384762000000,0.018361637000000,0.000176565000000,0.000082145000000 +0.000019937000000,0.000727280000000,0.000041849000000,0.000013027666667,0.000055675000000,0.000038293000000,0.000389898000000,0.000074243000000,0.000045404000000,0.000032367000000,0.000113355000000,0.000291922000000,0.000310095000000,0.000352762000000,0.019037982000000,0.000355528000000,0.000377650000000,0.018514525000000,0.000141404000000,0.000082540000000 +0.000019541500000,0.000677502000000,0.000041059000000,0.000012896000000,0.000056465000000,0.000037107000000,0.000623379000000,0.000147725000000,0.000043824000000,0.000032762000000,0.000082145000000,0.000325897000000,0.000293503000000,0.000395824000000,0.018486871000000,0.000351971000000,0.000369354000000,0.019290821000000,0.000090046000000,0.000116515000000 +0.000018751500000,0.000688169000000,0.000039873000000,0.000014081333333,0.000055675000000,0.000036713000000,0.000366194000000,0.000074639000000,0.000044614000000,0.000033157000000,0.000084120000000,0.000299034000000,0.000326293000000,0.000357107000000,0.018384945000000,0.000486688000000,0.000371725000000,0.018149883000000,0.000091231000000,0.000083330000000 +0.000020134000000,0.000727675000000,0.000041454000000,0.000013027666667,0.000111379000000,0.000050145000000,0.000348021000000,0.000077799000000,0.000044218000000,0.000032762000000,0.000112170000000,0.000329453000000,0.000291922000000,0.000387922000000,0.018597093000000,0.000350392000000,0.000367379000000,0.019792944000000,0.000093207000000,0.000082935000000 +0.000018751500000,0.000753749000000,0.000040663000000,0.000013027666667,0.000057651000000,0.000036713000000,0.000473650000000,0.000077009000000,0.000045009000000,0.000030392000000,0.000084120000000,0.000297454000000,0.000295083000000,0.000398984000000,0.018887858000000,0.000348417000000,0.000378046000000,0.018996895000000,0.000125206000000,0.000082540000000 +0.000019541500000,0.000705156000000,0.000040268000000,0.000013554666667,0.000057256000000,0.000037898000000,0.000442441000000,0.000076614000000,0.000045009000000,0.000031972000000,0.000103083000000,0.000291923000000,0.000305355000000,0.000426638000000,0.018906031000000,0.000385552000000,0.000370145000000,0.018697438000000,0.000108219000000,0.000082145000000 +0.000019739500000,0.000690935000000,0.000041058000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000372120000000,0.000077404000000,0.000045009000000,0.000086095000000,0.000193552000000,0.000325898000000,0.000293898000000,0.000345651000000,0.018605390000000,0.000347231000000,0.000403330000000,0.018832944000000,0.000090046000000,0.000080564000000 +0.000018751500000,0.000722539000000,0.000039874000000,0.000013554333333,0.000055675000000,0.000038293000000,0.000376861000000,0.000079379000000,0.000044219000000,0.000031577000000,0.000096762000000,0.000292712000000,0.000325502000000,0.000393453000000,0.018348600000000,0.000384367000000,0.000368169000000,0.018445390000000,0.000090046000000,0.000080960000000 +0.000019541500000,0.000750984000000,0.000041058000000,0.000013554666667,0.000055675000000,0.000036713000000,0.000370935000000,0.000076614000000,0.000044219000000,0.000033157000000,0.000082145000000,0.000291923000000,0.000292317000000,0.000346046000000,0.019008352000000,0.000346046000000,0.000376466000000,0.019111859000000,0.000092022000000,0.000132713000000 +0.000029813000000,0.000963132000000,0.000041058000000,0.000012896000000,0.000057256000000,0.000036713000000,0.000378046000000,0.000076614000000,0.000043823000000,0.000031577000000,0.000137453000000,0.000299033000000,0.000290738000000,0.000347626000000,0.018434328000000,0.000399379000000,0.000351181000000,0.018857044000000,0.000111379000000,0.000084120000000 +0.000018751500000,0.000720169000000,0.000041454000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000363428000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000294688000000,0.000328663000000,0.000346441000000,0.019103957000000,0.000348022000000,0.000418342000000,0.018600253000000,0.000092811000000,0.000082539000000 +0.000019739000000,0.000720564000000,0.000041453000000,0.000013027666667,0.000089256000000,0.000036712000000,0.000397009000000,0.000074638000000,0.000044219000000,0.000031182000000,0.000084515000000,0.000328663000000,0.000293897000000,0.000346836000000,0.018543365000000,0.000343280000000,0.000348021000000,0.019008352000000,0.000091627000000,0.000080565000000 +0.000019146500000,0.000674737000000,0.000040663000000,0.000024879666667,0.000055676000000,0.000037503000000,0.000367774000000,0.000077404000000,0.000045800000000,0.000031971000000,0.000118095000000,0.000291132000000,0.000292712000000,0.000416762000000,0.019280550000000,0.000397799000000,0.000391083000000,0.019192450000000,0.000092022000000,0.000080960000000 +0.000018948500000,0.000720169000000,0.000040268000000,0.000020928666667,0.000056861000000,0.000072663000000,0.000366984000000,0.000076614000000,0.000045799000000,0.000032762000000,0.000081750000000,0.000326293000000,0.000292318000000,0.000346836000000,0.018992945000000,0.000355922000000,0.000349996000000,0.019494277000000,0.000092811000000,0.000080564000000 +0.000019739000000,0.000713058000000,0.000041058000000,0.000021587333333,0.000056071000000,0.000039083000000,0.000465750000000,0.000076614000000,0.000045009000000,0.000032367000000,0.000082145000000,0.000354342000000,0.000329453000000,0.000441255000000,0.018848747000000,0.000346046000000,0.000348416000000,0.019183760000000,0.000092811000000,0.000084910000000 +0.000019541500000,0.000709107000000,0.000039873000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000372120000000,0.000074639000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000293503000000,0.000326293000000,0.000349206000000,0.018822278000000,0.000382391000000,0.000347626000000,0.018502673000000,0.000092811000000,0.000080960000000 +0.000019541500000,0.000685009000000,0.000040268000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000368169000000,0.000074639000000,0.000046194000000,0.000031182000000,0.000081749000000,0.000390293000000,0.000301008000000,0.000382786000000,0.018364402000000,0.000345651000000,0.000349996000000,0.018266031000000,0.000125996000000,0.000080960000000 +0.000018949000000,0.000683428000000,0.000040268000000,0.000013554666667,0.000055281000000,0.000037107000000,0.000409255000000,0.000076614000000,0.000045404000000,0.000032762000000,0.000082145000000,0.000340515000000,0.000291922000000,0.000354737000000,0.018877587000000,0.000348416000000,0.000379626000000,0.019423957000000,0.000092812000000,0.000082935000000 +0.000018554000000,0.000749008000000,0.000039874000000,0.000012896000000,0.000056071000000,0.000039478000000,0.000363429000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000081750000000,0.000296269000000,0.000477601000000,0.000482737000000,0.018996500000000,0.000349996000000,0.000351971000000,0.018508994000000,0.000092416000000,0.000080169000000 +0.000019936500000,0.000715823000000,0.000039873000000,0.000012896000000,0.000057651000000,0.000036713000000,0.000374490000000,0.000076219000000,0.000045799000000,0.000031182000000,0.000208169000000,0.000305354000000,0.000300614000000,0.000347231000000,0.018960549000000,0.000387527000000,0.000592169000000,0.018249044000000,0.000092812000000,0.000080564000000 +0.000019739000000,0.000724514000000,0.000107824000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000372515000000,0.000076219000000,0.000044219000000,0.000031577000000,0.000137848000000,0.000291922000000,0.000327082000000,0.000379231000000,0.019173488000000,0.000348022000000,0.000354343000000,0.018516106000000,0.000092021000000,0.000082145000000 +0.000018554000000,0.000688169000000,0.000041058000000,0.000013554333333,0.000056861000000,0.000051330000000,0.000349207000000,0.000075429000000,0.000046195000000,0.000031577000000,0.000099922000000,0.000333799000000,0.000297453000000,0.000354342000000,0.018543364000000,0.000348811000000,0.000347626000000,0.018569043000000,0.000092416000000,0.000080564000000 +0.000018751500000,0.000790095000000,0.000040268000000,0.000012896000000,0.000055281000000,0.000037108000000,0.000379626000000,0.000074638000000,0.000043824000000,0.000031972000000,0.000084120000000,0.000296663000000,0.000315626000000,0.000382787000000,0.018795809000000,0.000390687000000,0.000357108000000,0.018619217000000,0.000109404000000,0.000228712000000 +0.000019542000000,0.000815379000000,0.000040663000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000343675000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000294293000000,0.000291132000000,0.000356317000000,0.018788698000000,0.000350391000000,0.000380021000000,0.018672945000000,0.000092416000000,0.000135478000000 +0.000019739000000,0.000707922000000,0.000040268000000,0.000026459666667,0.000056465000000,0.000036712000000,0.000387527000000,0.000076614000000,0.000045799000000,0.000031972000000,0.000116120000000,0.000292317000000,0.000290737000000,0.000370540000000,0.018494772000000,0.000350786000000,0.000346836000000,0.018937241000000,0.000092021000000,0.000084120000000 +0.000019541500000,0.000817354000000,0.000040269000000,0.000013686000000,0.000055281000000,0.000037503000000,0.000355527000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000081750000000,0.000299429000000,0.000377256000000,0.000347231000000,0.021008943000000,0.000342886000000,0.000481947000000,0.019613586000000,0.000089255000000,0.000082935000000 +0.000019541500000,0.000705157000000,0.000041059000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000526589000000,0.000075033000000,0.000045009000000,0.000030786000000,0.000082145000000,0.000368169000000,0.000294687000000,0.000355527000000,0.019058130000000,0.000692515000000,0.000346836000000,0.018480550000000,0.000092812000000,0.000152466000000 +0.000018751500000,0.000699626000000,0.000040268000000,0.000013554333333,0.000055675000000,0.000037898000000,0.000349207000000,0.000074639000000,0.000044614000000,0.000030787000000,0.000082145000000,0.000290738000000,0.000294293000000,0.000352761000000,0.019769635000000,0.000362244000000,0.000524218000000,0.019167167000000,0.000092416000000,0.000081354000000 +0.000018949000000,0.000707922000000,0.000040663000000,0.000013027666667,0.000090441000000,0.000037503000000,0.000528169000000,0.000078195000000,0.000043824000000,0.000031577000000,0.000084120000000,0.000290738000000,0.000295478000000,0.000346836000000,0.019156895000000,0.000347231000000,0.000349206000000,0.019352450000000,0.000092417000000,0.000082935000000 +0.000020134000000,0.000730440000000,0.000041059000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000381206000000,0.000076613000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000338145000000,0.000291922000000,0.000391082000000,0.019576056000000,0.000342885000000,0.000385157000000,0.018303958000000,0.000106638000000,0.000082540000000 +0.000018751000000,0.000711478000000,0.000040268000000,0.000014081000000,0.000055281000000,0.000037503000000,0.000346836000000,0.000076614000000,0.000045009000000,0.000031182000000,0.000082144000000,0.000295478000000,0.000365008000000,0.000354342000000,0.019425932000000,0.000346046000000,0.000348416000000,0.018989784000000,0.000090046000000,0.000082935000000 +0.000018751500000,0.000685798000000,0.000040663000000,0.000013027666667,0.000056071000000,0.000079380000000,0.000384367000000,0.000074638000000,0.000084515000000,0.000031972000000,0.000095181000000,0.000328268000000,0.000333404000000,0.000422688000000,0.020786524000000,0.000369750000000,0.000384761000000,0.019069191000000,0.000091627000000,0.000080960000000 +0.000019541500000,0.000685799000000,0.000040664000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000355132000000,0.000076219000000,0.000113750000000,0.000030787000000,0.000082145000000,0.000290342000000,0.000343281000000,0.000367774000000,0.020563709000000,0.000349206000000,0.000351182000000,0.018778031000000,0.000093996000000,0.000080564000000 +0.000019936500000,0.000723725000000,0.000041059000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000365404000000,0.000074639000000,0.000046590000000,0.000031181000000,0.000083725000000,0.000297453000000,0.000306540000000,0.000380811000000,0.019244204000000,0.000348416000000,0.000378441000000,0.020491413000000,0.000092812000000,0.000143380000000 +0.000018751500000,0.000847774000000,0.000042244000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000346441000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000084515000000,0.000326292000000,0.000294688000000,0.000352762000000,0.020276894000000,0.000347231000000,0.000349601000000,0.018497933000000,0.000110194000000,0.000080959000000 +0.000020134500000,0.000759280000000,0.000040268000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000349996000000,0.000074244000000,0.000043824000000,0.000030787000000,0.000084120000000,0.000293503000000,0.000332613000000,0.000478391000000,0.019159660000000,0.000348416000000,0.000381996000000,0.019017043000000,0.000147724000000,0.000082145000000 +0.000018751000000,0.000759675000000,0.000039873000000,0.000012896000000,0.000056465000000,0.000037503000000,0.000398194000000,0.000074243000000,0.000046194000000,0.000030787000000,0.000084515000000,0.000292317000000,0.000294687000000,0.000347231000000,0.019279365000000,0.000346046000000,0.000346441000000,0.018288550000000,0.000092811000000,0.000080959000000 +0.000018554000000,0.000686589000000,0.000041454000000,0.000013423000000,0.000070688000000,0.000037898000000,0.000364614000000,0.000107824000000,0.000044219000000,0.000030787000000,0.000084910000000,0.000291527000000,0.000293502000000,0.000380021000000,0.019814277000000,0.000353552000000,0.000351972000000,0.018698229000000,0.000093207000000,0.000082540000000 +0.000019541500000,0.000886490000000,0.000040664000000,0.000013422666667,0.000055676000000,0.000036713000000,0.000402145000000,0.000078984000000,0.000044614000000,0.000046590000000,0.000098737000000,0.000297058000000,0.000308515000000,0.000346441000000,0.019105142000000,0.000348812000000,0.000347626000000,0.019094081000000,0.000092021000000,0.000082935000000 +0.000019146500000,0.000725699000000,0.000041849000000,0.000013554333333,0.000055676000000,0.000036318000000,0.000369749000000,0.000077404000000,0.000043824000000,0.000031577000000,0.000082144000000,0.000329058000000,0.000290737000000,0.000402145000000,0.020257931000000,0.000351972000000,0.000348416000000,0.018367958000000,0.000092812000000,0.000080960000000 +0.000020134000000,0.000751774000000,0.000040268000000,0.000013027666667,0.000056861000000,0.000036712000000,0.000378835000000,0.000074639000000,0.000044219000000,0.000031576000000,0.000084515000000,0.000291922000000,0.000361848000000,0.000346836000000,0.021700696000000,0.000349206000000,0.000431379000000,0.018977537000000,0.000089651000000,0.000095182000000 +0.000019541500000,0.000762045000000,0.000040664000000,0.000012896000000,0.000055675000000,0.000070688000000,0.000367379000000,0.000074243000000,0.000043824000000,0.000031182000000,0.000083725000000,0.000290737000000,0.000293897000000,0.000399379000000,0.020272548000000,0.000348021000000,0.000354737000000,0.018343463000000,0.000126786000000,0.000082934000000 +0.000018751500000,0.000698046000000,0.000039873000000,0.000012896000000,0.000056070000000,0.000037898000000,0.000374095000000,0.000110589000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000381601000000,0.000292317000000,0.000349206000000,0.019361142000000,0.000350392000000,0.000380021000000,0.018949093000000,0.000090836000000,0.000083725000000 +0.000019541500000,0.000689354000000,0.000040268000000,0.000013027666667,0.000056860000000,0.000036712000000,0.000374490000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000082145000000,0.000296664000000,0.000330638000000,0.000347626000000,0.020767955000000,0.000348416000000,0.000361058000000,0.021868202000000,0.000090441000000,0.000084120000000 +0.000028825500000,0.000757305000000,0.000040268000000,0.000024221333333,0.000056071000000,0.000036712000000,0.000365799000000,0.000075034000000,0.000043824000000,0.000031972000000,0.000118095000000,0.000329058000000,0.000293107000000,0.000354737000000,0.019917783000000,0.000349997000000,0.000386737000000,0.019902771000000,0.000092021000000,0.000082935000000 +0.000026060000000,0.000772317000000,0.000041849000000,0.000013554333333,0.000058441000000,0.000036713000000,0.000371725000000,0.000077404000000,0.000044614000000,0.000031181000000,0.000081750000000,0.000295083000000,0.000314836000000,0.000363824000000,0.019390772000000,0.000346045000000,0.000357897000000,0.018789488000000,0.000090441000000,0.000082935000000 +0.000019541500000,0.000799181000000,0.000041454000000,0.000012896000000,0.000055281000000,0.000037898000000,0.000373700000000,0.000078589000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000294688000000,0.000291133000000,0.000381207000000,0.019912647000000,0.000349206000000,0.000384367000000,0.021717288000000,0.000092021000000,0.000115330000000 +0.000019936500000,0.001198984000000,0.000040269000000,0.000012896000000,0.000055676000000,0.000038293000000,0.000406490000000,0.000076614000000,0.000045404000000,0.000030787000000,0.000081750000000,0.000374885000000,0.000290738000000,0.000345651000000,0.019316895000000,0.000346836000000,0.000347626000000,0.020125585000000,0.000090046000000,0.000083330000000 +0.000019541500000,0.000721354000000,0.000040268000000,0.000013686000000,0.000056861000000,0.000037107000000,0.000364218000000,0.000074243000000,0.000045799000000,0.000031182000000,0.000081354000000,0.000295478000000,0.000584663000000,0.000388318000000,0.019634920000000,0.000349602000000,0.000423478000000,0.018757488000000,0.000126787000000,0.000080960000000 +0.000028628000000,0.000744663000000,0.000040663000000,0.000013554333333,0.000056466000000,0.000037503000000,0.000468120000000,0.000112564000000,0.000044219000000,0.000092812000000,0.000086096000000,0.000296268000000,0.000307725000000,0.000348812000000,0.019289635000000,0.000343280000000,0.000351182000000,0.019059710000000,0.000092416000000,0.000081750000000 +0.000018554000000,0.000738342000000,0.000039873000000,0.000013818000000,0.000057256000000,0.000037503000000,0.000368960000000,0.000076614000000,0.000044614000000,0.000067528000000,0.000084121000000,0.000294292000000,0.000360268000000,0.000389503000000,0.020023265000000,0.000347231000000,0.000382786000000,0.018396797000000,0.000090046000000,0.000084120000000 +0.000019739500000,0.000681058000000,0.000040269000000,0.000013027666667,0.000057256000000,0.000055280000000,0.000369749000000,0.000077799000000,0.000044219000000,0.000047774000000,0.000205799000000,0.000292317000000,0.000292317000000,0.000356713000000,0.020199462000000,0.000346046000000,0.000350391000000,0.018666229000000,0.000093207000000,0.000081355000000 +0.000019541500000,0.000706737000000,0.000039873000000,0.000013027666667,0.000057256000000,0.000036712000000,0.000366194000000,0.000076614000000,0.000043824000000,0.000045799000000,0.000084120000000,0.000332219000000,0.000311675000000,0.000381601000000,0.019728549000000,0.000348021000000,0.000346441000000,0.018697043000000,0.000095972000000,0.000083330000000 +0.000018554000000,0.000722539000000,0.000040664000000,0.000019480333333,0.000095972000000,0.000036713000000,0.000344071000000,0.000079379000000,0.000044614000000,0.000031577000000,0.000081749000000,0.000291132000000,0.000292318000000,0.000355922000000,0.019719463000000,0.000344466000000,0.000454292000000,0.018955019000000,0.000092812000000,0.000167478000000 +0.000018751500000,0.000710688000000,0.000041058000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000468910000000,0.000074243000000,0.000046194000000,0.000031577000000,0.000082145000000,0.000291923000000,0.000292712000000,0.000387132000000,0.019753833000000,0.000343281000000,0.000348416000000,0.019961635000000,0.000125601000000,0.000080959000000 +0.000019739000000,0.000681057000000,0.000041058000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000344861000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000082540000000,0.000325108000000,0.000361453000000,0.000346441000000,0.019795709000000,0.000377651000000,0.000350392000000,0.018412204000000,0.000092811000000,0.000083330000000 +0.000019739000000,0.000686983000000,0.000040664000000,0.000013554333333,0.000056861000000,0.000037503000000,0.000348417000000,0.000111774000000,0.000044614000000,0.000030392000000,0.000084120000000,0.000293503000000,0.000292317000000,0.000357108000000,0.019848647000000,0.000343281000000,0.000346440000000,0.018533883000000,0.000092812000000,0.000082540000000 +0.000019739000000,0.000750589000000,0.000040268000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000378441000000,0.000074638000000,0.000044219000000,0.000031972000000,0.000226343000000,0.000328268000000,0.000295083000000,0.000353947000000,0.019501784000000,0.000349206000000,0.000374885000000,0.019350081000000,0.000092812000000,0.000082935000000 +0.000019541500000,0.000738737000000,0.000040663000000,0.000013027666667,0.000055280000000,0.000037108000000,0.000348417000000,0.000076614000000,0.000086885000000,0.000030787000000,0.000084910000000,0.000292318000000,0.000307725000000,0.000346836000000,0.019406574000000,0.000349206000000,0.000349206000000,0.018845982000000,0.000092811000000,0.000080565000000 +0.000018554000000,0.000760861000000,0.000040268000000,0.000012896000000,0.000057255000000,0.000036712000000,0.000397009000000,0.000077799000000,0.000044218000000,0.000030392000000,0.000082145000000,0.000293897000000,0.000295083000000,0.000359873000000,0.019952154000000,0.000354737000000,0.000394243000000,0.019704055000000,0.000090046000000,0.000100318000000 +0.000025862500000,0.000676317000000,0.000039874000000,0.000013554333333,0.000056860000000,0.000038688000000,0.000344466000000,0.000077009000000,0.000044218000000,0.000031577000000,0.000084515000000,0.000333404000000,0.000380021000000,0.000346046000000,0.020225932000000,0.000440071000000,0.000349206000000,0.019023760000000,0.000089256000000,0.000094787000000 +0.000019739000000,0.000688959000000,0.000040663000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000497354000000,0.000074639000000,0.000045799000000,0.000030787000000,0.000081749000000,0.000291133000000,0.000291133000000,0.000440070000000,0.019337833000000,0.000345651000000,0.000494589000000,0.018644105000000,0.000159182000000,0.000081355000000 +0.000018554000000,0.000706342000000,0.000040663000000,0.000013027666667,0.000059231000000,0.000038292000000,0.000391873000000,0.000074638000000,0.000043824000000,0.000030787000000,0.000082144000000,0.000290737000000,0.000293503000000,0.000346441000000,0.020020894000000,0.000347231000000,0.000351182000000,0.019171513000000,0.000089651000000,0.000081355000000 +0.000018751500000,0.000709107000000,0.000041453000000,0.000035941333333,0.000059231000000,0.000036712000000,0.000351182000000,0.000129157000000,0.000044219000000,0.000030787000000,0.000100318000000,0.000305750000000,0.000310885000000,0.000397404000000,0.019235117000000,0.000346441000000,0.000382787000000,0.018827414000000,0.000092416000000,0.000082540000000 +0.000019739000000,0.000713453000000,0.000039874000000,0.000019348666667,0.000060811000000,0.000036713000000,0.000382786000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000292713000000,0.000295478000000,0.000346441000000,0.019613587000000,0.000349207000000,0.000347626000000,0.019000846000000,0.000092022000000,0.000082935000000 +0.000019936500000,0.000675527000000,0.000041058000000,0.000014344333333,0.000063182000000,0.000036713000000,0.000349997000000,0.000078194000000,0.000043824000000,0.000030787000000,0.000082145000000,0.000364219000000,0.000377651000000,0.000380416000000,0.019403413000000,0.000344465000000,0.000415576000000,0.018554427000000,0.000092417000000,0.000083330000000 +0.000018949000000,0.000721749000000,0.000040663000000,0.000030147333333,0.000078984000000,0.000036713000000,0.000355132000000,0.000077009000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000293503000000,0.000294688000000,0.000348022000000,0.019706031000000,0.000353947000000,0.000349601000000,0.019766475000000,0.000092811000000,0.000171429000000 +0.000020134000000,0.000722540000000,0.000040268000000,0.000017900000000,0.000074638000000,0.000038688000000,0.000381602000000,0.000076614000000,0.000043824000000,0.000031181000000,0.000081355000000,0.000295083000000,0.000295478000000,0.000380811000000,0.019659414000000,0.000347627000000,0.000416366000000,0.018546920000000,0.000138243000000,0.000082935000000 +0.000018553500000,0.000716613000000,0.000039873000000,0.000013027666667,0.000070293000000,0.000037108000000,0.000352367000000,0.000075033000000,0.000046984000000,0.000031577000000,0.000099133000000,0.000673946000000,0.000305355000000,0.000352762000000,0.019405389000000,0.000347231000000,0.000348021000000,0.018219415000000,0.000092021000000,0.000087676000000 +0.000018554000000,0.000671576000000,0.000040269000000,0.000012896000000,0.000069108000000,0.000037503000000,0.000368564000000,0.000095577000000,0.000044219000000,0.000032762000000,0.000089651000000,0.000807873000000,0.000291528000000,0.000368959000000,0.020280055000000,0.000353157000000,0.000419527000000,0.019218130000000,0.000091626000000,0.000081750000000 +0.000019936500000,0.000707132000000,0.000040663000000,0.000012896000000,0.000055675000000,0.000037107000000,0.000346046000000,0.000227922000000,0.000044614000000,0.000032367000000,0.000086885000000,0.000511971000000,0.000329848000000,0.000347231000000,0.019452401000000,0.000347231000000,0.000345651000000,0.018548896000000,0.000092416000000,0.000080564000000 +0.000019146500000,0.000705551000000,0.000040663000000,0.000019743666667,0.000056861000000,0.000036713000000,0.000356318000000,0.000180910000000,0.000044614000000,0.000030787000000,0.000089256000000,0.000314441000000,0.000295083000000,0.000354737000000,0.019107117000000,0.000343280000000,0.000385156000000,0.018676501000000,0.000094392000000,0.000080170000000 +0.000019541500000,0.000913354000000,0.000039874000000,0.000013949666667,0.000055676000000,0.000050540000000,0.000424268000000,0.000168268000000,0.000044219000000,0.000031972000000,0.000086886000000,0.000856466000000,0.000290737000000,0.000439675000000,0.019543661000000,0.000349996000000,0.000353947000000,0.018400352000000,0.000092811000000,0.000104268000000 +0.000019936500000,0.000703971000000,0.000039873000000,0.000012896000000,0.000055280000000,0.000037503000000,0.000345651000000,0.000206194000000,0.000043823000000,0.000031182000000,0.000088860000000,0.000344071000000,0.000336564000000,0.000346836000000,0.019464648000000,0.000348021000000,0.000353157000000,0.018556797000000,0.000126392000000,0.000084120000000 +0.000018751500000,0.000772317000000,0.000060417000000,0.000013554666667,0.000056861000000,0.000037898000000,0.000381207000000,0.000200268000000,0.000045009000000,0.000031972000000,0.000089256000000,0.000295478000000,0.000291922000000,0.000345651000000,0.019351265000000,0.000351972000000,0.000348021000000,0.018880352000000,0.000092021000000,0.000082540000000 +0.000019739000000,0.000687379000000,0.000040664000000,0.000013554333333,0.000055676000000,0.000037503000000,0.000349996000000,0.000108614000000,0.000046984000000,0.000031577000000,0.000089651000000,0.000294687000000,0.000326293000000,0.000354342000000,0.019676005000000,0.000348811000000,0.000356318000000,0.018807660000000,0.000092416000000,0.000079774000000 +0.000018949000000,0.000744268000000,0.000041058000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000355132000000,0.000114145000000,0.000044614000000,0.000033157000000,0.000096762000000,0.000326688000000,0.000297453000000,0.000382392000000,0.019843907000000,0.000349602000000,0.000384762000000,0.019506130000000,0.000090836000000,0.000080565000000 +0.000018751500000,0.000755330000000,0.000061997000000,0.000012896000000,0.000102293000000,0.000036712000000,0.000400564000000,0.000078984000000,0.000044614000000,0.000031972000000,0.000089651000000,0.000334984000000,0.000296664000000,0.000355528000000,0.019183759000000,0.000343675000000,0.000347231000000,0.019081044000000,0.000088861000000,0.000079774000000 +0.000019541500000,0.000715033000000,0.000042639000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000343280000000,0.000081354000000,0.000045404000000,0.000049355000000,0.000087281000000,0.000567280000000,0.000376861000000,0.000761256000000,0.020472845000000,0.000402145000000,0.000739131000000,0.018632253000000,0.000093206000000,0.000083330000000 +0.000019344000000,0.000749008000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000383971000000,0.000131527000000,0.000045009000000,0.000045799000000,0.000086491000000,0.000396219000000,0.000293898000000,0.000804317000000,0.019932401000000,0.000352762000000,0.000577947000000,0.018994130000000,0.000092416000000,0.000163132000000 +0.000019541500000,0.000685403000000,0.000038293000000,0.000013028000000,0.000055281000000,0.000036713000000,0.000352762000000,0.000147330000000,0.000044614000000,0.000032762000000,0.000089256000000,0.000622193000000,0.000389898000000,0.001373601000000,0.019373389000000,0.000347231000000,0.000432169000000,0.018214674000000,0.000106639000000,0.000081354000000 +0.000018949000000,0.000767972000000,0.000038688000000,0.000028171666667,0.000056466000000,0.000036713000000,0.000355132000000,0.000115329000000,0.000044218000000,0.000031182000000,0.000089651000000,0.000309701000000,0.000307725000000,0.000758490000000,0.021291017000000,0.000345255000000,0.000383181000000,0.018991364000000,0.000092416000000,0.000082935000000 +0.000018751500000,0.000713058000000,0.000037503000000,0.000012896000000,0.000055675000000,0.000071478000000,0.000385947000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000086885000000,0.000290737000000,0.000293502000000,0.000645502000000,0.019568944000000,0.000349601000000,0.000351576000000,0.018530723000000,0.000092417000000,0.000080170000000 +0.000019541500000,0.000749799000000,0.000052911000000,0.000012896000000,0.000056070000000,0.000036712000000,0.000346836000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000120466000000,0.000291132000000,0.000726490000000,0.000455478000000,0.019510475000000,0.000385157000000,0.000381996000000,0.018473044000000,0.000090836000000,0.000081354000000 +0.000019739000000,0.000725700000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037107000000,0.000431379000000,0.000075824000000,0.000044219000000,0.000033552000000,0.000090046000000,0.000327478000000,0.000341700000000,0.000376070000000,0.019762129000000,0.000346836000000,0.000350391000000,0.018900106000000,0.000092416000000,0.000082935000000 +0.000018751500000,0.000686194000000,0.000038293000000,0.000013027666667,0.000056465000000,0.000037503000000,0.000349997000000,0.000095972000000,0.000044614000000,0.000031182000000,0.000086885000000,0.000295083000000,0.000294292000000,0.000437305000000,0.019607660000000,0.000383182000000,0.000384367000000,0.020236203000000,0.000092812000000,0.000080959000000 +0.000018949000000,0.000733601000000,0.000038293000000,0.000013027666667,0.000092021000000,0.000037108000000,0.000357503000000,0.000074638000000,0.000044218000000,0.000030786000000,0.000089256000000,0.000296268000000,0.000295873000000,0.000398194000000,0.019616747000000,0.000349997000000,0.000345651000000,0.019916598000000,0.000125601000000,0.000098737000000 +0.000037319500000,0.000868317000000,0.000037108000000,0.000012896000000,0.000060811000000,0.000037503000000,0.000413206000000,0.000077404000000,0.000045404000000,0.000031577000000,0.000089256000000,0.000329058000000,0.000378836000000,0.000425848000000,0.019600154000000,0.000346441000000,0.000383972000000,0.019084599000000,0.000088861000000,0.000082540000000 +0.000019739000000,0.000744268000000,0.000037898000000,0.000013554333333,0.000056466000000,0.000038293000000,0.000349207000000,0.000076614000000,0.000046194000000,0.000064367000000,0.000087281000000,0.000291132000000,0.000293898000000,0.000505255000000,0.019580006000000,0.000385157000000,0.000348021000000,0.018584056000000,0.000089256000000,0.000084120000000 +0.000019541500000,0.000781403000000,0.000037897000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000386342000000,0.000074244000000,0.000044218000000,0.000030787000000,0.000087676000000,0.000334194000000,0.000330639000000,0.000417947000000,0.019497043000000,0.000353552000000,0.000366589000000,0.019178624000000,0.000090441000000,0.000082935000000 +0.000019936500000,0.000771527000000,0.000038688000000,0.000012896000000,0.000056465000000,0.000036713000000,0.000344860000000,0.000074638000000,0.000044614000000,0.000030786000000,0.000110985000000,0.000290738000000,0.000295873000000,0.000368959000000,0.022258917000000,0.000347626000000,0.000352367000000,0.018758673000000,0.000092416000000,0.000083725000000 +0.000018949000000,0.000700416000000,0.000037898000000,0.000018031666667,0.000055676000000,0.000038293000000,0.000359082000000,0.000074243000000,0.000044614000000,0.000031972000000,0.000086885000000,0.000291923000000,0.000295478000000,0.000368565000000,0.021174474000000,0.000349996000000,0.000347231000000,0.018951463000000,0.000090046000000,0.000080959000000 +0.000019541500000,0.000757304000000,0.000041849000000,0.000013554333333,0.000055676000000,0.000057651000000,0.000379626000000,0.000145750000000,0.000044219000000,0.000030787000000,0.000088071000000,0.000337750000000,0.000326292000000,0.000367774000000,0.020090030000000,0.000345651000000,0.000362244000000,0.018998081000000,0.000090836000000,0.000165108000000 +0.000019739000000,0.000765206000000,0.000039478000000,0.000013027666667,0.000089651000000,0.000037108000000,0.000357898000000,0.000074638000000,0.000045009000000,0.000031972000000,0.000238589000000,0.000295873000000,0.000297848000000,0.000420712000000,0.019576846000000,0.000346441000000,0.000347231000000,0.018937636000000,0.000192367000000,0.000082540000000 +0.000018949000000,0.000718194000000,0.000038293000000,0.000013554333333,0.000055281000000,0.000036713000000,0.000437700000000,0.000082145000000,0.000045404000000,0.000032367000000,0.000121256000000,0.000297453000000,0.000292317000000,0.000368170000000,0.019473340000000,0.000342885000000,0.000407675000000,0.018153834000000,0.000089256000000,0.000082540000000 +0.000019344000000,0.000754934000000,0.000037898000000,0.000013554666667,0.000056071000000,0.000037897000000,0.000343281000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000089256000000,0.000308515000000,0.000294292000000,0.000494194000000,0.019632945000000,0.000398589000000,0.000346441000000,0.021812102000000,0.000090836000000,0.000080169000000 +0.000019541500000,0.000685799000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037898000000,0.000348811000000,0.000074244000000,0.000046984000000,0.000031182000000,0.000089256000000,0.000295083000000,0.000291527000000,0.000370145000000,0.019309389000000,0.000347626000000,0.000394638000000,0.018716007000000,0.000092417000000,0.000082145000000 +0.000019542000000,0.000777848000000,0.000038688000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000450737000000,0.000077009000000,0.000045009000000,0.000030786000000,0.000088466000000,0.000325107000000,0.000359477000000,0.000419133000000,0.019698524000000,0.000349601000000,0.000345256000000,0.020947709000000,0.000090046000000,0.000080565000000 +0.000018751500000,0.000755330000000,0.000038293000000,0.000013554666667,0.000057256000000,0.000037503000000,0.000349602000000,0.000076613000000,0.000044219000000,0.000031577000000,0.000086885000000,0.000291922000000,0.000290737000000,0.000376071000000,0.019641635000000,0.000387527000000,0.000443230000000,0.019076302000000,0.000092811000000,0.000080564000000 +0.000026850000000,0.000741502000000,0.000039083000000,0.000012896000000,0.000055676000000,0.000037897000000,0.000396218000000,0.000076614000000,0.000044219000000,0.000046589000000,0.000086886000000,0.000292317000000,0.000294687000000,0.000387133000000,0.019294376000000,0.000347231000000,0.000350392000000,0.018809241000000,0.000089651000000,0.000113355000000 +0.000018751500000,0.000759280000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000351182000000,0.000074244000000,0.000045009000000,0.000032367000000,0.000089651000000,0.000328663000000,0.000349601000000,0.000368170000000,0.019554722000000,0.000351181000000,0.000381996000000,0.019009538000000,0.000092417000000,0.000081354000000 +0.000018949000000,0.000688564000000,0.000037502000000,0.000036468000000,0.000074639000000,0.000038688000000,0.000344070000000,0.000074638000000,0.000044219000000,0.000031577000000,0.000087280000000,0.000315626000000,0.000293108000000,0.000366984000000,0.019153340000000,0.000379231000000,0.000351181000000,0.018638969000000,0.000092021000000,0.000083330000000 +0.000019541500000,0.000681848000000,0.000053700000000,0.000019085333333,0.000056070000000,0.000036712000000,0.000402144000000,0.000074639000000,0.000045404000000,0.000031577000000,0.000086885000000,0.000312071000000,0.000328268000000,0.000375675000000,0.019712351000000,0.000346046000000,0.000384366000000,0.018848747000000,0.000093207000000,0.000082540000000 +0.000018949000000,0.000761650000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000050540000000,0.000349996000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000091626000000,0.000308515000000,0.000293503000000,0.000370539000000,0.019688253000000,0.000346836000000,0.000346836000000,0.019168352000000,0.000092022000000,0.000080565000000 +0.000019936500000,0.001138934000000,0.000038293000000,0.000013027666667,0.000056070000000,0.000036713000000,0.000540021000000,0.000076614000000,0.000045009000000,0.000032762000000,0.000087280000000,0.000308910000000,0.000290342000000,0.000377651000000,0.020632450000000,0.000347231000000,0.000349996000000,0.018824648000000,0.000090046000000,0.000079774000000 +0.000019541500000,0.000709502000000,0.000038293000000,0.000013027666667,0.000076219000000,0.000036713000000,0.000382787000000,0.000075034000000,0.000045009000000,0.000031972000000,0.000088861000000,0.000420317000000,0.000333404000000,0.000374490000000,0.020182475000000,0.000406095000000,0.000346836000000,0.019657833000000,0.000123627000000,0.000101898000000 +0.000018751500000,0.000747033000000,0.000037503000000,0.000013554333333,0.000070293000000,0.000037503000000,0.000351577000000,0.000076219000000,0.000084515000000,0.000030787000000,0.000089256000000,0.000314441000000,0.000292318000000,0.000585058000000,0.020240154000000,0.000348811000000,0.000355528000000,0.018477785000000,0.000089651000000,0.000236614000000 +0.000019541500000,0.000723329000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000037503000000,0.000382392000000,0.000076218000000,0.000046194000000,0.000031181000000,0.000087676000000,0.000314441000000,0.000291922000000,0.000425848000000,0.019260796000000,0.000349206000000,0.000382392000000,0.018419315000000,0.000093207000000,0.000102293000000 +0.000019541500000,0.000673157000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000346836000000,0.000075034000000,0.000080170000000,0.000034343000000,0.000087281000000,0.000311675000000,0.000312861000000,0.000445996000000,0.019530624000000,0.000349206000000,0.000350787000000,0.018849142000000,0.000092811000000,0.000098738000000 +0.000018949000000,0.000669206000000,0.000037503000000,0.000013554666667,0.000091626000000,0.000037108000000,0.000344860000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000089255000000,0.000351181000000,0.000292712000000,0.000593354000000,0.019283315000000,0.000557798000000,0.000418342000000,0.018897735000000,0.000094787000000,0.000082144000000 +0.000019936500000,0.000725304000000,0.000038293000000,0.000020402333333,0.000055280000000,0.000036713000000,0.000423082000000,0.000077800000000,0.000045799000000,0.000046589000000,0.000090046000000,0.000530145000000,0.000328268000000,0.000379626000000,0.019249734000000,0.000346836000000,0.000359082000000,0.018827809000000,0.000092811000000,0.000114539000000 +0.000020134000000,0.000761651000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000348811000000,0.000076219000000,0.000044218000000,0.000031577000000,0.000089256000000,0.000343676000000,0.000296268000000,0.000390293000000,0.020267808000000,0.000353948000000,0.000398589000000,0.018864945000000,0.000095182000000,0.000083330000000 +0.000019541500000,0.000715823000000,0.000056071000000,0.000013027666667,0.000056466000000,0.000037108000000,0.000378046000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000088860000000,0.000314836000000,0.000291132000000,0.000367379000000,0.020351561000000,0.000348811000000,0.000347626000000,0.019103957000000,0.000090046000000,0.000080960000000 +0.000019146500000,0.000675922000000,0.000039873000000,0.000013027666667,0.000055676000000,0.000051725000000,0.000346836000000,0.000092021000000,0.000096762000000,0.000031182000000,0.000089256000000,0.000315626000000,0.000306144000000,0.000368169000000,0.018973586000000,0.000347626000000,0.000416762000000,0.019244203000000,0.000092417000000,0.000081354000000 +0.000018949000000,0.000724120000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000036712000000,0.000345651000000,0.000076614000000,0.000043824000000,0.000032762000000,0.000088071000000,0.000312465000000,0.000345255000000,0.000366984000000,0.020154820000000,0.000351182000000,0.000348811000000,0.019582376000000,0.000093601000000,0.000083330000000 +0.000019739000000,0.000715033000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000416761000000,0.000074244000000,0.000045404000000,0.000031182000000,0.000089256000000,0.000310491000000,0.000328663000000,0.000390688000000,0.020325882000000,0.000385947000000,0.000419922000000,0.019788598000000,0.000090046000000,0.000081750000000 +0.000019936500000,0.000708712000000,0.000037897000000,0.000013686333333,0.000057256000000,0.000036712000000,0.000353157000000,0.000170244000000,0.000044219000000,0.000031182000000,0.000089651000000,0.000314441000000,0.000294292000000,0.000585058000000,0.019846278000000,0.000347231000000,0.000348811000000,0.019145043000000,0.000092416000000,0.000082935000000 +0.000018948500000,0.000707922000000,0.000037503000000,0.000012896000000,0.000074638000000,0.000038293000000,0.000429799000000,0.000080169000000,0.000045799000000,0.000031972000000,0.000090046000000,0.000317601000000,0.000292318000000,0.000383577000000,0.019339809000000,0.000350391000000,0.000381996000000,0.019977042000000,0.000092022000000,0.000130342000000 +0.000018751500000,0.000677898000000,0.000040663000000,0.000012896000000,0.000057256000000,0.000037108000000,0.000342490000000,0.000108219000000,0.000044614000000,0.000032367000000,0.000088861000000,0.000308910000000,0.000360663000000,0.000380416000000,0.019195216000000,0.000350391000000,0.000346046000000,0.018794228000000,0.000125601000000,0.000080564000000 +0.000019541500000,0.000730440000000,0.000038293000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000353947000000,0.000140613000000,0.000043823000000,0.000030787000000,0.000089255000000,0.000309305000000,0.000295083000000,0.000464564000000,0.019644006000000,0.000349997000000,0.000349997000000,0.018581291000000,0.000143380000000,0.000082935000000 +0.000019739000000,0.000752959000000,0.000106244000000,0.000019480333333,0.000055676000000,0.000037897000000,0.000438490000000,0.000074244000000,0.000045009000000,0.000051725000000,0.000086885000000,0.000308515000000,0.000325898000000,0.000382786000000,0.019498623000000,0.000384367000000,0.000384366000000,0.019145833000000,0.000090836000000,0.000083330000000 +0.000019541500000,0.000749799000000,0.000038688000000,0.000035809333333,0.000055281000000,0.000037503000000,0.000346046000000,0.000074243000000,0.000045009000000,0.000031972000000,0.000090441000000,0.000314441000000,0.000290737000000,0.000380021000000,0.019522327000000,0.000344861000000,0.000348021000000,0.018597093000000,0.000092811000000,0.000086886000000 +0.000019541500000,0.000681848000000,0.000037898000000,0.000025274666667,0.000055675000000,0.000036713000000,0.000392663000000,0.000074244000000,0.000046589000000,0.000031577000000,0.000086886000000,0.000310885000000,0.000292713000000,0.000461008000000,0.019278179000000,0.000347626000000,0.000349997000000,0.019677191000000,0.000090046000000,0.000080564000000 +0.000018949000000,0.000731231000000,0.000037502000000,0.000014476333333,0.000056861000000,0.000036713000000,0.000358688000000,0.000075824000000,0.000045404000000,0.000031182000000,0.000087281000000,0.000308120000000,0.000344071000000,0.000382786000000,0.020131512000000,0.000398589000000,0.000345256000000,0.018725488000000,0.000089256000000,0.000080170000000 +0.000018949000000,0.000707922000000,0.000037898000000,0.000018031666667,0.000056071000000,0.000037107000000,0.000358688000000,0.000118490000000,0.000044219000000,0.000031577000000,0.000089256000000,0.000312861000000,0.000299429000000,0.000424663000000,0.019224055000000,0.000347626000000,0.000365008000000,0.019187710000000,0.000131132000000,0.000081355000000 +0.000019541500000,0.000710293000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000037503000000,0.000403725000000,0.000076614000000,0.000045799000000,0.000031577000000,0.000089256000000,0.000309305000000,0.000294688000000,0.000609946000000,0.020302574000000,0.000369750000000,0.000353947000000,0.019029685000000,0.000109799000000,0.000079775000000 +0.000019146500000,0.000835527000000,0.000038293000000,0.000020270333333,0.000057256000000,0.000036713000000,0.000344861000000,0.000076219000000,0.000044219000000,0.000031577000000,0.000087281000000,0.000293898000000,0.000293108000000,0.000417947000000,0.019159265000000,0.000349996000000,0.000386737000000,0.018980302000000,0.000103873000000,0.000080564000000 +0.000018751500000,0.000742688000000,0.000038292000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000421108000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000089256000000,0.000340910000000,0.000295083000000,0.000382392000000,0.019677981000000,0.000348021000000,0.000347626000000,0.018993339000000,0.000092022000000,0.000083330000000 +0.000019739000000,0.000679872000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000037897000000,0.000343676000000,0.000074638000000,0.000045009000000,0.000030391000000,0.000086886000000,0.000291923000000,0.000326687000000,0.000379626000000,0.019637290000000,0.000347231000000,0.000390688000000,0.018585637000000,0.000090441000000,0.000083330000000 +0.000026652500000,0.000712663000000,0.000039083000000,0.000013554333333,0.000055676000000,0.000037503000000,0.000346836000000,0.000077404000000,0.000045009000000,0.000031577000000,0.000089256000000,0.000293898000000,0.000293503000000,0.000390293000000,0.019313734000000,0.000358688000000,0.000346836000000,0.019324401000000,0.000093206000000,0.000082540000000 +0.000019739000000,0.000720564000000,0.000037502000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000455083000000,0.000075034000000,0.000044219000000,0.000031577000000,0.000086885000000,0.000390293000000,0.000293898000000,0.000383182000000,0.020545141000000,0.000350786000000,0.000393848000000,0.019346920000000,0.000130342000000,0.000082935000000 +0.000020134500000,0.000729650000000,0.000041848000000,0.000013027666667,0.000055281000000,0.000037503000000,0.000353552000000,0.000112169000000,0.000044219000000,0.000050540000000,0.000087280000000,0.000291922000000,0.000326292000000,0.000390688000000,0.020551857000000,0.000347231000000,0.000348021000000,0.019049833000000,0.000090836000000,0.000097157000000 +0.000019344000000,0.000716218000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000037108000000,0.000376070000000,0.000077009000000,0.000045404000000,0.000030787000000,0.000089256000000,0.000324712000000,0.000295478000000,0.000630885000000,0.019810327000000,0.000348812000000,0.000380416000000,0.018855464000000,0.000092811000000,0.000082540000000 +0.000018949000000,0.000687379000000,0.000038293000000,0.000013554666667,0.000056466000000,0.000052120000000,0.000372515000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000295083000000,0.000296268000000,0.000588218000000,0.019483611000000,0.000347626000000,0.000349207000000,0.018923414000000,0.000092417000000,0.000084515000000 +0.000019739000000,0.000726885000000,0.000038688000000,0.000012896000000,0.000125997000000,0.000037898000000,0.000351971000000,0.000077009000000,0.000046195000000,0.000031182000000,0.000117305000000,0.000342490000000,0.000332614000000,0.000490638000000,0.019771611000000,0.000348416000000,0.000346836000000,0.018893389000000,0.000092416000000,0.000080564000000 +0.000018949000000,0.000707132000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000037898000000,0.000418342000000,0.000079379000000,0.000044219000000,0.000031972000000,0.000083725000000,0.000297058000000,0.000291133000000,0.000462589000000,0.019761339000000,0.000358688000000,0.000351181000000,0.018595118000000,0.000090046000000,0.000080960000000 +0.000019739000000,0.000712268000000,0.000037898000000,0.000019217000000,0.000055676000000,0.000036712000000,0.000345651000000,0.000076219000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000292317000000,0.000325108000000,0.000674737000000,0.019009537000000,0.000347626000000,0.000348416000000,0.018723513000000,0.000090441000000,0.000082935000000 +0.000019739000000,0.000670391000000,0.000037108000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000356712000000,0.000076613000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000328663000000,0.000290737000000,0.000407280000000,0.020036696000000,0.000347231000000,0.000434934000000,0.021573881000000,0.000089651000000,0.000103478000000 +0.000029220500000,0.000726490000000,0.000037502000000,0.000012896000000,0.000055280000000,0.000037898000000,0.000396219000000,0.000170639000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000294293000000,0.000334984000000,0.000443626000000,0.019539315000000,0.000402935000000,0.000351182000000,0.019036401000000,0.000092417000000,0.000082540000000 +0.000020134000000,0.000755724000000,0.000038688000000,0.000013554666667,0.000055281000000,0.000037502000000,0.000355923000000,0.000156811000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000297454000000,0.000295478000000,0.000459033000000,0.019410524000000,0.000348812000000,0.000378441000000,0.018747611000000,0.000095182000000,0.000079775000000 +0.000019739000000,0.000760861000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000037503000000,0.000431774000000,0.000077008000000,0.000045404000000,0.000031972000000,0.000081749000000,0.000293898000000,0.000295083000000,0.000543577000000,0.022310276000000,0.000346045000000,0.000348021000000,0.018461587000000,0.000092811000000,0.000080959000000 +0.000018949000000,0.000755725000000,0.000037898000000,0.000013554333333,0.000056861000000,0.000037898000000,0.000351181000000,0.000076219000000,0.000045404000000,0.000031181000000,0.000118095000000,0.000293898000000,0.000339330000000,0.000461008000000,0.020072648000000,0.000348021000000,0.000417157000000,0.019005192000000,0.000092022000000,0.000080960000000 +0.000019541500000,0.000679872000000,0.000037503000000,0.000013554333333,0.000089256000000,0.000036712000000,0.000348416000000,0.000076614000000,0.000136664000000,0.000061997000000,0.000084120000000,0.000403724000000,0.000292318000000,0.000546737000000,0.020458622000000,0.000480367000000,0.000346836000000,0.019863265000000,0.000091627000000,0.000082540000000 +0.000019541500000,0.000707922000000,0.000037897000000,0.000012896000000,0.000056861000000,0.000071478000000,0.000385552000000,0.000094392000000,0.000046589000000,0.000031577000000,0.000081750000000,0.000312070000000,0.000292712000000,0.000567675000000,0.020068302000000,0.000347231000000,0.000386342000000,0.018873636000000,0.000163922000000,0.000080960000000 +0.000019541500000,0.000731625000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037107000000,0.000354737000000,0.000074244000000,0.000058441000000,0.000031577000000,0.000084120000000,0.000291132000000,0.000308120000000,0.000502885000000,0.019755808000000,0.000348021000000,0.000346836000000,0.018976747000000,0.000089256000000,0.000114935000000 +0.000018751000000,0.000717009000000,0.000038293000000,0.000013554333333,0.000055280000000,0.000037108000000,0.000393453000000,0.000077009000000,0.000045799000000,0.000032762000000,0.000082145000000,0.000290737000000,0.000295083000000,0.000500515000000,0.019024550000000,0.000342886000000,0.000381997000000,0.018525587000000,0.000092022000000,0.000083330000000 +0.000018949000000,0.000713058000000,0.000040268000000,0.000024221000000,0.000055281000000,0.000037108000000,0.000347626000000,0.000074639000000,0.000043824000000,0.000031182000000,0.000081749000000,0.000291132000000,0.000328268000000,0.000502885000000,0.020086080000000,0.000349997000000,0.000347626000000,0.020431364000000,0.000089651000000,0.000080565000000 +0.000019541500000,0.000679083000000,0.000037898000000,0.000013027666667,0.000057651000000,0.000037108000000,0.000350787000000,0.000076614000000,0.000045404000000,0.000030787000000,0.000084515000000,0.000364219000000,0.000295478000000,0.000476416000000,0.019428303000000,0.000354737000000,0.000374885000000,0.018913142000000,0.000092811000000,0.000080960000000 +0.000020529000000,0.000709107000000,0.000092416000000,0.000013027666667,0.000055675000000,0.000037898000000,0.000391083000000,0.000076219000000,0.000044219000000,0.000032762000000,0.000146934000000,0.000295083000000,0.000342490000000,0.000601256000000,0.019525882000000,0.000350786000000,0.000346836000000,0.020420697000000,0.000094787000000,0.000082935000000 +0.000018751000000,0.000737947000000,0.000039083000000,0.000012896000000,0.000057256000000,0.000037898000000,0.000345651000000,0.000075428000000,0.000059231000000,0.000032762000000,0.000087281000000,0.000292317000000,0.000329849000000,0.000448762000000,0.019331117000000,0.000349206000000,0.000361058000000,0.019467019000000,0.000126391000000,0.000081750000000 +0.000018751500000,0.000742687000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000419527000000,0.000094391000000,0.000044614000000,0.000033552000000,0.000081750000000,0.000327873000000,0.000291527000000,0.000501305000000,0.020012993000000,0.000346836000000,0.000360664000000,0.019492697000000,0.000090046000000,0.000083330000000 +0.000019541500000,0.000689749000000,0.000038293000000,0.000013554333333,0.000057256000000,0.000037503000000,0.000348021000000,0.000076614000000,0.000043823000000,0.000032762000000,0.000083330000000,0.000292318000000,0.000310490000000,0.000415182000000,0.019721043000000,0.000346046000000,0.000358688000000,0.018570624000000,0.000089651000000,0.000118095000000 +0.000019739000000,0.001861501000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000036713000000,0.000352367000000,0.000076219000000,0.000045799000000,0.000052120000000,0.000084120000000,0.000327873000000,0.000297453000000,0.000468120000000,0.019201537000000,0.000349602000000,0.000384366000000,0.018383760000000,0.000090046000000,0.000082934000000 +0.000019541500000,0.001027527000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000088070000000,0.000385157000000,0.000074244000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000293502000000,0.000295478000000,0.000583477000000,0.019536944000000,0.000348021000000,0.000347626000000,0.019250129000000,0.000092022000000,0.000082540000000 +0.000019739000000,0.001087971000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000037107000000,0.000346046000000,0.000075034000000,0.000045799000000,0.000031577000000,0.000130737000000,0.000291132000000,0.000327478000000,0.000448366000000,0.020022869000000,0.000357503000000,0.000434935000000,0.019046673000000,0.000093206000000,0.000082540000000 +0.000018948500000,0.000882539000000,0.000038293000000,0.000013554333333,0.000056465000000,0.000037503000000,0.000378441000000,0.000074638000000,0.000045009000000,0.000030786000000,0.000084515000000,0.000360663000000,0.000294687000000,0.000413996000000,0.019501784000000,0.000348811000000,0.000351181000000,0.018828599000000,0.000092417000000,0.000080959000000 +0.000018553500000,0.000745453000000,0.000038293000000,0.000032385666667,0.000055676000000,0.000037898000000,0.000344466000000,0.000078194000000,0.000044219000000,0.000031577000000,0.000085306000000,0.000293503000000,0.000291923000000,0.000490638000000,0.019569340000000,0.000512761000000,0.000380416000000,0.018818723000000,0.000090836000000,0.000082540000000 +0.000019739000000,0.000721749000000,0.000057651000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000345256000000,0.000127577000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000296268000000,0.000361058000000,0.000450737000000,0.020054475000000,0.000350392000000,0.000350391000000,0.019295562000000,0.000092021000000,0.000082145000000 +0.000028628000000,0.000730046000000,0.000038293000000,0.000013686000000,0.000055676000000,0.000038688000000,0.000344466000000,0.000076614000000,0.000065553000000,0.000031972000000,0.000084910000000,0.000292317000000,0.000290737000000,0.000536466000000,0.019930820000000,0.000349206000000,0.000416366000000,0.018813586000000,0.000092812000000,0.000116910000000 +0.000037122000000,0.000755329000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000344860000000,0.000074639000000,0.000044219000000,0.000032367000000,0.000085306000000,0.000291527000000,0.000380416000000,0.000476021000000,0.019664154000000,0.000491429000000,0.000355133000000,0.019289635000000,0.000091231000000,0.000079775000000 +0.000027245500000,0.000827230000000,0.000039873000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000575182000000,0.000076614000000,0.000044614000000,0.000031181000000,0.000103874000000,0.000324713000000,0.000297058000000,0.000381997000000,0.019473340000000,0.000347626000000,0.000381996000000,0.018825439000000,0.000092811000000,0.000080959000000 +0.000019937000000,0.001208070000000,0.000038293000000,0.000013027666667,0.000057651000000,0.000037503000000,0.000346836000000,0.000074244000000,0.000045404000000,0.000031182000000,0.000081750000000,0.000291133000000,0.000290737000000,0.000509206000000,0.019378130000000,0.000348416000000,0.000351182000000,0.019354425000000,0.000091231000000,0.000080960000000 +0.000018554000000,0.000794440000000,0.000037898000000,0.000013027666667,0.000056070000000,0.000037898000000,0.000347231000000,0.000074244000000,0.000044614000000,0.000032367000000,0.000081750000000,0.000296268000000,0.000324712000000,0.000883724000000,0.019501388000000,0.000368564000000,0.000346836000000,0.018560352000000,0.000180515000000,0.000081355000000 +0.000020134000000,0.000762441000000,0.000037503000000,0.000012896000000,0.000055280000000,0.000083330000000,0.000416762000000,0.000074639000000,0.000044219000000,0.000069898000000,0.000084515000000,0.000325897000000,0.000292317000000,0.000750984000000,0.019424352000000,0.000346836000000,0.000411231000000,0.019288056000000,0.000088861000000,0.000082935000000 +0.000018554000000,0.000807082000000,0.000039873000000,0.000012896000000,0.000056861000000,0.000037897000000,0.000345651000000,0.000173009000000,0.000045404000000,0.000031182000000,0.000082145000000,0.000290737000000,0.000327083000000,0.000726885000000,0.018906031000000,0.000350392000000,0.000383182000000,0.018813982000000,0.000093206000000,0.000080170000000 +0.000018751500000,0.000771527000000,0.000038688000000,0.000013554333333,0.000056861000000,0.000037503000000,0.000396614000000,0.000090441000000,0.000043824000000,0.000030786000000,0.000082144000000,0.000314045000000,0.000297848000000,0.000723725000000,0.020502869000000,0.000347626000000,0.000348021000000,0.018859019000000,0.000090046000000,0.000123231000000 +0.000019541500000,0.000752169000000,0.000037898000000,0.000013422666667,0.000055675000000,0.000036318000000,0.000389503000000,0.000078589000000,0.000043823000000,0.000030787000000,0.000084120000000,0.000297849000000,0.000293502000000,0.000713848000000,0.019102376000000,0.000383182000000,0.000381601000000,0.019464648000000,0.000092021000000,0.000082935000000 +0.000035541500000,0.000715824000000,0.000107824000000,0.000012896000000,0.000150491000000,0.000036713000000,0.000343676000000,0.000077009000000,0.000044219000000,0.000031577000000,0.000151281000000,0.000292712000000,0.000339330000000,0.000713453000000,0.019615561000000,0.000349206000000,0.000362243000000,0.018822673000000,0.000090836000000,0.000081750000000 +0.000019541500000,0.000771132000000,0.000037898000000,0.000013027666667,0.000148910000000,0.000036317000000,0.000436515000000,0.000074243000000,0.000043824000000,0.000031972000000,0.000084120000000,0.000331823000000,0.000293503000000,0.000705946000000,0.019716697000000,0.000347231000000,0.000351181000000,0.019451611000000,0.000124021000000,0.000079775000000 +0.000019936500000,0.000912564000000,0.000039478000000,0.000012896000000,0.000105454000000,0.000036712000000,0.000347231000000,0.000074639000000,0.000045404000000,0.000031577000000,0.000082145000000,0.000296663000000,0.000291133000000,0.000713848000000,0.019265142000000,0.000421897000000,0.000349207000000,0.019270278000000,0.000089256000000,0.000082540000000 +0.000018554000000,0.000910983000000,0.000039873000000,0.000012896000000,0.000069898000000,0.000038293000000,0.000359082000000,0.000090836000000,0.000045009000000,0.000030787000000,0.000084515000000,0.000298638000000,0.000291133000000,0.000754934000000,0.019904746000000,0.000353157000000,0.000348416000000,0.019212993000000,0.000089651000000,0.000082145000000 +0.000019541500000,0.000799972000000,0.000038688000000,0.000013027666667,0.000056465000000,0.000036713000000,0.000426639000000,0.000077009000000,0.000043823000000,0.000031181000000,0.000082144000000,0.000334194000000,0.000293503000000,0.001048070000000,0.019594228000000,0.000346046000000,0.000396218000000,0.018975957000000,0.000092812000000,0.000082935000000 +0.000019146500000,0.000760861000000,0.000037897000000,0.000013554666667,0.000095972000000,0.000036713000000,0.000355527000000,0.000075033000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000293108000000,0.000326293000000,0.000957996000000,0.019675216000000,0.000346046000000,0.000349996000000,0.019115018000000,0.000090046000000,0.000154046000000 +0.000018554000000,0.000744268000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000070688000000,0.000438490000000,0.000076614000000,0.000044218000000,0.000031182000000,0.000082145000000,0.000323922000000,0.000294688000000,0.000711478000000,0.019554326000000,0.000348416000000,0.000397799000000,0.018936451000000,0.000092417000000,0.000083330000000 +0.000019739000000,0.000783379000000,0.000041848000000,0.000013554666667,0.000055281000000,0.000036712000000,0.000349996000000,0.000078195000000,0.000044219000000,0.000044614000000,0.000095577000000,0.000290737000000,0.000296664000000,0.000709107000000,0.019417241000000,0.000348416000000,0.000347626000000,0.018322130000000,0.000091232000000,0.000080960000000 +0.000027640500000,0.000714243000000,0.000039083000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000349601000000,0.000076614000000,0.000045009000000,0.000030786000000,0.000082145000000,0.000291527000000,0.000327083000000,0.000712268000000,0.019585141000000,0.000348811000000,0.000421898000000,0.018962130000000,0.000109009000000,0.000082935000000 +0.000027245500000,0.000749008000000,0.000051725000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000445996000000,0.000074638000000,0.000045799000000,0.000032367000000,0.000141799000000,0.000340120000000,0.000295082000000,0.000710688000000,0.019925289000000,0.000386737000000,0.000345255000000,0.019088945000000,0.000092811000000,0.000081354000000 +0.000019146500000,0.000749798000000,0.000038688000000,0.000013554333333,0.000056861000000,0.000036712000000,0.000344465000000,0.000107034000000,0.000079775000000,0.000031577000000,0.000102293000000,0.000398194000000,0.000293503000000,0.000720564000000,0.019920549000000,0.000348416000000,0.000386342000000,0.018359266000000,0.000093602000000,0.000081750000000 +0.000018751500000,0.000766391000000,0.000038688000000,0.000013027666667,0.000058046000000,0.000037503000000,0.000429799000000,0.000076613000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000348021000000,0.000297848000000,0.000691724000000,0.019438179000000,0.000351182000000,0.000354737000000,0.019007167000000,0.000091231000000,0.000084120000000 +0.000019541500000,0.000755330000000,0.000041849000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000404515000000,0.000078195000000,0.000045009000000,0.000031972000000,0.000116516000000,0.000429799000000,0.000293503000000,0.000694094000000,0.020161932000000,0.000349601000000,0.000584662000000,0.018714821000000,0.000092021000000,0.000080960000000 +0.000019739000000,0.000734392000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000343280000000,0.000076219000000,0.000044218000000,0.000030787000000,0.000097552000000,0.000639971000000,0.000326293000000,0.000728860000000,0.019874327000000,0.000349206000000,0.000404514000000,0.019313339000000,0.000092416000000,0.000082934000000 +0.000018554000000,0.000742293000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000036318000000,0.000696465000000,0.000084515000000,0.000046984000000,0.000030786000000,0.000084120000000,0.000631675000000,0.000291922000000,0.000638787000000,0.020547117000000,0.000347231000000,0.000357107000000,0.018590377000000,0.000126787000000,0.000083330000000 +0.000018949000000,0.000764020000000,0.000037898000000,0.000013686000000,0.000055280000000,0.000037108000000,0.000395823000000,0.000078984000000,0.000044614000000,0.000031182000000,0.000083726000000,0.000474441000000,0.000295478000000,0.000452317000000,0.020446771000000,0.000349601000000,0.000346836000000,0.018928945000000,0.000093206000000,0.000080170000000 +0.000019541500000,0.000793255000000,0.000037897000000,0.000013027666667,0.000057651000000,0.000037503000000,0.000355132000000,0.000102293000000,0.000045799000000,0.000030787000000,0.000082144000000,0.000338539000000,0.000378441000000,0.000565700000000,0.019688648000000,0.000382786000000,0.000380811000000,0.018884302000000,0.000090046000000,0.000082540000000 +0.000019739000000,0.000864367000000,0.000037898000000,0.000013027666667,0.000056860000000,0.000037898000000,0.000344861000000,0.000082539000000,0.000044219000000,0.000051725000000,0.000084515000000,0.000314046000000,0.000293898000000,0.000558984000000,0.020042228000000,0.000354737000000,0.000347626000000,0.018444995000000,0.000090046000000,0.000082540000000 +0.000019541500000,0.001018441000000,0.000039478000000,0.000013554333333,0.000055280000000,0.000036713000000,0.000387527000000,0.000079379000000,0.000043823000000,0.000033157000000,0.000082145000000,0.000313256000000,0.000431774000000,0.000581502000000,0.019984154000000,0.000351182000000,0.000380416000000,0.018835711000000,0.000090441000000,0.000102292000000 +0.000019936500000,0.000803131000000,0.000037108000000,0.000013554333333,0.000055676000000,0.000036712000000,0.000344861000000,0.000081355000000,0.000065947000000,0.000031182000000,0.000153256000000,0.000315626000000,0.000306935000000,0.000495379000000,0.019764499000000,0.000347231000000,0.000349206000000,0.018742871000000,0.000092416000000,0.000081354000000 +0.000025862500000,0.000755329000000,0.000037503000000,0.000013686000000,0.000055676000000,0.000037108000000,0.000377256000000,0.000082145000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000313256000000,0.000291132000000,0.000514737000000,0.019555907000000,0.000364614000000,0.000429799000000,0.019024550000000,0.000091231000000,0.000080960000000 +0.000018751000000,0.000750193000000,0.000038688000000,0.000013554666667,0.000056861000000,0.000037898000000,0.000350391000000,0.000081750000000,0.000044219000000,0.000032367000000,0.000081749000000,0.000336564000000,0.000294688000000,0.000410441000000,0.019459907000000,0.000348416000000,0.000351577000000,0.019497438000000,0.000106639000000,0.000080564000000 +0.000019936500000,0.000718589000000,0.000037898000000,0.000013027666667,0.000090046000000,0.000036712000000,0.000361058000000,0.000079380000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000310095000000,0.000293503000000,0.000447181000000,0.019444104000000,0.000348416000000,0.000382391000000,0.018684796000000,0.000090046000000,0.000080960000000 +0.000019937000000,0.000730046000000,0.000039478000000,0.000013554666667,0.000055676000000,0.000037898000000,0.000346045000000,0.000112960000000,0.000043823000000,0.000030787000000,0.000084516000000,0.000310490000000,0.000370935000000,0.000543972000000,0.021159857000000,0.000346046000000,0.000355132000000,0.018961734000000,0.000092417000000,0.000080169000000 +0.000018751500000,0.000751378000000,0.000037898000000,0.000013554333333,0.000055280000000,0.000037108000000,0.000347231000000,0.000080959000000,0.000044218000000,0.000031972000000,0.000084120000000,0.000329848000000,0.000295873000000,0.000610341000000,0.020148104000000,0.000362638000000,0.000370540000000,0.019409735000000,0.000089651000000,0.000082540000000 +0.000020331500000,0.000756120000000,0.000037898000000,0.000012896000000,0.000058046000000,0.000037108000000,0.000383181000000,0.000081354000000,0.000043824000000,0.000032762000000,0.000082540000000,0.000294687000000,0.000293503000000,0.000606391000000,0.020073043000000,0.000351182000000,0.000344465000000,0.018511760000000,0.000092021000000,0.000116515000000 +0.000019936500000,0.000755330000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000342491000000,0.000083330000000,0.000043824000000,0.000031182000000,0.000099133000000,0.000598490000000,0.000304170000000,0.000487873000000,0.020199857000000,0.000384762000000,0.000384367000000,0.018862574000000,0.000092417000000,0.000082540000000 +0.000019739000000,0.000762836000000,0.000038688000000,0.000013554333333,0.000054885000000,0.000037108000000,0.000395428000000,0.000081355000000,0.000044614000000,0.000030787000000,0.000084515000000,0.000348416000000,0.000301404000000,0.000536860000000,0.019136352000000,0.000347626000000,0.000348021000000,0.018995315000000,0.000124416000000,0.000082145000000 +0.000019936500000,0.000728466000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000037898000000,0.000350391000000,0.000081355000000,0.000044614000000,0.000064762000000,0.000082145000000,0.000291527000000,0.000364219000000,0.000459033000000,0.019720648000000,0.000346836000000,0.000346836000000,0.018938821000000,0.000092416000000,0.000082935000000 +0.000018751500000,0.000884119000000,0.000038293000000,0.000029488333333,0.000056070000000,0.000036713000000,0.000351972000000,0.000078984000000,0.000060022000000,0.000031577000000,0.000081749000000,0.000293502000000,0.000291922000000,0.000580712000000,0.019524698000000,0.000351972000000,0.000419527000000,0.018588402000000,0.000095577000000,0.000082935000000 +0.000035739000000,0.000867132000000,0.000037107000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000421503000000,0.000081354000000,0.000043824000000,0.000031972000000,0.000084120000000,0.000327478000000,0.000300614000000,0.000554638000000,0.019170723000000,0.000347231000000,0.000346836000000,0.018735760000000,0.000092812000000,0.000098342000000 +0.000019541500000,0.000803527000000,0.000040664000000,0.000013554333333,0.000055280000000,0.000036712000000,0.000346836000000,0.000081355000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000294292000000,0.000361848000000,0.000540416000000,0.020624153000000,0.000347626000000,0.000400564000000,0.021038178000000,0.000090441000000,0.000080565000000 +0.000018751500000,0.000750194000000,0.000037503000000,0.000013027666667,0.000056861000000,0.000037503000000,0.000382786000000,0.000079379000000,0.000043824000000,0.000031181000000,0.000122441000000,0.000294293000000,0.000294293000000,0.000531329000000,0.019011908000000,0.000347231000000,0.000346835000000,0.019861685000000,0.000092811000000,0.000114935000000 +0.000019541500000,0.000850539000000,0.000073454000000,0.000012896000000,0.000055676000000,0.000037107000000,0.000400959000000,0.000084515000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000324713000000,0.000362639000000,0.000481947000000,0.020594524000000,0.000419922000000,0.000395034000000,0.020558573000000,0.000093996000000,0.000082540000000 +0.000019541500000,0.000747823000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000351182000000,0.000081355000000,0.000044614000000,0.000031182000000,0.000082540000000,0.000291528000000,0.000291527000000,0.000433750000000,0.019310179000000,0.000349996000000,0.000346441000000,0.019161636000000,0.000180120000000,0.000082935000000 +0.000018751000000,0.000713848000000,0.000038293000000,0.000012896000000,0.000058046000000,0.000037108000000,0.000416762000000,0.000101503000000,0.000047379000000,0.000031576000000,0.000082145000000,0.000383182000000,0.000291133000000,0.000424663000000,0.019208648000000,0.000348021000000,0.000393453000000,0.018911562000000,0.000109404000000,0.000082540000000 +0.000019541500000,0.000729651000000,0.000058441000000,0.000015134666667,0.000055676000000,0.000037503000000,0.000346836000000,0.000094392000000,0.000046590000000,0.000030787000000,0.000084120000000,0.000296663000000,0.000327083000000,0.000428219000000,0.019414475000000,0.000347627000000,0.000345256000000,0.018759464000000,0.000109799000000,0.000080959000000 +0.000018949000000,0.000762441000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000064762000000,0.000381601000000,0.000081750000000,0.000045800000000,0.000031577000000,0.000083725000000,0.000298244000000,0.000294687000000,0.000435725000000,0.019433043000000,0.000351971000000,0.000426244000000,0.018415365000000,0.000092811000000,0.000079775000000 +0.000018751500000,0.000796020000000,0.000037897000000,0.000012896000000,0.000056070000000,0.000036713000000,0.000357108000000,0.000243330000000,0.000065947000000,0.000032367000000,0.000081749000000,0.000341305000000,0.000373305000000,0.000419922000000,0.020250425000000,0.000355527000000,0.000350787000000,0.019344944000000,0.000092811000000,0.000080169000000 +0.000019936500000,0.000754539000000,0.000037503000000,0.000013027666667,0.000089255000000,0.000037107000000,0.000348811000000,0.000114145000000,0.000046194000000,0.000052120000000,0.000150886000000,0.000383971000000,0.000434935000000,0.000410046000000,0.019505734000000,0.000347626000000,0.000400959000000,0.019089735000000,0.000126391000000,0.000116910000000 +0.000043245000000,0.000747823000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000384367000000,0.000078984000000,0.000045009000000,0.000078984000000,0.000084120000000,0.000405305000000,0.000361058000000,0.000424268000000,0.020151660000000,0.000381601000000,0.000351577000000,0.018643315000000,0.000092812000000,0.000080169000000 +0.000019541500000,0.000724910000000,0.000038292000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000349602000000,0.000113354000000,0.000044614000000,0.000035922000000,0.000088466000000,0.000296268000000,0.000294688000000,0.000404910000000,0.019295957000000,0.000349206000000,0.000350786000000,0.018611711000000,0.000094786000000,0.000081355000000 +0.000018949000000,0.000723724000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000036713000000,0.000380812000000,0.000078984000000,0.000044219000000,0.000031577000000,0.000083725000000,0.000372910000000,0.000292317000000,0.000406885000000,0.020059611000000,0.000352367000000,0.000365404000000,0.018523217000000,0.000091232000000,0.000082540000000 +0.000019344000000,0.000756120000000,0.000038293000000,0.000013686333333,0.000055281000000,0.000037898000000,0.000346046000000,0.000082144000000,0.000043824000000,0.000031972000000,0.000081750000000,0.000294293000000,0.000324712000000,0.000412416000000,0.020624548000000,0.000355527000000,0.000350786000000,0.019137142000000,0.000092812000000,0.000079775000000 +0.000019739500000,0.000752959000000,0.000037898000000,0.000013554666667,0.000055280000000,0.000036712000000,0.000385157000000,0.000081750000000,0.000043824000000,0.000031972000000,0.000084910000000,0.000291132000000,0.000295873000000,0.000476021000000,0.019888944000000,0.000345651000000,0.000360663000000,0.018778426000000,0.000093601000000,0.000080960000000 +0.000019936500000,0.000750193000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000344860000000,0.000080170000000,0.000046589000000,0.000031971000000,0.000084120000000,0.000330243000000,0.000294688000000,0.000428614000000,0.020225931000000,0.000349997000000,0.000356317000000,0.019157291000000,0.000130738000000,0.000082540000000 +0.000018948500000,0.000728070000000,0.000038293000000,0.000013028000000,0.000059231000000,0.000037898000000,0.000353947000000,0.000080170000000,0.000047774000000,0.000030787000000,0.000086095000000,0.000292712000000,0.000299428000000,0.000439675000000,0.019492697000000,0.000349997000000,0.000700811000000,0.018695464000000,0.000090046000000,0.000114540000000 +0.000018949000000,0.000742688000000,0.000038293000000,0.000013027666667,0.000089256000000,0.000071478000000,0.000492614000000,0.000079775000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000327083000000,0.000294292000000,0.000387132000000,0.019946623000000,0.000589009000000,0.000384762000000,0.018649241000000,0.000090046000000,0.000082935000000 +0.000019541500000,0.000849749000000,0.000038293000000,0.000013554333333,0.000056860000000,0.000039083000000,0.000353552000000,0.000081750000000,0.000046589000000,0.000065157000000,0.000084120000000,0.000294688000000,0.000333008000000,0.000390687000000,0.019200747000000,0.000383972000000,0.000346441000000,0.018803315000000,0.000093207000000,0.000082935000000 +0.000019739000000,0.000764021000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000352762000000,0.000081355000000,0.000046194000000,0.000030787000000,0.000084120000000,0.000291923000000,0.000346046000000,0.000430194000000,0.019658228000000,0.000352366000000,0.000378440000000,0.018473439000000,0.000090836000000,0.000083330000000 +0.000036331500000,0.000728071000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000383182000000,0.000078984000000,0.000044218000000,0.000031182000000,0.000082145000000,0.000377651000000,0.000290738000000,0.000400170000000,0.019740006000000,0.000347626000000,0.000349207000000,0.018476204000000,0.000092022000000,0.000082540000000 +0.000019541500000,0.000750194000000,0.000038293000000,0.000012896000000,0.000056860000000,0.000037107000000,0.000345256000000,0.000078589000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000291923000000,0.000296269000000,0.000399379000000,0.020281239000000,0.000350787000000,0.000348416000000,0.018884698000000,0.000092811000000,0.000082934000000 +0.000018949000000,0.000732811000000,0.000038688000000,0.000013027666667,0.000057256000000,0.000038688000000,0.000422688000000,0.000078985000000,0.000045405000000,0.000032762000000,0.000101503000000,0.000291133000000,0.000293898000000,0.000707132000000,0.020135067000000,0.000347231000000,0.000363429000000,0.019398673000000,0.000088860000000,0.000080565000000 +0.000018554000000,0.000675922000000,0.000040268000000,0.000013817666667,0.000056861000000,0.000037503000000,0.000345256000000,0.000081750000000,0.000043823000000,0.000031182000000,0.000238194000000,0.000293898000000,0.000327083000000,0.000524219000000,0.019766870000000,0.000350786000000,0.000348416000000,0.018812797000000,0.000091232000000,0.000097157000000 +0.000019541500000,0.000727280000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000355132000000,0.000079379000000,0.000045009000000,0.000032762000000,0.000089256000000,0.000295082000000,0.000295478000000,0.000456268000000,0.019816648000000,0.000349207000000,0.000471280000000,0.018659513000000,0.000092416000000,0.000081750000000 +0.000018751500000,0.000764021000000,0.000076219000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000429403000000,0.000198292000000,0.000045799000000,0.000031576000000,0.000084515000000,0.000337749000000,0.000293107000000,0.000382391000000,0.019211019000000,0.000354342000000,0.000348811000000,0.019411710000000,0.000092812000000,0.000082935000000 +0.000018751500000,0.000719773000000,0.000105849000000,0.000013554333333,0.000055676000000,0.000037898000000,0.000350392000000,0.000213305000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000290342000000,0.000328268000000,0.000415576000000,0.019748302000000,0.000349601000000,0.000394638000000,0.019014673000000,0.000090046000000,0.000080564000000 +0.000019937000000,0.000702392000000,0.000086490000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000421108000000,0.000131528000000,0.000059231000000,0.000050935000000,0.000119675000000,0.000297058000000,0.000291528000000,0.000382787000000,0.019980994000000,0.000350786000000,0.000346441000000,0.019321636000000,0.000089651000000,0.000080565000000 +0.000019541500000,0.000688959000000,0.000038688000000,0.000012896000000,0.000057256000000,0.000037898000000,0.000350392000000,0.000081354000000,0.000044219000000,0.000044614000000,0.000081750000000,0.000363034000000,0.000290738000000,0.000383576000000,0.019542475000000,0.000346836000000,0.000418737000000,0.019444105000000,0.000165108000000,0.000080959000000 +0.000018554000000,0.000770342000000,0.000037898000000,0.000013554666667,0.000056465000000,0.000037503000000,0.000345256000000,0.000081355000000,0.000045009000000,0.000030391000000,0.000081750000000,0.000296664000000,0.000290737000000,0.000449947000000,0.019810327000000,0.000348811000000,0.000347626000000,0.019185340000000,0.000089651000000,0.000081354000000 +0.000030010500000,0.000777057000000,0.000039873000000,0.000013554666667,0.000055675000000,0.000037898000000,0.000345256000000,0.000116515000000,0.000044219000000,0.000030787000000,0.000084515000000,0.000328268000000,0.000292318000000,0.000498144000000,0.019738820000000,0.000346441000000,0.000381601000000,0.018745636000000,0.000092416000000,0.000096762000000 +0.000018751500000,0.000730836000000,0.000061207000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000349601000000,0.000081355000000,0.000045405000000,0.000031972000000,0.000082145000000,0.000294687000000,0.000325898000000,0.000435725000000,0.020387512000000,0.000349207000000,0.000349996000000,0.018713636000000,0.000092022000000,0.000081355000000 +0.000018751500000,0.000743082000000,0.000037898000000,0.000018295333333,0.000055281000000,0.000039083000000,0.000430589000000,0.000134293000000,0.000044219000000,0.000032763000000,0.000082144000000,0.000292712000000,0.000291923000000,0.000479972000000,0.019730919000000,0.000347231000000,0.000380021000000,0.018889043000000,0.000092021000000,0.000083330000000 +0.000019541500000,0.000680267000000,0.000038688000000,0.000012896000000,0.000057651000000,0.000036712000000,0.000353947000000,0.000237404000000,0.000045009000000,0.000030786000000,0.000081750000000,0.000331033000000,0.000295478000000,0.000434934000000,0.020388301000000,0.000352367000000,0.000351181000000,0.018536649000000,0.000092021000000,0.000083330000000 +0.000018751000000,0.000709502000000,0.000037898000000,0.000013291000000,0.000069898000000,0.000037107000000,0.000353157000000,0.000082145000000,0.000060021000000,0.000031577000000,0.000118096000000,0.000293107000000,0.000361848000000,0.000435329000000,0.020428598000000,0.000416762000000,0.000354342000000,0.019083809000000,0.000123231000000,0.000080959000000 +0.000019541500000,0.000720169000000,0.000038688000000,0.000013554666667,0.000055676000000,0.000036713000000,0.000355922000000,0.000081750000000,0.000045404000000,0.000032367000000,0.000084516000000,0.000294292000000,0.000292713000000,0.000399774000000,0.019600549000000,0.000349601000000,0.000353947000000,0.018908006000000,0.000092417000000,0.000080960000000 +0.000019541500000,0.000960366000000,0.000039083000000,0.000013027666667,0.000055281000000,0.000086490000000,0.000348021000000,0.000079379000000,0.000059231000000,0.000030787000000,0.000082144000000,0.000466935000000,0.000327083000000,0.000507626000000,0.020110178000000,0.000348416000000,0.000348021000000,0.019375364000000,0.000092417000000,0.000083330000000 +0.000018751500000,0.000710292000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000584663000000,0.000155231000000,0.000045009000000,0.000031182000000,0.000084911000000,0.000296268000000,0.000292712000000,0.000430984000000,0.020124400000000,0.000346046000000,0.000370539000000,0.019254870000000,0.000089256000000,0.000097157000000 +0.000019936500000,0.000688959000000,0.000038293000000,0.000017505000000,0.000055675000000,0.000037108000000,0.000356713000000,0.000081750000000,0.000045009000000,0.000030787000000,0.000084516000000,0.000304960000000,0.000291922000000,0.000600070000000,0.019834821000000,0.000350392000000,0.000346441000000,0.018458426000000,0.000093206000000,0.000083725000000 +0.000019146500000,0.000704762000000,0.000038688000000,0.000013554333333,0.000056466000000,0.000037503000000,0.000349206000000,0.000079774000000,0.000045800000000,0.000033158000000,0.000084120000000,0.000290737000000,0.000325897000000,0.000491823000000,0.019269092000000,0.000351577000000,0.000380416000000,0.018540599000000,0.000096762000000,0.000082539000000 +0.000019344000000,0.000712268000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037898000000,0.000434540000000,0.000080960000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000325107000000,0.000292713000000,0.000552662000000,0.020588597000000,0.000380416000000,0.000348021000000,0.018796599000000,0.000090046000000,0.000082144000000 +0.000019739000000,0.000721354000000,0.000037898000000,0.000013686333333,0.000055676000000,0.000036713000000,0.000346836000000,0.000082540000000,0.000045799000000,0.000031182000000,0.000100713000000,0.000296663000000,0.000296268000000,0.000709898000000,0.019149784000000,0.000350391000000,0.000415971000000,0.019088155000000,0.000154441000000,0.000080564000000 +0.000019541500000,0.000741108000000,0.000039873000000,0.000012896000000,0.000075033000000,0.000037502000000,0.000365798000000,0.000081354000000,0.000044614000000,0.000032367000000,0.000082145000000,0.000297454000000,0.000309305000000,0.000397008000000,0.019192846000000,0.000347231000000,0.000349206000000,0.019036006000000,0.000090836000000,0.000082540000000 +0.000019541500000,0.000675132000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000423873000000,0.000082540000000,0.000045404000000,0.000031576000000,0.000082145000000,0.000369355000000,0.000290737000000,0.000515132000000,0.022999658000000,0.000345651000000,0.000383182000000,0.019934376000000,0.000092812000000,0.000119676000000 +0.000018949000000,0.000676713000000,0.000037897000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000344071000000,0.000081355000000,0.000043824000000,0.000030786000000,0.000083725000000,0.000509206000000,0.000331033000000,0.000505255000000,0.019660993000000,0.000346046000000,0.000351577000000,0.020408055000000,0.000093206000000,0.000247281000000 +0.000019344000000,0.000735576000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000436119000000,0.000081355000000,0.000079380000000,0.000030787000000,0.000082144000000,0.000346046000000,0.000295082000000,0.000465355000000,0.019594623000000,0.000350392000000,0.000381996000000,0.018695858000000,0.000092022000000,0.000252022000000 +0.000019541500000,0.000712268000000,0.000037503000000,0.000013554333333,0.000056861000000,0.000050540000000,0.000343676000000,0.000078985000000,0.000045404000000,0.000031182000000,0.000084121000000,0.000293898000000,0.000293503000000,0.000386737000000,0.020659314000000,0.000348021000000,0.000350786000000,0.018473439000000,0.000089651000000,0.000201453000000 +0.000019739000000,0.000707527000000,0.000037898000000,0.000019744000000,0.000056860000000,0.000036713000000,0.000360663000000,0.000080960000000,0.000044614000000,0.000031972000000,0.000082144000000,0.000337354000000,0.000328268000000,0.000417947000000,0.020267808000000,0.000347626000000,0.000350787000000,0.018988599000000,0.000124811000000,0.000176960000000 +0.000019739000000,0.000687379000000,0.000037898000000,0.000013949333333,0.000056070000000,0.000037898000000,0.000419922000000,0.000084515000000,0.000045009000000,0.000031972000000,0.000081749000000,0.000291132000000,0.000292317000000,0.000391478000000,0.019745932000000,0.000352761000000,0.000344465000000,0.019404994000000,0.000092812000000,0.000104269000000 +0.000018949000000,0.000711082000000,0.000037503000000,0.000013027666667,0.000056860000000,0.000036712000000,0.000347626000000,0.000078985000000,0.000044614000000,0.000030787000000,0.000086096000000,0.000293108000000,0.000291922000000,0.000458638000000,0.019451611000000,0.000347626000000,0.000349601000000,0.019484006000000,0.000090046000000,0.000088861000000 +0.000019739000000,0.000728070000000,0.000071873000000,0.000013027666667,0.000055675000000,0.000037503000000,0.000363429000000,0.000080960000000,0.000044219000000,0.000050935000000,0.000082145000000,0.000365009000000,0.000290342000000,0.000417156000000,0.019101192000000,0.000351181000000,0.000381601000000,0.018476599000000,0.000092417000000,0.000125997000000 +0.000020331500000,0.000769157000000,0.000037503000000,0.000013554333333,0.000086491000000,0.000037503000000,0.000367379000000,0.000078984000000,0.000045404000000,0.000031577000000,0.000084910000000,0.000293503000000,0.000297848000000,0.000615478000000,0.019090525000000,0.000347231000000,0.000346836000000,0.019238278000000,0.000092021000000,0.000090441000000 +0.000019541500000,0.000761255000000,0.000037108000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000348811000000,0.000078589000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000326293000000,0.000329058000000,0.000435329000000,0.019977833000000,0.000417552000000,0.000385947000000,0.018987414000000,0.000092812000000,0.000090836000000 +0.000019541500000,0.000683033000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000415182000000,0.000078589000000,0.000045009000000,0.000031972000000,0.000083725000000,0.000291527000000,0.000291922000000,0.000423873000000,0.018739710000000,0.000383972000000,0.000397799000000,0.021201733000000,0.000109404000000,0.000088466000000 +0.000018949000000,0.000723330000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000036317000000,0.000347231000000,0.000080170000000,0.000048564000000,0.000031972000000,0.000103873000000,0.000290342000000,0.000307330000000,0.000402935000000,0.020460203000000,0.000347626000000,0.000618639000000,0.020528943000000,0.000093206000000,0.000088466000000 +0.000018751500000,0.000707922000000,0.000037503000000,0.000013027666667,0.000055675000000,0.000037898000000,0.000349601000000,0.000078589000000,0.000044219000000,0.000031972000000,0.000081355000000,0.000324712000000,0.000308515000000,0.000488268000000,0.019716697000000,0.000399774000000,0.000347626000000,0.019271858000000,0.000093602000000,0.000088466000000 +0.000019541500000,0.000710293000000,0.000038293000000,0.000013028000000,0.000056071000000,0.000088466000000,0.000416762000000,0.000080959000000,0.000046194000000,0.000031182000000,0.000084910000000,0.000299034000000,0.000290342000000,0.000430589000000,0.019746722000000,0.000348416000000,0.000354342000000,0.020060006000000,0.000092416000000,0.000088071000000 +0.000019344000000,0.000694095000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000344465000000,0.000082144000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000295478000000,0.000340120000000,0.000453503000000,0.019516006000000,0.000349206000000,0.000346441000000,0.019060500000000,0.000092021000000,0.000088466000000 +0.000019541500000,0.000675132000000,0.000039083000000,0.000012896000000,0.000055676000000,0.000038293000000,0.000438095000000,0.000078984000000,0.000045009000000,0.000031182000000,0.000081750000000,0.000291132000000,0.000293503000000,0.000528959000000,0.019824549000000,0.000440860000000,0.000373305000000,0.019390377000000,0.000090046000000,0.000090046000000 +0.000019542000000,0.000973404000000,0.000039478000000,0.000013027666667,0.000089651000000,0.000038293000000,0.000348416000000,0.000078984000000,0.000045404000000,0.000030787000000,0.000084120000000,0.000295478000000,0.000292318000000,0.000425058000000,0.020669586000000,0.000355527000000,0.000345256000000,0.019498623000000,0.000090046000000,0.000090441000000 +0.000019541500000,0.000713848000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000424663000000,0.000082540000000,0.000043824000000,0.000031972000000,0.000082145000000,0.000378441000000,0.000469700000000,0.000412021000000,0.019463858000000,0.000388317000000,0.000425848000000,0.019675215000000,0.000089651000000,0.000090441000000 +0.000027245500000,0.000756119000000,0.000037898000000,0.000014213000000,0.000055676000000,0.000037503000000,0.000360268000000,0.000078984000000,0.000043824000000,0.000051725000000,0.000137059000000,0.000293108000000,0.000291132000000,0.000397799000000,0.020000351000000,0.000346441000000,0.000350392000000,0.019822573000000,0.000092811000000,0.000091231000000 +0.000019936500000,0.000769947000000,0.000039084000000,0.000013027666667,0.000057255000000,0.000037107000000,0.000380021000000,0.000082540000000,0.000045009000000,0.000031182000000,0.000147329000000,0.000290738000000,0.000343676000000,0.000431774000000,0.019500599000000,0.000351182000000,0.000423082000000,0.019962820000000,0.000092416000000,0.000090046000000 +0.000018751500000,0.000735577000000,0.000038688000000,0.000012896000000,0.000057255000000,0.000036318000000,0.000349996000000,0.000081750000000,0.000045404000000,0.000032367000000,0.000089651000000,0.000327873000000,0.000290738000000,0.002822686000000,0.019341389000000,0.000385947000000,0.000351577000000,0.020304154000000,0.000093997000000,0.000090836000000 +0.000018948500000,0.000673157000000,0.000037898000000,0.000013554666667,0.000056071000000,0.000037898000000,0.000380416000000,0.000081354000000,0.000043824000000,0.000031972000000,0.000089650000000,0.000295873000000,0.000295478000000,0.000853304000000,0.019457537000000,0.000342885000000,0.000432564000000,0.019427908000000,0.000092811000000,0.000088465000000 +0.000019739000000,0.000724119000000,0.000038293000000,0.000013028000000,0.000055675000000,0.000037898000000,0.000346836000000,0.000082144000000,0.000046590000000,0.000031577000000,0.000170244000000,0.000324712000000,0.000312860000000,0.002217847000000,0.019252895000000,0.000383972000000,0.000346836000000,0.019060896000000,0.000093207000000,0.000080565000000 +0.000018751500000,0.000758490000000,0.000037898000000,0.000013423000000,0.000057651000000,0.000052120000000,0.000358688000000,0.000084120000000,0.000044219000000,0.000031972000000,0.000103478000000,0.000296663000000,0.000293898000000,0.000844218000000,0.020147709000000,0.000350391000000,0.000440071000000,0.019288845000000,0.000158392000000,0.000080169000000 +0.000019541500000,0.000765996000000,0.000038688000000,0.000013686333333,0.000075429000000,0.000036713000000,0.000389107000000,0.000081750000000,0.000043823000000,0.000031576000000,0.000103478000000,0.000293502000000,0.000327083000000,0.001160662000000,0.019922919000000,0.000348416000000,0.000346836000000,0.019403018000000,0.000092812000000,0.000083330000000 +0.000019541500000,0.000777453000000,0.000038293000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000399379000000,0.000081355000000,0.000045009000000,0.000031577000000,0.000236218000000,0.000340515000000,0.000294687000000,0.000518292000000,0.019313339000000,0.000389898000000,0.000441650000000,0.020358672000000,0.000092021000000,0.000084910000000 +0.000018949000000,0.000672761000000,0.000071873000000,0.000012896000000,0.000056070000000,0.000038293000000,0.000359478000000,0.000082145000000,0.000044614000000,0.000031182000000,0.000086886000000,0.000291922000000,0.000293108000000,0.001271279000000,0.019060500000000,0.000346046000000,0.000348021000000,0.019119364000000,0.000093206000000,0.000116910000000 +0.000029813500000,0.000756515000000,0.000039083000000,0.000013028000000,0.000055675000000,0.000036713000000,0.000346441000000,0.000079775000000,0.000044219000000,0.000033157000000,0.000088861000000,0.000294687000000,0.000328268000000,0.000692514000000,0.019246574000000,0.000566885000000,0.000419527000000,0.019836796000000,0.000090441000000,0.000081354000000 +0.000019146500000,0.000742292000000,0.000038293000000,0.000013291000000,0.000055676000000,0.000037107000000,0.000348416000000,0.000082145000000,0.000045404000000,0.000031972000000,0.000152070000000,0.000297058000000,0.000293107000000,0.000514737000000,0.019390376000000,0.000348812000000,0.000346046000000,0.019089340000000,0.000092021000000,0.000080170000000 +0.000018751500000,0.000719378000000,0.000037503000000,0.000013554333333,0.000057651000000,0.000038293000000,0.000381206000000,0.000080960000000,0.000045404000000,0.000063972000000,0.000082145000000,0.000297453000000,0.000312070000000,0.000444417000000,0.019749093000000,0.000353947000000,0.000429009000000,0.019704056000000,0.000112565000000,0.000080565000000 +0.000019541500000,0.000762836000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000344466000000,0.000081355000000,0.000086886000000,0.000031972000000,0.000082145000000,0.000376070000000,0.000291923000000,0.000532515000000,0.019675216000000,0.000352367000000,0.000348811000000,0.019509685000000,0.000092416000000,0.000082934000000 +0.000019541500000,0.000675527000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037898000000,0.000418738000000,0.000079380000000,0.000061602000000,0.000031577000000,0.000081355000000,0.000291922000000,0.000298639000000,0.000475230000000,0.020004697000000,0.000348416000000,0.000402145000000,0.019869586000000,0.000093206000000,0.000081355000000 +0.000020134000000,0.000718589000000,0.000038293000000,0.000013027666667,0.000055280000000,0.000037108000000,0.000346441000000,0.000078589000000,0.000048170000000,0.000030786000000,0.000081750000000,0.000293108000000,0.000359873000000,0.000615477000000,0.019596599000000,0.000357107000000,0.000346836000000,0.019854969000000,0.000092021000000,0.000080960000000 +0.000019739000000,0.001154736000000,0.000037108000000,0.000012896000000,0.000104663000000,0.000092021000000,0.000350391000000,0.000081749000000,0.000045799000000,0.000032762000000,0.000082539000000,0.000402145000000,0.000293897000000,0.000414391000000,0.019944253000000,0.000346441000000,0.000348416000000,0.019495068000000,0.000092021000000,0.000152465000000 +0.000019146500000,0.000722540000000,0.000037898000000,0.000012896000000,0.000054885000000,0.000040269000000,0.000381206000000,0.000078985000000,0.000044219000000,0.000030787000000,0.000151281000000,0.000307725000000,0.000289552000000,0.000396614000000,0.020428598000000,0.000349206000000,0.000351181000000,0.019821389000000,0.000092811000000,0.000082144000000 +0.000019937000000,0.000713058000000,0.000037898000000,0.000030805666667,0.000057651000000,0.000039874000000,0.000349206000000,0.000081354000000,0.000045799000000,0.000030787000000,0.000081355000000,0.000342490000000,0.000310886000000,0.000396614000000,0.019743167000000,0.000352367000000,0.000348416000000,0.019374574000000,0.000092417000000,0.000080960000000 +0.000019541500000,0.000710688000000,0.000038293000000,0.000033834333333,0.000055676000000,0.000038688000000,0.000376860000000,0.000080959000000,0.000044219000000,0.000032763000000,0.000085305000000,0.000294688000000,0.000291132000000,0.000395033000000,0.019600550000000,0.000346836000000,0.000627329000000,0.019167166000000,0.000176564000000,0.000083330000000 +0.000018751500000,0.000719773000000,0.000038293000000,0.000014476333333,0.000056861000000,0.000037898000000,0.000351182000000,0.000079379000000,0.000045009000000,0.000031577000000,0.000083725000000,0.000294293000000,0.000328663000000,0.000400169000000,0.019559067000000,0.000349601000000,0.000415181000000,0.019543265000000,0.000091627000000,0.000080565000000 +0.000018751500000,0.000700416000000,0.000037502000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000349997000000,0.000078985000000,0.000044219000000,0.000031972000000,0.000083725000000,0.000335380000000,0.000293502000000,0.000398984000000,0.019069587000000,0.000346046000000,0.000350786000000,0.020074622000000,0.000090441000000,0.000082935000000 +0.000019541500000,0.000722145000000,0.000038688000000,0.000013027666667,0.000056071000000,0.000037502000000,0.000395033000000,0.000081354000000,0.000044614000000,0.000029997000000,0.000084120000000,0.000291132000000,0.000293107000000,0.000393453000000,0.019548006000000,0.000347626000000,0.000381996000000,0.020374869000000,0.000092416000000,0.000101503000000 +0.000019739000000,0.000710292000000,0.000037897000000,0.000013554666667,0.000056861000000,0.000037108000000,0.000354342000000,0.000080959000000,0.000048565000000,0.000046590000000,0.000081355000000,0.000325898000000,0.000326293000000,0.000407281000000,0.021134967000000,0.000350392000000,0.000348022000000,0.019157685000000,0.000092416000000,0.000096762000000 +0.000019541500000,0.000728860000000,0.000037898000000,0.000013686000000,0.000091627000000,0.000037898000000,0.000383971000000,0.000080169000000,0.000045009000000,0.000030786000000,0.000112565000000,0.000291527000000,0.000293898000000,0.000395824000000,0.019755413000000,0.000346045000000,0.000383182000000,0.020592548000000,0.000090046000000,0.000082540000000 +0.000019541500000,0.000721749000000,0.000038688000000,0.000017636666667,0.000055280000000,0.000037503000000,0.000344071000000,0.000079774000000,0.000045800000000,0.000031577000000,0.000082540000000,0.000295477000000,0.000291132000000,0.000418737000000,0.019750277000000,0.000402144000000,0.000345255000000,0.019610426000000,0.000125996000000,0.000082540000000 +0.000018553500000,0.000699626000000,0.000038293000000,0.000019217000000,0.000055675000000,0.000037503000000,0.000353157000000,0.000129947000000,0.000044219000000,0.000030787000000,0.000081749000000,0.000440071000000,0.000298243000000,0.000428613000000,0.019199167000000,0.000354342000000,0.000385552000000,0.020300203000000,0.000092416000000,0.000080565000000 +0.000018751500000,0.000725700000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000041059000000,0.000385552000000,0.000082935000000,0.000043824000000,0.000032762000000,0.000084120000000,0.000293897000000,0.000292318000000,0.000472466000000,0.020721733000000,0.000382392000000,0.000354342000000,0.020242524000000,0.000093601000000,0.000083330000000 +0.000019541500000,0.000746638000000,0.000058441000000,0.000012896000000,0.000055280000000,0.000037108000000,0.000348416000000,0.000080960000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000325107000000,0.000379626000000,0.000385552000000,0.019221685000000,0.000351972000000,0.000353552000000,0.019185340000000,0.000092417000000,0.000082540000000 +0.000018751000000,0.000745057000000,0.000037898000000,0.000014081000000,0.000058836000000,0.000038688000000,0.000384761000000,0.000081355000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000291528000000,0.000301009000000,0.000505256000000,0.019103167000000,0.000412021000000,0.000348021000000,0.020211314000000,0.000089650000000,0.000129947000000 +0.000018751500000,0.000686194000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000037503000000,0.000402540000000,0.000078984000000,0.000043824000000,0.000031972000000,0.000102293000000,0.000297058000000,0.000295478000000,0.000533305000000,0.019276203000000,0.000352367000000,0.000356712000000,0.019308204000000,0.000123627000000,0.000080565000000 +0.000019739000000,0.000685404000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000039478000000,0.000347231000000,0.000081355000000,0.000047774000000,0.000031182000000,0.000082145000000,0.000362638000000,0.000503676000000,0.000412021000000,0.019429488000000,0.000345255000000,0.000379626000000,0.019670870000000,0.000163527000000,0.000080564000000 +0.000020134000000,0.000722144000000,0.000038293000000,0.000012896000000,0.000076219000000,0.000038688000000,0.000455083000000,0.000078985000000,0.000043824000000,0.000031577000000,0.000084120000000,0.000295873000000,0.000290737000000,0.000498934000000,0.021501585000000,0.000348021000000,0.000346441000000,0.019351265000000,0.000092812000000,0.000080565000000 +0.000018949000000,0.000718589000000,0.000039873000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000345256000000,0.000078984000000,0.000043824000000,0.000031182000000,0.000083725000000,0.000327477000000,0.000293898000000,0.000460219000000,0.020671956000000,0.000348811000000,0.000397404000000,0.020255166000000,0.000089256000000,0.000081355000000 +0.000019936500000,0.000727280000000,0.000038293000000,0.000024221333333,0.000056070000000,0.000057256000000,0.000380812000000,0.000078984000000,0.000044219000000,0.000080169000000,0.000084120000000,0.000297058000000,0.000290738000000,0.000460218000000,0.020259116000000,0.000384761000000,0.000346836000000,0.020215660000000,0.000092416000000,0.000082935000000 +0.000018751500000,0.000687379000000,0.000037503000000,0.000013027666667,0.000057256000000,0.000037898000000,0.000351972000000,0.000078984000000,0.000045799000000,0.000030786000000,0.000084120000000,0.000291132000000,0.000383182000000,0.000428218000000,0.020803906000000,0.000349207000000,0.000745058000000,0.020310079000000,0.000093206000000,0.000080169000000 +0.000019344000000,0.000743082000000,0.000038688000000,0.000013422666667,0.000056070000000,0.000037503000000,0.000348021000000,0.000081355000000,0.000044219000000,0.000031577000000,0.000084910000000,0.000378046000000,0.000297453000000,0.000432565000000,0.020147314000000,0.000347231000000,0.000405700000000,0.020165487000000,0.000092416000000,0.000152071000000 +0.000019936500000,0.000715033000000,0.000038688000000,0.000013554333333,0.000055675000000,0.000036713000000,0.000415972000000,0.000082935000000,0.000044219000000,0.000031182000000,0.000153256000000,0.000293502000000,0.000295478000000,0.001263773000000,0.020167463000000,0.000346836000000,0.000351972000000,0.019199166000000,0.000148515000000,0.000083330000000 +0.000018949000000,0.000709502000000,0.000052910000000,0.000013686000000,0.000056070000000,0.000036713000000,0.000346046000000,0.000081750000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000294688000000,0.000325897000000,0.000537255000000,0.019717882000000,0.000347626000000,0.000349206000000,0.020030771000000,0.000092416000000,0.000080960000000 +0.000020134000000,0.000673157000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000392663000000,0.000078984000000,0.000045009000000,0.000031972000000,0.000084515000000,0.000293897000000,0.000291923000000,0.000612712000000,0.019972697000000,0.000347626000000,0.000350391000000,0.019736845000000,0.000089651000000,0.000080960000000 +0.000019739000000,0.000677107000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000355527000000,0.000078589000000,0.000044219000000,0.000031576000000,0.000084515000000,0.000291922000000,0.000366589000000,0.000569255000000,0.019406574000000,0.000346046000000,0.000350787000000,0.019480056000000,0.000092416000000,0.000082144000000 +0.000025665000000,0.000837898000000,0.000037503000000,0.000012896000000,0.000086096000000,0.000037898000000,0.000344861000000,0.000082145000000,0.000044614000000,0.000030787000000,0.000082145000000,0.000382391000000,0.000292317000000,0.000617058000000,0.019621487000000,0.000351181000000,0.000344466000000,0.019574871000000,0.000089256000000,0.000082935000000 +0.000019541500000,0.000737552000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000382392000000,0.000081354000000,0.000043824000000,0.000031972000000,0.000081749000000,0.000296268000000,0.000290737000000,0.000695280000000,0.019457141000000,0.000350391000000,0.000349207000000,0.021061881000000,0.000090046000000,0.000083330000000 +0.000019344000000,0.000705946000000,0.000037898000000,0.000013554333333,0.000055280000000,0.000036317000000,0.000347231000000,0.000080564000000,0.000045009000000,0.000031972000000,0.000083725000000,0.000290737000000,0.000327873000000,0.000387922000000,0.019443314000000,0.000350787000000,0.000381602000000,0.020123610000000,0.000110589000000,0.000095577000000 +0.000019344000000,0.000689354000000,0.000039083000000,0.000024747666667,0.000056071000000,0.000070688000000,0.000382392000000,0.000080959000000,0.000044614000000,0.000050935000000,0.000082539000000,0.000304564000000,0.000295083000000,0.000431379000000,0.020289931000000,0.000355923000000,0.000346441000000,0.020000351000000,0.000182490000000,0.000082540000000 +0.000019541500000,0.000687774000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036318000000,0.000351971000000,0.000083330000000,0.000044219000000,0.000031577000000,0.000081355000000,0.000290737000000,0.000299824000000,0.000426638000000,0.019902771000000,0.000381996000000,0.000385552000000,0.019839956000000,0.000279675000000,0.000080565000000 +0.000019541500000,0.000742687000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000362244000000,0.000081354000000,0.000045404000000,0.000031577000000,0.000081750000000,0.000364614000000,0.000294687000000,0.000749403000000,0.019930820000000,0.000349601000000,0.000346836000000,0.020652202000000,0.000268614000000,0.000082935000000 +0.000019344000000,0.000723329000000,0.000038688000000,0.000013554333333,0.000056861000000,0.000037108000000,0.000379626000000,0.000089651000000,0.000046195000000,0.000030787000000,0.000082144000000,0.000292317000000,0.000292712000000,0.000542786000000,0.019473339000000,0.000347626000000,0.000434144000000,0.020481931000000,0.000206984000000,0.000081354000000 +0.000018554000000,0.000709108000000,0.000051725000000,0.000013554666667,0.000057651000000,0.000037898000000,0.000344861000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000086490000000,0.000290737000000,0.000328268000000,0.000500515000000,0.019932796000000,0.000400564000000,0.000347231000000,0.020075808000000,0.000126392000000,0.000080960000000 +0.000019344000000,0.000688959000000,0.000036713000000,0.000013686000000,0.000056861000000,0.000037897000000,0.000434144000000,0.000076219000000,0.000323923000000,0.000031577000000,0.000084120000000,0.000329454000000,0.000290737000000,0.000490243000000,0.019177438000000,0.000347231000000,0.000388318000000,0.019598574000000,0.000096367000000,0.000083330000000 +0.000019541500000,0.000680268000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000347626000000,0.000078589000000,0.000046985000000,0.000030392000000,0.000084120000000,0.000380416000000,0.000294688000000,0.000652613000000,0.019201142000000,0.000346441000000,0.000346441000000,0.019617141000000,0.000098737000000,0.000080960000000 +0.000020924500000,0.000744662000000,0.000037502000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000343676000000,0.000076614000000,0.000046985000000,0.000031182000000,0.000083725000000,0.000368564000000,0.000362244000000,0.000555823000000,0.020084499000000,0.000354737000000,0.000394638000000,0.019612796000000,0.000133503000000,0.000082540000000 +0.000025467500000,0.000720564000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000351576000000,0.000079774000000,0.000076614000000,0.000030787000000,0.000082145000000,0.000291923000000,0.000295083000000,0.000419132000000,0.019322821000000,0.000349207000000,0.000345651000000,0.019638870000000,0.000098737000000,0.000081749000000 +0.000018949000000,0.000711083000000,0.000038293000000,0.000013554666667,0.000055675000000,0.000037503000000,0.000344071000000,0.000074638000000,0.000060811000000,0.000031577000000,0.000082145000000,0.000291132000000,0.000329454000000,0.000508812000000,0.020321141000000,0.000347231000000,0.000357503000000,0.019470969000000,0.000096762000000,0.000080960000000 +0.000019936500000,0.000678292000000,0.000038293000000,0.000025801666667,0.000055675000000,0.000057256000000,0.000448367000000,0.000076614000000,0.000046984000000,0.000030392000000,0.000082540000000,0.000327873000000,0.000295873000000,0.000461008000000,0.019951364000000,0.000353157000000,0.000350787000000,0.019941487000000,0.000098738000000,0.000082540000000 +0.000019739000000,0.000731626000000,0.000038293000000,0.000013554666667,0.000057256000000,0.000037898000000,0.000350786000000,0.000077799000000,0.000046589000000,0.000070293000000,0.000084515000000,0.000294688000000,0.000297453000000,0.000440860000000,0.020342079000000,0.000400169000000,0.000347626000000,0.019991265000000,0.000099528000000,0.000083330000000 +0.000019936500000,0.000995132000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000346045000000,0.000074639000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000349207000000,0.000359873000000,0.000411626000000,0.019124500000000,0.000351181000000,0.000384762000000,0.019677586000000,0.000098343000000,0.000082935000000 +0.000019541500000,0.000729255000000,0.000057651000000,0.000013027666667,0.000089256000000,0.000037108000000,0.000387528000000,0.000077009000000,0.000048564000000,0.000032367000000,0.000104663000000,0.000483132000000,0.000290737000000,0.000462984000000,0.019420006000000,0.000347626000000,0.000350787000000,0.019757784000000,0.000167083000000,0.000203823000000 +0.000018949000000,0.000765601000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000036317000000,0.000348811000000,0.000080564000000,0.000044219000000,0.000031181000000,0.000081749000000,0.000351577000000,0.000310886000000,0.000490243000000,0.019480055000000,0.000354342000000,0.000395824000000,0.019191661000000,0.000095577000000,0.000231478000000 +0.000018949000000,0.000744662000000,0.000037503000000,0.000013554333333,0.000056466000000,0.000037898000000,0.000387132000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000293898000000,0.000292318000000,0.000452712000000,0.019560648000000,0.000348812000000,0.000349997000000,0.020419117000000,0.000094787000000,0.000111775000000 +0.000026257500000,0.000675527000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000354342000000,0.000074243000000,0.000045800000000,0.000031972000000,0.000081750000000,0.000296663000000,0.000295478000000,0.000474046000000,0.020532894000000,0.000385157000000,0.000490639000000,0.019783463000000,0.000096762000000,0.000095577000000 +0.000019146500000,0.000689354000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037502000000,0.000363428000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000325503000000,0.000412811000000,0.000720564000000,0.019517587000000,0.000348021000000,0.000355527000000,0.019023364000000,0.000095577000000,0.000080959000000 +0.000018554000000,0.000741108000000,0.000039083000000,0.000012896000000,0.000056070000000,0.000036712000000,0.000345256000000,0.000077009000000,0.000044218000000,0.000030787000000,0.000088071000000,0.000294293000000,0.000305750000000,0.000809058000000,0.020023660000000,0.000350391000000,0.000381601000000,0.020232647000000,0.000099132000000,0.000082934000000 +0.000019739000000,0.000726094000000,0.000037897000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000344861000000,0.000077405000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000292317000000,0.000315231000000,0.000509206000000,0.019271463000000,0.000349207000000,0.000350391000000,0.020014969000000,0.000125206000000,0.000082540000000 +0.000020134000000,0.000767182000000,0.000038688000000,0.000022509000000,0.000055676000000,0.000036713000000,0.000381996000000,0.000078194000000,0.000043824000000,0.000030392000000,0.000115725000000,0.000295873000000,0.000295873000000,0.000401354000000,0.020000746000000,0.000350391000000,0.000380021000000,0.019627414000000,0.000098343000000,0.000083330000000 +0.000018949000000,0.000687378000000,0.000075429000000,0.000013554666667,0.000055281000000,0.000037108000000,0.000357502000000,0.000077009000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000293502000000,0.000293108000000,0.000491034000000,0.019568549000000,0.000443626000000,0.000358688000000,0.019393537000000,0.000097947000000,0.000082145000000 +0.000019936500000,0.000737157000000,0.000037898000000,0.000013027666667,0.000075429000000,0.000038293000000,0.000505256000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000081750000000,0.000328664000000,0.000558194000000,0.000477206000000,0.019731710000000,0.000348811000000,0.000424663000000,0.019917784000000,0.000097947000000,0.000101897000000 +0.000018751500000,0.000733206000000,0.000037897000000,0.000013027666667,0.000069108000000,0.000036713000000,0.000366589000000,0.000074243000000,0.000044613000000,0.000031182000000,0.000084120000000,0.000292318000000,0.000326293000000,0.000611922000000,0.020093981000000,0.000362244000000,0.000348021000000,0.019251315000000,0.000097552000000,0.000082540000000 +0.000019344000000,0.000707527000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000037898000000,0.000352762000000,0.000076219000000,0.000043823000000,0.000031576000000,0.000084120000000,0.000296268000000,0.000292713000000,0.000517897000000,0.019192450000000,0.000349206000000,0.000411231000000,0.019905142000000,0.000098343000000,0.000082145000000 +0.000020134000000,0.000777453000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000481947000000,0.000077009000000,0.000043823000000,0.000031182000000,0.000082144000000,0.000305354000000,0.000295083000000,0.000585453000000,0.019810721000000,0.000347626000000,0.000348811000000,0.019448845000000,0.000110194000000,0.000080564000000 +0.000025665000000,0.000674737000000,0.000038293000000,0.000013686000000,0.000056466000000,0.000036713000000,0.000344070000000,0.000074244000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000290738000000,0.000330638000000,0.000583083000000,0.019950969000000,0.000382787000000,0.000351181000000,0.019034426000000,0.000092811000000,0.000080565000000 +0.000019739000000,0.000710687000000,0.000037503000000,0.000013949333333,0.000055281000000,0.000037108000000,0.000354342000000,0.000082935000000,0.000044614000000,0.000031182000000,0.000115329000000,0.000359873000000,0.000291527000000,0.000611132000000,0.019867610000000,0.000402145000000,0.000349206000000,0.019719858000000,0.000092812000000,0.000082145000000 +0.000019739000000,0.000749009000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000419923000000,0.000076614000000,0.000044219000000,0.000032367000000,0.000083725000000,0.000293107000000,0.000290737000000,0.000457453000000,0.019452796000000,0.000415972000000,0.000348416000000,0.019226821000000,0.000091231000000,0.000084515000000 +0.000018949000000,0.000714639000000,0.000037503000000,0.000013554333333,0.000057256000000,0.000037108000000,0.000349206000000,0.000075033000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000295083000000,0.000373305000000,0.000406885000000,0.020634424000000,0.000347626000000,0.000431379000000,0.019589488000000,0.000091626000000,0.000151675000000 +0.000019541500000,0.000726885000000,0.000038688000000,0.000023694333333,0.000107824000000,0.000036713000000,0.000405700000000,0.000074638000000,0.000046589000000,0.000031182000000,0.000082144000000,0.000327083000000,0.000295478000000,0.000408466000000,0.019812697000000,0.000349997000000,0.000349997000000,0.020287166000000,0.000092417000000,0.000081355000000 +0.000018751000000,0.000840268000000,0.000052516000000,0.000013027666667,0.000086886000000,0.000050935000000,0.000351577000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000081750000000,0.000294293000000,0.000327083000000,0.000467725000000,0.018996896000000,0.000384367000000,0.000380811000000,0.020600054000000,0.000164317000000,0.000080960000000 +0.000018949000000,0.000686194000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000352367000000,0.000074243000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000295083000000,0.000297848000000,0.000422688000000,0.020092401000000,0.000349601000000,0.000348021000000,0.019182179000000,0.000090837000000,0.000080564000000 +0.000019936500000,0.000729255000000,0.000039873000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000387132000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000082540000000,0.000294292000000,0.000294688000000,0.000532120000000,0.019502574000000,0.000388713000000,0.000383972000000,0.019732500000000,0.000092417000000,0.000082935000000 +0.000019739000000,0.000724120000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000345255000000,0.000074244000000,0.000045404000000,0.000031182000000,0.000115725000000,0.000290737000000,0.000375280000000,0.000545552000000,0.019408945000000,0.000351971000000,0.000344860000000,0.019888153000000,0.000092811000000,0.000081354000000 +0.000019541500000,0.000730045000000,0.000038293000000,0.000013027666667,0.000057256000000,0.000037108000000,0.000793651000000,0.000075824000000,0.000045800000000,0.000032762000000,0.000084120000000,0.000325503000000,0.000293502000000,0.000521848000000,0.019862869000000,0.000342885000000,0.000439675000000,0.019217340000000,0.000092416000000,0.000081355000000 +0.000035541500000,0.000683429000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000383972000000,0.000077404000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000293107000000,0.000315626000000,0.000483922000000,0.019307414000000,0.000403725000000,0.000353947000000,0.019824549000000,0.000092021000000,0.000114145000000 +0.000018751500000,0.000681058000000,0.000037897000000,0.000012896000000,0.000069502000000,0.000037898000000,0.000354738000000,0.000077009000000,0.000045404000000,0.000031972000000,0.000082145000000,0.000293107000000,0.000295083000000,0.000524613000000,0.019243019000000,0.000345255000000,0.000422687000000,0.019162031000000,0.000107824000000,0.000080959000000 +0.000019937000000,0.000747428000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000036318000000,0.000346441000000,0.000077009000000,0.000044613000000,0.000031577000000,0.000082145000000,0.000327083000000,0.000294292000000,0.000399380000000,0.021468399000000,0.000382392000000,0.000348021000000,0.019756203000000,0.000090441000000,0.000080960000000 +0.000019541500000,0.000709898000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000425453000000,0.000075429000000,0.000045799000000,0.000032367000000,0.000085305000000,0.000295083000000,0.000323528000000,0.000398589000000,0.019655463000000,0.000348021000000,0.000390687000000,0.020489437000000,0.000090836000000,0.000082539000000 +0.000018949000000,0.000718588000000,0.000038292000000,0.000012896000000,0.000055675000000,0.000039083000000,0.000347231000000,0.000075824000000,0.000044219000000,0.000030787000000,0.000082540000000,0.000395033000000,0.000291922000000,0.000408465000000,0.019493093000000,0.000344861000000,0.000346441000000,0.019583956000000,0.000092811000000,0.000080959000000 +0.000018751500000,0.000701206000000,0.000037897000000,0.000013028000000,0.000055676000000,0.000036713000000,0.000401354000000,0.000074639000000,0.000046194000000,0.000032367000000,0.000117305000000,0.000290342000000,0.000290737000000,0.000415181000000,0.019849438000000,0.000388712000000,0.000453898000000,0.020041832000000,0.000092021000000,0.000082935000000 +0.000019541500000,0.000735182000000,0.000037898000000,0.000013027666667,0.000057651000000,0.000036713000000,0.000352762000000,0.000077799000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000290343000000,0.000312071000000,0.000524219000000,0.020053684000000,0.000352762000000,0.000397404000000,0.019113438000000,0.000089256000000,0.000082145000000 +0.000019739000000,0.000745058000000,0.000038293000000,0.000013554333333,0.000056861000000,0.000037108000000,0.000355923000000,0.000076614000000,0.000045799000000,0.000031577000000,0.000082144000000,0.000346836000000,0.000293503000000,0.000407675000000,0.018692303000000,0.000387132000000,0.000430194000000,0.020287561000000,0.000124021000000,0.000082540000000 +0.000019739000000,0.000728071000000,0.000037502000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000382391000000,0.000074244000000,0.000044219000000,0.000030391000000,0.000082144000000,0.000291922000000,0.000361453000000,0.000429404000000,0.019913438000000,0.000347231000000,0.000349206000000,0.019575265000000,0.000090046000000,0.000096367000000 +0.000019739000000,0.000705947000000,0.000038688000000,0.000012896000000,0.000077404000000,0.000038293000000,0.000349602000000,0.000074243000000,0.000043824000000,0.000030787000000,0.000084120000000,0.000290738000000,0.000293108000000,0.000395033000000,0.018341489000000,0.000615478000000,0.000432169000000,0.019232352000000,0.000092021000000,0.000087675000000 +0.000035541500000,0.000698441000000,0.000037898000000,0.000013027666667,0.000056465000000,0.000037898000000,0.000383972000000,0.000074243000000,0.000045009000000,0.000031972000000,0.000081750000000,0.000292713000000,0.000290737000000,0.000430194000000,0.018806871000000,0.000347626000000,0.000351577000000,0.019613586000000,0.000090046000000,0.000085700000000 +0.000018751500000,0.000731231000000,0.000041848000000,0.000013554333333,0.000055280000000,0.000038688000000,0.000353947000000,0.000077009000000,0.000043824000000,0.000031182000000,0.000082540000000,0.000294687000000,0.000324318000000,0.000477601000000,0.018649241000000,0.000348416000000,0.000418737000000,0.019224055000000,0.000092812000000,0.000087676000000 +0.000019739000000,0.000720169000000,0.000039478000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000349207000000,0.000074639000000,0.000044614000000,0.000031972000000,0.000173009000000,0.000326688000000,0.000290738000000,0.000393453000000,0.019464253000000,0.000351576000000,0.000350787000000,0.021504350000000,0.000092417000000,0.000088071000000 +0.000019739000000,0.000712268000000,0.000037898000000,0.000013554333333,0.000056071000000,0.000036712000000,0.000379626000000,0.000082145000000,0.000065552000000,0.000030787000000,0.000097552000000,0.000290342000000,0.000361058000000,0.000414787000000,0.018964105000000,0.000400564000000,0.000389503000000,0.020275314000000,0.000089651000000,0.000121256000000 +0.000018554000000,0.000685008000000,0.000071478000000,0.000013554333333,0.000056466000000,0.000037503000000,0.000346836000000,0.000077009000000,0.000059231000000,0.000031181000000,0.000084120000000,0.000294292000000,0.000294688000000,0.000399379000000,0.019082229000000,0.000347231000000,0.000344861000000,0.019894080000000,0.000118096000000,0.000085700000000 +0.000019739000000,0.000685009000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000050935000000,0.000436514000000,0.000074243000000,0.000044218000000,0.000031577000000,0.000167478000000,0.000329848000000,0.000310095000000,0.000454688000000,0.019528648000000,0.000348811000000,0.000348021000000,0.020518672000000,0.000092416000000,0.000086096000000 +0.000019936500000,0.000720169000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000037503000000,0.000397798000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000083330000000,0.000291527000000,0.000376861000000,0.000395429000000,0.018610130000000,0.000365009000000,0.000348021000000,0.020061981000000,0.000089651000000,0.000085306000000 +0.000018554000000,0.000735972000000,0.000038688000000,0.000013554333333,0.000056466000000,0.000037502000000,0.000349206000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000098737000000,0.000335775000000,0.000297848000000,0.000437305000000,0.019233932000000,0.000349601000000,0.000346441000000,0.020133092000000,0.000092812000000,0.000084911000000 +0.000019936500000,0.000742292000000,0.000038688000000,0.000013027666667,0.000056465000000,0.000037503000000,0.000378046000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000082144000000,0.000290738000000,0.000325107000000,0.000382392000000,0.018872450000000,0.000346441000000,0.000366984000000,0.019510080000000,0.000090441000000,0.000088070000000 +0.000018949000000,0.000707527000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000348812000000,0.000074639000000,0.000045404000000,0.000031972000000,0.000084515000000,0.000291132000000,0.000294688000000,0.000454688000000,0.018267612000000,0.000353157000000,0.000347231000000,0.019503364000000,0.000092811000000,0.000084910000000 +0.000028825500000,0.000810638000000,0.000037898000000,0.000013686000000,0.000056071000000,0.000038688000000,0.000386342000000,0.000074244000000,0.000044614000000,0.000032762000000,0.000081749000000,0.000325503000000,0.000293502000000,0.000487478000000,0.019151365000000,0.000346836000000,0.000406490000000,0.019236302000000,0.000107034000000,0.000088466000000 +0.000037714000000,0.001104959000000,0.000038293000000,0.000015003000000,0.000057651000000,0.000037107000000,0.000343676000000,0.000126392000000,0.000045009000000,0.000030787000000,0.000082144000000,0.000294293000000,0.000325898000000,0.000469700000000,0.018998475000000,0.000347626000000,0.000347626000000,0.020139413000000,0.000092021000000,0.000088860000000 +0.000033566000000,0.000675527000000,0.000037503000000,0.000013027666667,0.000056071000000,0.000036317000000,0.000356317000000,0.000094392000000,0.000078985000000,0.000030787000000,0.000086491000000,0.000298638000000,0.000291528000000,0.000413206000000,0.018709291000000,0.000360268000000,0.000421898000000,0.019358376000000,0.000092021000000,0.000086491000000 +0.000019739000000,0.000719774000000,0.000038688000000,0.000024221000000,0.000055281000000,0.000036713000000,0.000346836000000,0.000076614000000,0.000046194000000,0.000032762000000,0.000081354000000,0.000533700000000,0.000295478000000,0.000466144000000,0.018823068000000,0.000346836000000,0.000411626000000,0.019500993000000,0.000089651000000,0.000086491000000 +0.000019541500000,0.000710293000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000344861000000,0.000074639000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000291132000000,0.000583082000000,0.000430589000000,0.018591168000000,0.000354343000000,0.000444416000000,0.019745141000000,0.000090046000000,0.000087676000000 +0.000018751500000,0.000709107000000,0.000037898000000,0.000013554333333,0.000055281000000,0.000070688000000,0.000397009000000,0.000076219000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000306145000000,0.000327083000000,0.000437305000000,0.018680846000000,0.000347231000000,0.000345256000000,0.019474920000000,0.000089650000000,0.000087676000000 +0.000019541500000,0.000691724000000,0.000037503000000,0.000012896000000,0.000111379000000,0.000036713000000,0.000349206000000,0.000076614000000,0.000045404000000,0.000030787000000,0.000082144000000,0.000290342000000,0.000290737000000,0.000569255000000,0.018488451000000,0.000348811000000,0.000446391000000,0.020284400000000,0.000112960000000,0.000123627000000 +0.000018554000000,0.000740317000000,0.000037898000000,0.000013027666667,0.000056070000000,0.000036317000000,0.000376860000000,0.000075823000000,0.000045799000000,0.000031972000000,0.000081750000000,0.000325108000000,0.000292318000000,0.000668021000000,0.018706130000000,0.000358292000000,0.000350786000000,0.019243413000000,0.000107824000000,0.000087676000000 +0.000018751500000,0.000754539000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000037503000000,0.000348416000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000292318000000,0.000324318000000,0.000609552000000,0.019275019000000,0.000350786000000,0.000417552000000,0.020097931000000,0.000095182000000,0.000088071000000 +0.000026455000000,0.000720564000000,0.000038293000000,0.000013554333333,0.000055675000000,0.000037503000000,0.000351577000000,0.000077404000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000299034000000,0.000294688000000,0.000458638000000,0.018939217000000,0.000348417000000,0.000347231000000,0.019439365000000,0.000092416000000,0.000085305000000 +0.000019541500000,0.000715034000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037898000000,0.000426243000000,0.000076219000000,0.000044219000000,0.000031972000000,0.000083725000000,0.000327873000000,0.000336170000000,0.000645107000000,0.018872056000000,0.000348021000000,0.000419132000000,0.019312154000000,0.000093997000000,0.000088466000000 +0.000019739000000,0.000674737000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000345255000000,0.000077009000000,0.000045009000000,0.000034738000000,0.000097552000000,0.000298243000000,0.000293107000000,0.000405701000000,0.019015463000000,0.000346836000000,0.000346441000000,0.019839561000000,0.000090046000000,0.000085305000000 +0.000018751500000,0.000850935000000,0.000037898000000,0.000013028000000,0.000055676000000,0.000037503000000,0.000555824000000,0.000076614000000,0.000043824000000,0.000031182000000,0.000084120000000,0.000295478000000,0.000292712000000,0.000494984000000,0.019241439000000,0.000346440000000,0.000417947000000,0.019288056000000,0.000090046000000,0.000104663000000 +0.000018751500000,0.000722934000000,0.000037503000000,0.000027776666667,0.000056861000000,0.000036712000000,0.000379231000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000082145000000,0.000304959000000,0.000327083000000,0.000433355000000,0.019440154000000,0.000347626000000,0.000346836000000,0.019718672000000,0.000093602000000,0.000088466000000 +0.000019541500000,0.000747824000000,0.000039083000000,0.000013027666667,0.000090441000000,0.000037503000000,0.000352367000000,0.000139429000000,0.000045009000000,0.000031182000000,0.000084910000000,0.000295082000000,0.000293502000000,0.000457058000000,0.018468698000000,0.000351181000000,0.000407675000000,0.019062476000000,0.000090046000000,0.000086095000000 +0.000019739500000,0.000724909000000,0.000038293000000,0.000013554333333,0.000057256000000,0.000036712000000,0.000398194000000,0.000076218000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000325502000000,0.000301404000000,0.000449552000000,0.019052994000000,0.000346440000000,0.000348021000000,0.020358277000000,0.000092417000000,0.000087675000000 +0.000018751500000,0.000688169000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000351577000000,0.000120861000000,0.000045404000000,0.000032367000000,0.000085305000000,0.000295083000000,0.000321552000000,0.000482737000000,0.019048254000000,0.000404515000000,0.000489058000000,0.019064056000000,0.000091626000000,0.000086886000000 +0.000018751500000,0.000746243000000,0.000039478000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000345651000000,0.000078985000000,0.000044219000000,0.000030787000000,0.000156416000000,0.000297848000000,0.000295083000000,0.000492219000000,0.019698525000000,0.000349207000000,0.000442440000000,0.019524303000000,0.000092022000000,0.000084910000000 +0.000019739500000,0.000712268000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000036712000000,0.000420317000000,0.000080169000000,0.000045009000000,0.000031971000000,0.000084120000000,0.000357897000000,0.000333404000000,0.000539230000000,0.018737735000000,0.000349996000000,0.000372910000000,0.019420402000000,0.000093996000000,0.000088466000000 +0.000054109500000,0.000765206000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000348811000000,0.000147330000000,0.000045009000000,0.000032762000000,0.000081749000000,0.000291527000000,0.000295873000000,0.000430589000000,0.018692303000000,0.000346836000000,0.000349207000000,0.019611611000000,0.000090046000000,0.000122046000000 +0.000019739500000,0.000712662000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000037108000000,0.000446392000000,0.000087675000000,0.000045009000000,0.000044614000000,0.000084910000000,0.000325108000000,0.000294687000000,0.000465749000000,0.018992945000000,0.000348416000000,0.000381602000000,0.019427117000000,0.000092811000000,0.000087675000000 +0.000020134500000,0.000682638000000,0.000037503000000,0.000012896000000,0.000056070000000,0.000037503000000,0.000349601000000,0.000074639000000,0.000046194000000,0.000031577000000,0.000082145000000,0.000293503000000,0.000326688000000,0.000416762000000,0.019787809000000,0.000342885000000,0.000346441000000,0.019301092000000,0.000089651000000,0.000086095000000 +0.000018751000000,0.000745847000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000036713000000,0.000358293000000,0.000075428000000,0.000045799000000,0.000031577000000,0.000081355000000,0.000293502000000,0.000291528000000,0.000524219000000,0.018844007000000,0.000349207000000,0.000382391000000,0.019003217000000,0.000089256000000,0.000086095000000 +0.000019739000000,0.000709897000000,0.000038688000000,0.000022640666667,0.000058046000000,0.000036713000000,0.000393453000000,0.000093997000000,0.000044614000000,0.000031577000000,0.000083725000000,0.000360268000000,0.000324317000000,0.000439675000000,0.018586427000000,0.000456663000000,0.000351182000000,0.020004697000000,0.000092021000000,0.000086095000000 +0.000019541500000,0.000794836000000,0.000037898000000,0.000013686333333,0.000055676000000,0.000038293000000,0.000356712000000,0.000076614000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000293898000000,0.000297453000000,0.000796416000000,0.020188401000000,0.000349207000000,0.000417947000000,0.020140598000000,0.000090046000000,0.000085701000000 +0.000018949000000,0.000721354000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000056860000000,0.000380416000000,0.000076614000000,0.000043824000000,0.000031972000000,0.000082145000000,0.000327083000000,0.000294687000000,0.000453107000000,0.019452401000000,0.000349207000000,0.000348416000000,0.020278474000000,0.000136268000000,0.000084910000000 +0.000018949000000,0.000673551000000,0.000038293000000,0.000013027666667,0.000057256000000,0.000037502000000,0.000347231000000,0.000074244000000,0.000046194000000,0.000031972000000,0.000084120000000,0.000294293000000,0.000328663000000,0.000426244000000,0.018243118000000,0.000348811000000,0.000392663000000,0.020034327000000,0.000092811000000,0.000088071000000 +0.000020134500000,0.000771922000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000346046000000,0.000074243000000,0.000045009000000,0.000030392000000,0.000082144000000,0.000291923000000,0.000292318000000,0.000453107000000,0.018919858000000,0.000349207000000,0.000349997000000,0.020016154000000,0.000089651000000,0.000088071000000 +0.000019739500000,0.000726490000000,0.000039478000000,0.000013554666667,0.000056071000000,0.000036712000000,0.000445601000000,0.000077404000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000327083000000,0.000334589000000,0.000415971000000,0.019323216000000,0.000367774000000,0.000381997000000,0.019322426000000,0.000093207000000,0.000088070000000 +0.000018751500000,0.000777453000000,0.000037503000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000355132000000,0.000074638000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000294688000000,0.000294688000000,0.000605997000000,0.019356796000000,0.000346836000000,0.000348021000000,0.019037982000000,0.000090441000000,0.000088466000000 +0.000020134000000,0.000721354000000,0.000041848000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000378836000000,0.000077404000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000293898000000,0.000291923000000,0.000540021000000,0.018795414000000,0.000391873000000,0.000371330000000,0.019423166000000,0.000088861000000,0.000087281000000 +0.000018751500000,0.000680663000000,0.000037503000000,0.000013027666667,0.000091231000000,0.000036713000000,0.000347626000000,0.000077009000000,0.000060022000000,0.000032762000000,0.000084515000000,0.000291923000000,0.000324713000000,0.000532120000000,0.019206278000000,0.000346046000000,0.000345256000000,0.018854673000000,0.000092416000000,0.000087675000000 +0.000019146500000,0.001252316000000,0.000037898000000,0.000013554333333,0.000056071000000,0.000037503000000,0.000351181000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000296268000000,0.000293108000000,0.000578737000000,0.018855068000000,0.000346045000000,0.000351577000000,0.019235908000000,0.000276120000000,0.000125996000000 +0.000019936500000,0.000691330000000,0.000037898000000,0.000017505000000,0.000056071000000,0.000037898000000,0.000378836000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000447971000000,0.000295083000000,0.000593354000000,0.019524303000000,0.000344071000000,0.000353552000000,0.019772401000000,0.000275725000000,0.000086095000000 +0.000018949000000,0.000674342000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037108000000,0.000346045000000,0.000079380000000,0.000043824000000,0.000031577000000,0.000084515000000,0.000326293000000,0.000313255000000,0.000555033000000,0.019724598000000,0.000345650000000,0.000353157000000,0.020921635000000,0.000123627000000,0.000086095000000 +0.000019541500000,0.000710687000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000444416000000,0.000077009000000,0.000045799000000,0.000031577000000,0.000082144000000,0.000332219000000,0.000295083000000,0.000571231000000,0.021055955000000,0.000348811000000,0.000431774000000,0.019602130000000,0.000090046000000,0.000087281000000 +0.000019541500000,0.000706737000000,0.000037503000000,0.000013027666667,0.000058441000000,0.000036713000000,0.000353157000000,0.000077009000000,0.000045009000000,0.000031577000000,0.000084121000000,0.000290737000000,0.000327082000000,0.000538441000000,0.019548401000000,0.000348021000000,0.000356712000000,0.019278574000000,0.000090441000000,0.000087676000000 +0.000019146500000,0.000706342000000,0.000037898000000,0.000013028000000,0.000054885000000,0.000037898000000,0.000347231000000,0.000077799000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000295873000000,0.000298243000000,0.000724515000000,0.018640550000000,0.000347231000000,0.000418737000000,0.019406969000000,0.000093997000000,0.000088071000000 +0.000019541500000,0.000687379000000,0.000038688000000,0.000013554666667,0.000055676000000,0.000037898000000,0.000417947000000,0.000075033000000,0.000044219000000,0.000030787000000,0.000082540000000,0.000361453000000,0.000290737000000,0.000769157000000,0.019301093000000,0.000346441000000,0.000347231000000,0.019453586000000,0.000093997000000,0.000086096000000 +0.000019936500000,0.000707527000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000037502000000,0.000348021000000,0.000081355000000,0.000045009000000,0.000031972000000,0.000081750000000,0.000293502000000,0.000327083000000,0.000587034000000,0.018970821000000,0.000382787000000,0.000381207000000,0.019548006000000,0.000092811000000,0.000085701000000 +0.000018949000000,0.000733996000000,0.000037898000000,0.000013554666667,0.000057256000000,0.000037898000000,0.000435725000000,0.000076614000000,0.000046984000000,0.000032367000000,0.000084120000000,0.000349206000000,0.000290342000000,0.000856465000000,0.019189685000000,0.000347231000000,0.000347626000000,0.019525093000000,0.000123231000000,0.000085306000000 +0.000019541500000,0.000741108000000,0.000038293000000,0.000013554333333,0.000056466000000,0.000037108000000,0.000361849000000,0.000076219000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000294688000000,0.000291922000000,0.000718984000000,0.019058920000000,0.000347231000000,0.000395428000000,0.019949784000000,0.000091231000000,0.000088071000000 +0.000019936500000,0.000709897000000,0.000053305000000,0.000012896000000,0.000056861000000,0.000037503000000,0.000352367000000,0.000075034000000,0.000043824000000,0.000031577000000,0.000081749000000,0.000296663000000,0.000295873000000,0.000754144000000,0.018461588000000,0.000348812000000,0.000346045000000,0.019611611000000,0.000091626000000,0.000086095000000 +0.000019541500000,0.000683823000000,0.000037108000000,0.000017636666667,0.000055675000000,0.000036712000000,0.000387922000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000361058000000,0.000296268000000,0.000659724000000,0.018802525000000,0.000348416000000,0.000385157000000,0.019671660000000,0.000090441000000,0.000085305000000 +0.000018751500000,0.000768367000000,0.000038688000000,0.000013686000000,0.000055675000000,0.000036713000000,0.000356317000000,0.000077404000000,0.000045404000000,0.000031972000000,0.000128762000000,0.000291132000000,0.000363823000000,0.000394638000000,0.019468599000000,0.000350392000000,0.000348021000000,0.018811216000000,0.000092811000000,0.000087281000000 +0.000018554000000,0.000713058000000,0.000040664000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000444021000000,0.000075034000000,0.000043823000000,0.000031577000000,0.000081750000000,0.000316021000000,0.000291132000000,0.000385157000000,0.018714032000000,0.000346045000000,0.000350391000000,0.020779412000000,0.000090046000000,0.000193947000000 +0.000019936500000,0.000713848000000,0.000037898000000,0.000012896000000,0.000057651000000,0.000050145000000,0.000351972000000,0.000077404000000,0.000045799000000,0.000030392000000,0.000084120000000,0.000295478000000,0.000290737000000,0.000696070000000,0.019178624000000,0.000350392000000,0.000366194000000,0.019950573000000,0.000093206000000,0.000150885000000 +0.000019541500000,0.000674342000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000347231000000,0.000076614000000,0.000043824000000,0.000031972000000,0.000084910000000,0.000294293000000,0.000324317000000,0.000605601000000,0.018410229000000,0.000347231000000,0.000378836000000,0.019472945000000,0.000107033000000,0.000101898000000 +0.000028825500000,0.000686194000000,0.000039083000000,0.000013028000000,0.000056466000000,0.000037503000000,0.000429798000000,0.000075428000000,0.000045009000000,0.000031577000000,0.000082145000000,0.000375280000000,0.000291922000000,0.000595725000000,0.019467808000000,0.000346046000000,0.000348022000000,0.019385636000000,0.000092812000000,0.000086490000000 +0.000018751500000,0.000735576000000,0.000037503000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000356317000000,0.000074244000000,0.000044219000000,0.000032368000000,0.000081750000000,0.000294688000000,0.000335379000000,0.000380811000000,0.018681637000000,0.000349207000000,0.000348417000000,0.019290821000000,0.000090046000000,0.000087280000000 +0.000019541500000,0.000737947000000,0.000038688000000,0.000013686000000,0.000056071000000,0.000038293000000,0.000344861000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000084516000000,0.000293898000000,0.000294688000000,0.000408860000000,0.019805586000000,0.000349602000000,0.000346441000000,0.019349290000000,0.000089650000000,0.000088465000000 +0.000019739000000,0.000709502000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000036317000000,0.000348811000000,0.000080565000000,0.000045799000000,0.000031577000000,0.000117700000000,0.000293897000000,0.000292317000000,0.000388317000000,0.019575265000000,0.000349997000000,0.000351971000000,0.019657833000000,0.000089651000000,0.000087281000000 +0.000019541500000,0.000695281000000,0.000073848000000,0.000013554333333,0.000055281000000,0.000037898000000,0.000349206000000,0.000074244000000,0.000045404000000,0.000050540000000,0.000084120000000,0.000310096000000,0.000325898000000,0.000380417000000,0.018486871000000,0.000347231000000,0.000380811000000,0.019958079000000,0.000091626000000,0.000088861000000 +0.000019541500000,0.000707132000000,0.000039873000000,0.000017900000000,0.000055676000000,0.000036713000000,0.000491824000000,0.000075033000000,0.000045404000000,0.000030787000000,0.000081750000000,0.000377651000000,0.000292712000000,0.000379231000000,0.018975167000000,0.000353156000000,0.000348416000000,0.020468499000000,0.000160762000000,0.000088070000000 +0.000018751500000,0.000784169000000,0.000040663000000,0.000013554333333,0.000055281000000,0.000037897000000,0.000353156000000,0.000088466000000,0.000044219000000,0.000030786000000,0.000084120000000,0.000291133000000,0.000293107000000,0.000379626000000,0.018407858000000,0.000347231000000,0.000380417000000,0.020373684000000,0.000092812000000,0.000085700000000 +0.000018949000000,0.000709897000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037898000000,0.000581898000000,0.000078590000000,0.000044219000000,0.000033157000000,0.000084515000000,0.000294688000000,0.000455478000000,0.000388318000000,0.019538919000000,0.000346046000000,0.000354342000000,0.020072647000000,0.000092022000000,0.000088071000000 +0.000019541500000,0.000752959000000,0.000038688000000,0.000012896000000,0.000103084000000,0.000071478000000,0.000357503000000,0.000076614000000,0.000043824000000,0.000032762000000,0.000082540000000,0.000293502000000,0.000291923000000,0.000416761000000,0.019317290000000,0.000354343000000,0.000380021000000,0.019177438000000,0.000092021000000,0.000088070000000 +0.000018949000000,0.001046885000000,0.000038293000000,0.000013554666667,0.000055675000000,0.000037898000000,0.000379231000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000084910000000,0.000294292000000,0.000325898000000,0.000380811000000,0.018455266000000,0.000347231000000,0.000361058000000,0.019376154000000,0.000092811000000,0.000101108000000 +0.000019146500000,0.000820119000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000037898000000,0.000350391000000,0.000074638000000,0.000043824000000,0.000031972000000,0.000205404000000,0.000360663000000,0.000292317000000,0.000381601000000,0.018569044000000,0.000462589000000,0.000453107000000,0.019522722000000,0.000092417000000,0.000084911000000 +0.000026850000000,0.000686984000000,0.000039478000000,0.000012896000000,0.000056465000000,0.000038688000000,0.000437305000000,0.000077009000000,0.000044219000000,0.000032762000000,0.000136663000000,0.000295873000000,0.000295873000000,0.000382787000000,0.018409438000000,0.000346045000000,0.000377651000000,0.019826919000000,0.000112169000000,0.000085701000000 +0.000019936500000,0.000688169000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000350392000000,0.000084910000000,0.000044614000000,0.000031972000000,0.000099132000000,0.000293503000000,0.000318391000000,0.000383576000000,0.019132796000000,0.000347626000000,0.000436910000000,0.020077388000000,0.000090836000000,0.000085306000000 +0.000019344000000,0.000719379000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000057255000000,0.000371330000000,0.000074638000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000325108000000,0.000290737000000,0.000381996000000,0.018815957000000,0.000387528000000,0.000348022000000,0.019921734000000,0.000090441000000,0.000085305000000 +0.000019936500000,0.000725304000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000051725000000,0.000386737000000,0.000074243000000,0.000046194000000,0.000031577000000,0.000084515000000,0.000291132000000,0.000368959000000,0.000424268000000,0.018484501000000,0.000381206000000,0.000406490000000,0.020097141000000,0.000089651000000,0.000088071000000 +0.000018751500000,0.000722935000000,0.000039873000000,0.000024484666667,0.000056861000000,0.000037502000000,0.000344465000000,0.000074639000000,0.000045009000000,0.000069108000000,0.000097157000000,0.000327873000000,0.000295083000000,0.000383182000000,0.019137142000000,0.000348416000000,0.000350787000000,0.019250130000000,0.000092416000000,0.000086885000000 +0.000018949000000,0.000687378000000,0.000038688000000,0.000013554333333,0.000095577000000,0.000037503000000,0.000433749000000,0.000076614000000,0.000043824000000,0.000052120000000,0.000082539000000,0.000295083000000,0.000292713000000,0.000383972000000,0.019027315000000,0.000349207000000,0.000380022000000,0.018896155000000,0.000090441000000,0.000087675000000 +0.000019937000000,0.000726095000000,0.000037898000000,0.000013423000000,0.000055676000000,0.000036713000000,0.000343281000000,0.000077799000000,0.000044614000000,0.000033552000000,0.000083330000000,0.000292713000000,0.000310885000000,0.000389898000000,0.018355315000000,0.000351181000000,0.000350392000000,0.020295857000000,0.000092812000000,0.000088071000000 +0.000019739000000,0.000718194000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000344860000000,0.000077009000000,0.000043824000000,0.000031577000000,0.000082540000000,0.000328268000000,0.000292712000000,0.000396613000000,0.019143463000000,0.000349207000000,0.000346836000000,0.019122920000000,0.000124021000000,0.000086096000000 +0.000019541500000,0.000709502000000,0.000037897000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000387922000000,0.000074244000000,0.000044614000000,0.000032762000000,0.000084515000000,0.000292712000000,0.000325897000000,0.000380416000000,0.018508994000000,0.000347231000000,0.000355133000000,0.019903562000000,0.000090046000000,0.000085306000000 +0.000036529000000,0.000696070000000,0.000039873000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000349206000000,0.000111774000000,0.000046589000000,0.000031577000000,0.000081750000000,0.000291527000000,0.000290737000000,0.000378441000000,0.019560647000000,0.000434145000000,0.000348021000000,0.019098426000000,0.000105058000000,0.000087676000000 +0.000018949000000,0.000675922000000,0.000060022000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000428219000000,0.000093206000000,0.000044614000000,0.000030787000000,0.000102688000000,0.000321947000000,0.000296268000000,0.000387922000000,0.019018229000000,0.000351972000000,0.000365009000000,0.019481636000000,0.000095182000000,0.000088466000000 +0.000019541500000,0.000725700000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000346836000000,0.000077009000000,0.000044219000000,0.000031577000000,0.000082540000000,0.000293898000000,0.000364614000000,0.000583083000000,0.019287660000000,0.000388317000000,0.000346836000000,0.019425142000000,0.000098343000000,0.000089651000000 +0.000018751500000,0.000705947000000,0.000037503000000,0.000013554666667,0.000055280000000,0.000037898000000,0.000349997000000,0.000075034000000,0.000044219000000,0.000031972000000,0.000081750000000,0.000326688000000,0.000293502000000,0.000593750000000,0.018728648000000,0.000356713000000,0.000388713000000,0.019637290000000,0.000095577000000,0.000087281000000 +0.000018949000000,0.000704762000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000395034000000,0.000076614000000,0.000044219000000,0.000030392000000,0.000082145000000,0.000296268000000,0.000342490000000,0.000544367000000,0.018776451000000,0.000362639000000,0.000349602000000,0.019531809000000,0.000099132000000,0.000087676000000 +0.000019541500000,0.000686983000000,0.000041454000000,0.000018163666667,0.000163527000000,0.000037503000000,0.000345651000000,0.000078194000000,0.000044219000000,0.000032367000000,0.000081355000000,0.000293503000000,0.000295083000000,0.000591378000000,0.019356796000000,0.000348417000000,0.000415577000000,0.019113043000000,0.000095182000000,0.000084910000000 +0.000019739000000,0.001097453000000,0.000039478000000,0.000013027666667,0.000093207000000,0.000038293000000,0.000421502000000,0.000109799000000,0.000045009000000,0.000030787000000,0.000082145000000,0.000733602000000,0.000290737000000,0.000521453000000,0.018934871000000,0.000347231000000,0.000347231000000,0.019677191000000,0.000100713000000,0.000088466000000 +0.000019739000000,0.000692515000000,0.000037898000000,0.000012896000000,0.000060021000000,0.000037503000000,0.000344070000000,0.000074638000000,0.000045800000000,0.000032367000000,0.000084515000000,0.000340120000000,0.000380021000000,0.000409255000000,0.020191166000000,0.000348811000000,0.000383181000000,0.018879957000000,0.000097947000000,0.000085700000000 +0.000018751500000,0.000712267000000,0.000038688000000,0.000013554333333,0.000057651000000,0.000038688000000,0.000358292000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000118095000000,0.000290342000000,0.000293107000000,0.000627329000000,0.019997981000000,0.000351182000000,0.000350392000000,0.019909092000000,0.000098342000000,0.000084911000000 +0.000019146500000,0.000722144000000,0.000038293000000,0.000013027666667,0.000057651000000,0.000037898000000,0.000397799000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000084515000000,0.000290737000000,0.000325502000000,0.000397403000000,0.018433933000000,0.000352762000000,0.000380416000000,0.019806376000000,0.000098342000000,0.000088071000000 +0.000029615500000,0.000725700000000,0.000041849000000,0.000012896000000,0.000055281000000,0.000037108000000,0.000350787000000,0.000078195000000,0.000043823000000,0.000033157000000,0.000156416000000,0.000330243000000,0.000293502000000,0.000387527000000,0.018488451000000,0.000351181000000,0.000349207000000,0.018810031000000,0.000099133000000,0.000087281000000 +0.000055887000000,0.000673552000000,0.000037898000000,0.000013027666667,0.000069502000000,0.000037108000000,0.000656564000000,0.000076614000000,0.000045009000000,0.000031972000000,0.000087280000000,0.000291922000000,0.000293107000000,0.000417156000000,0.019325981000000,0.000359873000000,0.000346441000000,0.019328747000000,0.000097948000000,0.000088071000000 +0.000035146500000,0.000688959000000,0.000037503000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000380811000000,0.000079774000000,0.000045009000000,0.000031181000000,0.000109009000000,0.000291133000000,0.000374885000000,0.000423083000000,0.019150574000000,0.000357108000000,0.000362639000000,0.019760154000000,0.000097157000000,0.000088071000000 +0.000020727000000,0.000839872000000,0.000038293000000,0.000013686000000,0.000055281000000,0.000037107000000,0.000348811000000,0.000088466000000,0.000044219000000,0.000031577000000,0.000178935000000,0.000295873000000,0.000291132000000,0.000368959000000,0.018640550000000,0.000347231000000,0.000347626000000,0.019827710000000,0.000098342000000,0.000085700000000 +0.000047788500000,0.000749799000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000395824000000,0.000076614000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000297453000000,0.000292713000000,0.000393453000000,0.018464747000000,0.000347231000000,0.000347626000000,0.019134377000000,0.000095577000000,0.000087675000000 +0.000037516500000,0.000777453000000,0.000037503000000,0.000024221000000,0.000057256000000,0.000037898000000,0.000402145000000,0.000077404000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000325898000000,0.000294688000000,0.000554243000000,0.018801735000000,0.000348811000000,0.000349997000000,0.019512451000000,0.000093996000000,0.000088071000000 +0.000055097000000,0.000722934000000,0.000039874000000,0.000013554333333,0.000055675000000,0.000036713000000,0.000346836000000,0.000075033000000,0.000044218000000,0.000031576000000,0.000082144000000,0.000290342000000,0.000297453000000,0.000494589000000,0.018822278000000,0.000348811000000,0.000379626000000,0.019841141000000,0.000095577000000,0.000093997000000 +0.000037121500000,0.000683034000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000037107000000,0.000383182000000,0.000077009000000,0.000047380000000,0.000031182000000,0.000132713000000,0.000331033000000,0.000433749000000,0.000658144000000,0.021656449000000,0.000400959000000,0.000351577000000,0.019177043000000,0.000132317000000,0.000084911000000 +0.000020727000000,0.000745453000000,0.000037898000000,0.000013686000000,0.000056070000000,0.000067133000000,0.000359873000000,0.000079774000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000329849000000,0.000310095000000,0.000460614000000,0.021412301000000,0.000346836000000,0.000400565000000,0.019393932000000,0.000096367000000,0.000085700000000 +0.000034356000000,0.000710292000000,0.000038688000000,0.000013554333333,0.000106639000000,0.000038688000000,0.000366589000000,0.000077009000000,0.000043824000000,0.000031182000000,0.000130737000000,0.000291528000000,0.000331823000000,0.000383576000000,0.019884993000000,0.000346835000000,0.000404909000000,0.018977537000000,0.000097947000000,0.000085305000000 +0.000020726500000,0.000923626000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037502000000,0.000355132000000,0.000075033000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000329849000000,0.000294688000000,0.000444416000000,0.019114624000000,0.000347626000000,0.000417157000000,0.019978228000000,0.000095577000000,0.000084911000000 +0.000020134500000,0.000707922000000,0.000058836000000,0.000013554333333,0.000055676000000,0.000037898000000,0.000357107000000,0.000074638000000,0.000044219000000,0.000030787000000,0.000084516000000,0.000293503000000,0.000295873000000,0.000479576000000,0.018964501000000,0.000348021000000,0.000356712000000,0.019215364000000,0.000098737000000,0.000085305000000 +0.000020134500000,0.000793256000000,0.000039873000000,0.000013554333333,0.000056466000000,0.000036713000000,0.000387132000000,0.000076614000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000293502000000,0.000325898000000,0.000452317000000,0.019121735000000,0.000347231000000,0.000397008000000,0.020160746000000,0.000095972000000,0.000088861000000 +0.000021319500000,0.000679082000000,0.000037898000000,0.000012896000000,0.000056860000000,0.000037503000000,0.000357108000000,0.000076614000000,0.000043823000000,0.000031182000000,0.000082540000000,0.000361848000000,0.000291922000000,0.000418342000000,0.018959759000000,0.000346835000000,0.000347231000000,0.019884993000000,0.000131527000000,0.000087675000000 +0.000021517000000,0.000712268000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000036712000000,0.000397009000000,0.000078194000000,0.000044219000000,0.000031182000000,0.000084910000000,0.000297453000000,0.000298639000000,0.000510391000000,0.019214574000000,0.000382392000000,0.000397009000000,0.019268302000000,0.000097947000000,0.000087280000000 +0.000027443000000,0.000755329000000,0.000038688000000,0.000029093666667,0.000055676000000,0.000037108000000,0.000348021000000,0.000076614000000,0.000045404000000,0.000030787000000,0.000104268000000,0.000296268000000,0.000307330000000,0.000427034000000,0.018361242000000,0.000351577000000,0.000346835000000,0.021302868000000,0.000095576000000,0.000088071000000 +0.000038504500000,0.000733206000000,0.000038688000000,0.000013554333333,0.000055281000000,0.000038293000000,0.000348812000000,0.000076614000000,0.000044219000000,0.000086095000000,0.000082144000000,0.000300219000000,0.000293107000000,0.000381206000000,0.019213784000000,0.000347626000000,0.000389503000000,0.019668500000000,0.000097947000000,0.000087676000000 +0.000026652500000,0.000749404000000,0.000037898000000,0.000013027666667,0.000089651000000,0.000037503000000,0.000421897000000,0.000109009000000,0.000044219000000,0.000031181000000,0.000081750000000,0.000291527000000,0.000360268000000,0.000381996000000,0.020186425000000,0.000349602000000,0.000344861000000,0.021068597000000,0.000097947000000,0.000087281000000 +0.000027838000000,0.000672762000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000037502000000,0.000353157000000,0.000076613000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000325503000000,0.000344466000000,0.000618638000000,0.018965685000000,0.000348021000000,0.000351972000000,0.019954129000000,0.000098342000000,0.000086096000000 +0.000020726500000,0.000724515000000,0.000074638000000,0.000013686000000,0.000055676000000,0.000037108000000,0.000379626000000,0.000076614000000,0.000045404000000,0.000031972000000,0.000084120000000,0.000290342000000,0.000290738000000,0.000509206000000,0.019240254000000,0.000349997000000,0.000348811000000,0.019172302000000,0.000095972000000,0.000125207000000 +0.000036331500000,0.000756910000000,0.000037502000000,0.000013027666667,0.000057256000000,0.000037502000000,0.000344860000000,0.000074639000000,0.000043824000000,0.000031182000000,0.000089651000000,0.000291923000000,0.000327873000000,0.000483922000000,0.018460007000000,0.000348811000000,0.000350391000000,0.019410524000000,0.000098342000000,0.000086095000000 +0.000067739000000,0.000709897000000,0.000039478000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000361848000000,0.000082934000000,0.000079774000000,0.000030786000000,0.000087280000000,0.000385157000000,0.000296663000000,0.000459033000000,0.018986228000000,0.000421502000000,0.000384367000000,0.019459117000000,0.000099528000000,0.000088071000000 +0.000056479500000,0.000673157000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000379230000000,0.000076614000000,0.000046985000000,0.000030787000000,0.000120071000000,0.000299033000000,0.000327083000000,0.000454293000000,0.018800550000000,0.000351182000000,0.000344466000000,0.019528647000000,0.000097948000000,0.000088071000000 +0.000027047500000,0.000673947000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000036318000000,0.000346046000000,0.000075033000000,0.000045009000000,0.000031577000000,0.000087280000000,0.000330638000000,0.000292317000000,0.000427823000000,0.018672550000000,0.000347231000000,0.000481552000000,0.019476104000000,0.000098343000000,0.000087676000000 +0.000027640500000,0.000732416000000,0.000038293000000,0.000015003000000,0.000055675000000,0.000037107000000,0.000416366000000,0.000075429000000,0.000046589000000,0.000030787000000,0.000089256000000,0.000297058000000,0.000293898000000,0.000424663000000,0.019020994000000,0.000346836000000,0.000348021000000,0.019019414000000,0.000098738000000,0.000084120000000 +0.000019344500000,0.000778638000000,0.000038688000000,0.000031464000000,0.000055281000000,0.000036713000000,0.000356317000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000088861000000,0.000292317000000,0.000324318000000,0.000392663000000,0.019435413000000,0.000421503000000,0.000380021000000,0.019522722000000,0.000098737000000,0.000085701000000 +0.000018751500000,0.000734786000000,0.000037503000000,0.000013027666667,0.000069898000000,0.000037898000000,0.000349997000000,0.000075034000000,0.000045009000000,0.000033157000000,0.000087281000000,0.000324317000000,0.000298638000000,0.000392663000000,0.018963315000000,0.000347626000000,0.000352367000000,0.019536945000000,0.000098342000000,0.000086096000000 +0.000019541500000,0.000679083000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000400959000000,0.000076614000000,0.000044614000000,0.000033157000000,0.000087281000000,0.000291922000000,0.000295083000000,0.000502490000000,0.018780796000000,0.000356712000000,0.000431774000000,0.020028006000000,0.000098342000000,0.000087676000000 +0.000019936500000,0.000792860000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000051330000000,0.000343675000000,0.000074243000000,0.000045009000000,0.000031182000000,0.000089256000000,0.000291922000000,0.000305749000000,0.000398984000000,0.019223660000000,0.000349206000000,0.000348417000000,0.019532994000000,0.000099922000000,0.000085700000000 +0.000019739000000,0.000717009000000,0.000038688000000,0.000013159666667,0.000056860000000,0.000037108000000,0.000381601000000,0.000096762000000,0.000045404000000,0.000031971000000,0.000094391000000,0.000296268000000,0.000298638000000,0.000460219000000,0.018757883000000,0.000349997000000,0.000380416000000,0.020278870000000,0.000099132000000,0.000085700000000 +0.000018554000000,0.001063872000000,0.000037898000000,0.000013554666667,0.000055280000000,0.000036712000000,0.000344465000000,0.000078985000000,0.000044219000000,0.000031182000000,0.000089651000000,0.000297058000000,0.000326293000000,0.000448762000000,0.019030870000000,0.000433749000000,0.000351972000000,0.020030771000000,0.000096367000000,0.000088861000000 +0.000018751500000,0.000729256000000,0.000037502000000,0.000013554333333,0.000055281000000,0.000037898000000,0.000342885000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000087281000000,0.000379231000000,0.000294688000000,0.000461799000000,0.019624648000000,0.000346441000000,0.000416761000000,0.019617142000000,0.000097947000000,0.000086491000000 +0.000019739000000,0.000714638000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000037108000000,0.000379626000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000090441000000,0.000291528000000,0.000290342000000,0.000479181000000,0.018412994000000,0.000355132000000,0.000361058000000,0.019796500000000,0.000098737000000,0.000107824000000 +0.000019739000000,0.000709108000000,0.000037502000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000344465000000,0.000075824000000,0.000044219000000,0.000031182000000,0.000089650000000,0.000291132000000,0.000375675000000,0.000483527000000,0.018904451000000,0.000349601000000,0.000400170000000,0.019086574000000,0.000098342000000,0.000087676000000 +0.000026060000000,0.000686983000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000595330000000,0.000075824000000,0.000044219000000,0.000031182000000,0.000144565000000,0.000293502000000,0.000290738000000,0.000434144000000,0.018778427000000,0.000351182000000,0.000358687000000,0.019570129000000,0.000095972000000,0.000086490000000 +0.000019146500000,0.000700416000000,0.000037898000000,0.000024353000000,0.000055676000000,0.000036712000000,0.000379231000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000087281000000,0.000292713000000,0.000329453000000,0.000414787000000,0.018498723000000,0.000347231000000,0.000369354000000,0.019141488000000,0.000096367000000,0.000088466000000 +0.000019541500000,0.000723330000000,0.000037898000000,0.000014344666667,0.000056861000000,0.000036712000000,0.000345256000000,0.000077404000000,0.000045009000000,0.000031972000000,0.000089651000000,0.000343281000000,0.000297848000000,0.000417157000000,0.018978327000000,0.000351972000000,0.000623774000000,0.019583956000000,0.000098342000000,0.000087676000000 +0.000019739000000,0.000724119000000,0.000038293000000,0.000017373333333,0.000056861000000,0.000037898000000,0.000432960000000,0.000077799000000,0.000045799000000,0.000045404000000,0.000089256000000,0.000293898000000,0.000297453000000,0.000419133000000,0.018716797000000,0.000346046000000,0.000398194000000,0.020202228000000,0.000095182000000,0.000087676000000 +0.000019739000000,0.000728070000000,0.000071873000000,0.000013027666667,0.000055280000000,0.000092416000000,0.000348812000000,0.000074638000000,0.000044219000000,0.000031182000000,0.000086491000000,0.000293898000000,0.000326293000000,0.000402540000000,0.019212599000000,0.000349996000000,0.000350787000000,0.019348895000000,0.000098737000000,0.000087675000000 +0.000019739000000,0.000671577000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000040269000000,0.000345255000000,0.000074639000000,0.000046194000000,0.000031576000000,0.000086885000000,0.000325107000000,0.000294688000000,0.000383182000000,0.018884698000000,0.000386737000000,0.000380416000000,0.019400253000000,0.000098342000000,0.000088465000000 +0.000018949000000,0.000734391000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000041058000000,0.000363824000000,0.000075034000000,0.000047380000000,0.000031972000000,0.000120466000000,0.000292317000000,0.000297848000000,0.000380416000000,0.019081438000000,0.000346836000000,0.000349997000000,0.019568154000000,0.000095577000000,0.000085305000000 +0.000018751500000,0.000708712000000,0.000040268000000,0.000013818000000,0.000055280000000,0.000037898000000,0.000346441000000,0.000077009000000,0.000044614000000,0.000031182000000,0.000088861000000,0.000364613000000,0.000295083000000,0.000389108000000,0.019476500000000,0.000388713000000,0.000380416000000,0.019108303000000,0.000098343000000,0.000082935000000 +0.000020134000000,0.000761650000000,0.000038293000000,0.000013028000000,0.000125207000000,0.000037898000000,0.000398589000000,0.000074639000000,0.000079774000000,0.000033157000000,0.000089256000000,0.000294688000000,0.000290737000000,0.000398194000000,0.018734969000000,0.000348811000000,0.000355132000000,0.019493488000000,0.000097947000000,0.000082540000000 +0.000018751500000,0.000719774000000,0.000037502000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000348021000000,0.000082144000000,0.000045009000000,0.000030392000000,0.000089256000000,0.000296663000000,0.000328268000000,0.000383181000000,0.018884698000000,0.000348416000000,0.000382391000000,0.019261981000000,0.000102293000000,0.000082145000000 +0.000026060000000,0.000686193000000,0.000038688000000,0.000018163333333,0.000056071000000,0.000037503000000,0.000354342000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000086886000000,0.000327083000000,0.000294687000000,0.000378045000000,0.018817143000000,0.000358292000000,0.000350392000000,0.018971611000000,0.000095182000000,0.000080170000000 +0.000019541500000,0.000809848000000,0.000038293000000,0.000012896000000,0.000055280000000,0.000037503000000,0.000378441000000,0.000088860000000,0.000044614000000,0.000031182000000,0.000091231000000,0.000383181000000,0.000299428000000,0.000389107000000,0.018648056000000,0.000344860000000,0.000366589000000,0.019679957000000,0.000095972000000,0.000080565000000 +0.000019739000000,0.000772712000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000037898000000,0.000344860000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000106639000000,0.000408466000000,0.000467329000000,0.000381996000000,0.019670870000000,0.000351971000000,0.000358688000000,0.019315710000000,0.000097552000000,0.000079775000000 +0.000018751000000,0.000720564000000,0.000037898000000,0.000013554333333,0.000056861000000,0.000059627000000,0.000431774000000,0.000076614000000,0.000046194000000,0.000031182000000,0.000086886000000,0.000308515000000,0.000292317000000,0.000427429000000,0.018455662000000,0.000347626000000,0.000349207000000,0.019092500000000,0.000095577000000,0.000080960000000 +0.000020134500000,0.000726095000000,0.000054886000000,0.000013554333333,0.000055281000000,0.000037898000000,0.000348022000000,0.000077009000000,0.000045404000000,0.000067528000000,0.000089255000000,0.000293503000000,0.000362638000000,0.000384367000000,0.019608450000000,0.000391873000000,0.000475230000000,0.020216845000000,0.000097552000000,0.000082540000000 +0.000018751500000,0.000690144000000,0.000038688000000,0.000013027666667,0.000055281000000,0.000037107000000,0.000389897000000,0.000074639000000,0.000045009000000,0.000031972000000,0.000087281000000,0.000290737000000,0.000290737000000,0.000381206000000,0.019806376000000,0.000348021000000,0.000346836000000,0.018977932000000,0.000097948000000,0.000080959000000 +0.000018554000000,0.000720959000000,0.000037503000000,0.000013027666667,0.000090046000000,0.000038688000000,0.000422292000000,0.000074639000000,0.000044218000000,0.000032367000000,0.000086886000000,0.000297058000000,0.000293107000000,0.000389502000000,0.019563413000000,0.000348021000000,0.000348416000000,0.019851413000000,0.000097947000000,0.000082539000000 +0.000019541500000,0.000730836000000,0.000038293000000,0.000012896000000,0.000057256000000,0.000036713000000,0.000345651000000,0.000074638000000,0.000045404000000,0.000030787000000,0.000086490000000,0.000363429000000,0.000293503000000,0.000441255000000,0.018634623000000,0.000344466000000,0.000351182000000,0.019414080000000,0.000098342000000,0.000082935000000 +0.000018751000000,0.000745057000000,0.000037898000000,0.000013422666667,0.000055676000000,0.000037108000000,0.000381601000000,0.000077404000000,0.000043824000000,0.000031577000000,0.000089651000000,0.000290342000000,0.000329454000000,0.000487478000000,0.018821093000000,0.000443231000000,0.000417947000000,0.019159266000000,0.000095577000000,0.000080565000000 +0.000019541500000,0.000708712000000,0.000038293000000,0.000031463666667,0.000056071000000,0.000036712000000,0.000344070000000,0.000076613000000,0.000045009000000,0.000031972000000,0.000122836000000,0.000297849000000,0.000343675000000,0.000552267000000,0.019269488000000,0.000634836000000,0.000348811000000,0.019954129000000,0.000092417000000,0.000080960000000 +0.000019541500000,0.000675922000000,0.000039478000000,0.000013027666667,0.000055675000000,0.000037503000000,0.000685404000000,0.000074639000000,0.000045404000000,0.000030786000000,0.000086885000000,0.000325898000000,0.000293502000000,0.000488663000000,0.018612501000000,0.000344861000000,0.000380021000000,0.019694574000000,0.000092416000000,0.000082145000000 +0.000018949000000,0.000828021000000,0.000038293000000,0.000013027666667,0.000057651000000,0.000036713000000,0.000345256000000,0.000075824000000,0.000045009000000,0.000030787000000,0.000090441000000,0.000293503000000,0.000294293000000,0.000414787000000,0.019180598000000,0.000346836000000,0.000349997000000,0.020734770000000,0.000090441000000,0.000082935000000 +0.000019541500000,0.000758094000000,0.000038688000000,0.000012896000000,0.000055281000000,0.000037108000000,0.000387132000000,0.000076614000000,0.000045404000000,0.000030787000000,0.000089255000000,0.000325108000000,0.000306935000000,0.000435725000000,0.018403513000000,0.000347626000000,0.000417157000000,0.019897241000000,0.000092811000000,0.000083725000000 +0.000018751500000,0.000741897000000,0.000039084000000,0.000013554333333,0.000055676000000,0.000070293000000,0.000355132000000,0.000075033000000,0.000045799000000,0.000031972000000,0.000089256000000,0.000291527000000,0.000291132000000,0.000381207000000,0.018923018000000,0.000352762000000,0.000348021000000,0.019514425000000,0.000127971000000,0.000082540000000 +0.000018751000000,0.000719774000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000037898000000,0.000384762000000,0.000076614000000,0.000044219000000,0.000030786000000,0.000089256000000,0.000293897000000,0.000359478000000,0.000423083000000,0.018644105000000,0.000422293000000,0.000384366000000,0.019650327000000,0.000090046000000,0.000081355000000 +0.000019541500000,0.000687379000000,0.000037898000000,0.000013554333333,0.000070688000000,0.000036713000000,0.000350392000000,0.000091626000000,0.000045799000000,0.000031577000000,0.000120861000000,0.000327083000000,0.000323528000000,0.000409256000000,0.021881238000000,0.000349602000000,0.000345651000000,0.019422377000000,0.000090046000000,0.000080960000000 +0.000019541500000,0.000725305000000,0.000039478000000,0.000013027666667,0.000055281000000,0.000037898000000,0.000357108000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000086885000000,0.000294293000000,0.000292317000000,0.000429009000000,0.019022180000000,0.000362243000000,0.000384762000000,0.020167463000000,0.000089651000000,0.000082540000000 +0.000019541500000,0.000815378000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000344861000000,0.000077009000000,0.000045404000000,0.000032762000000,0.000086885000000,0.000291132000000,0.000325502000000,0.000459428000000,0.020707906000000,0.000381206000000,0.000354737000000,0.020794820000000,0.000093207000000,0.000080564000000 +0.000018751500000,0.000753750000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000343675000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000089256000000,0.000308120000000,0.000291922000000,0.000467725000000,0.018956204000000,0.000359478000000,0.000353552000000,0.022921831000000,0.000092416000000,0.000080960000000 +0.000018554000000,0.000756515000000,0.000038293000000,0.000029488666667,0.000057651000000,0.000037108000000,0.000423478000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000086885000000,0.000296268000000,0.000330638000000,0.000618243000000,0.018520846000000,0.000350786000000,0.000348021000000,0.020272154000000,0.000133108000000,0.000083330000000 +0.000033961500000,0.000681848000000,0.000037897000000,0.000013554333333,0.000055675000000,0.000036712000000,0.000347231000000,0.000074244000000,0.000045009000000,0.000030391000000,0.000089651000000,0.000327873000000,0.000295083000000,0.000490244000000,0.018728649000000,0.000348021000000,0.000356712000000,0.021439560000000,0.000090441000000,0.000080565000000 +0.000019541500000,0.000688169000000,0.000037898000000,0.000013554666667,0.000056861000000,0.000037108000000,0.000376860000000,0.000076614000000,0.000045009000000,0.000030787000000,0.000086886000000,0.000291922000000,0.000293107000000,0.000424268000000,0.019506919000000,0.000348416000000,0.000423478000000,0.019605290000000,0.000091627000000,0.000083330000000 +0.000018554000000,0.000771527000000,0.000056466000000,0.000013949333333,0.000055676000000,0.000037898000000,0.000348417000000,0.000080169000000,0.000045404000000,0.000031577000000,0.000135478000000,0.000297453000000,0.000360663000000,0.000469700000000,0.018850722000000,0.000353552000000,0.000346836000000,0.019778722000000,0.000092416000000,0.000082935000000 +0.000018751000000,0.000760465000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000353157000000,0.000074244000000,0.000045800000000,0.000031182000000,0.000091231000000,0.000326292000000,0.000292317000000,0.000416762000000,0.018996500000000,0.000348416000000,0.000381206000000,0.021394128000000,0.000090046000000,0.000080564000000 +0.000019739000000,0.001033847000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000037108000000,0.000398589000000,0.000075429000000,0.000044614000000,0.000032367000000,0.000086885000000,0.000297453000000,0.000292712000000,0.000474836000000,0.018171217000000,0.000382786000000,0.000346836000000,0.019916993000000,0.000092416000000,0.000083330000000 +0.000020134000000,0.000749008000000,0.000037108000000,0.000013686333333,0.000054886000000,0.000037897000000,0.000350391000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000090441000000,0.000293502000000,0.000306539000000,0.000400169000000,0.019857339000000,0.000348021000000,0.000382786000000,0.019209043000000,0.000092417000000,0.000083330000000 +0.000019344000000,0.000713453000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000037108000000,0.000435330000000,0.000074244000000,0.000044614000000,0.000031182000000,0.000089651000000,0.000294293000000,0.000295873000000,0.000425848000000,0.018898525000000,0.000352762000000,0.000348811000000,0.019097240000000,0.000141799000000,0.000082935000000 +0.000019739000000,0.000682243000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000400564000000,0.000075034000000,0.000045009000000,0.000031577000000,0.000089256000000,0.000292318000000,0.000325107000000,0.000427428000000,0.018559562000000,0.000408466000000,0.000385552000000,0.019254475000000,0.000089651000000,0.000080960000000 +0.000018554000000,0.000726885000000,0.000037503000000,0.000012896000000,0.000057651000000,0.000036713000000,0.000344465000000,0.000075429000000,0.000046194000000,0.000031182000000,0.000122441000000,0.000373305000000,0.000291527000000,0.000425059000000,0.019723018000000,0.000345256000000,0.000348811000000,0.019256845000000,0.000092417000000,0.000082540000000 +0.000018949000000,0.000722539000000,0.000037898000000,0.000017241666667,0.000055676000000,0.000036713000000,0.000426243000000,0.000111775000000,0.000044218000000,0.000031181000000,0.000087280000000,0.000293898000000,0.000297453000000,0.000470095000000,0.019496253000000,0.000344071000000,0.000388712000000,0.019215759000000,0.000092811000000,0.000080564000000 +0.000036331500000,0.000709502000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037503000000,0.000346046000000,0.000076613000000,0.000045404000000,0.000033552000000,0.000090046000000,0.000290737000000,0.000308515000000,0.000498540000000,0.018663859000000,0.000497354000000,0.000350391000000,0.019434623000000,0.000092811000000,0.000080170000000 +0.000018553500000,0.000692910000000,0.000037898000000,0.000012896000000,0.000124811000000,0.000036713000000,0.000358687000000,0.000077009000000,0.000044614000000,0.000031972000000,0.000088860000000,0.000340910000000,0.000294293000000,0.000424663000000,0.018908402000000,0.000343676000000,0.000344860000000,0.019709586000000,0.000091627000000,0.000080169000000 +0.000018554000000,0.000746638000000,0.000060021000000,0.000012896000000,0.000056071000000,0.000037108000000,0.000342886000000,0.000074243000000,0.000045799000000,0.000030787000000,0.000087281000000,0.000306935000000,0.000345256000000,0.000419132000000,0.018823858000000,0.000456663000000,0.000349601000000,0.019625833000000,0.000179330000000,0.000083330000000 +0.000019541500000,0.000799971000000,0.000039478000000,0.000012896000000,0.000055281000000,0.000039083000000,0.000346836000000,0.000074244000000,0.000045799000000,0.000031182000000,0.000088861000000,0.000330638000000,0.000294688000000,0.000391478000000,0.019386030000000,0.000346440000000,0.000348021000000,0.019303068000000,0.000097157000000,0.000082935000000 +0.000019541500000,0.000711873000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000378440000000,0.000077404000000,0.000043824000000,0.000032762000000,0.000086885000000,0.000292317000000,0.000291922000000,0.000385947000000,0.018685192000000,0.000349207000000,0.000559774000000,0.019909487000000,0.000090046000000,0.000082540000000 +0.000018751500000,0.000756514000000,0.000037503000000,0.000014081333333,0.000055676000000,0.000037107000000,0.000348812000000,0.000074639000000,0.000044614000000,0.000031577000000,0.000089256000000,0.000293897000000,0.000381601000000,0.000432960000000,0.019339414000000,0.000346046000000,0.000393059000000,0.019121734000000,0.000092812000000,0.000082935000000 +0.000019937000000,0.000728070000000,0.000039083000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000392663000000,0.000107824000000,0.000044614000000,0.000030787000000,0.000089650000000,0.000326293000000,0.000295873000000,0.000391083000000,0.019179809000000,0.000352762000000,0.000346836000000,0.019371019000000,0.000093206000000,0.000116910000000 +0.000018751000000,0.000683823000000,0.000038688000000,0.000013027666667,0.000056861000000,0.000038293000000,0.000351181000000,0.000077009000000,0.000045009000000,0.000031577000000,0.000088861000000,0.000291132000000,0.000331033000000,0.000389502000000,0.018770130000000,0.000383577000000,0.000348811000000,0.019334278000000,0.000092021000000,0.000086886000000 +0.000018751500000,0.000705946000000,0.000037898000000,0.000038311666667,0.000055676000000,0.000037898000000,0.000348811000000,0.000076219000000,0.000043824000000,0.000030787000000,0.000109009000000,0.000346046000000,0.000290737000000,0.000379231000000,0.018900896000000,0.000355922000000,0.000346836000000,0.019497043000000,0.000106244000000,0.000081355000000 +0.000019541500000,0.000723725000000,0.000038688000000,0.000013027666667,0.000090836000000,0.000038688000000,0.000419922000000,0.000077799000000,0.000045009000000,0.000031182000000,0.000106244000000,0.000291528000000,0.000293503000000,0.000381601000000,0.018549290000000,0.000351181000000,0.000351972000000,0.019605685000000,0.000091231000000,0.000081355000000 +0.000048183500000,0.000718589000000,0.000037898000000,0.000013554333333,0.000056070000000,0.000037898000000,0.000361454000000,0.000079379000000,0.000044218000000,0.000031182000000,0.000105058000000,0.000293108000000,0.000325898000000,0.000378836000000,0.018880352000000,0.000349206000000,0.000380021000000,0.019553932000000,0.000089651000000,0.000080565000000 +0.000019739000000,0.000676317000000,0.000038293000000,0.000013686000000,0.000055280000000,0.000036318000000,0.000357107000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000149305000000,0.000340120000000,0.000290343000000,0.000388318000000,0.019173093000000,0.000344466000000,0.000360268000000,0.020041043000000,0.000092417000000,0.000083725000000 +0.000019344000000,0.000671576000000,0.000091626000000,0.000012896000000,0.000056861000000,0.000037898000000,0.000394638000000,0.000076614000000,0.000045404000000,0.000031577000000,0.000102687000000,0.000293503000000,0.000297849000000,0.000412021000000,0.019168352000000,0.000347626000000,0.000378836000000,0.019204698000000,0.000091626000000,0.000083330000000 +0.000018554000000,0.000707922000000,0.000060417000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000354737000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000087281000000,0.000292317000000,0.000311281000000,0.000421503000000,0.019534969000000,0.000358293000000,0.000356318000000,0.019384450000000,0.000092811000000,0.000116910000000 +0.000019541500000,0.000719773000000,0.000041058000000,0.000012896000000,0.000055675000000,0.000050935000000,0.000398589000000,0.000074639000000,0.000043824000000,0.000030787000000,0.000089256000000,0.000291132000000,0.000292317000000,0.000366984000000,0.018451315000000,0.000346046000000,0.000384367000000,0.019493092000000,0.000145355000000,0.000080959000000 +0.000018554000000,0.000705552000000,0.000038293000000,0.000013423000000,0.000055281000000,0.000037107000000,0.000343675000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000089256000000,0.000290737000000,0.000574391000000,0.000370144000000,0.019208253000000,0.000349996000000,0.000347231000000,0.019613586000000,0.000092417000000,0.000081750000000 +0.000018751500000,0.000687379000000,0.000037503000000,0.000013686333333,0.000057256000000,0.000037898000000,0.000347231000000,0.000077009000000,0.000045799000000,0.000069898000000,0.000121651000000,0.000360663000000,0.000308515000000,0.000369354000000,0.019385241000000,0.000350392000000,0.000385156000000,0.019992055000000,0.000090441000000,0.000080170000000 +0.000019936500000,0.000713453000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000386342000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000086885000000,0.000299428000000,0.000324318000000,0.000532515000000,0.019127266000000,0.000351576000000,0.000350786000000,0.019147019000000,0.000091627000000,0.000083725000000 +0.000019937000000,0.000707132000000,0.000037898000000,0.000017900333333,0.000056465000000,0.000037898000000,0.000344465000000,0.000074244000000,0.000044219000000,0.000031182000000,0.000087281000000,0.000292317000000,0.000290342000000,0.000409650000000,0.019042327000000,0.000347626000000,0.000393058000000,0.018962130000000,0.000128762000000,0.000080959000000 +0.000019541500000,0.000717403000000,0.000038688000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000438095000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000086886000000,0.000323923000000,0.000295478000000,0.000370144000000,0.018627118000000,0.000344070000000,0.000387527000000,0.019561833000000,0.000092417000000,0.000081355000000 +0.000018751000000,0.000827231000000,0.000037503000000,0.000012896000000,0.000057256000000,0.000037108000000,0.000344861000000,0.000077009000000,0.000045799000000,0.000031972000000,0.000087676000000,0.000292318000000,0.000294688000000,0.000368959000000,0.019299513000000,0.000349996000000,0.000347231000000,0.019796500000000,0.000125997000000,0.000116910000000 +0.000018751500000,0.000801157000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037503000000,0.000353157000000,0.000074638000000,0.000044219000000,0.000031576000000,0.000087281000000,0.000328663000000,0.000294293000000,0.000377256000000,0.018716402000000,0.000349601000000,0.000355922000000,0.019539710000000,0.000093206000000,0.000080565000000 +0.000020134000000,0.000680663000000,0.000037898000000,0.000013027666667,0.000057651000000,0.000036318000000,0.000434540000000,0.000076219000000,0.000045799000000,0.000031182000000,0.000086886000000,0.000292318000000,0.000326687000000,0.000385551000000,0.018684402000000,0.000347231000000,0.000348021000000,0.018986228000000,0.000093602000000,0.000080565000000 +0.000019739000000,0.000708712000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037503000000,0.000353157000000,0.000077009000000,0.000044218000000,0.000031972000000,0.000090441000000,0.000290342000000,0.000294688000000,0.000368959000000,0.018900105000000,0.000522244000000,0.000350392000000,0.019164006000000,0.000092811000000,0.000083725000000 +0.000018751500000,0.000756120000000,0.000038293000000,0.000013554666667,0.000056861000000,0.000092812000000,0.000388318000000,0.000075428000000,0.000045404000000,0.000031577000000,0.000089256000000,0.000436910000000,0.000291132000000,0.000365799000000,0.018768945000000,0.000347231000000,0.000346046000000,0.020049338000000,0.000092416000000,0.000081355000000 +0.000018553500000,0.000776268000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000356712000000,0.000074243000000,0.000044219000000,0.000031577000000,0.000088861000000,0.000311280000000,0.000344861000000,0.000376861000000,0.019729734000000,0.000345650000000,0.000442046000000,0.019516401000000,0.000090046000000,0.000082935000000 +0.000019541500000,0.000723329000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000038293000000,0.000346441000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000089651000000,0.000325108000000,0.000293503000000,0.000370145000000,0.018973192000000,0.000350787000000,0.000348811000000,0.019680352000000,0.000092812000000,0.000082935000000 +0.000019739000000,0.000674342000000,0.000037898000000,0.000013554333333,0.000058836000000,0.000036713000000,0.000387132000000,0.000223182000000,0.000045799000000,0.000031182000000,0.000087280000000,0.000293108000000,0.000328663000000,0.000378836000000,0.020638770000000,0.000368959000000,0.000417552000000,0.019583956000000,0.000107429000000,0.000188022000000 +0.000019739000000,0.000763626000000,0.000088070000000,0.000018427000000,0.000055676000000,0.000037898000000,0.000346440000000,0.000180910000000,0.000046194000000,0.000030787000000,0.000087280000000,0.000291133000000,0.000291923000000,0.000372515000000,0.019091710000000,0.000353552000000,0.000346836000000,0.019804796000000,0.000092021000000,0.000099528000000 +0.000019541500000,0.000705156000000,0.000038293000000,0.000013027666667,0.000055280000000,0.000036713000000,0.000582688000000,0.000079775000000,0.000045404000000,0.000031182000000,0.000122046000000,0.000359083000000,0.000298638000000,0.000370934000000,0.018552452000000,0.000349996000000,0.000383972000000,0.019952548000000,0.000093207000000,0.000082935000000 +0.000025665000000,0.000733996000000,0.000037898000000,0.000013554333333,0.000055281000000,0.000037503000000,0.000388318000000,0.000074639000000,0.000044219000000,0.000031181000000,0.000086885000000,0.000291922000000,0.000367379000000,0.000378046000000,0.018500303000000,0.000349602000000,0.000350787000000,0.020296252000000,0.000092416000000,0.000080170000000 +0.000018751500000,0.000673947000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000347231000000,0.000078194000000,0.000043824000000,0.000031577000000,0.000089651000000,0.000294687000000,0.000294292000000,0.000374886000000,0.018925390000000,0.000343675000000,0.000382787000000,0.019713141000000,0.000093997000000,0.000083725000000 +0.000019541500000,0.000691330000000,0.000038688000000,0.000013027666667,0.000070688000000,0.000036712000000,0.000437700000000,0.000076614000000,0.000045800000000,0.000032367000000,0.000086886000000,0.000299034000000,0.000328268000000,0.000368169000000,0.018772105000000,0.000346046000000,0.000348021000000,0.020525783000000,0.000092811000000,0.000118490000000 +0.000018751500000,0.000711082000000,0.000037503000000,0.000014213000000,0.000055676000000,0.000037898000000,0.000349206000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000086491000000,0.000297058000000,0.000294687000000,0.000380021000000,0.018894574000000,0.000383576000000,0.000380416000000,0.020445190000000,0.000089651000000,0.000095577000000 +0.000018554000000,0.000719379000000,0.000038688000000,0.000013028000000,0.000154441000000,0.000058836000000,0.000348416000000,0.000074244000000,0.000044219000000,0.000032367000000,0.000087281000000,0.000361848000000,0.000293107000000,0.000375281000000,0.019194822000000,0.000343675000000,0.000350391000000,0.019124895000000,0.000092021000000,0.000080169000000 +0.000019344000000,0.000835922000000,0.000038688000000,0.000012896000000,0.000138639000000,0.000039873000000,0.000415971000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000086886000000,0.000291922000000,0.000364613000000,0.000368169000000,0.018953044000000,0.000349601000000,0.000348021000000,0.020129536000000,0.000093602000000,0.000080959000000 +0.000019541500000,0.000754539000000,0.000038688000000,0.000012896000000,0.000059232000000,0.000053305000000,0.000345256000000,0.000074244000000,0.000043824000000,0.000032367000000,0.000088861000000,0.000317997000000,0.000296268000000,0.000368170000000,0.018546526000000,0.000351972000000,0.000348021000000,0.020358277000000,0.000092021000000,0.000080564000000 +0.000018751500000,0.000703971000000,0.000078985000000,0.000012896000000,0.000068713000000,0.000039873000000,0.000397009000000,0.000074243000000,0.000045009000000,0.000030787000000,0.000089256000000,0.000291527000000,0.000293502000000,0.000367379000000,0.021849239000000,0.000351971000000,0.000350391000000,0.020514721000000,0.000088466000000,0.000080170000000 +0.000020134000000,0.000738342000000,0.000050540000000,0.000017768333333,0.000090441000000,0.000036713000000,0.000348021000000,0.000075429000000,0.000044219000000,0.000063577000000,0.000089256000000,0.000292712000000,0.000292317000000,0.000374095000000,0.020632449000000,0.000348416000000,0.000386737000000,0.019481636000000,0.000093206000000,0.000082935000000 +0.000018751500000,0.000773502000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000037898000000,0.000356317000000,0.000074244000000,0.000045009000000,0.000065948000000,0.000088861000000,0.000418342000000,0.000293898000000,0.000367379000000,0.019873142000000,0.000348812000000,0.000351576000000,0.019317685000000,0.000161947000000,0.000080169000000 +0.000046208500000,0.000767181000000,0.000037898000000,0.000013554666667,0.000055675000000,0.000037898000000,0.000380416000000,0.000076614000000,0.000044219000000,0.000059232000000,0.000090046000000,0.000394244000000,0.000360664000000,0.000368564000000,0.019517982000000,0.000386342000000,0.000387132000000,0.018990970000000,0.000092811000000,0.000095576000000 +0.000019541500000,0.000766392000000,0.000038293000000,0.000013554333333,0.000054885000000,0.000036713000000,0.000374490000000,0.000078194000000,0.000044219000000,0.000045009000000,0.000089256000000,0.000327873000000,0.000298244000000,0.000367379000000,0.019126870000000,0.000350787000000,0.000353947000000,0.021117189000000,0.000092021000000,0.000082540000000 +0.000019146500000,0.000715823000000,0.000038688000000,0.000013554333333,0.000056071000000,0.000036713000000,0.000397403000000,0.000077404000000,0.000077404000000,0.000031182000000,0.000121651000000,0.000294688000000,0.000291923000000,0.000369355000000,0.018934476000000,0.000351972000000,0.000381601000000,0.021454572000000,0.000092417000000,0.000080960000000 +0.000019541500000,0.000675132000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000036712000000,0.000344861000000,0.000074243000000,0.000044219000000,0.000031577000000,0.000089256000000,0.000290737000000,0.000326293000000,0.000369354000000,0.018659118000000,0.000344070000000,0.000357108000000,0.019203117000000,0.000089650000000,0.000080565000000 +0.000019541500000,0.000760070000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000037107000000,0.000346836000000,0.000074244000000,0.000044614000000,0.000031577000000,0.000089256000000,0.000295478000000,0.000301009000000,0.000369354000000,0.019184154000000,0.000345651000000,0.000395824000000,0.020173783000000,0.000092022000000,0.000083330000000 +0.000018751000000,0.000761255000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000037898000000,0.000420713000000,0.000097947000000,0.000045009000000,0.000032367000000,0.000086885000000,0.000291922000000,0.000374885000000,0.000374491000000,0.018803711000000,0.000353157000000,0.000346441000000,0.019386821000000,0.000123626000000,0.000082145000000 +0.000036529500000,0.000770737000000,0.000076219000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000344465000000,0.000077009000000,0.000045799000000,0.000031182000000,0.000086886000000,0.000330243000000,0.000346046000000,0.000372120000000,0.019182969000000,0.000433354000000,0.000381601000000,0.019265142000000,0.000089651000000,0.000083330000000 +0.000036134000000,0.000743083000000,0.000037502000000,0.000020139000000,0.000055676000000,0.000036713000000,0.000381601000000,0.000075428000000,0.000044614000000,0.000031972000000,0.000089256000000,0.000294688000000,0.000291133000000,0.000368564000000,0.019188500000000,0.000348416000000,0.000346836000000,0.020274919000000,0.000092812000000,0.000083330000000 +0.000026850500000,0.000681848000000,0.000039478000000,0.000013554333333,0.000055676000000,0.000037108000000,0.000345256000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000132318000000,0.000294293000000,0.000322342000000,0.000377650000000,0.020257932000000,0.000348811000000,0.000431774000000,0.019282920000000,0.000090046000000,0.000118490000000 +0.000019739000000,0.000775873000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000353157000000,0.000078590000000,0.000044218000000,0.000031577000000,0.000086885000000,0.000338540000000,0.000289947000000,0.000385947000000,0.018731019000000,0.000381996000000,0.000348416000000,0.019477685000000,0.000093206000000,0.000085700000000 +0.000019541500000,0.000760860000000,0.000037898000000,0.000013028000000,0.000056861000000,0.000037898000000,0.000376860000000,0.000076614000000,0.000045800000000,0.000032367000000,0.000086886000000,0.000292318000000,0.000481947000000,0.000368959000000,0.018652797000000,0.000348812000000,0.000351577000000,0.019530623000000,0.000089651000000,0.000082935000000 +0.000054899500000,0.000708317000000,0.000038293000000,0.000013554333333,0.000056466000000,0.000036712000000,0.000347231000000,0.000074639000000,0.000047379000000,0.000031182000000,0.000086885000000,0.000293503000000,0.000342491000000,0.000366194000000,0.019587907000000,0.000347231000000,0.000362243000000,0.020641931000000,0.000092021000000,0.000080959000000 +0.000018949000000,0.000822490000000,0.000038293000000,0.000013686000000,0.000057256000000,0.000037108000000,0.000411231000000,0.000076614000000,0.000044614000000,0.000032762000000,0.000091231000000,0.000292712000000,0.000337355000000,0.000377256000000,0.018522032000000,0.000477601000000,0.000350391000000,0.019095661000000,0.000169453000000,0.000080170000000 +0.000018949000000,0.000878589000000,0.000037897000000,0.000013686000000,0.000056861000000,0.000037898000000,0.000343675000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000089256000000,0.000293502000000,0.000292713000000,0.000370144000000,0.020462178000000,0.000345651000000,0.000598490000000,0.020229092000000,0.000090441000000,0.000099133000000 +0.000019541500000,0.000716613000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000349601000000,0.000077799000000,0.000044219000000,0.000031182000000,0.000089256000000,0.000365009000000,0.000291922000000,0.000379231000000,0.018612500000000,0.000355923000000,0.000344466000000,0.019826129000000,0.000092811000000,0.000080564000000 +0.000019541500000,0.000672762000000,0.000057256000000,0.000013027666667,0.000089651000000,0.000037107000000,0.000469700000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000089256000000,0.000296663000000,0.000328268000000,0.000351577000000,0.018549686000000,0.000352367000000,0.000348022000000,0.018881538000000,0.000092022000000,0.000082540000000 +0.000018751500000,0.000721749000000,0.000038688000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000416762000000,0.000079775000000,0.000044614000000,0.000080169000000,0.000087281000000,0.000294293000000,0.000292317000000,0.000348021000000,0.019264352000000,0.000355132000000,0.000347626000000,0.019859315000000,0.000092022000000,0.000083330000000 +0.000028035000000,0.000710292000000,0.000038688000000,0.000034756333333,0.000055676000000,0.000036713000000,0.000351577000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000087280000000,0.000306540000000,0.000326688000000,0.000356713000000,0.018943167000000,0.000344466000000,0.000414391000000,0.019902376000000,0.000091626000000,0.000080564000000 +0.000019739000000,0.000713453000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000037502000000,0.000379626000000,0.000076614000000,0.000046195000000,0.000030787000000,0.000086885000000,0.000295873000000,0.000292712000000,0.000352762000000,0.019085784000000,0.000348811000000,0.000351971000000,0.019819413000000,0.000128762000000,0.000082539000000 +0.000019739000000,0.000685798000000,0.000038688000000,0.000013554333333,0.000056861000000,0.000037898000000,0.000345650000000,0.000078590000000,0.000044614000000,0.000030787000000,0.000089256000000,0.000330638000000,0.000297453000000,0.000472860000000,0.019552351000000,0.000348021000000,0.000381206000000,0.018983068000000,0.000092417000000,0.000082934000000 +0.000020134500000,0.000729650000000,0.000052910000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000346441000000,0.000074639000000,0.000044219000000,0.000031182000000,0.000086886000000,0.000296663000000,0.000345651000000,0.000357502000000,0.018609340000000,0.000343676000000,0.000348416000000,0.019546426000000,0.000091626000000,0.000082934000000 +0.000019542000000,0.000758885000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000050935000000,0.000388318000000,0.000076614000000,0.000046984000000,0.000031181000000,0.000136664000000,0.000292318000000,0.000294687000000,0.000498539000000,0.020250426000000,0.000345256000000,0.000686193000000,0.019628203000000,0.000092811000000,0.000081355000000 +0.000018751500000,0.000711873000000,0.000037898000000,0.000012896000000,0.000054885000000,0.000036317000000,0.000407676000000,0.000077404000000,0.000047775000000,0.000030786000000,0.000086886000000,0.000330243000000,0.000293897000000,0.000436515000000,0.018643315000000,0.000351577000000,0.000421107000000,0.019956499000000,0.000090046000000,0.000080565000000 +0.000018554000000,0.000710293000000,0.000037503000000,0.000013554666667,0.000056861000000,0.000037898000000,0.000379231000000,0.000077009000000,0.000044219000000,0.000031577000000,0.000089256000000,0.000299034000000,0.000297848000000,0.000368564000000,0.019013488000000,0.000348416000000,0.000346441000000,0.020284796000000,0.000089651000000,0.000081354000000 +0.000019936500000,0.000677502000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000344860000000,0.000074638000000,0.000045799000000,0.000030786000000,0.000086885000000,0.000290737000000,0.000290342000000,0.000393848000000,0.018410624000000,0.000382391000000,0.000361059000000,0.019143858000000,0.000110589000000,0.000080959000000 +0.000019146500000,0.000761255000000,0.000052515000000,0.000012896000000,0.000056861000000,0.000038688000000,0.000349602000000,0.000073849000000,0.000044219000000,0.000032367000000,0.000087280000000,0.000293107000000,0.000327478000000,0.000374095000000,0.018224155000000,0.000345650000000,0.000357898000000,0.019794130000000,0.000091626000000,0.000080960000000 +0.000019146500000,0.000707527000000,0.000039083000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000380812000000,0.000077799000000,0.000044219000000,0.000030786000000,0.000093601000000,0.000293897000000,0.000290737000000,0.000371724000000,0.018529142000000,0.000353157000000,0.000357897000000,0.019790573000000,0.000093207000000,0.000082540000000 +0.000019541500000,0.000749009000000,0.000037898000000,0.000041077000000,0.000056861000000,0.000037502000000,0.000350786000000,0.000077009000000,0.000043824000000,0.000031577000000,0.000086886000000,0.000366194000000,0.000294688000000,0.000420713000000,0.018830179000000,0.000346441000000,0.000365798000000,0.019638870000000,0.000092021000000,0.000083330000000 +0.000027245000000,0.000711872000000,0.000038293000000,0.000025669666667,0.000056071000000,0.000037898000000,0.000383181000000,0.000078589000000,0.000044614000000,0.000030787000000,0.000087280000000,0.000294688000000,0.000329058000000,0.000369354000000,0.019032056000000,0.000345256000000,0.000348022000000,0.020005487000000,0.000092416000000,0.000082540000000 +0.000018554000000,0.000738737000000,0.000037898000000,0.000023036000000,0.000055676000000,0.000037503000000,0.000347626000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000089256000000,0.000329059000000,0.000293107000000,0.000368959000000,0.018597883000000,0.000399774000000,0.000423873000000,0.020424252000000,0.000092811000000,0.000082935000000 +0.000020134000000,0.000719379000000,0.000037898000000,0.000012896000000,0.000054885000000,0.000037898000000,0.000382391000000,0.000076218000000,0.000043824000000,0.000030787000000,0.000086886000000,0.000297848000000,0.000316811000000,0.000370144000000,0.018769340000000,0.000346835000000,0.000350786000000,0.019952548000000,0.000091231000000,0.000082540000000 +0.000018554000000,0.000753354000000,0.000037503000000,0.000013028000000,0.000055280000000,0.000092021000000,0.000349206000000,0.000074639000000,0.000059231000000,0.000030787000000,0.000089651000000,0.000291922000000,0.000293502000000,0.000369354000000,0.018652402000000,0.000384762000000,0.000380811000000,0.018991364000000,0.000091626000000,0.000082935000000 +0.000018949000000,0.000706342000000,0.000037898000000,0.000013027666667,0.000070293000000,0.000037503000000,0.000346046000000,0.000076218000000,0.000043824000000,0.000030787000000,0.000089651000000,0.000327873000000,0.000293898000000,0.000580317000000,0.018373489000000,0.000351577000000,0.000349996000000,0.019556697000000,0.000093996000000,0.000081355000000 +0.000019541500000,0.000724909000000,0.000038292000000,0.000013027666667,0.000055280000000,0.000036713000000,0.000381601000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000087280000000,0.000291922000000,0.000324712000000,0.000427428000000,0.019617142000000,0.000351181000000,0.000415971000000,0.019339414000000,0.000092021000000,0.000080959000000 +0.000019146500000,0.000672761000000,0.000038293000000,0.000013554333333,0.000056465000000,0.000036713000000,0.000347231000000,0.000074638000000,0.000044219000000,0.000031577000000,0.000105453000000,0.000291527000000,0.000291922000000,0.000370540000000,0.018446970000000,0.000353947000000,0.000355528000000,0.019572105000000,0.000092416000000,0.000080564000000 +0.000019936500000,0.000711873000000,0.000037898000000,0.000013818000000,0.000056861000000,0.000036713000000,0.000399774000000,0.000082540000000,0.000044218000000,0.000031972000000,0.000086490000000,0.000334194000000,0.000292712000000,0.000376465000000,0.019357192000000,0.000344070000000,0.000440861000000,0.019248945000000,0.000096762000000,0.000082540000000 +0.000056480000000,0.000704761000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000036713000000,0.000359083000000,0.000076219000000,0.000044614000000,0.000031182000000,0.000088465000000,0.000295083000000,0.000375281000000,0.000423083000000,0.018915908000000,0.000350787000000,0.000349997000000,0.019698524000000,0.000092812000000,0.000084515000000 +0.000051541500000,0.000821700000000,0.000037898000000,0.000013554666667,0.000057256000000,0.000036712000000,0.000344466000000,0.000075033000000,0.000044614000000,0.000031577000000,0.000088861000000,0.000340910000000,0.000292712000000,0.000368565000000,0.018639760000000,0.000354343000000,0.000392663000000,0.019943067000000,0.000186046000000,0.000082935000000 +0.000028035500000,0.000732810000000,0.000038293000000,0.000013554666667,0.000056071000000,0.000037108000000,0.000422293000000,0.000074244000000,0.000046590000000,0.000030392000000,0.000086886000000,0.000290737000000,0.000681057000000,0.000401750000000,0.019804401000000,0.000653404000000,0.000354737000000,0.019773981000000,0.000273750000000,0.000082145000000 +0.000019936500000,0.000674341000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000036318000000,0.000351576000000,0.000076614000000,0.000044219000000,0.000032762000000,0.000087281000000,0.000294688000000,0.000307725000000,0.000376465000000,0.018592748000000,0.000351972000000,0.000417947000000,0.019363118000000,0.000107428000000,0.000080564000000 +0.000018751500000,0.000728070000000,0.000038293000000,0.000012896000000,0.000077404000000,0.000037107000000,0.000397799000000,0.000074244000000,0.000045405000000,0.000031182000000,0.000124022000000,0.000328268000000,0.000361453000000,0.000371724000000,0.019214969000000,0.000346836000000,0.000347627000000,0.020163117000000,0.000089651000000,0.000081355000000 +0.000019541500000,0.000714243000000,0.000039873000000,0.000012896000000,0.000055676000000,0.000125997000000,0.000347231000000,0.000107034000000,0.000044613000000,0.000031182000000,0.000087281000000,0.000293503000000,0.000291923000000,0.000418342000000,0.019195216000000,0.000352762000000,0.000380811000000,0.019962425000000,0.000113749000000,0.000083330000000 +0.000019739000000,0.000707132000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000072268000000,0.000357503000000,0.000074638000000,0.000045405000000,0.000032367000000,0.000086491000000,0.000292317000000,0.000325898000000,0.000512762000000,0.019454376000000,0.000345256000000,0.000348416000000,0.019906327000000,0.000092416000000,0.000081750000000 +0.000019541500000,0.000683033000000,0.000058046000000,0.000013027666667,0.000055675000000,0.000039083000000,0.000380811000000,0.000074244000000,0.000044219000000,0.000031972000000,0.000089651000000,0.000294688000000,0.000292318000000,0.000369750000000,0.018357291000000,0.000349206000000,0.000350786000000,0.019301092000000,0.000092811000000,0.000080959000000 +0.000018949000000,0.000696860000000,0.000038688000000,0.000012896000000,0.000056070000000,0.000050145000000,0.000353552000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000089256000000,0.000290737000000,0.000292713000000,0.000425848000000,0.018735365000000,0.000348416000000,0.000349207000000,0.019751067000000,0.000091626000000,0.000082145000000 +0.000018554000000,0.000713058000000,0.000037503000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000423083000000,0.000076614000000,0.000043824000000,0.000031972000000,0.000086885000000,0.000329848000000,0.000329849000000,0.000374490000000,0.019021389000000,0.000350391000000,0.000348416000000,0.020056055000000,0.000092022000000,0.000079775000000 +0.000019542000000,0.000757305000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000349601000000,0.000077009000000,0.000044219000000,0.000032367000000,0.000087281000000,0.000293502000000,0.000291528000000,0.000417157000000,0.018928155000000,0.000393058000000,0.000361848000000,0.021121535000000,0.000089651000000,0.000081355000000 +0.000019937000000,0.000708317000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000356317000000,0.000076219000000,0.000044219000000,0.000031577000000,0.000106244000000,0.000294687000000,0.000293503000000,0.000379626000000,0.018943957000000,0.000349601000000,0.000350391000000,0.019416450000000,0.000125997000000,0.000082935000000 +0.000018751500000,0.000687379000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000039478000000,0.000455082000000,0.000075429000000,0.000044218000000,0.000030787000000,0.000086886000000,0.000361058000000,0.000312070000000,0.000500910000000,0.021503955000000,0.000387527000000,0.000381996000000,0.020819708000000,0.000092812000000,0.000080564000000 +0.000018554000000,0.000734391000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000036318000000,0.000355132000000,0.000075034000000,0.000044218000000,0.000031182000000,0.000089256000000,0.000296268000000,0.000295083000000,0.000408860000000,0.019292797000000,0.000349206000000,0.000347626000000,0.019762129000000,0.000092811000000,0.000083330000000 +0.000020134500000,0.000757700000000,0.000037898000000,0.000012896000000,0.000057256000000,0.000036713000000,0.000344861000000,0.000076614000000,0.000045799000000,0.000032762000000,0.000089650000000,0.000690540000000,0.000328664000000,0.000368169000000,0.019458722000000,0.000345256000000,0.000396614000000,0.018838081000000,0.000089256000000,0.000082935000000 +0.000019541500000,0.000709107000000,0.000037898000000,0.000013686000000,0.000056071000000,0.000036713000000,0.000360663000000,0.000076614000000,0.000046984000000,0.000031182000000,0.000087281000000,0.000338145000000,0.000295083000000,0.000367379000000,0.020847363000000,0.000345255000000,0.000345651000000,0.021889930000000,0.000088466000000,0.000082935000000 +0.000019937000000,0.000729651000000,0.000037503000000,0.000013554333333,0.000055676000000,0.000037898000000,0.000346441000000,0.000074638000000,0.000044219000000,0.000031972000000,0.000086886000000,0.000325108000000,0.000295082000000,0.000390293000000,0.019383660000000,0.000346836000000,0.000420712000000,0.020189585000000,0.000089651000000,0.000083725000000 +0.000019541500000,0.000670786000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000383972000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000152070000000,0.000296663000000,0.000325898000000,0.000400564000000,0.018825044000000,0.000349206000000,0.000354342000000,0.020972597000000,0.000092022000000,0.000083725000000 +0.000018751500000,0.000734391000000,0.000037503000000,0.000013027666667,0.000055280000000,0.000038293000000,0.000353157000000,0.000074244000000,0.000045009000000,0.000031972000000,0.000086885000000,0.000328663000000,0.000291923000000,0.000368564000000,0.018746427000000,0.000346441000000,0.000387923000000,0.021030276000000,0.000124022000000,0.000100712000000 +0.000018554000000,0.000709107000000,0.000042243000000,0.000013686333333,0.000056071000000,0.000037898000000,0.000389503000000,0.000093602000000,0.000043823000000,0.000031182000000,0.000087280000000,0.000292317000000,0.000329058000000,0.000367774000000,0.019403019000000,0.000382391000000,0.000348021000000,0.019612796000000,0.000092021000000,0.000083330000000 +0.000020134000000,0.001031477000000,0.000039478000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000344466000000,0.000074243000000,0.000078195000000,0.000031577000000,0.000087280000000,0.000293898000000,0.000295082000000,0.000368169000000,0.018899710000000,0.000344071000000,0.000390688000000,0.019475314000000,0.000091626000000,0.000083330000000 +0.000018751500000,0.000820514000000,0.000037503000000,0.000013554666667,0.000094787000000,0.000036713000000,0.000351182000000,0.000077799000000,0.000047775000000,0.000032367000000,0.000086886000000,0.000325898000000,0.000290342000000,0.000369750000000,0.019416451000000,0.000353947000000,0.000346045000000,0.019992450000000,0.000090836000000,0.000082935000000 +0.000018949000000,0.000728465000000,0.000037503000000,0.000013554333333,0.000056071000000,0.000037898000000,0.000387133000000,0.000077009000000,0.000043824000000,0.000030787000000,0.000089651000000,0.000291528000000,0.000324712000000,0.000385157000000,0.018800550000000,0.000351577000000,0.000346046000000,0.019380500000000,0.000090837000000,0.000078589000000 +0.000019739000000,0.000685009000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000050935000000,0.000345256000000,0.000074243000000,0.000064762000000,0.000069108000000,0.000124811000000,0.000293108000000,0.000292712000000,0.000374490000000,0.018873637000000,0.000346441000000,0.000532910000000,0.019236303000000,0.000091626000000,0.000081355000000 +0.000020134000000,0.000714243000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037897000000,0.000419527000000,0.000077009000000,0.000043823000000,0.000030787000000,0.000089256000000,0.000305355000000,0.000293502000000,0.000401750000000,0.019203908000000,0.000346441000000,0.000387527000000,0.019571314000000,0.000160367000000,0.000081354000000 +0.000018751500000,0.000720169000000,0.000038293000000,0.000013686000000,0.000056071000000,0.000037503000000,0.000361849000000,0.000080564000000,0.000045009000000,0.000030787000000,0.000086886000000,0.000292713000000,0.000459033000000,0.000368565000000,0.018600254000000,0.000348811000000,0.000349206000000,0.019001636000000,0.000093997000000,0.000114539000000 +0.000020134000000,0.000864367000000,0.000102293000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000349602000000,0.000077009000000,0.000044614000000,0.000030787000000,0.000087280000000,0.000327083000000,0.000293108000000,0.000393454000000,0.018732204000000,0.000379231000000,0.000382786000000,0.021118376000000,0.000090046000000,0.000083725000000 +0.000026257500000,0.000741502000000,0.000037898000000,0.000012896000000,0.000057651000000,0.000036712000000,0.000382787000000,0.000074244000000,0.000045404000000,0.000033157000000,0.000089651000000,0.000325502000000,0.000324713000000,0.000385947000000,0.018924994000000,0.000347231000000,0.000402934000000,0.019657043000000,0.000092811000000,0.000081749000000 +0.000018751500000,0.000742293000000,0.000037897000000,0.000018031666667,0.000055676000000,0.000038688000000,0.000362639000000,0.000074639000000,0.000044219000000,0.000032367000000,0.000087281000000,0.000292317000000,0.000293503000000,0.000403725000000,0.018471463000000,0.000349601000000,0.000382786000000,0.019691413000000,0.000093602000000,0.000083725000000 +0.000020134000000,0.000682638000000,0.000038293000000,0.000014213000000,0.000077404000000,0.000036713000000,0.000442440000000,0.000074638000000,0.000045405000000,0.000031972000000,0.000087281000000,0.000383971000000,0.000290738000000,0.000365799000000,0.018772896000000,0.000353157000000,0.000350391000000,0.019576846000000,0.000092811000000,0.000082935000000 +0.000018751500000,0.000708317000000,0.000037503000000,0.000019217000000,0.000056465000000,0.000037108000000,0.000344861000000,0.000077404000000,0.000043824000000,0.000031182000000,0.000108219000000,0.000290343000000,0.000306145000000,0.000572811000000,0.018570624000000,0.000345256000000,0.000384762000000,0.019607265000000,0.000111379000000,0.000081749000000 +0.000019739000000,0.000744268000000,0.000038293000000,0.000022245666667,0.000055280000000,0.000036712000000,0.000387922000000,0.000076614000000,0.000045009000000,0.000032367000000,0.000087280000000,0.000323922000000,0.000290738000000,0.000348811000000,0.019197192000000,0.000347231000000,0.000344466000000,0.020441240000000,0.000089256000000,0.000081355000000 +0.000019541500000,0.000708317000000,0.000038293000000,0.000012896000000,0.000056465000000,0.000071083000000,0.000405305000000,0.000074244000000,0.000045405000000,0.000030787000000,0.000089651000000,0.000296268000000,0.000326293000000,0.000355133000000,0.019553142000000,0.000343675000000,0.000348021000000,0.019093685000000,0.000090441000000,0.000116515000000 +0.000018751500000,0.000677502000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000036713000000,0.000347231000000,0.000090046000000,0.000045009000000,0.000031181000000,0.000089256000000,0.000292317000000,0.000295083000000,0.000357108000000,0.019331512000000,0.000352367000000,0.000363033000000,0.019086574000000,0.000090046000000,0.000082145000000 +0.000019541500000,0.000703181000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000036318000000,0.000387923000000,0.000076614000000,0.000045799000000,0.000031971000000,0.000087280000000,0.000332613000000,0.000294292000000,0.000361848000000,0.018742476000000,0.000346441000000,0.000346440000000,0.019505735000000,0.000091626000000,0.000082935000000 +0.000018751500000,0.000706342000000,0.000071083000000,0.000013027666667,0.000056861000000,0.000037503000000,0.000358293000000,0.000075034000000,0.000045799000000,0.000032367000000,0.000086885000000,0.000292317000000,0.000328268000000,0.000355922000000,0.019514821000000,0.000343676000000,0.000385947000000,0.019316105000000,0.000092811000000,0.000084515000000 +0.000018554000000,0.001022391000000,0.000037898000000,0.000013686333333,0.000055675000000,0.000037503000000,0.000349996000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000135083000000,0.000295083000000,0.000294688000000,0.000755329000000,0.019195612000000,0.000348021000000,0.000346836000000,0.019863660000000,0.000096762000000,0.000083330000000 +0.000036331500000,0.000721749000000,0.000038293000000,0.000020270666667,0.000055675000000,0.000037503000000,0.000389107000000,0.000077799000000,0.000046195000000,0.000033552000000,0.000089256000000,0.000292712000000,0.000376071000000,0.000368959000000,0.018479365000000,0.000367379000000,0.000381996000000,0.020346030000000,0.000139034000000,0.000080960000000 +0.000019739000000,0.000708712000000,0.000038293000000,0.000012896000000,0.000115330000000,0.000037503000000,0.000347231000000,0.000080565000000,0.000044219000000,0.000031972000000,0.000089256000000,0.000290342000000,0.000294688000000,0.000379231000000,0.019024945000000,0.000349997000000,0.000347231000000,0.019844302000000,0.000093602000000,0.000082144000000 +0.000019739000000,0.000675132000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036712000000,0.000404910000000,0.000077009000000,0.000045404000000,0.000031577000000,0.000088861000000,0.000340910000000,0.000293108000000,0.000376861000000,0.018531908000000,0.000346440000000,0.000388317000000,0.019548006000000,0.000089651000000,0.000114935000000 +0.000018554000000,0.000675527000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000346046000000,0.000076613000000,0.000044219000000,0.000031972000000,0.000089256000000,0.000295873000000,0.000325898000000,0.000401750000000,0.018771315000000,0.000345650000000,0.000346440000000,0.019773191000000,0.000090046000000,0.000080170000000 +0.000018554000000,0.000729650000000,0.000037503000000,0.000013027666667,0.000057256000000,0.000036713000000,0.000348811000000,0.000076614000000,0.000044614000000,0.000030786000000,0.000087280000000,0.000291132000000,0.000291922000000,0.000368959000000,0.018710871000000,0.000346836000000,0.000431379000000,0.019239067000000,0.000092416000000,0.000083725000000 +0.000019541500000,0.000715428000000,0.000039084000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000381601000000,0.000074244000000,0.000046589000000,0.000031182000000,0.000089256000000,0.000327083000000,0.000295478000000,0.000366985000000,0.019030475000000,0.000349601000000,0.000345651000000,0.019238673000000,0.000090441000000,0.000080564000000 +0.000019541500000,0.000770342000000,0.000038688000000,0.000013686000000,0.000057256000000,0.000036713000000,0.000353156000000,0.000076219000000,0.000044219000000,0.000031182000000,0.000103083000000,0.000290737000000,0.000341305000000,0.000410836000000,0.019181784000000,0.000402539000000,0.000412022000000,0.019496253000000,0.000112565000000,0.000083725000000 +0.000018751500000,0.000686588000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000384762000000,0.000079774000000,0.000045009000000,0.000031972000000,0.000090441000000,0.000310490000000,0.000293897000000,0.000366589000000,0.018603019000000,0.000348416000000,0.000350392000000,0.019459908000000,0.000089651000000,0.000082935000000 +0.000018554000000,0.000709108000000,0.000087281000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000354738000000,0.000074244000000,0.000044614000000,0.000030392000000,0.000089256000000,0.000408861000000,0.000324712000000,0.000369750000000,0.018891809000000,0.000350787000000,0.000347626000000,0.019742376000000,0.000091626000000,0.000080564000000 +0.000019936500000,0.000749403000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000036712000000,0.000428218000000,0.000075034000000,0.000044219000000,0.000031577000000,0.000089651000000,0.000294293000000,0.000292712000000,0.000366984000000,0.019081438000000,0.000344860000000,0.000351181000000,0.020064351000000,0.000091231000000,0.000097157000000 +0.000029023000000,0.000720959000000,0.000037898000000,0.000019217000000,0.000055281000000,0.000038292000000,0.000380021000000,0.000074638000000,0.000045404000000,0.000029996000000,0.000086885000000,0.000296663000000,0.000290737000000,0.000367379000000,0.018559167000000,0.000348416000000,0.000351181000000,0.019288451000000,0.000090836000000,0.000111775000000 +0.000019541500000,0.000750984000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000357108000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000086885000000,0.000297058000000,0.000328663000000,0.000369355000000,0.019214179000000,0.000346046000000,0.000380416000000,0.019806376000000,0.000092021000000,0.000082144000000 +0.000019739000000,0.000681058000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000421898000000,0.000074243000000,0.000045009000000,0.000031577000000,0.000127972000000,0.000365009000000,0.000293502000000,0.000368170000000,0.018587612000000,0.000354737000000,0.000350392000000,0.019561438000000,0.000090046000000,0.000081355000000 +0.000018554000000,0.000712268000000,0.000037898000000,0.000013686000000,0.000056466000000,0.000036713000000,0.000348812000000,0.000075824000000,0.000045800000000,0.000030787000000,0.000086885000000,0.000292318000000,0.000314836000000,0.000374095000000,0.019522327000000,0.000385156000000,0.000380812000000,0.019995215000000,0.000124021000000,0.000080564000000 +0.000018949000000,0.000708317000000,0.000038293000000,0.000013686333333,0.000055675000000,0.000036712000000,0.000351181000000,0.000074638000000,0.000044219000000,0.000030392000000,0.000089256000000,0.000290738000000,0.000295478000000,0.000369354000000,0.019300302000000,0.000347231000000,0.000355922000000,0.019329142000000,0.000091626000000,0.000080170000000 +0.000019739000000,0.000726095000000,0.000037898000000,0.000013686333333,0.000056071000000,0.000084910000000,0.000415972000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000089256000000,0.000306540000000,0.000293503000000,0.000369749000000,0.018822278000000,0.000344861000000,0.000381602000000,0.019628204000000,0.000089650000000,0.000099922000000 +0.000018554000000,0.000673552000000,0.000038293000000,0.000013554333333,0.000055281000000,0.000036713000000,0.000410836000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000086886000000,0.000292317000000,0.000342095000000,0.000376466000000,0.019641635000000,0.000344071000000,0.000351971000000,0.019183759000000,0.000090046000000,0.000080565000000 +0.000018948500000,0.000673157000000,0.000088466000000,0.000013027666667,0.000089651000000,0.000036713000000,0.000392663000000,0.000075824000000,0.000045009000000,0.000031181000000,0.000089256000000,0.000365009000000,0.000301008000000,0.000387527000000,0.019794130000000,0.000348812000000,0.000380021000000,0.019192846000000,0.000092417000000,0.000082145000000 +0.000019739000000,0.000711872000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000037502000000,0.000345255000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000121651000000,0.000294688000000,0.000295478000000,0.000368170000000,0.019745142000000,0.000358293000000,0.000359083000000,0.020169043000000,0.000090441000000,0.000082935000000 +0.000019936500000,0.000713453000000,0.000038688000000,0.000013554666667,0.000055676000000,0.000037108000000,0.000348021000000,0.000077799000000,0.000045799000000,0.000031577000000,0.000089256000000,0.000296268000000,0.000295083000000,0.000368169000000,0.018226920000000,0.000349206000000,0.000438095000000,0.019619907000000,0.000112959000000,0.000083330000000 +0.000018554000000,0.000719379000000,0.000037898000000,0.000019216666667,0.000055676000000,0.000036713000000,0.000383181000000,0.000074243000000,0.000044219000000,0.000031577000000,0.000086885000000,0.000326293000000,0.000297848000000,0.000385157000000,0.019250130000000,0.000538045000000,0.000348021000000,0.019781488000000,0.000089650000000,0.000082540000000 +0.000020134500000,0.000686193000000,0.000041849000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000344466000000,0.000077404000000,0.000044614000000,0.000031182000000,0.000087280000000,0.000290737000000,0.000328268000000,0.000383577000000,0.019366278000000,0.000348021000000,0.000380812000000,0.019465833000000,0.000090441000000,0.000082145000000 +0.000018949000000,0.000715429000000,0.000037897000000,0.000013027666667,0.000058046000000,0.000037108000000,0.000679083000000,0.000077009000000,0.000045009000000,0.000030392000000,0.000089256000000,0.000292317000000,0.000294293000000,0.000355528000000,0.019889339000000,0.000348811000000,0.000348811000000,0.019559858000000,0.000092021000000,0.000122836000000 +0.000018751500000,0.000767577000000,0.000037503000000,0.000013554333333,0.000056466000000,0.000037898000000,0.000381206000000,0.000077009000000,0.000043824000000,0.000031577000000,0.000089256000000,0.000291528000000,0.000295873000000,0.000352762000000,0.019416451000000,0.000381601000000,0.000351182000000,0.019999166000000,0.000093206000000,0.000081749000000 +0.000019541500000,0.000854885000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000038293000000,0.000344466000000,0.000112170000000,0.000045404000000,0.000031182000000,0.000089256000000,0.000326687000000,0.000338540000000,0.000347626000000,0.018746426000000,0.000402540000000,0.000349207000000,0.019333488000000,0.000091626000000,0.000080565000000 +0.000018554000000,0.000705946000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000057651000000,0.000369750000000,0.000078984000000,0.000120070000000,0.000031182000000,0.000165108000000,0.000328268000000,0.000290342000000,0.000353552000000,0.019603315000000,0.000345651000000,0.000348416000000,0.019694969000000,0.000088861000000,0.000080565000000 +0.000019541500000,0.000679083000000,0.000134293000000,0.000013027666667,0.000060416000000,0.000037107000000,0.000344466000000,0.000131133000000,0.000047380000000,0.000050540000000,0.000101502000000,0.000294687000000,0.000330243000000,0.000353552000000,0.018748006000000,0.000355527000000,0.000380021000000,0.019096451000000,0.000141009000000,0.000082935000000 +0.000020134000000,0.000685798000000,0.000121651000000,0.000013027666667,0.000056860000000,0.000037503000000,0.000351971000000,0.000076614000000,0.000043824000000,0.000033552000000,0.000089256000000,0.000293898000000,0.000295082000000,0.000346441000000,0.021654868000000,0.000345256000000,0.000349996000000,0.021887955000000,0.000090046000000,0.000084121000000 +0.000018751500000,0.000720169000000,0.000073849000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000388712000000,0.000077799000000,0.000044219000000,0.000030787000000,0.000089255000000,0.000291527000000,0.000297453000000,0.000395429000000,0.021729930000000,0.000350392000000,0.000506440000000,0.020821289000000,0.000092811000000,0.000082935000000 +0.000019541500000,0.000727280000000,0.000041453000000,0.000013554333333,0.000055676000000,0.000036317000000,0.000351577000000,0.000075034000000,0.000045009000000,0.000033947000000,0.000086885000000,0.000293898000000,0.000327083000000,0.000353947000000,0.019773191000000,0.000348416000000,0.000348022000000,0.021548202000000,0.000096367000000,0.000114540000000 +0.000028035000000,0.000718983000000,0.000038293000000,0.000024221000000,0.000055675000000,0.000037108000000,0.000383972000000,0.000077009000000,0.000045405000000,0.000032367000000,0.000129157000000,0.000345256000000,0.000291922000000,0.000347626000000,0.020268993000000,0.000381996000000,0.000384367000000,0.020048943000000,0.000092812000000,0.000080565000000 +0.000018751000000,0.000679477000000,0.000039873000000,0.000013554666667,0.000057256000000,0.000038293000000,0.000355527000000,0.000076614000000,0.000045799000000,0.000030787000000,0.000089651000000,0.000293502000000,0.000295082000000,0.000346441000000,0.019440550000000,0.000344070000000,0.000346045000000,0.020127166000000,0.000090046000000,0.000080564000000 +0.000019541500000,0.000760860000000,0.000037503000000,0.000013554666667,0.000055280000000,0.000037503000000,0.000348811000000,0.000076219000000,0.000046194000000,0.000031577000000,0.000089256000000,0.000293502000000,0.000305750000000,0.000347231000000,0.019921339000000,0.000344070000000,0.000434539000000,0.019312944000000,0.000139428000000,0.000083330000000 +0.000019541500000,0.000718589000000,0.000038293000000,0.000013028000000,0.000056466000000,0.000037898000000,0.000382786000000,0.000074639000000,0.000045800000000,0.000033157000000,0.000086886000000,0.000344465000000,0.000293898000000,0.000352367000000,0.019706426000000,0.000356712000000,0.000353947000000,0.019451216000000,0.000092021000000,0.000080565000000 +0.000019739000000,0.000718589000000,0.000037898000000,0.000013818000000,0.000069502000000,0.000037503000000,0.000349601000000,0.000074639000000,0.000045009000000,0.000031972000000,0.000089651000000,0.000294293000000,0.000342491000000,0.000346441000000,0.019232352000000,0.000346836000000,0.000387527000000,0.019934771000000,0.000089256000000,0.000080564000000 +0.000018751500000,0.000709107000000,0.000038293000000,0.000013554333333,0.000055675000000,0.000070293000000,0.000386342000000,0.000077009000000,0.000045799000000,0.000031972000000,0.000086886000000,0.000334589000000,0.000325503000000,0.000410046000000,0.019430673000000,0.000353552000000,0.000348021000000,0.018949093000000,0.000092417000000,0.000082145000000 +0.000019146500000,0.000680663000000,0.000041849000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000348021000000,0.000074638000000,0.000044219000000,0.000031181000000,0.000087281000000,0.000293503000000,0.000302194000000,0.000346441000000,0.020084500000000,0.000348416000000,0.000424268000000,0.019881438000000,0.000089651000000,0.000120861000000 +0.000019937000000,0.000730046000000,0.000037503000000,0.000013027666667,0.000057651000000,0.000037108000000,0.000361058000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000089651000000,0.000297848000000,0.000343281000000,0.000346441000000,0.019589883000000,0.000385947000000,0.000346441000000,0.020178129000000,0.000093206000000,0.000080564000000 +0.000019541500000,0.000718194000000,0.000037897000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000436910000000,0.000076614000000,0.000044614000000,0.000032762000000,0.000090046000000,0.000363033000000,0.000293503000000,0.000348021000000,0.019676796000000,0.000347231000000,0.000380811000000,0.019751858000000,0.000092812000000,0.000083330000000 +0.000018751500000,0.000906638000000,0.000038293000000,0.000012896000000,0.000056860000000,0.000038293000000,0.000350392000000,0.000075034000000,0.000045799000000,0.000031972000000,0.000087280000000,0.000292317000000,0.000401750000000,0.000347626000000,0.020118475000000,0.000350392000000,0.000348416000000,0.019314130000000,0.000092811000000,0.000081354000000 +0.000018751500000,0.000726885000000,0.000057651000000,0.000026328333333,0.000055675000000,0.000036713000000,0.000395823000000,0.000074639000000,0.000044219000000,0.000033552000000,0.000087281000000,0.000329453000000,0.000308120000000,0.000352367000000,0.019471364000000,0.000346836000000,0.000346836000000,0.019519562000000,0.000089651000000,0.000082145000000 +0.000019541500000,0.000679478000000,0.000038293000000,0.000013686000000,0.000055676000000,0.000038293000000,0.000346441000000,0.000076613000000,0.000044219000000,0.000031972000000,0.000089256000000,0.000295478000000,0.000293107000000,0.000490243000000,0.019387216000000,0.000347231000000,0.000349207000000,0.019514821000000,0.000090836000000,0.000083330000000 +0.000019739500000,0.000699626000000,0.000037503000000,0.000013027666667,0.000057256000000,0.000036713000000,0.000353552000000,0.000080565000000,0.000061206000000,0.000032762000000,0.000089256000000,0.000293503000000,0.000293897000000,0.000346836000000,0.019925685000000,0.000357502000000,0.000349601000000,0.019214969000000,0.000090441000000,0.000083330000000 +0.000019739000000,0.000767181000000,0.000038293000000,0.000013686000000,0.000056466000000,0.000037503000000,0.000368564000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000138243000000,0.000374886000000,0.000292318000000,0.000355922000000,0.019505734000000,0.000343676000000,0.000366984000000,0.019163217000000,0.000092417000000,0.000112170000000 +0.000019937000000,0.000724119000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000347626000000,0.000075033000000,0.000045799000000,0.000031972000000,0.000087281000000,0.000290737000000,0.000381601000000,0.000363428000000,0.019442525000000,0.000482737000000,0.000348417000000,0.019513635000000,0.000093207000000,0.000083330000000 +0.000018751000000,0.000744268000000,0.000038293000000,0.000013554333333,0.000055675000000,0.000076614000000,0.000398194000000,0.000075429000000,0.000044219000000,0.000030787000000,0.000088861000000,0.000298638000000,0.000293108000000,0.000355527000000,0.019649931000000,0.000347627000000,0.000435330000000,0.019176648000000,0.000127182000000,0.000080564000000 +0.000018751500000,0.000691724000000,0.000037898000000,0.000013028000000,0.000056071000000,0.000038688000000,0.000344465000000,0.000078195000000,0.000044614000000,0.000031972000000,0.000090441000000,0.000292318000000,0.000294688000000,0.000345256000000,0.020269388000000,0.000345650000000,0.000350787000000,0.019866425000000,0.000090046000000,0.000082935000000 +0.000019937000000,0.000687379000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000379626000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000086885000000,0.000290343000000,0.000324713000000,0.000354738000000,0.021693190000000,0.000396614000000,0.000410836000000,0.019119760000000,0.000092021000000,0.000082935000000 +0.000035344000000,0.000718984000000,0.000037898000000,0.000013554666667,0.000056070000000,0.000037898000000,0.000354342000000,0.000076219000000,0.000044614000000,0.000030787000000,0.000090046000000,0.000452317000000,0.000290342000000,0.000349207000000,0.020288351000000,0.000348416000000,0.000348021000000,0.019537734000000,0.000092811000000,0.000083330000000 +0.000020134000000,0.000739922000000,0.000038293000000,0.000013028000000,0.000055675000000,0.000037898000000,0.000353552000000,0.000074638000000,0.000043824000000,0.000031972000000,0.000090441000000,0.000377651000000,0.000372515000000,0.000355527000000,0.020425042000000,0.000382786000000,0.000711477000000,0.019141092000000,0.000090046000000,0.000081355000000 +0.000037516500000,0.000750588000000,0.000053701000000,0.000031332333333,0.000089650000000,0.000038293000000,0.000383576000000,0.000076219000000,0.000044218000000,0.000048960000000,0.000089256000000,0.000328268000000,0.000291922000000,0.000352367000000,0.019600549000000,0.000349206000000,0.000442046000000,0.019539710000000,0.000092417000000,0.000148515000000 +0.000019541500000,0.000681453000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037897000000,0.000351971000000,0.000074638000000,0.000044219000000,0.000031972000000,0.000087280000000,0.000291527000000,0.000292317000000,0.000348021000000,0.019990870000000,0.000348812000000,0.000352762000000,0.019527858000000,0.000090837000000,0.000097157000000 +0.000018751000000,0.000747428000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000382391000000,0.000095576000000,0.000044219000000,0.000030392000000,0.000087280000000,0.000294292000000,0.000333009000000,0.000356713000000,0.019476499000000,0.000346836000000,0.000380417000000,0.019304253000000,0.000089651000000,0.000080959000000 +0.000020134500000,0.000767972000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000344466000000,0.000095182000000,0.000044219000000,0.000031182000000,0.000089651000000,0.000293898000000,0.000291923000000,0.000352762000000,0.019451216000000,0.000347626000000,0.000348416000000,0.019515611000000,0.000088861000000,0.000083330000000 +0.000018553500000,0.000712267000000,0.000039873000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000351972000000,0.000087281000000,0.000045009000000,0.000031972000000,0.000087281000000,0.000294688000000,0.000292318000000,0.000399380000000,0.019143463000000,0.000351577000000,0.000347231000000,0.019579611000000,0.000092416000000,0.000080169000000 +0.000018949000000,0.000786539000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000071478000000,0.000535280000000,0.000076614000000,0.000043823000000,0.000031182000000,0.000087281000000,0.000324713000000,0.000291528000000,0.000416762000000,0.019743561000000,0.000350391000000,0.000355132000000,0.020048549000000,0.000090442000000,0.000082145000000 +0.000019541500000,0.000912564000000,0.000037503000000,0.000013422666667,0.000055676000000,0.000071083000000,0.000355132000000,0.000077799000000,0.000043824000000,0.000031182000000,0.000148120000000,0.000291132000000,0.000296268000000,0.000449157000000,0.019567364000000,0.000348021000000,0.000346441000000,0.019589883000000,0.000093602000000,0.000082935000000 +0.000018751500000,0.000761650000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000050145000000,0.000346441000000,0.000077009000000,0.000046194000000,0.000030787000000,0.000086885000000,0.000406490000000,0.000325898000000,0.000838687000000,0.019020994000000,0.000346045000000,0.000445207000000,0.019340994000000,0.000090836000000,0.000080960000000 +0.000019541500000,0.000689354000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000396614000000,0.000075034000000,0.000044219000000,0.000031577000000,0.000089651000000,0.000396613000000,0.000291923000000,0.000686589000000,0.019579611000000,0.000349996000000,0.000345651000000,0.019973883000000,0.000159182000000,0.000080960000000 +0.000029418000000,0.000804712000000,0.000039478000000,0.000013027666667,0.000071083000000,0.000037107000000,0.000351182000000,0.000074639000000,0.000044614000000,0.000031972000000,0.000086491000000,0.000294293000000,0.000292317000000,0.000433750000000,0.018945933000000,0.000348811000000,0.000390292000000,0.019369438000000,0.000089651000000,0.000081749000000 +0.000026850000000,0.000711478000000,0.000039873000000,0.000013027666667,0.000054885000000,0.000039083000000,0.000437700000000,0.000077009000000,0.000044614000000,0.000031577000000,0.000088466000000,0.000325898000000,0.000655774000000,0.000869107000000,0.019239463000000,0.000344071000000,0.000350786000000,0.019558277000000,0.000090441000000,0.000082540000000 +0.000020726500000,0.000717009000000,0.000038688000000,0.000012896000000,0.000056465000000,0.000036713000000,0.000346045000000,0.000077009000000,0.000044219000000,0.000051330000000,0.000087280000000,0.000294687000000,0.000329453000000,0.000345651000000,0.020182475000000,0.000419132000000,0.000432170000000,0.019342574000000,0.000092416000000,0.000083330000000 +0.000019936500000,0.000754539000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000360663000000,0.000075034000000,0.000044614000000,0.000032367000000,0.000121651000000,0.000310885000000,0.000294292000000,0.000377651000000,0.019239858000000,0.000348811000000,0.000351182000000,0.020136648000000,0.000090046000000,0.000081750000000 +0.000019739500000,0.000681848000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000380416000000,0.000077009000000,0.000044218000000,0.000031182000000,0.000120071000000,0.000295083000000,0.000291527000000,0.000346836000000,0.019479265000000,0.000346836000000,0.000384367000000,0.019306229000000,0.000093601000000,0.000082539000000 +0.000095393500000,0.000719774000000,0.000041848000000,0.000013554333333,0.000055280000000,0.000037108000000,0.000359873000000,0.000078589000000,0.000044219000000,0.000031182000000,0.000115725000000,0.000293108000000,0.000381996000000,0.000346836000000,0.020051314000000,0.000347626000000,0.000346441000000,0.019168747000000,0.000108614000000,0.000080959000000 +0.000056874500000,0.000705551000000,0.000039873000000,0.000013027666667,0.000056070000000,0.000087281000000,0.000432959000000,0.000076614000000,0.000045404000000,0.000032367000000,0.000086886000000,0.000327873000000,0.000298243000000,0.000348812000000,0.020039858000000,0.000347231000000,0.000383971000000,0.020058820000000,0.000095577000000,0.000082540000000 +0.000026652500000,0.000784564000000,0.000037898000000,0.000012896000000,0.000056860000000,0.000036713000000,0.000351577000000,0.000074638000000,0.000045799000000,0.000030786000000,0.000089256000000,0.000291923000000,0.000292712000000,0.000346441000000,0.019462673000000,0.000347231000000,0.000346836000000,0.019602920000000,0.000092416000000,0.000081750000000 +0.000018554000000,0.000721749000000,0.000054491000000,0.000013554333333,0.000090046000000,0.000036713000000,0.000350787000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000089256000000,0.000296268000000,0.000295083000000,0.000353552000000,0.019740006000000,0.000344071000000,0.000402144000000,0.020430968000000,0.000091231000000,0.000081354000000 +0.000018751000000,0.000680663000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000385552000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000108219000000,0.000340515000000,0.000327478000000,0.000348811000000,0.020107413000000,0.000351972000000,0.000348416000000,0.020029586000000,0.000092022000000,0.000083330000000 +0.000019541500000,0.000716614000000,0.000041453000000,0.000012896000000,0.000056071000000,0.000036317000000,0.000349206000000,0.000077799000000,0.000044219000000,0.000031972000000,0.000087281000000,0.000293898000000,0.000325897000000,0.000463775000000,0.019536549000000,0.000343676000000,0.000350786000000,0.020180499000000,0.000093207000000,0.000114540000000 +0.000029615500000,0.000760465000000,0.000037898000000,0.000013817666667,0.000055676000000,0.000036713000000,0.000387132000000,0.000077009000000,0.000045799000000,0.000032762000000,0.000086885000000,0.000359873000000,0.000291922000000,0.000354737000000,0.020318771000000,0.000375676000000,0.000345651000000,0.019269883000000,0.000091626000000,0.000082540000000 +0.000025467500000,0.000747033000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000345651000000,0.000079774000000,0.000044219000000,0.000031577000000,0.000089256000000,0.000293502000000,0.000299429000000,0.000364614000000,0.019524302000000,0.000350391000000,0.000359083000000,0.019404203000000,0.000107429000000,0.000083330000000 +0.000018553500000,0.000769157000000,0.000038293000000,0.000013817666667,0.000055676000000,0.000036712000000,0.000350392000000,0.000074639000000,0.000044614000000,0.000065157000000,0.000089256000000,0.000297848000000,0.000307725000000,0.000346836000000,0.019678771000000,0.000344860000000,0.000383182000000,0.019259611000000,0.000129552000000,0.000080564000000 +0.000019541500000,0.000680268000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000037503000000,0.000396218000000,0.000076613000000,0.000045800000000,0.000031182000000,0.000087281000000,0.000333799000000,0.000290737000000,0.000409255000000,0.019134376000000,0.000352762000000,0.000348021000000,0.019246969000000,0.000089256000000,0.000082540000000 +0.000019739000000,0.001208465000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000037503000000,0.000347626000000,0.000077799000000,0.000044219000000,0.000031182000000,0.000089256000000,0.000293898000000,0.000324713000000,0.000354738000000,0.020320351000000,0.000348022000000,0.000482737000000,0.019997191000000,0.000089256000000,0.000082540000000 +0.000056084500000,0.000690934000000,0.000039478000000,0.000013554333333,0.000055676000000,0.000039083000000,0.000496564000000,0.000075429000000,0.000044219000000,0.000032367000000,0.000087281000000,0.000314836000000,0.000292318000000,0.000434540000000,0.020149289000000,0.000353551000000,0.000349207000000,0.019728153000000,0.000090836000000,0.000082540000000 +0.000026850500000,0.000716614000000,0.000037502000000,0.000013554333333,0.000055676000000,0.000037108000000,0.000348811000000,0.000077009000000,0.000045799000000,0.000030787000000,0.000089651000000,0.000291133000000,0.000290737000000,0.000356712000000,0.019320846000000,0.000346046000000,0.000420318000000,0.018999265000000,0.000092811000000,0.000150095000000 +0.000018949000000,0.000998687000000,0.000037503000000,0.000013686000000,0.000055676000000,0.000037107000000,0.000349207000000,0.000077799000000,0.000046194000000,0.000031182000000,0.000086886000000,0.000290737000000,0.000331428000000,0.000352367000000,0.022383757000000,0.000350787000000,0.000349602000000,0.019062871000000,0.000105849000000,0.000080960000000 +0.000018949000000,0.000750194000000,0.000091626000000,0.000013554333333,0.000056860000000,0.000037898000000,0.000433355000000,0.000077009000000,0.000044219000000,0.000031577000000,0.000086886000000,0.000374885000000,0.000293502000000,0.000347231000000,0.019315710000000,0.000352762000000,0.000381996000000,0.021250326000000,0.000092417000000,0.000081355000000 +0.000019739000000,0.000725700000000,0.000037503000000,0.000013027666667,0.000055280000000,0.000037108000000,0.000351576000000,0.000074244000000,0.000045799000000,0.000030787000000,0.000090046000000,0.000293502000000,0.000291922000000,0.000353947000000,0.020985239000000,0.000477206000000,0.000346441000000,0.020086080000000,0.000089256000000,0.000080960000000 +0.000018751500000,0.000720169000000,0.000039479000000,0.000013686333333,0.000055675000000,0.000037503000000,0.000380022000000,0.000075824000000,0.000124416000000,0.000030787000000,0.000089651000000,0.000293897000000,0.000293503000000,0.000498539000000,0.020244895000000,0.000353947000000,0.000384367000000,0.020886079000000,0.000093207000000,0.000080960000000 +0.000018751000000,0.000696465000000,0.000037897000000,0.000013554666667,0.000056071000000,0.000036713000000,0.000346836000000,0.000077009000000,0.000094787000000,0.000030787000000,0.000124417000000,0.000321552000000,0.000293898000000,0.000368169000000,0.019660599000000,0.000346835000000,0.000347231000000,0.020286771000000,0.000089256000000,0.000082935000000 +0.000019739000000,0.000706341000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000414787000000,0.000076614000000,0.000059626000000,0.000031182000000,0.000087675000000,0.000296268000000,0.000326293000000,0.000379231000000,0.019872747000000,0.000347626000000,0.000388712000000,0.019513636000000,0.000090836000000,0.000082935000000 +0.000019936500000,0.000727280000000,0.000038292000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000386737000000,0.000078194000000,0.000044219000000,0.000065157000000,0.000090046000000,0.000324712000000,0.000290737000000,0.000375280000000,0.020034722000000,0.000348811000000,0.000349996000000,0.019839956000000,0.000126392000000,0.000083330000000 +0.000025665000000,0.000713452000000,0.000038293000000,0.000013554333333,0.000142194000000,0.000037107000000,0.000347231000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000090046000000,0.000290342000000,0.000292318000000,0.000367774000000,0.019448450000000,0.000349601000000,0.000345651000000,0.019660204000000,0.000090046000000,0.000082935000000 +0.000019936500000,0.000718984000000,0.000038293000000,0.000013686000000,0.000104663000000,0.000068713000000,0.000383577000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000086885000000,0.000290737000000,0.000398194000000,0.000367774000000,0.019484006000000,0.000347231000000,0.000364219000000,0.019135562000000,0.000092416000000,0.000083330000000 +0.000018554000000,0.000691725000000,0.000038293000000,0.000012896000000,0.000073058000000,0.000036713000000,0.000366194000000,0.000074243000000,0.000043823000000,0.000031182000000,0.000086885000000,0.000330244000000,0.000297453000000,0.000368169000000,0.019654277000000,0.000346836000000,0.000354342000000,0.019500204000000,0.000092811000000,0.000083725000000 +0.000018751000000,0.000716219000000,0.000051725000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000358688000000,0.000077404000000,0.000043823000000,0.000031972000000,0.000089256000000,0.000292318000000,0.000326292000000,0.000425849000000,0.020224746000000,0.000349206000000,0.000634836000000,0.019723413000000,0.000092812000000,0.000084515000000 +0.000019937000000,0.000790095000000,0.000040663000000,0.000013554333333,0.000055676000000,0.000036317000000,0.000440860000000,0.000077009000000,0.000045404000000,0.000030786000000,0.000146144000000,0.000347231000000,0.000295083000000,0.000601650000000,0.020369734000000,0.000344860000000,0.000381997000000,0.020134277000000,0.000090441000000,0.000079775000000 +0.000018949000000,0.000754539000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000350787000000,0.000074244000000,0.000044614000000,0.000030787000000,0.000089256000000,0.000394638000000,0.000290738000000,0.000794046000000,0.020041437000000,0.000346836000000,0.000356317000000,0.019003216000000,0.000092811000000,0.000081750000000 +0.000019541500000,0.000707922000000,0.000039083000000,0.000013027666667,0.000076219000000,0.000037502000000,0.000351577000000,0.000080565000000,0.000044219000000,0.000030787000000,0.000086885000000,0.000328663000000,0.000334984000000,0.000750984000000,0.019588302000000,0.000352367000000,0.000365404000000,0.019393932000000,0.000160367000000,0.000097948000000 +0.000019541500000,0.000685799000000,0.000038292000000,0.000012896000000,0.000055280000000,0.000037108000000,0.000525799000000,0.000076614000000,0.000044218000000,0.000031972000000,0.000087281000000,0.000535675000000,0.000293107000000,0.000797601000000,0.019830870000000,0.000346835000000,0.000346836000000,0.019626624000000,0.000106638000000,0.000084910000000 +0.000018751500000,0.000718589000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000349997000000,0.000075034000000,0.000045009000000,0.000031577000000,0.000087281000000,0.000374095000000,0.000292712000000,0.000703181000000,0.019951363000000,0.000353947000000,0.000347626000000,0.019513635000000,0.000092416000000,0.000083330000000 +0.000019541500000,0.000724119000000,0.000038688000000,0.000015134666667,0.000056070000000,0.000036713000000,0.000383182000000,0.000074639000000,0.000046589000000,0.000031972000000,0.000089255000000,0.000294293000000,0.000292318000000,0.000506441000000,0.020076203000000,0.000379231000000,0.000361058000000,0.019134772000000,0.000093207000000,0.000080959000000 +0.000026258000000,0.000718589000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000348811000000,0.000076613000000,0.000044614000000,0.000033552000000,0.000088861000000,0.000295478000000,0.000295873000000,0.000375676000000,0.019005587000000,0.000347231000000,0.000349206000000,0.018981487000000,0.000091626000000,0.000080170000000 +0.000018751500000,0.000679478000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000050935000000,0.000348811000000,0.000074244000000,0.000045009000000,0.000031577000000,0.000087280000000,0.000291527000000,0.000361058000000,0.000378441000000,0.020718178000000,0.000346835000000,0.000417552000000,0.019632154000000,0.000126392000000,0.000080959000000 +0.000019541500000,0.000710292000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000462984000000,0.000076614000000,0.000078589000000,0.000031577000000,0.000087280000000,0.000293108000000,0.000294292000000,0.000422293000000,0.019967561000000,0.000389897000000,0.000351577000000,0.019015858000000,0.000091626000000,0.000116120000000 +0.000019541500000,0.000724120000000,0.000037503000000,0.000013027666667,0.000056465000000,0.000037108000000,0.000369355000000,0.000074638000000,0.000045009000000,0.000031182000000,0.000089651000000,0.000324318000000,0.000291527000000,0.000378046000000,0.019421586000000,0.000348021000000,0.000395429000000,0.019177834000000,0.000092416000000,0.000080959000000 +0.000019541500000,0.000733206000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036712000000,0.000352367000000,0.000074244000000,0.000045009000000,0.000031972000000,0.000089256000000,0.000290737000000,0.000305749000000,0.000385552000000,0.020114524000000,0.000355527000000,0.000351182000000,0.019574475000000,0.000095577000000,0.000080960000000 +0.000018949000000,0.000709897000000,0.000038293000000,0.000013554333333,0.000069108000000,0.000037108000000,0.000393454000000,0.000075033000000,0.000044218000000,0.000031182000000,0.000089256000000,0.000291528000000,0.000291132000000,0.000375280000000,0.019235908000000,0.000348021000000,0.000383972000000,0.019386426000000,0.000089651000000,0.000104268000000 +0.000019146500000,0.000680268000000,0.000037898000000,0.000013554666667,0.000056466000000,0.000037898000000,0.000349206000000,0.000077009000000,0.000043824000000,0.000032367000000,0.000122046000000,0.000328268000000,0.000328663000000,0.000366984000000,0.019711166000000,0.000346836000000,0.000344070000000,0.019818228000000,0.000091231000000,0.000093602000000 +0.000019344000000,0.000713058000000,0.000037502000000,0.000013554666667,0.000055676000000,0.000036712000000,0.000380021000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000090441000000,0.000299034000000,0.000295083000000,0.000378046000000,0.019906327000000,0.000342885000000,0.000382391000000,0.019499809000000,0.000093207000000,0.000081355000000 +0.000019541500000,0.000871083000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000348811000000,0.000088860000000,0.000043824000000,0.000031972000000,0.000089256000000,0.000346441000000,0.000342886000000,0.000370540000000,0.021008943000000,0.000345651000000,0.000381997000000,0.019476500000000,0.000091626000000,0.000082540000000 +0.000018751500000,0.000717799000000,0.000038688000000,0.000013027666667,0.000059626000000,0.000037898000000,0.000362638000000,0.000075429000000,0.000043824000000,0.000030787000000,0.000091627000000,0.000294293000000,0.000376071000000,0.000408466000000,0.019358377000000,0.000347626000000,0.000385552000000,0.019759759000000,0.000088466000000,0.000192762000000 +0.000035541500000,0.000759675000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000472070000000,0.000074638000000,0.000044614000000,0.000030787000000,0.000087676000000,0.000291923000000,0.000293897000000,0.000372910000000,0.019797290000000,0.000346836000000,0.000351972000000,0.019556302000000,0.000089651000000,0.000271774000000 +0.000019542000000,0.000728465000000,0.000037898000000,0.000013686333333,0.000056861000000,0.000050539000000,0.000381602000000,0.000077404000000,0.000062787000000,0.000031577000000,0.000088860000000,0.000340120000000,0.000324318000000,0.000407280000000,0.019217340000000,0.000362243000000,0.000346440000000,0.019802821000000,0.000092416000000,0.000135478000000 +0.000019937000000,0.000697650000000,0.000059231000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000355132000000,0.000076614000000,0.000045799000000,0.000030787000000,0.000107428000000,0.000291132000000,0.000298244000000,0.000377651000000,0.019278179000000,0.000347626000000,0.000348417000000,0.019544056000000,0.000090441000000,0.000097947000000 +0.000019739000000,0.000751774000000,0.000038293000000,0.000013027666667,0.000089256000000,0.000037898000000,0.000383577000000,0.000074244000000,0.000044219000000,0.000031972000000,0.000087280000000,0.000292317000000,0.000291923000000,0.000403725000000,0.020357092000000,0.000731626000000,0.000347231000000,0.020325092000000,0.000092416000000,0.000083725000000 +0.000019541500000,0.000725304000000,0.000038293000000,0.000012896000000,0.000056070000000,0.000036713000000,0.000348812000000,0.000074243000000,0.000045009000000,0.000031182000000,0.000086885000000,0.000299033000000,0.000325898000000,0.000368169000000,0.019814278000000,0.000379626000000,0.000368169000000,0.019941092000000,0.000139429000000,0.000083725000000 +0.000018554000000,0.000725305000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000038293000000,0.000409256000000,0.000075034000000,0.000045009000000,0.000031972000000,0.000087281000000,0.000294688000000,0.000297849000000,0.000417552000000,0.020107808000000,0.000348811000000,0.000346836000000,0.019916203000000,0.000092416000000,0.000080960000000 +0.000018554000000,0.000691329000000,0.000040269000000,0.000013817666667,0.000056861000000,0.000038688000000,0.000373701000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000088861000000,0.000333798000000,0.000292318000000,0.000376070000000,0.019178229000000,0.000351577000000,0.000394639000000,0.019060106000000,0.000092416000000,0.000082540000000 +0.000019541500000,0.000706737000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037898000000,0.000344860000000,0.000074243000000,0.000045404000000,0.000031972000000,0.000089256000000,0.000292318000000,0.000363033000000,0.000368959000000,0.019470179000000,0.000346441000000,0.000345256000000,0.019998771000000,0.000092416000000,0.000083725000000 +0.000018751500000,0.000751774000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000037503000000,0.000387132000000,0.000078194000000,0.000045009000000,0.000031577000000,0.000089256000000,0.000290738000000,0.000293502000000,0.000367774000000,0.020326672000000,0.000350392000000,0.000641551000000,0.019696549000000,0.000092417000000,0.000130737000000 +0.000018751500000,0.000753749000000,0.000038293000000,0.000013554333333,0.000055280000000,0.000037898000000,0.000357503000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000122046000000,0.000379626000000,0.000360663000000,0.000418342000000,0.019261587000000,0.000472071000000,0.000350787000000,0.019369438000000,0.000089651000000,0.000080564000000 +0.000029023000000,0.000801156000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000442441000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000091231000000,0.000291527000000,0.000290737000000,0.000374095000000,0.020076993000000,0.000347231000000,0.000348021000000,0.019649537000000,0.000091626000000,0.000081355000000 +0.000019541500000,0.000906638000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037502000000,0.000343675000000,0.000077009000000,0.000045404000000,0.000030391000000,0.000087280000000,0.000329058000000,0.000333404000000,0.000415971000000,0.018857044000000,0.000349996000000,0.000351182000000,0.019599759000000,0.000104268000000,0.000080170000000 +0.000018751000000,0.000713058000000,0.000037503000000,0.000013554333333,0.000056861000000,0.000037503000000,0.000346441000000,0.000076614000000,0.000044614000000,0.000046194000000,0.000086886000000,0.000294688000000,0.000295083000000,0.000368564000000,0.019815067000000,0.000436910000000,0.000419922000000,0.020246870000000,0.000090046000000,0.000081354000000 +0.000020134500000,0.000685403000000,0.000039873000000,0.000013554333333,0.000056071000000,0.000037503000000,0.000381996000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000089256000000,0.000294688000000,0.000297453000000,0.000459428000000,0.020076203000000,0.000345651000000,0.000346441000000,0.019457142000000,0.000092021000000,0.000083330000000 +0.000018554000000,0.000711873000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036712000000,0.000351576000000,0.000074244000000,0.000045404000000,0.000031577000000,0.000087281000000,0.000378836000000,0.000327083000000,0.000367774000000,0.019205093000000,0.000347626000000,0.000383972000000,0.018917488000000,0.000092812000000,0.000081354000000 +0.000018751500000,0.000711478000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000039083000000,0.000363034000000,0.000074638000000,0.000043824000000,0.000031577000000,0.000122046000000,0.000291132000000,0.000292318000000,0.000371330000000,0.019297537000000,0.000349997000000,0.000346836000000,0.020035907000000,0.000092811000000,0.000116515000000 +0.000019541500000,0.000707527000000,0.000038293000000,0.000017505000000,0.000055675000000,0.000037108000000,0.000344466000000,0.000095972000000,0.000045404000000,0.000031182000000,0.000087676000000,0.000312860000000,0.000294688000000,0.000404120000000,0.020308894000000,0.000382787000000,0.000440071000000,0.019923710000000,0.000092811000000,0.000082144000000 +0.000018751500000,0.000727280000000,0.000037503000000,0.000013422666667,0.000055675000000,0.000036713000000,0.000353157000000,0.000077009000000,0.000044614000000,0.000030787000000,0.000090046000000,0.000293107000000,0.000291922000000,0.000353947000000,0.019953339000000,0.000349602000000,0.000348417000000,0.019434624000000,0.000123627000000,0.000081354000000 +0.000019542000000,0.000703182000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000036712000000,0.000613897000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000089256000000,0.000293107000000,0.000290737000000,0.000348811000000,0.019079068000000,0.000346441000000,0.000419527000000,0.019468203000000,0.000092811000000,0.000079775000000 +0.000019739000000,0.000730045000000,0.000039874000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000397009000000,0.000104268000000,0.000045009000000,0.000031182000000,0.000086886000000,0.000327873000000,0.000328664000000,0.000347231000000,0.020389487000000,0.000383971000000,0.000346046000000,0.019366673000000,0.000092416000000,0.000082540000000 +0.000018751500000,0.000703181000000,0.000038293000000,0.000013027666667,0.000102293000000,0.000036713000000,0.000347231000000,0.000076219000000,0.000045009000000,0.000031182000000,0.000090046000000,0.000375676000000,0.000297848000000,0.000354737000000,0.019612006000000,0.000347626000000,0.000437305000000,0.019468204000000,0.000089651000000,0.000082934000000 +0.000019541500000,0.000719379000000,0.000058441000000,0.000012896000000,0.000055676000000,0.000093997000000,0.000465750000000,0.000076614000000,0.000045009000000,0.000032367000000,0.000089651000000,0.000291133000000,0.000299033000000,0.000363428000000,0.019194821000000,0.000348416000000,0.000349602000000,0.019851808000000,0.000092416000000,0.000084515000000 +0.000018554000000,0.000684218000000,0.000038688000000,0.000014344666667,0.000055675000000,0.000086096000000,0.000500515000000,0.000075034000000,0.000045404000000,0.000050935000000,0.000107429000000,0.000291923000000,0.000329059000000,0.000348416000000,0.021809338000000,0.000349996000000,0.000381207000000,0.019604895000000,0.000093602000000,0.000152071000000 +0.000018751500000,0.000750589000000,0.000037898000000,0.000017373333333,0.000057256000000,0.000039874000000,0.000349996000000,0.000076614000000,0.000044218000000,0.000031972000000,0.000089256000000,0.000293108000000,0.000292317000000,0.000345256000000,0.019589093000000,0.000671576000000,0.000349602000000,0.019009537000000,0.000110194000000,0.000082935000000 +0.000019936500000,0.000737157000000,0.000037503000000,0.000013686000000,0.000055676000000,0.000036713000000,0.000346046000000,0.000077799000000,0.000045800000000,0.000032367000000,0.000086885000000,0.000328664000000,0.000313255000000,0.000546342000000,0.022416941000000,0.000349601000000,0.000348021000000,0.021846473000000,0.000090046000000,0.000080960000000 +0.000019541500000,0.000705157000000,0.000039873000000,0.000019612000000,0.000055280000000,0.000037503000000,0.000365799000000,0.000080565000000,0.000043824000000,0.000031972000000,0.000086490000000,0.000293503000000,0.000293108000000,0.000379231000000,0.019998771000000,0.000346441000000,0.000351182000000,0.020181685000000,0.000090046000000,0.000082935000000 +0.000019739000000,0.000715824000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000354737000000,0.000076614000000,0.000045009000000,0.000032367000000,0.000087280000000,0.000292318000000,0.000296268000000,0.000370144000000,0.019874722000000,0.000346046000000,0.000419527000000,0.019979018000000,0.000092021000000,0.000080960000000 +0.000019146500000,0.000688564000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037502000000,0.000383972000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000089256000000,0.000349602000000,0.000324713000000,0.000351576000000,0.019790573000000,0.000350391000000,0.000348021000000,0.020326277000000,0.000093207000000,0.000081355000000 +0.000018751500000,0.000717008000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000347231000000,0.000076614000000,0.000043824000000,0.000030391000000,0.000122046000000,0.000297058000000,0.000292713000000,0.000348416000000,0.019064845000000,0.000346836000000,0.000346441000000,0.019215364000000,0.000091626000000,0.000084121000000 +0.000019541500000,0.000750589000000,0.000037897000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000346046000000,0.000074244000000,0.000045404000000,0.000031181000000,0.000089651000000,0.000324318000000,0.000295478000000,0.000356318000000,0.019205883000000,0.000352762000000,0.000395823000000,0.019513240000000,0.000090046000000,0.000079774000000 +0.000019936500000,0.000758885000000,0.000037898000000,0.000013554333333,0.000056861000000,0.000036317000000,0.000353157000000,0.000076219000000,0.000052515000000,0.000031972000000,0.000087281000000,0.000290737000000,0.000362243000000,0.000353552000000,0.018953043000000,0.000348416000000,0.000350786000000,0.019941488000000,0.000125206000000,0.000082935000000 +0.000037714500000,0.000679873000000,0.000087676000000,0.000013949666667,0.000072663000000,0.000037503000000,0.000348811000000,0.000079775000000,0.000045009000000,0.000031577000000,0.000086885000000,0.000291132000000,0.000293107000000,0.000346441000000,0.020028400000000,0.000350786000000,0.000381602000000,0.020369734000000,0.000093602000000,0.000081750000000 +0.000019937000000,0.000681058000000,0.000037898000000,0.000013027666667,0.000057651000000,0.000036713000000,0.000387922000000,0.000074639000000,0.000043823000000,0.000031972000000,0.000091232000000,0.000329848000000,0.000381601000000,0.000357108000000,0.020050524000000,0.000352367000000,0.000349997000000,0.019077488000000,0.000092416000000,0.000081355000000 +0.000026652500000,0.000731626000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000370934000000,0.000089651000000,0.000043824000000,0.000070293000000,0.000086886000000,0.000292712000000,0.000306144000000,0.000402145000000,0.019504155000000,0.000349997000000,0.000434144000000,0.019465438000000,0.000092021000000,0.000082540000000 +0.000019739000000,0.000736367000000,0.000037898000000,0.000013554666667,0.000056071000000,0.000037502000000,0.000417156000000,0.000074244000000,0.000045009000000,0.000047774000000,0.000090441000000,0.000290342000000,0.000290737000000,0.000348416000000,0.019105537000000,0.000349997000000,0.000351576000000,0.019752252000000,0.000092417000000,0.000082935000000 +0.000019739000000,0.000834736000000,0.000037898000000,0.000019480333333,0.000055280000000,0.000036713000000,0.000366984000000,0.000074243000000,0.000043824000000,0.000034342000000,0.000089650000000,0.000416761000000,0.000320366000000,0.000348416000000,0.019380105000000,0.000346441000000,0.000388317000000,0.019547216000000,0.000092416000000,0.000082540000000 +0.000019936500000,0.000765601000000,0.000037503000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000367379000000,0.000074244000000,0.000045009000000,0.000031577000000,0.000089256000000,0.000292317000000,0.000292317000000,0.000346441000000,0.019502969000000,0.000351972000000,0.000353157000000,0.019700500000000,0.000129157000000,0.000080169000000 +0.000018751500000,0.000671182000000,0.000037503000000,0.000012896000000,0.000070688000000,0.000037502000000,0.000371725000000,0.000075428000000,0.000045404000000,0.000030392000000,0.000089256000000,0.000379626000000,0.000373305000000,0.000345651000000,0.019341784000000,0.000349206000000,0.000417552000000,0.019437389000000,0.000092022000000,0.000080960000000 +0.000018751500000,0.000705947000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000377255000000,0.000074639000000,0.000043824000000,0.000030391000000,0.000086490000000,0.000291528000000,0.000292713000000,0.000346836000000,0.019694969000000,0.000355528000000,0.000356317000000,0.019833240000000,0.000093206000000,0.000080959000000 +0.000019541500000,0.000710292000000,0.000038293000000,0.000012896000000,0.000057256000000,0.000071478000000,0.000369749000000,0.000076614000000,0.000045009000000,0.000031576000000,0.000090046000000,0.000330244000000,0.000292713000000,0.000347626000000,0.019104747000000,0.000348811000000,0.000393849000000,0.019833636000000,0.000092812000000,0.000081355000000 +0.000026060000000,0.000753749000000,0.000087280000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000371330000000,0.000076219000000,0.000044219000000,0.000031972000000,0.000088861000000,0.000307329000000,0.000326293000000,0.000344465000000,0.019367463000000,0.000347231000000,0.000346836000000,0.019684302000000,0.000091626000000,0.000079774000000 +0.000018949000000,0.000729255000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000372120000000,0.000074243000000,0.000045405000000,0.000031182000000,0.000132712000000,0.000295083000000,0.000293108000000,0.000347626000000,0.020020499000000,0.000381206000000,0.000447971000000,0.019323611000000,0.000090046000000,0.000082935000000 +0.000019541500000,0.000671972000000,0.000039478000000,0.000013028000000,0.000055676000000,0.000037898000000,0.000370144000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000089256000000,0.000377650000000,0.000311676000000,0.000345651000000,0.019226821000000,0.000346836000000,0.000536466000000,0.019109488000000,0.000089651000000,0.000082540000000 +0.000019542000000,0.000777058000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000369355000000,0.000077009000000,0.000044614000000,0.000045799000000,0.000087281000000,0.000290342000000,0.000291922000000,0.000359478000000,0.019556697000000,0.000402144000000,0.000349601000000,0.019515611000000,0.000090441000000,0.000083330000000 +0.000018554000000,0.000713058000000,0.000037503000000,0.000014081000000,0.000055280000000,0.000037107000000,0.000370540000000,0.000074244000000,0.000044219000000,0.000031577000000,0.000122046000000,0.000342885000000,0.000292317000000,0.000351972000000,0.019280944000000,0.000345256000000,0.000348022000000,0.019222080000000,0.000092416000000,0.000082145000000 +0.000019936500000,0.000826046000000,0.000039083000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000368169000000,0.000078195000000,0.000044219000000,0.000030787000000,0.000093602000000,0.000293898000000,0.000326293000000,0.000345255000000,0.019817833000000,0.000345255000000,0.000423083000000,0.019968746000000,0.000092416000000,0.000083330000000 +0.000018751500000,0.000725305000000,0.000039084000000,0.000025801333333,0.000056466000000,0.000036712000000,0.000372120000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000089256000000,0.000293898000000,0.000296268000000,0.000431774000000,0.019325981000000,0.000348416000000,0.000348416000000,0.019468599000000,0.000092417000000,0.000082540000000 +0.000019541500000,0.000682638000000,0.000037503000000,0.000025538000000,0.000056466000000,0.000037503000000,0.000372910000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000123627000000,0.000360663000000,0.000291133000000,0.000351577000000,0.019271858000000,0.000351577000000,0.000383972000000,0.019329537000000,0.000092811000000,0.000080565000000 +0.000019937000000,0.000815379000000,0.000038688000000,0.000031068666667,0.000056071000000,0.000037898000000,0.000390688000000,0.000077009000000,0.000045404000000,0.000031182000000,0.000090441000000,0.000294293000000,0.000304959000000,0.000351972000000,0.019252500000000,0.000350391000000,0.000350787000000,0.019254080000000,0.000090046000000,0.000080564000000 +0.000037714500000,0.000713453000000,0.000071873000000,0.000042789000000,0.000056861000000,0.000078195000000,0.000359083000000,0.000079774000000,0.000043824000000,0.000031577000000,0.000087280000000,0.000332218000000,0.000297453000000,0.000354342000000,0.019868006000000,0.000343281000000,0.000378046000000,0.019760549000000,0.000123231000000,0.000081355000000 +0.000019739000000,0.001002637000000,0.000038688000000,0.000038180000000,0.000055280000000,0.000036713000000,0.000437700000000,0.000076614000000,0.000043824000000,0.000031577000000,0.000086885000000,0.000295873000000,0.000329058000000,0.000362638000000,0.019831660000000,0.000349602000000,0.000348416000000,0.019495068000000,0.000092811000000,0.000081749000000 +0.000019739000000,0.000719774000000,0.000038292000000,0.000026986333333,0.000057255000000,0.000036712000000,0.000362639000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000089651000000,0.000293503000000,0.000370145000000,0.000355133000000,0.020190771000000,0.000355527000000,0.000382392000000,0.019216155000000,0.000091627000000,0.000084515000000 +0.000018554000000,0.000752959000000,0.000037898000000,0.000018426666667,0.000056466000000,0.000038293000000,0.000362243000000,0.000077799000000,0.000044219000000,0.000033157000000,0.000087281000000,0.000382391000000,0.000294293000000,0.000347231000000,0.019680747000000,0.000347231000000,0.000346441000000,0.020052894000000,0.000092021000000,0.000082935000000 +0.000019541500000,0.000697255000000,0.000039083000000,0.000013817666667,0.000096367000000,0.000036713000000,0.000418342000000,0.000075033000000,0.000043824000000,0.000030787000000,0.000089256000000,0.000291922000000,0.000292317000000,0.000344071000000,0.019051414000000,0.000348021000000,0.000372120000000,0.019103562000000,0.000102688000000,0.000080960000000 +0.000018554000000,0.000684219000000,0.000038688000000,0.000014081333333,0.000055676000000,0.000037898000000,0.000346441000000,0.000078194000000,0.000045009000000,0.000045404000000,0.000084120000000,0.000356713000000,0.000295083000000,0.000349207000000,0.019317290000000,0.000350391000000,0.000363428000000,0.019184549000000,0.000092022000000,0.000080565000000 +0.000018751500000,0.000762440000000,0.000037503000000,0.000014476333333,0.000057651000000,0.000037897000000,0.000432169000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000082540000000,0.000291132000000,0.000325503000000,0.000348811000000,0.020237784000000,0.000378836000000,0.000348811000000,0.019499018000000,0.000167873000000,0.000081354000000 +0.000019936500000,0.000745058000000,0.000038293000000,0.000020138666667,0.000055280000000,0.000036713000000,0.000348811000000,0.000076614000000,0.000045009000000,0.000032367000000,0.000082540000000,0.000290342000000,0.000296664000000,0.000347231000000,0.019698525000000,0.000346046000000,0.000347626000000,0.019028106000000,0.000093997000000,0.000102688000000 +0.000019739500000,0.000752169000000,0.000037898000000,0.000013818000000,0.000056466000000,0.000037898000000,0.000355528000000,0.000074639000000,0.000044218000000,0.000031577000000,0.000082540000000,0.000359083000000,0.000294688000000,0.000353947000000,0.019602524000000,0.000520268000000,0.000351181000000,0.020071463000000,0.000093207000000,0.000080960000000 +0.000019937000000,0.000705552000000,0.000037898000000,0.000013686000000,0.000055281000000,0.000036713000000,0.000452712000000,0.000074638000000,0.000045404000000,0.000030392000000,0.000082144000000,0.000293503000000,0.000378835000000,0.000348416000000,0.019986524000000,0.000352367000000,0.000415971000000,0.019450426000000,0.000092417000000,0.000100713000000 +0.000046011000000,0.000677107000000,0.000037503000000,0.000013818000000,0.000054886000000,0.000052910000000,0.000344861000000,0.000077009000000,0.000047379000000,0.000031577000000,0.000082145000000,0.000371329000000,0.000290738000000,0.000353947000000,0.019966376000000,0.000343676000000,0.000350392000000,0.019666129000000,0.000092416000000,0.000098342000000 +0.000018751500000,0.000767576000000,0.000037898000000,0.000013818000000,0.000055676000000,0.000038293000000,0.000389898000000,0.000074639000000,0.000044614000000,0.000030787000000,0.000101503000000,0.000447972000000,0.000325898000000,0.000347231000000,0.019519957000000,0.000344465000000,0.000381997000000,0.020209734000000,0.000092811000000,0.000080170000000 +0.000019936500000,0.000712267000000,0.000037502000000,0.000013686000000,0.000077404000000,0.000037108000000,0.000382391000000,0.000076614000000,0.000046194000000,0.000030787000000,0.000082539000000,0.000327478000000,0.000290737000000,0.000346836000000,0.019339809000000,0.000346836000000,0.000349997000000,0.018882723000000,0.000132318000000,0.000081355000000 +0.000021121500000,0.000718984000000,0.000037898000000,0.000013817666667,0.000055281000000,0.000037898000000,0.000346836000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000084911000000,0.000292317000000,0.000300613000000,0.000383972000000,0.019435414000000,0.000349997000000,0.000436910000000,0.019759364000000,0.000263083000000,0.000083330000000 +0.000018554000000,0.000683033000000,0.000038293000000,0.000014476333333,0.000056861000000,0.000037898000000,0.000419923000000,0.000075034000000,0.000045799000000,0.000032763000000,0.000084120000000,0.000291132000000,0.000369354000000,0.000347231000000,0.020152054000000,0.000347231000000,0.000346046000000,0.019282525000000,0.000124812000000,0.000149305000000 +0.000018949000000,0.000739527000000,0.000038293000000,0.000013818000000,0.000055281000000,0.000036713000000,0.000430984000000,0.000074243000000,0.000044219000000,0.000031182000000,0.000084121000000,0.000324317000000,0.000292318000000,0.000344861000000,0.019911857000000,0.000355922000000,0.000384762000000,0.020756894000000,0.000090046000000,0.000083330000000 +0.000019541500000,0.000762836000000,0.000038293000000,0.000013686000000,0.000055675000000,0.000038293000000,0.000350392000000,0.000076219000000,0.000044219000000,0.000045799000000,0.000084120000000,0.000294688000000,0.000327083000000,0.000346836000000,0.019728549000000,0.000342886000000,0.000349601000000,0.019940302000000,0.000092416000000,0.000081750000000 +0.000019937000000,0.000784959000000,0.000037503000000,0.000023826000000,0.000056466000000,0.000036712000000,0.000434935000000,0.000076613000000,0.000045799000000,0.000031972000000,0.000082935000000,0.000329058000000,0.000331033000000,0.000347626000000,0.019966771000000,0.000353947000000,0.000386342000000,0.019279364000000,0.000092417000000,0.000084120000000 +0.000019541500000,0.000775477000000,0.000037503000000,0.000013554333333,0.000055676000000,0.000037503000000,0.000347231000000,0.000074244000000,0.000046194000000,0.000031182000000,0.000115725000000,0.000295873000000,0.000291132000000,0.000344466000000,0.019452401000000,0.000346046000000,0.000347626000000,0.019453587000000,0.000090046000000,0.000082935000000 +0.000019541500000,0.000803922000000,0.000057651000000,0.000013027666667,0.000055280000000,0.000037898000000,0.000743082000000,0.000075429000000,0.000046984000000,0.000030787000000,0.000081750000000,0.000296268000000,0.000368564000000,0.000474440000000,0.019548006000000,0.000349206000000,0.000397009000000,0.019427117000000,0.000092811000000,0.000082540000000 +0.000026652500000,0.000780218000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000053305000000,0.000352761000000,0.000074244000000,0.000058836000000,0.000031181000000,0.000082145000000,0.000325898000000,0.000291922000000,0.000346046000000,0.019940302000000,0.000357502000000,0.000353157000000,0.019307019000000,0.000092417000000,0.000114144000000 +0.000018553500000,0.000692120000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000348021000000,0.000078194000000,0.000043823000000,0.000032762000000,0.000084120000000,0.000291133000000,0.000327477000000,0.000360268000000,0.019406179000000,0.000346440000000,0.000348417000000,0.019414870000000,0.000093601000000,0.000082145000000 +0.000019541500000,0.000741108000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037107000000,0.000346441000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000081750000000,0.000290737000000,0.000294688000000,0.000349207000000,0.019776351000000,0.000353552000000,0.000359083000000,0.019386031000000,0.000092022000000,0.000083330000000 +0.000019146500000,0.000704367000000,0.000037898000000,0.000014081000000,0.000055675000000,0.000037503000000,0.000386342000000,0.000076614000000,0.000044218000000,0.000031182000000,0.000082145000000,0.000305750000000,0.000293108000000,0.000397799000000,0.021206869000000,0.000352367000000,0.000346046000000,0.018931710000000,0.000158391000000,0.000083330000000 +0.000018554000000,0.000716218000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000349206000000,0.000074244000000,0.000044614000000,0.000032367000000,0.000082540000000,0.000295873000000,0.000634836000000,0.000346441000000,0.019734080000000,0.000348021000000,0.000388317000000,0.019494672000000,0.000092022000000,0.000080565000000 +0.000019739000000,0.000681058000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000037503000000,0.000379626000000,0.000076613000000,0.000044219000000,0.000031182000000,0.000150886000000,0.000329058000000,0.000311280000000,0.000352762000000,0.020303364000000,0.000441255000000,0.000351182000000,0.021420597000000,0.000093601000000,0.000081354000000 +0.000019344000000,0.000683823000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000353552000000,0.000074244000000,0.000046195000000,0.000067528000000,0.000084120000000,0.000291132000000,0.000294688000000,0.000351182000000,0.019871956000000,0.000344465000000,0.000381206000000,0.019353635000000,0.000092417000000,0.000080170000000 +0.000018751000000,0.000712267000000,0.000039873000000,0.000017373333333,0.000057651000000,0.000037898000000,0.000349602000000,0.000075429000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000292317000000,0.000295873000000,0.000354342000000,0.019982179000000,0.000349206000000,0.000354737000000,0.020819313000000,0.000090046000000,0.000127972000000 +0.000019936500000,0.000717799000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000417552000000,0.000074243000000,0.000043824000000,0.000031577000000,0.000084120000000,0.000328663000000,0.000326293000000,0.000362243000000,0.019654278000000,0.000349602000000,0.000424268000000,0.019651512000000,0.000090836000000,0.000082935000000 +0.000018751500000,0.000711477000000,0.000050540000000,0.000012896000000,0.000111774000000,0.000038688000000,0.000351972000000,0.000074243000000,0.000045800000000,0.000031182000000,0.000083330000000,0.000295478000000,0.000295083000000,0.000355922000000,0.020510770000000,0.000348811000000,0.000344861000000,0.020150870000000,0.000127181000000,0.000080960000000 +0.000025467500000,0.000679083000000,0.000038293000000,0.000013554333333,0.000055281000000,0.000092811000000,0.000380021000000,0.000076614000000,0.000045009000000,0.000030787000000,0.000084910000000,0.000293502000000,0.000295478000000,0.000347231000000,0.019178228000000,0.000350391000000,0.000380021000000,0.018693883000000,0.000092416000000,0.000082145000000 +0.000027442500000,0.000707922000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000036317000000,0.000362639000000,0.000077799000000,0.000045009000000,0.000030786000000,0.000084516000000,0.000293898000000,0.000326293000000,0.000344465000000,0.019858919000000,0.000348021000000,0.000348416000000,0.018475019000000,0.000092812000000,0.000081354000000 +0.000019936500000,0.000761651000000,0.000039478000000,0.000013686333333,0.000055676000000,0.000036713000000,0.000366985000000,0.000077800000000,0.000044219000000,0.000030392000000,0.000082145000000,0.000295478000000,0.000293898000000,0.000383972000000,0.019649141000000,0.000385552000000,0.000384367000000,0.018965685000000,0.000092417000000,0.000100318000000 +0.000026652500000,0.000722145000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000390293000000,0.000074244000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000333404000000,0.000291527000000,0.000347626000000,0.020496943000000,0.000346836000000,0.000385552000000,0.018492007000000,0.000089651000000,0.000081354000000 +0.000019541500000,0.000762441000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000040269000000,0.000344860000000,0.000075429000000,0.000043824000000,0.000031577000000,0.000084120000000,0.000296268000000,0.000305750000000,0.000348417000000,0.019494277000000,0.000354738000000,0.000367774000000,0.018893785000000,0.000092811000000,0.000098737000000 +0.000018751500000,0.000669601000000,0.000037503000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000422687000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000081749000000,0.000290737000000,0.000293898000000,0.000352762000000,0.019690623000000,0.000348417000000,0.000382787000000,0.019110673000000,0.000089256000000,0.000083330000000 +0.000019739500000,0.000733601000000,0.000037503000000,0.000019612000000,0.000056466000000,0.000037108000000,0.000385156000000,0.000076614000000,0.000043824000000,0.000031182000000,0.000080565000000,0.000372515000000,0.000387922000000,0.000413206000000,0.019754623000000,0.000352762000000,0.000385947000000,0.018614871000000,0.000154441000000,0.000084515000000 +0.000018949000000,0.000727280000000,0.000037503000000,0.000013686333333,0.000089256000000,0.000037503000000,0.000349602000000,0.000075034000000,0.000043824000000,0.000046194000000,0.000084120000000,0.000291132000000,0.000293898000000,0.000715033000000,0.019139513000000,0.000350786000000,0.000353947000000,0.018620797000000,0.000092417000000,0.000082935000000 +0.000018751500000,0.000715823000000,0.000058836000000,0.000013554333333,0.000055676000000,0.000037108000000,0.000386738000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000082540000000,0.000389898000000,0.000340515000000,0.000347626000000,0.019294376000000,0.000351972000000,0.000351181000000,0.018624352000000,0.000090046000000,0.000083330000000 +0.000019541500000,0.000687379000000,0.000109009000000,0.000013027666667,0.000056071000000,0.000056465000000,0.000354737000000,0.000078589000000,0.000045009000000,0.000031972000000,0.000218046000000,0.000295873000000,0.000292317000000,0.000347231000000,0.019123710000000,0.000386737000000,0.000354738000000,0.018915117000000,0.000092416000000,0.000080959000000 +0.000019344000000,0.000673157000000,0.000040269000000,0.000013027666667,0.000055676000000,0.000037502000000,0.000389503000000,0.000076218000000,0.000045799000000,0.000032367000000,0.000101107000000,0.000296663000000,0.000293502000000,0.000347231000000,0.019120154000000,0.000359083000000,0.000354737000000,0.019185340000000,0.000089651000000,0.000082934000000 +0.000019739000000,0.000727280000000,0.000040664000000,0.000013554333333,0.000057256000000,0.000036713000000,0.000348416000000,0.000074244000000,0.000045404000000,0.000031182000000,0.000082539000000,0.000359873000000,0.000324317000000,0.000378836000000,0.020011413000000,0.000346836000000,0.000371330000000,0.018321736000000,0.000092021000000,0.000080169000000 +0.000018751500000,0.000737551000000,0.000052120000000,0.000013686000000,0.000058441000000,0.000036713000000,0.000355527000000,0.000126787000000,0.000044614000000,0.000031576000000,0.000086096000000,0.000292318000000,0.000301404000000,0.000461798000000,0.019972302000000,0.000381601000000,0.000348416000000,0.018573389000000,0.000180910000000,0.000080565000000 +0.000018554000000,0.000751774000000,0.000037898000000,0.000013686000000,0.000056466000000,0.000038293000000,0.000382391000000,0.000091627000000,0.000045009000000,0.000032762000000,0.000119675000000,0.000323923000000,0.000294688000000,0.000347626000000,0.020295857000000,0.000353947000000,0.000383972000000,0.018844006000000,0.000090836000000,0.000082935000000 +0.000019541500000,0.000681453000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000345256000000,0.000077800000000,0.000044219000000,0.000030392000000,0.000084120000000,0.000293108000000,0.000336960000000,0.000346836000000,0.019308599000000,0.000354342000000,0.000347626000000,0.018977537000000,0.000092021000000,0.000080565000000 +0.000019541500000,0.000835132000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037108000000,0.000384367000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000084515000000,0.000292713000000,0.000300614000000,0.000344861000000,0.020172203000000,0.000351972000000,0.000385947000000,0.019068401000000,0.000091232000000,0.000082540000000 +0.000018751500000,0.000711478000000,0.000038293000000,0.000025801333333,0.000147330000000,0.000036317000000,0.000352762000000,0.000079774000000,0.000045009000000,0.000030786000000,0.000082145000000,0.000329454000000,0.000327873000000,0.000348416000000,0.018456452000000,0.000346046000000,0.000351182000000,0.019210624000000,0.000093207000000,0.000082935000000 +0.000028035500000,0.000703577000000,0.000038688000000,0.000013554666667,0.000059626000000,0.000037108000000,0.000346441000000,0.000074243000000,0.000044614000000,0.000070293000000,0.000082145000000,0.000295083000000,0.000295083000000,0.000346046000000,0.018340304000000,0.000346836000000,0.000383971000000,0.018540994000000,0.000091231000000,0.000080959000000 +0.000026455000000,0.000713058000000,0.000038292000000,0.000012896000000,0.000069108000000,0.000037503000000,0.000357108000000,0.000076614000000,0.000046195000000,0.000030787000000,0.000082540000000,0.000294293000000,0.000291132000000,0.000364219000000,0.018829389000000,0.000346046000000,0.000347626000000,0.018920253000000,0.000173799000000,0.000082935000000 +0.000019936500000,0.000679872000000,0.000038293000000,0.000013554333333,0.000056465000000,0.000038688000000,0.000349206000000,0.000077799000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000292318000000,0.000325108000000,0.000349601000000,0.018674920000000,0.000384762000000,0.000381206000000,0.019269487000000,0.000092416000000,0.000082540000000 +0.000019541500000,0.000758885000000,0.000037503000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000381996000000,0.000074638000000,0.000044219000000,0.000032367000000,0.000096762000000,0.000291133000000,0.000310096000000,0.000394638000000,0.018976352000000,0.000352367000000,0.000347231000000,0.018316205000000,0.000093206000000,0.000082145000000 +0.000019541500000,0.000765601000000,0.000038293000000,0.000013027666667,0.000055280000000,0.000036318000000,0.000350392000000,0.000076219000000,0.000045404000000,0.000031972000000,0.000085305000000,0.000325898000000,0.000348416000000,0.000347231000000,0.018226526000000,0.000379626000000,0.000356712000000,0.018936845000000,0.000163528000000,0.000081355000000 +0.000018554000000,0.000704367000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000528169000000,0.000077799000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000291923000000,0.000295083000000,0.000390687000000,0.019060106000000,0.000349997000000,0.000351182000000,0.018244698000000,0.000089651000000,0.000080169000000 +0.000018751500000,0.000707132000000,0.000037898000000,0.000013686333333,0.000070688000000,0.000038293000000,0.000383972000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000298639000000,0.000294688000000,0.000567675000000,0.018781982000000,0.000420317000000,0.000347231000000,0.018208353000000,0.000088860000000,0.000080565000000 +0.000019541500000,0.000675922000000,0.000071873000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000361848000000,0.000074639000000,0.000045799000000,0.000032367000000,0.000081750000000,0.000363429000000,0.000342490000000,0.000388713000000,0.018846376000000,0.000402145000000,0.000432564000000,0.019180993000000,0.000092416000000,0.000099923000000 +0.000018949000000,0.000720169000000,0.000038688000000,0.000012896000000,0.000056465000000,0.000037898000000,0.000386737000000,0.000109799000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000297059000000,0.000291922000000,0.000361848000000,0.019125686000000,0.000348812000000,0.000351182000000,0.018263266000000,0.000090046000000,0.000079775000000 +0.000019146500000,0.000737551000000,0.000039478000000,0.000017505000000,0.000055280000000,0.000037108000000,0.000350392000000,0.000076614000000,0.000043823000000,0.000030787000000,0.000084515000000,0.000327478000000,0.000327873000000,0.000393058000000,0.018840450000000,0.000345651000000,0.000429799000000,0.019066031000000,0.000092021000000,0.000082144000000 +0.000047196000000,0.000781799000000,0.000037502000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000351577000000,0.000076613000000,0.000043824000000,0.000030787000000,0.000081750000000,0.000294293000000,0.000292317000000,0.000347231000000,0.018559167000000,0.000348811000000,0.000352762000000,0.018535068000000,0.000092416000000,0.000082935000000 +0.000019542000000,0.000760860000000,0.000038293000000,0.000013554333333,0.000056466000000,0.000036318000000,0.000423873000000,0.000078195000000,0.000044219000000,0.000030787000000,0.000081750000000,0.000293503000000,0.000290342000000,0.000345651000000,0.019214179000000,0.000344861000000,0.000381206000000,0.018767760000000,0.000093602000000,0.000082539000000 +0.000018751500000,0.000680268000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000036713000000,0.000348416000000,0.000077009000000,0.000044614000000,0.000030786000000,0.000084120000000,0.000327083000000,0.000326687000000,0.000349206000000,0.018348204000000,0.000380416000000,0.000359873000000,0.019780697000000,0.000092417000000,0.000082935000000 +0.000019936500000,0.000784564000000,0.000038293000000,0.000013027666667,0.000056466000000,0.000087676000000,0.000386738000000,0.000076614000000,0.000044614000000,0.000030392000000,0.000082145000000,0.000296268000000,0.000295083000000,0.000348811000000,0.018917092000000,0.000347626000000,0.000383182000000,0.018480550000000,0.000160367000000,0.000082934000000 +0.000018949000000,0.000725305000000,0.000037503000000,0.000013028000000,0.000099923000000,0.000036713000000,0.000353157000000,0.000109009000000,0.000043823000000,0.000030787000000,0.000084120000000,0.000293898000000,0.000302194000000,0.000347231000000,0.019058130000000,0.000350391000000,0.000348021000000,0.018707710000000,0.000092416000000,0.000116516000000 +0.000018751000000,0.000751379000000,0.000037503000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000347231000000,0.000076614000000,0.000044614000000,0.000030392000000,0.000084120000000,0.000549898000000,0.000308120000000,0.000352762000000,0.018569043000000,0.000345651000000,0.000433355000000,0.019015463000000,0.000092416000000,0.000080564000000 +0.000019541500000,0.000730440000000,0.000038688000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000383182000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000291133000000,0.000293108000000,0.000385552000000,0.019307808000000,0.000343281000000,0.000439676000000,0.019254475000000,0.000092812000000,0.000080960000000 +0.000018554000000,0.000670787000000,0.000038293000000,0.000013554333333,0.000057256000000,0.000036317000000,0.000355528000000,0.000074244000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000306145000000,0.000423873000000,0.000345255000000,0.018376254000000,0.000344466000000,0.000398984000000,0.018779216000000,0.000091626000000,0.000080564000000 +0.000019541500000,0.000742687000000,0.000037898000000,0.000013949666667,0.000055675000000,0.000036318000000,0.000383577000000,0.000080565000000,0.000043824000000,0.000029997000000,0.000082145000000,0.000293503000000,0.000496959000000,0.000348416000000,0.020454672000000,0.000347626000000,0.000344860000000,0.018441439000000,0.000092811000000,0.000084120000000 +0.000019541500000,0.000720960000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000037108000000,0.000345256000000,0.000076614000000,0.000044613000000,0.000031972000000,0.000084120000000,0.000331034000000,0.000326688000000,0.000347231000000,0.019737240000000,0.000383182000000,0.000381996000000,0.019254475000000,0.000112170000000,0.000084120000000 +0.000034553500000,0.000769157000000,0.000037898000000,0.000013554333333,0.000057255000000,0.000037108000000,0.000348811000000,0.000075429000000,0.000044614000000,0.000031181000000,0.000084515000000,0.000293503000000,0.000292713000000,0.000398984000000,0.018685982000000,0.000345651000000,0.000351576000000,0.019600944000000,0.000092811000000,0.000083330000000 +0.000019541500000,0.000777058000000,0.000038688000000,0.000013554333333,0.000055675000000,0.000036317000000,0.000380021000000,0.000073849000000,0.000047379000000,0.000030786000000,0.000081750000000,0.000295478000000,0.000295082000000,0.000346836000000,0.019209044000000,0.000406095000000,0.000378836000000,0.019124106000000,0.000092417000000,0.000114539000000 +0.000018751500000,0.000682638000000,0.000038293000000,0.000013027666667,0.000069503000000,0.000036713000000,0.000349207000000,0.000110194000000,0.000044219000000,0.000033552000000,0.000082145000000,0.000380416000000,0.000308515000000,0.000442045000000,0.018537834000000,0.000348811000000,0.000360268000000,0.018238772000000,0.000090046000000,0.000080565000000 +0.000018751000000,0.000749008000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000387527000000,0.000074243000000,0.000044614000000,0.000031577000000,0.000083725000000,0.000296268000000,0.000295478000000,0.000581897000000,0.019566573000000,0.000344070000000,0.000349602000000,0.018497932000000,0.000090046000000,0.000081750000000 +0.000019739000000,0.000724120000000,0.000039873000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000349601000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000081750000000,0.000331428000000,0.000328268000000,0.000368170000000,0.018951068000000,0.000348416000000,0.000356712000000,0.018946327000000,0.000092021000000,0.000081749000000 +0.000019541500000,0.000752959000000,0.000038293000000,0.000013554333333,0.000056070000000,0.000036713000000,0.000647477000000,0.000074639000000,0.000046194000000,0.000032367000000,0.000082540000000,0.000342886000000,0.000291132000000,0.000365404000000,0.019762919000000,0.000344071000000,0.000352762000000,0.018599859000000,0.000092021000000,0.000080960000000 +0.000019541500000,0.000718193000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000037107000000,0.000426638000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000084516000000,0.000290737000000,0.000293502000000,0.000368564000000,0.018988599000000,0.000404120000000,0.000380812000000,0.018964105000000,0.000175774000000,0.000081354000000 +0.000018751500000,0.000677898000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000351576000000,0.000074639000000,0.000044219000000,0.000030786000000,0.000083725000000,0.000329453000000,0.000324318000000,0.000366984000000,0.020301388000000,0.000349206000000,0.000349206000000,0.018626328000000,0.000092812000000,0.000082145000000 +0.000018751500000,0.000771527000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000038688000000,0.000359478000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000082144000000,0.000294292000000,0.000295478000000,0.000386342000000,0.019039562000000,0.000350787000000,0.000383972000000,0.018863365000000,0.000092021000000,0.000127577000000 +0.000019739000000,0.000712663000000,0.000037503000000,0.000033702333333,0.000055675000000,0.000036713000000,0.000428218000000,0.000077009000000,0.000045009000000,0.000031577000000,0.000081749000000,0.000290342000000,0.000347626000000,0.000370540000000,0.020333783000000,0.000346440000000,0.000344466000000,0.018494772000000,0.000089256000000,0.000080169000000 +0.000019344000000,0.000972218000000,0.000038293000000,0.000012896000000,0.000076219000000,0.000036712000000,0.000352762000000,0.000075429000000,0.000043824000000,0.000031577000000,0.000139429000000,0.000307330000000,0.000294293000000,0.000366984000000,0.019348105000000,0.000461009000000,0.000573996000000,0.020586622000000,0.000092416000000,0.000082540000000 +0.000018751500000,0.000717798000000,0.000038293000000,0.000012896000000,0.000054885000000,0.000037898000000,0.000347626000000,0.000075824000000,0.000045009000000,0.000031182000000,0.000082145000000,0.000291922000000,0.000293897000000,0.000367379000000,0.019373784000000,0.000356712000000,0.000378046000000,0.018946722000000,0.000092417000000,0.000080959000000 +0.000018554000000,0.000711083000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000388317000000,0.000075034000000,0.000043824000000,0.000064367000000,0.000084515000000,0.000327083000000,0.000339725000000,0.000375280000000,0.019128846000000,0.000349996000000,0.000397009000000,0.019489142000000,0.000126391000000,0.000082935000000 +0.000019541500000,0.000679082000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000050540000000,0.000407280000000,0.000077009000000,0.000063972000000,0.000032367000000,0.000084120000000,0.000291528000000,0.000295478000000,0.000372515000000,0.018409834000000,0.000534885000000,0.000355132000000,0.018883118000000,0.000090046000000,0.000082935000000 +0.000019739000000,0.000719774000000,0.000038293000000,0.000013554666667,0.000055281000000,0.000037108000000,0.000415181000000,0.000076614000000,0.000059627000000,0.000030787000000,0.000082145000000,0.000291132000000,0.000295873000000,0.000376861000000,0.019550377000000,0.000347231000000,0.000432960000000,0.018908007000000,0.000089256000000,0.000083330000000 +0.000019936500000,0.000730441000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000037897000000,0.000349206000000,0.000074243000000,0.000044614000000,0.000030787000000,0.000101503000000,0.000308120000000,0.000292317000000,0.000383972000000,0.019910672000000,0.000351181000000,0.000344465000000,0.019266722000000,0.000089651000000,0.000193947000000 +0.000019541500000,0.000725700000000,0.000072268000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000347626000000,0.000109009000000,0.000044614000000,0.000031182000000,0.000083725000000,0.000295083000000,0.000291922000000,0.000378441000000,0.019507315000000,0.000344466000000,0.000380021000000,0.018872846000000,0.000092416000000,0.000087676000000 +0.000019146500000,0.000792070000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000444416000000,0.000074243000000,0.000045009000000,0.000031972000000,0.000082145000000,0.000359873000000,0.000389897000000,0.000368170000000,0.018919859000000,0.000347231000000,0.000348812000000,0.018593932000000,0.000090441000000,0.000080959000000 +0.000018949000000,0.000692120000000,0.000041849000000,0.000013554333333,0.000075429000000,0.000037898000000,0.000351577000000,0.000077009000000,0.000045009000000,0.000030786000000,0.000081750000000,0.000293503000000,0.000292712000000,0.000366194000000,0.018655168000000,0.000345651000000,0.000435330000000,0.018772896000000,0.000164713000000,0.000082145000000 +0.000029813000000,0.000704761000000,0.000039478000000,0.000012896000000,0.000058046000000,0.000037898000000,0.000439280000000,0.000074243000000,0.000045009000000,0.000031972000000,0.000082145000000,0.000295083000000,0.000296268000000,0.000370145000000,0.018681241000000,0.000348021000000,0.000345651000000,0.018760648000000,0.000092021000000,0.000082145000000 +0.000035936500000,0.000705946000000,0.000037898000000,0.000013554333333,0.000056071000000,0.000036317000000,0.000349206000000,0.000082145000000,0.000065947000000,0.000031181000000,0.000081750000000,0.000327873000000,0.000305354000000,0.000369355000000,0.019055365000000,0.000348022000000,0.000389898000000,0.019532993000000,0.000089650000000,0.000082145000000 +0.000019936500000,0.000716219000000,0.000037503000000,0.000013554666667,0.000055676000000,0.000037503000000,0.000346836000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000084515000000,0.000295873000000,0.000293897000000,0.000368564000000,0.018447760000000,0.000351182000000,0.000346836000000,0.018842031000000,0.000089651000000,0.000114540000000 +0.000026850000000,0.000681057000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000036713000000,0.000438491000000,0.000074639000000,0.000044219000000,0.000031182000000,0.000084515000000,0.000312465000000,0.000374885000000,0.000374886000000,0.018842821000000,0.000347231000000,0.000409651000000,0.018888648000000,0.000092021000000,0.000081354000000 +0.000019541500000,0.000728861000000,0.000038688000000,0.000012896000000,0.000075034000000,0.000076218000000,0.000347231000000,0.000111774000000,0.000045009000000,0.000065157000000,0.000083725000000,0.000295083000000,0.000295083000000,0.000378441000000,0.018724698000000,0.000347231000000,0.000489453000000,0.019108302000000,0.000090046000000,0.000080960000000 +0.000018949000000,0.000713058000000,0.000038292000000,0.000013686333333,0.000071083000000,0.000037503000000,0.000371330000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000082144000000,0.000293898000000,0.000296268000000,0.000344466000000,0.019905536000000,0.000345651000000,0.000384367000000,0.019411710000000,0.000092416000000,0.000080170000000 +0.000019936500000,0.000716613000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000418738000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000081354000000,0.000532515000000,0.000329058000000,0.000348416000000,0.018847957000000,0.000353947000000,0.000354737000000,0.019072747000000,0.000090046000000,0.000081750000000 +0.000018949000000,0.000718984000000,0.000037898000000,0.000013027666667,0.000077404000000,0.000037108000000,0.000349997000000,0.000074243000000,0.000045404000000,0.000031972000000,0.000084515000000,0.000312071000000,0.000295083000000,0.000347231000000,0.018562328000000,0.000346046000000,0.000386738000000,0.018854279000000,0.000092021000000,0.000081750000000 +0.000018553500000,0.000679478000000,0.000037503000000,0.000020007333333,0.000058836000000,0.000038293000000,0.000457848000000,0.000074638000000,0.000044614000000,0.000031577000000,0.000081750000000,0.000363034000000,0.000325502000000,0.000348416000000,0.019263562000000,0.000348416000000,0.000359083000000,0.018585241000000,0.000092021000000,0.000082934000000 +0.000019739000000,0.000721354000000,0.000038293000000,0.000031727333333,0.000056071000000,0.000036713000000,0.000344861000000,0.000074639000000,0.000045404000000,0.000031182000000,0.000082145000000,0.000292318000000,0.000312860000000,0.000346441000000,0.019094476000000,0.000348416000000,0.000419132000000,0.019150179000000,0.000092022000000,0.000117305000000 +0.000019146500000,0.000726095000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000398194000000,0.000077009000000,0.000045009000000,0.000031182000000,0.000086490000000,0.000295873000000,0.000310490000000,0.000345651000000,0.019750672000000,0.000346836000000,0.000397799000000,0.018498722000000,0.000092416000000,0.000080960000000 +0.000019541500000,0.000722144000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000366589000000,0.000139824000000,0.000045799000000,0.000031972000000,0.000116120000000,0.000305355000000,0.000344465000000,0.000429009000000,0.018934870000000,0.000343675000000,0.000381207000000,0.018785143000000,0.000089256000000,0.000080564000000 +0.000019739000000,0.000731231000000,0.000037898000000,0.000013027666667,0.000056070000000,0.000037108000000,0.000365404000000,0.000094392000000,0.000045405000000,0.000032367000000,0.000083725000000,0.000290737000000,0.000290737000000,0.000348021000000,0.018617637000000,0.000347626000000,0.000352761000000,0.018826229000000,0.000237799000000,0.000082935000000 +0.000019146500000,0.000668021000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000036713000000,0.000344860000000,0.000090836000000,0.000045009000000,0.000031181000000,0.000084120000000,0.000359478000000,0.000324713000000,0.000344070000000,0.018748797000000,0.000348022000000,0.000384762000000,0.019354821000000,0.000130737000000,0.000082935000000 +0.000019541500000,0.000730046000000,0.000037108000000,0.000012896000000,0.000056071000000,0.000052120000000,0.000387923000000,0.000077009000000,0.000046194000000,0.000031182000000,0.000082145000000,0.000295873000000,0.000291922000000,0.000346441000000,0.019175859000000,0.000404910000000,0.000350786000000,0.018692303000000,0.000091627000000,0.000083725000000 +0.000018751500000,0.000769156000000,0.000037503000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000374095000000,0.000075033000000,0.000045799000000,0.000033948000000,0.000082145000000,0.000294688000000,0.000293503000000,0.000346045000000,0.018685192000000,0.000344466000000,0.000347231000000,0.018617242000000,0.000093206000000,0.000084515000000 +0.000018751000000,0.000828811000000,0.000057255000000,0.000013554666667,0.000055676000000,0.000037503000000,0.000345651000000,0.000076219000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000361849000000,0.000329453000000,0.000359873000000,0.018525587000000,0.000347231000000,0.000347626000000,0.019216944000000,0.000095182000000,0.000097947000000 +0.000019541500000,0.000720564000000,0.000038688000000,0.000013554666667,0.000056071000000,0.000036713000000,0.000346836000000,0.000078589000000,0.000045799000000,0.000031972000000,0.000084515000000,0.000296663000000,0.000296664000000,0.000351971000000,0.018518475000000,0.000357897000000,0.000346440000000,0.018860204000000,0.000092812000000,0.000080959000000 +0.000019739000000,0.000672761000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000349206000000,0.000076614000000,0.000043824000000,0.000031972000000,0.000117700000000,0.000326293000000,0.000295478000000,0.000344861000000,0.018788303000000,0.000350392000000,0.000390293000000,0.018610921000000,0.000093996000000,0.000084515000000 +0.000019739000000,0.000761651000000,0.000037503000000,0.000037258000000,0.000056070000000,0.000037108000000,0.000379626000000,0.000077009000000,0.000044614000000,0.000031576000000,0.000084120000000,0.000291132000000,0.000306935000000,0.000354737000000,0.018501883000000,0.000348021000000,0.000351182000000,0.019800451000000,0.000090046000000,0.000080960000000 +0.000018751000000,0.000721354000000,0.000037503000000,0.000031727333333,0.000056070000000,0.000036713000000,0.000349997000000,0.000076614000000,0.000045009000000,0.000031971000000,0.000083725000000,0.000308120000000,0.000291527000000,0.000354342000000,0.019007562000000,0.000349997000000,0.000380812000000,0.019058130000000,0.000090046000000,0.000082540000000 +0.000018751500000,0.000716218000000,0.000037503000000,0.000018690000000,0.000056860000000,0.000036713000000,0.000389108000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000373700000000,0.000359478000000,0.000351971000000,0.018668600000000,0.000349207000000,0.000347231000000,0.019051414000000,0.000093206000000,0.000083330000000 +0.000019541500000,0.000716613000000,0.000039083000000,0.000013027666667,0.000055675000000,0.000036317000000,0.000346046000000,0.000074244000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000293503000000,0.000291132000000,0.000354342000000,0.019502179000000,0.000347231000000,0.000384762000000,0.018565883000000,0.000089651000000,0.000081355000000 +0.000019541500000,0.000690144000000,0.000038689000000,0.000013554333333,0.000056466000000,0.000037898000000,0.000352367000000,0.000075823000000,0.000045404000000,0.000031181000000,0.000084120000000,0.000385157000000,0.000292713000000,0.000357502000000,0.018273143000000,0.000353947000000,0.000466145000000,0.018192945000000,0.000142589000000,0.000082540000000 +0.000018751500000,0.000711478000000,0.000037898000000,0.000012896000000,0.000125602000000,0.000071479000000,0.000386737000000,0.000080565000000,0.000046589000000,0.000031577000000,0.000085306000000,0.000296268000000,0.000328663000000,0.000355527000000,0.019879462000000,0.000344070000000,0.000435330000000,0.018821488000000,0.000093997000000,0.000082540000000 +0.000018554000000,0.000719774000000,0.000039478000000,0.000012896000000,0.000057651000000,0.000037108000000,0.000347626000000,0.000074639000000,0.000045404000000,0.000031182000000,0.000117305000000,0.000295083000000,0.000297453000000,0.000346836000000,0.018683611000000,0.000349206000000,0.000347231000000,0.019113438000000,0.000091231000000,0.000080959000000 +0.000019739000000,0.000754145000000,0.000087675000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000399379000000,0.000075428000000,0.000044614000000,0.000083726000000,0.000084120000000,0.000324712000000,0.000292712000000,0.000472466000000,0.019188500000000,0.000349602000000,0.000393059000000,0.018759858000000,0.000093207000000,0.000083330000000 +0.000020134000000,0.000679872000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000038293000000,0.000346441000000,0.000074244000000,0.000044614000000,0.000063577000000,0.000082540000000,0.000290342000000,0.000294688000000,0.000349602000000,0.018771710000000,0.000348416000000,0.000349206000000,0.019195611000000,0.000090441000000,0.000083330000000 +0.000019541500000,0.000688959000000,0.000038688000000,0.000013027666667,0.000056070000000,0.000036713000000,0.000368564000000,0.000074244000000,0.000044614000000,0.000033157000000,0.000084515000000,0.000359873000000,0.000293502000000,0.000348812000000,0.018525982000000,0.000345255000000,0.000418737000000,0.018347810000000,0.000092812000000,0.000082145000000 +0.000019541500000,0.000767576000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000381996000000,0.000074243000000,0.000045405000000,0.000045404000000,0.000081750000000,0.000295873000000,0.000474441000000,0.000347231000000,0.018482525000000,0.000474836000000,0.000346441000000,0.018769340000000,0.000122836000000,0.000080960000000 +0.000019344000000,0.000704367000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000037108000000,0.000350391000000,0.000075429000000,0.000116120000000,0.000030787000000,0.000082145000000,0.000292317000000,0.000311676000000,0.000408465000000,0.019758179000000,0.000345651000000,0.000389898000000,0.018556797000000,0.000090046000000,0.000094787000000 +0.000018751500000,0.000719378000000,0.000038293000000,0.000013554666667,0.000055675000000,0.000036712000000,0.000382787000000,0.000074243000000,0.000094392000000,0.000030787000000,0.000083725000000,0.000374491000000,0.000343675000000,0.000348416000000,0.018755908000000,0.000347231000000,0.000449551000000,0.019266327000000,0.000091626000000,0.000080959000000 +0.000019541500000,0.000728466000000,0.000037898000000,0.000013554333333,0.000090046000000,0.000038688000000,0.000345651000000,0.000076614000000,0.000060416000000,0.000030787000000,0.000155231000000,0.000292318000000,0.000342491000000,0.000346046000000,0.019308993000000,0.000386342000000,0.000378441000000,0.019441734000000,0.000091626000000,0.000080960000000 +0.000018751500000,0.000702391000000,0.000038293000000,0.000013554666667,0.000055280000000,0.000037108000000,0.000406095000000,0.000076614000000,0.000044219000000,0.000051330000000,0.000081750000000,0.000353157000000,0.000296268000000,0.000347626000000,0.018422871000000,0.000349206000000,0.000348021000000,0.020080549000000,0.000090441000000,0.000081354000000 +0.000018553500000,0.000727280000000,0.000038293000000,0.000013027666667,0.000056070000000,0.000056466000000,0.000349206000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000084515000000,0.000295478000000,0.000321552000000,0.000384367000000,0.019202327000000,0.000403329000000,0.000398984000000,0.019398278000000,0.000092022000000,0.000082935000000 +0.000019541500000,0.000707527000000,0.000058441000000,0.000012896000000,0.000055280000000,0.000122046000000,0.000345650000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000082145000000,0.000293503000000,0.000293898000000,0.000347231000000,0.018775266000000,0.000346836000000,0.000345255000000,0.018438673000000,0.000090046000000,0.000082145000000 +0.000019541500000,0.000724909000000,0.000039083000000,0.000031595666667,0.000055281000000,0.000052910000000,0.000378836000000,0.000077404000000,0.000044219000000,0.000031972000000,0.000084515000000,0.000365798000000,0.000357898000000,0.000346836000000,0.018533883000000,0.000353157000000,0.000359873000000,0.018984648000000,0.000107033000000,0.000116910000000 +0.000018554000000,0.000679873000000,0.000037503000000,0.000013027666667,0.000056466000000,0.000039083000000,0.000349996000000,0.000074243000000,0.000051725000000,0.000031576000000,0.000082145000000,0.000296268000000,0.000294688000000,0.000344465000000,0.019266722000000,0.000498540000000,0.000349206000000,0.018732994000000,0.000090441000000,0.000099527000000 +0.000019936500000,0.000747033000000,0.000041848000000,0.000012896000000,0.000055676000000,0.000049749000000,0.000443626000000,0.000077404000000,0.000044219000000,0.000031577000000,0.000081354000000,0.000332613000000,0.000290737000000,0.000347231000000,0.019096451000000,0.000349206000000,0.000356713000000,0.019000450000000,0.000090046000000,0.000082539000000 +0.000025467500000,0.000726490000000,0.000037503000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000348812000000,0.000107429000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000293502000000,0.000398194000000,0.000381601000000,0.018837291000000,0.000396219000000,0.000367379000000,0.019389586000000,0.000092812000000,0.000082935000000 +0.000018553500000,0.000715428000000,0.000037898000000,0.000013686000000,0.000057256000000,0.000037503000000,0.000361058000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000083725000000,0.000291132000000,0.000295873000000,0.000379231000000,0.021498424000000,0.000419923000000,0.000348021000000,0.018919068000000,0.000092416000000,0.000084120000000 +0.000019541500000,0.000681453000000,0.000038688000000,0.000013027666667,0.000069503000000,0.000038293000000,0.000384762000000,0.000077009000000,0.000046589000000,0.000031577000000,0.000083725000000,0.000359478000000,0.000368960000000,0.000347231000000,0.020705931000000,0.000353157000000,0.000566095000000,0.019312549000000,0.000092811000000,0.000080960000000 +0.000018751500000,0.000745058000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000349602000000,0.000078984000000,0.000044218000000,0.000031577000000,0.000084515000000,0.000291528000000,0.000295083000000,0.000345651000000,0.019999562000000,0.000348416000000,0.000364219000000,0.018748797000000,0.000123231000000,0.000081355000000 +0.000019541500000,0.000707527000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000489848000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000081750000000,0.000294688000000,0.000294293000000,0.000394244000000,0.020305339000000,0.000385157000000,0.000345255000000,0.020679857000000,0.000090441000000,0.000116910000000 +0.000019542000000,0.000754144000000,0.000037503000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000364613000000,0.000076614000000,0.000045404000000,0.000051330000000,0.000084120000000,0.000577552000000,0.000341305000000,0.000348811000000,0.020151660000000,0.000345256000000,0.000351972000000,0.018709685000000,0.000091626000000,0.000084910000000 +0.000018751500000,0.000739132000000,0.000107034000000,0.000012896000000,0.000056070000000,0.000037898000000,0.000351182000000,0.000077404000000,0.000043823000000,0.000031182000000,0.000104268000000,0.000331034000000,0.000298244000000,0.000345650000000,0.019004401000000,0.000382391000000,0.000632465000000,0.019113438000000,0.000091626000000,0.000083725000000 +0.000019541500000,0.000738341000000,0.000039083000000,0.000029751666667,0.000055676000000,0.000037108000000,0.000392267000000,0.000074638000000,0.000044218000000,0.000030787000000,0.000082145000000,0.000291527000000,0.000360664000000,0.000346441000000,0.019674820000000,0.000348021000000,0.000417157000000,0.020553437000000,0.000093601000000,0.000080960000000 +0.000018554000000,0.000682243000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000349601000000,0.000077009000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000292317000000,0.000295083000000,0.000351576000000,0.018955414000000,0.000378836000000,0.000353551000000,0.019366278000000,0.000092416000000,0.000081354000000 +0.000018751500000,0.000727280000000,0.000037898000000,0.000013554666667,0.000057256000000,0.000037898000000,0.000389503000000,0.000076614000000,0.000046195000000,0.000030787000000,0.000083725000000,0.000323527000000,0.000298243000000,0.000368959000000,0.019331512000000,0.000350787000000,0.000370144000000,0.019755413000000,0.000091231000000,0.000080565000000 +0.000047196000000,0.000954045000000,0.000037898000000,0.000013554666667,0.000056466000000,0.000036713000000,0.000351972000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000291527000000,0.000380416000000,0.000353947000000,0.019990475000000,0.000349207000000,0.000344465000000,0.018616846000000,0.000163133000000,0.000082935000000 +0.000019541500000,0.000719774000000,0.000038688000000,0.000012896000000,0.000057256000000,0.000037898000000,0.000359083000000,0.000074243000000,0.000044219000000,0.000032762000000,0.000081750000000,0.000295478000000,0.000294687000000,0.000362243000000,0.019401043000000,0.000346046000000,0.000483923000000,0.018953834000000,0.000093601000000,0.000115330000000 +0.000019739000000,0.000717009000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000037502000000,0.000380416000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000084910000000,0.000310095000000,0.000363824000000,0.000355528000000,0.021054375000000,0.000354343000000,0.000348416000000,0.018332007000000,0.000089651000000,0.000080170000000 +0.000018554000000,0.000711477000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000050935000000,0.000357503000000,0.000077009000000,0.000045799000000,0.000031577000000,0.000150885000000,0.000294293000000,0.000290737000000,0.000358688000000,0.019357981000000,0.000349207000000,0.000350392000000,0.018988994000000,0.000092021000000,0.000081750000000 +0.000018554000000,0.000679873000000,0.000042243000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000387132000000,0.000075428000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000346836000000,0.000290342000000,0.000344070000000,0.019691808000000,0.000353947000000,0.000345255000000,0.018542970000000,0.000090441000000,0.000080959000000 +0.000019936500000,0.000746638000000,0.000037503000000,0.000013027666667,0.000057651000000,0.000037898000000,0.000346046000000,0.000077009000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000291923000000,0.000744663000000,0.000350391000000,0.019770030000000,0.000349207000000,0.000348811000000,0.018295266000000,0.000093207000000,0.000080565000000 +0.000019541500000,0.000718589000000,0.000037898000000,0.000012896000000,0.000057651000000,0.000038689000000,0.000347231000000,0.000077009000000,0.000044218000000,0.000032367000000,0.000085305000000,0.000291133000000,0.000345255000000,0.000347626000000,0.018865340000000,0.000349996000000,0.000380416000000,0.019245389000000,0.000108614000000,0.000082935000000 +0.000018554000000,0.000717799000000,0.000038688000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000393058000000,0.000075824000000,0.000045404000000,0.000031577000000,0.000081750000000,0.000295478000000,0.000297848000000,0.000382391000000,0.019382080000000,0.000346835000000,0.000356713000000,0.019027315000000,0.000092812000000,0.000080169000000 +0.000018554000000,0.000677107000000,0.000037898000000,0.000013028000000,0.000130737000000,0.000036712000000,0.000361849000000,0.000074639000000,0.000045799000000,0.000031972000000,0.000081749000000,0.000292317000000,0.000292317000000,0.000352762000000,0.019258030000000,0.000346441000000,0.000403329000000,0.018589192000000,0.000090046000000,0.000116120000000 +0.000019936500000,0.000694095000000,0.000038293000000,0.000013554333333,0.000162738000000,0.000038293000000,0.000384761000000,0.000076614000000,0.000045009000000,0.000030786000000,0.000084120000000,0.000330243000000,0.000361058000000,0.000349601000000,0.019935562000000,0.000349601000000,0.000402935000000,0.018864945000000,0.000088861000000,0.000082540000000 +0.000027047500000,0.000767971000000,0.000037898000000,0.000012896000000,0.000096367000000,0.000037898000000,0.000346046000000,0.000076219000000,0.000045799000000,0.000032763000000,0.000084515000000,0.000294687000000,0.000294688000000,0.000344860000000,0.020231857000000,0.000384762000000,0.000384367000000,0.018772500000000,0.000090836000000,0.000082145000000 +0.000019739000000,0.000714638000000,0.000038293000000,0.000013554333333,0.000059626000000,0.000037897000000,0.000401355000000,0.000075824000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000294688000000,0.000338539000000,0.000347231000000,0.019916994000000,0.000347231000000,0.000355922000000,0.020103857000000,0.000092417000000,0.000082540000000 +0.000019541500000,0.000758885000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000383576000000,0.000075033000000,0.000045009000000,0.000031577000000,0.000082145000000,0.000347626000000,0.000290737000000,0.000348021000000,0.020007067000000,0.000351182000000,0.000414392000000,0.018674921000000,0.000125996000000,0.000082935000000 +0.000018554000000,0.000673552000000,0.000038293000000,0.000013554333333,0.000105454000000,0.000078194000000,0.000348021000000,0.000074244000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000291133000000,0.000295477000000,0.000347231000000,0.020223560000000,0.000361058000000,0.000348021000000,0.018518476000000,0.000092812000000,0.000080565000000 +0.000018751500000,0.000727280000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000382786000000,0.000078194000000,0.000044219000000,0.000031577000000,0.000085305000000,0.000329848000000,0.000329058000000,0.000346836000000,0.019378129000000,0.000347627000000,0.000384366000000,0.018761833000000,0.000090836000000,0.000082935000000 +0.000019541500000,0.000762836000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000350392000000,0.000080564000000,0.000044219000000,0.000031181000000,0.000082145000000,0.000293108000000,0.000321947000000,0.000344860000000,0.019387216000000,0.000383182000000,0.000346836000000,0.018564698000000,0.000092021000000,0.000183280000000 +0.000018553500000,0.000758489000000,0.000038688000000,0.000020270333333,0.000055676000000,0.000037503000000,0.000350786000000,0.000076614000000,0.000044614000000,0.000030392000000,0.000131133000000,0.000292713000000,0.000313651000000,0.000347626000000,0.019409735000000,0.000348021000000,0.000352367000000,0.018864155000000,0.000092416000000,0.000103479000000 +0.000018751500000,0.000717009000000,0.000037898000000,0.000017505000000,0.000056071000000,0.000037898000000,0.000387132000000,0.000074243000000,0.000045799000000,0.000046590000000,0.000085700000000,0.000327478000000,0.000293108000000,0.000346835000000,0.019339413000000,0.000351971000000,0.000350786000000,0.018622772000000,0.000089651000000,0.000085700000000 +0.000019541500000,0.000682638000000,0.000039478000000,0.000012896000000,0.000055281000000,0.000037502000000,0.000355132000000,0.000076614000000,0.000044219000000,0.000029996000000,0.000084120000000,0.000293898000000,0.000294688000000,0.000344466000000,0.019348500000000,0.000344071000000,0.000350787000000,0.019397093000000,0.000091626000000,0.000116120000000 +0.000019541500000,0.000764416000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000037897000000,0.000417157000000,0.000074639000000,0.000045009000000,0.000050540000000,0.000081750000000,0.000291133000000,0.000326293000000,0.000346046000000,0.019480055000000,0.000350787000000,0.000361059000000,0.019154525000000,0.000089651000000,0.000086885000000 +0.000035541500000,0.001139329000000,0.000037898000000,0.000013027666667,0.000058837000000,0.000037898000000,0.000351577000000,0.000089256000000,0.000046590000000,0.000033947000000,0.000082540000000,0.000341305000000,0.000293502000000,0.000346045000000,0.018969241000000,0.000359478000000,0.000347231000000,0.018692302000000,0.000090046000000,0.000141799000000 +0.000020134500000,0.000683823000000,0.000037898000000,0.000013027666667,0.000089651000000,0.000036713000000,0.000350787000000,0.000074244000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000293107000000,0.000293502000000,0.000476416000000,0.019642820000000,0.000349996000000,0.000554638000000,0.019469389000000,0.000090046000000,0.000082539000000 +0.000018554000000,0.000711082000000,0.000039874000000,0.000012896000000,0.000057256000000,0.000037503000000,0.000473256000000,0.000074244000000,0.000045009000000,0.000032367000000,0.000082539000000,0.000328663000000,0.000325898000000,0.000349207000000,0.019207858000000,0.000359873000000,0.000355527000000,0.018579315000000,0.000093206000000,0.000081750000000 +0.000018554000000,0.000712268000000,0.000038293000000,0.000013423000000,0.000055676000000,0.000071873000000,0.000468910000000,0.000076218000000,0.000044219000000,0.000031182000000,0.000210145000000,0.000293898000000,0.000298243000000,0.000345651000000,0.019788599000000,0.000352762000000,0.000351971000000,0.018633439000000,0.000090046000000,0.000082935000000 +0.000019541500000,0.000707527000000,0.000051725000000,0.000013423000000,0.000055676000000,0.000036713000000,0.000348811000000,0.000078984000000,0.000044219000000,0.000031577000000,0.000103083000000,0.000292318000000,0.000327083000000,0.000347231000000,0.019405783000000,0.000347626000000,0.000347231000000,0.018519661000000,0.000093206000000,0.000082540000000 +0.000018554000000,0.000691330000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000417157000000,0.000078194000000,0.000043823000000,0.000030392000000,0.000081749000000,0.000346045000000,0.000294293000000,0.000354342000000,0.018892204000000,0.000351972000000,0.000418737000000,0.018977932000000,0.000159577000000,0.000080565000000 +0.000038109500000,0.000720959000000,0.000037898000000,0.000023430666667,0.000056466000000,0.000036712000000,0.000348416000000,0.000075033000000,0.000044219000000,0.000031576000000,0.000084121000000,0.000299034000000,0.000290737000000,0.000351182000000,0.020223166000000,0.000355527000000,0.000351181000000,0.018876797000000,0.000090046000000,0.000081355000000 +0.000019739000000,0.000767181000000,0.000059231000000,0.000012896000000,0.000057651000000,0.000036713000000,0.000474441000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000082144000000,0.000311281000000,0.000323922000000,0.000354738000000,0.019256055000000,0.000345651000000,0.000384762000000,0.018598673000000,0.000090046000000,0.000152466000000 +0.000018751500000,0.000702786000000,0.000054096000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000378441000000,0.000077404000000,0.000044614000000,0.000031181000000,0.000122441000000,0.000293502000000,0.000290737000000,0.000361058000000,0.019559068000000,0.000349601000000,0.000352762000000,0.019577636000000,0.000090046000000,0.000083330000000 +0.000019541500000,0.000683033000000,0.000038688000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000348416000000,0.000077009000000,0.000044219000000,0.000032763000000,0.000082145000000,0.000290737000000,0.000294688000000,0.000355923000000,0.020483116000000,0.000379231000000,0.000419528000000,0.018958574000000,0.000092811000000,0.000082540000000 +0.000018751500000,0.000684219000000,0.000037898000000,0.000013554666667,0.000055676000000,0.000056861000000,0.000420712000000,0.000075034000000,0.000046194000000,0.000032367000000,0.000082145000000,0.000328268000000,0.000323132000000,0.000346836000000,0.020306129000000,0.000348811000000,0.000359083000000,0.019105142000000,0.000089256000000,0.000082935000000 +0.000018751000000,0.000717009000000,0.000037897000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000350391000000,0.000076613000000,0.000044614000000,0.000030787000000,0.000082144000000,0.000292713000000,0.000292318000000,0.000344466000000,0.020522228000000,0.000349601000000,0.000383182000000,0.018605785000000,0.000092811000000,0.000082540000000 +0.000019541500000,0.000813403000000,0.000041454000000,0.000013686000000,0.000057256000000,0.000037898000000,0.000357107000000,0.000085305000000,0.000043824000000,0.000031577000000,0.000081355000000,0.000290737000000,0.000326293000000,0.000350391000000,0.020900301000000,0.000421502000000,0.000347231000000,0.018559562000000,0.000125207000000,0.000080565000000 +0.000019541500000,0.000714243000000,0.000072664000000,0.000012896000000,0.000056070000000,0.000037898000000,0.000421108000000,0.000076219000000,0.000045404000000,0.000031182000000,0.000082540000000,0.000329058000000,0.000292317000000,0.000347626000000,0.019653092000000,0.000400959000000,0.000415577000000,0.018833340000000,0.000094787000000,0.000102293000000 +0.000019541500000,0.000693305000000,0.000037898000000,0.000012896000000,0.000057651000000,0.000036318000000,0.000349602000000,0.000074244000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000292318000000,0.000294688000000,0.000348021000000,0.018936451000000,0.000350391000000,0.000348811000000,0.018440254000000,0.000092021000000,0.000098738000000 +0.000018554000000,0.000687774000000,0.000038688000000,0.000020270333333,0.000056861000000,0.000036712000000,0.000403330000000,0.000077009000000,0.000044614000000,0.000032762000000,0.000145354000000,0.000327478000000,0.000327478000000,0.000352761000000,0.020637585000000,0.000347626000000,0.000371725000000,0.019450030000000,0.000092811000000,0.000080959000000 +0.000018949000000,0.000714243000000,0.000038293000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000346046000000,0.000076219000000,0.000045009000000,0.000031577000000,0.000097552000000,0.000291527000000,0.000291922000000,0.000356317000000,0.019642820000000,0.000349207000000,0.000344465000000,0.020344055000000,0.000092417000000,0.000082935000000 +0.000019541500000,0.000752564000000,0.000041453000000,0.000012896000000,0.000056860000000,0.000036713000000,0.000349207000000,0.000077799000000,0.000058046000000,0.000050935000000,0.000082539000000,0.000291923000000,0.000291922000000,0.000344466000000,0.019325586000000,0.000383181000000,0.000382787000000,0.019212599000000,0.000093602000000,0.000080960000000 +0.000019936500000,0.000723330000000,0.000037503000000,0.000013027666667,0.000070688000000,0.000037107000000,0.000380021000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000082539000000,0.000403725000000,0.000292318000000,0.000347626000000,0.019782672000000,0.000347231000000,0.000352367000000,0.019713932000000,0.000092812000000,0.000083330000000 +0.000018751500000,0.000678292000000,0.000037502000000,0.000013027666667,0.000055675000000,0.000036712000000,0.000356712000000,0.000079380000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000298243000000,0.000292713000000,0.000346836000000,0.019015463000000,0.000358687000000,0.000345256000000,0.018759069000000,0.000092021000000,0.000082935000000 +0.000018751500000,0.000720169000000,0.000037898000000,0.000013817666667,0.000056071000000,0.000036713000000,0.000603626000000,0.000074639000000,0.000044614000000,0.000032367000000,0.000084120000000,0.000327873000000,0.000329848000000,0.000347626000000,0.019925290000000,0.000348416000000,0.000359873000000,0.018932895000000,0.000092811000000,0.000144169000000 +0.000019541500000,0.000730441000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000417157000000,0.000077009000000,0.000045800000000,0.000030787000000,0.000102293000000,0.000290737000000,0.000294688000000,0.000380416000000,0.021817238000000,0.000344465000000,0.000349207000000,0.019631759000000,0.000091231000000,0.000082540000000 +0.000019739000000,0.000713057000000,0.000037502000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000356712000000,0.000077800000000,0.000044614000000,0.000030391000000,0.000084120000000,0.000297058000000,0.000290737000000,0.000345255000000,0.020987609000000,0.000347626000000,0.000390293000000,0.018688353000000,0.000090046000000,0.000081750000000 +0.000019541500000,0.000722540000000,0.000039478000000,0.000013554666667,0.000055675000000,0.000051330000000,0.000389897000000,0.000075034000000,0.000044219000000,0.000031182000000,0.000082144000000,0.000327478000000,0.000331033000000,0.000459428000000,0.020065931000000,0.000347231000000,0.000352367000000,0.019033636000000,0.000090046000000,0.000083725000000 +0.000019541500000,0.000685403000000,0.000037503000000,0.000013554666667,0.000056070000000,0.000036713000000,0.000348811000000,0.000076614000000,0.000047379000000,0.000030787000000,0.000084120000000,0.000296663000000,0.000297848000000,0.000346441000000,0.020434129000000,0.000351182000000,0.000429798000000,0.018324105000000,0.000127972000000,0.000080564000000 +0.000018751500000,0.000833552000000,0.000037898000000,0.000019875666667,0.000056465000000,0.000037503000000,0.000352762000000,0.000077799000000,0.000044614000000,0.000031972000000,0.000081749000000,0.000291922000000,0.000325502000000,0.000345255000000,0.019855364000000,0.000346441000000,0.000348811000000,0.018597488000000,0.000089255000000,0.000080170000000 +0.000018751500000,0.000755329000000,0.000038293000000,0.000018295000000,0.000076219000000,0.000037898000000,0.000391873000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000416367000000,0.000293503000000,0.000346441000000,0.019282524000000,0.000346440000000,0.000419527000000,0.022099313000000,0.000092416000000,0.000099132000000 +0.000019936500000,0.000744268000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000036713000000,0.000353157000000,0.000074639000000,0.000045799000000,0.000030787000000,0.000084515000000,0.000292317000000,0.000292318000000,0.000347231000000,0.019175068000000,0.000348021000000,0.000344861000000,0.020967857000000,0.000090046000000,0.000081750000000 +0.000018949000000,0.000756119000000,0.000039478000000,0.000013686000000,0.000055281000000,0.000037502000000,0.000380812000000,0.000074244000000,0.000044614000000,0.000030787000000,0.000118095000000,0.000330243000000,0.000326688000000,0.000356712000000,0.019550377000000,0.000383972000000,0.000439676000000,0.019050228000000,0.000093207000000,0.000081355000000 +0.000019146500000,0.000765997000000,0.000037898000000,0.000013686000000,0.000055676000000,0.000037107000000,0.000347231000000,0.000076614000000,0.000044614000000,0.000032367000000,0.000084515000000,0.000293502000000,0.000291528000000,0.000349602000000,0.019645586000000,0.000344070000000,0.000365799000000,0.018729439000000,0.000090441000000,0.000083330000000 +0.000027640500000,0.000675527000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000348416000000,0.000077009000000,0.000044219000000,0.000031577000000,0.000082540000000,0.000293898000000,0.000334194000000,0.000382391000000,0.019104747000000,0.000348021000000,0.000381996000000,0.019394327000000,0.000092416000000,0.000082540000000 +0.000019542000000,0.000760070000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000036712000000,0.000380812000000,0.000078589000000,0.000044219000000,0.000031182000000,0.000084910000000,0.000305749000000,0.000297453000000,0.000347231000000,0.020551462000000,0.000347231000000,0.000353552000000,0.018411020000000,0.000107428000000,0.000082540000000 +0.000018751500000,0.000756515000000,0.000058836000000,0.000013554666667,0.000055675000000,0.000036713000000,0.000351577000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000084910000000,0.000295873000000,0.000293503000000,0.000388713000000,0.019199957000000,0.000344071000000,0.000445997000000,0.018556007000000,0.000088861000000,0.000084515000000 +0.000020134000000,0.001123922000000,0.000038688000000,0.000013554666667,0.000055676000000,0.000071478000000,0.000383182000000,0.000077008000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000361849000000,0.000324712000000,0.000351576000000,0.019798475000000,0.000502490000000,0.000547527000000,0.018918673000000,0.000091626000000,0.000137849000000 +0.000018751500000,0.000777848000000,0.000038293000000,0.000012896333333,0.000056071000000,0.000036712000000,0.000348416000000,0.000074244000000,0.000046984000000,0.000031182000000,0.000081749000000,0.000290737000000,0.000291923000000,0.000354342000000,0.019819808000000,0.000348416000000,0.000346046000000,0.018627118000000,0.000092021000000,0.000082935000000 +0.000018751500000,0.000765996000000,0.000037503000000,0.000029620333333,0.000070293000000,0.000037898000000,0.000350786000000,0.000076614000000,0.000045800000000,0.000031577000000,0.000118096000000,0.000290737000000,0.000290342000000,0.000361453000000,0.019685882000000,0.000348416000000,0.000348416000000,0.019499414000000,0.000092811000000,0.000080170000000 +0.000020134500000,0.000766786000000,0.000040268000000,0.000013554333333,0.000055281000000,0.000037108000000,0.000404910000000,0.000076614000000,0.000044219000000,0.000030786000000,0.000084120000000,0.000327478000000,0.000826045000000,0.000356317000000,0.020676696000000,0.000447577000000,0.000383971000000,0.018488056000000,0.000089651000000,0.000081354000000 +0.000018949000000,0.000670391000000,0.000037503000000,0.000013027666667,0.000056861000000,0.000036712000000,0.000355132000000,0.000074639000000,0.000044614000000,0.000031182000000,0.000084121000000,0.000294688000000,0.000644317000000,0.000347231000000,0.019540105000000,0.000346046000000,0.000346046000000,0.019555907000000,0.000170638000000,0.000080959000000 +0.000019739000000,0.001117601000000,0.000039083000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000419132000000,0.000080169000000,0.000044219000000,0.000031972000000,0.000081749000000,0.000325897000000,0.000385157000000,0.000415972000000,0.019661388000000,0.000389107000000,0.000383182000000,0.018935266000000,0.000098737000000,0.000082935000000 +0.000029615500000,0.000686588000000,0.000039083000000,0.000012896000000,0.000055676000000,0.000036318000000,0.000355133000000,0.000076613000000,0.000044218000000,0.000033157000000,0.000082540000000,0.000293897000000,0.000311676000000,0.000349206000000,0.019769240000000,0.000348812000000,0.000346440000000,0.019040352000000,0.000139033000000,0.000084911000000 +0.000018751500000,0.000716219000000,0.000038688000000,0.000012896000000,0.000058046000000,0.000036713000000,0.000345255000000,0.000075034000000,0.000044614000000,0.000030787000000,0.000082144000000,0.000292317000000,0.000312071000000,0.000349206000000,0.019859710000000,0.000346836000000,0.000401749000000,0.019292006000000,0.000099528000000,0.000097552000000 +0.000019541500000,0.000713058000000,0.000038293000000,0.000015134666667,0.000056071000000,0.000037107000000,0.000383972000000,0.000109404000000,0.000046589000000,0.000031577000000,0.000084516000000,0.000361058000000,0.000370540000000,0.000347626000000,0.019402624000000,0.000433750000000,0.000353157000000,0.018618426000000,0.000176564000000,0.000080960000000 +0.000018553500000,0.000715428000000,0.000052515000000,0.000012896000000,0.000076613000000,0.000036713000000,0.000350391000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000152861000000,0.000293503000000,0.000308120000000,0.000352367000000,0.019374179000000,0.000346835000000,0.000384367000000,0.018749982000000,0.000113355000000,0.000080960000000 +0.000018949000000,0.000682638000000,0.000038293000000,0.000013027666667,0.000133898000000,0.000057651000000,0.000382391000000,0.000074244000000,0.000045009000000,0.000032762000000,0.000082145000000,0.000291132000000,0.000369749000000,0.000348811000000,0.019967956000000,0.000397404000000,0.000355132000000,0.018495957000000,0.000098738000000,0.000080169000000 +0.000019541500000,0.000675528000000,0.000037503000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000345650000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000082144000000,0.000306935000000,0.000312861000000,0.000344861000000,0.019330327000000,0.000352367000000,0.000388712000000,0.018553636000000,0.000098738000000,0.000082935000000 +0.000020134000000,0.000769947000000,0.000037898000000,0.000017505000000,0.000055281000000,0.000037108000000,0.000360663000000,0.000074244000000,0.000045009000000,0.000032367000000,0.000084120000000,0.000293898000000,0.000294688000000,0.000348021000000,0.019839166000000,0.000345256000000,0.000410441000000,0.019489537000000,0.000097553000000,0.000080960000000 +0.000019739000000,0.000768367000000,0.000038688000000,0.000013159333333,0.000055676000000,0.000036713000000,0.000348811000000,0.000074638000000,0.000044219000000,0.000031577000000,0.000088070000000,0.000327083000000,0.000293108000000,0.000346836000000,0.019034426000000,0.000430589000000,0.000368169000000,0.018858624000000,0.000101108000000,0.000081354000000 +0.000019146500000,0.000711082000000,0.000038688000000,0.000013554333333,0.000055280000000,0.000037107000000,0.000352762000000,0.000074244000000,0.000043823000000,0.000032367000000,0.000084120000000,0.000292317000000,0.000295083000000,0.000348811000000,0.019104352000000,0.000345651000000,0.000350787000000,0.019301093000000,0.000095576000000,0.000152861000000 +0.000018553500000,0.000678293000000,0.000037898000000,0.000013554333333,0.000057256000000,0.000037503000000,0.000401750000000,0.000078194000000,0.000044219000000,0.000031972000000,0.000082540000000,0.000291132000000,0.000370934000000,0.000346046000000,0.019214969000000,0.000383577000000,0.000347231000000,0.018665834000000,0.000131527000000,0.000080960000000 +0.000019541500000,0.000692120000000,0.000037502000000,0.000013554666667,0.000055676000000,0.000037898000000,0.000406095000000,0.000077404000000,0.000045009000000,0.000050540000000,0.000084910000000,0.000323922000000,0.000297848000000,0.000390293000000,0.019707611000000,0.000348021000000,0.000385157000000,0.019051018000000,0.000098737000000,0.000080564000000 +0.000019541500000,0.000744663000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000348021000000,0.000075823000000,0.000061601000000,0.000031577000000,0.000084120000000,0.000290342000000,0.000293107000000,0.000523428000000,0.019131216000000,0.000353157000000,0.000350391000000,0.018614476000000,0.000099133000000,0.000082935000000 +0.000018751500000,0.000732020000000,0.000037898000000,0.000012896000000,0.000054886000000,0.000037898000000,0.000349206000000,0.000075428000000,0.000043824000000,0.000030786000000,0.000086096000000,0.000332614000000,0.000353947000000,0.000348021000000,0.018872055000000,0.000388317000000,0.000384367000000,0.018391266000000,0.000095577000000,0.000081355000000 +0.000018751500000,0.000726095000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000355527000000,0.000074639000000,0.000045009000000,0.000030392000000,0.000082540000000,0.000311675000000,0.000291527000000,0.000344070000000,0.019175858000000,0.000346441000000,0.000347626000000,0.019073932000000,0.000197898000000,0.000082935000000 +0.000019542000000,0.000679478000000,0.000038293000000,0.000013554333333,0.000056861000000,0.000037898000000,0.000567280000000,0.000077009000000,0.000045404000000,0.000031972000000,0.000084120000000,0.000304169000000,0.000329059000000,0.000383576000000,0.018925389000000,0.000392663000000,0.000380416000000,0.018655167000000,0.000099132000000,0.000102293000000 +0.000019739000000,0.000754539000000,0.000038688000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000346835000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000084910000000,0.000325898000000,0.000291922000000,0.000346046000000,0.019851808000000,0.000358293000000,0.000347231000000,0.019322031000000,0.000095182000000,0.000083330000000 +0.000019541500000,0.000732021000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000348811000000,0.000115725000000,0.000044219000000,0.000031182000000,0.000101503000000,0.000294688000000,0.000293898000000,0.000359478000000,0.019166771000000,0.000350787000000,0.000448762000000,0.019142673000000,0.000098343000000,0.000082540000000 +0.000019541500000,0.000724119000000,0.000038688000000,0.000012896000000,0.000057256000000,0.000036317000000,0.000382786000000,0.000197503000000,0.000043824000000,0.000031182000000,0.000082144000000,0.000293108000000,0.000342095000000,0.000349206000000,0.019053389000000,0.000349601000000,0.000351182000000,0.018488452000000,0.000097552000000,0.000099923000000 +0.000018751500000,0.000707922000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000345651000000,0.000079380000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000376860000000,0.000291922000000,0.000345256000000,0.019388401000000,0.000360268000000,0.000435330000000,0.018552451000000,0.000095182000000,0.000079774000000 +0.000018554000000,0.000692910000000,0.000040664000000,0.000013817666667,0.000055675000000,0.000038293000000,0.000388317000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000294688000000,0.000293502000000,0.000347231000000,0.019282920000000,0.000398984000000,0.000346836000000,0.018606574000000,0.000098737000000,0.000083330000000 +0.000019541500000,0.000705947000000,0.000037898000000,0.000012896000000,0.000089651000000,0.000037503000000,0.000348811000000,0.000074638000000,0.000045404000000,0.000032367000000,0.000084120000000,0.000386342000000,0.000308515000000,0.000404515000000,0.019078673000000,0.000347231000000,0.000385156000000,0.019052204000000,0.000099527000000,0.000082540000000 +0.000018751500000,0.000705156000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000037108000000,0.000344860000000,0.000082145000000,0.000045009000000,0.000061207000000,0.000084515000000,0.000291922000000,0.000293503000000,0.000351577000000,0.018838871000000,0.000348416000000,0.000351181000000,0.018854673000000,0.000112169000000,0.000152071000000 +0.000018751500000,0.000716218000000,0.000066342000000,0.000013554333333,0.000055675000000,0.000037898000000,0.000689749000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000329453000000,0.000347626000000,0.000353947000000,0.020441240000000,0.000365008000000,0.000386342000000,0.018399167000000,0.000121651000000,0.000081354000000 +0.000019541500000,0.000682638000000,0.000038688000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000393848000000,0.000074638000000,0.000045009000000,0.000031972000000,0.000121650000000,0.000293503000000,0.000307724000000,0.000396614000000,0.020350376000000,0.000352366000000,0.000346835000000,0.018763414000000,0.000089256000000,0.000080960000000 +0.000019541500000,0.000790885000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037898000000,0.000345651000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000082144000000,0.000290342000000,0.000293898000000,0.000355527000000,0.019541290000000,0.000352762000000,0.000359478000000,0.018685192000000,0.000092811000000,0.000080960000000 +0.000018751500000,0.000713848000000,0.000037898000000,0.000024221000000,0.000056861000000,0.000068318000000,0.000380416000000,0.000076218000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000360663000000,0.000795626000000,0.000384367000000,0.019855759000000,0.000344070000000,0.000348811000000,0.019602919000000,0.000089651000000,0.000080169000000 +0.000020134000000,0.000716218000000,0.000039873000000,0.000014344666667,0.000056070000000,0.000037502000000,0.000346836000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000084120000000,0.000294688000000,0.000383182000000,0.000344071000000,0.019645981000000,0.000350787000000,0.000347626000000,0.018594723000000,0.000110589000000,0.000086885000000 +0.000018554000000,0.000755329000000,0.000038293000000,0.000012896000000,0.000056070000000,0.000036713000000,0.000347626000000,0.000074244000000,0.000045009000000,0.000032367000000,0.000082145000000,0.000296663000000,0.000292712000000,0.000384367000000,0.019559068000000,0.000348811000000,0.000633650000000,0.019021784000000,0.000133108000000,0.000080960000000 +0.000018554000000,0.000678292000000,0.000037897000000,0.000013027666667,0.000055676000000,0.000038688000000,0.000348811000000,0.000075034000000,0.000043824000000,0.000031577000000,0.000081750000000,0.000297058000000,0.000326293000000,0.000347626000000,0.019077092000000,0.000346836000000,0.000422292000000,0.018878377000000,0.000120071000000,0.000083725000000 +0.000019541500000,0.000688169000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000351576000000,0.000075033000000,0.000045009000000,0.000030787000000,0.000082144000000,0.000291527000000,0.000298244000000,0.000348416000000,0.019320055000000,0.000348416000000,0.000351972000000,0.020752944000000,0.000092811000000,0.000082540000000 +0.000018751500000,0.000732416000000,0.000037503000000,0.000013423000000,0.000055675000000,0.000037503000000,0.000496169000000,0.000077009000000,0.000044614000000,0.000030787000000,0.000153256000000,0.000333799000000,0.000295477000000,0.000353157000000,0.019374574000000,0.000346046000000,0.000378836000000,0.019289636000000,0.000090046000000,0.000080564000000 +0.000019936500000,0.000769156000000,0.000038293000000,0.000013554333333,0.000056861000000,0.000037108000000,0.000354342000000,0.000076614000000,0.000045404000000,0.000050540000000,0.000084515000000,0.000293502000000,0.000378836000000,0.000348811000000,0.019635314000000,0.000361848000000,0.000347626000000,0.019011907000000,0.000092417000000,0.000080565000000 +0.000019541500000,0.000730836000000,0.000075033000000,0.000013027666667,0.000055675000000,0.000037108000000,0.000346441000000,0.000075034000000,0.000046985000000,0.000030392000000,0.000082145000000,0.000291527000000,0.000293502000000,0.000345255000000,0.021408745000000,0.000351971000000,0.000371330000000,0.019301488000000,0.000126392000000,0.000082540000000 +0.000018751500000,0.000670391000000,0.000041058000000,0.000013027666667,0.000055676000000,0.000036317000000,0.000415181000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000084910000000,0.000325898000000,0.000360268000000,0.000347626000000,0.019522722000000,0.000354738000000,0.000364219000000,0.019005982000000,0.000089651000000,0.000082935000000 +0.000019541500000,0.000683428000000,0.000051725000000,0.000023562666667,0.000055676000000,0.000037898000000,0.000349996000000,0.000076614000000,0.000084515000000,0.000030787000000,0.000084120000000,0.000295873000000,0.000290343000000,0.000347626000000,0.020417537000000,0.000348021000000,0.000372910000000,0.019725784000000,0.000091626000000,0.000103478000000 +0.000018751500000,0.000758490000000,0.000038688000000,0.000013554666667,0.000055676000000,0.000039478000000,0.000382391000000,0.000076218000000,0.000059626000000,0.000031972000000,0.000084120000000,0.000328268000000,0.000293898000000,0.000347626000000,0.020166672000000,0.000347626000000,0.000349602000000,0.018932895000000,0.000092812000000,0.000083330000000 +0.000019344000000,0.000717798000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000039478000000,0.000345651000000,0.000076614000000,0.000043823000000,0.000031182000000,0.000084120000000,0.000294293000000,0.000384366000000,0.000397403000000,0.019552351000000,0.000346441000000,0.000356712000000,0.018961735000000,0.000090441000000,0.000083330000000 +0.000019541500000,0.000732811000000,0.000037898000000,0.000014213000000,0.000056071000000,0.000036713000000,0.000346836000000,0.000078194000000,0.000045799000000,0.000032762000000,0.000082144000000,0.000291923000000,0.000294688000000,0.000344465000000,0.019962821000000,0.000345256000000,0.000404910000000,0.018939611000000,0.000089651000000,0.000080959000000 +0.000019739000000,0.000672367000000,0.000039874000000,0.000013027666667,0.000057255000000,0.000037898000000,0.000378836000000,0.000080564000000,0.000043824000000,0.000031181000000,0.000082145000000,0.000432564000000,0.000342490000000,0.000347626000000,0.019385636000000,0.000378836000000,0.000346441000000,0.019856944000000,0.000089651000000,0.000082145000000 +0.000019541500000,0.001167773000000,0.000038293000000,0.000013027666667,0.000056070000000,0.000036713000000,0.000402540000000,0.000077009000000,0.000045009000000,0.000031182000000,0.000081750000000,0.000291922000000,0.000309700000000,0.000347231000000,0.020321931000000,0.000352762000000,0.000382786000000,0.019919758000000,0.000092416000000,0.000080960000000 +0.000018751500000,0.000690539000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037107000000,0.000442046000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000084516000000,0.000325503000000,0.000316417000000,0.000344466000000,0.019326771000000,0.000347231000000,0.000350391000000,0.018546130000000,0.000092416000000,0.000081354000000 +0.000036332000000,0.000732021000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000037503000000,0.000348811000000,0.000077009000000,0.000045799000000,0.000031577000000,0.000081750000000,0.000295873000000,0.000349996000000,0.000346441000000,0.019429487000000,0.000343676000000,0.000378836000000,0.020201043000000,0.000091627000000,0.000116910000000 +0.000033368500000,0.000770341000000,0.000037503000000,0.000013686000000,0.000056466000000,0.000036713000000,0.000349996000000,0.000074639000000,0.000045009000000,0.000050935000000,0.000084120000000,0.000293898000000,0.000309305000000,0.000346441000000,0.019613981000000,0.000389108000000,0.000351972000000,0.019487166000000,0.000089256000000,0.000081355000000 +0.000021319500000,0.000757700000000,0.000038293000000,0.000020270666667,0.000057256000000,0.000036713000000,0.000434144000000,0.000076219000000,0.000045404000000,0.000031577000000,0.000101503000000,0.000363429000000,0.000311281000000,0.000365799000000,0.019354821000000,0.000347626000000,0.000434935000000,0.019440945000000,0.000092022000000,0.000082935000000 +0.000019936500000,0.000749799000000,0.000037898000000,0.000013949666667,0.000057256000000,0.000038293000000,0.000348416000000,0.000080170000000,0.000045009000000,0.000031577000000,0.000082144000000,0.000291527000000,0.000312466000000,0.000348811000000,0.019690623000000,0.000355527000000,0.000347626000000,0.019534969000000,0.000092416000000,0.000083725000000 +0.000019936500000,0.000669206000000,0.000037503000000,0.000012896000000,0.000091231000000,0.000037108000000,0.000389502000000,0.000074244000000,0.000044219000000,0.000030786000000,0.000086491000000,0.000291527000000,0.000320762000000,0.000439280000000,0.019623858000000,0.000385552000000,0.000385947000000,0.019892500000000,0.000123231000000,0.000080564000000 +0.000020726500000,0.000748614000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000357108000000,0.000075824000000,0.000044219000000,0.000030787000000,0.000084910000000,0.000293503000000,0.000346441000000,0.000347231000000,0.019851413000000,0.000348811000000,0.000350786000000,0.019352055000000,0.000091626000000,0.000082540000000 +0.000020924000000,0.000753749000000,0.000037897000000,0.000013554666667,0.000055676000000,0.000038293000000,0.000346441000000,0.000074638000000,0.000045404000000,0.000031182000000,0.000084910000000,0.000312861000000,0.000310491000000,0.000352367000000,0.019015068000000,0.000349996000000,0.000372120000000,0.019749487000000,0.000092417000000,0.000082935000000 +0.000036924000000,0.000756515000000,0.000037503000000,0.000013028000000,0.000056071000000,0.000037108000000,0.000390293000000,0.000074244000000,0.000044219000000,0.000030787000000,0.000083726000000,0.000358293000000,0.000347231000000,0.000351972000000,0.019589093000000,0.000347231000000,0.000346046000000,0.019595413000000,0.000092416000000,0.000155231000000 +0.000060233000000,0.000752564000000,0.000076219000000,0.000012896000000,0.000056071000000,0.000037502000000,0.000351577000000,0.000074638000000,0.000045404000000,0.000031972000000,0.000084120000000,0.000293897000000,0.000308515000000,0.000404515000000,0.020028796000000,0.000391478000000,0.000348416000000,0.019576056000000,0.000091626000000,0.000080960000000 +0.000033961000000,0.000671576000000,0.000037898000000,0.000012896000000,0.000056070000000,0.000036713000000,0.000416762000000,0.000075429000000,0.000045800000000,0.000031577000000,0.000153255000000,0.000293897000000,0.000310885000000,0.000361848000000,0.020200648000000,0.000351971000000,0.000350392000000,0.019065241000000,0.000093206000000,0.000081354000000 +0.000052331500000,0.000689354000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000359478000000,0.000074243000000,0.000043824000000,0.000031182000000,0.000081749000000,0.000291527000000,0.000312465000000,0.000356317000000,0.019642030000000,0.000348812000000,0.000346046000000,0.018997685000000,0.000093206000000,0.000080565000000 +0.000030603500000,0.000724515000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000352762000000,0.000076614000000,0.000045009000000,0.000030787000000,0.000084911000000,0.000291922000000,0.000310095000000,0.000347231000000,0.019140698000000,0.000348021000000,0.000383181000000,0.019670870000000,0.000092812000000,0.000080959000000 +0.000043640500000,0.000755724000000,0.000037503000000,0.000038048000000,0.000055280000000,0.000036713000000,0.000424268000000,0.000096367000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000442441000000,0.000348021000000,0.000344071000000,0.018838871000000,0.000346441000000,0.000346836000000,0.019666525000000,0.000091626000000,0.000080565000000 +0.000027640500000,0.000760860000000,0.000038688000000,0.000018426666667,0.000056861000000,0.000037107000000,0.000347231000000,0.000074638000000,0.000045404000000,0.000030787000000,0.000082540000000,0.000313256000000,0.000310886000000,0.000349207000000,0.019999561000000,0.000350786000000,0.000389503000000,0.019764500000000,0.000124021000000,0.000082539000000 +0.000021122000000,0.000708712000000,0.000039478000000,0.000029225333333,0.000055676000000,0.000072269000000,0.000423873000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000084516000000,0.000361453000000,0.000315231000000,0.000347626000000,0.018924599000000,0.000346440000000,0.000353157000000,0.019036006000000,0.000102293000000,0.000084120000000 +0.000020727000000,0.000721354000000,0.000038293000000,0.000018163333333,0.000056071000000,0.000036713000000,0.000351577000000,0.000077405000000,0.000044614000000,0.000031972000000,0.000082145000000,0.000295083000000,0.000341700000000,0.000348811000000,0.019326377000000,0.000348021000000,0.000384762000000,0.019288056000000,0.000089255000000,0.000082935000000 +0.000019936500000,0.001205304000000,0.000037898000000,0.000014212666667,0.000055675000000,0.000037107000000,0.000386738000000,0.000074244000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000296664000000,0.000308514000000,0.000352761000000,0.020070278000000,0.000391478000000,0.000354342000000,0.019080649000000,0.000092811000000,0.000082935000000 +0.000021121500000,0.000700811000000,0.000039478000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000348811000000,0.000077404000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000343281000000,0.000341700000000,0.000442441000000,0.019580796000000,0.000345650000000,0.000389503000000,0.019263561000000,0.000092811000000,0.000082145000000 +0.000038307000000,0.000726885000000,0.000038688000000,0.000012896000000,0.000057651000000,0.000036712000000,0.000346836000000,0.000077009000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000293898000000,0.000312466000000,0.000344860000000,0.019876697000000,0.000347626000000,0.000357897000000,0.019519562000000,0.000092022000000,0.000082540000000 +0.000027443000000,0.000730836000000,0.000037503000000,0.000020270333333,0.000055281000000,0.000037898000000,0.000349206000000,0.000076613000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000339725000000,0.000313651000000,0.000348811000000,0.019694969000000,0.000344070000000,0.000382391000000,0.019276204000000,0.000093206000000,0.000081354000000 +0.000020726500000,0.000764811000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000480367000000,0.000077404000000,0.000045009000000,0.000031182000000,0.000085305000000,0.000293503000000,0.000523823000000,0.000347231000000,0.019732895000000,0.000346046000000,0.000350787000000,0.020267413000000,0.000089651000000,0.000080170000000 +0.000019739000000,0.000690145000000,0.000037898000000,0.000013554333333,0.000069898000000,0.000037898000000,0.000351971000000,0.000079379000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000296268000000,0.000311675000000,0.000347626000000,0.019397487000000,0.000346836000000,0.000415577000000,0.019979808000000,0.000091231000000,0.000236614000000 +0.000020924500000,0.000675922000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000037898000000,0.000344466000000,0.000077009000000,0.000044614000000,0.000032367000000,0.000082145000000,0.000361453000000,0.000340120000000,0.000346441000000,0.019896450000000,0.000347626000000,0.000352367000000,0.020105833000000,0.000092021000000,0.000167083000000 +0.000020727000000,0.000718589000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000434145000000,0.000077404000000,0.000045799000000,0.000069108000000,0.000084120000000,0.000290737000000,0.000292713000000,0.000344861000000,0.019452006000000,0.000349997000000,0.000350391000000,0.019388401000000,0.000125602000000,0.000110589000000 +0.000020332000000,0.000724910000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000056071000000,0.000350391000000,0.000077009000000,0.000044219000000,0.000099132000000,0.000081750000000,0.000328268000000,0.000312466000000,0.000347626000000,0.020422672000000,0.000348417000000,0.000363824000000,0.019947413000000,0.000092416000000,0.000117305000000 +0.000021319500000,0.000713058000000,0.000038688000000,0.000012896000000,0.000058046000000,0.000037502000000,0.000440860000000,0.000075033000000,0.000043823000000,0.000045799000000,0.000120465000000,0.000294688000000,0.000292713000000,0.000346836000000,0.019787018000000,0.000383182000000,0.000347231000000,0.019650327000000,0.000090046000000,0.000081354000000 +0.000020134000000,0.000685008000000,0.000039083000000,0.000013291000000,0.000056861000000,0.000037108000000,0.000346836000000,0.000077404000000,0.000045404000000,0.000033947000000,0.000084120000000,0.000293898000000,0.000292318000000,0.000381996000000,0.019772006000000,0.000346836000000,0.000381206000000,0.019403414000000,0.000091626000000,0.000080565000000 +0.000019936500000,0.000714244000000,0.000106639000000,0.000013554333333,0.000057255000000,0.000037503000000,0.000346441000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000081749000000,0.000333404000000,0.000326293000000,0.000346441000000,0.019419611000000,0.000346836000000,0.000347230000000,0.019662969000000,0.000092812000000,0.000080960000000 +0.000020727000000,0.000761256000000,0.000038688000000,0.000012896000000,0.000056465000000,0.000037502000000,0.000383972000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000164317000000,0.000291133000000,0.000292712000000,0.000347231000000,0.019239463000000,0.000353157000000,0.000621008000000,0.019482426000000,0.000092811000000,0.000082540000000 +0.000027640500000,0.000718983000000,0.000037898000000,0.000019217000000,0.000077009000000,0.000037503000000,0.000426638000000,0.000074244000000,0.000044219000000,0.000045009000000,0.000081750000000,0.000293898000000,0.000296268000000,0.000357503000000,0.020176154000000,0.000343280000000,0.000508811000000,0.019019809000000,0.000091626000000,0.000081355000000 +0.000020924500000,0.000738342000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000420317000000,0.000075429000000,0.000045009000000,0.000030787000000,0.000081750000000,0.000325107000000,0.000325108000000,0.000350786000000,0.019419611000000,0.000381601000000,0.000347231000000,0.019861289000000,0.000090046000000,0.000081354000000 +0.000019739500000,0.000675923000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000351182000000,0.000077009000000,0.000045404000000,0.000031577000000,0.000082540000000,0.000290737000000,0.000291133000000,0.000344861000000,0.020513536000000,0.000348416000000,0.000419528000000,0.019481636000000,0.000092416000000,0.000118491000000 +0.000019936500000,0.000726095000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000037107000000,0.000346046000000,0.000074639000000,0.000044219000000,0.000030787000000,0.000081749000000,0.000327083000000,0.000370145000000,0.000346836000000,0.019393142000000,0.000348811000000,0.000351181000000,0.019454771000000,0.000092416000000,0.000080565000000 +0.000020924500000,0.000714638000000,0.000037503000000,0.000013027666667,0.000058046000000,0.000036713000000,0.000380021000000,0.000076613000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000295478000000,0.000295083000000,0.000354737000000,0.019735660000000,0.000347231000000,0.000406095000000,0.019061290000000,0.000093207000000,0.000080960000000 +0.000020727000000,0.000718589000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000037503000000,0.000349996000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000085305000000,0.000293503000000,0.000293107000000,0.000351576000000,0.019301882000000,0.000346046000000,0.000352761000000,0.019732105000000,0.000092416000000,0.000082145000000 +0.000019739000000,0.000685798000000,0.000037898000000,0.000013554333333,0.000057256000000,0.000037503000000,0.000415576000000,0.000075429000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000328268000000,0.000341305000000,0.000362243000000,0.020465339000000,0.000353157000000,0.000346836000000,0.019023759000000,0.000092812000000,0.000080960000000 +0.000019739000000,0.000675132000000,0.000092812000000,0.000013027666667,0.000056071000000,0.000036318000000,0.000344071000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000084121000000,0.000292317000000,0.000291923000000,0.000357898000000,0.019875512000000,0.000350787000000,0.000359873000000,0.019550771000000,0.000123231000000,0.000082539000000 +0.000020727000000,0.000714243000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000346441000000,0.000076614000000,0.000043824000000,0.000031182000000,0.000084120000000,0.000294292000000,0.000337355000000,0.000356317000000,0.019303068000000,0.000347626000000,0.000349207000000,0.019621883000000,0.000092021000000,0.000082935000000 +0.000020924500000,0.000718984000000,0.000037898000000,0.000013554333333,0.000056466000000,0.000036318000000,0.000383577000000,0.000076614000000,0.000045799000000,0.000031577000000,0.000082145000000,0.000291133000000,0.000291923000000,0.000381997000000,0.019584747000000,0.000441256000000,0.000347231000000,0.020071857000000,0.000092812000000,0.000120861000000 +0.000037319000000,0.000717404000000,0.000037898000000,0.000013554333333,0.000056466000000,0.000038293000000,0.000348812000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000082539000000,0.000295873000000,0.000295873000000,0.000345256000000,0.019834821000000,0.000347231000000,0.000346835000000,0.020088055000000,0.000089651000000,0.000082540000000 +0.000020726500000,0.000690539000000,0.000038293000000,0.000012896000000,0.000056465000000,0.000036712000000,0.000773503000000,0.000075033000000,0.000080564000000,0.000030392000000,0.000082144000000,0.000386342000000,0.000329058000000,0.000349206000000,0.019203907000000,0.000344070000000,0.000371725000000,0.019060895000000,0.000092812000000,0.000082935000000 +0.000020134000000,0.000814588000000,0.000038293000000,0.000013554333333,0.000056070000000,0.000037898000000,0.000431379000000,0.000074639000000,0.000044218000000,0.000031181000000,0.000082540000000,0.000294293000000,0.000290737000000,0.000347231000000,0.021431264000000,0.000346046000000,0.000351972000000,0.019952548000000,0.000093601000000,0.000080959000000 +0.000019739000000,0.000725700000000,0.000038688000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000345651000000,0.000078589000000,0.000047775000000,0.000031577000000,0.000103873000000,0.000292318000000,0.000290342000000,0.000346836000000,0.019521537000000,0.000412416000000,0.000416762000000,0.018984648000000,0.000093602000000,0.000082935000000 +0.000020924500000,0.000714243000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037108000000,0.000352367000000,0.000080960000000,0.000044218000000,0.000031577000000,0.000081749000000,0.000295873000000,0.000305750000000,0.000352367000000,0.020602425000000,0.000357502000000,0.000347231000000,0.020230277000000,0.000090836000000,0.000082540000000 +0.000019739000000,0.000704367000000,0.000037898000000,0.000014212666667,0.000056465000000,0.000037503000000,0.000388712000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000081750000000,0.000291133000000,0.000293108000000,0.000349996000000,0.019706031000000,0.000346836000000,0.000423873000000,0.019336253000000,0.000090441000000,0.000082145000000 +0.000019739000000,0.000682638000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000355923000000,0.000074638000000,0.000044219000000,0.000032367000000,0.000082145000000,0.000324318000000,0.000348021000000,0.000345255000000,0.019954129000000,0.000346441000000,0.000344860000000,0.019659808000000,0.000091627000000,0.000082540000000 +0.000045023000000,0.000717008000000,0.000052120000000,0.000013027666667,0.000089651000000,0.000037503000000,0.000378836000000,0.000076219000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000291528000000,0.000293108000000,0.000348811000000,0.019227216000000,0.000349207000000,0.000446392000000,0.020090031000000,0.000094787000000,0.000080960000000 +0.000020726500000,0.000767182000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000349601000000,0.000074243000000,0.000044613000000,0.000031182000000,0.000084120000000,0.000293503000000,0.000473651000000,0.000346836000000,0.019424352000000,0.000433355000000,0.000349602000000,0.019734080000000,0.000092416000000,0.000081354000000 +0.000019739500000,0.000766787000000,0.000040268000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000349601000000,0.000074243000000,0.000044218000000,0.000031182000000,0.000084120000000,0.000393849000000,0.000398984000000,0.000387527000000,0.019596599000000,0.000350787000000,0.000548712000000,0.021767066000000,0.000090046000000,0.000080959000000 +0.000021319500000,0.000715824000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000383972000000,0.000074243000000,0.000046194000000,0.000031182000000,0.000117700000000,0.000292318000000,0.000293898000000,0.000365009000000,0.019059315000000,0.000385552000000,0.000479181000000,0.019977438000000,0.000187626000000,0.000082935000000 +0.000019936500000,0.000679082000000,0.000037897000000,0.000013028000000,0.000056861000000,0.000037898000000,0.000348811000000,0.000074243000000,0.000045404000000,0.000031577000000,0.000084120000000,0.000327873000000,0.000324317000000,0.000379231000000,0.019653882000000,0.000347626000000,0.000347231000000,0.020365783000000,0.000093207000000,0.000080565000000 +0.000019937000000,0.000730045000000,0.000072664000000,0.000013554666667,0.000056071000000,0.000037898000000,0.000382786000000,0.000076614000000,0.000044219000000,0.000032367000000,0.000085305000000,0.000292317000000,0.000291132000000,0.000346836000000,0.019910672000000,0.000347231000000,0.000348811000000,0.020973783000000,0.000092416000000,0.000082935000000 +0.000020924000000,0.000709502000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000036713000000,0.000347231000000,0.000078194000000,0.000043824000000,0.000031182000000,0.000084515000000,0.000291922000000,0.000326688000000,0.000347231000000,0.020397388000000,0.000353947000000,0.000792070000000,0.019367858000000,0.000092417000000,0.000082540000000 +0.000019739000000,0.000724515000000,0.000039478000000,0.000013554333333,0.000055675000000,0.000036317000000,0.000347626000000,0.000077404000000,0.000045404000000,0.000030786000000,0.000082145000000,0.000323922000000,0.000297454000000,0.000344070000000,0.019327957000000,0.000348416000000,0.000378836000000,0.019568944000000,0.000091626000000,0.000080960000000 +0.000021319500000,0.000689355000000,0.000135873000000,0.000013027666667,0.000060022000000,0.000036713000000,0.000350787000000,0.000074244000000,0.000044219000000,0.000033157000000,0.000083725000000,0.000291527000000,0.000294293000000,0.000346441000000,0.019696944000000,0.000345256000000,0.000347231000000,0.019635314000000,0.000090836000000,0.000080169000000 +0.000020726500000,0.000697255000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000071083000000,0.000345650000000,0.000074243000000,0.000044614000000,0.000031577000000,0.000083725000000,0.000293107000000,0.000326688000000,0.000346836000000,0.019713142000000,0.000344861000000,0.000399774000000,0.019997190000000,0.000126787000000,0.000082145000000 +0.000019937000000,0.001055181000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000418737000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000171429000000,0.000293502000000,0.000294688000000,0.000359082000000,0.019349685000000,0.000380021000000,0.000347626000000,0.020007858000000,0.000089651000000,0.000082935000000 +0.000020726500000,0.000735576000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000349206000000,0.000077009000000,0.000044219000000,0.000051330000000,0.000099923000000,0.000293107000000,0.000293503000000,0.000350787000000,0.019452006000000,0.000350392000000,0.000388712000000,0.019500204000000,0.000090046000000,0.000083725000000 +0.000019739000000,0.000751774000000,0.000037898000000,0.000013686333333,0.000056071000000,0.000036713000000,0.000388712000000,0.000075034000000,0.000044219000000,0.000033552000000,0.000083725000000,0.000325898000000,0.000308910000000,0.000344861000000,0.019500599000000,0.000345651000000,0.000351181000000,0.020099117000000,0.000092416000000,0.000083725000000 +0.000019937000000,0.000717403000000,0.000039478000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000345651000000,0.000080170000000,0.000044218000000,0.000031972000000,0.000081749000000,0.000291132000000,0.000293108000000,0.000348021000000,0.019567759000000,0.000347626000000,0.000378046000000,0.019742771000000,0.000091626000000,0.000097552000000 +0.000020726500000,0.000754539000000,0.000038688000000,0.000013027666667,0.000055280000000,0.000036712000000,0.000354737000000,0.000078195000000,0.000044219000000,0.000030787000000,0.000082539000000,0.000293108000000,0.000341700000000,0.000354342000000,0.019439364000000,0.000417157000000,0.000346046000000,0.019244204000000,0.000092811000000,0.000080960000000 +0.000020529000000,0.000671182000000,0.000037898000000,0.000013027666667,0.000057651000000,0.000037503000000,0.000420317000000,0.000076614000000,0.000045404000000,0.000045009000000,0.000081749000000,0.000741897000000,0.000294688000000,0.000350787000000,0.020335364000000,0.000352367000000,0.000348416000000,0.019636894000000,0.000090836000000,0.000082935000000 +0.000020726500000,0.000735181000000,0.000093601000000,0.000013554666667,0.000057256000000,0.000036713000000,0.000415181000000,0.000074243000000,0.000045799000000,0.000030787000000,0.000115330000000,0.000385552000000,0.000295873000000,0.000353552000000,0.020129141000000,0.000376861000000,0.000350787000000,0.020276104000000,0.000092416000000,0.000080564000000 +0.000019739500000,0.000786539000000,0.000126786000000,0.000013554666667,0.000090046000000,0.000036713000000,0.000367380000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000086096000000,0.000336959000000,0.000325107000000,0.000361849000000,0.019927265000000,0.000349206000000,0.000346045000000,0.019852598000000,0.000092417000000,0.000095972000000 +0.000019739000000,0.000963922000000,0.000040268000000,0.000013817666667,0.000057256000000,0.000037897000000,0.000409650000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000331034000000,0.000293898000000,0.000356712000000,0.020302968000000,0.000353552000000,0.000382787000000,0.019961240000000,0.000089651000000,0.000084516000000 +0.000020727000000,0.000751774000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000082145000000,0.000346045000000,0.000078194000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000295478000000,0.000291527000000,0.000347626000000,0.019603315000000,0.000347626000000,0.000364614000000,0.019596599000000,0.000092416000000,0.000093996000000 +0.000020727000000,0.000723330000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000051725000000,0.000381207000000,0.000077404000000,0.000044614000000,0.000030392000000,0.000084120000000,0.000297453000000,0.000294688000000,0.000344861000000,0.019397488000000,0.000348811000000,0.000374490000000,0.018775660000000,0.000092417000000,0.000082540000000 +0.000019936500000,0.000680267000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000350786000000,0.000079775000000,0.000045009000000,0.000031182000000,0.000082145000000,0.000327083000000,0.000290737000000,0.000384367000000,0.019921339000000,0.000348811000000,0.000375280000000,0.020423462000000,0.000092416000000,0.000082540000000 +0.000019739000000,0.000717403000000,0.000038688000000,0.000013686333333,0.000055281000000,0.000037108000000,0.000348811000000,0.000074244000000,0.000044614000000,0.000031576000000,0.000082540000000,0.000290737000000,0.000328268000000,0.000355527000000,0.019275413000000,0.000350787000000,0.000380021000000,0.019123710000000,0.000125601000000,0.000080564000000 +0.000020727000000,0.000713453000000,0.000057256000000,0.000013027666667,0.000056071000000,0.000039083000000,0.000345651000000,0.000076219000000,0.000045799000000,0.000032367000000,0.000150490000000,0.000293503000000,0.000293502000000,0.000347231000000,0.019772401000000,0.000348021000000,0.000376070000000,0.020517882000000,0.000092811000000,0.000082145000000 +0.000021121500000,0.000746638000000,0.000038293000000,0.000013686333333,0.000057651000000,0.000037898000000,0.000346045000000,0.000077404000000,0.000045009000000,0.000032367000000,0.000084516000000,0.000309700000000,0.000293108000000,0.000352366000000,0.019984153000000,0.000376071000000,0.000377651000000,0.019197587000000,0.000091626000000,0.000082540000000 +0.000020924000000,0.000722935000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000382786000000,0.000075034000000,0.000044219000000,0.000032762000000,0.000082144000000,0.000291527000000,0.000526984000000,0.000365404000000,0.019622673000000,0.000355132000000,0.000380811000000,0.019699314000000,0.000092812000000,0.000082935000000 +0.000020726500000,0.000683428000000,0.000038293000000,0.000012896000000,0.000097552000000,0.000037108000000,0.000349601000000,0.000076614000000,0.000046194000000,0.000031576000000,0.000085306000000,0.000329453000000,0.000296268000000,0.000345255000000,0.019499809000000,0.000346836000000,0.000403330000000,0.019745537000000,0.000092416000000,0.000110195000000 +0.000019739500000,0.000750589000000,0.000038688000000,0.000012896000000,0.000059626000000,0.000036713000000,0.000507231000000,0.000078194000000,0.000044219000000,0.000031972000000,0.000082144000000,0.000357897000000,0.000325503000000,0.000347626000000,0.020311659000000,0.000355132000000,0.000371725000000,0.019941488000000,0.000089651000000,0.000080565000000 +0.000020134500000,0.000705947000000,0.000037503000000,0.000013686333333,0.000070293000000,0.000037502000000,0.000389107000000,0.000077009000000,0.000044218000000,0.000032762000000,0.000084120000000,0.000290737000000,0.000301404000000,0.000346836000000,0.019086574000000,0.000348811000000,0.000368960000000,0.020644696000000,0.000090046000000,0.000079774000000 +0.000026455000000,0.001037008000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000345651000000,0.000074243000000,0.000046195000000,0.000030787000000,0.000082540000000,0.000328268000000,0.000312466000000,0.000409651000000,0.019052599000000,0.000356712000000,0.000412021000000,0.019030475000000,0.000092417000000,0.000080565000000 +0.000019739000000,0.000749403000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000416762000000,0.000074243000000,0.000044219000000,0.000031972000000,0.000082539000000,0.000295873000000,0.000292318000000,0.000346046000000,0.019298722000000,0.000393453000000,0.000575182000000,0.020152054000000,0.000089651000000,0.000080564000000 +0.000019936500000,0.000729650000000,0.000039083000000,0.000012896000000,0.000055281000000,0.000038293000000,0.000348812000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000084120000000,0.000331429000000,0.000297849000000,0.000345650000000,0.019053389000000,0.000343676000000,0.000372910000000,0.019275809000000,0.000094392000000,0.000083330000000 +0.000020727000000,0.000673157000000,0.000037898000000,0.000013027666667,0.000095577000000,0.000036713000000,0.000348812000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000082144000000,0.000292712000000,0.000326293000000,0.000346441000000,0.019708006000000,0.000352762000000,0.000368959000000,0.019306228000000,0.000092416000000,0.000122441000000 +0.000021319500000,0.000705157000000,0.000069108000000,0.000013686000000,0.000056071000000,0.000036713000000,0.000366194000000,0.000078589000000,0.000043824000000,0.000030786000000,0.000081749000000,0.000291132000000,0.000294688000000,0.000381997000000,0.019275019000000,0.000348416000000,0.000368564000000,0.020126375000000,0.000092811000000,0.000082935000000 +0.000019936500000,0.001083625000000,0.000038293000000,0.000013554333333,0.000056070000000,0.000037108000000,0.000348811000000,0.000077009000000,0.000044614000000,0.000030786000000,0.000084120000000,0.000328663000000,0.000293503000000,0.000344466000000,0.019493487000000,0.000353947000000,0.000368564000000,0.018784747000000,0.000093997000000,0.000083330000000 +0.000021122000000,0.000763231000000,0.000037503000000,0.000013027666667,0.000055675000000,0.000038293000000,0.000380021000000,0.000076614000000,0.000043824000000,0.000031182000000,0.000082145000000,0.000299033000000,0.000433354000000,0.000346441000000,0.019507315000000,0.000347231000000,0.000376466000000,0.020228697000000,0.000160367000000,0.000082934000000 +0.000019739500000,0.000726885000000,0.000037503000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000352762000000,0.000075033000000,0.000044218000000,0.000031577000000,0.000104268000000,0.000293502000000,0.000613503000000,0.000346046000000,0.021147610000000,0.000346045000000,0.000373700000000,0.019238673000000,0.000092811000000,0.000082540000000 +0.000019739000000,0.000714638000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000038293000000,0.000349206000000,0.000076614000000,0.000044614000000,0.000046590000000,0.000084120000000,0.000292713000000,0.000344861000000,0.000359478000000,0.020114919000000,0.000349997000000,0.000368169000000,0.020124006000000,0.000091231000000,0.000080170000000 +0.000020924500000,0.000717799000000,0.000038688000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000397404000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000081749000000,0.000291133000000,0.000294688000000,0.000400959000000,0.019011512000000,0.000345256000000,0.000368959000000,0.019109093000000,0.000092812000000,0.000080564000000 +0.000020332000000,0.000669996000000,0.000038688000000,0.000013686000000,0.000056861000000,0.000114145000000,0.000348022000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000084515000000,0.000328663000000,0.000379231000000,0.000344861000000,0.019969142000000,0.000347626000000,0.000372515000000,0.020232252000000,0.000092811000000,0.000114935000000 +0.000020727000000,0.000709107000000,0.000037503000000,0.000013817666667,0.000074243000000,0.000053305000000,0.000419923000000,0.000080170000000,0.000044614000000,0.000031182000000,0.000081750000000,0.000297058000000,0.000294688000000,0.000347231000000,0.019062870000000,0.000348021000000,0.000387527000000,0.019427908000000,0.000096367000000,0.000082935000000 +0.000020726500000,0.000752169000000,0.000037502000000,0.000013028000000,0.000056466000000,0.000039478000000,0.000348812000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000083330000000,0.000293107000000,0.000325898000000,0.000351577000000,0.019235513000000,0.000349206000000,0.000352762000000,0.019542080000000,0.000139429000000,0.000083330000000 +0.000019936500000,0.000730046000000,0.000071478000000,0.000013686333333,0.000056861000000,0.000036713000000,0.000353552000000,0.000075034000000,0.000058441000000,0.000031182000000,0.000084120000000,0.000361058000000,0.000295478000000,0.000388317000000,0.020783363000000,0.000353552000000,0.000347626000000,0.020086870000000,0.000092022000000,0.000082935000000 +0.000020924500000,0.000677897000000,0.000038293000000,0.000013554666667,0.000056466000000,0.000036713000000,0.000421898000000,0.000074244000000,0.000046194000000,0.000031972000000,0.000115725000000,0.000295478000000,0.000295083000000,0.000353947000000,0.019957290000000,0.000344861000000,0.000359873000000,0.019446475000000,0.000092416000000,0.000080565000000 +0.000019936500000,0.000806687000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000036318000000,0.000347231000000,0.000076614000000,0.000044614000000,0.000031576000000,0.000082145000000,0.000326292000000,0.000360268000000,0.000359082000000,0.019984548000000,0.000344465000000,0.000349206000000,0.019536944000000,0.000089256000000,0.000080959000000 +0.000019739000000,0.000699230000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000383182000000,0.000074639000000,0.000044613000000,0.000031577000000,0.000084120000000,0.000294293000000,0.000293503000000,0.000355923000000,0.021382671000000,0.000346046000000,0.000361058000000,0.019267118000000,0.000090441000000,0.000080960000000 +0.000020726500000,0.000710293000000,0.000039873000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000347626000000,0.000077009000000,0.000044218000000,0.000030787000000,0.000082145000000,0.000292712000000,0.000329058000000,0.000347231000000,0.019253290000000,0.000346836000000,0.000346045000000,0.019714327000000,0.000091626000000,0.000097552000000 +0.000020726500000,0.000763626000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000675527000000,0.000074638000000,0.000045404000000,0.000050935000000,0.000082145000000,0.000377651000000,0.000299428000000,0.000344070000000,0.020590178000000,0.000399379000000,0.000517897000000,0.020193141000000,0.000091626000000,0.000080564000000 +0.000020727000000,0.000718984000000,0.000038688000000,0.000013027666667,0.000056070000000,0.000050540000000,0.000357897000000,0.000074638000000,0.000044219000000,0.000031972000000,0.000083725000000,0.000290737000000,0.000297454000000,0.000349206000000,0.020028006000000,0.000489849000000,0.000351972000000,0.019292006000000,0.000105849000000,0.000080565000000 +0.000027443000000,0.000677107000000,0.000038688000000,0.000012896000000,0.000069897000000,0.000036317000000,0.000418342000000,0.000077404000000,0.000043824000000,0.000030391000000,0.000084120000000,0.000291132000000,0.000343280000000,0.000469700000000,0.019328352000000,0.000391477000000,0.000378836000000,0.019370623000000,0.000092812000000,0.000082935000000 +0.000020529000000,0.000824465000000,0.000037898000000,0.000012896000000,0.000056070000000,0.000038293000000,0.000356317000000,0.000077009000000,0.000073453000000,0.000032367000000,0.000168663000000,0.000294688000000,0.000295083000000,0.000396614000000,0.019295167000000,0.000359083000000,0.000348021000000,0.019281339000000,0.000093601000000,0.000080959000000 +0.000021319000000,0.000749798000000,0.000037503000000,0.000012896000000,0.000056860000000,0.000036713000000,0.000379231000000,0.000077009000000,0.000044218000000,0.000030787000000,0.000081750000000,0.000294688000000,0.000290737000000,0.000353157000000,0.020001537000000,0.000349207000000,0.000385947000000,0.020495363000000,0.000090046000000,0.000080170000000 +0.000020726500000,0.000746638000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036317000000,0.000344860000000,0.000075824000000,0.000044219000000,0.000031972000000,0.000084910000000,0.000461404000000,0.000293503000000,0.000348811000000,0.019372204000000,0.000346045000000,0.000345651000000,0.020914918000000,0.000125997000000,0.000082934000000 +0.000019936500000,0.000830786000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037898000000,0.000358293000000,0.000075824000000,0.000044219000000,0.000032762000000,0.000082145000000,0.000292318000000,0.000293108000000,0.000346441000000,0.020140598000000,0.000349601000000,0.000440861000000,0.020291511000000,0.000108614000000,0.000129947000000 +0.000019739000000,0.000709898000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000037108000000,0.000390292000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000290342000000,0.000474835000000,0.000348021000000,0.019160846000000,0.000350392000000,0.000349206000000,0.021731905000000,0.000174984000000,0.000084515000000 +0.000020727000000,0.000682243000000,0.000037503000000,0.000013027666667,0.000057651000000,0.000036713000000,0.000347231000000,0.000077009000000,0.000045404000000,0.000031576000000,0.000084120000000,0.000294688000000,0.000327873000000,0.000438886000000,0.020783363000000,0.000349997000000,0.000406490000000,0.020285980000000,0.000090441000000,0.000082935000000 +0.000020924000000,0.000752564000000,0.000037898000000,0.000013554666667,0.000055676000000,0.000036712000000,0.000428614000000,0.000111774000000,0.000045799000000,0.000030787000000,0.000101898000000,0.000295083000000,0.000327083000000,0.000347626000000,0.019887364000000,0.000378835000000,0.000354737000000,0.019756204000000,0.000090046000000,0.000082145000000 +0.000020726500000,0.000733601000000,0.000037898000000,0.000013027666667,0.000090046000000,0.000037898000000,0.000347231000000,0.000074639000000,0.000044614000000,0.000030786000000,0.000082145000000,0.000331824000000,0.000294293000000,0.000348021000000,0.019790179000000,0.000344861000000,0.000469305000000,0.019022969000000,0.000090046000000,0.000084515000000 +0.000021121500000,0.000738736000000,0.000038688000000,0.000013027666667,0.000073059000000,0.000089651000000,0.000351577000000,0.000074244000000,0.000044219000000,0.000064367000000,0.000084515000000,0.000295478000000,0.000290738000000,0.000345256000000,0.019503364000000,0.000351972000000,0.000348812000000,0.020118870000000,0.000091231000000,0.000082935000000 +0.000019937000000,0.000707922000000,0.000037503000000,0.000013027666667,0.000056465000000,0.000037898000000,0.000416367000000,0.000074243000000,0.000045405000000,0.000031577000000,0.000081750000000,0.000298243000000,0.000358293000000,0.000406885000000,0.019225241000000,0.000352366000000,0.000437305000000,0.018740500000000,0.000090441000000,0.000081749000000 +0.000019739500000,0.000694095000000,0.000041848000000,0.000013554333333,0.000055280000000,0.000037503000000,0.000344466000000,0.000077404000000,0.000045799000000,0.000032367000000,0.000082145000000,0.000324712000000,0.000293503000000,0.000534885000000,0.019677191000000,0.000344071000000,0.000344861000000,0.019844302000000,0.000126392000000,0.000083330000000 +0.000020726500000,0.000750984000000,0.000059626000000,0.000013027666667,0.000055281000000,0.000038293000000,0.000445996000000,0.000074243000000,0.000045404000000,0.000032367000000,0.000081750000000,0.000328268000000,0.000314836000000,0.000392663000000,0.019158475000000,0.000347231000000,0.000398985000000,0.019357587000000,0.000092811000000,0.000082935000000 +0.000019739000000,0.000703181000000,0.000037503000000,0.000013554333333,0.000055675000000,0.000037108000000,0.000344465000000,0.000093602000000,0.000045009000000,0.000031972000000,0.000082144000000,0.000342490000000,0.000291922000000,0.000346441000000,0.019448055000000,0.000347626000000,0.000365404000000,0.019726179000000,0.000090046000000,0.000082539000000 +0.000019936500000,0.000716614000000,0.000037898000000,0.000013422666667,0.000055675000000,0.000039478000000,0.000346441000000,0.000077009000000,0.000045009000000,0.000031577000000,0.000118096000000,0.000291133000000,0.000291923000000,0.000346836000000,0.019143068000000,0.000354737000000,0.000381206000000,0.020057635000000,0.000090046000000,0.000080565000000 +0.000020726500000,0.000683428000000,0.000037503000000,0.000032649000000,0.000055675000000,0.000036713000000,0.000383181000000,0.000074243000000,0.000044219000000,0.000031182000000,0.000102688000000,0.000293898000000,0.000363428000000,0.000359478000000,0.019565784000000,0.000343280000000,0.000354342000000,0.019788993000000,0.000092417000000,0.000080564000000 +0.000021121500000,0.000682638000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000349996000000,0.000077009000000,0.000044219000000,0.000032367000000,0.000083725000000,0.000377256000000,0.000292317000000,0.000349996000000,0.019416055000000,0.000464564000000,0.000351182000000,0.019730129000000,0.000089651000000,0.000080960000000 +0.000019739000000,0.000897551000000,0.000038293000000,0.000013686000000,0.000057256000000,0.000037503000000,0.000379626000000,0.000076614000000,0.000045404000000,0.000031182000000,0.000082144000000,0.000294292000000,0.000292713000000,0.000363033000000,0.018920253000000,0.000354342000000,0.000358292000000,0.019564598000000,0.000092416000000,0.000098737000000 +0.000021517000000,0.000716613000000,0.000038688000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000348021000000,0.000077009000000,0.000043823000000,0.000030787000000,0.000099133000000,0.000380811000000,0.000327478000000,0.000347626000000,0.020086080000000,0.000349207000000,0.000345650000000,0.019587907000000,0.000142194000000,0.000082935000000 +0.000019936500000,0.000763626000000,0.000037503000000,0.000018295000000,0.000055676000000,0.000071083000000,0.000348811000000,0.000074639000000,0.000045404000000,0.000031972000000,0.000084910000000,0.000338144000000,0.000338934000000,0.000351972000000,0.019243019000000,0.000407281000000,0.000361849000000,0.019575660000000,0.000110194000000,0.000080959000000 +0.000021121500000,0.000710292000000,0.000037503000000,0.000018690333333,0.000056070000000,0.000038688000000,0.000366984000000,0.000075034000000,0.000044219000000,0.000047380000000,0.000131132000000,0.000329058000000,0.000360663000000,0.000351972000000,0.020363018000000,0.000348416000000,0.000349997000000,0.019230771000000,0.000091626000000,0.000082540000000 +0.000021121500000,0.000675922000000,0.000038293000000,0.000014081333333,0.000055676000000,0.000036712000000,0.000348022000000,0.000144564000000,0.000045404000000,0.000031182000000,0.000081750000000,0.000294688000000,0.000292317000000,0.000354342000000,0.019291216000000,0.000361453000000,0.000380021000000,0.019944253000000,0.000092811000000,0.000082540000000 +0.000019936500000,0.000782984000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000378441000000,0.000081750000000,0.000043824000000,0.000031577000000,0.000086491000000,0.000295083000000,0.000313650000000,0.000361848000000,0.018967266000000,0.000350787000000,0.000348811000000,0.019417240000000,0.000092416000000,0.000080565000000 +0.000020924500000,0.000773502000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000343675000000,0.000076614000000,0.000045404000000,0.000031577000000,0.000082144000000,0.000359873000000,0.000295873000000,0.000356318000000,0.020117685000000,0.000346046000000,0.000680662000000,0.020041438000000,0.000127577000000,0.000080564000000 +0.000021319500000,0.000730045000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000417947000000,0.000074639000000,0.000045009000000,0.000030391000000,0.000084120000000,0.000295083000000,0.000290737000000,0.000347231000000,0.019258426000000,0.000357503000000,0.000365404000000,0.019145833000000,0.000089256000000,0.000160367000000 +0.000019937000000,0.000739527000000,0.000037502000000,0.000013686000000,0.000089651000000,0.000036713000000,0.000349602000000,0.000076218000000,0.000045404000000,0.000030787000000,0.000084120000000,0.000292317000000,0.000377255000000,0.000345255000000,0.019984153000000,0.000344070000000,0.000353552000000,0.020066722000000,0.000089650000000,0.000175774000000 +0.000021122000000,0.000681848000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000357108000000,0.000076614000000,0.000045009000000,0.000030787000000,0.000081750000000,0.000294688000000,0.000297058000000,0.000348811000000,0.019531413000000,0.000383576000000,0.000350787000000,0.020339709000000,0.000092812000000,0.000101503000000 +0.000019739000000,0.000718194000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000419132000000,0.000077009000000,0.000045800000000,0.000031577000000,0.000081750000000,0.000291923000000,0.000295478000000,0.000348811000000,0.019183364000000,0.000349601000000,0.000354738000000,0.019601734000000,0.000092416000000,0.000081749000000 +0.000019739500000,0.000732415000000,0.000037503000000,0.000013554666667,0.000055281000000,0.000038293000000,0.000348811000000,0.000076614000000,0.000045009000000,0.000030786000000,0.000084515000000,0.000365799000000,0.000296268000000,0.000347626000000,0.020109388000000,0.000355528000000,0.000354737000000,0.019704055000000,0.000095577000000,0.000082935000000 +0.000027443000000,0.000737947000000,0.000038293000000,0.000013554666667,0.000055676000000,0.000055281000000,0.000395428000000,0.000077404000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000295082000000,0.000295083000000,0.000352762000000,0.019149389000000,0.000351577000000,0.000391873000000,0.019034031000000,0.000090836000000,0.000114935000000 +0.000020924500000,0.000709107000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000051725000000,0.000349601000000,0.000080565000000,0.000043824000000,0.000031577000000,0.000084120000000,0.000292712000000,0.000366589000000,0.000399774000000,0.020059216000000,0.000345651000000,0.000348021000000,0.019643611000000,0.000092416000000,0.000083329000000 +0.000020529500000,0.000692910000000,0.000037503000000,0.000013027666667,0.000055675000000,0.000036712000000,0.000381206000000,0.000076613000000,0.000058836000000,0.000045404000000,0.000084120000000,0.000328268000000,0.000291922000000,0.000344861000000,0.019716302000000,0.000355527000000,0.000421107000000,0.019882623000000,0.000090046000000,0.000080170000000 +0.000020134500000,0.000739527000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000036712000000,0.000383577000000,0.000076219000000,0.000044219000000,0.000031182000000,0.000084121000000,0.000293503000000,0.000290737000000,0.000401750000000,0.019138723000000,0.000346836000000,0.000347231000000,0.019448450000000,0.000090046000000,0.000081354000000 +0.000019739000000,0.000750589000000,0.000037502000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000348021000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000082144000000,0.000361058000000,0.000329848000000,0.000346836000000,0.018994920000000,0.000401750000000,0.000423478000000,0.019587512000000,0.000092812000000,0.000082540000000 +0.000020727000000,0.000787329000000,0.000039083000000,0.000017636666667,0.000056071000000,0.000037108000000,0.000400959000000,0.000109009000000,0.000045009000000,0.000031182000000,0.000099528000000,0.000291528000000,0.000295083000000,0.000348416000000,0.020148499000000,0.000350392000000,0.000350787000000,0.020185240000000,0.000090442000000,0.000080960000000 +0.000020727000000,0.000863181000000,0.000037898000000,0.000013686000000,0.000057256000000,0.000036318000000,0.000384367000000,0.000076219000000,0.000045404000000,0.000031577000000,0.000084120000000,0.000297058000000,0.000360268000000,0.000346440000000,0.019262376000000,0.000349206000000,0.000471675000000,0.019937537000000,0.000092416000000,0.000083725000000 +0.000019739000000,0.001117996000000,0.000037897000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000353947000000,0.000079774000000,0.000046195000000,0.000032763000000,0.000085305000000,0.000328663000000,0.000289947000000,0.000345651000000,0.019081043000000,0.000366984000000,0.000347231000000,0.019511660000000,0.000105849000000,0.000116910000000 +0.000019739000000,0.000717008000000,0.000039478000000,0.000012896000000,0.000056860000000,0.000036713000000,0.000435724000000,0.000074243000000,0.000043823000000,0.000032367000000,0.000083725000000,0.000293898000000,0.000292317000000,0.000346046000000,0.020241339000000,0.000348417000000,0.000381206000000,0.020071463000000,0.000091626000000,0.000080959000000 +0.000020727000000,0.000750983000000,0.000038688000000,0.000012896000000,0.000057255000000,0.000037108000000,0.000346836000000,0.000075034000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000292318000000,0.000324318000000,0.000354342000000,0.019159661000000,0.000380021000000,0.000347626000000,0.019301092000000,0.000093207000000,0.000082935000000 +0.000020924500000,0.000718984000000,0.000037898000000,0.000012896000000,0.000056070000000,0.000071478000000,0.000353157000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000082540000000,0.000679873000000,0.000300219000000,0.000344465000000,0.018923809000000,0.000347231000000,0.000439280000000,0.019822574000000,0.000089651000000,0.000082934000000 +0.000020726500000,0.000743082000000,0.000038688000000,0.000013291000000,0.000056466000000,0.000036713000000,0.000389897000000,0.000074243000000,0.000048960000000,0.000031972000000,0.000124812000000,0.000328663000000,0.000292712000000,0.000345651000000,0.020108993000000,0.000379231000000,0.000351182000000,0.019441339000000,0.000092811000000,0.000088071000000 +0.000021122000000,0.000724910000000,0.000084515000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000353552000000,0.000109404000000,0.000045009000000,0.000032762000000,0.000081355000000,0.000296268000000,0.000305749000000,0.000345651000000,0.025888742000000,0.000346046000000,0.000432169000000,0.019287265000000,0.000089651000000,0.000080959000000 +0.000020726500000,0.000749799000000,0.000038293000000,0.000013686000000,0.000098737000000,0.000036713000000,0.000381996000000,0.000075034000000,0.000046194000000,0.000030787000000,0.000082144000000,0.000297848000000,0.000293502000000,0.000359478000000,0.022900892000000,0.000350787000000,0.000347626000000,0.020048944000000,0.000158787000000,0.000080960000000 +0.000019936500000,0.000714243000000,0.000038293000000,0.000013554333333,0.000057651000000,0.000036318000000,0.000351577000000,0.000074639000000,0.000044218000000,0.000030392000000,0.000084120000000,0.000295083000000,0.000367379000000,0.000351576000000,0.024494175000000,0.000348021000000,0.000436120000000,0.019650722000000,0.000092021000000,0.000093997000000 +0.000021121500000,0.000717009000000,0.000037898000000,0.000018163666667,0.000056071000000,0.000037503000000,0.000349206000000,0.000076614000000,0.000046195000000,0.000030392000000,0.000084120000000,0.000295478000000,0.000363034000000,0.000344465000000,0.019843907000000,0.000878588000000,0.000350786000000,0.020731215000000,0.000089256000000,0.000080169000000 +0.000019936500000,0.000766392000000,0.000038688000000,0.000013554333333,0.000055676000000,0.000036712000000,0.000387527000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000082540000000,0.000388317000000,0.000392663000000,0.000348416000000,0.018930130000000,0.000395429000000,0.000424268000000,0.019132006000000,0.000089651000000,0.000081750000000 +0.000019739000000,0.000775478000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000037108000000,0.000350787000000,0.000074243000000,0.000045009000000,0.000033552000000,0.000084515000000,0.000291922000000,0.000292713000000,0.000353947000000,0.022676893000000,0.000371330000000,0.000347231000000,0.019079463000000,0.000092811000000,0.000082539000000 +0.000020726500000,0.000713453000000,0.000038293000000,0.000013027666667,0.000057651000000,0.000038293000000,0.000379231000000,0.000074639000000,0.000045404000000,0.000031182000000,0.000115725000000,0.000293898000000,0.000294688000000,0.000697650000000,0.019314130000000,0.000364218000000,0.000393059000000,0.019567759000000,0.000090046000000,0.000082539000000 +0.000021121500000,0.000768367000000,0.000039083000000,0.000013554666667,0.000055281000000,0.000037108000000,0.000446391000000,0.000118886000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000295083000000,0.000619033000000,0.000454688000000,0.019874326000000,0.000374096000000,0.000349206000000,0.019129240000000,0.000133898000000,0.000082934000000 +0.000020726500000,0.000721750000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000055676000000,0.000353157000000,0.000074639000000,0.000083330000000,0.000031577000000,0.000081750000000,0.000292317000000,0.000361058000000,0.000361453000000,0.020807857000000,0.000375280000000,0.000347231000000,0.019696154000000,0.000090441000000,0.000082540000000 +0.000021319000000,0.000747428000000,0.000041849000000,0.000012896000000,0.000089651000000,0.000050934000000,0.000598095000000,0.000077799000000,0.000063972000000,0.000031182000000,0.000081750000000,0.000377255000000,0.000297848000000,0.000355133000000,0.020849734000000,0.000344860000000,0.000359872000000,0.020223956000000,0.000092021000000,0.000082935000000 +0.000020726500000,0.000725700000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000036713000000,0.000380021000000,0.000077009000000,0.000060417000000,0.000031577000000,0.000084120000000,0.000291527000000,0.000392663000000,0.000351577000000,0.019298722000000,0.000346441000000,0.000354342000000,0.019333093000000,0.000092021000000,0.000087281000000 +0.000019739500000,0.000714639000000,0.000038293000000,0.000013554333333,0.000056861000000,0.000037898000000,0.000351972000000,0.000076614000000,0.000045009000000,0.000030787000000,0.000084121000000,0.000294688000000,0.000313256000000,0.000344466000000,0.019369043000000,0.000347626000000,0.000630095000000,0.019852203000000,0.000092417000000,0.000083725000000 +0.000020924500000,0.000733601000000,0.000038688000000,0.000012896000000,0.000057256000000,0.000037898000000,0.000404515000000,0.000077009000000,0.000045404000000,0.000046590000000,0.000084120000000,0.000381997000000,0.000310885000000,0.000473256000000,0.019050228000000,0.000347626000000,0.000378441000000,0.021699116000000,0.000092811000000,0.000080959000000 +0.000019739000000,0.000671182000000,0.000038688000000,0.000017900000000,0.000059231000000,0.000037503000000,0.000356317000000,0.000079379000000,0.000043823000000,0.000031972000000,0.000148910000000,0.000292318000000,0.000320762000000,0.000347231000000,0.019031661000000,0.000347231000000,0.000347626000000,0.019962821000000,0.000090441000000,0.000080565000000 +0.000020727000000,0.000689354000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000349601000000,0.000130737000000,0.000043824000000,0.000031576000000,0.000081750000000,0.000328663000000,0.000309305000000,0.000398194000000,0.019719462000000,0.000346440000000,0.000401749000000,0.018972796000000,0.000212120000000,0.000082935000000 +0.000020727000000,0.000718984000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000451132000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000291132000000,0.000313256000000,0.000353157000000,0.019379315000000,0.000350392000000,0.000345256000000,0.021042128000000,0.000220416000000,0.000167478000000 +0.000019936500000,0.001296168000000,0.000037898000000,0.000012896000000,0.000056070000000,0.000037898000000,0.000348811000000,0.000077009000000,0.000043824000000,0.000030787000000,0.000084120000000,0.000295083000000,0.000310491000000,0.000349996000000,0.019941882000000,0.000398588000000,0.000398589000000,0.020460993000000,0.000106243000000,0.000082935000000 +0.000037912000000,0.000709108000000,0.000038688000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000401354000000,0.000075428000000,0.000043824000000,0.000031182000000,0.000082145000000,0.000330243000000,0.000311280000000,0.000396614000000,0.019435019000000,0.000342885000000,0.000349207000000,0.019890524000000,0.000095972000000,0.000080170000000 +0.000053122000000,0.000717403000000,0.000038293000000,0.000012896000000,0.000069502000000,0.000070688000000,0.000349206000000,0.000077404000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000298639000000,0.000310095000000,0.000348416000000,0.019405783000000,0.000347626000000,0.000356712000000,0.019468203000000,0.000092811000000,0.000081354000000 +0.000026850500000,0.000713453000000,0.000075823000000,0.000013554333333,0.000058046000000,0.000038293000000,0.000344466000000,0.000076614000000,0.000045799000000,0.000030787000000,0.000117700000000,0.000293503000000,0.000309700000000,0.000346835000000,0.019426722000000,0.000347231000000,0.000353157000000,0.019158475000000,0.000089651000000,0.000080960000000 +0.000021122000000,0.000709898000000,0.000037898000000,0.000013686000000,0.000055676000000,0.000036713000000,0.000389108000000,0.000076613000000,0.000045404000000,0.000033948000000,0.000084120000000,0.000304960000000,0.000308515000000,0.000347626000000,0.019374969000000,0.000345650000000,0.000347231000000,0.019016649000000,0.000092811000000,0.000082540000000 +0.000020924000000,0.000711873000000,0.000038293000000,0.000013027666667,0.000056860000000,0.000037503000000,0.000348811000000,0.000088861000000,0.000044614000000,0.000033157000000,0.000081749000000,0.000295478000000,0.000346836000000,0.000346441000000,0.020282820000000,0.000428614000000,0.000470490000000,0.019824549000000,0.000092812000000,0.000080564000000 +0.000020726500000,0.000764811000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000431379000000,0.000074639000000,0.000045009000000,0.000064367000000,0.000084120000000,0.000330639000000,0.000311281000000,0.000344860000000,0.019508895000000,0.000349996000000,0.000350391000000,0.019732500000000,0.000090836000000,0.000114540000000 +0.000019936500000,0.000717799000000,0.000038292000000,0.000024879333333,0.000055281000000,0.000036318000000,0.000350391000000,0.000077008000000,0.000045799000000,0.000032367000000,0.000082145000000,0.000293898000000,0.000310490000000,0.000410440000000,0.019160450000000,0.000346441000000,0.000378836000000,0.019164401000000,0.000092021000000,0.000082540000000 +0.000019739000000,0.000720959000000,0.000042244000000,0.000013027666667,0.000055675000000,0.000037898000000,0.000350391000000,0.000074638000000,0.000044219000000,0.000031181000000,0.000081750000000,0.000293107000000,0.000402144000000,0.000346836000000,0.020102277000000,0.000348021000000,0.000351576000000,0.019492302000000,0.000125602000000,0.000080960000000 +0.000021319000000,0.000721354000000,0.000037503000000,0.000013027666667,0.000057651000000,0.000037108000000,0.000419528000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000325107000000,0.000314836000000,0.000530539000000,0.019401438000000,0.000347231000000,0.000406490000000,0.020041438000000,0.000093206000000,0.000080170000000 +0.000020726500000,0.000727676000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000037503000000,0.000353157000000,0.000076614000000,0.000045404000000,0.000031577000000,0.000118885000000,0.000294688000000,0.000308514000000,0.000346441000000,0.019562229000000,0.000441650000000,0.000347626000000,0.019600944000000,0.000093602000000,0.000082540000000 +0.000019739000000,0.000727280000000,0.000038293000000,0.000013027666667,0.000057651000000,0.000037502000000,0.000396219000000,0.000075823000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000363429000000,0.000316811000000,0.000387528000000,0.019325981000000,0.000359873000000,0.000388317000000,0.019602525000000,0.000092416000000,0.000081355000000 +0.000020529500000,0.000760860000000,0.000056070000000,0.000013027666667,0.000055281000000,0.000057256000000,0.000350787000000,0.000107824000000,0.000043823000000,0.000031577000000,0.000081750000000,0.000293898000000,0.000310490000000,0.000359478000000,0.019724994000000,0.000350391000000,0.000350786000000,0.019156105000000,0.000089651000000,0.000081750000000 +0.000020726500000,0.000724909000000,0.000038293000000,0.000013686000000,0.000055676000000,0.000037898000000,0.000349602000000,0.000076219000000,0.000043823000000,0.000031972000000,0.000084121000000,0.000292317000000,0.000312861000000,0.000350787000000,0.019250130000000,0.000350391000000,0.000416762000000,0.019689438000000,0.000089256000000,0.000154046000000 +0.000020924000000,0.000727675000000,0.000037898000000,0.000013027666667,0.000058046000000,0.000036317000000,0.000384762000000,0.000077009000000,0.000045404000000,0.000033157000000,0.000084120000000,0.000326687000000,0.000316021000000,0.000344860000000,0.019625438000000,0.000348416000000,0.000345651000000,0.019179018000000,0.000090046000000,0.000082935000000 +0.000020924500000,0.000724514000000,0.000038293000000,0.000013686000000,0.000056070000000,0.000037898000000,0.000344861000000,0.000074244000000,0.000045404000000,0.000030787000000,0.000084120000000,0.000292317000000,0.000344860000000,0.000348021000000,0.020172598000000,0.000349206000000,0.000419527000000,0.019656253000000,0.000093207000000,0.000081750000000 +0.000020727000000,0.000731626000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036713000000,0.000633256000000,0.000075034000000,0.000045009000000,0.000031182000000,0.000082144000000,0.000294293000000,0.000315626000000,0.000351576000000,0.019303858000000,0.000349206000000,0.000350391000000,0.019203117000000,0.000092021000000,0.000083330000000 +0.000020134500000,0.000718194000000,0.000038293000000,0.000024879666667,0.000055676000000,0.000037898000000,0.000382787000000,0.000074638000000,0.000044219000000,0.000044219000000,0.000152861000000,0.000292712000000,0.000312070000000,0.000351182000000,0.020323116000000,0.000353947000000,0.000379626000000,0.019100796000000,0.000093207000000,0.000081354000000 +0.000030406000000,0.000726885000000,0.000037898000000,0.000012896000000,0.000090441000000,0.000038293000000,0.000348416000000,0.000078194000000,0.000044219000000,0.000031972000000,0.000084911000000,0.000290737000000,0.000309305000000,0.000353947000000,0.019357192000000,0.000353157000000,0.000349601000000,0.019883413000000,0.000089650000000,0.000082540000000 +0.000020924000000,0.000750589000000,0.000037898000000,0.000013027666667,0.000056070000000,0.000037108000000,0.000386737000000,0.000109799000000,0.000044614000000,0.000032762000000,0.000082539000000,0.000454293000000,0.000321552000000,0.000361453000000,0.019815462000000,0.000348417000000,0.000346836000000,0.019098031000000,0.000092812000000,0.000082540000000 +0.000028430500000,0.000670392000000,0.000038688000000,0.000013554333333,0.000055675000000,0.000037503000000,0.000383972000000,0.000076219000000,0.000086491000000,0.000030391000000,0.000084910000000,0.000428613000000,0.000327873000000,0.000356317000000,0.019467809000000,0.000385947000000,0.000352367000000,0.019169143000000,0.000092811000000,0.000082540000000 +0.000019936500000,0.000752169000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000348812000000,0.000074243000000,0.000044219000000,0.000031972000000,0.000085305000000,0.000378835000000,0.000294688000000,0.000347231000000,0.019546031000000,0.000349997000000,0.000352367000000,0.019169932000000,0.000160762000000,0.000081355000000 +0.000020924500000,0.000715823000000,0.000041849000000,0.000013027666667,0.000056071000000,0.000071478000000,0.000385552000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000297453000000,0.000294688000000,0.000345651000000,0.019200747000000,0.000380021000000,0.000385157000000,0.019548796000000,0.000092811000000,0.000080959000000 +0.000037517000000,0.000730440000000,0.000038688000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000345650000000,0.000074243000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000364613000000,0.000291922000000,0.000349206000000,0.020071463000000,0.000351971000000,0.000354737000000,0.019423956000000,0.000090046000000,0.000080170000000 +0.000035936500000,0.000713058000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000038293000000,0.000381206000000,0.000074638000000,0.000044219000000,0.000031182000000,0.000081749000000,0.000475231000000,0.000291923000000,0.000348416000000,0.019696154000000,0.000346441000000,0.000382787000000,0.019551562000000,0.000090046000000,0.000080565000000 +0.000021319500000,0.000920070000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000351971000000,0.000074243000000,0.000044614000000,0.000030786000000,0.000084120000000,0.000500120000000,0.000364219000000,0.000347231000000,0.019100402000000,0.000350392000000,0.000359083000000,0.019793339000000,0.000090836000000,0.000082935000000 +0.000019936500000,0.000678687000000,0.000039873000000,0.000012896000000,0.000056466000000,0.000038293000000,0.000354738000000,0.000152071000000,0.000046589000000,0.000031182000000,0.000082540000000,0.000325107000000,0.000292712000000,0.000352367000000,0.020108598000000,0.000350787000000,0.000394638000000,0.019054179000000,0.000092021000000,0.000080960000000 +0.000019936500000,0.000747428000000,0.000038293000000,0.000024879666667,0.000056466000000,0.000037898000000,0.000379626000000,0.000081355000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000326688000000,0.000291132000000,0.000348811000000,0.019084204000000,0.000345256000000,0.000349996000000,0.020073833000000,0.000165503000000,0.000083725000000 +0.000020924500000,0.000707527000000,0.000037503000000,0.000013422666667,0.000056071000000,0.000036317000000,0.000345255000000,0.000094391000000,0.000044219000000,0.000072664000000,0.000083725000000,0.000321947000000,0.000324317000000,0.000344860000000,0.019242228000000,0.000345256000000,0.000396614000000,0.019331117000000,0.000107034000000,0.000084120000000 +0.000019937000000,0.000757700000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000381996000000,0.000077009000000,0.000065552000000,0.000031577000000,0.000081750000000,0.000506046000000,0.000294292000000,0.000349206000000,0.020824054000000,0.000357898000000,0.000351971000000,0.020116105000000,0.000090046000000,0.000080170000000 +0.000020726500000,0.000723724000000,0.000037898000000,0.000013027666667,0.000057256000000,0.000036713000000,0.000348811000000,0.000074243000000,0.000046195000000,0.000031577000000,0.000084120000000,0.000384367000000,0.000333008000000,0.000383182000000,0.018861784000000,0.000419132000000,0.000384762000000,0.019628204000000,0.000090046000000,0.000080564000000 +0.000020924000000,0.000696860000000,0.000080565000000,0.000013027666667,0.000070293000000,0.000037108000000,0.000347231000000,0.000074639000000,0.000044219000000,0.000031576000000,0.000082145000000,0.000445601000000,0.000293898000000,0.000348416000000,0.019441734000000,0.000356713000000,0.000350786000000,0.019495858000000,0.000089651000000,0.000082540000000 +0.000020331500000,0.000737947000000,0.000040268000000,0.000012896000000,0.000056071000000,0.000038293000000,0.000370540000000,0.000077009000000,0.000044614000000,0.000031182000000,0.000084515000000,0.000387923000000,0.000292713000000,0.000346046000000,0.019429093000000,0.000349206000000,0.000347626000000,0.019633734000000,0.000091231000000,0.000082540000000 +0.000020727000000,0.000749403000000,0.000038688000000,0.000013554666667,0.000056466000000,0.000037897000000,0.000353947000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000082144000000,0.000359873000000,0.000327873000000,0.000345651000000,0.020847363000000,0.000353552000000,0.000347231000000,0.019419611000000,0.000126787000000,0.000104268000000 +0.000019739000000,0.000754145000000,0.000037503000000,0.000013554333333,0.000055280000000,0.000037108000000,0.000379627000000,0.000075034000000,0.000043824000000,0.000031577000000,0.000081749000000,0.000322342000000,0.000290342000000,0.000346441000000,0.018872451000000,0.000395824000000,0.000398984000000,0.020474425000000,0.000088861000000,0.000096367000000 +0.000026850000000,0.000716219000000,0.000037898000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000346441000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000082145000000,0.000320367000000,0.000293107000000,0.000346836000000,0.021721239000000,0.000348812000000,0.000371724000000,0.019662179000000,0.000092022000000,0.000084120000000 +0.000020529000000,0.000686984000000,0.000041849000000,0.000013686333333,0.000056860000000,0.000037108000000,0.000360663000000,0.000078984000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000321947000000,0.000291132000000,0.000344465000000,0.019361932000000,0.000351181000000,0.000351577000000,0.019740401000000,0.000090046000000,0.000080960000000 +0.000020924000000,0.001018440000000,0.000039478000000,0.000019612000000,0.000055281000000,0.000037898000000,0.000370145000000,0.000076614000000,0.000046589000000,0.000030786000000,0.000101502000000,0.000326687000000,0.000292317000000,0.000346836000000,0.019199166000000,0.000347626000000,0.000534095000000,0.020197486000000,0.000094787000000,0.000082145000000 +0.000020727000000,0.000735972000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000037107000000,0.000355132000000,0.000074243000000,0.000045799000000,0.000046984000000,0.000084515000000,0.000310490000000,0.000328663000000,0.000347231000000,0.022312250000000,0.000349206000000,0.000347231000000,0.019117389000000,0.000091626000000,0.000081355000000 +0.000019936500000,0.000722539000000,0.000038688000000,0.000013554666667,0.000056465000000,0.000036713000000,0.000380416000000,0.000076614000000,0.000046195000000,0.000031577000000,0.000084515000000,0.000312465000000,0.000296269000000,0.000359478000000,0.020205388000000,0.000351576000000,0.000433354000000,0.019311364000000,0.000092022000000,0.000080959000000 +0.000019739000000,0.000714638000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000037898000000,0.000348811000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000084515000000,0.000349602000000,0.000294293000000,0.000477996000000,0.020029981000000,0.000355922000000,0.000350786000000,0.019696549000000,0.000107823000000,0.000117700000000 +0.000021122000000,0.000735971000000,0.000041453000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000416762000000,0.000077404000000,0.000045009000000,0.000030786000000,0.000082145000000,0.000314441000000,0.000464960000000,0.000344860000000,0.020679461000000,0.000470885000000,0.000393058000000,0.019284895000000,0.000092417000000,0.000080565000000 +0.000020727000000,0.000703181000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000056860000000,0.000347231000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000081750000000,0.000352367000000,0.000290737000000,0.000348021000000,0.019644401000000,0.000349207000000,0.000347231000000,0.019437783000000,0.000092417000000,0.000082540000000 +0.000019739000000,0.000747823000000,0.000037897000000,0.000012896000000,0.000089651000000,0.000037502000000,0.000374885000000,0.000079379000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000323527000000,0.000324318000000,0.000353947000000,0.019857339000000,0.000346046000000,0.000393848000000,0.019770426000000,0.000093206000000,0.000083330000000 +0.000020134000000,0.000703972000000,0.000037898000000,0.000013817666667,0.000055676000000,0.000037108000000,0.000388713000000,0.000075034000000,0.000044219000000,0.000031577000000,0.000117700000000,0.000316416000000,0.000293898000000,0.000428613000000,0.018462377000000,0.000369750000000,0.000349207000000,0.019198377000000,0.000092811000000,0.000081355000000 +0.000020727000000,0.000714638000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000071083000000,0.000348022000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000081750000000,0.000311675000000,0.000295478000000,0.000353552000000,0.019117784000000,0.000344465000000,0.000381207000000,0.019216549000000,0.000090441000000,0.000082540000000 +0.000020924500000,0.000697255000000,0.000037503000000,0.000012896000000,0.000058046000000,0.000037108000000,0.000362243000000,0.000078589000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000312465000000,0.000361059000000,0.000362638000000,0.018390871000000,0.000347231000000,0.000346440000000,0.021314721000000,0.000109009000000,0.000082935000000 +0.000020924000000,0.000691725000000,0.000039479000000,0.000020138666667,0.000056071000000,0.000036712000000,0.000351971000000,0.000103084000000,0.000044219000000,0.000032367000000,0.000082145000000,0.000310886000000,0.000292318000000,0.000355527000000,0.018965290000000,0.000352367000000,0.000401749000000,0.021165388000000,0.000089256000000,0.000096762000000 +0.000020726500000,0.000732416000000,0.000037503000000,0.000013554666667,0.000055281000000,0.000036318000000,0.000354342000000,0.000076614000000,0.000080960000000,0.000053700000000,0.000084120000000,0.000315231000000,0.000325503000000,0.000347231000000,0.018325686000000,0.000383576000000,0.000352367000000,0.020756103000000,0.000092811000000,0.000080565000000 +0.000019739000000,0.000741503000000,0.000037898000000,0.000013554666667,0.000055675000000,0.000037107000000,0.000490638000000,0.000077404000000,0.000043824000000,0.000031182000000,0.000081750000000,0.000312466000000,0.000292317000000,0.000344465000000,0.018851512000000,0.000348021000000,0.000379230000000,0.020042623000000,0.000089256000000,0.000080959000000 +0.000019739000000,0.000705946000000,0.000072664000000,0.000013686000000,0.000056861000000,0.000037898000000,0.000344465000000,0.000077009000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000346836000000,0.000296268000000,0.000348811000000,0.018652402000000,0.000350786000000,0.000348021000000,0.019693388000000,0.000092811000000,0.000080565000000 +0.000020727000000,0.000675922000000,0.000037897000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000348417000000,0.000074639000000,0.000045800000000,0.000031577000000,0.000116515000000,0.000348416000000,0.000325898000000,0.000381997000000,0.018990574000000,0.000383972000000,0.000351576000000,0.019242228000000,0.000088861000000,0.000080564000000 +0.000020134500000,0.000700415000000,0.000039478000000,0.000013554333333,0.000055675000000,0.000127182000000,0.000384762000000,0.000112565000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000314046000000,0.000292317000000,0.000347231000000,0.019133191000000,0.000348416000000,0.000345256000000,0.019699314000000,0.000092811000000,0.000081750000000 +0.000019739000000,0.000730046000000,0.000037503000000,0.000013554333333,0.000057255000000,0.000080565000000,0.000347231000000,0.000076614000000,0.000044218000000,0.000031972000000,0.000084120000000,0.000310490000000,0.000292712000000,0.000540021000000,0.018414574000000,0.000400959000000,0.000360268000000,0.020194327000000,0.000123626000000,0.000082540000000 +0.000031393000000,0.000705156000000,0.000037898000000,0.000012896000000,0.000057255000000,0.000038688000000,0.000384761000000,0.000076614000000,0.000044219000000,0.000030392000000,0.000082539000000,0.000308515000000,0.000292713000000,0.000348811000000,0.018386131000000,0.000355527000000,0.000383182000000,0.020294672000000,0.000092417000000,0.000096762000000 +0.000021121500000,0.000725305000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000051330000000,0.000351971000000,0.000078590000000,0.000043824000000,0.000030787000000,0.000084516000000,0.000313650000000,0.000295873000000,0.000346046000000,0.018880748000000,0.000344466000000,0.000357107000000,0.019704055000000,0.000092021000000,0.000082540000000 +0.000019936500000,0.000679873000000,0.000038688000000,0.000013554333333,0.000056070000000,0.000037108000000,0.000369749000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084910000000,0.000311280000000,0.000358687000000,0.000347231000000,0.019033241000000,0.000348021000000,0.000402539000000,0.019381685000000,0.000090046000000,0.000083330000000 +0.000021319500000,0.000751378000000,0.000037898000000,0.000026459666667,0.000056071000000,0.000037897000000,0.000351972000000,0.000076614000000,0.000044218000000,0.000031972000000,0.000101897000000,0.000309700000000,0.000291132000000,0.000348021000000,0.018657538000000,0.000343280000000,0.000346836000000,0.019947808000000,0.000092811000000,0.000082935000000 +0.000019937000000,0.000776663000000,0.000037898000000,0.000018426666667,0.000055676000000,0.000037107000000,0.000349206000000,0.000074638000000,0.000043824000000,0.000031577000000,0.000096367000000,0.000309701000000,0.000297453000000,0.000347231000000,0.019148994000000,0.000387528000000,0.000440465000000,0.019624253000000,0.000092417000000,0.000086886000000 +0.000019739000000,0.000715033000000,0.000037898000000,0.000013686000000,0.000055676000000,0.000037503000000,0.000379231000000,0.000077799000000,0.000043824000000,0.000105059000000,0.000084120000000,0.000309305000000,0.000329058000000,0.000397799000000,0.018652797000000,0.000346046000000,0.000350391000000,0.019675216000000,0.000112564000000,0.000080564000000 +0.000020924000000,0.000716614000000,0.000040663000000,0.000013686000000,0.000058046000000,0.000036318000000,0.000347231000000,0.000076614000000,0.000045009000000,0.000084120000000,0.000084120000000,0.000326688000000,0.000296269000000,0.000344861000000,0.018705340000000,0.000348021000000,0.000378836000000,0.019962030000000,0.000090046000000,0.000080960000000 +0.000019739500000,0.000672366000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000424663000000,0.000074639000000,0.000044219000000,0.000033552000000,0.000084120000000,0.000313651000000,0.000331033000000,0.000348021000000,0.018976747000000,0.000346046000000,0.000352367000000,0.019185735000000,0.000092416000000,0.000081355000000 +0.000020924500000,0.000949700000000,0.000039083000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000345256000000,0.000082539000000,0.000044219000000,0.000045404000000,0.000082145000000,0.000315231000000,0.000355922000000,0.000347626000000,0.019256056000000,0.000352762000000,0.000465354000000,0.019924894000000,0.000094392000000,0.000082935000000 +0.000021122000000,0.000718589000000,0.000038688000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000349601000000,0.000076614000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000312465000000,0.000292317000000,0.000344071000000,0.018637785000000,0.000346441000000,0.000346836000000,0.019105538000000,0.000092416000000,0.000084120000000 +0.000019739000000,0.000732416000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000036713000000,0.000393058000000,0.000075033000000,0.000045009000000,0.000030787000000,0.000082144000000,0.000310096000000,0.000325107000000,0.000346045000000,0.018531908000000,0.000349206000000,0.000387132000000,0.019586722000000,0.000092812000000,0.000082540000000 +0.000020726500000,0.000713058000000,0.000038293000000,0.000015003000000,0.000055281000000,0.000036713000000,0.000396614000000,0.000074244000000,0.000046589000000,0.000032367000000,0.000084120000000,0.000404515000000,0.000299428000000,0.000346441000000,0.019220896000000,0.000506441000000,0.000350787000000,0.020146524000000,0.000093206000000,0.000080959000000 +0.000019739000000,0.000684218000000,0.000038688000000,0.000028566666667,0.000056861000000,0.000037898000000,0.000388317000000,0.000077799000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000326293000000,0.000349601000000,0.000359873000000,0.018421291000000,0.000350787000000,0.000344860000000,0.019278969000000,0.000092812000000,0.000081750000000 +0.000019936500000,0.000707527000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000036712000000,0.000362639000000,0.000074639000000,0.000045404000000,0.000065552000000,0.000082144000000,0.000309700000000,0.000307330000000,0.000348811000000,0.019372598000000,0.000346836000000,0.000346046000000,0.020041043000000,0.000093207000000,0.000081355000000 +0.000021121500000,0.000744663000000,0.000037108000000,0.000012896000000,0.000089651000000,0.000036713000000,0.000351972000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000326292000000,0.000290737000000,0.000346046000000,0.018799760000000,0.000350392000000,0.000348811000000,0.019342969000000,0.000092811000000,0.000082539000000 +0.000020924000000,0.000716613000000,0.000057256000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000383576000000,0.000074243000000,0.000061206000000,0.000031577000000,0.000084120000000,0.000311281000000,0.000325503000000,0.000346836000000,0.018805291000000,0.000346836000000,0.000429403000000,0.019402623000000,0.000092021000000,0.000081355000000 +0.000020727000000,0.000718984000000,0.000053700000000,0.000013159666667,0.000055676000000,0.000037503000000,0.000359873000000,0.000074244000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000344861000000,0.000291132000000,0.000372515000000,0.019475709000000,0.000348812000000,0.000346441000000,0.019984944000000,0.000095577000000,0.000080564000000 +0.000019936500000,0.000675922000000,0.000038688000000,0.000013554666667,0.000055280000000,0.000036713000000,0.000381206000000,0.000077405000000,0.000044218000000,0.000031577000000,0.000098342000000,0.000308910000000,0.000316811000000,0.000350786000000,0.018895365000000,0.000349207000000,0.000383182000000,0.019515611000000,0.000090046000000,0.000082144000000 +0.000019739000000,0.000747033000000,0.000037898000000,0.000013554333333,0.000055280000000,0.000037503000000,0.000351972000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000081750000000,0.000314836000000,0.000293107000000,0.000353947000000,0.018875611000000,0.000348811000000,0.000346836000000,0.019393537000000,0.000125996000000,0.000080565000000 +0.000021319500000,0.000713058000000,0.000037503000000,0.000013554333333,0.000057256000000,0.000036318000000,0.000772713000000,0.000077009000000,0.000045009000000,0.000031577000000,0.000084910000000,0.000311676000000,0.000292317000000,0.000361453000000,0.018515711000000,0.000348812000000,0.000393453000000,0.019262771000000,0.000092811000000,0.000080169000000 +0.000020726500000,0.000719774000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000433750000000,0.000075429000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000310885000000,0.000333404000000,0.000355528000000,0.019421981000000,0.000347626000000,0.000353157000000,0.019468994000000,0.000092417000000,0.000084515000000 +0.000019936500000,0.000793650000000,0.000038688000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000346046000000,0.000075824000000,0.000045009000000,0.000031182000000,0.000086095000000,0.000373305000000,0.000294293000000,0.000351577000000,0.018500303000000,0.000345650000000,0.000401354000000,0.019212599000000,0.000090441000000,0.000095182000000 +0.000019739000000,0.000675923000000,0.000038293000000,0.000017505000000,0.000055676000000,0.000036713000000,0.000419132000000,0.000074243000000,0.000044613000000,0.000031577000000,0.000082144000000,0.000308515000000,0.000290737000000,0.000344466000000,0.018856648000000,0.000400959000000,0.000354342000000,0.019438574000000,0.000090046000000,0.000083330000000 +0.000020924000000,0.001052415000000,0.000037898000000,0.000013554333333,0.000057256000000,0.000036713000000,0.000348021000000,0.000077009000000,0.000045799000000,0.000031972000000,0.000137454000000,0.000313651000000,0.000321157000000,0.000356713000000,0.020029190000000,0.000360663000000,0.000385947000000,0.020518277000000,0.000092417000000,0.000082144000000 +0.000020924500000,0.000686588000000,0.000057255000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000382787000000,0.000076614000000,0.000046195000000,0.000045009000000,0.000103873000000,0.000314441000000,0.000293108000000,0.000348021000000,0.018830574000000,0.000356318000000,0.000357502000000,0.019379315000000,0.000090046000000,0.000082934000000 +0.000021122000000,0.000750194000000,0.000037897000000,0.000012896000000,0.000056466000000,0.000053701000000,0.000349602000000,0.000074243000000,0.000043824000000,0.000031972000000,0.000082145000000,0.000316021000000,0.000328663000000,0.000382391000000,0.019201142000000,0.000351972000000,0.000368169000000,0.020226721000000,0.000092811000000,0.000082540000000 +0.000020727000000,0.000739132000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000346046000000,0.000074243000000,0.000043824000000,0.000030787000000,0.000082145000000,0.000393453000000,0.000294292000000,0.000352762000000,0.019582376000000,0.000351182000000,0.000370144000000,0.020138228000000,0.000092812000000,0.000082935000000 +0.000019739000000,0.000756910000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000038293000000,0.000450342000000,0.000074639000000,0.000045799000000,0.000032367000000,0.000082145000000,0.000312070000000,0.000293107000000,0.000348417000000,0.020120450000000,0.000348021000000,0.000380021000000,0.020462968000000,0.000091626000000,0.000100712000000 +0.000020134000000,0.000711477000000,0.000040268000000,0.000013818000000,0.000055281000000,0.000037897000000,0.000348021000000,0.000077404000000,0.000044219000000,0.000031577000000,0.000083725000000,0.000315626000000,0.000363824000000,0.000345256000000,0.018800155000000,0.000368169000000,0.000351972000000,0.019344550000000,0.000092416000000,0.000082935000000 +0.000037714500000,0.000674342000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000363428000000,0.000074244000000,0.000045009000000,0.000032367000000,0.000124417000000,0.000317207000000,0.000293503000000,0.000348021000000,0.019132402000000,0.000347231000000,0.000351182000000,0.019456747000000,0.000092022000000,0.000083330000000 +0.000020134500000,0.000753749000000,0.000037503000000,0.000013028000000,0.000056466000000,0.000093602000000,0.000347626000000,0.000077799000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000361453000000,0.000328268000000,0.000429404000000,0.019708006000000,0.000353947000000,0.000364613000000,0.019152154000000,0.000091626000000,0.000081750000000 +0.000019936500000,0.000718193000000,0.000037898000000,0.000013554666667,0.000160762000000,0.000037898000000,0.000349207000000,0.000077009000000,0.000044614000000,0.000030786000000,0.000081750000000,0.000313651000000,0.000293107000000,0.000347231000000,0.019038772000000,0.000349996000000,0.000347231000000,0.019762129000000,0.000129947000000,0.000081354000000 +0.000020727000000,0.000764416000000,0.000038293000000,0.000017636666667,0.000120466000000,0.000037108000000,0.000449947000000,0.000074244000000,0.000045799000000,0.000030786000000,0.000086095000000,0.000309700000000,0.000295873000000,0.000397009000000,0.019485586000000,0.000349996000000,0.000347626000000,0.020305733000000,0.000090046000000,0.000080565000000 +0.000020727000000,0.000683824000000,0.000038688000000,0.000013027666667,0.000084515000000,0.000057256000000,0.000357502000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000082540000000,0.000312861000000,0.000325897000000,0.000344860000000,0.018611711000000,0.000347626000000,0.000347231000000,0.019948203000000,0.000089651000000,0.000081354000000 +0.000019739000000,0.000693305000000,0.000037898000000,0.000013554333333,0.000056861000000,0.000038293000000,0.000352762000000,0.000080565000000,0.000044614000000,0.000031972000000,0.000081750000000,0.000312465000000,0.000298243000000,0.000583478000000,0.018544155000000,0.000357108000000,0.000428614000000,0.020107413000000,0.000090046000000,0.000101107000000 +0.000021319000000,0.000768367000000,0.000039873000000,0.000013554666667,0.000055281000000,0.000037503000000,0.000426243000000,0.000077009000000,0.000043824000000,0.000043823000000,0.000084515000000,0.000311281000000,0.000291923000000,0.000360268000000,0.018879562000000,0.000351182000000,0.000351577000000,0.019107513000000,0.000092021000000,0.000082935000000 +0.000020134500000,0.000711872000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000351182000000,0.000074639000000,0.000045404000000,0.000032367000000,0.000150886000000,0.000310095000000,0.000339330000000,0.000345256000000,0.020653387000000,0.000348812000000,0.000433750000000,0.020091215000000,0.000092417000000,0.000099527000000 +0.000020134000000,0.000806688000000,0.000037503000000,0.000012896000000,0.000076614000000,0.000039083000000,0.000378441000000,0.000074244000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000309700000000,0.000295083000000,0.000346440000000,0.021267708000000,0.000387132000000,0.000347231000000,0.019990080000000,0.000092021000000,0.000082539000000 +0.000020924000000,0.000728861000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000351577000000,0.000075034000000,0.000045404000000,0.000031182000000,0.000082539000000,0.000310490000000,0.000327478000000,0.000346836000000,0.019201142000000,0.000356317000000,0.000469305000000,0.020305339000000,0.000105848000000,0.000082935000000 +0.000019936500000,0.000689354000000,0.000037898000000,0.000013422666667,0.000055280000000,0.000037898000000,0.000982489000000,0.000077404000000,0.000044218000000,0.000030787000000,0.000084516000000,0.000315627000000,0.000293898000000,0.000357897000000,0.019770426000000,0.000356713000000,0.000351182000000,0.020400549000000,0.000088861000000,0.000081749000000 +0.000021122000000,0.000880564000000,0.000038293000000,0.000014476000000,0.000056071000000,0.000037898000000,0.000346046000000,0.000076614000000,0.000045404000000,0.000032762000000,0.000084121000000,0.000313255000000,0.000294688000000,0.000351972000000,0.019375364000000,0.000347626000000,0.000621798000000,0.019196401000000,0.000092021000000,0.000080170000000 +0.000021517000000,0.000766392000000,0.000039478000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000390688000000,0.000116120000000,0.000045404000000,0.000032367000000,0.000082144000000,0.000402539000000,0.000373305000000,0.000345255000000,0.019175068000000,0.000343676000000,0.000347626000000,0.021402819000000,0.000092811000000,0.000122836000000 +0.000019937000000,0.000703182000000,0.000038293000000,0.000012896000000,0.000054886000000,0.000037108000000,0.000354738000000,0.000076614000000,0.000045405000000,0.000031972000000,0.000084911000000,0.000308120000000,0.000344466000000,0.000346836000000,0.019850623000000,0.000371725000000,0.000359478000000,0.020758475000000,0.000088466000000,0.000083725000000 +0.000020924000000,0.000715033000000,0.000057255000000,0.000013028000000,0.000056861000000,0.000036318000000,0.000351576000000,0.000076613000000,0.000046984000000,0.000030787000000,0.000084515000000,0.000320762000000,0.000325502000000,0.000351972000000,0.019845487000000,0.000348021000000,0.000349601000000,0.020105042000000,0.000092416000000,0.000083725000000 +0.000020331500000,0.000685404000000,0.000076219000000,0.000013554666667,0.000056860000000,0.000036713000000,0.000380811000000,0.000075034000000,0.000045404000000,0.000033157000000,0.000084120000000,0.000315626000000,0.000293898000000,0.000350787000000,0.019805191000000,0.000352367000000,0.000381206000000,0.020195907000000,0.000125601000000,0.000082540000000 +0.000019936500000,0.000696071000000,0.000041058000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000351972000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000315626000000,0.000290738000000,0.000355527000000,0.019444105000000,0.000396613000000,0.000346441000000,0.020468104000000,0.000090046000000,0.000082145000000 +0.000020726500000,0.000721749000000,0.000039874000000,0.000013686000000,0.000118095000000,0.000036318000000,0.000385157000000,0.000077799000000,0.000045800000000,0.000032762000000,0.000081750000000,0.000309700000000,0.000367379000000,0.000361848000000,0.019919363000000,0.000466935000000,0.000386342000000,0.019460302000000,0.000090441000000,0.000080960000000 +0.000020529000000,0.001033452000000,0.000039479000000,0.000013027666667,0.000056071000000,0.000037898000000,0.000350786000000,0.000076613000000,0.000043824000000,0.000031577000000,0.000081750000000,0.000313256000000,0.000292318000000,0.000357108000000,0.019522722000000,0.000354737000000,0.000351972000000,0.019338624000000,0.000090836000000,0.000082540000000 +0.000038307000000,0.000727675000000,0.000052120000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000370540000000,0.000078195000000,0.000045404000000,0.000031577000000,0.000082144000000,0.000308910000000,0.000341700000000,0.000346836000000,0.019488351000000,0.000351971000000,0.000391478000000,0.020030771000000,0.000091231000000,0.000152861000000 +0.000019739000000,0.000721750000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000375280000000,0.000076613000000,0.000043824000000,0.000032367000000,0.000104268000000,0.000312071000000,0.000297848000000,0.000345255000000,0.019433833000000,0.000354342000000,0.000347626000000,0.020212104000000,0.000093207000000,0.000098342000000 +0.000019739000000,0.000682243000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000036712000000,0.000369354000000,0.000076614000000,0.000044219000000,0.000032367000000,0.000081750000000,0.000312466000000,0.000293107000000,0.000348811000000,0.019534178000000,0.000342885000000,0.000391873000000,0.019526673000000,0.000112959000000,0.000083330000000 +0.000021122000000,0.000681848000000,0.000037898000000,0.000013554666667,0.000056071000000,0.000036713000000,0.000372515000000,0.000074638000000,0.000065157000000,0.000031182000000,0.000084515000000,0.000308910000000,0.000735181000000,0.000347627000000,0.020074228000000,0.000353947000000,0.000345256000000,0.019252500000000,0.000090046000000,0.000082539000000 +0.000020727000000,0.000774687000000,0.000037898000000,0.000013554333333,0.000057255000000,0.000037107000000,0.000372515000000,0.000076219000000,0.000045404000000,0.000030787000000,0.000082145000000,0.000310491000000,0.000345256000000,0.000347626000000,0.019807561000000,0.000349997000000,0.000418342000000,0.019749882000000,0.000090046000000,0.000082935000000 +0.000019936500000,0.000777058000000,0.000037503000000,0.000013949666667,0.000054885000000,0.000037898000000,0.000365799000000,0.000079774000000,0.000045404000000,0.000031972000000,0.000081750000000,0.000319576000000,0.000294293000000,0.000352367000000,0.019353241000000,0.000349206000000,0.000349602000000,0.019840746000000,0.000092417000000,0.000082935000000 +0.000019936500000,0.000703971000000,0.000037898000000,0.000012896000000,0.000070293000000,0.000051725000000,0.000402144000000,0.000074638000000,0.000043824000000,0.000029997000000,0.000086490000000,0.000311676000000,0.000290342000000,0.000349997000000,0.019520351000000,0.000348416000000,0.000356712000000,0.019774376000000,0.000090836000000,0.000080960000000 +0.000020924000000,0.000679478000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000037108000000,0.000376466000000,0.000076219000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000312861000000,0.000328268000000,0.000344861000000,0.019677191000000,0.000355132000000,0.000352762000000,0.019438969000000,0.000092811000000,0.000083725000000 +0.000020924000000,0.000679083000000,0.000037503000000,0.000013686000000,0.000056465000000,0.000038293000000,0.000371725000000,0.000074638000000,0.000045404000000,0.000030787000000,0.000118490000000,0.000316022000000,0.000295083000000,0.000404909000000,0.019394327000000,0.000345651000000,0.000346836000000,0.019260796000000,0.000091626000000,0.000081750000000 +0.000020726500000,0.000739527000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000372910000000,0.000074244000000,0.000044614000000,0.000046589000000,0.000084120000000,0.000308515000000,0.000297453000000,0.000346836000000,0.019684303000000,0.000349996000000,0.000383182000000,0.019231166000000,0.000126786000000,0.000082935000000 +0.000020726500000,0.000725305000000,0.000037502000000,0.000012896000000,0.000055676000000,0.000037502000000,0.000371330000000,0.000074638000000,0.000045009000000,0.000031972000000,0.000082934000000,0.000312070000000,0.000306144000000,0.000348416000000,0.019744746000000,0.000346045000000,0.000350392000000,0.019561438000000,0.000090441000000,0.000080959000000 +0.000019936500000,0.000744267000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000380021000000,0.000075824000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000311281000000,0.000291923000000,0.000346046000000,0.019268303000000,0.000350391000000,0.000395034000000,0.019232747000000,0.000123626000000,0.000082540000000 +0.000020134000000,0.000922835000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000368169000000,0.000074244000000,0.000043823000000,0.000031182000000,0.000082540000000,0.000315231000000,0.000329058000000,0.000344466000000,0.019457932000000,0.000345651000000,0.000352762000000,0.019832450000000,0.000093602000000,0.000080960000000 +0.000020529500000,0.000677503000000,0.000038688000000,0.000012896000000,0.000057256000000,0.000037503000000,0.000367379000000,0.000076614000000,0.000046984000000,0.000031972000000,0.000084910000000,0.000311676000000,0.000292317000000,0.000346441000000,0.019751462000000,0.000353947000000,0.000438886000000,0.019301488000000,0.000092811000000,0.000094392000000 +0.000019937000000,0.000719378000000,0.000037897000000,0.000013027666667,0.000095182000000,0.000036712000000,0.000378836000000,0.000076219000000,0.000044614000000,0.000033552000000,0.000084120000000,0.000308515000000,0.000293108000000,0.000346836000000,0.019711956000000,0.000346046000000,0.000347626000000,0.019844302000000,0.000092416000000,0.000080564000000 +0.000019936500000,0.000834737000000,0.000039083000000,0.000012896000000,0.000071478000000,0.000037108000000,0.000373305000000,0.000074243000000,0.000045404000000,0.000030787000000,0.000128367000000,0.000315231000000,0.000308120000000,0.000392268000000,0.020155611000000,0.000345651000000,0.000388713000000,0.019092895000000,0.000123231000000,0.000082145000000 +0.000020924500000,0.000820910000000,0.000039478000000,0.000012896000000,0.000056861000000,0.000092811000000,0.000397009000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000084515000000,0.000371725000000,0.000294688000000,0.000395823000000,0.019679562000000,0.000348416000000,0.000402145000000,0.019978228000000,0.000089256000000,0.000082540000000 +0.000021122000000,0.000738737000000,0.000038688000000,0.000013027666667,0.000055281000000,0.000036318000000,0.000345255000000,0.000077404000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000312465000000,0.000371724000000,0.000347231000000,0.020263067000000,0.000387527000000,0.000378440000000,0.019425537000000,0.000089651000000,0.000082935000000 +0.000019936500000,0.000713058000000,0.000037502000000,0.000014081000000,0.000055675000000,0.000037898000000,0.000349602000000,0.000074243000000,0.000043824000000,0.000032367000000,0.000084120000000,0.000346441000000,0.000294292000000,0.000359082000000,0.019632944000000,0.000346836000000,0.000346441000000,0.019077093000000,0.000092812000000,0.000082935000000 +0.000021714000000,0.000698045000000,0.000052911000000,0.000013027666667,0.000056071000000,0.000037108000000,0.000348416000000,0.000077799000000,0.000043824000000,0.000050935000000,0.000088070000000,0.000316417000000,0.000292317000000,0.000350391000000,0.019520352000000,0.000373700000000,0.000381997000000,0.019388401000000,0.000092811000000,0.000116120000000 +0.000019739000000,0.000725305000000,0.000038688000000,0.000012896000000,0.000056466000000,0.000036712000000,0.000355132000000,0.000077009000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000310885000000,0.000328268000000,0.000345255000000,0.019687463000000,0.000378836000000,0.000350392000000,0.018896155000000,0.000092811000000,0.000082145000000 +0.000019739000000,0.000715823000000,0.000037503000000,0.000013686000000,0.000056071000000,0.000038293000000,0.000378440000000,0.000076614000000,0.000043823000000,0.000031182000000,0.000084120000000,0.000312861000000,0.000290737000000,0.000347626000000,0.020123215000000,0.000348021000000,0.000346046000000,0.019389981000000,0.000092417000000,0.000083725000000 +0.000020726500000,0.000769552000000,0.000038688000000,0.000013027666667,0.000090046000000,0.000037898000000,0.000351182000000,0.000077009000000,0.000046194000000,0.000031182000000,0.000099528000000,0.000309700000000,0.000311675000000,0.000353947000000,0.020156005000000,0.000348811000000,0.000348811000000,0.019527067000000,0.000141404000000,0.000080169000000 +0.000019936500000,0.000671181000000,0.000037107000000,0.000013422666667,0.000055675000000,0.000037503000000,0.000509601000000,0.000079379000000,0.000043824000000,0.000032367000000,0.000082145000000,0.000313256000000,0.000290737000000,0.000351181000000,0.019170722000000,0.000347231000000,0.000346836000000,0.019593042000000,0.000105058000000,0.000080169000000 +0.000020727000000,0.000673947000000,0.000038293000000,0.000013686000000,0.000059232000000,0.000037108000000,0.000382786000000,0.000076614000000,0.000043824000000,0.000032367000000,0.000081749000000,0.000312071000000,0.000291922000000,0.000354342000000,0.020346030000000,0.000344860000000,0.000401749000000,0.019713537000000,0.000092021000000,0.000082935000000 +0.000020726500000,0.000717799000000,0.000038293000000,0.000012896000000,0.000056465000000,0.000037107000000,0.000349601000000,0.000076219000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000310885000000,0.000379231000000,0.000357502000000,0.019638080000000,0.000384762000000,0.000353552000000,0.019435413000000,0.000092022000000,0.000083725000000 +0.000019936500000,0.000719379000000,0.000038292000000,0.000013027666667,0.000055676000000,0.000071478000000,0.000379626000000,0.000077009000000,0.000043824000000,0.000031181000000,0.000082540000000,0.000311676000000,0.000296268000000,0.000356318000000,0.019935561000000,0.000344861000000,0.000384761000000,0.019503759000000,0.000091627000000,0.000118886000000 +0.000020727000000,0.000747428000000,0.000039083000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000366194000000,0.000075034000000,0.000043824000000,0.000030787000000,0.000084120000000,0.000310885000000,0.000333799000000,0.000346440000000,0.019495463000000,0.000355922000000,0.000354737000000,0.019637290000000,0.000123626000000,0.000081750000000 +0.000019739000000,0.000682243000000,0.000038293000000,0.000013291000000,0.000055675000000,0.000037898000000,0.000348812000000,0.000077009000000,0.000044614000000,0.000032762000000,0.000084515000000,0.000310885000000,0.000291133000000,0.000345256000000,0.019741191000000,0.000345651000000,0.000388712000000,0.019213784000000,0.000092021000000,0.000080169000000 +0.000036331500000,0.000758885000000,0.000037503000000,0.000013554666667,0.000057255000000,0.000037503000000,0.000347231000000,0.000077404000000,0.000045799000000,0.000031182000000,0.000082144000000,0.000311281000000,0.000290737000000,0.000349206000000,0.021345930000000,0.000346836000000,0.000358688000000,0.019461092000000,0.000092811000000,0.000080564000000 +0.000037319000000,0.000711872000000,0.000038293000000,0.000012896000000,0.000074243000000,0.000037107000000,0.000355133000000,0.000076614000000,0.000045799000000,0.000070293000000,0.000082145000000,0.000315231000000,0.000359477000000,0.000404910000000,0.019313339000000,0.000348416000000,0.000381207000000,0.019397093000000,0.000095972000000,0.000082540000000 +0.000020726500000,0.000717404000000,0.000037898000000,0.000012896000000,0.000071873000000,0.000037898000000,0.000418342000000,0.000074243000000,0.000045009000000,0.000031972000000,0.000081750000000,0.000314836000000,0.000292317000000,0.000375675000000,0.020031166000000,0.000351972000000,0.000350392000000,0.020215660000000,0.000091626000000,0.000081354000000 +0.000020726500000,0.000719379000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000355132000000,0.000074244000000,0.000084910000000,0.000030786000000,0.000081750000000,0.000308515000000,0.000292317000000,0.000392268000000,0.019501389000000,0.000379626000000,0.000380811000000,0.019538920000000,0.000092022000000,0.000080565000000 +0.000019739000000,0.000674737000000,0.000037898000000,0.000013028000000,0.000055676000000,0.000036713000000,0.000360663000000,0.000077009000000,0.000065947000000,0.000031972000000,0.000082144000000,0.000318392000000,0.000378441000000,0.000348811000000,0.019266327000000,0.000344070000000,0.000352367000000,0.020022475000000,0.000092416000000,0.000116910000000 +0.000019739000000,0.000714243000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000349996000000,0.000074243000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000309305000000,0.000291922000000,0.000380021000000,0.019188895000000,0.000349206000000,0.000350786000000,0.020016153000000,0.000092812000000,0.000080565000000 +0.000020726500000,0.000711873000000,0.000037502000000,0.000012896000000,0.000058441000000,0.000037108000000,0.000349206000000,0.000076614000000,0.000045800000000,0.000030787000000,0.000082145000000,0.000312071000000,0.000325897000000,0.000347626000000,0.020204993000000,0.000347231000000,0.000420712000000,0.020428203000000,0.000093601000000,0.000080959000000 +0.000020726500000,0.000735576000000,0.000038293000000,0.000012896000000,0.000088466000000,0.000057651000000,0.000417552000000,0.000097947000000,0.000044219000000,0.000031576000000,0.000084910000000,0.000314441000000,0.000292712000000,0.000346836000000,0.020038673000000,0.000346441000000,0.000367774000000,0.019636895000000,0.000092021000000,0.000082540000000 +0.000019739500000,0.000684219000000,0.000037898000000,0.000013686000000,0.000070688000000,0.000037898000000,0.000360268000000,0.000075429000000,0.000045799000000,0.000032762000000,0.000104663000000,0.000312465000000,0.000293107000000,0.000347626000000,0.018842821000000,0.000346440000000,0.000348021000000,0.019467808000000,0.000091232000000,0.000080565000000 +0.000028035500000,0.000675527000000,0.000071478000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000380811000000,0.000074243000000,0.000044614000000,0.000031577000000,0.000098737000000,0.000349206000000,0.000325107000000,0.000346046000000,0.021583757000000,0.000348417000000,0.000346836000000,0.019327561000000,0.000090046000000,0.000082145000000 +0.000029418000000,0.000764811000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000038293000000,0.000351577000000,0.000093206000000,0.000044219000000,0.000031972000000,0.000084910000000,0.000309305000000,0.000291922000000,0.000379626000000,0.019686672000000,0.000383577000000,0.000371724000000,0.020238178000000,0.000092021000000,0.000082935000000 +0.000020331500000,0.000720959000000,0.000037898000000,0.000013554333333,0.000057256000000,0.000037107000000,0.000354342000000,0.000076614000000,0.000045800000000,0.000031577000000,0.000081750000000,0.000310885000000,0.000292317000000,0.000346836000000,0.020205388000000,0.000346046000000,0.000351577000000,0.019807561000000,0.000160762000000,0.000154046000000 +0.000029813500000,0.000824070000000,0.000040268000000,0.000013554666667,0.000055676000000,0.000037503000000,0.000380416000000,0.000074638000000,0.000044614000000,0.000031182000000,0.000082540000000,0.000310095000000,0.000550293000000,0.000387527000000,0.020649832000000,0.000346441000000,0.000381207000000,0.019490722000000,0.000089651000000,0.000082935000000 +0.000020726500000,0.000737552000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000346835000000,0.000075034000000,0.000045799000000,0.000030786000000,0.000117700000000,0.000308120000000,0.000329454000000,0.000344466000000,0.019901191000000,0.000343676000000,0.000347231000000,0.019282525000000,0.000092811000000,0.000082935000000 +0.000032776000000,0.000676317000000,0.000037898000000,0.000013554666667,0.000055281000000,0.000038293000000,0.000385947000000,0.000075034000000,0.000044219000000,0.000031182000000,0.000082540000000,0.000383576000000,0.000291133000000,0.000753355000000,0.019185734000000,0.000431774000000,0.000422293000000,0.019077092000000,0.000092417000000,0.000080170000000 +0.000018949000000,0.000777848000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000038688000000,0.000350787000000,0.000078589000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000342491000000,0.000291132000000,0.000433355000000,0.019359562000000,0.000357503000000,0.000369750000000,0.021549782000000,0.000094391000000,0.000082540000000 +0.000019541500000,0.000707527000000,0.000038688000000,0.000013028000000,0.000055676000000,0.000036713000000,0.000354737000000,0.000076219000000,0.000044614000000,0.000031972000000,0.000082145000000,0.000308910000000,0.000331033000000,0.000359083000000,0.019928845000000,0.000345651000000,0.000387133000000,0.019870376000000,0.000092022000000,0.000082539000000 +0.000035541500000,0.000738342000000,0.000037898000000,0.000014081333333,0.000151281000000,0.000037898000000,0.000380416000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000311675000000,0.000295083000000,0.000370145000000,0.018880352000000,0.000351972000000,0.000347231000000,0.020750968000000,0.000111380000000,0.000082540000000 +0.000018554000000,0.000685008000000,0.000071873000000,0.000013027666667,0.000170639000000,0.000037503000000,0.000357108000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000312466000000,0.000293503000000,0.000344861000000,0.019883808000000,0.000348021000000,0.000771922000000,0.020311660000000,0.000092021000000,0.000080170000000 +0.000019739000000,0.000681848000000,0.000038293000000,0.000013028000000,0.000071478000000,0.000037503000000,0.000385552000000,0.000077009000000,0.000045404000000,0.000030392000000,0.000081750000000,0.000312466000000,0.000294688000000,0.000346836000000,0.019879067000000,0.000348021000000,0.000383181000000,0.019433043000000,0.000093602000000,0.000080959000000 +0.000019739000000,0.000762835000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000398984000000,0.000074244000000,0.000044219000000,0.000030787000000,0.000117700000000,0.000371724000000,0.000291528000000,0.000371724000000,0.019716697000000,0.000380416000000,0.000347231000000,0.019779907000000,0.000092021000000,0.000080170000000 +0.000018751500000,0.000727675000000,0.000039873000000,0.000013027666667,0.000055281000000,0.000038293000000,0.000349206000000,0.000075034000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000313255000000,0.000328268000000,0.000351182000000,0.020540796000000,0.000349997000000,0.000346835000000,0.019191661000000,0.000090046000000,0.000080564000000 +0.000019936500000,0.001017650000000,0.000037898000000,0.000013027666667,0.000089651000000,0.000036713000000,0.000390688000000,0.000074244000000,0.000044614000000,0.000031181000000,0.000084120000000,0.000308515000000,0.000291527000000,0.000388712000000,0.019888154000000,0.000349207000000,0.000352762000000,0.019148993000000,0.000091626000000,0.000082935000000 +0.000018751000000,0.000745058000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000037502000000,0.000345650000000,0.000074639000000,0.000045009000000,0.000031182000000,0.000084515000000,0.000312071000000,0.000298638000000,0.000357898000000,0.019803610000000,0.000522243000000,0.000352367000000,0.019463858000000,0.000092417000000,0.000080959000000 +0.000018949000000,0.000712662000000,0.000038293000000,0.000013422666667,0.000055676000000,0.000037898000000,0.000393454000000,0.000076614000000,0.000044219000000,0.000033157000000,0.000084516000000,0.000350391000000,0.000328663000000,0.000630095000000,0.019084204000000,0.000370935000000,0.000378836000000,0.019538525000000,0.000125602000000,0.000151281000000 +0.000019541500000,0.000673552000000,0.000038293000000,0.000018163666667,0.000056466000000,0.000036713000000,0.000345651000000,0.000078194000000,0.000043824000000,0.000031972000000,0.000084120000000,0.000316021000000,0.000293502000000,0.000367774000000,0.019413685000000,0.000406885000000,0.000347626000000,0.019603710000000,0.000091231000000,0.000084120000000 +0.000018949000000,0.000817354000000,0.000039478000000,0.000013554333333,0.000055676000000,0.000036712000000,0.000349206000000,0.000077799000000,0.000044219000000,0.000030786000000,0.000082145000000,0.000347626000000,0.000324318000000,0.000343676000000,0.020286771000000,0.000366589000000,0.000436120000000,0.018804500000000,0.000092021000000,0.000079774000000 +0.000036529000000,0.000722540000000,0.000037898000000,0.000012896000000,0.000056070000000,0.000037503000000,0.000346836000000,0.000074243000000,0.000043824000000,0.000031972000000,0.000097157000000,0.000311676000000,0.000292318000000,0.000348812000000,0.019745537000000,0.000374886000000,0.000345256000000,0.019383266000000,0.000090836000000,0.000080170000000 +0.000019739000000,0.000731230000000,0.000038292000000,0.000013027666667,0.000055281000000,0.000037503000000,0.000369355000000,0.000074639000000,0.000045799000000,0.000033157000000,0.000084120000000,0.000311676000000,0.000290737000000,0.000347626000000,0.020158771000000,0.000374095000000,0.000393848000000,0.019357982000000,0.000092812000000,0.000082144000000 +0.000018554000000,0.000750589000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000393453000000,0.000077404000000,0.000044218000000,0.000031182000000,0.000082145000000,0.000317206000000,0.000331429000000,0.000347231000000,0.019015859000000,0.000366984000000,0.000349206000000,0.020008253000000,0.000089256000000,0.000083725000000 +0.000019541500000,0.000682638000000,0.000037503000000,0.000013027666667,0.000056466000000,0.000036712000000,0.000351182000000,0.000077009000000,0.000043824000000,0.000030787000000,0.000082145000000,0.000297059000000,0.000293107000000,0.000353551000000,0.020072253000000,0.000366984000000,0.000390688000000,0.020113734000000,0.000110589000000,0.000083725000000 +0.000019344000000,0.000686194000000,0.000037108000000,0.000013554333333,0.000055281000000,0.000037108000000,0.000344465000000,0.000075033000000,0.000051725000000,0.000031577000000,0.000084120000000,0.000295873000000,0.000291922000000,0.000348416000000,0.019986919000000,0.000366589000000,0.000354737000000,0.019412105000000,0.000092811000000,0.000097157000000 +0.000018751500000,0.000732416000000,0.000039478000000,0.000013554333333,0.000056466000000,0.000036318000000,0.000432169000000,0.000077009000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000294293000000,0.000378046000000,0.000346441000000,0.019363117000000,0.000372120000000,0.000382787000000,0.019726178000000,0.000090441000000,0.000082935000000 +0.000019541500000,0.000720169000000,0.000038293000000,0.000013027666667,0.000055280000000,0.000036317000000,0.000350787000000,0.000078590000000,0.000044219000000,0.000051330000000,0.000082145000000,0.000297453000000,0.000291132000000,0.000347626000000,0.019588697000000,0.000365799000000,0.000349206000000,0.018931315000000,0.000092811000000,0.000081355000000 +0.000019541500000,0.000704366000000,0.000037108000000,0.000019216666667,0.000055675000000,0.000037898000000,0.000419923000000,0.000076614000000,0.000045009000000,0.000030392000000,0.000082145000000,0.000342490000000,0.000324317000000,0.000381996000000,0.019617931000000,0.000369355000000,0.000350392000000,0.019413290000000,0.000090046000000,0.000082935000000 +0.000019936500000,0.000694490000000,0.000038688000000,0.000014476000000,0.000056465000000,0.000037108000000,0.000348811000000,0.000074243000000,0.000045799000000,0.000030787000000,0.000082145000000,0.000293898000000,0.000291132000000,0.000347231000000,0.019999561000000,0.000365403000000,0.000344860000000,0.019311760000000,0.000091231000000,0.000080564000000 +0.000018751500000,0.000757305000000,0.000038293000000,0.000015266333333,0.000056465000000,0.000037502000000,0.000349601000000,0.000186836000000,0.000044614000000,0.000031577000000,0.000086095000000,0.000292318000000,0.000293108000000,0.000346441000000,0.019572895000000,0.000368169000000,0.000352367000000,0.019402623000000,0.000092416000000,0.000081355000000 +0.000028628000000,0.000786539000000,0.000078194000000,0.000014607666667,0.000056466000000,0.000056466000000,0.000516712000000,0.000148910000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000327083000000,0.000362639000000,0.000344861000000,0.019162821000000,0.000374095000000,0.000408465000000,0.020157191000000,0.000124811000000,0.000082935000000 +0.000026060000000,0.000728861000000,0.000038293000000,0.000013817666667,0.000055281000000,0.000050935000000,0.000396614000000,0.000092811000000,0.000043824000000,0.000030787000000,0.000084120000000,0.000291923000000,0.000294293000000,0.000346440000000,0.019401438000000,0.000377651000000,0.000348021000000,0.019363907000000,0.000092417000000,0.000096367000000 +0.000019936500000,0.000725305000000,0.000037503000000,0.000013817666667,0.000056465000000,0.000037108000000,0.000351972000000,0.000077009000000,0.000043824000000,0.000031577000000,0.000088071000000,0.000298243000000,0.000329453000000,0.000347231000000,0.018993735000000,0.000372120000000,0.000387923000000,0.019706030000000,0.000096762000000,0.000082540000000 +0.000018751000000,0.000679478000000,0.000038293000000,0.000013818000000,0.000056860000000,0.000036712000000,0.000389107000000,0.000079775000000,0.000045799000000,0.000031182000000,0.000100712000000,0.000295478000000,0.000297849000000,0.000344465000000,0.019816253000000,0.000370934000000,0.000350392000000,0.019474920000000,0.000091626000000,0.000082935000000 +0.000018751500000,0.000705156000000,0.000038688000000,0.000014476333333,0.000055676000000,0.000036713000000,0.000355132000000,0.000074243000000,0.000044614000000,0.000031972000000,0.000081750000000,0.000293503000000,0.000290738000000,0.000347626000000,0.019550772000000,0.000369355000000,0.000378441000000,0.019299907000000,0.000092021000000,0.000080169000000 +0.000019541500000,0.000734392000000,0.000038293000000,0.000024879666667,0.000056071000000,0.000037503000000,0.000351972000000,0.000076614000000,0.000045799000000,0.000030787000000,0.000081750000000,0.000300219000000,0.000328663000000,0.000346441000000,0.020395018000000,0.000369355000000,0.000346045000000,0.020351956000000,0.000093207000000,0.000082145000000 +0.000019739000000,0.000713453000000,0.000038688000000,0.000014476000000,0.000056465000000,0.000057256000000,0.000418342000000,0.000077799000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000293502000000,0.000293502000000,0.000367379000000,0.019172697000000,0.000365799000000,0.000388713000000,0.019633340000000,0.000138638000000,0.000082145000000 +0.000019739000000,0.000728070000000,0.000037898000000,0.000013686000000,0.000056465000000,0.000050935000000,0.000362639000000,0.000074639000000,0.000044219000000,0.000045009000000,0.000081750000000,0.000294687000000,0.000292712000000,0.000381997000000,0.021292992000000,0.000366984000000,0.000350392000000,0.019866426000000,0.000092022000000,0.000106638000000 +0.000019541500000,0.000788119000000,0.000038293000000,0.000013818000000,0.000055675000000,0.000036713000000,0.000398194000000,0.000077009000000,0.000047775000000,0.000031182000000,0.000084120000000,0.000560169000000,0.000306540000000,0.000365009000000,0.019917784000000,0.000368169000000,0.000381997000000,0.019064846000000,0.000092811000000,0.000080169000000 +0.000018751000000,0.000671181000000,0.000038293000000,0.000013686333333,0.000055676000000,0.000036712000000,0.000352762000000,0.000077800000000,0.000044219000000,0.000031182000000,0.000082540000000,0.000305355000000,0.000295873000000,0.000346835000000,0.019812697000000,0.000422292000000,0.000349206000000,0.019063266000000,0.000090441000000,0.000081355000000 +0.000028035000000,0.000705157000000,0.000037503000000,0.000014476333333,0.000086885000000,0.000064762000000,0.000349206000000,0.000077009000000,0.000043824000000,0.000030787000000,0.000117700000000,0.000293108000000,0.000326293000000,0.000353552000000,0.019843512000000,0.000367380000000,0.000346836000000,0.019700499000000,0.000089651000000,0.000080564000000 +0.000019541500000,0.000709897000000,0.000038293000000,0.000013686000000,0.000055676000000,0.000036713000000,0.000382786000000,0.000074639000000,0.000045799000000,0.000030787000000,0.000082145000000,0.000290343000000,0.000297058000000,0.000351577000000,0.019586327000000,0.000368169000000,0.000388712000000,0.021707411000000,0.000093206000000,0.000116910000000 +0.000018751500000,0.000721749000000,0.000038688000000,0.000013817666667,0.000055676000000,0.000039083000000,0.000344861000000,0.000074244000000,0.000043824000000,0.000031182000000,0.000081750000000,0.000294293000000,0.000294688000000,0.000354342000000,0.020519462000000,0.000365008000000,0.000387527000000,0.020212105000000,0.000089256000000,0.000081355000000 +0.000018554000000,0.000695281000000,0.000039083000000,0.000013686000000,0.000056466000000,0.000037108000000,0.000417157000000,0.000076614000000,0.000045404000000,0.000032762000000,0.000084120000000,0.000294688000000,0.000326688000000,0.000362639000000,0.020211314000000,0.000374095000000,0.000349997000000,0.018921043000000,0.000092417000000,0.000083330000000 +0.000019541500000,0.000704762000000,0.000037108000000,0.000013686000000,0.000056860000000,0.000036712000000,0.000353947000000,0.000077009000000,0.000044218000000,0.000030787000000,0.000082540000000,0.000293503000000,0.000291132000000,0.000355527000000,0.019840746000000,0.000365799000000,0.000355133000000,0.019387216000000,0.000093206000000,0.000226342000000 +0.000019936500000,0.000727280000000,0.000038293000000,0.000014344333333,0.000055675000000,0.000037108000000,0.000346836000000,0.000078984000000,0.000044219000000,0.000030392000000,0.000082145000000,0.000292713000000,0.000294687000000,0.000349996000000,0.019401438000000,0.000370145000000,0.000349207000000,0.019380500000000,0.000092812000000,0.000220811000000 +0.000018751000000,0.000715428000000,0.000038688000000,0.000014476333333,0.000055675000000,0.000036712000000,0.000383576000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000300613000000,0.000308515000000,0.000344465000000,0.019762524000000,0.000368960000000,0.000359478000000,0.019953339000000,0.000092417000000,0.000098342000000 +0.000020134500000,0.000753354000000,0.000038293000000,0.000013817666667,0.000055676000000,0.000038688000000,0.000346045000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000135873000000,0.000344070000000,0.000293108000000,0.000349996000000,0.020176549000000,0.000373700000000,0.000348416000000,0.019280550000000,0.000091626000000,0.000083725000000 +0.000018553500000,0.000692119000000,0.000037898000000,0.000013949666667,0.000055675000000,0.000037108000000,0.000396218000000,0.000109404000000,0.000043823000000,0.000046589000000,0.000084120000000,0.000327082000000,0.000325898000000,0.000347626000000,0.019293981000000,0.000370539000000,0.000349996000000,0.020323511000000,0.000092416000000,0.000124022000000 +0.000018554000000,0.000724910000000,0.000092812000000,0.000013817666667,0.000056466000000,0.000038293000000,0.000348811000000,0.000076614000000,0.000045404000000,0.000050540000000,0.000084120000000,0.000294688000000,0.000293897000000,0.000347231000000,0.019671661000000,0.000397009000000,0.000419133000000,0.020480746000000,0.000161947000000,0.000080960000000 +0.000019541500000,0.000767181000000,0.000038293000000,0.000013817666667,0.000056466000000,0.000051725000000,0.000375676000000,0.000076219000000,0.000043824000000,0.000045009000000,0.000082145000000,0.000291132000000,0.000290737000000,0.000352762000000,0.019274229000000,0.000368169000000,0.000352366000000,0.019023365000000,0.000093206000000,0.000080565000000 +0.000018751500000,0.000705156000000,0.000038688000000,0.000014344666667,0.000057256000000,0.000038293000000,0.000348021000000,0.000074243000000,0.000044219000000,0.000030391000000,0.000084121000000,0.000290737000000,0.000338935000000,0.000348812000000,0.020455462000000,0.000365404000000,0.000384367000000,0.019552351000000,0.000093207000000,0.000081355000000 +0.000019541500000,0.000758095000000,0.000037503000000,0.000014871333333,0.000055676000000,0.000036712000000,0.000366984000000,0.000080169000000,0.000043823000000,0.000031182000000,0.000081354000000,0.000293503000000,0.000295478000000,0.000346046000000,0.020616252000000,0.000373305000000,0.000353157000000,0.019582771000000,0.000093206000000,0.000082540000000 +0.000019541500000,0.000684613000000,0.000037503000000,0.000013817666667,0.000055676000000,0.000037108000000,0.000350391000000,0.000076219000000,0.000043823000000,0.000030787000000,0.000084120000000,0.000329849000000,0.000361058000000,0.000348021000000,0.019974673000000,0.000368960000000,0.000643527000000,0.021021585000000,0.000092416000000,0.000084120000000 +0.000018751000000,0.000752564000000,0.000037898000000,0.000014476333333,0.000056861000000,0.000037503000000,0.000351577000000,0.000075033000000,0.000045009000000,0.000031577000000,0.000156812000000,0.000292318000000,0.000297848000000,0.000381601000000,0.021056745000000,0.000452712000000,0.000446392000000,0.018881537000000,0.000092417000000,0.000082935000000 +0.000019936500000,0.000712663000000,0.000038293000000,0.000014476000000,0.000057256000000,0.000036713000000,0.000351182000000,0.000113355000000,0.000046589000000,0.000031181000000,0.000087281000000,0.000291922000000,0.000292317000000,0.000348021000000,0.020662474000000,0.000369354000000,0.000347231000000,0.020296647000000,0.000126787000000,0.000109009000000 +0.000018751500000,0.000715428000000,0.000038293000000,0.000013818000000,0.000090836000000,0.000037503000000,0.000598490000000,0.000081355000000,0.000044219000000,0.000031577000000,0.000122441000000,0.000295873000000,0.000541996000000,0.000347231000000,0.019402623000000,0.000368169000000,0.000376070000000,0.020298227000000,0.000089255000000,0.000080564000000 +0.000019344000000,0.000680267000000,0.000038688000000,0.000013818000000,0.000056070000000,0.000036712000000,0.000347231000000,0.000078589000000,0.000079379000000,0.000031577000000,0.000131922000000,0.000293502000000,0.000293897000000,0.000344861000000,0.018993734000000,0.000370144000000,0.000351577000000,0.021829091000000,0.000090046000000,0.000080170000000 +0.000019739000000,0.000675527000000,0.000039873000000,0.000013686333333,0.000056071000000,0.000036713000000,0.000350787000000,0.000117306000000,0.000044219000000,0.000030786000000,0.000081749000000,0.000294293000000,0.000369749000000,0.000346441000000,0.019807957000000,0.000368170000000,0.000347626000000,0.020357091000000,0.000092417000000,0.000082935000000 +0.000019739000000,0.000718984000000,0.000038293000000,0.000013686000000,0.000055676000000,0.000037107000000,0.000379626000000,0.000074638000000,0.000045009000000,0.000031182000000,0.000082145000000,0.000292318000000,0.000354342000000,0.000346836000000,0.019314129000000,0.000368565000000,0.000392663000000,0.018847957000000,0.000126787000000,0.000080170000000 +0.000019541500000,0.000718589000000,0.000037897000000,0.000013817666667,0.000055280000000,0.000057256000000,0.000350391000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000098342000000,0.000298243000000,0.000386342000000,0.000344070000000,0.019287266000000,0.000371725000000,0.000351577000000,0.021151955000000,0.000093206000000,0.000080565000000 +0.000018751500000,0.000724515000000,0.000038293000000,0.000013686000000,0.000055676000000,0.000037503000000,0.000420317000000,0.000081354000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000294688000000,0.000295083000000,0.000626934000000,0.019721438000000,0.000365798000000,0.000391873000000,0.019637684000000,0.000110984000000,0.000082144000000 +0.000018554000000,0.000679872000000,0.000037503000000,0.000013686000000,0.000057256000000,0.000037898000000,0.000353157000000,0.000077008000000,0.000045405000000,0.000031577000000,0.000082540000000,0.000297848000000,0.000294687000000,0.000364219000000,0.019555117000000,0.000366984000000,0.000352762000000,0.020084894000000,0.000092812000000,0.000080959000000 +0.000019739000000,0.000841848000000,0.000037502000000,0.000013686000000,0.000056861000000,0.000036712000000,0.000353552000000,0.000077404000000,0.000044219000000,0.000031972000000,0.000081750000000,0.000292318000000,0.000325898000000,0.000359083000000,0.020293092000000,0.000369749000000,0.000381206000000,0.019472155000000,0.000089651000000,0.000080960000000 +0.000019541500000,0.000720169000000,0.000038688000000,0.000013686000000,0.000055676000000,0.000036318000000,0.000391478000000,0.000075824000000,0.000044219000000,0.000031577000000,0.000084910000000,0.000329848000000,0.000292712000000,0.000349206000000,0.020548697000000,0.000367774000000,0.000373305000000,0.019645191000000,0.000092416000000,0.000082144000000 +0.000018751500000,0.000752959000000,0.000038688000000,0.000013949666667,0.000056070000000,0.000037898000000,0.000344465000000,0.000075429000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000294688000000,0.000364613000000,0.000344860000000,0.020088845000000,0.000366589000000,0.000421107000000,0.019266327000000,0.000092812000000,0.000080564000000 +0.000018553500000,0.000710293000000,0.000037897000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000417552000000,0.000074638000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000291922000000,0.000291922000000,0.000395428000000,0.019576450000000,0.000431775000000,0.000347231000000,0.019091710000000,0.000093206000000,0.000083330000000 +0.000019541500000,0.000679082000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000383181000000,0.000077009000000,0.000045009000000,0.000032367000000,0.000084120000000,0.000297848000000,0.000290737000000,0.000386737000000,0.019112648000000,0.000366589000000,0.000380022000000,0.020125980000000,0.000089651000000,0.000082145000000 +0.000019739000000,0.000777058000000,0.000093601000000,0.000013686000000,0.000056466000000,0.000036713000000,0.000350392000000,0.000077009000000,0.000045799000000,0.000031182000000,0.000081750000000,0.000296268000000,0.000326688000000,0.000350787000000,0.019364697000000,0.000371329000000,0.000353157000000,0.021117980000000,0.000123626000000,0.000082935000000 +0.000019541500000,0.000777848000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000037898000000,0.000384762000000,0.000074639000000,0.000044219000000,0.000030391000000,0.000082145000000,0.000375280000000,0.000298243000000,0.000362243000000,0.019129241000000,0.000368959000000,0.000400564000000,0.019445685000000,0.000089651000000,0.000095972000000 +0.000019541500000,0.000775478000000,0.000038293000000,0.000012896000000,0.000057255000000,0.000037107000000,0.000348021000000,0.000074243000000,0.000044614000000,0.000032367000000,0.000084120000000,0.000293503000000,0.000318786000000,0.000361453000000,0.019195612000000,0.000371330000000,0.000344860000000,0.019790968000000,0.000092812000000,0.000082935000000 +0.000018751500000,0.000709108000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000353552000000,0.000074243000000,0.000045404000000,0.000031577000000,0.000082144000000,0.000293898000000,0.000378836000000,0.000356318000000,0.020116499000000,0.000369750000000,0.000433355000000,0.019043512000000,0.000090046000000,0.000079774000000 +0.000018553500000,0.000693700000000,0.000041848000000,0.000013554333333,0.000056861000000,0.000037503000000,0.000344070000000,0.000077009000000,0.000045404000000,0.000031972000000,0.000082539000000,0.000295083000000,0.000293108000000,0.000346441000000,0.020677487000000,0.000586243000000,0.000351971000000,0.019532598000000,0.000092811000000,0.000082540000000 +0.000019541500000,0.001861897000000,0.000039873000000,0.000013027666667,0.000125601000000,0.000037503000000,0.000352366000000,0.000074244000000,0.000045009000000,0.000031972000000,0.000082540000000,0.000290737000000,0.000328663000000,0.000344070000000,0.019903166000000,0.000370144000000,0.000400169000000,0.019346525000000,0.000092417000000,0.000082540000000 +0.000018751000000,0.000924416000000,0.000037503000000,0.000013686000000,0.000055280000000,0.000037107000000,0.000381996000000,0.000082145000000,0.000044614000000,0.000030787000000,0.000133108000000,0.000338540000000,0.000290737000000,0.000349206000000,0.020011413000000,0.000368170000000,0.000360268000000,0.020115314000000,0.000089256000000,0.000082935000000 +0.000018751500000,0.001153551000000,0.000037897000000,0.000013554666667,0.000055280000000,0.000037503000000,0.000346046000000,0.000077404000000,0.000044219000000,0.000030787000000,0.000101898000000,0.000383181000000,0.000348021000000,0.000347626000000,0.019347710000000,0.000419132000000,0.000349601000000,0.019369833000000,0.000090441000000,0.000080169000000 +0.000019541500000,0.000879774000000,0.000037898000000,0.000013027666667,0.000056070000000,0.000037108000000,0.000383181000000,0.000074638000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000293898000000,0.000290737000000,0.000347626000000,0.019388402000000,0.000370145000000,0.000356318000000,0.019101586000000,0.000092812000000,0.000080169000000 +0.000019541500000,0.000712663000000,0.000058441000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000347626000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000083725000000,0.000299033000000,0.000292713000000,0.000352367000000,0.019771611000000,0.000369354000000,0.000352762000000,0.019416055000000,0.000090441000000,0.000080170000000 +0.000018751000000,0.000677898000000,0.000038688000000,0.000013554666667,0.000056861000000,0.000037898000000,0.000348021000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000082145000000,0.000294293000000,0.000344466000000,0.000349602000000,0.019298723000000,0.000427034000000,0.000411626000000,0.019551956000000,0.000092022000000,0.000080169000000 +0.000020134500000,0.000740317000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000384366000000,0.000076614000000,0.000046589000000,0.000031972000000,0.000082145000000,0.000298243000000,0.000292712000000,0.000345256000000,0.019769636000000,0.000369749000000,0.000348811000000,0.019413290000000,0.000089651000000,0.000082935000000 +0.000018553500000,0.000735181000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000351181000000,0.000074244000000,0.000045800000000,0.000031577000000,0.000084515000000,0.000291528000000,0.000294687000000,0.000382391000000,0.019817833000000,0.000383972000000,0.000807083000000,0.019531018000000,0.000092021000000,0.000080959000000 +0.000036134500000,0.000724119000000,0.000037503000000,0.000013554666667,0.000089651000000,0.000039083000000,0.000380811000000,0.000074639000000,0.000043824000000,0.000031972000000,0.000081750000000,0.000295873000000,0.000290737000000,0.000346836000000,0.019514821000000,0.000364218000000,0.000395429000000,0.019382870000000,0.000139429000000,0.000083725000000 +0.000019936500000,0.000716219000000,0.000038688000000,0.000014213000000,0.000057651000000,0.000037108000000,0.000355528000000,0.000074638000000,0.000045404000000,0.000030787000000,0.000082540000000,0.000342885000000,0.000290738000000,0.000348416000000,0.019291216000000,0.000366589000000,0.000347231000000,0.019960845000000,0.000091626000000,0.000082540000000 +0.000018553500000,0.000993551000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000036713000000,0.000346046000000,0.000077404000000,0.000044219000000,0.000031181000000,0.000086490000000,0.000290737000000,0.000375280000000,0.000346046000000,0.019967166000000,0.000395033000000,0.000433750000000,0.019499809000000,0.000093997000000,0.000080960000000 +0.000019739000000,0.000689354000000,0.000038293000000,0.000013027666667,0.000056861000000,0.000037107000000,0.000381601000000,0.000076614000000,0.000045009000000,0.000031576000000,0.000081750000000,0.000294688000000,0.000291923000000,0.000344466000000,0.020085685000000,0.000369354000000,0.000347231000000,0.019916993000000,0.000090046000000,0.000081354000000 +0.000019739000000,0.000712663000000,0.000038293000000,0.000013554333333,0.000057651000000,0.000037108000000,0.000349601000000,0.000074639000000,0.000045009000000,0.000031182000000,0.000084910000000,0.000291527000000,0.000292318000000,0.000346046000000,0.019969141000000,0.000690539000000,0.000400959000000,0.019099216000000,0.000089651000000,0.000082540000000 +0.000018554000000,0.000737156000000,0.000037898000000,0.000014476333333,0.000055281000000,0.000037108000000,0.000444021000000,0.000076219000000,0.000045404000000,0.000031182000000,0.000103873000000,0.000291133000000,0.000436120000000,0.000346836000000,0.019699709000000,0.000386737000000,0.000350786000000,0.019250130000000,0.000090441000000,0.000082540000000 +0.000019541500000,0.000747033000000,0.000051329000000,0.000013818000000,0.000055676000000,0.000037503000000,0.000353947000000,0.000076614000000,0.000045404000000,0.000031182000000,0.000095577000000,0.000292713000000,0.000292317000000,0.000478391000000,0.019093685000000,0.000373305000000,0.000378441000000,0.019331117000000,0.000113355000000,0.000083330000000 +0.000018751500000,0.000726490000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000346836000000,0.000075428000000,0.000045404000000,0.000031972000000,0.000082539000000,0.000295083000000,0.000331428000000,0.000346441000000,0.019563019000000,0.000367775000000,0.000346046000000,0.019365092000000,0.000092021000000,0.000082935000000 +0.000018553500000,0.000726095000000,0.000037503000000,0.000013554333333,0.000056071000000,0.000037898000000,0.000441650000000,0.000076614000000,0.000043823000000,0.000031182000000,0.000084121000000,0.000293503000000,0.000295478000000,0.000397009000000,0.019986919000000,0.000369750000000,0.000367379000000,0.019971907000000,0.000094787000000,0.000115725000000 +0.000019541500000,0.000727280000000,0.000039083000000,0.000013554333333,0.000055675000000,0.000037107000000,0.000352761000000,0.000131922000000,0.000045800000000,0.000050540000000,0.000102688000000,0.000293503000000,0.000327083000000,0.000359083000000,0.019760154000000,0.000370144000000,0.000645107000000,0.019316895000000,0.000092811000000,0.000080565000000 +0.000020726500000,0.000963131000000,0.000038293000000,0.000013027666667,0.000055280000000,0.000051330000000,0.000380812000000,0.000076614000000,0.000064762000000,0.000031577000000,0.000084120000000,0.000294688000000,0.000291923000000,0.000383972000000,0.019981388000000,0.000367774000000,0.000402144000000,0.020356301000000,0.000093602000000,0.000082540000000 +0.000019936500000,0.000737552000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000371330000000,0.000077009000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000294293000000,0.000332219000000,0.000345651000000,0.020073833000000,0.000372120000000,0.000349602000000,0.019156105000000,0.000090441000000,0.000080169000000 +0.000018554000000,0.000731231000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000350391000000,0.000076219000000,0.000044219000000,0.000031181000000,0.000097947000000,0.000295478000000,0.000338935000000,0.000381997000000,0.021432449000000,0.000477996000000,0.000380811000000,0.020178919000000,0.000090046000000,0.000080960000000 +0.000018554000000,0.000756909000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000436515000000,0.000109404000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000295873000000,0.000292318000000,0.000353551000000,0.019764895000000,0.000434144000000,0.000352367000000,0.019323216000000,0.000108614000000,0.000084516000000 +0.000019739500000,0.000724120000000,0.000039083000000,0.000019612000000,0.000056071000000,0.000037108000000,0.000353157000000,0.000169849000000,0.000045404000000,0.000032367000000,0.000084120000000,0.000299823000000,0.000314441000000,0.000436910000000,0.019220500000000,0.000377256000000,0.000387527000000,0.019821783000000,0.000090046000000,0.000080959000000 +0.000019739500000,0.000733206000000,0.000037898000000,0.000013554666667,0.000056861000000,0.000036713000000,0.000353157000000,0.000076614000000,0.000045404000000,0.000032367000000,0.000084120000000,0.000293503000000,0.000291132000000,0.000353947000000,0.020558968000000,0.000371329000000,0.000350787000000,0.019671660000000,0.000092416000000,0.000118095000000 +0.000018949000000,0.000720169000000,0.000037897000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000445996000000,0.000079775000000,0.000047774000000,0.000032367000000,0.000084515000000,0.000291132000000,0.000293898000000,0.000382391000000,0.019144649000000,0.000368960000000,0.000387923000000,0.019422377000000,0.000092022000000,0.000082935000000 +0.000018554000000,0.000747824000000,0.000039874000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000345256000000,0.000121256000000,0.000045404000000,0.000032367000000,0.000083725000000,0.000295873000000,0.000332219000000,0.000355922000000,0.019723018000000,0.000344861000000,0.000355132000000,0.020675906000000,0.000090836000000,0.000080564000000 +0.000019541500000,0.001038194000000,0.000038688000000,0.000013027666667,0.000055281000000,0.000036712000000,0.000364614000000,0.000075034000000,0.000044219000000,0.000031182000000,0.000139033000000,0.000296268000000,0.000295083000000,0.000346835000000,0.019572104000000,0.000352367000000,0.000393058000000,0.019499413000000,0.000096762000000,0.000082145000000 +0.000019739000000,0.000766786000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000037503000000,0.000415972000000,0.000074243000000,0.000045799000000,0.000031972000000,0.000081749000000,0.000294293000000,0.000293107000000,0.000344466000000,0.020249635000000,0.000347626000000,0.000347626000000,0.019912648000000,0.000122836000000,0.000082935000000 +0.000027640500000,0.000751774000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000075824000000,0.000351576000000,0.000074244000000,0.000044219000000,0.000065157000000,0.000084120000000,0.000328663000000,0.000328269000000,0.000348812000000,0.020579511000000,0.000344861000000,0.000350392000000,0.019874326000000,0.000091627000000,0.000083725000000 +0.000019542000000,0.000754539000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000442836000000,0.000147330000000,0.000045009000000,0.000031972000000,0.000082145000000,0.000291527000000,0.000291528000000,0.000388713000000,0.020754128000000,0.000378441000000,0.000346836000000,0.019911857000000,0.000090046000000,0.000080959000000 +0.000018751500000,0.000670391000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000036712000000,0.000349602000000,0.000075824000000,0.000045404000000,0.000030787000000,0.000082145000000,0.000294687000000,0.000327478000000,0.000347231000000,0.019959660000000,0.000349997000000,0.000352761000000,0.020191561000000,0.000087676000000,0.000114145000000 +0.000018948500000,0.000706737000000,0.000038688000000,0.000013554666667,0.000055676000000,0.000036713000000,0.000347231000000,0.000074639000000,0.000043824000000,0.000031182000000,0.000084120000000,0.000294292000000,0.000291922000000,0.000406491000000,0.020144153000000,0.000370935000000,0.000365009000000,0.019515215000000,0.000091626000000,0.000080170000000 +0.000019739000000,0.000709898000000,0.000037503000000,0.000020007000000,0.000055676000000,0.000037898000000,0.000421502000000,0.000076613000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000293897000000,0.000299428000000,0.000348812000000,0.019974277000000,0.000349996000000,0.000353157000000,0.020096746000000,0.000090046000000,0.000080960000000 +0.000018948500000,0.000758094000000,0.000072269000000,0.000018295333333,0.000125602000000,0.000036712000000,0.000349601000000,0.000076219000000,0.000045009000000,0.000031972000000,0.000115330000000,0.000295083000000,0.000329453000000,0.000380021000000,0.019715907000000,0.000348416000000,0.000381206000000,0.019198377000000,0.000089650000000,0.000080564000000 +0.000018751500000,0.000695281000000,0.000038688000000,0.000013027666667,0.000071478000000,0.000036713000000,0.000766391000000,0.000074638000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000292317000000,0.000297058000000,0.000347626000000,0.020093586000000,0.000381207000000,0.000347626000000,0.022286571000000,0.000140614000000,0.000082540000000 +0.000019739000000,0.000827231000000,0.000038293000000,0.000013027666667,0.000055280000000,0.000037898000000,0.000432169000000,0.000178540000000,0.000045404000000,0.000031577000000,0.000082144000000,0.000293108000000,0.000290342000000,0.000381207000000,0.019129241000000,0.000348812000000,0.000383181000000,0.020757289000000,0.000090046000000,0.000082935000000 +0.000019936500000,0.001115625000000,0.000039083000000,0.000013554333333,0.000056070000000,0.000036713000000,0.000446392000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000328663000000,0.000291922000000,0.000347626000000,0.019374969000000,0.000420713000000,0.000355132000000,0.020949289000000,0.000092416000000,0.000083330000000 +0.000018751000000,0.000774688000000,0.000037503000000,0.000012896000000,0.000058837000000,0.000037108000000,0.000347231000000,0.000074244000000,0.000045404000000,0.000031577000000,0.000082539000000,0.000292317000000,0.000290737000000,0.000346441000000,0.019441339000000,0.000349601000000,0.000438095000000,0.020276104000000,0.000090046000000,0.000116910000000 +0.000020134000000,0.000728465000000,0.000041454000000,0.000013027666667,0.000055676000000,0.000091627000000,0.000364614000000,0.000078195000000,0.000044219000000,0.000030787000000,0.000081750000000,0.000291133000000,0.000378046000000,0.000344861000000,0.020589783000000,0.000343675000000,0.000347626000000,0.020038277000000,0.000090046000000,0.000081354000000 +0.000018751500000,0.000733601000000,0.000037898000000,0.000012896000000,0.000056860000000,0.000053701000000,0.000353552000000,0.000077404000000,0.000048960000000,0.000065947000000,0.000084515000000,0.000290738000000,0.000293502000000,0.000346441000000,0.020288351000000,0.000396614000000,0.000396614000000,0.020093586000000,0.000091627000000,0.000082145000000 +0.000018949000000,0.000837502000000,0.000037898000000,0.000013554666667,0.000055675000000,0.000041059000000,0.000359873000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000148120000000,0.000290737000000,0.000292317000000,0.000361453000000,0.019495857000000,0.000346836000000,0.000351181000000,0.023027312000000,0.000161157000000,0.000080960000000 +0.000019541500000,0.000939033000000,0.000038293000000,0.000012896000000,0.000090441000000,0.000039083000000,0.000382787000000,0.000091231000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000302194000000,0.000327083000000,0.000344466000000,0.019810327000000,0.000398984000000,0.000405701000000,0.020155215000000,0.000113355000000,0.000080959000000 +0.000018751500000,0.000748614000000,0.000038293000000,0.000035941000000,0.000056071000000,0.000037898000000,0.000352761000000,0.000079379000000,0.000043824000000,0.000033157000000,0.000084120000000,0.000295083000000,0.000291527000000,0.000381206000000,0.019653092000000,0.000440860000000,0.000352761000000,0.020714622000000,0.000090836000000,0.000080565000000 +0.000019541500000,0.000749403000000,0.000050935000000,0.000014212666667,0.000056071000000,0.000037503000000,0.000380416000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000081354000000,0.000292712000000,0.000327083000000,0.000346046000000,0.019188105000000,0.000464960000000,0.000347231000000,0.020137438000000,0.000090046000000,0.000082540000000 +0.000019542000000,0.000780218000000,0.000037897000000,0.000013686000000,0.000056860000000,0.000037108000000,0.000349206000000,0.000077009000000,0.000045404000000,0.000031577000000,0.000084120000000,0.000293107000000,0.000291132000000,0.000394243000000,0.020876203000000,0.000398589000000,0.000359873000000,0.020692499000000,0.000090441000000,0.000152860000000 +0.000018751500000,0.000773502000000,0.000037503000000,0.000013027666667,0.000056860000000,0.000037897000000,0.000351181000000,0.000077009000000,0.000043823000000,0.000031576000000,0.000084121000000,0.000346045000000,0.000294688000000,0.000348811000000,0.019915809000000,0.000382392000000,0.000349207000000,0.020758079000000,0.000092022000000,0.000083330000000 +0.000019739000000,0.000720169000000,0.000038688000000,0.000013686000000,0.000055675000000,0.000036713000000,0.000385947000000,0.000075429000000,0.000045009000000,0.000031182000000,0.000116120000000,0.000294293000000,0.000329058000000,0.000426244000000,0.019187710000000,0.000349602000000,0.000391873000000,0.019043118000000,0.000126786000000,0.000080170000000 +0.000018751500000,0.000852910000000,0.000038293000000,0.000013027666667,0.000061207000000,0.000070688000000,0.000359083000000,0.000077404000000,0.000046194000000,0.000031972000000,0.000082145000000,0.000294688000000,0.000294293000000,0.000346836000000,0.019389982000000,0.000357108000000,0.000346440000000,0.019218524000000,0.000092022000000,0.000080564000000 +0.000025665000000,0.000756910000000,0.000038293000000,0.000013554333333,0.000058046000000,0.000037898000000,0.000443626000000,0.000106639000000,0.000045800000000,0.000031182000000,0.000084120000000,0.000291922000000,0.000293898000000,0.000354737000000,0.020325092000000,0.000346441000000,0.000385947000000,0.019490722000000,0.000089255000000,0.000080960000000 +0.000020134000000,0.000750984000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000037107000000,0.000351576000000,0.000076218000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000296268000000,0.000344070000000,0.000351577000000,0.019167562000000,0.000344071000000,0.000351971000000,0.019764895000000,0.000092022000000,0.000082540000000 +0.000019541500000,0.000729255000000,0.000038293000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000350787000000,0.000074244000000,0.000044219000000,0.000045404000000,0.000081750000000,0.000301009000000,0.000290737000000,0.000374885000000,0.019060105000000,0.000385947000000,0.000385947000000,0.020347215000000,0.000092021000000,0.000080960000000 +0.000019739500000,0.000816169000000,0.000037503000000,0.000017636666667,0.000055280000000,0.000036713000000,0.000386737000000,0.000074638000000,0.000045404000000,0.000030392000000,0.000084120000000,0.000291528000000,0.000329058000000,0.000376466000000,0.019404204000000,0.000348021000000,0.000347626000000,0.019310969000000,0.000090046000000,0.000095972000000 +0.000018751500000,0.000847379000000,0.000038292000000,0.000013554333333,0.000055280000000,0.000037108000000,0.000348811000000,0.000077009000000,0.000045799000000,0.000031577000000,0.000081749000000,0.000292712000000,0.000296268000000,0.000355922000000,0.019591067000000,0.000377651000000,0.000398984000000,0.020113734000000,0.000092811000000,0.000083330000000 +0.000019146500000,0.000722144000000,0.000042244000000,0.000013027666667,0.000056071000000,0.000036712000000,0.000383182000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000151281000000,0.000295083000000,0.000292712000000,0.000346441000000,0.019747907000000,0.000346441000000,0.000344861000000,0.019378920000000,0.000089256000000,0.000080959000000 +0.000019739000000,0.000720169000000,0.000037898000000,0.000013027666667,0.000057651000000,0.000037108000000,0.000351577000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000291132000000,0.000391083000000,0.000344071000000,0.019173883000000,0.000351577000000,0.000394639000000,0.019685882000000,0.000093996000000,0.000079775000000 +0.000019936500000,0.000727280000000,0.000037503000000,0.000012896000000,0.000055280000000,0.000037503000000,0.000348811000000,0.000077009000000,0.000044219000000,0.000033552000000,0.000084911000000,0.000417552000000,0.000295873000000,0.000349997000000,0.019987709000000,0.000400564000000,0.000349207000000,0.019391956000000,0.000095182000000,0.000082935000000 +0.000018554000000,0.000784564000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000379626000000,0.000075429000000,0.000045009000000,0.000032762000000,0.000081750000000,0.000293898000000,0.000325503000000,0.000347626000000,0.019144253000000,0.000347231000000,0.000425848000000,0.020495363000000,0.000093602000000,0.000101503000000 +0.000018751000000,0.000932317000000,0.000037898000000,0.000012896333333,0.000055676000000,0.000075429000000,0.000349602000000,0.000074244000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000297058000000,0.000293503000000,0.000381601000000,0.019497438000000,0.000384762000000,0.000352761000000,0.019638870000000,0.000090046000000,0.000130342000000 +0.000036529000000,0.000721354000000,0.000040663000000,0.000013554333333,0.000070688000000,0.000038293000000,0.000383182000000,0.000076614000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000292713000000,0.000291527000000,0.000352367000000,0.019720252000000,0.000345255000000,0.000346836000000,0.019388006000000,0.000090046000000,0.000082935000000 +0.000019739500000,0.000729255000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037108000000,0.000351182000000,0.000076614000000,0.000045799000000,0.000031181000000,0.000084120000000,0.000293898000000,0.000325898000000,0.000398589000000,0.019230772000000,0.000352762000000,0.000472070000000,0.019502574000000,0.000090046000000,0.000082539000000 +0.000019739000000,0.000722144000000,0.000037898000000,0.000020270333333,0.000056861000000,0.000037898000000,0.000381601000000,0.000074243000000,0.000046194000000,0.000029997000000,0.000084120000000,0.000295873000000,0.000290737000000,0.000345256000000,0.019322426000000,0.000349206000000,0.000384367000000,0.019600944000000,0.000093206000000,0.000083725000000 +0.000019541500000,0.000743873000000,0.000037898000000,0.000013028000000,0.000055281000000,0.000036712000000,0.000366984000000,0.000075034000000,0.000048565000000,0.000085305000000,0.000082540000000,0.000293898000000,0.000294688000000,0.000355132000000,0.019651512000000,0.000351181000000,0.000345256000000,0.019039957000000,0.000092417000000,0.000083330000000 +0.000018751500000,0.000709503000000,0.000038293000000,0.000013554666667,0.000056071000000,0.000037898000000,0.000348416000000,0.000074639000000,0.000043824000000,0.000046589000000,0.000084120000000,0.000295083000000,0.000293897000000,0.000347231000000,0.019346129000000,0.000382391000000,0.000405305000000,0.019836006000000,0.000093206000000,0.000080960000000 +0.000018751500000,0.000772713000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000038688000000,0.000385551000000,0.000078194000000,0.000044219000000,0.000033947000000,0.000085305000000,0.000291922000000,0.000293108000000,0.000347626000000,0.019760549000000,0.000344071000000,0.000366589000000,0.019368253000000,0.000090046000000,0.000082539000000 +0.000019541500000,0.000673157000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000037107000000,0.000347231000000,0.000080565000000,0.000043823000000,0.000031577000000,0.000082540000000,0.000295478000000,0.000457848000000,0.000346046000000,0.019249340000000,0.000366193000000,0.000366984000000,0.020067117000000,0.000092812000000,0.000129552000000 +0.000028628000000,0.000670786000000,0.000038293000000,0.000014213000000,0.000055676000000,0.000037898000000,0.000388318000000,0.000077009000000,0.000044614000000,0.000030787000000,0.000084910000000,0.000293108000000,0.000823675000000,0.000344071000000,0.019230772000000,0.000383577000000,0.000353552000000,0.018944747000000,0.000167478000000,0.000082935000000 +0.000033171500000,0.000717009000000,0.000037897000000,0.000013027666667,0.000075034000000,0.000037503000000,0.000348021000000,0.000074639000000,0.000045009000000,0.000032762000000,0.000085305000000,0.000297453000000,0.000693304000000,0.000347626000000,0.019659808000000,0.000347231000000,0.000350787000000,0.019963215000000,0.000090046000000,0.000080959000000 +0.000036727000000,0.000716218000000,0.000039478000000,0.000013027666667,0.000157996000000,0.000072269000000,0.000364218000000,0.000076614000000,0.000046984000000,0.000030787000000,0.000209749000000,0.000291922000000,0.000463379000000,0.000346441000000,0.019788203000000,0.000438095000000,0.000389502000000,0.020129536000000,0.000091626000000,0.000080170000000 +0.000019541500000,0.000716614000000,0.000038293000000,0.000013027666667,0.000073059000000,0.000037503000000,0.000391082000000,0.000074244000000,0.000044219000000,0.000031972000000,0.000122836000000,0.000297454000000,0.000342885000000,0.000345256000000,0.019383265000000,0.000347626000000,0.000346046000000,0.020107413000000,0.000090046000000,0.000080564000000 +0.000019146500000,0.000677898000000,0.000037503000000,0.000013027666667,0.000070293000000,0.000038293000000,0.000351577000000,0.000074638000000,0.000044614000000,0.000030787000000,0.000099133000000,0.000297058000000,0.000926786000000,0.000346045000000,0.020543560000000,0.000346046000000,0.000382391000000,0.019914623000000,0.000090046000000,0.000081355000000 +0.000020134500000,0.000718984000000,0.000037503000000,0.000024221000000,0.000056070000000,0.000036712000000,0.000376860000000,0.000074243000000,0.000044219000000,0.000050540000000,0.000084120000000,0.000292318000000,0.000348021000000,0.000346836000000,0.020082129000000,0.000430984000000,0.000350391000000,0.019226821000000,0.000090441000000,0.000083725000000 +0.000018751500000,0.000713058000000,0.000060022000000,0.000012896000000,0.000057256000000,0.000037898000000,0.000423083000000,0.000074243000000,0.000045009000000,0.000032367000000,0.000082145000000,0.000298639000000,0.000357107000000,0.000358688000000,0.020242524000000,0.000345256000000,0.000417157000000,0.019410130000000,0.000197897000000,0.000095972000000 +0.000018751500000,0.000712267000000,0.000068318000000,0.000013554333333,0.000055676000000,0.000038293000000,0.000356713000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000293503000000,0.000294293000000,0.000349206000000,0.019577635000000,0.000414392000000,0.000349207000000,0.019361142000000,0.000089651000000,0.000082935000000 +0.000019739000000,0.000830391000000,0.000039478000000,0.000013291000000,0.000055675000000,0.000037898000000,0.000388318000000,0.000078194000000,0.000044219000000,0.000065157000000,0.000084120000000,0.000292318000000,0.000290738000000,0.000416762000000,0.020705536000000,0.000365009000000,0.000383182000000,0.019508105000000,0.000090836000000,0.000082935000000 +0.000018553500000,0.000692910000000,0.000038688000000,0.000012896000000,0.000056071000000,0.000037107000000,0.000349601000000,0.000077404000000,0.000044614000000,0.000030392000000,0.000082144000000,0.000290737000000,0.000291132000000,0.000347626000000,0.019659018000000,0.000344070000000,0.000429799000000,0.019836005000000,0.000090046000000,0.000080565000000 +0.000019739000000,0.000772317000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000348416000000,0.000074639000000,0.000044219000000,0.000032367000000,0.000084120000000,0.000297453000000,0.000290342000000,0.000353947000000,0.019325191000000,0.000383577000000,0.000425058000000,0.019935956000000,0.000090441000000,0.000080564000000 +0.000019739000000,0.000860810000000,0.000039478000000,0.000012896000000,0.000056860000000,0.000037108000000,0.000418342000000,0.000074639000000,0.000046194000000,0.000032762000000,0.000082145000000,0.000297849000000,0.000329058000000,0.000351577000000,0.019662968000000,0.000353157000000,0.000350392000000,0.019792549000000,0.000090046000000,0.000082935000000 +0.000028825500000,0.000717404000000,0.000040268000000,0.000013027666667,0.000055280000000,0.000075824000000,0.000349996000000,0.000078195000000,0.000044218000000,0.000032367000000,0.000084120000000,0.000290737000000,0.000294688000000,0.000355132000000,0.019692203000000,0.000383577000000,0.000387922000000,0.019105142000000,0.000109799000000,0.000083725000000 +0.000019936500000,0.000717798000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037107000000,0.000383181000000,0.000076614000000,0.000045009000000,0.000031182000000,0.000096367000000,0.000295083000000,0.000294293000000,0.000357503000000,0.021644992000000,0.000346836000000,0.000355922000000,0.019476500000000,0.000092811000000,0.000086096000000 +0.000018751500000,0.000684219000000,0.000037898000000,0.000013554333333,0.000055280000000,0.000037503000000,0.000351181000000,0.000075824000000,0.000044218000000,0.000031972000000,0.000082145000000,0.000295873000000,0.000326293000000,0.000356712000000,0.020046178000000,0.000348417000000,0.000590984000000,0.018975167000000,0.000090441000000,0.000082145000000 +0.000018751500000,0.000698836000000,0.000037898000000,0.000031332333333,0.000055675000000,0.000037108000000,0.000344070000000,0.000076613000000,0.000043823000000,0.000050145000000,0.000081749000000,0.000293898000000,0.000321552000000,0.000399379000000,0.020578721000000,0.000422688000000,0.000364219000000,0.019344944000000,0.000093601000000,0.000082144000000 +0.000019542000000,0.000718983000000,0.000041848000000,0.000013554333333,0.000089256000000,0.000036713000000,0.000376860000000,0.000078589000000,0.000044219000000,0.000045009000000,0.000082145000000,0.000316811000000,0.000390293000000,0.000345255000000,0.019781487000000,0.000352762000000,0.000350391000000,0.020383166000000,0.000090046000000,0.000080959000000 +0.000019937000000,0.000713058000000,0.000039478000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000345256000000,0.000076614000000,0.000045009000000,0.000031181000000,0.000082540000000,0.000297848000000,0.000428219000000,0.000349206000000,0.019608450000000,0.000363034000000,0.000346836000000,0.020246475000000,0.000094787000000,0.000082935000000 +0.000019739500000,0.000777058000000,0.000037898000000,0.000013027666667,0.000056465000000,0.000036713000000,0.000389502000000,0.000074639000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000294688000000,0.000428219000000,0.000347626000000,0.020121635000000,0.000350392000000,0.000365799000000,0.019592648000000,0.000092811000000,0.000080565000000 +0.000018751500000,0.000690144000000,0.000038293000000,0.000013554333333,0.000056860000000,0.000036713000000,0.000352762000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000103478000000,0.000294688000000,0.000310490000000,0.000348811000000,0.018852302000000,0.000352761000000,0.000350391000000,0.021340795000000,0.000092812000000,0.000081354000000 +0.000018751500000,0.000680663000000,0.000038688000000,0.000012896000000,0.000056466000000,0.000037898000000,0.000365404000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000296268000000,0.000312861000000,0.000352762000000,0.019709191000000,0.000432564000000,0.000384762000000,0.020278475000000,0.000092021000000,0.000098342000000 +0.000019541500000,0.000842638000000,0.000041453000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000350392000000,0.000077799000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000291527000000,0.000317601000000,0.000515132000000,0.019441734000000,0.000352761000000,0.000346836000000,0.020506030000000,0.000092811000000,0.000080565000000 +0.000019739000000,0.000760466000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000050935000000,0.000381207000000,0.000076219000000,0.000044219000000,0.000031577000000,0.000081750000000,0.000291922000000,0.000312071000000,0.000344861000000,0.019503759000000,0.000762835000000,0.000380416000000,0.019538524000000,0.000092417000000,0.000084515000000 +0.000018949000000,0.000713453000000,0.000037503000000,0.000013027666667,0.000056070000000,0.000037503000000,0.000358687000000,0.000079775000000,0.000044219000000,0.000030786000000,0.000084120000000,0.000294293000000,0.000310885000000,0.000348416000000,0.020033537000000,0.000754539000000,0.000347231000000,0.020127561000000,0.000092416000000,0.000082539000000 +0.000018949000000,0.000758885000000,0.000093206000000,0.000013817666667,0.000056071000000,0.000037503000000,0.000404119000000,0.000101898000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000293898000000,0.000316021000000,0.000346836000000,0.019489932000000,0.000593355000000,0.000423478000000,0.019527858000000,0.000092811000000,0.000081355000000 +0.000019739000000,0.000678688000000,0.000037503000000,0.000018295000000,0.000069108000000,0.000037898000000,0.000352761000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000082540000000,0.000304565000000,0.000311675000000,0.000398984000000,0.019606080000000,0.000450342000000,0.000350787000000,0.019572500000000,0.000186836000000,0.000082935000000 +0.000019739000000,0.001181206000000,0.000037502000000,0.000013027666667,0.000056465000000,0.000037898000000,0.000417552000000,0.000077799000000,0.000044614000000,0.000030787000000,0.000117700000000,0.000291132000000,0.000411230000000,0.000346046000000,0.019346920000000,0.000446392000000,0.000396219000000,0.019023759000000,0.000181305000000,0.000179330000000 +0.000019541500000,0.000689354000000,0.000039873000000,0.000013554333333,0.000055675000000,0.000037108000000,0.000396219000000,0.000075033000000,0.000044613000000,0.000031577000000,0.000082145000000,0.000391083000000,0.000311280000000,0.000346045000000,0.019258426000000,0.000379231000000,0.000346836000000,0.020098327000000,0.000160762000000,0.000159972000000 +0.000019739000000,0.000768761000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000345256000000,0.000076614000000,0.000045799000000,0.000030787000000,0.000084120000000,0.000331033000000,0.000344466000000,0.000346441000000,0.019924895000000,0.000374491000000,0.000370935000000,0.020338524000000,0.000227132000000,0.000167478000000 +0.000018751500000,0.000754145000000,0.000037897000000,0.000013686000000,0.000055676000000,0.000037108000000,0.000413601000000,0.000077799000000,0.000044614000000,0.000030787000000,0.000082145000000,0.000296268000000,0.000313651000000,0.000346440000000,0.019845092000000,0.000365009000000,0.000351182000000,0.020450327000000,0.000182490000000,0.000152861000000 +0.000018751500000,0.000756909000000,0.000038688000000,0.000013554333333,0.000057651000000,0.000037898000000,0.000344861000000,0.000077404000000,0.000044219000000,0.000031972000000,0.000081749000000,0.000294688000000,0.000344861000000,0.000344466000000,0.019710377000000,0.000368564000000,0.000352367000000,0.019061290000000,0.000202243000000,0.000179725000000 +0.000019739000000,0.000759280000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000070293000000,0.000434539000000,0.000096367000000,0.000045800000000,0.000030787000000,0.000084120000000,0.000293898000000,0.000312071000000,0.000346440000000,0.019228006000000,0.000371330000000,0.000347626000000,0.019546030000000,0.000125996000000,0.000149305000000 +0.000019146500000,0.000687773000000,0.000039478000000,0.000013686000000,0.000055675000000,0.000053306000000,0.000351182000000,0.000074244000000,0.000044219000000,0.000030787000000,0.000084910000000,0.000378046000000,0.000311280000000,0.000381206000000,0.019587117000000,0.000368169000000,0.000359873000000,0.019332303000000,0.000098738000000,0.000088861000000 +0.000018949000000,0.000709107000000,0.000037898000000,0.000013554333333,0.000055280000000,0.000037108000000,0.000352367000000,0.000076219000000,0.000044614000000,0.000031182000000,0.000117701000000,0.000294688000000,0.000308910000000,0.000359083000000,0.020421881000000,0.000370934000000,0.000383577000000,0.019196796000000,0.000094787000000,0.000110194000000 +0.000019541500000,0.000757305000000,0.000037898000000,0.000025801333333,0.000056861000000,0.000036712000000,0.000436910000000,0.000077009000000,0.000044219000000,0.000031181000000,0.000082540000000,0.000297848000000,0.000311280000000,0.000349996000000,0.019025339000000,0.000404910000000,0.000347626000000,0.019935561000000,0.000097947000000,0.000088860000000 +0.000019739000000,0.000775873000000,0.000038688000000,0.000014213000000,0.000055676000000,0.000037898000000,0.000353157000000,0.000078590000000,0.000043824000000,0.000030391000000,0.000084910000000,0.000293108000000,0.000343676000000,0.000344861000000,0.019875512000000,0.000367775000000,0.000418342000000,0.019281339000000,0.000131922000000,0.000088861000000 +0.000018949000000,0.000764811000000,0.000038293000000,0.000029488666667,0.000056466000000,0.000036318000000,0.000361848000000,0.000076614000000,0.000044614000000,0.000032367000000,0.000084515000000,0.000291133000000,0.000310490000000,0.000347626000000,0.019378525000000,0.000366589000000,0.000405305000000,0.019519167000000,0.000142194000000,0.000121256000000 +0.000020134000000,0.000787724000000,0.000038293000000,0.000013554666667,0.000055676000000,0.000037502000000,0.000389503000000,0.000076219000000,0.000044614000000,0.000033157000000,0.000081750000000,0.000348021000000,0.000312861000000,0.000353947000000,0.019976647000000,0.000369354000000,0.000386737000000,0.019257241000000,0.000175379000000,0.000151280000000 +0.000018751500000,0.000691725000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036712000000,0.000344860000000,0.000109404000000,0.000044219000000,0.000030392000000,0.000082144000000,0.000296663000000,0.000310490000000,0.000352367000000,0.018865340000000,0.000400564000000,0.000344465000000,0.019455957000000,0.000091626000000,0.000099132000000 +0.000018751500000,0.000747033000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000038293000000,0.000438490000000,0.000076614000000,0.000044614000000,0.000030786000000,0.000120466000000,0.000293898000000,0.000309700000000,0.000353947000000,0.020149289000000,0.000449157000000,0.000415182000000,0.020850128000000,0.000092416000000,0.000081354000000 +0.000019937000000,0.000809847000000,0.000041058000000,0.000013554333333,0.000055676000000,0.000036318000000,0.000359478000000,0.000076614000000,0.000045404000000,0.000030391000000,0.000097552000000,0.000295082000000,0.000344465000000,0.000361453000000,0.019608845000000,0.000368169000000,0.000351576000000,0.020438080000000,0.000090046000000,0.000080565000000 +0.000018949000000,0.000739922000000,0.000037503000000,0.000012896000000,0.000090836000000,0.000036318000000,0.000345650000000,0.000074638000000,0.000044219000000,0.000030392000000,0.000084120000000,0.000293108000000,0.000311281000000,0.000355527000000,0.019275809000000,0.000368960000000,0.000394243000000,0.019702080000000,0.000163528000000,0.000080960000000 +0.000019739000000,0.000754144000000,0.000038688000000,0.000013028000000,0.000056466000000,0.000070688000000,0.000424663000000,0.000080169000000,0.000045009000000,0.000030787000000,0.000081750000000,0.000293898000000,0.000292318000000,0.000346835000000,0.019854179000000,0.000383182000000,0.000360268000000,0.020658919000000,0.000093997000000,0.000082935000000 +0.000027245500000,0.000752564000000,0.000052120000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000353157000000,0.000076614000000,0.000043824000000,0.000031182000000,0.000081750000000,0.000294688000000,0.000325108000000,0.000394638000000,0.019331908000000,0.000368960000000,0.000382786000000,0.019558277000000,0.000092416000000,0.000084120000000 +0.000018949000000,0.000796416000000,0.000038293000000,0.000013027666667,0.000057256000000,0.000036318000000,0.000426244000000,0.000075034000000,0.000045404000000,0.000030392000000,0.000082540000000,0.000296269000000,0.000292318000000,0.000400959000000,0.020201437000000,0.000364614000000,0.000356713000000,0.020445585000000,0.000093207000000,0.000113750000000 +0.000019739000000,0.000722144000000,0.000038293000000,0.000015134666667,0.000055676000000,0.000036712000000,0.000345256000000,0.000169848000000,0.000046590000000,0.000031182000000,0.000084515000000,0.000293108000000,0.000292318000000,0.000348811000000,0.019391167000000,0.000370935000000,0.000353157000000,0.019267117000000,0.000093206000000,0.000080169000000 +0.000018751000000,0.000724120000000,0.000038688000000,0.000012896000000,0.000056070000000,0.000036713000000,0.000460218000000,0.000081355000000,0.000044614000000,0.000031972000000,0.000083725000000,0.000292713000000,0.000295873000000,0.000346836000000,0.019576450000000,0.000367775000000,0.000346836000000,0.019817438000000,0.000092417000000,0.000080960000000 +0.000018751500000,0.000724515000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000359083000000,0.000079379000000,0.000064367000000,0.000065157000000,0.000081750000000,0.000292317000000,0.000294293000000,0.000353157000000,0.020121635000000,0.000370145000000,0.000348812000000,0.019973487000000,0.000126392000000,0.000081750000000 +0.000019541500000,0.000715428000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000421503000000,0.000137849000000,0.000058837000000,0.000030787000000,0.000082144000000,0.000330638000000,0.000374885000000,0.000348812000000,0.019674425000000,0.000403724000000,0.000392268000000,0.020526178000000,0.000092417000000,0.000083330000000 +0.000019739000000,0.000727675000000,0.000037502000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000349601000000,0.000074638000000,0.000045799000000,0.000031181000000,0.000084120000000,0.000293107000000,0.000297058000000,0.000346046000000,0.020448351000000,0.000370540000000,0.000344861000000,0.019163611000000,0.000092021000000,0.000080960000000 +0.000019541500000,0.000726490000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000036713000000,0.000418342000000,0.000110194000000,0.000095182000000,0.000032367000000,0.000084121000000,0.000327082000000,0.000376070000000,0.000348021000000,0.019115808000000,0.000371725000000,0.000385157000000,0.019781882000000,0.000093997000000,0.000100713000000 +0.000018751500000,0.000718983000000,0.000038293000000,0.000013554333333,0.000055675000000,0.000037108000000,0.000355132000000,0.000077404000000,0.000046589000000,0.000030787000000,0.000084120000000,0.000291133000000,0.000548317000000,0.000346836000000,0.020076598000000,0.000370934000000,0.000366194000000,0.019255661000000,0.000090046000000,0.000082540000000 +0.000018553500000,0.000729255000000,0.000052911000000,0.000013554333333,0.000055280000000,0.000057256000000,0.000351576000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000082144000000,0.000293108000000,0.000368564000000,0.000347231000000,0.019418426000000,0.000369355000000,0.000381601000000,0.020395412000000,0.000092021000000,0.000080565000000 +0.000037714000000,0.000723329000000,0.000037503000000,0.000013554333333,0.000056466000000,0.000036713000000,0.000387527000000,0.000077009000000,0.000044219000000,0.000032762000000,0.000103873000000,0.000347231000000,0.000292712000000,0.000346045000000,0.019049439000000,0.000449156000000,0.000353157000000,0.019826129000000,0.000092812000000,0.000080565000000 +0.000020727000000,0.000726095000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000353947000000,0.000075429000000,0.000045799000000,0.000033157000000,0.000084120000000,0.000294687000000,0.000291922000000,0.000345651000000,0.019843512000000,0.000374886000000,0.000422687000000,0.019341784000000,0.000092021000000,0.000082935000000 +0.000025270000000,0.000725305000000,0.000038688000000,0.000012896000000,0.000055281000000,0.000037898000000,0.000386342000000,0.000075824000000,0.000043824000000,0.000031182000000,0.000086490000000,0.000294688000000,0.000290737000000,0.000346836000000,0.019411709000000,0.000368959000000,0.000479577000000,0.019907511000000,0.000090046000000,0.000080565000000 +0.000018554000000,0.000790885000000,0.000037898000000,0.000013028000000,0.000056071000000,0.000036712000000,0.000348812000000,0.000076219000000,0.000043824000000,0.000030787000000,0.000081750000000,0.000385947000000,0.000295873000000,0.000347231000000,0.019491512000000,0.000379626000000,0.000577157000000,0.019189685000000,0.000089651000000,0.000083330000000 +0.000019541500000,0.000734391000000,0.000037898000000,0.000013554333333,0.000058046000000,0.000037108000000,0.000348811000000,0.000077404000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000291132000000,0.000489058000000,0.000344466000000,0.019098031000000,0.000377651000000,0.000348811000000,0.019792944000000,0.000092811000000,0.000116121000000 +0.000019739000000,0.000719774000000,0.000038292000000,0.000012896000000,0.000125207000000,0.000036713000000,0.000392268000000,0.000076614000000,0.000046194000000,0.000031577000000,0.000084515000000,0.000465749000000,0.000414787000000,0.000367774000000,0.019777141000000,0.000429009000000,0.000383577000000,0.020225142000000,0.000089256000000,0.000083330000000 +0.000019739000000,0.000700811000000,0.000038293000000,0.000012896000000,0.000055280000000,0.000037898000000,0.000348811000000,0.000074639000000,0.000045404000000,0.000031576000000,0.000081749000000,0.000313651000000,0.000324318000000,0.000346441000000,0.019666129000000,0.000344466000000,0.000346046000000,0.019304253000000,0.000092811000000,0.000082145000000 +0.000019541500000,0.000691724000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000037107000000,0.000386737000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000115725000000,0.000292318000000,0.000292318000000,0.000357898000000,0.019551562000000,0.000594935000000,0.000382787000000,0.020979709000000,0.000126787000000,0.000082145000000 +0.000018751500000,0.000744663000000,0.000038293000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000349206000000,0.000074243000000,0.000045009000000,0.000031577000000,0.000081749000000,0.000292318000000,0.000310095000000,0.000349207000000,0.019760944000000,0.000430589000000,0.000346836000000,0.019266327000000,0.000090441000000,0.000080564000000 +0.000018751000000,0.000726885000000,0.000054490000000,0.000018426666667,0.000056070000000,0.000058441000000,0.000345650000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000083725000000,0.000297058000000,0.000300614000000,0.000345256000000,0.019591463000000,0.000343676000000,0.000398984000000,0.019768055000000,0.000092417000000,0.000082540000000 +0.000019541500000,0.000704762000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037502000000,0.000382786000000,0.000096762000000,0.000045009000000,0.000032367000000,0.000084121000000,0.000325503000000,0.000295478000000,0.000353947000000,0.021151166000000,0.000346441000000,0.000353552000000,0.019414080000000,0.000092021000000,0.000082935000000 +0.000018751500000,0.000670392000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000351181000000,0.000078194000000,0.000045009000000,0.000031182000000,0.000083725000000,0.000292317000000,0.000344071000000,0.000353947000000,0.019843907000000,0.000380811000000,0.000474046000000,0.019529438000000,0.000092021000000,0.000132713000000 +0.000018949000000,0.000720169000000,0.000038292000000,0.000013554333333,0.000055676000000,0.000037503000000,0.000390688000000,0.000077404000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000294688000000,0.000314046000000,0.000463774000000,0.019691808000000,0.000348021000000,0.000354342000000,0.019139512000000,0.000090046000000,0.000080169000000 +0.000019739000000,0.000733205000000,0.000038688000000,0.000012896000000,0.000089651000000,0.000037503000000,0.000344861000000,0.000074243000000,0.000044219000000,0.000030787000000,0.000086096000000,0.000290737000000,0.000308910000000,0.000354342000000,0.020762820000000,0.000385552000000,0.000395429000000,0.020464549000000,0.000090046000000,0.000080565000000 +0.000020331500000,0.000715033000000,0.000054096000000,0.000012896000000,0.000055675000000,0.000037898000000,0.000345651000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000150885000000,0.000293897000000,0.000308120000000,0.000362638000000,0.020268598000000,0.000348417000000,0.000358687000000,0.019399068000000,0.000104269000000,0.000080564000000 +0.000018751500000,0.000769552000000,0.000040268000000,0.000013554333333,0.000057255000000,0.000037898000000,0.000351577000000,0.000076614000000,0.000060022000000,0.000071083000000,0.000082540000000,0.000297058000000,0.000308515000000,0.000355923000000,0.020152845000000,0.000356318000000,0.000381996000000,0.019474129000000,0.000090046000000,0.000081750000000 +0.000020134500000,0.000705157000000,0.000042639000000,0.000013554666667,0.000056070000000,0.000038293000000,0.000345650000000,0.000076613000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000294293000000,0.000311281000000,0.000383182000000,0.019400648000000,0.000378046000000,0.000350786000000,0.021648942000000,0.000092021000000,0.000082539000000 +0.000018751000000,0.000697256000000,0.000073453000000,0.000012896000000,0.000056465000000,0.000037108000000,0.000389502000000,0.000095577000000,0.000045404000000,0.000031576000000,0.000081750000000,0.000292317000000,0.000312466000000,0.000344465000000,0.019500204000000,0.000346836000000,0.000346836000000,0.021102178000000,0.000092811000000,0.000080565000000 +0.000018949000000,0.000818935000000,0.000037898000000,0.000013027666667,0.000056070000000,0.000038293000000,0.000376860000000,0.000181306000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000292713000000,0.000312070000000,0.000349207000000,0.019130426000000,0.000381997000000,0.000351972000000,0.019762524000000,0.000091626000000,0.000161157000000 +0.000019739000000,0.000708317000000,0.000038293000000,0.000017900333333,0.000056466000000,0.000037108000000,0.000360663000000,0.000095971000000,0.000045404000000,0.000031182000000,0.000081749000000,0.000294688000000,0.000312071000000,0.000347626000000,0.019440945000000,0.000355527000000,0.000350786000000,0.020006277000000,0.000092417000000,0.000216466000000 +0.000018751500000,0.000777453000000,0.000037898000000,0.000013422666667,0.000055676000000,0.000037107000000,0.000352367000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000293898000000,0.000316021000000,0.000347626000000,0.019513636000000,0.000344070000000,0.000415972000000,0.019414080000000,0.000158786000000,0.000080960000000 +0.000019541500000,0.000723330000000,0.000038293000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000351577000000,0.000076614000000,0.000045404000000,0.000031972000000,0.000118491000000,0.000295478000000,0.000311675000000,0.000417157000000,0.019228401000000,0.000347626000000,0.000347231000000,0.019475315000000,0.000092811000000,0.000099922000000 +0.000019739000000,0.000697255000000,0.000039478000000,0.000019217000000,0.000056070000000,0.000036712000000,0.000379626000000,0.000095972000000,0.000046194000000,0.000031972000000,0.000082145000000,0.000291922000000,0.000312466000000,0.000348812000000,0.019346919000000,0.000344465000000,0.000381602000000,0.019878673000000,0.000092417000000,0.000128367000000 +0.000018751000000,0.000701601000000,0.000038293000000,0.000013686333333,0.000054885000000,0.000036713000000,0.000347231000000,0.000076219000000,0.000045009000000,0.000031182000000,0.000084910000000,0.000295873000000,0.000310885000000,0.000345651000000,0.019500203000000,0.000396218000000,0.000346836000000,0.019963216000000,0.000091231000000,0.000082540000000 +0.000019541500000,0.000718193000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000037107000000,0.000439675000000,0.000076614000000,0.000045800000000,0.000031182000000,0.000084120000000,0.000292318000000,0.000311280000000,0.000347626000000,0.019439759000000,0.000348811000000,0.000423873000000,0.019019809000000,0.000092021000000,0.000083725000000 +0.000018751500000,0.000717798000000,0.000039083000000,0.000013554333333,0.000072268000000,0.000036713000000,0.000348416000000,0.000075034000000,0.000046194000000,0.000081355000000,0.000083725000000,0.000293898000000,0.000310491000000,0.000347626000000,0.019604105000000,0.000509601000000,0.000351576000000,0.019406574000000,0.000095182000000,0.000082540000000 +0.000018751500000,0.000684218000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000038293000000,0.000381601000000,0.000076218000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000292713000000,0.000312860000000,0.000347626000000,0.019113438000000,0.000417552000000,0.000415181000000,0.019690623000000,0.000167083000000,0.000083330000000 +0.000019739500000,0.000718984000000,0.000106638000000,0.000013554333333,0.000055675000000,0.000036318000000,0.000381206000000,0.000077799000000,0.000045799000000,0.000031577000000,0.000115725000000,0.000294293000000,0.000309701000000,0.000380812000000,0.018908797000000,0.000346441000000,0.000347626000000,0.019551561000000,0.000161157000000,0.000080564000000 +0.000019541500000,0.000758095000000,0.000123626000000,0.000013027666667,0.000056861000000,0.000038293000000,0.000349206000000,0.000080565000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000294688000000,0.000311280000000,0.000344466000000,0.018819117000000,0.000528564000000,0.000621009000000,0.019621883000000,0.000121651000000,0.000082540000000 +0.000020134000000,0.000739132000000,0.000106638000000,0.000012896000000,0.000056466000000,0.000036318000000,0.000346441000000,0.000077799000000,0.000045009000000,0.000031972000000,0.000081750000000,0.000293502000000,0.000396218000000,0.000346441000000,0.020114524000000,0.000402539000000,0.000366984000000,0.019354426000000,0.000092416000000,0.000142194000000 +0.000018751500000,0.000723329000000,0.000040268000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000425453000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000084121000000,0.000294293000000,0.000310095000000,0.000347231000000,0.020111363000000,0.000349996000000,0.000352761000000,0.020084499000000,0.000131132000000,0.000080565000000 +0.000019344000000,0.000679478000000,0.000051330000000,0.000012896000000,0.000057651000000,0.000037108000000,0.000348416000000,0.000077009000000,0.000044218000000,0.000030787000000,0.000082145000000,0.000296268000000,0.000309305000000,0.000344861000000,0.019524697000000,0.000425848000000,0.000347231000000,0.019405389000000,0.000107034000000,0.000082935000000 +0.000019739500000,0.000714638000000,0.000037503000000,0.000013554666667,0.000056071000000,0.000037107000000,0.000360663000000,0.000074243000000,0.000045800000000,0.000031182000000,0.000084120000000,0.000356713000000,0.000312466000000,0.000738736000000,0.019696549000000,0.000349207000000,0.000431379000000,0.020112944000000,0.000090441000000,0.000080565000000 +0.000019542000000,0.000724910000000,0.000037898000000,0.000013554333333,0.000056861000000,0.000037108000000,0.000346441000000,0.000075824000000,0.000044218000000,0.000031577000000,0.000081750000000,0.000290737000000,0.000314836000000,0.000346836000000,0.020633239000000,0.000348021000000,0.000349601000000,0.019222870000000,0.000090836000000,0.000082539000000 +0.000018751500000,0.000713453000000,0.000037898000000,0.000014081000000,0.000055281000000,0.000037898000000,0.000356317000000,0.000079774000000,0.000046194000000,0.000031577000000,0.000117305000000,0.000295083000000,0.000311676000000,0.000359478000000,0.019658228000000,0.000430984000000,0.000393848000000,0.018931710000000,0.000092417000000,0.000083725000000 +0.000018554000000,0.000669601000000,0.000037897000000,0.000012896000000,0.000057256000000,0.000037502000000,0.000382786000000,0.000074639000000,0.000045800000000,0.000031972000000,0.000086096000000,0.000293898000000,0.000310095000000,0.000349602000000,0.019569339000000,0.000347231000000,0.000346046000000,0.021020005000000,0.000090046000000,0.000081355000000 +0.000020134500000,0.000678688000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036318000000,0.000349206000000,0.000076614000000,0.000045009000000,0.000031182000000,0.000085305000000,0.000291132000000,0.000311281000000,0.000344466000000,0.019679956000000,0.000432565000000,0.000424663000000,0.019875511000000,0.000093207000000,0.000132713000000 +0.000019739000000,0.000767971000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000037898000000,0.000384762000000,0.000074244000000,0.000045009000000,0.000030787000000,0.000084910000000,0.000295873000000,0.000310886000000,0.000346441000000,0.019513636000000,0.000350786000000,0.000351971000000,0.019404599000000,0.000171429000000,0.000082935000000 +0.000019542000000,0.000724515000000,0.000037503000000,0.000013027666667,0.000070688000000,0.000036713000000,0.000346046000000,0.000074244000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000295082000000,0.000298638000000,0.000352367000000,0.019406179000000,0.000350787000000,0.000400564000000,0.019665734000000,0.000105849000000,0.000083330000000 +0.000026455000000,0.000717403000000,0.000037503000000,0.000013027666667,0.000055676000000,0.000037107000000,0.000349207000000,0.000074243000000,0.000045009000000,0.000031972000000,0.000084515000000,0.000293898000000,0.000325897000000,0.000351181000000,0.019654277000000,0.000436515000000,0.000347626000000,0.019398277000000,0.000090441000000,0.000081355000000 +0.000018949000000,0.000669997000000,0.000037503000000,0.000034361000000,0.000055675000000,0.000092416000000,0.000396614000000,0.000075429000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000295873000000,0.000292318000000,0.000354737000000,0.019190080000000,0.000346046000000,0.000436910000000,0.019387216000000,0.000091232000000,0.000080960000000 +0.000018554000000,0.000706736000000,0.000037898000000,0.000013817666667,0.000056861000000,0.000087676000000,0.000348812000000,0.000074243000000,0.000043824000000,0.000030787000000,0.000115725000000,0.000294293000000,0.000298244000000,0.000361848000000,0.019891314000000,0.000714243000000,0.000345651000000,0.019605290000000,0.000093206000000,0.000080565000000 +0.000019739000000,0.000945750000000,0.000038293000000,0.000017636666667,0.000056071000000,0.000054096000000,0.000418737000000,0.000076614000000,0.000046194000000,0.000030787000000,0.000084911000000,0.000336170000000,0.000334194000000,0.000363034000000,0.020365388000000,0.000361849000000,0.000429008000000,0.019123710000000,0.000092416000000,0.000097947000000 +0.000018949000000,0.000756120000000,0.000038293000000,0.000013027666667,0.000055281000000,0.000039083000000,0.000355133000000,0.000076219000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000292317000000,0.000297058000000,0.000346836000000,0.019813882000000,0.000346046000000,0.000349601000000,0.019544450000000,0.000125997000000,0.000098737000000 +0.000018949000000,0.000762835000000,0.000038688000000,0.000012896000000,0.000056071000000,0.000037503000000,0.000348021000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000081749000000,0.000293503000000,0.000376070000000,0.000345651000000,0.019030475000000,0.000344070000000,0.000426243000000,0.020452696000000,0.000089651000000,0.000088465000000 +0.000019739000000,0.000707527000000,0.000039478000000,0.000012896000000,0.000056466000000,0.000037898000000,0.000379626000000,0.000074243000000,0.000045009000000,0.000032367000000,0.000084515000000,0.000292317000000,0.000361848000000,0.000348812000000,0.019516401000000,0.000379626000000,0.000352762000000,0.020047758000000,0.000090046000000,0.000088071000000 +0.000019936500000,0.000691330000000,0.000038293000000,0.000012896000000,0.000070688000000,0.000037108000000,0.000349206000000,0.000077009000000,0.000044219000000,0.000032762000000,0.000082145000000,0.000293503000000,0.000573997000000,0.000347626000000,0.018962920000000,0.000349206000000,0.000366984000000,0.019630969000000,0.000090441000000,0.000088466000000 +0.000018751500000,0.000750193000000,0.000037898000000,0.000018690333333,0.000056465000000,0.000037108000000,0.000385157000000,0.000074243000000,0.000043824000000,0.000099528000000,0.000083725000000,0.000297058000000,0.000565305000000,0.000433749000000,0.019019018000000,0.000390687000000,0.000349206000000,0.019433043000000,0.000092021000000,0.000087280000000 +0.000020134000000,0.000731626000000,0.000039083000000,0.000013028000000,0.000055280000000,0.000051725000000,0.000345651000000,0.000077404000000,0.000043824000000,0.000046194000000,0.000098343000000,0.000291922000000,0.000387923000000,0.000352367000000,0.020054870000000,0.000353947000000,0.000350786000000,0.019211018000000,0.000092811000000,0.000088071000000 +0.000043640000000,0.001040564000000,0.000038293000000,0.000012896000000,0.000057256000000,0.000036712000000,0.000346836000000,0.000076614000000,0.000045404000000,0.000033157000000,0.000084120000000,0.000291133000000,0.000439281000000,0.000432959000000,0.019327166000000,0.000381206000000,0.000361848000000,0.019941488000000,0.000092417000000,0.000098738000000 +0.000019344000000,0.000716613000000,0.000071478000000,0.000013686333333,0.000056861000000,0.000037503000000,0.000351181000000,0.000076614000000,0.000043824000000,0.000032762000000,0.000084120000000,0.000327478000000,0.000295873000000,0.000344861000000,0.019806772000000,0.000398984000000,0.000351971000000,0.019918969000000,0.000092021000000,0.000086491000000 +0.000019739000000,0.000716218000000,0.000038293000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000349207000000,0.000217650000000,0.000045009000000,0.000030787000000,0.000084911000000,0.000295082000000,0.000292318000000,0.000348812000000,0.019915413000000,0.000350392000000,0.000415972000000,0.020560548000000,0.000090441000000,0.000086096000000 +0.000018554000000,0.000671577000000,0.000037502000000,0.000013423000000,0.000055676000000,0.000037503000000,0.000383577000000,0.000079775000000,0.000064762000000,0.000031577000000,0.000082145000000,0.000293898000000,0.000398589000000,0.000346836000000,0.020735165000000,0.000521453000000,0.000347626000000,0.019608056000000,0.000090046000000,0.000085701000000 +0.000019541500000,0.000737157000000,0.000038688000000,0.000013554666667,0.000055281000000,0.000070688000000,0.000350787000000,0.000076613000000,0.000044219000000,0.000031972000000,0.000082144000000,0.000293502000000,0.000295083000000,0.000398589000000,0.019690229000000,0.000617058000000,0.000438885000000,0.019494278000000,0.000091626000000,0.000088465000000 +0.000019542000000,0.000720169000000,0.000038293000000,0.000012896000000,0.000076219000000,0.000037108000000,0.000389108000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000294688000000,0.000324713000000,0.000346836000000,0.019098426000000,0.000629700000000,0.000350787000000,0.019527068000000,0.000090836000000,0.000089256000000 +0.000018751000000,0.000727280000000,0.000038293000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000347231000000,0.000077799000000,0.000043824000000,0.000031182000000,0.000082145000000,0.000290342000000,0.000293107000000,0.000378835000000,0.019670870000000,0.000389503000000,0.000378441000000,0.018730624000000,0.000092812000000,0.000088071000000 +0.000019541500000,0.000713453000000,0.000039083000000,0.000019480333333,0.000055281000000,0.000036712000000,0.000349601000000,0.000075034000000,0.000045009000000,0.000030787000000,0.000084515000000,0.000295873000000,0.000294687000000,0.000346836000000,0.019404204000000,0.000352762000000,0.000345651000000,0.020986820000000,0.000124021000000,0.000120071000000 +0.000018751500000,0.000681848000000,0.000038293000000,0.000013422666667,0.000056861000000,0.000057256000000,0.000383182000000,0.000078195000000,0.000045009000000,0.000031576000000,0.000084120000000,0.000296268000000,0.000335774000000,0.000347626000000,0.019559462000000,0.000386738000000,0.000389108000000,0.020665240000000,0.000092021000000,0.000086096000000 +0.000018949000000,0.000715429000000,0.000057651000000,0.000013686000000,0.000057256000000,0.000037898000000,0.000361058000000,0.000076614000000,0.000045404000000,0.000031181000000,0.000082935000000,0.000338539000000,0.000295083000000,0.000343676000000,0.019043908000000,0.000346836000000,0.000349997000000,0.019670475000000,0.000092416000000,0.000085305000000 +0.000019739000000,0.000708317000000,0.000072663000000,0.000013027666667,0.000055281000000,0.000037107000000,0.000724119000000,0.000076614000000,0.000045009000000,0.000031577000000,0.000081750000000,0.000379231000000,0.000296268000000,0.000346441000000,0.020585832000000,0.000380812000000,0.000476021000000,0.019053389000000,0.000093602000000,0.000087676000000 +0.000019739000000,0.000719378000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000675132000000,0.000074244000000,0.000045009000000,0.000031577000000,0.000082144000000,0.000291132000000,0.000419922000000,0.000346836000000,0.021180005000000,0.000372120000000,0.000502095000000,0.019527067000000,0.000092022000000,0.000085701000000 +0.000019936500000,0.000682639000000,0.000038293000000,0.000013028000000,0.000056466000000,0.000036713000000,0.000409256000000,0.000074243000000,0.000045799000000,0.000031182000000,0.000082540000000,0.000294688000000,0.000412811000000,0.000359478000000,0.020568449000000,0.000345651000000,0.000346836000000,0.019468994000000,0.000092416000000,0.000087281000000 +0.000018751000000,0.000677108000000,0.000037898000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000646292000000,0.000077009000000,0.000048565000000,0.000031972000000,0.000082145000000,0.000295873000000,0.000295478000000,0.000383576000000,0.019723018000000,0.000436514000000,0.000356317000000,0.019578425000000,0.000092022000000,0.000089256000000 +0.000018751500000,0.000748219000000,0.000037897000000,0.000012896000000,0.000069503000000,0.000036317000000,0.000354342000000,0.000074244000000,0.000044614000000,0.000031181000000,0.000081750000000,0.000297058000000,0.000291527000000,0.000345256000000,0.020849734000000,0.000349601000000,0.000367774000000,0.019380500000000,0.000269009000000,0.000156812000000 +0.000019936500000,0.000748219000000,0.000037898000000,0.000012896000000,0.000058046000000,0.000036712000000,0.000396219000000,0.000097157000000,0.000045404000000,0.000031182000000,0.000082145000000,0.000293107000000,0.000325898000000,0.000349207000000,0.019841141000000,0.000349206000000,0.000350786000000,0.019273833000000,0.000191972000000,0.000084515000000 +0.000019541500000,0.000718588000000,0.000038293000000,0.000012896000000,0.000058442000000,0.000037503000000,0.000353552000000,0.000076614000000,0.000044614000000,0.000045009000000,0.000084911000000,0.000291527000000,0.000295082000000,0.000353157000000,0.019481240000000,0.000349996000000,0.000387922000000,0.019489932000000,0.000109799000000,0.000088071000000 +0.000018751000000,0.000684614000000,0.000038293000000,0.000013554666667,0.000056860000000,0.000037898000000,0.000378441000000,0.000075429000000,0.000045800000000,0.000032762000000,0.000083725000000,0.000295478000000,0.000296663000000,0.000352367000000,0.019215759000000,0.000346836000000,0.000403330000000,0.021976054000000,0.000127182000000,0.000085700000000 +0.000018554000000,0.000676712000000,0.000037502000000,0.000012896000000,0.000072268000000,0.000071478000000,0.000346441000000,0.000074639000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000329848000000,0.000327873000000,0.000434934000000,0.019079068000000,0.000385947000000,0.000391478000000,0.020058030000000,0.000088861000000,0.000087281000000 +0.000019739000000,0.000714243000000,0.000058441000000,0.000012896000000,0.000071083000000,0.000037503000000,0.000503280000000,0.000076613000000,0.000045404000000,0.000031182000000,0.000104269000000,0.000293898000000,0.000291132000000,0.000361058000000,0.018944747000000,0.000367774000000,0.000348021000000,0.020651807000000,0.000092812000000,0.000087676000000 +0.000026850000000,0.000719379000000,0.000037898000000,0.000013686333333,0.000057256000000,0.000037108000000,0.000381996000000,0.000080565000000,0.000045799000000,0.000031577000000,0.000082145000000,0.000295478000000,0.000312466000000,0.000355923000000,0.019445290000000,0.000371725000000,0.000383971000000,0.020938227000000,0.000091627000000,0.000194342000000 +0.000019936500000,0.000800366000000,0.000037898000000,0.000013686000000,0.000055676000000,0.000037898000000,0.000346046000000,0.000074243000000,0.000045009000000,0.000031182000000,0.000082145000000,0.000292318000000,0.000292712000000,0.000351182000000,0.019715117000000,0.000426244000000,0.000347231000000,0.020125981000000,0.000090046000000,0.000121651000000 +0.000019541500000,0.000691725000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000348021000000,0.000084120000000,0.000059626000000,0.000031577000000,0.000081750000000,0.000293107000000,0.000295083000000,0.000344861000000,0.020184845000000,0.000411626000000,0.000397404000000,0.019285290000000,0.000092021000000,0.000087675000000 +0.000018751500000,0.000674736000000,0.000038293000000,0.000013554333333,0.000055280000000,0.000037503000000,0.000402540000000,0.000074639000000,0.000043824000000,0.000030391000000,0.000081750000000,0.000297848000000,0.000328663000000,0.000349206000000,0.019090130000000,0.000371725000000,0.000350392000000,0.019819413000000,0.000093207000000,0.000085700000000 +0.000018751500000,0.000726885000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000348812000000,0.000078194000000,0.000044219000000,0.000033552000000,0.000084120000000,0.000292713000000,0.000292318000000,0.000348416000000,0.019526673000000,0.000367379000000,0.000387132000000,0.019261982000000,0.000093206000000,0.000088860000000 +0.000019541500000,0.000852910000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000379626000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000291923000000,0.000292712000000,0.000347626000000,0.018972006000000,0.000496959000000,0.000347626000000,0.019241834000000,0.000092417000000,0.000124021000000 +0.000018751500000,0.000704762000000,0.000037898000000,0.000014081000000,0.000055676000000,0.000038292000000,0.000348811000000,0.000076614000000,0.000045009000000,0.000070688000000,0.000115725000000,0.000291132000000,0.000325897000000,0.000465749000000,0.019598969000000,0.000401749000000,0.000346836000000,0.019436993000000,0.000090441000000,0.000088071000000 +0.000018949000000,0.000705552000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000038293000000,0.000348812000000,0.000074639000000,0.000044219000000,0.000032368000000,0.000117306000000,0.000293502000000,0.000292713000000,0.000348417000000,0.020096351000000,0.000364218000000,0.000346836000000,0.020272153000000,0.000092416000000,0.000085305000000 +0.000019541500000,0.000696465000000,0.000038293000000,0.000012896000000,0.000056070000000,0.000037503000000,0.000371725000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000296268000000,0.000357898000000,0.000346441000000,0.019256845000000,0.000376071000000,0.000356713000000,0.019903956000000,0.000093997000000,0.000086095000000 +0.000019739000000,0.000715823000000,0.000052516000000,0.000013027666667,0.000055281000000,0.000052910000000,0.000348021000000,0.000074244000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000294688000000,0.000292713000000,0.000367774000000,0.019683907000000,0.000408861000000,0.000385552000000,0.019148994000000,0.000092811000000,0.000086490000000 +0.000049764000000,0.000714243000000,0.000039874000000,0.000013027666667,0.000072268000000,0.000037898000000,0.000520268000000,0.000074244000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000291922000000,0.000293108000000,0.000347626000000,0.019231562000000,0.000369354000000,0.000346836000000,0.019811116000000,0.000159972000000,0.000086095000000 +0.000027640000000,0.000732811000000,0.000037898000000,0.000013028000000,0.000057256000000,0.000037108000000,0.000352367000000,0.000074639000000,0.000045404000000,0.000030787000000,0.000084120000000,0.000291527000000,0.000342491000000,0.000347231000000,0.019886969000000,0.000369354000000,0.000429799000000,0.019038377000000,0.000110984000000,0.000087281000000 +0.000018751500000,0.000679872000000,0.000037898000000,0.000012896000000,0.000057256000000,0.000053700000000,0.000515527000000,0.000130738000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000290737000000,0.000295083000000,0.000346046000000,0.019090525000000,0.000369749000000,0.000351577000000,0.020108203000000,0.000093207000000,0.000085700000000 +0.000018751500000,0.000707132000000,0.000038688000000,0.000013423000000,0.000057651000000,0.000039873000000,0.000369750000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000160762000000,0.000295478000000,0.000296268000000,0.000357898000000,0.019199167000000,0.000369355000000,0.000385552000000,0.019578426000000,0.000092416000000,0.000087675000000 +0.000019541500000,0.000706342000000,0.000038293000000,0.000013686333333,0.000055676000000,0.000039083000000,0.000349601000000,0.000078590000000,0.000045799000000,0.000030392000000,0.000099923000000,0.000294688000000,0.000291527000000,0.000346836000000,0.019024945000000,0.000408070000000,0.000352367000000,0.019962820000000,0.000091627000000,0.000086885000000 +0.000018751000000,0.000724514000000,0.000039478000000,0.000013554333333,0.000054885000000,0.000038688000000,0.000347626000000,0.000077404000000,0.000044614000000,0.000031577000000,0.000082144000000,0.000291133000000,0.000291528000000,0.000348021000000,0.019816647000000,0.000347627000000,0.000380811000000,0.019665734000000,0.000092811000000,0.000085305000000 +0.000019739000000,0.000723329000000,0.000037503000000,0.000013027666667,0.000057256000000,0.000052910000000,0.000390687000000,0.000109404000000,0.000044219000000,0.000032762000000,0.000084515000000,0.000327083000000,0.000331429000000,0.000344070000000,0.019680747000000,0.000366194000000,0.000359478000000,0.019351265000000,0.000090046000000,0.000086096000000 +0.000019541500000,0.000697256000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000052910000000,0.000349206000000,0.000074244000000,0.000045799000000,0.000031182000000,0.000084515000000,0.000297849000000,0.000295478000000,0.000347231000000,0.020270178000000,0.000359082000000,0.000383577000000,0.019758179000000,0.000092812000000,0.000088071000000 +0.000018751500000,0.000728070000000,0.000056466000000,0.000013027666667,0.000089651000000,0.000037503000000,0.000418343000000,0.000077009000000,0.000045009000000,0.000030787000000,0.000082145000000,0.000291132000000,0.000293898000000,0.000346046000000,0.019160845000000,0.000346441000000,0.000347231000000,0.018935266000000,0.000090441000000,0.000088071000000 +0.000030010500000,0.000717798000000,0.000037898000000,0.000012896000000,0.000057651000000,0.000036713000000,0.000360268000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000081749000000,0.000295083000000,0.000329058000000,0.000360268000000,0.019775561000000,0.000417157000000,0.000346836000000,0.020106227000000,0.000091231000000,0.000088860000000 +0.000018554000000,0.000719379000000,0.000037503000000,0.000013554333333,0.000055676000000,0.000037898000000,0.000345651000000,0.000075034000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000294688000000,0.000292712000000,0.000348416000000,0.019943858000000,0.000350786000000,0.000354737000000,0.020087660000000,0.000092811000000,0.000088070000000 +0.000018554000000,0.000701601000000,0.000039478000000,0.000013554333333,0.000056071000000,0.000036713000000,0.000432169000000,0.000077009000000,0.000091626000000,0.000031972000000,0.000082145000000,0.000292318000000,0.000329058000000,0.000345256000000,0.020220795000000,0.000393848000000,0.000352366000000,0.019313734000000,0.000090441000000,0.000087676000000 +0.000020529000000,0.000685009000000,0.000038688000000,0.000012896000000,0.000056070000000,0.000037108000000,0.000347626000000,0.000078589000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000290737000000,0.000291132000000,0.000346836000000,0.019085389000000,0.000346835000000,0.000358688000000,0.020063956000000,0.000139429000000,0.000086096000000 +0.000019739000000,0.000706342000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000038688000000,0.000387922000000,0.000077799000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000293502000000,0.000299429000000,0.000353552000000,0.019659018000000,0.000567280000000,0.000348021000000,0.018848352000000,0.000090836000000,0.000087676000000 +0.000019739000000,0.000734786000000,0.000038293000000,0.000013554333333,0.000057256000000,0.000036712000000,0.000347231000000,0.000074639000000,0.000045799000000,0.000029997000000,0.000082540000000,0.000329058000000,0.000329058000000,0.000352367000000,0.019900400000000,0.000453503000000,0.000385947000000,0.020431364000000,0.000092812000000,0.000086490000000 +0.000018949000000,0.000722934000000,0.000038688000000,0.000013554333333,0.000056465000000,0.000036713000000,0.000351972000000,0.000076219000000,0.000044614000000,0.000031577000000,0.000086095000000,0.000292317000000,0.000380811000000,0.000353947000000,0.019329932000000,0.000407675000000,0.000382392000000,0.019189685000000,0.000092811000000,0.000119281000000 +0.000018751000000,0.000679873000000,0.000037898000000,0.000013818000000,0.000056465000000,0.000037898000000,0.000381602000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000097947000000,0.000293897000000,0.000478392000000,0.000362638000000,0.019956500000000,0.000344071000000,0.000393848000000,0.020041832000000,0.000090046000000,0.000088071000000 +0.000019739000000,0.000732811000000,0.000037898000000,0.000012896000000,0.000056465000000,0.000036317000000,0.000346046000000,0.000077799000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000294293000000,0.000306539000000,0.000355922000000,0.019319661000000,0.000346441000000,0.000349206000000,0.020235413000000,0.000092416000000,0.000086095000000 +0.000019936500000,0.000722934000000,0.000037503000000,0.000017373333333,0.000055281000000,0.000036713000000,0.000668021000000,0.000076219000000,0.000044219000000,0.000032367000000,0.000084120000000,0.000293503000000,0.000377255000000,0.000407675000000,0.019368253000000,0.000432960000000,0.000390293000000,0.020225931000000,0.000092416000000,0.000087676000000 +0.000028035500000,0.000713848000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000402144000000,0.000079775000000,0.000044614000000,0.000031181000000,0.000081750000000,0.000295478000000,0.000300613000000,0.000344466000000,0.019403809000000,0.000349206000000,0.000352367000000,0.020158376000000,0.000092021000000,0.000086886000000 +0.000026257500000,0.000707527000000,0.000038293000000,0.000013686000000,0.000055675000000,0.000036712000000,0.000365404000000,0.000075033000000,0.000046194000000,0.000033157000000,0.000082540000000,0.000293503000000,0.000293503000000,0.000348416000000,0.020176154000000,0.000384762000000,0.000381207000000,0.019799660000000,0.000091627000000,0.000085306000000 +0.000019739000000,0.000717009000000,0.000038688000000,0.000013027666667,0.000057255000000,0.000037898000000,0.000376465000000,0.000076614000000,0.000045800000000,0.000031182000000,0.000082144000000,0.000294688000000,0.000326293000000,0.000347626000000,0.019246179000000,0.000411231000000,0.000349206000000,0.020696845000000,0.000093206000000,0.000089256000000 +0.000019936500000,0.000711872000000,0.000038293000000,0.000013554333333,0.000056861000000,0.000037898000000,0.000367774000000,0.000077404000000,0.000044614000000,0.000029997000000,0.000118096000000,0.000294293000000,0.000293898000000,0.000347231000000,0.018855069000000,0.000367379000000,0.000474836000000,0.019229586000000,0.000091232000000,0.000087676000000 +0.000019739000000,0.000759280000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000391478000000,0.000074639000000,0.000045009000000,0.000031972000000,0.000082145000000,0.000294688000000,0.000290737000000,0.000353552000000,0.019873932000000,0.000466539000000,0.000362244000000,0.019097636000000,0.000092021000000,0.000092811000000 +0.000019541500000,0.000766391000000,0.000038689000000,0.000013027666667,0.000056466000000,0.000037897000000,0.000617453000000,0.000076614000000,0.000045799000000,0.000033157000000,0.000085305000000,0.000329058000000,0.000374490000000,0.000348416000000,0.019137932000000,0.000404515000000,0.000423083000000,0.020381586000000,0.000092416000000,0.000085700000000 +0.000019739000000,0.000752169000000,0.000037503000000,0.000013027666667,0.000089256000000,0.000037108000000,0.000412416000000,0.000077800000000,0.000044219000000,0.000030392000000,0.000082540000000,0.000329453000000,0.000291132000000,0.000345256000000,0.019674426000000,0.000366984000000,0.000366194000000,0.019627808000000,0.000102688000000,0.000084910000000 +0.000018554000000,0.000673156000000,0.000037503000000,0.000013686000000,0.000056466000000,0.000037503000000,0.000372910000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000295083000000,0.000362243000000,0.000347231000000,0.020359462000000,0.000370934000000,0.000380812000000,0.019771610000000,0.000090046000000,0.000085700000000 +0.000019541500000,0.000745453000000,0.000094391000000,0.000019480333333,0.000055676000000,0.000056861000000,0.000365403000000,0.000075429000000,0.000045799000000,0.000030787000000,0.000082144000000,0.000293107000000,0.000294687000000,0.000402935000000,0.019583562000000,0.000368959000000,0.000354342000000,0.019928845000000,0.000091627000000,0.000086095000000 +0.000018554000000,0.000939428000000,0.000038688000000,0.000013027666667,0.000056465000000,0.000037898000000,0.000373701000000,0.000074639000000,0.000043824000000,0.000031181000000,0.000082144000000,0.000294688000000,0.000377255000000,0.000348022000000,0.019210228000000,0.000369355000000,0.000370540000000,0.020562919000000,0.000178145000000,0.000120465000000 +0.000026060000000,0.000726885000000,0.000039084000000,0.000012896000000,0.000055675000000,0.000052121000000,0.000365404000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000154046000000,0.000293503000000,0.000293108000000,0.000403725000000,0.019967956000000,0.000399379000000,0.000344071000000,0.019680747000000,0.000098342000000,0.000087675000000 +0.000019936500000,0.000706737000000,0.000037503000000,0.000013027666667,0.000057651000000,0.000037108000000,0.000372515000000,0.000076614000000,0.000135479000000,0.000031577000000,0.000082144000000,0.000293108000000,0.000294688000000,0.000344466000000,0.019755809000000,0.000372120000000,0.000346441000000,0.019365883000000,0.000098737000000,0.000088466000000 +0.000019541500000,0.000759280000000,0.000038293000000,0.000013554333333,0.000055675000000,0.000036318000000,0.000378836000000,0.000078984000000,0.000079774000000,0.000031182000000,0.000082144000000,0.000293503000000,0.000324713000000,0.000346441000000,0.019158475000000,0.000415972000000,0.000363033000000,0.019900400000000,0.000321947000000,0.000088071000000 +0.000018751000000,0.000682243000000,0.000038688000000,0.000013554333333,0.000056071000000,0.000037503000000,0.000367774000000,0.000077009000000,0.000047379000000,0.000030787000000,0.000084120000000,0.000293897000000,0.000295083000000,0.000346836000000,0.021196992000000,0.000376071000000,0.000350392000000,0.019491117000000,0.000135083000000,0.000087675000000 +0.000019937000000,0.000758885000000,0.000037503000000,0.000013027666667,0.000056071000000,0.000038293000000,0.000430194000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000082935000000,0.000434144000000,0.000312070000000,0.000344466000000,0.020428598000000,0.000416762000000,0.000379626000000,0.019930031000000,0.000097947000000,0.000122837000000 +0.000018554000000,0.000791280000000,0.000037503000000,0.000013027666667,0.000105453000000,0.000036713000000,0.000382787000000,0.000074244000000,0.000043824000000,0.000031182000000,0.000084120000000,0.000290737000000,0.000293107000000,0.000387527000000,0.021779708000000,0.000515132000000,0.000349207000000,0.019247364000000,0.000135478000000,0.000088466000000 +0.000018751500000,0.000750984000000,0.000037502000000,0.000013027666667,0.000059626000000,0.000037898000000,0.000367774000000,0.000076614000000,0.000043824000000,0.000033157000000,0.000084515000000,0.000292713000000,0.000295083000000,0.000432169000000,0.020132302000000,0.000369354000000,0.000380416000000,0.019521142000000,0.000098737000000,0.000086096000000 +0.000019739000000,0.000730836000000,0.000065552000000,0.000013027666667,0.000056071000000,0.000037107000000,0.000369750000000,0.000076614000000,0.000043824000000,0.000030392000000,0.000095577000000,0.000291922000000,0.000338935000000,0.000392663000000,0.019359167000000,0.000348021000000,0.000351972000000,0.020435709000000,0.000097552000000,0.000085306000000 +0.000018949000000,0.000669206000000,0.000038292000000,0.000013554666667,0.000056465000000,0.000067132000000,0.000366984000000,0.000074638000000,0.000079774000000,0.000030787000000,0.000084515000000,0.000293502000000,0.000292317000000,0.000350787000000,0.019634524000000,0.000378046000000,0.000425058000000,0.021221091000000,0.000098737000000,0.000085701000000 +0.000019739500000,0.000674342000000,0.000037898000000,0.000018558666667,0.000055281000000,0.000036713000000,0.000370934000000,0.000082540000000,0.000044219000000,0.000030787000000,0.000082540000000,0.000330638000000,0.000293898000000,0.000345651000000,0.019465833000000,0.000349601000000,0.000350391000000,0.019712351000000,0.000098342000000,0.000087281000000 +0.000036924500000,0.000769157000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037108000000,0.000376860000000,0.000076219000000,0.000043824000000,0.000050540000000,0.000083725000000,0.000294293000000,0.000306145000000,0.000346441000000,0.019974277000000,0.000347231000000,0.000387922000000,0.020174968000000,0.000097948000000,0.000088465000000 +0.000018751500000,0.000718984000000,0.000037897000000,0.000013554333333,0.000056861000000,0.000036712000000,0.000370144000000,0.000075034000000,0.000044614000000,0.000031972000000,0.000084120000000,0.000294293000000,0.000295478000000,0.000466145000000,0.019053389000000,0.000348021000000,0.000355132000000,0.019756994000000,0.000117305000000,0.000087675000000 +0.000019739500000,0.000761255000000,0.000038688000000,0.000013554333333,0.000105453000000,0.000037503000000,0.000368960000000,0.000074244000000,0.000046589000000,0.000031182000000,0.000084515000000,0.000295083000000,0.000324713000000,0.000351182000000,0.019978623000000,0.000347626000000,0.000384367000000,0.019297537000000,0.000097947000000,0.000086886000000 +0.000018554000000,0.000682638000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000370539000000,0.000076614000000,0.000044614000000,0.000031972000000,0.000115330000000,0.000293107000000,0.000294293000000,0.000355133000000,0.018986229000000,0.000393453000000,0.000348416000000,0.019795315000000,0.000095182000000,0.000085700000000 +0.000018751500000,0.000726885000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037502000000,0.000374095000000,0.000074244000000,0.000044614000000,0.000031577000000,0.000083725000000,0.000344070000000,0.000296664000000,0.000361848000000,0.019299513000000,0.000349602000000,0.000350392000000,0.020763610000000,0.000095182000000,0.000086491000000 +0.000019541500000,0.000709107000000,0.000039478000000,0.000012896000000,0.000055280000000,0.000037898000000,0.000366589000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000082145000000,0.000293898000000,0.000788515000000,0.000390292000000,0.019757783000000,0.000381996000000,0.000366194000000,0.019183365000000,0.000097947000000,0.000088466000000 +0.000019541500000,0.000718194000000,0.000037897000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000575576000000,0.000074243000000,0.000045404000000,0.000031182000000,0.000082144000000,0.000296663000000,0.000326293000000,0.000347231000000,0.019841932000000,0.000350786000000,0.000352762000000,0.019636104000000,0.000097552000000,0.000085305000000 +0.000019937000000,0.000772317000000,0.000051725000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000367379000000,0.000074638000000,0.000045009000000,0.000031972000000,0.000084515000000,0.000292712000000,0.000293897000000,0.000344070000000,0.020273733000000,0.000346046000000,0.000415181000000,0.019835610000000,0.000097553000000,0.000120071000000 +0.000018949000000,0.000677898000000,0.000038688000000,0.000017768333333,0.000055676000000,0.000036712000000,0.000366984000000,0.000077404000000,0.000044218000000,0.000031182000000,0.000084120000000,0.000290737000000,0.000397404000000,0.000349206000000,0.019256450000000,0.000389897000000,0.000353157000000,0.019973882000000,0.000097947000000,0.000088466000000 +0.000018554000000,0.000692909000000,0.000037898000000,0.000012896000000,0.000057256000000,0.000038293000000,0.000366589000000,0.000077009000000,0.000043824000000,0.000031972000000,0.000082145000000,0.000291133000000,0.000298243000000,0.000347626000000,0.019924895000000,0.000348021000000,0.000381206000000,0.018973982000000,0.000097552000000,0.000085700000000 +0.000041467500000,0.000713453000000,0.000037503000000,0.000013027666667,0.000129947000000,0.000036713000000,0.000408070000000,0.000077799000000,0.000044219000000,0.000032367000000,0.000115725000000,0.000295082000000,0.000292318000000,0.000381996000000,0.019374574000000,0.000376861000000,0.000347231000000,0.019964795000000,0.000095577000000,0.000084515000000 +0.000019936500000,0.000979329000000,0.000038293000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000370144000000,0.000075824000000,0.000044219000000,0.000051725000000,0.000084910000000,0.000293898000000,0.000325898000000,0.000352762000000,0.018924994000000,0.000348416000000,0.000415972000000,0.019547611000000,0.000097947000000,0.000087675000000 +0.000018751500000,0.000740712000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000037898000000,0.000556613000000,0.000075429000000,0.000044613000000,0.000032367000000,0.000082145000000,0.000295083000000,0.000297848000000,0.000349206000000,0.019911067000000,0.000346836000000,0.000356712000000,0.019692599000000,0.000098737000000,0.000084911000000 +0.000018949000000,0.000710687000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000036712000000,0.000664465000000,0.000074638000000,0.000043823000000,0.000031182000000,0.000084120000000,0.000297454000000,0.000292713000000,0.000344861000000,0.019866031000000,0.000386737000000,0.000677502000000,0.019841142000000,0.000097947000000,0.000088071000000 +0.000019739500000,0.000680268000000,0.000037502000000,0.000013028000000,0.000057256000000,0.000036318000000,0.000568861000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000290737000000,0.000294688000000,0.000575972000000,0.020451512000000,0.000349997000000,0.000484317000000,0.019265932000000,0.000095182000000,0.000088466000000 +0.000019739000000,0.000754144000000,0.000037898000000,0.000013554333333,0.000089651000000,0.000036713000000,0.000475626000000,0.000076614000000,0.000045404000000,0.000030787000000,0.000082145000000,0.000628515000000,0.000293108000000,0.000912169000000,0.019858524000000,0.000381997000000,0.000346836000000,0.019379710000000,0.000095181000000,0.000088071000000 +0.000019541500000,0.000731231000000,0.000037898000000,0.000013027666667,0.000070293000000,0.000038688000000,0.000345651000000,0.000074638000000,0.000044219000000,0.000030786000000,0.000081355000000,0.000295873000000,0.000360663000000,0.000370144000000,0.019077093000000,0.000437305000000,0.000422293000000,0.020291512000000,0.000095577000000,0.000087280000000 +0.000019739000000,0.000723329000000,0.000038688000000,0.000012896000000,0.000056466000000,0.000036713000000,0.000429009000000,0.000075429000000,0.000045404000000,0.000031972000000,0.000153256000000,0.000299033000000,0.000290342000000,0.000408861000000,0.020349586000000,0.000343676000000,0.000350786000000,0.020126771000000,0.000097552000000,0.000087675000000 +0.000018751500000,0.000761651000000,0.000037503000000,0.000024352666667,0.000054885000000,0.000087675000000,0.000348812000000,0.000075034000000,0.000046985000000,0.000031577000000,0.000081749000000,0.000292713000000,0.000294688000000,0.000401750000000,0.019482031000000,0.000381601000000,0.000399379000000,0.019256450000000,0.000095577000000,0.000086490000000 +0.000018554000000,0.000692515000000,0.000041849000000,0.000013554666667,0.000056466000000,0.000037898000000,0.000349601000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000291923000000,0.000363033000000,0.000367774000000,0.019765684000000,0.000345650000000,0.000347626000000,0.019927660000000,0.000098342000000,0.000088465000000 +0.000036529000000,0.000705551000000,0.000039083000000,0.000013027666667,0.000055281000000,0.000037503000000,0.000410836000000,0.000074244000000,0.000045404000000,0.000047774000000,0.000081355000000,0.000329059000000,0.000294292000000,0.000376071000000,0.019143068000000,0.000383576000000,0.000441651000000,0.020094771000000,0.000098343000000,0.000088071000000 +0.000018553500000,0.000705157000000,0.000037898000000,0.000013554666667,0.000056466000000,0.000036712000000,0.000375281000000,0.000078194000000,0.000046589000000,0.000031972000000,0.000082145000000,0.000296268000000,0.000326293000000,0.000375280000000,0.019885389000000,0.000348416000000,0.000349996000000,0.019374574000000,0.000095972000000,0.000088070000000 +0.000018751500000,0.000740317000000,0.000037898000000,0.000013554333333,0.000060811000000,0.000037898000000,0.000381997000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000294687000000,0.000291922000000,0.000346440000000,0.019666130000000,0.000344071000000,0.000381206000000,0.019877092000000,0.000095182000000,0.000084910000000 +0.000019739000000,0.000682638000000,0.000037898000000,0.000012896000000,0.000055280000000,0.000037898000000,0.000344860000000,0.000074639000000,0.000044219000000,0.000031182000000,0.000084120000000,0.000293503000000,0.000295083000000,0.000346046000000,0.019731709000000,0.000352366000000,0.000346441000000,0.019261191000000,0.000098738000000,0.000086096000000 +0.000019541500000,0.000681058000000,0.000038688000000,0.000013028000000,0.000056466000000,0.000037898000000,0.000535676000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000083725000000,0.000291922000000,0.000325502000000,0.000359478000000,0.020235413000000,0.000352367000000,0.000354737000000,0.019824944000000,0.000095972000000,0.000086491000000 +0.000018949000000,0.000714243000000,0.000038293000000,0.000013686000000,0.000056465000000,0.000038293000000,0.000540021000000,0.000080959000000,0.000045799000000,0.000030787000000,0.000081749000000,0.000351577000000,0.000290737000000,0.000452317000000,0.019268697000000,0.000391083000000,0.000366589000000,0.019052204000000,0.000098342000000,0.000086490000000 +0.000019936500000,0.000730045000000,0.000089651000000,0.000012896000000,0.000055281000000,0.000037898000000,0.000441650000000,0.000076614000000,0.000044614000000,0.000030391000000,0.000082145000000,0.000294292000000,0.000293107000000,0.000344860000000,0.019881043000000,0.000351181000000,0.000345256000000,0.019538129000000,0.000095182000000,0.000087676000000 +0.000018949000000,0.000713058000000,0.000051330000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000369354000000,0.000074243000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000294688000000,0.000294293000000,0.000347626000000,0.019300302000000,0.000356712000000,0.000361453000000,0.019291216000000,0.000098342000000,0.000096762000000 +0.000018751500000,0.000675922000000,0.000037898000000,0.000024879333333,0.000056466000000,0.000038688000000,0.000413997000000,0.000074243000000,0.000044219000000,0.000032762000000,0.000081750000000,0.000292318000000,0.000299034000000,0.000353157000000,0.019553931000000,0.000346046000000,0.000351972000000,0.019770030000000,0.000097947000000,0.000087281000000 +0.000019541500000,0.000708317000000,0.000038293000000,0.000014213000000,0.000058046000000,0.000037898000000,0.000370144000000,0.000075034000000,0.000045009000000,0.000031182000000,0.000082145000000,0.000292318000000,0.000327873000000,0.000352366000000,0.019326771000000,0.000372910000000,0.000436909000000,0.019326772000000,0.000098342000000,0.000088071000000 +0.000028825500000,0.000723724000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000036713000000,0.000378836000000,0.000077404000000,0.000044614000000,0.000030787000000,0.000105058000000,0.000292317000000,0.000292713000000,0.000353157000000,0.019530623000000,0.000379231000000,0.000359873000000,0.020091215000000,0.000098343000000,0.000085700000000 +0.000020134500000,0.000732811000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000037107000000,0.000371330000000,0.000076219000000,0.000045009000000,0.000033157000000,0.000082540000000,0.000294292000000,0.000295083000000,0.000398984000000,0.019726179000000,0.000345256000000,0.000383181000000,0.019760549000000,0.000095576000000,0.000084515000000 +0.000019739000000,0.000730440000000,0.000038293000000,0.000013027666667,0.000056466000000,0.000036318000000,0.000366589000000,0.000074638000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000292317000000,0.000337355000000,0.000355922000000,0.019677191000000,0.000346046000000,0.000370540000000,0.020050919000000,0.000095972000000,0.000087280000000 +0.000018751500000,0.000668416000000,0.000037898000000,0.000013554333333,0.000056860000000,0.000036712000000,0.000372120000000,0.000076219000000,0.000045404000000,0.000029997000000,0.000084121000000,0.000291923000000,0.000296268000000,0.000347626000000,0.020380401000000,0.000404120000000,0.000431774000000,0.019700104000000,0.000096367000000,0.000086885000000 +0.000019541500000,0.000730836000000,0.000037898000000,0.000012896000000,0.000069898000000,0.000036713000000,0.000386342000000,0.000076614000000,0.000045799000000,0.000032367000000,0.000082145000000,0.000290738000000,0.000311675000000,0.000344465000000,0.020062771000000,0.000345651000000,0.000346836000000,0.019347710000000,0.000097947000000,0.000210145000000 +0.000018751500000,0.000771527000000,0.000071873000000,0.000013686000000,0.000056070000000,0.000037107000000,0.000368169000000,0.000075034000000,0.000045404000000,0.000031577000000,0.000082145000000,0.000290737000000,0.000295083000000,0.000349601000000,0.019882623000000,0.000394638000000,0.000383181000000,0.019489142000000,0.000098737000000,0.000135083000000 +0.000018751500000,0.000857650000000,0.000037503000000,0.000013554666667,0.000056070000000,0.000037503000000,0.000373305000000,0.000077009000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000294688000000,0.000295873000000,0.000348811000000,0.019557883000000,0.000350787000000,0.000350392000000,0.020325882000000,0.000101108000000,0.000087281000000 +0.000019541500000,0.000718984000000,0.000037898000000,0.000013554666667,0.000055675000000,0.000036713000000,0.000368169000000,0.000077799000000,0.000045799000000,0.000032367000000,0.000124021000000,0.000294687000000,0.000326688000000,0.000347231000000,0.019467809000000,0.000448366000000,0.000477206000000,0.020040648000000,0.000098342000000,0.000086095000000 +0.000019541500000,0.000671972000000,0.000038293000000,0.000041340333333,0.000056465000000,0.000087281000000,0.000370145000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000084515000000,0.000292317000000,0.000293897000000,0.000387132000000,0.020176154000000,0.000468120000000,0.000732415000000,0.021185140000000,0.000098738000000,0.000088465000000 +0.000019541500000,0.000777848000000,0.000037503000000,0.000018558666667,0.000056861000000,0.000036713000000,0.000369355000000,0.000166687000000,0.000045799000000,0.000032367000000,0.000083725000000,0.000295083000000,0.000290737000000,0.000348416000000,0.019232746000000,0.000346836000000,0.000366194000000,0.019370623000000,0.000129552000000,0.000086095000000 +0.000018751500000,0.000722935000000,0.000037502000000,0.000013686000000,0.000056466000000,0.000037108000000,0.000365799000000,0.000080959000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000290737000000,0.000305750000000,0.000395429000000,0.019420006000000,0.000353157000000,0.000381601000000,0.019364303000000,0.000095972000000,0.000085305000000 +0.000019146500000,0.000748218000000,0.000037898000000,0.000017505000000,0.000055676000000,0.000036713000000,0.000377651000000,0.000076614000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000301799000000,0.000293898000000,0.000348021000000,0.019109883000000,0.000349601000000,0.000354342000000,0.019547215000000,0.000099527000000,0.000089651000000 +0.000020134000000,0.000717404000000,0.000038688000000,0.000013027666667,0.000073454000000,0.000036713000000,0.000344070000000,0.000074639000000,0.000047380000000,0.000031972000000,0.000084515000000,0.000295082000000,0.000413996000000,0.000347231000000,0.021411906000000,0.000349206000000,0.000384367000000,0.019612796000000,0.000096762000000,0.000085700000000 +0.000019541500000,0.000690539000000,0.000038293000000,0.000013554333333,0.000055281000000,0.000037503000000,0.000346836000000,0.000075824000000,0.000043824000000,0.000057651000000,0.000084515000000,0.000291132000000,0.000292318000000,0.000347231000000,0.020444400000000,0.000382391000000,0.000344465000000,0.020646277000000,0.000097157000000,0.000087281000000 +0.000019146500000,0.000729650000000,0.000037898000000,0.000012896333333,0.000055676000000,0.000037503000000,0.000385552000000,0.000079774000000,0.000045404000000,0.000031577000000,0.000178935000000,0.000294688000000,0.000311280000000,0.000346046000000,0.019559858000000,0.000353157000000,0.000346045000000,0.019235117000000,0.000095576000000,0.000088860000000 +0.000019541500000,0.000713848000000,0.000039479000000,0.000012896000000,0.000056861000000,0.000036713000000,0.000348811000000,0.000075429000000,0.000043824000000,0.000031972000000,0.000228712000000,0.000298243000000,0.000291923000000,0.000344861000000,0.020808647000000,0.000431774000000,0.000348811000000,0.020005882000000,0.000097947000000,0.000085700000000 +0.000019739500000,0.000747033000000,0.000038293000000,0.000017505000000,0.000056861000000,0.000037503000000,0.000378836000000,0.000075824000000,0.000045009000000,0.000032762000000,0.000089256000000,0.000348021000000,0.000291923000000,0.000362243000000,0.020043018000000,0.000348812000000,0.000350392000000,0.019350476000000,0.000098342000000,0.000088861000000 +0.000019937000000,0.000711873000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000599281000000,0.000074638000000,0.000045799000000,0.000031576000000,0.000081749000000,0.000294688000000,0.000326292000000,0.000904663000000,0.020513931000000,0.000348811000000,0.000396219000000,0.019143068000000,0.000095577000000,0.000087675000000 +0.000019739500000,0.000690540000000,0.000038688000000,0.000013027666667,0.000060812000000,0.000049750000000,0.000399774000000,0.000074244000000,0.000044219000000,0.000031182000000,0.000115330000000,0.000294292000000,0.000293108000000,0.000360663000000,0.019543660000000,0.000418737000000,0.000349206000000,0.021540300000000,0.000098738000000,0.000087676000000 +0.000020332000000,0.001080069000000,0.000037503000000,0.000013027666667,0.000056466000000,0.000037108000000,0.000345651000000,0.000074639000000,0.000045404000000,0.000032367000000,0.000081750000000,0.000291527000000,0.000295083000000,0.000346046000000,0.019462673000000,0.000343676000000,0.000380417000000,0.020319956000000,0.000095182000000,0.000086095000000 +0.000018949000000,0.000671972000000,0.000037898000000,0.000013818000000,0.000111379000000,0.000036712000000,0.000381996000000,0.000075823000000,0.000045404000000,0.000031972000000,0.000081749000000,0.000290737000000,0.000512761000000,0.000347231000000,0.019436203000000,0.000383972000000,0.000373305000000,0.020388302000000,0.000109009000000,0.000086491000000 +0.000018751500000,0.000757700000000,0.000038293000000,0.000013554333333,0.000056071000000,0.000036713000000,0.000349207000000,0.000074639000000,0.000044219000000,0.000031972000000,0.000084121000000,0.000296268000000,0.000292713000000,0.000359082000000,0.019563018000000,0.000346046000000,0.000376070000000,0.020348795000000,0.000092021000000,0.000097158000000 +0.000019739000000,0.000711082000000,0.000037502000000,0.000013554333333,0.000056071000000,0.000037898000000,0.000391083000000,0.000076613000000,0.000045800000000,0.000030787000000,0.000084120000000,0.000293898000000,0.000326293000000,0.000357108000000,0.019601734000000,0.000344861000000,0.000371724000000,0.019307018000000,0.000090046000000,0.000099923000000 +0.000018751500000,0.000719774000000,0.000038293000000,0.000013554666667,0.000056465000000,0.000036713000000,0.000348811000000,0.000076613000000,0.000044219000000,0.000031972000000,0.000081750000000,0.000292713000000,0.000296268000000,0.000345255000000,0.019363117000000,0.000382787000000,0.000375675000000,0.019887364000000,0.000089651000000,0.000080960000000 +0.000018751500000,0.000695280000000,0.000038688000000,0.000013027666667,0.000057651000000,0.000037898000000,0.000351576000000,0.000074244000000,0.000045009000000,0.000045404000000,0.000084120000000,0.000291923000000,0.000291527000000,0.000347626000000,0.020287956000000,0.000348812000000,0.000377256000000,0.019689438000000,0.000093206000000,0.000082935000000 +0.000019541500000,0.000671972000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000038293000000,0.000346045000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000150490000000,0.000329453000000,0.000291133000000,0.000353157000000,0.019949389000000,0.000382787000000,0.000381996000000,0.019567364000000,0.000089651000000,0.000082540000000 +0.000020134500000,0.000775477000000,0.000039083000000,0.000013554333333,0.000055676000000,0.000037107000000,0.000345651000000,0.000096367000000,0.000044614000000,0.000032762000000,0.000084516000000,0.000293503000000,0.000297454000000,0.000351576000000,0.019653488000000,0.000353552000000,0.000368959000000,0.019175858000000,0.000092811000000,0.000083330000000 +0.000018751500000,0.000715429000000,0.000037503000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000402934000000,0.000087676000000,0.000043824000000,0.000031972000000,0.000082539000000,0.000419922000000,0.000329848000000,0.000355132000000,0.019101587000000,0.000348021000000,0.000406095000000,0.021374770000000,0.000088861000000,0.000082935000000 +0.000019936500000,0.000732020000000,0.000041454000000,0.000012896000000,0.000075034000000,0.000135083000000,0.000351181000000,0.000077404000000,0.000044219000000,0.000031181000000,0.000082145000000,0.000291922000000,0.000293107000000,0.000361848000000,0.019180994000000,0.000388712000000,0.000367774000000,0.019175463000000,0.000123231000000,0.000082935000000 +0.000018751500000,0.000692119000000,0.000037898000000,0.000012896000000,0.000056465000000,0.000039478000000,0.000383577000000,0.000084910000000,0.000045404000000,0.000031577000000,0.000084120000000,0.000297848000000,0.000294293000000,0.000388713000000,0.019337833000000,0.000347626000000,0.000374490000000,0.020296647000000,0.000092416000000,0.000118490000000 +0.000018751500000,0.000715428000000,0.000037898000000,0.000013686000000,0.000056071000000,0.000040664000000,0.000347626000000,0.000076614000000,0.000044219000000,0.000030786000000,0.000084120000000,0.000292317000000,0.000356318000000,0.000347626000000,0.019316105000000,0.000401750000000,0.000407281000000,0.019281735000000,0.000092416000000,0.000083725000000 +0.000020134000000,0.000750984000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000349206000000,0.000077404000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000294687000000,0.000295083000000,0.000345651000000,0.019480450000000,0.000350787000000,0.000417157000000,0.019513240000000,0.000092417000000,0.000080960000000 +0.000018751500000,0.000704366000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000038293000000,0.000495774000000,0.000078984000000,0.000044218000000,0.000031577000000,0.000084120000000,0.000292712000000,0.000325897000000,0.000349206000000,0.019825339000000,0.000428218000000,0.000368169000000,0.019435808000000,0.000090046000000,0.000080170000000 +0.000019541500000,0.000743873000000,0.000037898000000,0.000013027666667,0.000056071000000,0.000037503000000,0.000349601000000,0.000077009000000,0.000044614000000,0.000031577000000,0.000081750000000,0.000294292000000,0.000296663000000,0.000348416000000,0.020116104000000,0.000380021000000,0.000368564000000,0.019683907000000,0.000090046000000,0.000082935000000 +0.000019739000000,0.000685798000000,0.000093206000000,0.000012896000000,0.000056466000000,0.000036712000000,0.000349206000000,0.000076614000000,0.000045404000000,0.000051725000000,0.000084515000000,0.000295478000000,0.000295083000000,0.000347231000000,0.019348499000000,0.000345651000000,0.000370935000000,0.019669290000000,0.000091231000000,0.000082935000000 +0.000018751500000,0.000754935000000,0.000073454000000,0.000012896000000,0.000055675000000,0.000038293000000,0.000433354000000,0.000077009000000,0.000044219000000,0.000032367000000,0.000084120000000,0.000327873000000,0.000324317000000,0.000352762000000,0.019703660000000,0.000431379000000,0.000378441000000,0.019162031000000,0.000159182000000,0.000084120000000 +0.000019739000000,0.000710292000000,0.000040663000000,0.000018163333333,0.000055281000000,0.000036713000000,0.000347231000000,0.000076218000000,0.000043824000000,0.000031182000000,0.000082540000000,0.000295083000000,0.000293503000000,0.000348811000000,0.020638770000000,0.000347626000000,0.000372910000000,0.019561833000000,0.000111379000000,0.000114934000000 +0.000018751000000,0.000717009000000,0.000038688000000,0.000013027666667,0.000055675000000,0.000038293000000,0.000389503000000,0.000077404000000,0.000045009000000,0.000032367000000,0.000081749000000,0.000294293000000,0.000312071000000,0.000345256000000,0.019218525000000,0.000358292000000,0.000368169000000,0.018736550000000,0.000093207000000,0.000080564000000 +0.000018554000000,0.000756514000000,0.000038293000000,0.000013686333333,0.000058836000000,0.000038688000000,0.000438885000000,0.000076614000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000295478000000,0.000290737000000,0.000348416000000,0.019494278000000,0.000422293000000,0.000368959000000,0.019813092000000,0.000089651000000,0.000079775000000 +0.000019541500000,0.000677503000000,0.000037897000000,0.000013686000000,0.000056071000000,0.000036712000000,0.000349601000000,0.000076613000000,0.000045009000000,0.000031972000000,0.000084516000000,0.000293898000000,0.000297453000000,0.000346836000000,0.019354425000000,0.000348416000000,0.000372515000000,0.019464648000000,0.000151676000000,0.000082935000000 +0.000019541500000,0.000754144000000,0.000038688000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000378046000000,0.000074639000000,0.000045009000000,0.000031577000000,0.000081749000000,0.000297058000000,0.000327083000000,0.000382391000000,0.019394722000000,0.000390292000000,0.000399774000000,0.019472155000000,0.000109799000000,0.000080960000000 +0.000019541500000,0.000717403000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000036713000000,0.000344860000000,0.000074243000000,0.000045404000000,0.000030787000000,0.000084515000000,0.000293898000000,0.000291923000000,0.000346441000000,0.019231561000000,0.000346441000000,0.000352762000000,0.019569339000000,0.000089650000000,0.000123231000000 +0.000018949000000,0.000709898000000,0.000038293000000,0.000013686333333,0.000056465000000,0.000038688000000,0.000381996000000,0.000077404000000,0.000048170000000,0.000031577000000,0.000082540000000,0.000294688000000,0.000296268000000,0.000379626000000,0.019473339000000,0.000352367000000,0.000394244000000,0.019769240000000,0.000092811000000,0.000104664000000 +0.000018554000000,0.000679873000000,0.000042244000000,0.000013027666667,0.000057256000000,0.000037503000000,0.000345651000000,0.000075824000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000293108000000,0.000369354000000,0.000346441000000,0.019936746000000,0.000384762000000,0.000359083000000,0.019416056000000,0.000089651000000,0.000080169000000 +0.000019936500000,0.000768367000000,0.000037898000000,0.000013028000000,0.000056466000000,0.000037108000000,0.000346440000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000295083000000,0.000290737000000,0.000398984000000,0.019720253000000,0.000345651000000,0.000383181000000,0.019732894000000,0.000093206000000,0.000081355000000 +0.000019541500000,0.000718194000000,0.000037898000000,0.000013027666667,0.000176169000000,0.000038293000000,0.000383182000000,0.000076614000000,0.000044614000000,0.000065157000000,0.000153256000000,0.000294293000000,0.000379626000000,0.000344466000000,0.020336944000000,0.000676317000000,0.000347626000000,0.019445685000000,0.000092812000000,0.000082935000000 +0.000019146500000,0.000733996000000,0.000038688000000,0.000017636666667,0.000074244000000,0.000051725000000,0.000355132000000,0.000075429000000,0.000045009000000,0.000032367000000,0.000082145000000,0.000295478000000,0.000377256000000,0.000346045000000,0.020202623000000,0.000400169000000,0.000415972000000,0.020311265000000,0.000159972000000,0.000080959000000 +0.000018553500000,0.000726095000000,0.000037503000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000415972000000,0.000074638000000,0.000043823000000,0.000031972000000,0.000082145000000,0.000294292000000,0.000295083000000,0.000346836000000,0.020376055000000,0.000349601000000,0.000354738000000,0.019621882000000,0.000091231000000,0.000082540000000 +0.000019541500000,0.000699231000000,0.000038293000000,0.000013686000000,0.000055281000000,0.000038293000000,0.000349601000000,0.000076614000000,0.000044218000000,0.000030787000000,0.000084120000000,0.000294688000000,0.000294688000000,0.000359478000000,0.019630179000000,0.000422688000000,0.000442441000000,0.019617931000000,0.000090441000000,0.000083725000000 +0.000019739000000,0.000684613000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000036318000000,0.000437700000000,0.000076614000000,0.000045799000000,0.000032762000000,0.000084120000000,0.000291923000000,0.000293108000000,0.000351182000000,0.019468994000000,0.000380811000000,0.000361848000000,0.019286870000000,0.000089651000000,0.000116515000000 +0.000019739000000,0.000733206000000,0.000038293000000,0.000013554666667,0.000074243000000,0.000037503000000,0.000387527000000,0.000074639000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000293108000000,0.000328664000000,0.000345256000000,0.020222376000000,0.000350391000000,0.000381601000000,0.020235413000000,0.000092021000000,0.000083330000000 +0.000037121500000,0.000722934000000,0.000056466000000,0.000013027666667,0.000055675000000,0.000036712000000,0.000362638000000,0.000075034000000,0.000045009000000,0.000031972000000,0.000082540000000,0.000299824000000,0.000290738000000,0.000348417000000,0.019466624000000,0.000379231000000,0.000351972000000,0.019810327000000,0.000091626000000,0.000083330000000 +0.000019739000000,0.000709898000000,0.000040663000000,0.000013554333333,0.000056860000000,0.000038688000000,0.000493009000000,0.000074639000000,0.000045009000000,0.000032367000000,0.000118490000000,0.000291132000000,0.000294293000000,0.000352762000000,0.020494573000000,0.000397404000000,0.000345256000000,0.019990869000000,0.000129553000000,0.000080960000000 +0.000026257500000,0.000693700000000,0.000037503000000,0.000013027666667,0.000055281000000,0.000038688000000,0.000369355000000,0.000078194000000,0.000044614000000,0.000031576000000,0.000085305000000,0.000294292000000,0.000325898000000,0.000350787000000,0.020706326000000,0.000350786000000,0.000359873000000,0.019816253000000,0.000103478000000,0.000082539000000 +0.000019936500000,0.000716613000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000036712000000,0.000357503000000,0.000076613000000,0.000065552000000,0.000031972000000,0.000081750000000,0.000327083000000,0.000292713000000,0.000353947000000,0.020871461000000,0.000377651000000,0.000349997000000,0.019850228000000,0.000092417000000,0.000083725000000 +0.000019146500000,0.000780613000000,0.000038293000000,0.000013554333333,0.000056466000000,0.000037898000000,0.000416367000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000085305000000,0.000290737000000,0.000358293000000,0.000361848000000,0.019613982000000,0.000349206000000,0.000371329000000,0.019717487000000,0.000092417000000,0.000082540000000 +0.000018751500000,0.000718589000000,0.000037898000000,0.000017636666667,0.000056071000000,0.000071478000000,0.000348022000000,0.000074243000000,0.000043824000000,0.000059231000000,0.000085306000000,0.000292317000000,0.000296268000000,0.000591379000000,0.019640056000000,0.000380811000000,0.000353157000000,0.019536549000000,0.000091626000000,0.000114540000000 +0.000019541500000,0.000790885000000,0.000039478000000,0.000013027666667,0.000056466000000,0.000037898000000,0.000344860000000,0.000077009000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000294688000000,0.000292317000000,0.000348417000000,0.019596203000000,0.000350786000000,0.000413206000000,0.019579611000000,0.000092416000000,0.000080565000000 +0.000019739000000,0.000720959000000,0.000038293000000,0.000012896000000,0.000056465000000,0.000038688000000,0.000344466000000,0.000074639000000,0.000044614000000,0.000030787000000,0.000114934000000,0.000293898000000,0.000329058000000,0.000344071000000,0.019593438000000,0.000382391000000,0.000349207000000,0.020970622000000,0.000090046000000,0.000081355000000 +0.000018751000000,0.000778243000000,0.000037503000000,0.000013027666667,0.000069502000000,0.000037898000000,0.000346046000000,0.000074638000000,0.000044219000000,0.000032367000000,0.000082145000000,0.000293108000000,0.000291922000000,0.000349206000000,0.019886969000000,0.000349206000000,0.000383577000000,0.019545240000000,0.000090046000000,0.000081354000000 +0.000019936500000,0.000684218000000,0.000037898000000,0.000013028000000,0.000056070000000,0.000036713000000,0.000492613000000,0.000074639000000,0.000043824000000,0.000031181000000,0.000084120000000,0.000294688000000,0.000291922000000,0.000381996000000,0.019516796000000,0.000348417000000,0.000344860000000,0.019604105000000,0.000088861000000,0.000082935000000 +0.000018553500000,0.000763626000000,0.000042243000000,0.000013027666667,0.000055675000000,0.000038293000000,0.000346046000000,0.000074244000000,0.000045405000000,0.000031972000000,0.000082145000000,0.000341305000000,0.000290342000000,0.000347626000000,0.020043018000000,0.000437700000000,0.000385552000000,0.019113834000000,0.000092417000000,0.000080959000000 +0.000018751500000,0.000710687000000,0.000038293000000,0.000013422666667,0.000055676000000,0.000038293000000,0.000345255000000,0.000076614000000,0.000043823000000,0.000030392000000,0.000081750000000,0.000295478000000,0.000295083000000,0.000353157000000,0.021388598000000,0.000349996000000,0.000366194000000,0.020005882000000,0.000090441000000,0.000082145000000 +0.000026257500000,0.000710292000000,0.000037503000000,0.000013291000000,0.000056861000000,0.000037107000000,0.000385552000000,0.000078589000000,0.000044613000000,0.000030787000000,0.000084120000000,0.000295478000000,0.000328663000000,0.000348811000000,0.020168647000000,0.000346046000000,0.000389108000000,0.019675216000000,0.000092416000000,0.000117305000000 +0.000018554000000,0.000690935000000,0.000038293000000,0.000012896000000,0.000056466000000,0.000036318000000,0.000352367000000,0.000077009000000,0.000045009000000,0.000030391000000,0.000081750000000,0.000301404000000,0.000295477000000,0.000380022000000,0.020947709000000,0.000345651000000,0.000353552000000,0.019706821000000,0.000090441000000,0.000081749000000 +0.000019541500000,0.000758885000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000402934000000,0.000074638000000,0.000044218000000,0.000031972000000,0.000152861000000,0.000293108000000,0.000292317000000,0.000347626000000,0.020020894000000,0.000349996000000,0.000384762000000,0.019894475000000,0.000120861000000,0.000080565000000 +0.000019541500000,0.000731231000000,0.000039478000000,0.000024089333333,0.000057256000000,0.000036713000000,0.000349997000000,0.000074244000000,0.000044218000000,0.000031577000000,0.000081749000000,0.000291133000000,0.000361848000000,0.000347626000000,0.019902376000000,0.000381602000000,0.000344861000000,0.019051019000000,0.000088861000000,0.000084120000000 +0.000018554000000,0.000720959000000,0.000039873000000,0.000012896000000,0.000089651000000,0.000037898000000,0.000348021000000,0.000077404000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000298638000000,0.000293503000000,0.000347626000000,0.019273833000000,0.000349602000000,0.000346046000000,0.021987510000000,0.000089651000000,0.000082540000000 +0.000019936500000,0.000715429000000,0.000038292000000,0.000013027666667,0.000058046000000,0.000037108000000,0.000365799000000,0.000077009000000,0.000045009000000,0.000030392000000,0.000082540000000,0.000296268000000,0.000333009000000,0.000346046000000,0.019715117000000,0.000378046000000,0.000348811000000,0.020106623000000,0.000092811000000,0.000083725000000 +0.000046405500000,0.000686193000000,0.000037503000000,0.000013554333333,0.000055280000000,0.000037107000000,0.000349602000000,0.000075034000000,0.000044219000000,0.000032762000000,0.000081750000000,0.000293897000000,0.000294688000000,0.000358688000000,0.019545636000000,0.000349996000000,0.000349997000000,0.021777733000000,0.000090441000000,0.000084515000000 +0.000018751500000,0.000766786000000,0.000057651000000,0.000013027666667,0.000055676000000,0.000036318000000,0.000397799000000,0.000077009000000,0.000045009000000,0.000032762000000,0.000082145000000,0.000294293000000,0.000292713000000,0.000346836000000,0.020419512000000,0.000352762000000,0.000417551000000,0.019745537000000,0.000092021000000,0.000157996000000 +0.000019739000000,0.000769552000000,0.000041849000000,0.000013554333333,0.000055676000000,0.000037108000000,0.000348021000000,0.000078589000000,0.000043824000000,0.000031577000000,0.000081355000000,0.000291923000000,0.000527775000000,0.000347231000000,0.019555907000000,0.000378836000000,0.000349206000000,0.020723709000000,0.000139034000000,0.000081750000000 +0.000019541500000,0.000754144000000,0.000039083000000,0.000013027666667,0.000056070000000,0.000037898000000,0.000345256000000,0.000077404000000,0.000045404000000,0.000031577000000,0.000131133000000,0.000294688000000,0.000309700000000,0.000344071000000,0.019811512000000,0.000351181000000,0.000380416000000,0.019603710000000,0.000094787000000,0.000082144000000 +0.000019936500000,0.000728070000000,0.000037503000000,0.000013027666667,0.000057255000000,0.000036712000000,0.000382786000000,0.000074244000000,0.000046589000000,0.000032367000000,0.000083725000000,0.000294293000000,0.000328663000000,0.000444416000000,0.020132301000000,0.000382786000000,0.000351971000000,0.019139513000000,0.000092416000000,0.000080170000000 +0.000018751500000,0.000687774000000,0.000039084000000,0.000013554333333,0.000056860000000,0.000036713000000,0.000349206000000,0.000075823000000,0.000044614000000,0.000031577000000,0.000084515000000,0.000293503000000,0.000293898000000,0.000346046000000,0.019739215000000,0.000350787000000,0.000387132000000,0.019278179000000,0.000093206000000,0.000080959000000 +0.000018751500000,0.000760860000000,0.000038688000000,0.000013027666667,0.000055280000000,0.000037503000000,0.000382391000000,0.000076614000000,0.000045009000000,0.000031972000000,0.000084516000000,0.000293108000000,0.000290737000000,0.000360663000000,0.019658623000000,0.000344070000000,0.000350787000000,0.019042723000000,0.000092417000000,0.000084120000000 +0.000019541500000,0.000773107000000,0.000041453000000,0.000024221000000,0.000056860000000,0.000036712000000,0.000356713000000,0.000077799000000,0.000043824000000,0.000031577000000,0.000081749000000,0.000292318000000,0.000344466000000,0.000348811000000,0.019158476000000,0.000365799000000,0.000387528000000,0.020122426000000,0.000094391000000,0.000080565000000 +0.000019541500000,0.001059921000000,0.000037898000000,0.000013027666667,0.000055675000000,0.000037107000000,0.000350391000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000291922000000,0.000297059000000,0.000365799000000,0.019038772000000,0.000351972000000,0.000351577000000,0.019867611000000,0.000130738000000,0.000083330000000 +0.000019344000000,0.000713058000000,0.000037503000000,0.000013027666667,0.000056861000000,0.000036318000000,0.000349602000000,0.000079775000000,0.000044218000000,0.000031577000000,0.000084515000000,0.000295478000000,0.000341700000000,0.000346440000000,0.020833931000000,0.000539626000000,0.000391873000000,0.019881042000000,0.000092021000000,0.000083330000000 +0.000018949000000,0.000701601000000,0.000038293000000,0.000013818000000,0.000056465000000,0.000036713000000,0.000352367000000,0.000075034000000,0.000046194000000,0.000031577000000,0.000097947000000,0.000292712000000,0.000295083000000,0.000353552000000,0.019384055000000,0.000345651000000,0.000348021000000,0.019282129000000,0.000092812000000,0.000080564000000 +0.000019344000000,0.000713453000000,0.000037898000000,0.000013028000000,0.000056860000000,0.000038293000000,0.000389108000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000082145000000,0.000290738000000,0.000355922000000,0.000351182000000,0.019070377000000,0.000347626000000,0.000349996000000,0.019751462000000,0.000090046000000,0.000082145000000 +0.000019936500000,0.000679083000000,0.000037503000000,0.000012896000000,0.000056071000000,0.000037898000000,0.000344070000000,0.000077799000000,0.000044614000000,0.000030787000000,0.000084120000000,0.000507231000000,0.000292318000000,0.000353947000000,0.019908697000000,0.000383972000000,0.000347231000000,0.019987709000000,0.000089255000000,0.000082935000000 +0.000019936500000,0.000740317000000,0.000039478000000,0.000013554666667,0.000056861000000,0.000036712000000,0.000416761000000,0.000074639000000,0.000045009000000,0.000032762000000,0.000082144000000,0.000291132000000,0.000294292000000,0.000396614000000,0.019766079000000,0.000350786000000,0.000352367000000,0.019005587000000,0.000089651000000,0.000087676000000 +0.000020134000000,0.000715823000000,0.000037898000000,0.000013554666667,0.000055676000000,0.000037108000000,0.000347231000000,0.000076614000000,0.000046985000000,0.000031577000000,0.000084120000000,0.000330243000000,0.000341700000000,0.000355922000000,0.019322821000000,0.000382391000000,0.000384367000000,0.019654277000000,0.000110589000000,0.000101897000000 +0.000018751500000,0.000754935000000,0.000037503000000,0.000013686000000,0.000090836000000,0.000036713000000,0.000346046000000,0.000077404000000,0.000045404000000,0.000031182000000,0.000081749000000,0.000294687000000,0.000293502000000,0.000351182000000,0.019189685000000,0.000348416000000,0.000350391000000,0.019638080000000,0.000090046000000,0.000080564000000 +0.000018949000000,0.000671576000000,0.000038293000000,0.000013554666667,0.000056861000000,0.000037898000000,0.000434540000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000115330000000,0.000295083000000,0.000292712000000,0.000344466000000,0.019242228000000,0.000345651000000,0.000453502000000,0.019253290000000,0.000092416000000,0.000080960000000 +0.000019541500000,0.000676713000000,0.000037897000000,0.000024352666667,0.000055281000000,0.000036713000000,0.000355527000000,0.000074638000000,0.000045799000000,0.000031972000000,0.000084120000000,0.000291922000000,0.000376860000000,0.000462194000000,0.019224450000000,0.000395824000000,0.000347231000000,0.019562623000000,0.000089651000000,0.000080565000000 +0.000018751000000,0.000720169000000,0.000039478000000,0.000013554666667,0.000055676000000,0.000051330000000,0.000348416000000,0.000074639000000,0.000045009000000,0.000030787000000,0.000084120000000,0.000290737000000,0.000301404000000,0.000451527000000,0.020398178000000,0.000350391000000,0.000383181000000,0.019777142000000,0.000093601000000,0.000080959000000 +0.000018554000000,0.001005008000000,0.000037898000000,0.000013686333333,0.000054885000000,0.000037108000000,0.000347231000000,0.000076614000000,0.000115330000000,0.000064762000000,0.000084120000000,0.000366194000000,0.000328663000000,0.000347626000000,0.019688253000000,0.000417947000000,0.000355922000000,0.019977437000000,0.000089651000000,0.000082935000000 +0.000055689500000,0.000705947000000,0.000037503000000,0.000013027666667,0.000057256000000,0.000036713000000,0.000352762000000,0.000077009000000,0.000057256000000,0.000031972000000,0.000082539000000,0.000298243000000,0.000293107000000,0.000352366000000,0.019884993000000,0.000344070000000,0.000400959000000,0.019022969000000,0.000092417000000,0.000082934000000 +0.000019541500000,0.000726885000000,0.000038293000000,0.000013027666667,0.000056465000000,0.000036713000000,0.000428218000000,0.000078590000000,0.000044219000000,0.000031577000000,0.000085306000000,0.000291132000000,0.000295478000000,0.000349601000000,0.019560648000000,0.000344860000000,0.000347231000000,0.019895265000000,0.000122046000000,0.000115725000000 +0.000018751500000,0.000681058000000,0.000038293000000,0.000013686000000,0.000056070000000,0.000037503000000,0.000351181000000,0.000076614000000,0.000044614000000,0.000031577000000,0.000084515000000,0.000307330000000,0.000708712000000,0.000344861000000,0.019792944000000,0.000348021000000,0.000438490000000,0.019878277000000,0.000090046000000,0.000082935000000 +0.000020331500000,0.000685799000000,0.000037898000000,0.000013554333333,0.000074639000000,0.000053305000000,0.000364219000000,0.000076614000000,0.000112170000000,0.000032762000000,0.000151675000000,0.000298243000000,0.000342095000000,0.000348416000000,0.019632549000000,0.000351182000000,0.000367379000000,0.019540105000000,0.000092811000000,0.000082935000000 +0.000018751500000,0.000726095000000,0.000038293000000,0.000012896000000,0.000060811000000,0.000036713000000,0.000349207000000,0.000074638000000,0.000043824000000,0.000031182000000,0.000081749000000,0.000688564000000,0.000293503000000,0.000347231000000,0.019606475000000,0.000387132000000,0.000384367000000,0.019662573000000,0.000092021000000,0.000083330000000 +0.000018751500000,0.000723724000000,0.000037898000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000355527000000,0.000117305000000,0.000044219000000,0.000032367000000,0.000084515000000,0.000345651000000,0.000295083000000,0.000348416000000,0.020021684000000,0.000350786000000,0.000352367000000,0.019196006000000,0.000092416000000,0.000080565000000 +0.000019541500000,0.000717009000000,0.000040663000000,0.000013554333333,0.000056466000000,0.000036713000000,0.000400960000000,0.000094392000000,0.000044219000000,0.000031577000000,0.000083725000000,0.000349207000000,0.000329058000000,0.000346045000000,0.019051019000000,0.000348811000000,0.000421108000000,0.019963610000000,0.000090046000000,0.000081354000000 +0.000018751500000,0.000669996000000,0.000037898000000,0.000024352666667,0.000056466000000,0.000036713000000,0.000346836000000,0.000074638000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000293503000000,0.000295478000000,0.000344070000000,0.019951363000000,0.000347626000000,0.000359873000000,0.019627018000000,0.000255182000000,0.000080169000000 +0.000019541500000,0.000709503000000,0.000039083000000,0.000013027666667,0.000055280000000,0.000037108000000,0.000392663000000,0.000080169000000,0.000044614000000,0.000031972000000,0.000081750000000,0.000325503000000,0.000293898000000,0.000346836000000,0.020223956000000,0.000365404000000,0.000504071000000,0.020058030000000,0.000242145000000,0.000146145000000 +0.000019541500000,0.000718984000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037108000000,0.000352367000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000294293000000,0.000290738000000,0.000347231000000,0.019194031000000,0.000568861000000,0.000347231000000,0.019973487000000,0.000112564000000,0.000084515000000 +0.000018949000000,0.000873057000000,0.000038688000000,0.000012896000000,0.000055280000000,0.000036713000000,0.000358293000000,0.000075429000000,0.000045799000000,0.000045404000000,0.000082540000000,0.000294292000000,0.000291133000000,0.000344861000000,0.019644006000000,0.000364613000000,0.000418342000000,0.019365487000000,0.000146145000000,0.000083330000000 +0.000019936500000,0.000710292000000,0.000038688000000,0.000015003000000,0.000055676000000,0.000036712000000,0.000381207000000,0.000074638000000,0.000046590000000,0.000031576000000,0.000084120000000,0.000328268000000,0.000359873000000,0.000346836000000,0.019752648000000,0.000357503000000,0.000348811000000,0.019777537000000,0.000093207000000,0.000079775000000 +0.000018554000000,0.000684219000000,0.000038293000000,0.000013027666667,0.000070688000000,0.000036713000000,0.000347626000000,0.000076614000000,0.000044614000000,0.000031576000000,0.000084120000000,0.000293897000000,0.000292713000000,0.000346836000000,0.019916203000000,0.000417947000000,0.000388318000000,0.019116599000000,0.000092416000000,0.000080959000000 +0.000018751000000,0.000693700000000,0.000037503000000,0.000013027666667,0.000057256000000,0.000036713000000,0.000509997000000,0.000074638000000,0.000044614000000,0.000031577000000,0.000082145000000,0.000294688000000,0.000292713000000,0.000408861000000,0.019698525000000,0.000346441000000,0.000344466000000,0.019299117000000,0.000092021000000,0.000080565000000 +0.000019739000000,0.000711873000000,0.000037503000000,0.000012896000000,0.000055280000000,0.000036712000000,0.000348416000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000082145000000,0.000296664000000,0.000325107000000,0.000351182000000,0.020795215000000,0.000348416000000,0.000347626000000,0.019148599000000,0.000092417000000,0.000083330000000 +0.000019739000000,0.001101798000000,0.000037897000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000355133000000,0.000074639000000,0.000045009000000,0.000031182000000,0.000114539000000,0.000295478000000,0.000293898000000,0.000345255000000,0.019702080000000,0.000369355000000,0.000446786000000,0.020227117000000,0.000091626000000,0.000114934000000 +0.000019541500000,0.000794045000000,0.000038293000000,0.000013159333333,0.000055676000000,0.000037502000000,0.000395823000000,0.000074639000000,0.000044219000000,0.000032367000000,0.000180910000000,0.000488663000000,0.000325503000000,0.000346836000000,0.019147018000000,0.000348416000000,0.000344861000000,0.019433438000000,0.000095182000000,0.000080564000000 +0.000018949000000,0.000710688000000,0.000038688000000,0.000026459666667,0.000056071000000,0.000037108000000,0.000353552000000,0.000077799000000,0.000043824000000,0.000031577000000,0.000256367000000,0.000295478000000,0.000293108000000,0.000353947000000,0.020396993000000,0.000381206000000,0.000360663000000,0.019321241000000,0.000090046000000,0.000082540000000 +0.000018751500000,0.000730835000000,0.000037503000000,0.000013554333333,0.000057255000000,0.000037898000000,0.000361453000000,0.000112169000000,0.000044219000000,0.000031577000000,0.000086885000000,0.000293503000000,0.000293108000000,0.000350786000000,0.019564599000000,0.000350786000000,0.000349602000000,0.020421882000000,0.000092021000000,0.000081355000000 +0.000019541500000,0.000678292000000,0.000064367000000,0.000013554666667,0.000055675000000,0.000037898000000,0.000366589000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000085305000000,0.000294688000000,0.000325108000000,0.000389107000000,0.020014179000000,0.000451132000000,0.000390688000000,0.021203313000000,0.000092416000000,0.000080169000000 +0.000026652500000,0.000684613000000,0.000037897000000,0.000013027666667,0.000069107000000,0.000037108000000,0.000348416000000,0.000075824000000,0.000043824000000,0.000031577000000,0.000117305000000,0.000291923000000,0.000291923000000,0.000361848000000,0.019323216000000,0.000400169000000,0.000353157000000,0.019687463000000,0.000093207000000,0.000082935000000 +0.000018554000000,0.000718194000000,0.000038293000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000382787000000,0.000075824000000,0.000044218000000,0.000101108000000,0.000086096000000,0.000296268000000,0.000292318000000,0.000356713000000,0.020061190000000,0.000348416000000,0.000396218000000,0.018857439000000,0.000089651000000,0.000080960000000 +0.000018751500000,0.000761255000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000344861000000,0.000074638000000,0.000044614000000,0.000046194000000,0.000081750000000,0.000297058000000,0.000361453000000,0.000347231000000,0.018900105000000,0.000413602000000,0.000349206000000,0.019728154000000,0.000090046000000,0.000116911000000 +0.000019739000000,0.000722144000000,0.000038293000000,0.000013554333333,0.000057256000000,0.000037108000000,0.000351181000000,0.000076614000000,0.000045009000000,0.000033552000000,0.000084120000000,0.000295478000000,0.000296268000000,0.000347626000000,0.021782473000000,0.000347231000000,0.000423083000000,0.019253685000000,0.000125997000000,0.000082935000000 +0.000019739000000,0.000684614000000,0.000038293000000,0.000012896000000,0.000056070000000,0.000036713000000,0.000346441000000,0.000076614000000,0.000045799000000,0.000031182000000,0.000084120000000,0.000295873000000,0.000374885000000,0.000349206000000,0.020310079000000,0.000345651000000,0.000383972000000,0.019918969000000,0.000090836000000,0.000082144000000 +0.000019541500000,0.000683033000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000037503000000,0.000345255000000,0.000075429000000,0.000044218000000,0.000030787000000,0.000082540000000,0.000296268000000,0.000291132000000,0.000347231000000,0.019587117000000,0.000417552000000,0.000398589000000,0.020247264000000,0.000092416000000,0.000082540000000 +0.000019541500000,0.000724119000000,0.000038293000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000422687000000,0.000074243000000,0.000044613000000,0.000030787000000,0.000081750000000,0.000291528000000,0.000298243000000,0.000347626000000,0.020844597000000,0.000349206000000,0.000365403000000,0.019169142000000,0.000092417000000,0.000082540000000 +0.000018751000000,0.000709503000000,0.000038688000000,0.000012896333333,0.000056070000000,0.000037898000000,0.000351576000000,0.000074638000000,0.000045405000000,0.000031577000000,0.000095972000000,0.000291132000000,0.000328663000000,0.000352367000000,0.020399759000000,0.000397799000000,0.000381601000000,0.019545636000000,0.000088861000000,0.000080959000000 +0.000018751000000,0.000725305000000,0.000040268000000,0.000013686333333,0.000095972000000,0.000040268000000,0.000434145000000,0.000077404000000,0.000045009000000,0.000031181000000,0.000084120000000,0.000294688000000,0.000293108000000,0.000383181000000,0.020790079000000,0.000346836000000,0.000354342000000,0.021065041000000,0.000091626000000,0.000082540000000 +0.000019541500000,0.000672761000000,0.000037898000000,0.000012896000000,0.000055675000000,0.000037503000000,0.000345651000000,0.000074243000000,0.000045009000000,0.000032763000000,0.000084120000000,0.000294688000000,0.000335774000000,0.000344466000000,0.019826919000000,0.000393848000000,0.000384367000000,0.020184845000000,0.000110194000000,0.000097552000000 +0.000026060000000,0.000718588000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000037503000000,0.000347231000000,0.000077799000000,0.000045404000000,0.000032367000000,0.000084515000000,0.000290738000000,0.000292318000000,0.000349206000000,0.020329437000000,0.000396614000000,0.000344465000000,0.019448055000000,0.000176565000000,0.000082539000000 +0.000018751500000,0.000821305000000,0.000038293000000,0.000013554333333,0.000057651000000,0.000037503000000,0.000384762000000,0.000110589000000,0.000045009000000,0.000031577000000,0.000082145000000,0.000291923000000,0.000291923000000,0.000346836000000,0.018985834000000,0.000348416000000,0.000346046000000,0.020989190000000,0.000090047000000,0.000080170000000 +0.000019739000000,0.000728070000000,0.000038293000000,0.000013027666667,0.000056071000000,0.000037108000000,0.000348417000000,0.000091231000000,0.000044219000000,0.000031972000000,0.000086885000000,0.000293503000000,0.000359083000000,0.000355132000000,0.019103167000000,0.000813008000000,0.000349206000000,0.020259512000000,0.000090046000000,0.000080169000000 +0.000019542000000,0.000715429000000,0.000038293000000,0.000012896000000,0.000056071000000,0.000038293000000,0.000767181000000,0.000076614000000,0.000044219000000,0.000031972000000,0.000082540000000,0.000296664000000,0.000299429000000,0.000346441000000,0.019722228000000,0.000363034000000,0.000349997000000,0.019610031000000,0.000089651000000,0.000082145000000 +0.000018751500000,0.000677502000000,0.000037898000000,0.000013686000000,0.000056465000000,0.000037898000000,0.000421108000000,0.000080565000000,0.000045009000000,0.000030392000000,0.000082145000000,0.000295873000000,0.000294687000000,0.000344465000000,0.020409240000000,0.000348416000000,0.000360268000000,0.019730919000000,0.000090046000000,0.000080960000000 +0.000019936500000,0.000937058000000,0.000039873000000,0.000013686333333,0.000055281000000,0.000037898000000,0.000347231000000,0.000076613000000,0.000043824000000,0.000033552000000,0.000084120000000,0.000294687000000,0.000290737000000,0.000346441000000,0.020385141000000,0.000349601000000,0.000349206000000,0.019212994000000,0.000138639000000,0.000086886000000 +0.000018751500000,0.000713453000000,0.000038688000000,0.000013027666667,0.000057256000000,0.000037503000000,0.000347231000000,0.000074244000000,0.000045009000000,0.000032367000000,0.000081750000000,0.000294293000000,0.000290343000000,0.000346836000000,0.019813092000000,0.000416367000000,0.000398194000000,0.020130721000000,0.000159971000000,0.000138638000000 +0.000018554000000,0.000746243000000,0.000037898000000,0.000024089666667,0.000069503000000,0.000038688000000,0.000434145000000,0.000074244000000,0.000044219000000,0.000032762000000,0.000082145000000,0.000327477000000,0.000325898000000,0.000345256000000,0.020207758000000,0.000347626000000,0.000355923000000,0.019004401000000,0.000097947000000,0.000125997000000 +0.000019739000000,0.000722145000000,0.000058046000000,0.000012896000000,0.000057651000000,0.000094787000000,0.000348416000000,0.000074638000000,0.000046984000000,0.000030392000000,0.000082539000000,0.000293503000000,0.000291132000000,0.000346441000000,0.019327167000000,0.000441255000000,0.000393454000000,0.020053290000000,0.000098737000000,0.000088466000000 +0.000018554000000,0.000709897000000,0.000037503000000,0.000013422666667,0.000054885000000,0.000036713000000,0.000422292000000,0.000077404000000,0.000044614000000,0.000031182000000,0.000084911000000,0.000291922000000,0.000301009000000,0.000346836000000,0.020062771000000,0.000346046000000,0.000350786000000,0.020530918000000,0.000096762000000,0.000099923000000 +0.000037714500000,0.000688960000000,0.000038293000000,0.000013554333333,0.000056860000000,0.000036712000000,0.000366984000000,0.000076614000000,0.000045404000000,0.000031577000000,0.000084120000000,0.000298639000000,0.000326688000000,0.000359083000000,0.019081043000000,0.000346441000000,0.000425058000000,0.019220895000000,0.000178935000000,0.000205009000000 +0.000060825500000,0.000743083000000,0.000039478000000,0.000013027666667,0.000056861000000,0.000036713000000,0.000349207000000,0.000074243000000,0.000045009000000,0.000052121000000,0.000082540000000,0.000344860000000,0.000291922000000,0.000470095000000,0.019339413000000,0.000417947000000,0.000355132000000,0.019677586000000,0.000101108000000,0.000271774000000 +0.000029616000000,0.000777058000000,0.000038293000000,0.000013027666667,0.000056466000000,0.000037108000000,0.000419922000000,0.000076219000000,0.000045799000000,0.000032762000000,0.000085306000000,0.000291922000000,0.000350786000000,0.000393453000000,0.020028006000000,0.000346836000000,0.000393453000000,0.018909982000000,0.000212910000000,0.000136664000000 +0.000034159000000,0.000732416000000,0.000038688000000,0.000012896000000,0.000055676000000,0.000037503000000,0.000348811000000,0.000076218000000,0.000046194000000,0.000030787000000,0.000084120000000,0.000291132000000,0.000413601000000,0.000348021000000,0.019650327000000,0.000363033000000,0.000348021000000,0.020364993000000,0.000097552000000,0.000104268000000 +0.000018751500000,0.000795626000000,0.000038688000000,0.000013554333333,0.000056070000000,0.000036712000000,0.000349601000000,0.000075034000000,0.000045404000000,0.000031972000000,0.000083725000000,0.000291132000000,0.000325108000000,0.000354342000000,0.019299512000000,0.000347231000000,0.000384367000000,0.020272943000000,0.000120071000000,0.000217650000000 +0.000019344000000,0.000860021000000,0.000037898000000,0.000012896333333,0.000071873000000,0.000037898000000,0.000345651000000,0.000076614000000,0.000044219000000,0.000031577000000,0.000084120000000,0.000295873000000,0.000290738000000,0.000353157000000,0.019356401000000,0.000349996000000,0.000347626000000,0.018968056000000,0.000095182000000,0.000243330000000 +0.000019739000000,0.000686194000000,0.000037898000000,0.000020402333333,0.000055280000000,0.000036713000000,0.000361453000000,0.000077404000000,0.000045800000000,0.000031577000000,0.000082540000000,0.000293898000000,0.000295478000000,0.000353947000000,0.019314525000000,0.000421898000000,0.000351972000000,0.019653487000000,0.000113355000000,0.000149700000000 +0.000019541500000,0.000760070000000,0.000039873000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000383181000000,0.000080564000000,0.000044219000000,0.000032763000000,0.000101897000000,0.000292317000000,0.000328663000000,0.000361849000000,0.019266327000000,0.000348416000000,0.000350391000000,0.019854969000000,0.000092021000000,0.000091231000000 +0.000019541500000,0.000729650000000,0.000038688000000,0.000012896000000,0.000056861000000,0.000037108000000,0.000351182000000,0.000076614000000,0.000045009000000,0.000031972000000,0.000082144000000,0.000295083000000,0.000294293000000,0.000355922000000,0.018930525000000,0.000378441000000,0.000350787000000,0.019901981000000,0.000091626000000,0.000088466000000 +0.000018553500000,0.000722144000000,0.000037503000000,0.000013027666667,0.000056861000000,0.000037503000000,0.000396614000000,0.000076219000000,0.000044219000000,0.000031576000000,0.000084515000000,0.000291527000000,0.000293108000000,0.000346835000000,0.020300203000000,0.000352367000000,0.000719774000000,0.019654673000000,0.000097552000000,0.000120465000000 +0.000018751500000,0.000715034000000,0.000037502000000,0.000012896333333,0.000055676000000,0.000037108000000,0.000355923000000,0.000076614000000,0.000043824000000,0.000030787000000,0.000081750000000,0.000294688000000,0.000295082000000,0.000379626000000,0.018973587000000,0.000344466000000,0.000381602000000,0.019826129000000,0.000099133000000,0.000088861000000 +0.000019739000000,0.000681848000000,0.000037503000000,0.000013554666667,0.000055675000000,0.000036713000000,0.000351181000000,0.000074639000000,0.000045404000000,0.000031577000000,0.000084515000000,0.000295873000000,0.000290737000000,0.000349206000000,0.019773191000000,0.000470095000000,0.000346836000000,0.019280550000000,0.000096367000000,0.000085305000000 +0.000019541500000,0.000692515000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000420713000000,0.000076219000000,0.000045799000000,0.000030787000000,0.000082145000000,0.000301404000000,0.000344070000000,0.000348416000000,0.019014673000000,0.000349601000000,0.000440070000000,0.019451216000000,0.000097947000000,0.000088465000000 +0.000018751500000,0.000711873000000,0.000037502000000,0.000014081000000,0.000125602000000,0.000037898000000,0.000354738000000,0.000079774000000,0.000046589000000,0.000031972000000,0.000085305000000,0.000296268000000,0.000293107000000,0.000347626000000,0.019225241000000,0.000359873000000,0.000351181000000,0.019775957000000,0.000099132000000,0.000122836000000 +0.000018554000000,0.000737947000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000036712000000,0.000365008000000,0.000074244000000,0.000044219000000,0.000030786000000,0.000141009000000,0.000291132000000,0.000292317000000,0.000353552000000,0.019518771000000,0.000378836000000,0.000381206000000,0.019813882000000,0.000094787000000,0.000085305000000 +0.000019541500000,0.000714243000000,0.000038293000000,0.000012896000000,0.000056861000000,0.000036713000000,0.000387132000000,0.000075034000000,0.000044219000000,0.000030787000000,0.000082540000000,0.000295478000000,0.000325898000000,0.000348811000000,0.019597784000000,0.000349601000000,0.000346836000000,0.020110179000000,0.000098342000000,0.000088070000000 +0.000019739000000,0.000679477000000,0.000037502000000,0.000025274666667,0.000055675000000,0.000037503000000,0.000346441000000,0.000074243000000,0.000045009000000,0.000031577000000,0.000084910000000,0.000296663000000,0.000295873000000,0.000344861000000,0.019524302000000,0.000647477000000,0.000351181000000,0.019158871000000,0.000108219000000,0.000088071000000 +0.000019541500000,0.000759675000000,0.000057651000000,0.000012896000000,0.000058046000000,0.000036713000000,0.000390687000000,0.000075034000000,0.000043824000000,0.000031182000000,0.000084120000000,0.000294292000000,0.000312071000000,0.000347626000000,0.019192056000000,0.000390688000000,0.000350786000000,0.020615857000000,0.000097947000000,0.000088071000000 +0.000019541500000,0.000716219000000,0.000037502000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000352762000000,0.000074244000000,0.000045009000000,0.000031577000000,0.000084120000000,0.000293108000000,0.000344465000000,0.000346836000000,0.020199462000000,0.000349206000000,0.000352367000000,0.019224451000000,0.000096367000000,0.000086885000000 +0.000018554000000,0.000706342000000,0.000037898000000,0.000012896000000,0.000055281000000,0.000037108000000,0.000515132000000,0.000075428000000,0.000045009000000,0.000031182000000,0.000084515000000,0.000291922000000,0.000291922000000,0.000385157000000,0.019941488000000,0.000378045000000,0.000380812000000,0.019485586000000,0.000098343000000,0.000086095000000 +0.000018554000000,0.000700020000000,0.000037898000000,0.000012896000000,0.000056071000000,0.000036713000000,0.000382786000000,0.000089255000000,0.000102688000000,0.000031972000000,0.000082145000000,0.000294293000000,0.000325502000000,0.000346441000000,0.019616351000000,0.000353947000000,0.000359478000000,0.019999561000000,0.000099133000000,0.000085701000000 +0.000019739000000,0.000678687000000,0.000038688000000,0.000013027666667,0.000091231000000,0.000037898000000,0.000353552000000,0.000077009000000,0.000131133000000,0.000030787000000,0.000099922000000,0.000294688000000,0.000291132000000,0.000379626000000,0.020317981000000,0.000354342000000,0.000416761000000,0.019533784000000,0.000097552000000,0.000085700000000 +0.000018751500000,0.000733206000000,0.000038293000000,0.000012896000000,0.000056465000000,0.000037502000000,0.000346045000000,0.000076614000000,0.000061206000000,0.000031972000000,0.000082540000000,0.000293898000000,0.000294688000000,0.000346441000000,0.019811907000000,0.000391083000000,0.000347231000000,0.020004697000000,0.000098342000000,0.000086095000000 +0.000018554000000,0.000729255000000,0.000039083000000,0.000013027666667,0.000056860000000,0.000036713000000,0.000379626000000,0.000074639000000,0.000045404000000,0.000045404000000,0.000082145000000,0.000292318000000,0.000307330000000,0.000391478000000,0.021230967000000,0.000353156000000,0.000415576000000,0.019280550000000,0.000095182000000,0.000087280000000 +0.000019541500000,0.000807478000000,0.000039478000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000351971000000,0.000074244000000,0.000045009000000,0.000031182000000,0.000084910000000,0.000293503000000,0.000295873000000,0.000449157000000,0.020307314000000,0.000385947000000,0.000354342000000,0.019961635000000,0.000095577000000,0.000088071000000 +0.000019936500000,0.000726885000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000037108000000,0.000383971000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000292317000000,0.000327478000000,0.000354737000000,0.019149784000000,0.000342885000000,0.000386737000000,0.019483216000000,0.000094787000000,0.000087676000000 +0.000018949000000,0.000679082000000,0.000037897000000,0.000025274666667,0.000056861000000,0.000036713000000,0.000350392000000,0.000074243000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000294688000000,0.000293897000000,0.000345651000000,0.019432648000000,0.000347231000000,0.000345255000000,0.020039067000000,0.000097157000000,0.000123231000000 +0.000020331500000,0.000736367000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000349996000000,0.000077009000000,0.000045009000000,0.000031182000000,0.000088466000000,0.000293503000000,0.000290342000000,0.000522243000000,0.020084104000000,0.000351971000000,0.000381997000000,0.019397092000000,0.000098343000000,0.000089256000000 +0.000018751500000,0.000726095000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000050145000000,0.000347626000000,0.000077009000000,0.000045009000000,0.000031182000000,0.000084120000000,0.000290737000000,0.000374095000000,0.000369355000000,0.019773981000000,0.000347231000000,0.000352367000000,0.020573190000000,0.000098342000000,0.000092021000000 +0.000018751500000,0.000817355000000,0.000037503000000,0.000013554333333,0.000056466000000,0.000037898000000,0.000350391000000,0.000076614000000,0.000044219000000,0.000030786000000,0.000084516000000,0.000291132000000,0.000291527000000,0.000345651000000,0.019576846000000,0.000415576000000,0.000345255000000,0.019914623000000,0.000097947000000,0.000088466000000 +0.000019937000000,0.000731231000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000379231000000,0.000077009000000,0.000045404000000,0.000031181000000,0.000085305000000,0.000419527000000,0.000325502000000,0.000347231000000,0.019232352000000,0.000348811000000,0.000359873000000,0.019857734000000,0.000095577000000,0.000084911000000 +0.000018751500000,0.000669996000000,0.000040268000000,0.000013422666667,0.000056071000000,0.000038293000000,0.000344861000000,0.000078985000000,0.000043824000000,0.000031577000000,0.000082145000000,0.000294688000000,0.000297848000000,0.000452712000000,0.019369043000000,0.000399774000000,0.000349207000000,0.020172203000000,0.000097157000000,0.000086096000000 +0.000019541500000,0.000708317000000,0.000038688000000,0.000013554333333,0.000055280000000,0.000036712000000,0.000380416000000,0.000076219000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000296269000000,0.000292713000000,0.000351182000000,0.019200747000000,0.000347231000000,0.000357108000000,0.019664154000000,0.000098342000000,0.000105849000000 +0.000019541500000,0.000720564000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000037503000000,0.000349996000000,0.000076614000000,0.000043824000000,0.000050935000000,0.000084516000000,0.000291923000000,0.000329454000000,0.000355528000000,0.022012004000000,0.000360663000000,0.000353157000000,0.019593833000000,0.000097157000000,0.000087281000000 +0.000018751500000,0.000768367000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000347626000000,0.000131132000000,0.000044219000000,0.000032762000000,0.000082144000000,0.000291922000000,0.000296663000000,0.000361454000000,0.020180894000000,0.000386738000000,0.000380416000000,0.019768451000000,0.000098343000000,0.000083330000000 +0.000019739000000,0.000696465000000,0.000039083000000,0.000013027666667,0.000055676000000,0.000036712000000,0.000422688000000,0.000075034000000,0.000044614000000,0.000031182000000,0.000084120000000,0.000292317000000,0.000293898000000,0.000393058000000,0.020423858000000,0.000346836000000,0.000348812000000,0.019644401000000,0.000096367000000,0.000080564000000 +0.000025270000000,0.000698441000000,0.000038293000000,0.000024616333333,0.000055280000000,0.000036713000000,0.000348811000000,0.000077404000000,0.000045009000000,0.000031577000000,0.000084515000000,0.000314836000000,0.000290737000000,0.000347231000000,0.021219511000000,0.000383576000000,0.000384367000000,0.020160351000000,0.000097947000000,0.000081355000000 +0.000018751500000,0.000713848000000,0.000037898000000,0.000013554333333,0.000059231000000,0.000037898000000,0.000381996000000,0.000076614000000,0.000080565000000,0.000031182000000,0.000081749000000,0.000335379000000,0.000294688000000,0.000344070000000,0.020984844000000,0.000346046000000,0.000344860000000,0.019275414000000,0.000097552000000,0.000081355000000 +0.000019344000000,0.000712267000000,0.000037898000000,0.000013028000000,0.000103083000000,0.000071083000000,0.000351577000000,0.000076219000000,0.000045404000000,0.000031577000000,0.000082540000000,0.000291527000000,0.000329849000000,0.000348811000000,0.019725389000000,0.000344465000000,0.000397799000000,0.021665931000000,0.000099922000000,0.000082935000000 +0.000019541500000,0.000725700000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000038293000000,0.000353947000000,0.000075034000000,0.000044219000000,0.000031576000000,0.000081750000000,0.000292318000000,0.000293898000000,0.000347626000000,0.020457437000000,0.000381206000000,0.000366589000000,0.020187610000000,0.000099132000000,0.000114935000000 +0.000019541500000,0.000685799000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000036713000000,0.000387132000000,0.000074243000000,0.000045799000000,0.000031971000000,0.000081750000000,0.000305750000000,0.000292318000000,0.000398589000000,0.018978722000000,0.000351972000000,0.000416367000000,0.019316895000000,0.000097157000000,0.000080565000000 +0.000018949000000,0.000735181000000,0.000037503000000,0.000012896000000,0.000056861000000,0.000036713000000,0.000400959000000,0.000077799000000,0.000046589000000,0.000031577000000,0.000082539000000,0.000293898000000,0.000338934000000,0.000352762000000,0.019177043000000,0.000380812000000,0.000353552000000,0.021780103000000,0.000099132000000,0.000082540000000 +0.000018751000000,0.000758490000000,0.000037503000000,0.000012896000000,0.000056466000000,0.000037502000000,0.000429404000000,0.000075033000000,0.000044614000000,0.000031577000000,0.000094787000000,0.000293897000000,0.000294688000000,0.000349601000000,0.019811512000000,0.000348021000000,0.000384761000000,0.019835611000000,0.000097947000000,0.000080960000000 +0.000019541500000,0.000726490000000,0.000037503000000,0.000012896000000,0.000057651000000,0.000036713000000,0.000347231000000,0.000076614000000,0.000045799000000,0.000031972000000,0.000082145000000,0.000295083000000,0.000328663000000,0.000344861000000,0.019375759000000,0.000349996000000,0.000344466000000,0.020385931000000,0.000099528000000,0.000080959000000 +0.000019936500000,0.000718193000000,0.000038293000000,0.000012896000000,0.000055281000000,0.000038293000000,0.000349206000000,0.000076614000000,0.000044219000000,0.000051725000000,0.000085306000000,0.000290737000000,0.000293898000000,0.000382392000000,0.020186030000000,0.000370540000000,0.000346046000000,0.019862870000000,0.000098342000000,0.000083330000000 +0.000018949000000,0.000700811000000,0.000057651000000,0.000013554333333,0.000056861000000,0.000038688000000,0.000386342000000,0.000075428000000,0.000045009000000,0.000031972000000,0.000084120000000,0.000327873000000,0.000293503000000,0.000446787000000,0.019460698000000,0.000348021000000,0.000348416000000,0.020199067000000,0.000097948000000,0.000081355000000 +0.000029220500000,0.000677502000000,0.000037898000000,0.000019743666667,0.000076614000000,0.000036713000000,0.000348416000000,0.000074639000000,0.000044219000000,0.000031576000000,0.000084120000000,0.000293503000000,0.000328663000000,0.000348416000000,0.019750673000000,0.000400565000000,0.000350391000000,0.018988204000000,0.000094787000000,0.000116910000000 +0.000019739000000,0.000713058000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037898000000,0.000381206000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000084120000000,0.000294293000000,0.000299033000000,0.000346046000000,0.019979018000000,0.000426638000000,0.000359873000000,0.019771611000000,0.000097947000000,0.000081750000000 +0.000020331500000,0.000719379000000,0.000037897000000,0.000013686000000,0.000057651000000,0.000078589000000,0.000351577000000,0.000114540000000,0.000045404000000,0.000032762000000,0.000115330000000,0.000296269000000,0.000294688000000,0.000379231000000,0.019645586000000,0.000348416000000,0.000348811000000,0.019308203000000,0.000097947000000,0.000082540000000 +0.000019739000000,0.000716218000000,0.000037898000000,0.000013554666667,0.000054885000000,0.000037502000000,0.000345651000000,0.000074638000000,0.000045799000000,0.000031577000000,0.000081750000000,0.000293898000000,0.000306539000000,0.000346836000000,0.019615562000000,0.000475231000000,0.000398589000000,0.020071067000000,0.000095182000000,0.000082934000000 +0.000019541500000,0.000691725000000,0.000038688000000,0.000013027666667,0.000055676000000,0.000036713000000,0.000383182000000,0.000075429000000,0.000045404000000,0.000031577000000,0.000081750000000,0.000294688000000,0.000298243000000,0.000346835000000,0.019241043000000,0.000349997000000,0.000351577000000,0.020316795000000,0.000098342000000,0.000082935000000 +0.000018554000000,0.000709898000000,0.000037897000000,0.000013554333333,0.000055676000000,0.000038293000000,0.000347626000000,0.000074243000000,0.000044613000000,0.000031181000000,0.000082144000000,0.000295083000000,0.000323527000000,0.000344466000000,0.019854574000000,0.000344465000000,0.000512367000000,0.019719068000000,0.000098737000000,0.000080170000000 +0.000018751500000,0.000777453000000,0.000038293000000,0.000013027666667,0.000055676000000,0.000037898000000,0.000491824000000,0.000078194000000,0.000044614000000,0.000032367000000,0.000084120000000,0.000295082000000,0.000293502000000,0.000346440000000,0.019842722000000,0.000353157000000,0.000350786000000,0.019768451000000,0.000099132000000,0.000082540000000 +0.000019541500000,0.000741897000000,0.000038688000000,0.000013027666667,0.000055281000000,0.000037108000000,0.000345650000000,0.000076613000000,0.000045009000000,0.000031577000000,0.000082145000000,0.000292317000000,0.000341700000000,0.000430194000000,0.019559068000000,0.000348811000000,0.000425848000000,0.019395907000000,0.000097553000000,0.000153651000000 +0.000018554000000,0.000781009000000,0.000038293000000,0.000014213000000,0.000056861000000,0.000037898000000,0.000358688000000,0.000076614000000,0.000044219000000,0.000031182000000,0.000082540000000,0.000295083000000,0.000453897000000,0.000359478000000,0.019891710000000,0.000431775000000,0.000388712000000,0.019798080000000,0.000095972000000,0.000082540000000 +0.000018751500000,0.000703576000000,0.000052515000000,0.000012896000000,0.000069503000000,0.000037897000000,0.000386342000000,0.000109404000000,0.000045009000000,0.000086885000000,0.000096762000000,0.000292317000000,0.000295478000000,0.000349601000000,0.020534475000000,0.000349601000000,0.000385947000000,0.019832845000000,0.000097157000000,0.000080565000000 +0.000036331500000,0.000681058000000,0.000038688000000,0.000021719333333,0.000057256000000,0.000038688000000,0.000355132000000,0.000076614000000,0.000079774000000,0.000031577000000,0.000081355000000,0.000295873000000,0.000361849000000,0.000345651000000,0.020021684000000,0.000354343000000,0.000348021000000,0.019564204000000,0.000099527000000,0.000080564000000 +0.000019344000000,0.000786934000000,0.000037898000000,0.000012896000000,0.000056861000000,0.000037897000000,0.000385156000000,0.000074639000000,0.000045404000000,0.000031182000000,0.000084120000000,0.000292317000000,0.000294293000000,0.000515527000000,0.019041142000000,0.000395034000000,0.000416762000000,0.019783858000000,0.000097553000000,0.000079379000000 +0.000018751500000,0.000747033000000,0.000040268000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000348811000000,0.000074244000000,0.000045404000000,0.000030787000000,0.000084120000000,0.000296268000000,0.000290738000000,0.000369749000000,0.019452796000000,0.000348812000000,0.000347231000000,0.019730919000000,0.000095182000000,0.000080564000000 +0.000020134000000,0.000734786000000,0.000037503000000,0.000012896000000,0.000055676000000,0.000037107000000,0.000347231000000,0.000074244000000,0.000044218000000,0.000030787000000,0.000084120000000,0.000295083000000,0.000304564000000,0.000387528000000,0.019308994000000,0.000416762000000,0.000424663000000,0.019948203000000,0.000097948000000,0.000082935000000 +0.000018751000000,0.000678293000000,0.000037503000000,0.000012896000000,0.000055675000000,0.000037897000000,0.000370540000000,0.000074244000000,0.000045404000000,0.000031577000000,0.000083725000000,0.000292713000000,0.000290342000000,0.000353947000000,0.019799660000000,0.000347626000000,0.000350391000000,0.019519562000000,0.000132713000000,0.000081354000000 +0.000018751500000,0.000692515000000,0.000038293000000,0.000013423000000,0.000055676000000,0.000037898000000,0.000353552000000,0.000076613000000,0.000043823000000,0.000031972000000,0.000085305000000,0.000297848000000,0.000363824000000,0.000362638000000,0.019491117000000,0.000343281000000,0.000449947000000,0.019536944000000,0.000097947000000,0.000082539000000 +0.000029615500000,0.000994342000000,0.000038688000000,0.000013686000000,0.000056466000000,0.000036713000000,0.000385947000000,0.000112960000000,0.000044219000000,0.000030786000000,0.000121651000000,0.000462194000000,0.000292712000000,0.000355528000000,0.018963710000000,0.000368565000000,0.000347231000000,0.019553536000000,0.000098343000000,0.000082539000000 +0.000025665000000,0.000726490000000,0.000039873000000,0.000013554333333,0.000091231000000,0.000037108000000,0.000349206000000,0.000077009000000,0.000044219000000,0.000030787000000,0.000082145000000,0.000292713000000,0.000291923000000,0.000349207000000,0.020084894000000,0.000344070000000,0.000418737000000,0.020319956000000,0.000098342000000,0.000081354000000 +0.000019541500000,0.000722144000000,0.000037898000000,0.000013027666667,0.000056466000000,0.000036317000000,0.000347231000000,0.000074638000000,0.000043824000000,0.000031577000000,0.000084120000000,0.000304959000000,0.000361848000000,0.000344466000000,0.019790178000000,0.000387922000000,0.000347231000000,0.020289932000000,0.000095972000000,0.000080565000000 +0.000019936500000,0.000730835000000,0.000038688000000,0.000013027666667,0.000054886000000,0.000037107000000,0.000346441000000,0.000074243000000,0.000044614000000,0.000031972000000,0.000084515000000,0.000294687000000,0.000292317000000,0.000349206000000,0.020395413000000,0.000347231000000,0.000440466000000,0.019419216000000,0.000098738000000,0.000082540000000 +0.000018948500000,0.000669206000000,0.000037898000000,0.000019612000000,0.000055280000000,0.000037898000000,0.000361058000000,0.000077009000000,0.000045009000000,0.000031972000000,0.000082540000000,0.000328663000000,0.000380812000000,0.000347626000000,0.019684302000000,0.000472861000000,0.000350787000000,0.019806376000000,0.000095577000000,0.000084120000000 +0.000020134500000,0.000715033000000,0.000037502000000,0.000012896000000,0.000056465000000,0.000036713000000,0.000389502000000,0.000077009000000,0.000044219000000,0.000031182000000,0.000081750000000,0.000293502000000,0.000293502000000,0.000347231000000,0.019006377000000,0.000395428000000,0.000419132000000,0.019230376000000,0.000095972000000,0.000084515000000 +0.000018751500000,0.000719379000000,0.000037898000000,0.000013554333333,0.000055676000000,0.000036713000000,0.000345651000000,0.000075429000000,0.000043824000000,0.000031972000000,0.000117700000000,0.000292317000000,0.000292317000000,0.000353947000000,0.019495067000000,0.000348021000000,0.000399379000000,0.019426327000000,0.000099133000000,0.000082540000000 +0.000018751500000,0.000715033000000,0.000039083000000,0.000013554333333,0.000056861000000,0.000037107000000,0.000456268000000,0.000077800000000,0.000044219000000,0.000030787000000,0.000082540000000,0.000326293000000,0.000342095000000,0.000348416000000,0.019053389000000,0.000823675000000,0.000423082000000,0.019945438000000,0.000144169000000,0.000082540000000 +0.000019541500000,0.000720959000000,0.000038688000000,0.000012896000000,0.000055675000000,0.000036713000000,0.000349997000000,0.000078589000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000293898000000,0.000295082000000,0.000379626000000,0.019504549000000,0.000444416000000,0.000351181000000,0.019631759000000,0.000108614000000,0.000080959000000 +0.000019541500000,0.000672761000000,0.000037898000000,0.000013027666667,0.000056861000000,0.000037898000000,0.000345651000000,0.000076614000000,0.000045404000000,0.000031182000000,0.000082144000000,0.000334984000000,0.000329058000000,0.000347626000000,0.019627018000000,0.000347231000000,0.000425058000000,0.020263067000000,0.000128762000000,0.000082935000000 +0.000019541500000,0.000773108000000,0.000038293000000,0.000013554333333,0.000056466000000,0.000037108000000,0.000433749000000,0.000074638000000,0.000045799000000,0.000030786000000,0.000081750000000,0.000293897000000,0.000299034000000,0.000348021000000,0.019732500000000,0.000348021000000,0.000347231000000,0.019670474000000,0.000107034000000,0.000081355000000 +0.000018751500000,0.000720564000000,0.000038293000000,0.000013554666667,0.000055281000000,0.000037108000000,0.000347231000000,0.000076219000000,0.000044614000000,0.000031972000000,0.000086095000000,0.000294293000000,0.000291527000000,0.000348022000000,0.020263462000000,0.000378046000000,0.000462984000000,0.020483907000000,0.000092812000000,0.000116910000000 +0.000018751500000,0.000780613000000,0.000058441000000,0.000013818000000,0.000086491000000,0.000037503000000,0.000358688000000,0.000076613000000,0.000044614000000,0.000031577000000,0.000084120000000,0.000327082000000,0.000378836000000,0.000346441000000,0.020560943000000,0.000346441000000,0.000428219000000,0.019826129000000,0.000090836000000,0.000082935000000 +0.000019344000000,0.000715033000000,0.000072663000000,0.000013027666667,0.000055280000000,0.000036712000000,0.000387132000000,0.000077800000000,0.000045404000000,0.000031577000000,0.000128367000000,0.000293108000000,0.000297453000000,0.000344466000000,0.020262277000000,0.000382392000000,0.000427034000000,0.019476895000000,0.000093602000000,0.000081750000000 +0.000045023000000,0.000691330000000,0.000066737000000,0.000019612333333,0.000055676000000,0.000037503000000,0.000348812000000,0.000097552000000,0.000044219000000,0.000030392000000,0.000084515000000,0.000291527000000,0.000333799000000,0.000346441000000,0.019555512000000,0.000547132000000,0.000346441000000,0.020164696000000,0.000092811000000,0.000083330000000 +0.000018554000000,0.000789700000000,0.000037898000000,0.000024748000000,0.000057256000000,0.000036713000000,0.000403725000000,0.000252416000000,0.000044219000000,0.000030787000000,0.000082539000000,0.000340120000000,0.000293108000000,0.000348416000000,0.019967561000000,0.000352367000000,0.000388317000000,0.019353636000000,0.000113355000000,0.000083725000000 +0.000018751500000,0.000717008000000,0.000038688000000,0.000014344666667,0.000057255000000,0.000036713000000,0.000349601000000,0.000095577000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000294687000000,0.000294688000000,0.000344465000000,0.019397093000000,0.000382391000000,0.000351972000000,0.020327857000000,0.000092021000000,0.000081355000000 +0.000020134500000,0.000712663000000,0.000038688000000,0.000013028000000,0.000056465000000,0.000051725000000,0.000359083000000,0.000089651000000,0.000047379000000,0.000032762000000,0.000082540000000,0.000352366000000,0.000660119000000,0.000381206000000,0.019524698000000,0.000346836000000,0.000413997000000,0.020525388000000,0.000092812000000,0.000083330000000 +0.000019739500000,0.000713848000000,0.000038293000000,0.000013554666667,0.000129157000000,0.000037503000000,0.000394243000000,0.000077799000000,0.000044219000000,0.000030786000000,0.000084120000000,0.000293503000000,0.000312466000000,0.000346441000000,0.019950178000000,0.000351577000000,0.000347231000000,0.019467018000000,0.000091626000000,0.000116910000000 +0.000019541500000,0.000691330000000,0.000040268000000,0.000013027666667,0.000073059000000,0.000037502000000,0.000344466000000,0.000074639000000,0.000045009000000,0.000032367000000,0.000082145000000,0.000293898000000,0.000304960000000,0.000360268000000,0.019444105000000,0.000347626000000,0.000385552000000,0.019155315000000,0.000093997000000,0.000082935000000 +0.000019541500000,0.000997897000000,0.000038293000000,0.000012896000000,0.000055676000000,0.000037108000000,0.000400564000000,0.000112564000000,0.000045799000000,0.000031577000000,0.000134293000000,0.000329848000000,0.000296268000000,0.000349207000000,0.019302278000000,0.000350391000000,0.000345256000000,0.019773981000000,0.000092416000000,0.000149305000000 +0.000019541500000,0.000720564000000,0.000037898000000,0.000012896000000,0.000057255000000,0.000036713000000,0.000348811000000,0.000080170000000,0.000044219000000,0.000031972000000,0.000082145000000,0.000293503000000,0.000328663000000,0.000344861000000,0.021504350000000,0.000381207000000,0.000393058000000,0.020140994000000,0.000090441000000,0.000096367000000 +0.000018751500000,0.000705551000000,0.000037503000000,0.000013554333333,0.000056465000000,0.000038688000000,0.000362244000000,0.000077009000000,0.000044219000000,0.000031972000000,0.000084120000000,0.000295478000000,0.000290737000000,0.000346835000000,0.020645882000000,0.000345651000000,0.000349601000000,0.019990870000000,0.000215280000000,0.000080564000000 +0.000019739000000,0.000710687000000,0.000038293000000,0.000024221000000,0.000055675000000,0.000036318000000,0.000370935000000,0.000075033000000,0.000045404000000,0.000030786000000,0.000081750000000,0.000294292000000,0.000310096000000,0.000353552000000,0.020404104000000,0.000417552000000,0.000357108000000,0.019675215000000,0.000110985000000,0.000099132000000 +0.000025665000000,0.000685009000000,0.000038293000000,0.000013028000000,0.000055675000000,0.000038293000000,0.000349206000000,0.000074639000000,0.000044219000000,0.000030392000000,0.000082539000000,0.000291132000000,0.000327873000000,0.000353157000000,0.020526968000000,0.000347626000000,0.000354737000000,0.019575660000000,0.000090046000000,0.000094786000000 +0.000018751000000,0.000696070000000,0.000039479000000,0.000012896000000,0.000089256000000,0.000036713000000,0.000383972000000,0.000076614000000,0.000044614000000,0.000031182000000,0.000084121000000,0.000343676000000,0.000290737000000,0.000354342000000,0.020125981000000,0.000347626000000,0.000347231000000,0.022000152000000,0.000092022000000,0.000082145000000 +0.000019541500000,0.000721354000000,0.000037898000000,0.000012896000000,0.000056466000000,0.000037503000000,0.000355133000000,0.000076614000000,0.000044219000000,0.000065157000000,0.000101898000000,0.000298639000000,0.000370144000000,0.000362639000000,0.019739215000000,0.000387527000000,0.000382787000000,0.020557388000000,0.000093207000000,0.000082934000000 +0.000019936500000,0.000775082000000,0.000038293000000,0.000013554666667,0.000058046000000,0.000071478000000,0.000348811000000,0.000078194000000,0.000044614000000,0.000032762000000,0.000081750000000,0.000301009000000,0.000296268000000,0.000407675000000,0.020041042000000,0.000351577000000,0.000350391000000,0.019644006000000,0.000092021000000,0.000083329000000 +0.000018751500000,0.000752564000000,0.000088465000000,0.000013686333333,0.000055675000000,0.000037108000000,0.000387132000000,0.000077009000000,0.000044614000000,0.000045799000000,0.000084120000000,0.000346836000000,0.000292317000000,0.000390293000000,0.019378525000000,0.000383577000000,0.000379231000000,0.021165387000000,0.000092811000000,0.000082540000000 +0.000020331500000,0.000685799000000,0.000037898000000,0.000013027666667,0.000055676000000,0.000037503000000,0.000357898000000,0.000076219000000,0.000079774000000,0.000031577000000,0.000081749000000,0.000291527000000,0.000326687000000,0.000344466000000,0.019358377000000,0.000346836000000,0.000351577000000,0.020731215000000,0.000093997000000,0.000082539000000 +0.000018751500000,0.000691725000000,0.000037898000000,0.000013028000000,0.000057651000000,0.000038688000000,0.000425848000000,0.000074638000000,0.000044219000000,0.000030787000000,0.000084515000000,0.000329848000000,0.000291527000000,0.000349997000000,0.019538524000000,0.000348416000000,0.000405700000000,0.019649537000000,0.000092417000000,0.000116910000000 +0.000018554000000,0.000716613000000,0.000037502000000,0.000013027666667,0.000055676000000,0.000038293000000,0.000348416000000,0.000076219000000,0.000044219000000,0.000031181000000,0.000084120000000,0.000299033000000,0.000290737000000,0.000347626000000,0.020545931000000,0.000383182000000,0.000347626000000,0.019158080000000,0.000092812000000,0.000080564000000 +0.000019739500000,0.000716218000000,0.000038293000000,0.000013027666667,0.000056860000000,0.000036713000000,0.000346836000000,0.000077009000000,0.000064367000000,0.000031182000000,0.000082145000000,0.000293897000000,0.000290737000000,0.000347626000000,0.019261587000000,0.000348416000000,0.000438095000000,0.019806771000000,0.000091626000000,0.000080960000000 +0.000018751500000,0.000712663000000,0.000038293000000,0.000031990666667,0.000056860000000,0.000036713000000,0.000475626000000,0.000075034000000,0.000043824000000,0.000032367000000,0.000117700000000,0.000328663000000,0.000292318000000,0.000352367000000,0.019747512000000,0.000434145000000,0.000350786000000,0.019258821000000,0.000092416000000,0.000080565000000 +0.000026652500000,0.000673946000000,0.000037502000000,0.000013818000000,0.000055675000000,0.000037108000000,0.000377255000000,0.000082935000000,0.000044219000000,0.000031577000000,0.000082145000000,0.000291923000000,0.000344071000000,0.000348812000000,0.019821389000000,0.000357107000000,0.000410046000000,0.020101092000000,0.000128367000000,0.000082540000000 +0.000019541500000,0.000779033000000,0.000037898000000,0.000013027666667,0.000055280000000,0.000071873000000,0.000350787000000,0.000076614000000,0.000044219000000,0.000064762000000,0.000084120000000,0.000296268000000,0.000297058000000,0.000380022000000,0.018837291000000,0.000346440000000,0.000346441000000,0.019445685000000,0.000091232000000,0.000084120000000 +0.000018751500000,0.000733602000000,0.000037502000000,0.000013554666667,0.000055676000000,0.000037107000000,0.000394639000000,0.000075034000000,0.000044614000000,0.000032367000000,0.000084120000000,0.000295478000000,0.000293107000000,0.000347231000000,0.019458722000000,0.000432959000000,0.000368169000000,0.020185635000000,0.000092022000000,0.000083330000000 +0.000019542000000,0.000711477000000,0.000076614000000,0.000013554333333,0.000055676000000,0.000071084000000,0.000353552000000,0.000074638000000,0.000046590000000,0.000031182000000,0.000082145000000,0.000293503000000,0.000415576000000,0.000348021000000,0.019239068000000,0.000345651000000,0.000350787000000,0.019707216000000,0.000093601000000,0.000114935000000 diff --git a/docs/source/media/bench/lua bench tests luwra.csv b/docs/source/media/bench/lua bench tests luwra.csv new file mode 100644 index 00000000..67a9e42c --- /dev/null +++ b/docs/source/media/bench/lua bench tests luwra.csv @@ -0,0 +1,2001 @@ +"luwra - global get","luwra - c function","luwra - global set","luwra - table chained get","luwra - table get","luwra - lua function","luwra - table chained set","luwra - table set","luwra - c function through lua","luwra - member function calls","luwra - member function calls (simple)","luwra - stateful c function" +0.000023689500000,0.000026060000000,0.000026257500000,0.000078589000000,0.000039478000000,0.000103873000000,0.000079774000000,0.000040269000000,0.000099527000000,0.000135083000000,0.000268218000000,0.000587824000000 +0.000023294500000,0.000025665000000,0.000042060000000,0.000071083000000,0.000057651000000,0.000103478000000,0.000071478000000,0.000039083000000,0.000148911000000,0.000136663000000,0.000334984000000,0.000556614000000 +0.000023295000000,0.000025862500000,0.000024677000000,0.000071083000000,0.000039083000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000115725000000,0.000137453000000,0.000186836000000,0.000554243000000 +0.000023294500000,0.000025467000000,0.000024677500000,0.000107034000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000140219000000,0.000136663000000,0.000555823000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000071478000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000135873000000,0.000208169000000,0.000554243000000 +0.000023294500000,0.000025270000000,0.000024282500000,0.000079379000000,0.000039873000000,0.000102688000000,0.000073454000000,0.000060021000000,0.000097552000000,0.000135478000000,0.000137849000000,0.000557799000000 +0.000023294500000,0.000025467500000,0.000024282000000,0.000074244000000,0.000039873000000,0.000208960000000,0.000071083000000,0.000054885000000,0.000097157000000,0.000135478000000,0.000136268000000,0.000557009000000 +0.000023690000000,0.000025467500000,0.000024085000000,0.000078589000000,0.000040268000000,0.000126392000000,0.000077799000000,0.000053305000000,0.000097157000000,0.000136268000000,0.000137058000000,0.000285206000000 +0.000023294500000,0.000025467500000,0.000023492500000,0.000077404000000,0.000037503000000,0.000116910000000,0.000153256000000,0.000039479000000,0.000097552000000,0.000140614000000,0.000139429000000,0.000554243000000 +0.000023492000000,0.000025270000000,0.000023492000000,0.000070688000000,0.000041454000000,0.000102688000000,0.000111380000000,0.000040663000000,0.000097552000000,0.000137849000000,0.000136663000000,0.000398194000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000070688000000,0.000039873000000,0.000103478000000,0.000089651000000,0.000041058000000,0.000097553000000,0.000138639000000,0.000212120000000,0.000297848000000 +0.000024085000000,0.000025270000000,0.000024084500000,0.000070688000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000059232000000,0.000169454000000,0.000133108000000,0.000134293000000,0.000596120000000 +0.000031986000000,0.000025467500000,0.000024085000000,0.000071478000000,0.000041454000000,0.000102688000000,0.000071478000000,0.000073453000000,0.000097947000000,0.000136663000000,0.000138639000000,0.000554639000000 +0.000023887000000,0.000025270000000,0.000024085000000,0.000077404000000,0.000040269000000,0.000141404000000,0.000073453000000,0.000039083000000,0.000098342000000,0.000138243000000,0.000141009000000,0.000556613000000 +0.000023294500000,0.000043640500000,0.000023097000000,0.000110194000000,0.000039873000000,0.000129947000000,0.000071478000000,0.000040269000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000554243000000 +0.000023294500000,0.000025269500000,0.000023689500000,0.000078589000000,0.000039083000000,0.000103083000000,0.000112960000000,0.000039478000000,0.000097552000000,0.000137453000000,0.000134293000000,0.000287182000000 +0.000023295000000,0.000025270000000,0.000024085000000,0.000077799000000,0.000038293000000,0.000102688000000,0.000110590000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000176170000000,0.000284021000000 +0.000023295000000,0.000025467500000,0.000024282500000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000137454000000,0.000136663000000,0.000284811000000 +0.000023294500000,0.000025665000000,0.000024084500000,0.000071083000000,0.000039083000000,0.000102688000000,0.000090046000000,0.000040663000000,0.000097553000000,0.000139824000000,0.000136663000000,0.000286392000000 +0.000023294500000,0.000025665000000,0.000041665000000,0.000071083000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000039874000000,0.000097158000000,0.000137058000000,0.000141799000000,0.000554243000000 +0.000023294500000,0.000025467500000,0.000024874500000,0.000071083000000,0.000058441000000,0.000103874000000,0.000071478000000,0.000039083000000,0.000152466000000,0.000137059000000,0.000136664000000,0.000286786000000 +0.000023294500000,0.000025467000000,0.000024085000000,0.000077404000000,0.000050540000000,0.000122046000000,0.000073454000000,0.000039083000000,0.000097947000000,0.000137849000000,0.000136663000000,0.000621799000000 +0.000024085000000,0.000025270000000,0.000023689500000,0.000074244000000,0.000040664000000,0.000154836000000,0.000071478000000,0.000041058000000,0.000097948000000,0.000136268000000,0.000207774000000,0.000555824000000 +0.000023690000000,0.000025270000000,0.000024479500000,0.000079380000000,0.000039478000000,0.000103083000000,0.000077009000000,0.000040269000000,0.000098738000000,0.000135873000000,0.000136663000000,0.000554638000000 +0.000023492000000,0.000025467500000,0.000024085000000,0.000077799000000,0.000041058000000,0.000102688000000,0.000079379000000,0.000041058000000,0.000098342000000,0.000141404000000,0.000132713000000,0.000555823000000 +0.000023097000000,0.000025863000000,0.000024677000000,0.000070688000000,0.000040664000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000136268000000,0.000136664000000,0.000554243000000 +0.000023097000000,0.000025467500000,0.000022899500000,0.000106639000000,0.000039083000000,0.000102688000000,0.000073059000000,0.000041059000000,0.000096762000000,0.000138243000000,0.000135083000000,0.000286391000000 +0.000023689500000,0.000025664500000,0.000024677500000,0.000070688000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000142984000000,0.000136268000000,0.000554244000000 +0.000023887500000,0.000025467500000,0.000024084500000,0.000071083000000,0.000039873000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097948000000,0.000139034000000,0.000173404000000,0.000557008000000 +0.000023097000000,0.000025269500000,0.000024875000000,0.000077799000000,0.000037503000000,0.000104268000000,0.000109404000000,0.000039873000000,0.000169059000000,0.000138639000000,0.000134688000000,0.000555033000000 +0.000041467500000,0.000053912000000,0.000024480000000,0.000073848000000,0.000038292000000,0.000186836000000,0.000071083000000,0.000058836000000,0.000098342000000,0.000136663000000,0.000138244000000,0.000322342000000 +0.000023294500000,0.000026060000000,0.000023887000000,0.000079774000000,0.000041058000000,0.000103083000000,0.000077404000000,0.000054491000000,0.000097947000000,0.000134688000000,0.000138639000000,0.000567280000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000077404000000,0.000041058000000,0.000103083000000,0.000079379000000,0.000039478000000,0.000097157000000,0.000138243000000,0.000133503000000,0.000555824000000 +0.000023492000000,0.000025862500000,0.000024480000000,0.000070688000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000137848000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000023689500000,0.000070688000000,0.000039478000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000096762000000,0.000141799000000,0.000157206000000,0.000286787000000 +0.000023689500000,0.000025270000000,0.000022899500000,0.000071083000000,0.000038293000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000139824000000,0.000136268000000,0.000285207000000 +0.000023295000000,0.000025665000000,0.000024677500000,0.000071083000000,0.000037898000000,0.000103478000000,0.000071084000000,0.000039478000000,0.000097552000000,0.000136664000000,0.000134293000000,0.000284811000000 +0.000023887000000,0.000025467500000,0.000041269500000,0.000077404000000,0.000040268000000,0.000103083000000,0.000073453000000,0.000039479000000,0.000096762000000,0.000135873000000,0.000139824000000,0.000554638000000 +0.000023294500000,0.000029023000000,0.000024282500000,0.000092021000000,0.000041059000000,0.000145355000000,0.000071478000000,0.000039478000000,0.000133503000000,0.000136268000000,0.000136663000000,0.000553453000000 +0.000023294500000,0.000025467000000,0.000023097000000,0.000078589000000,0.000037898000000,0.000102688000000,0.000077009000000,0.000041059000000,0.000097157000000,0.000135083000000,0.000135873000000,0.000556219000000 +0.000023097000000,0.000025270000000,0.000024677000000,0.000077404000000,0.000057651000000,0.000103083000000,0.000080169000000,0.000039478000000,0.000098342000000,0.000137058000000,0.000136268000000,0.000554638000000 +0.000023887500000,0.000025270000000,0.000024085000000,0.000070688000000,0.000038688000000,0.000102688000000,0.000142194000000,0.000041058000000,0.000097947000000,0.000233848000000,0.000175379000000,0.000286391000000 +0.000023492500000,0.000026060000000,0.000024480000000,0.000070688000000,0.000039874000000,0.000103083000000,0.000072664000000,0.000039083000000,0.000097157000000,0.000136663000000,0.000137059000000,0.000554639000000 +0.000023887000000,0.000025269500000,0.000024084500000,0.000071083000000,0.000039478000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000136663000000,0.000595725000000 +0.000023097000000,0.000025270000000,0.000024677500000,0.000071083000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000096762000000,0.000136268000000,0.000136268000000,0.000554638000000 +0.000023097000000,0.000043442500000,0.000024084500000,0.000079379000000,0.000040663000000,0.000103873000000,0.000073454000000,0.000039873000000,0.000097552000000,0.000135478000000,0.000136268000000,0.000290342000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000074243000000,0.000040268000000,0.000124021000000,0.000071083000000,0.000039478000000,0.000097948000000,0.000136663000000,0.000136269000000,0.000284811000000 +0.000024282500000,0.000025467500000,0.000023492000000,0.000078589000000,0.000039479000000,0.000119676000000,0.000077009000000,0.000039478000000,0.000153256000000,0.000139034000000,0.000208564000000,0.000556219000000 +0.000041862500000,0.000025467500000,0.000024282500000,0.000077800000000,0.000039478000000,0.000102688000000,0.000079379000000,0.000039874000000,0.000112960000000,0.000133502000000,0.000136268000000,0.000589009000000 +0.000023492000000,0.000025467500000,0.000023492000000,0.000161552000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000138638000000,0.000135478000000,0.000301009000000 +0.000023492000000,0.000025665000000,0.000024084500000,0.000109009000000,0.000041453000000,0.000103478000000,0.000072663000000,0.000077009000000,0.000097947000000,0.000136268000000,0.000137849000000,0.000555034000000 +0.000023492000000,0.000025665000000,0.000024085000000,0.000088466000000,0.000041059000000,0.000102688000000,0.000071478000000,0.000040663000000,0.000097552000000,0.000136268000000,0.000187231000000,0.000672366000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000071479000000,0.000041058000000,0.000103083000000,0.000114145000000,0.000040664000000,0.000097157000000,0.000135873000000,0.000136268000000,0.000631675000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000077799000000,0.000037898000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000097157000000,0.000135873000000,0.000184861000000,0.000555034000000 +0.000023294500000,0.000025467500000,0.000024282000000,0.000073848000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000041059000000,0.000098342000000,0.000207379000000,0.000140219000000,0.000574786000000 +0.000023492000000,0.000025270000000,0.000032776000000,0.000078194000000,0.000038293000000,0.000173799000000,0.000077404000000,0.000041058000000,0.000097552000000,0.000140614000000,0.000138243000000,0.000571230000000 +0.000023689500000,0.000025467500000,0.000024084500000,0.000077404000000,0.000039478000000,0.000102293000000,0.000079775000000,0.000039478000000,0.000133108000000,0.000135478000000,0.000132712000000,0.000285601000000 +0.000023294500000,0.000025467500000,0.000023887000000,0.000070688000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000096762000000,0.000135873000000,0.000133898000000,0.000556614000000 +0.000023294500000,0.000025665000000,0.000024677500000,0.000071083000000,0.000041058000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000139824000000,0.000138244000000,0.000286392000000 +0.000023097500000,0.000025862500000,0.000024875000000,0.000106638000000,0.000039084000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000159972000000,0.000176170000000,0.000591774000000 +0.000023295000000,0.000025270000000,0.000024480000000,0.000071083000000,0.000059626000000,0.000103873000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000135873000000,0.000139429000000,0.000553848000000 +0.000023097000000,0.000061023000000,0.000024677500000,0.000077800000000,0.000069107000000,0.000103478000000,0.000073454000000,0.000039083000000,0.000098343000000,0.000136663000000,0.000144564000000,0.000555428000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000074639000000,0.000054885000000,0.000103083000000,0.000090441000000,0.000041058000000,0.000097553000000,0.000137848000000,0.000139824000000,0.000285997000000 +0.000023294500000,0.000025467500000,0.000024282000000,0.000078984000000,0.000041058000000,0.000187626000000,0.000117700000000,0.000039874000000,0.000097948000000,0.000136663000000,0.000136268000000,0.000369354000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000077799000000,0.000037503000000,0.000102687000000,0.000084515000000,0.000039083000000,0.000097552000000,0.000135874000000,0.000137454000000,0.000284811000000 +0.000023097000000,0.000025665000000,0.000023690000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000075428000000,0.000040269000000,0.000116910000000,0.000135873000000,0.000179330000000,0.000555429000000 +0.000023097000000,0.000025467500000,0.000023097500000,0.000071083000000,0.000039083000000,0.000103083000000,0.000088466000000,0.000039478000000,0.000297848000000,0.000245700000000,0.000133503000000,0.000554243000000 +0.000041467500000,0.000025862500000,0.000024085000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071083000000,0.000039479000000,0.000248070000000,0.000175775000000,0.000136268000000,0.000617453000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000071478000000,0.000040664000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000113750000000,0.000153255000000,0.000136663000000,0.000635626000000 +0.000023492500000,0.000025467500000,0.000023887500000,0.000078194000000,0.000039873000000,0.000103478000000,0.000073454000000,0.000039874000000,0.000098342000000,0.000135873000000,0.000135873000000,0.000607181000000 +0.000023097500000,0.000025467500000,0.000024085000000,0.000074244000000,0.000040663000000,0.000103873000000,0.000071478000000,0.000075429000000,0.000098342000000,0.000133107000000,0.000136663000000,0.000284416000000 +0.000023097500000,0.000025467000000,0.000024084500000,0.000115330000000,0.000039478000000,0.000140219000000,0.000077404000000,0.000041058000000,0.000169058000000,0.000137453000000,0.000132712000000,0.000556218000000 +0.000023097500000,0.000025270000000,0.000024677500000,0.000077404000000,0.000038293000000,0.000102688000000,0.000079775000000,0.000039083000000,0.000097553000000,0.000137848000000,0.000220021000000,0.000284417000000 +0.000023492000000,0.000025270000000,0.000033764000000,0.000071083000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000097948000000,0.000135478000000,0.000136663000000,0.000284811000000 +0.000023294500000,0.000026060000000,0.000024085000000,0.000071083000000,0.000039478000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000097158000000,0.000136664000000,0.000134293000000,0.000596515000000 +0.000023294500000,0.000025269500000,0.000024084500000,0.000071083000000,0.000040663000000,0.000102688000000,0.000123232000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000139824000000,0.000626144000000 +0.000023294500000,0.000043442500000,0.000023492000000,0.000071083000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000039084000000,0.000097552000000,0.000136268000000,0.000140219000000,0.000554243000000 +0.000023097000000,0.000026060000000,0.000024085000000,0.000077799000000,0.000040663000000,0.000103083000000,0.000073453000000,0.000041058000000,0.000097552000000,0.000141404000000,0.000140614000000,0.000555823000000 +0.000023097000000,0.000025862500000,0.000024085000000,0.000074244000000,0.000039478000000,0.000103478000000,0.000071479000000,0.000039478000000,0.000097157000000,0.000173799000000,0.000175774000000,0.000284812000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000078590000000,0.000058046000000,0.000122441000000,0.000077404000000,0.000039478000000,0.000097157000000,0.000139034000000,0.000137058000000,0.000284811000000 +0.000023097000000,0.000025270000000,0.000023492000000,0.000077009000000,0.000089651000000,0.000135478000000,0.000079380000000,0.000039873000000,0.000132317000000,0.000135478000000,0.000136663000000,0.000322737000000 +0.000023295000000,0.000025270000000,0.000022899500000,0.000071083000000,0.000041059000000,0.000102688000000,0.000071478000000,0.000041454000000,0.000112170000000,0.000136268000000,0.000142985000000,0.000284811000000 +0.000023097500000,0.000027047500000,0.000023887500000,0.000107034000000,0.000041058000000,0.000103083000000,0.000073058000000,0.000039873000000,0.000097552000000,0.000133503000000,0.000137848000000,0.000556614000000 +0.000024084500000,0.000025467500000,0.000023887500000,0.000070688000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000039479000000,0.000098342000000,0.000136663000000,0.000136663000000,0.000286392000000 +0.000023294500000,0.000028825500000,0.000024084500000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000097157000000,0.000148120000000,0.000172218000000,0.000552663000000 +0.000042850000000,0.000025467500000,0.000024085000000,0.000077009000000,0.000038688000000,0.000103478000000,0.000073453000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000556614000000 +0.000031591000000,0.000025467500000,0.000022899500000,0.000074243000000,0.000041058000000,0.000103083000000,0.000107429000000,0.000039478000000,0.000098737000000,0.000136663000000,0.000134688000000,0.000555033000000 +0.000023295000000,0.000025467500000,0.000024085000000,0.000079774000000,0.000039083000000,0.000103083000000,0.000092416000000,0.000039478000000,0.000097948000000,0.000136268000000,0.000136664000000,0.000589798000000 +0.000024282000000,0.000025467500000,0.000024084500000,0.000077800000000,0.000041058000000,0.000293898000000,0.000079774000000,0.000039083000000,0.000097553000000,0.000136268000000,0.000140614000000,0.000556218000000 +0.000023492000000,0.000025270000000,0.000024282000000,0.000071083000000,0.000039083000000,0.000306539000000,0.000071083000000,0.000041059000000,0.000116516000000,0.000141009000000,0.000136664000000,0.000284417000000 +0.000023492000000,0.000025467500000,0.000024282500000,0.000070688000000,0.000037503000000,0.000144959000000,0.000073058000000,0.000093997000000,0.000097552000000,0.000137058000000,0.000172219000000,0.000556218000000 +0.000023690000000,0.000025467500000,0.000024085000000,0.000071083000000,0.000039083000000,0.000118886000000,0.000071083000000,0.000039873000000,0.000097947000000,0.000153256000000,0.000133503000000,0.000555033000000 +0.000023294500000,0.000043443000000,0.000049566000000,0.000071084000000,0.000039083000000,0.000137058000000,0.000071084000000,0.000039478000000,0.000097552000000,0.000133503000000,0.000136663000000,0.000959971000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000078589000000,0.000039083000000,0.000118885000000,0.000073058000000,0.000040663000000,0.000097552000000,0.000141404000000,0.000136269000000,0.000355132000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000110194000000,0.000039084000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000555429000000 +0.000024084500000,0.000025467500000,0.000023294500000,0.000120071000000,0.000040663000000,0.000102688000000,0.000077009000000,0.000040663000000,0.000097157000000,0.000142589000000,0.000136663000000,0.000555823000000 +0.000023097000000,0.000026850000000,0.000024282000000,0.000093601000000,0.000037898000000,0.000103083000000,0.000078589000000,0.000039874000000,0.000097157000000,0.000141009000000,0.000136663000000,0.000553848000000 +0.000023295000000,0.000025269500000,0.000024677500000,0.000071083000000,0.000040663000000,0.000102688000000,0.000107033000000,0.000039478000000,0.000098343000000,0.000137454000000,0.000378836000000,0.000284021000000 +0.000023295000000,0.000025665000000,0.000024084500000,0.000071083000000,0.000039083000000,0.000102688000000,0.000073058000000,0.000041059000000,0.000097553000000,0.000136268000000,0.000217256000000,0.000393058000000 +0.000023097000000,0.000025269500000,0.000024084500000,0.000071084000000,0.000073848000000,0.000103083000000,0.000071084000000,0.000039083000000,0.000169454000000,0.000136268000000,0.000141009000000,0.000299824000000 +0.000024282000000,0.000025270000000,0.000023097000000,0.000071083000000,0.000040663000000,0.000103873000000,0.000071478000000,0.000039479000000,0.000097157000000,0.000136268000000,0.000136268000000,0.000591379000000 +0.000023887000000,0.000025467500000,0.000024677500000,0.000078984000000,0.000038293000000,0.000139034000000,0.000073453000000,0.000039873000000,0.000097157000000,0.000137454000000,0.000182491000000,0.000553848000000 +0.000024677500000,0.000025270000000,0.000023689500000,0.000074244000000,0.000041453000000,0.000103478000000,0.000071083000000,0.000041059000000,0.000097552000000,0.000136663000000,0.000136664000000,0.000643132000000 +0.000059245000000,0.000025467500000,0.000024084500000,0.000077799000000,0.000040664000000,0.000102688000000,0.000077009000000,0.000040663000000,0.000098342000000,0.000177354000000,0.000140614000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000077404000000,0.000040663000000,0.000103873000000,0.000078985000000,0.000039478000000,0.000097552000000,0.000139429000000,0.000141009000000,0.000291528000000 +0.000022899500000,0.000026455500000,0.000024085000000,0.000088071000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000040269000000,0.000097157000000,0.000137453000000,0.000139824000000,0.000555033000000 +0.000023097000000,0.000025665000000,0.000023097000000,0.000071084000000,0.000038688000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000135873000000,0.000139824000000,0.000555428000000 +0.000023690000000,0.000034751500000,0.000024084500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071084000000,0.000039478000000,0.000097157000000,0.000133107000000,0.000183281000000,0.000553848000000 +0.000023294500000,0.000033566500000,0.000024282500000,0.000071479000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000041453000000,0.000133503000000,0.000140614000000,0.000136268000000,0.000286787000000 +0.000023097000000,0.000025467500000,0.000040677500000,0.000079774000000,0.000037898000000,0.000122441000000,0.000144564000000,0.000078589000000,0.000096762000000,0.000137058000000,0.000137058000000,0.000284417000000 +0.000023294500000,0.000025270000000,0.000031788500000,0.000074243000000,0.000040664000000,0.000102688000000,0.000071479000000,0.000089256000000,0.000097947000000,0.000136268000000,0.000133503000000,0.000556218000000 +0.000022899500000,0.000034751500000,0.000023689500000,0.000078589000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000080565000000,0.000097157000000,0.000132317000000,0.000137058000000,0.000552663000000 +0.000023097000000,0.000033763500000,0.000023492000000,0.000077799000000,0.000041058000000,0.000103083000000,0.000079775000000,0.000042639000000,0.000097157000000,0.000136663000000,0.000136268000000,0.000285206000000 +0.000023097000000,0.000032381000000,0.000023887500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000055281000000,0.000097157000000,0.000133897000000,0.000171824000000,0.000555429000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000070688000000,0.000040268000000,0.000103873000000,0.000072663000000,0.000039478000000,0.000096762000000,0.000136268000000,0.000137058000000,0.000555823000000 +0.000023492500000,0.000025467500000,0.000023294500000,0.000071083000000,0.000057256000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000098342000000,0.000133503000000,0.000137454000000,0.000553848000000 +0.000024677500000,0.000025862500000,0.000023887000000,0.000107428000000,0.000039873000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000097947000000,0.000171429000000,0.000136269000000,0.000554638000000 +0.000023689500000,0.000025467500000,0.000023689500000,0.000078589000000,0.000037898000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000133898000000,0.000141404000000,0.000152861000000,0.000553453000000 +0.000023690000000,0.000025467500000,0.000023097000000,0.000073849000000,0.000081354000000,0.000139034000000,0.000071478000000,0.000042639000000,0.000097947000000,0.000138243000000,0.000136268000000,0.000592564000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000078590000000,0.000040268000000,0.000103873000000,0.000077404000000,0.000039478000000,0.000140219000000,0.000135873000000,0.000190391000000,0.000285602000000 +0.000023097000000,0.000025467500000,0.000023492500000,0.000077404000000,0.000038688000000,0.000103083000000,0.000114539000000,0.000040663000000,0.000112169000000,0.000139429000000,0.000137849000000,0.000556218000000 +0.000034949000000,0.000025862500000,0.000023887500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000098342000000,0.000136268000000,0.000139429000000,0.000285996000000 +0.000023294500000,0.000035344000000,0.000023294500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000097552000000,0.000141799000000,0.000139429000000,0.000555428000000 +0.000023294500000,0.000060430500000,0.000024479500000,0.000071083000000,0.000040269000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000098737000000,0.000136663000000,0.000136664000000,0.000553453000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000071478000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000041058000000,0.000098343000000,0.000137058000000,0.000146145000000,0.000555429000000 +0.000023097000000,0.000025467000000,0.000024874500000,0.000077009000000,0.000039083000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000097553000000,0.000136269000000,0.000172219000000,0.000285601000000 +0.000023492000000,0.000028628000000,0.000023690000000,0.000074244000000,0.000041848000000,0.000103083000000,0.000071478000000,0.000060812000000,0.000133897000000,0.000136663000000,0.000136663000000,0.000284416000000 +0.000023295000000,0.000025270000000,0.000041467500000,0.000078194000000,0.000039478000000,0.000120465000000,0.000076614000000,0.000039478000000,0.000097553000000,0.000136268000000,0.000136268000000,0.000286392000000 +0.000023295000000,0.000025467500000,0.000024282500000,0.000113749000000,0.000039873000000,0.000103873000000,0.000079774000000,0.000039478000000,0.000097158000000,0.000133897000000,0.000137058000000,0.000553848000000 +0.000023097000000,0.000025665000000,0.000023492500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000097948000000,0.000173404000000,0.000141009000000,0.000555824000000 +0.000023097000000,0.000025862500000,0.000023887000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000138244000000,0.000605601000000 +0.000023294500000,0.000025664500000,0.000024282000000,0.000070688000000,0.000041058000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000140219000000,0.000227923000000,0.000556614000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000107824000000,0.000039478000000,0.000097947000000,0.000135873000000,0.000136268000000,0.000555033000000 +0.000023097000000,0.000025269500000,0.000024677000000,0.000078984000000,0.000040268000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000098342000000,0.000135083000000,0.000137454000000,0.000286391000000 +0.000023097000000,0.000025665000000,0.000024084500000,0.000073848000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000040268000000,0.000096762000000,0.000135873000000,0.000136268000000,0.000553454000000 +0.000023097000000,0.000025467500000,0.000023492500000,0.000079379000000,0.000040268000000,0.000139034000000,0.000076218000000,0.000039479000000,0.000136268000000,0.000137454000000,0.000136663000000,0.000291922000000 +0.000023294500000,0.000025467500000,0.000023887500000,0.000077404000000,0.000039478000000,0.000102292000000,0.000079774000000,0.000039478000000,0.000126786000000,0.000139429000000,0.000139428000000,0.000285206000000 +0.000023295000000,0.000043442500000,0.000025467500000,0.000070688000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000137059000000,0.000172219000000,0.000553453000000 +0.000023097000000,0.000025270000000,0.000024677500000,0.000071083000000,0.000113749000000,0.000103083000000,0.000072664000000,0.000039873000000,0.000096762000000,0.000138639000000,0.000139824000000,0.000557404000000 +0.000057269500000,0.000025665000000,0.000023492000000,0.000111774000000,0.000132317000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000097947000000,0.000133108000000,0.000134688000000,0.000625355000000 +0.000030011000000,0.000025467500000,0.000024084500000,0.000071478000000,0.000113355000000,0.000102687000000,0.000071478000000,0.000039478000000,0.000096762000000,0.000136664000000,0.000139033000000,0.000622589000000 +0.000023097000000,0.000025270000000,0.000024677500000,0.000078985000000,0.000124022000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097157000000,0.000138244000000,0.000141009000000,0.000286392000000 +0.000023294500000,0.000025665000000,0.000024677000000,0.000074244000000,0.000071478000000,0.000101897000000,0.000071083000000,0.000039873000000,0.000097157000000,0.000173799000000,0.000136663000000,0.000284416000000 +0.000023097000000,0.000025665000000,0.000023492500000,0.000078194000000,0.000057256000000,0.000104268000000,0.000076613000000,0.000039478000000,0.000099133000000,0.000136663000000,0.000134688000000,0.000285207000000 +0.000023097000000,0.000025862500000,0.000023492500000,0.000077404000000,0.000039873000000,0.000139033000000,0.000193157000000,0.000039478000000,0.000134293000000,0.000136663000000,0.000156812000000,0.000284811000000 +0.000023294500000,0.000025269500000,0.000041665000000,0.000070688000000,0.000041059000000,0.000103083000000,0.000201058000000,0.000041059000000,0.000098343000000,0.000137849000000,0.000137059000000,0.000605206000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000070688000000,0.000050540000000,0.000102688000000,0.000077404000000,0.000060416000000,0.000097157000000,0.000139429000000,0.000136268000000,0.000286391000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000070688000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000071083000000,0.000098342000000,0.000137059000000,0.000141404000000,0.000555034000000 +0.000023295000000,0.000025467500000,0.000024480000000,0.000071083000000,0.000077009000000,0.000103083000000,0.000071479000000,0.000039083000000,0.000098342000000,0.000137848000000,0.000136664000000,0.000554243000000 +0.000023294500000,0.000026060000000,0.000024875000000,0.000077404000000,0.000054095000000,0.000102293000000,0.000073453000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000136268000000,0.000592564000000 +0.000023097000000,0.000026060000000,0.000023689500000,0.000074243000000,0.000039479000000,0.000103873000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000135873000000,0.000172613000000,0.000555823000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000115330000000,0.000038688000000,0.000103083000000,0.000077009000000,0.000039478000000,0.000097552000000,0.000135873000000,0.000136268000000,0.000554243000000 +0.000023492000000,0.000025270000000,0.000024084500000,0.000077799000000,0.000041059000000,0.000159972000000,0.000114540000000,0.000041059000000,0.000098342000000,0.000178145000000,0.000132712000000,0.000284811000000 +0.000043640500000,0.000044825500000,0.000024084500000,0.000070688000000,0.000039873000000,0.000103873000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000149701000000,0.000136268000000,0.000591379000000 +0.000024677000000,0.000025270000000,0.000024480000000,0.000070688000000,0.000040664000000,0.000103873000000,0.000072663000000,0.000041059000000,0.000157207000000,0.000158787000000,0.000134688000000,0.000556613000000 +0.000040677500000,0.000028430500000,0.000024479500000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000041453000000,0.000109799000000,0.000430589000000,0.000136268000000,0.000554244000000 +0.000023690000000,0.000025270000000,0.000023097000000,0.000071478000000,0.000040268000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000096762000000,0.000162738000000,0.000213306000000,0.000284811000000 +0.000023887000000,0.000025269500000,0.000024085000000,0.000079379000000,0.000039083000000,0.000102688000000,0.000073453000000,0.000039478000000,0.000097947000000,0.000138244000000,0.000135083000000,0.000591379000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000074639000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000137454000000,0.000137849000000,0.000607576000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000078589000000,0.000041059000000,0.000103083000000,0.000077404000000,0.000039873000000,0.000096762000000,0.000134293000000,0.000138638000000,0.000553454000000 +0.000023294500000,0.000028825500000,0.000024084500000,0.000077799000000,0.000041058000000,0.000103083000000,0.000079380000000,0.000039478000000,0.000098737000000,0.000138638000000,0.000133503000000,0.000322737000000 +0.000023295000000,0.000025467500000,0.000024282500000,0.000071083000000,0.000039478000000,0.000125207000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000137849000000,0.000285997000000 +0.000023295000000,0.000025665000000,0.000032578500000,0.000109009000000,0.000037898000000,0.000102688000000,0.000073058000000,0.000039479000000,0.000133898000000,0.000141009000000,0.000174194000000,0.000284416000000 +0.000023294500000,0.000025467500000,0.000042455000000,0.000099923000000,0.000040664000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000139823000000,0.000135873000000,0.000555429000000 +0.000023294500000,0.000025467500000,0.000046998000000,0.000071478000000,0.000038688000000,0.000101898000000,0.000128762000000,0.000039479000000,0.000098737000000,0.000136268000000,0.000133898000000,0.000553848000000 +0.000023492000000,0.000025072000000,0.000023689500000,0.000078589000000,0.000040269000000,0.000103083000000,0.000091231000000,0.000058441000000,0.000098342000000,0.000173403000000,0.000139428000000,0.000676318000000 +0.000023097000000,0.000025270000000,0.000024282500000,0.000075823000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000055676000000,0.000098342000000,0.000136268000000,0.000136663000000,0.000560959000000 +0.000023097000000,0.000025467000000,0.000023689500000,0.000078589000000,0.000038293000000,0.000102688000000,0.000076614000000,0.000041059000000,0.000097552000000,0.000135478000000,0.000136268000000,0.000284417000000 +0.000023294500000,0.000035146500000,0.000022899500000,0.000077404000000,0.000087675000000,0.000102688000000,0.000080170000000,0.000039873000000,0.000098343000000,0.000136663000000,0.000136268000000,0.000555033000000 +0.000023295000000,0.000077616000000,0.000024084500000,0.000071083000000,0.000051330000000,0.000173008000000,0.000071478000000,0.000040663000000,0.000098343000000,0.000136663000000,0.000152466000000,0.000555824000000 +0.000023295000000,0.000051344000000,0.000023492000000,0.000071083000000,0.000038688000000,0.000116910000000,0.000073058000000,0.000039479000000,0.000096762000000,0.000136663000000,0.000136664000000,0.000556219000000 +0.000023294500000,0.000035344000000,0.000024085000000,0.000071083000000,0.000040269000000,0.000122441000000,0.000071479000000,0.000040663000000,0.000096762000000,0.000178935000000,0.000136663000000,0.000284811000000 +0.000023097000000,0.000027245500000,0.000023295000000,0.000071478000000,0.000041058000000,0.000116120000000,0.000071083000000,0.000040663000000,0.000255576000000,0.000135873000000,0.000136268000000,0.000284417000000 +0.000023492000000,0.000032776500000,0.000023492000000,0.000114145000000,0.000037898000000,0.000103083000000,0.000073058000000,0.000039083000000,0.000113355000000,0.000136268000000,0.000136269000000,0.000591774000000 +0.000041270000000,0.000025270000000,0.000023689500000,0.000073849000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000136269000000,0.000136268000000,0.000552663000000 +0.000023492000000,0.000025270000000,0.000024084500000,0.000078195000000,0.000037503000000,0.000102688000000,0.000112959000000,0.000039083000000,0.000097552000000,0.000138244000000,0.000173799000000,0.000411231000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000077404000000,0.000038293000000,0.000103083000000,0.000079774000000,0.000039083000000,0.000097552000000,0.000133898000000,0.000136268000000,0.000555033000000 +0.000023294500000,0.000025269500000,0.000023295000000,0.000071083000000,0.000037503000000,0.000138638000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000138639000000,0.000135478000000,0.000555823000000 +0.000023492000000,0.000025270000000,0.000024875000000,0.000071083000000,0.000041453000000,0.000103873000000,0.000072664000000,0.000041059000000,0.000097157000000,0.000136268000000,0.000137849000000,0.000553848000000 +0.000023097500000,0.000025467500000,0.000023689500000,0.000071084000000,0.000038293000000,0.000103873000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000136268000000,0.000142985000000,0.000591379000000 +0.000023295000000,0.000043640000000,0.000041270000000,0.000071478000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000133503000000,0.000135873000000,0.000136268000000,0.000556219000000 +0.000023097000000,0.000025665000000,0.000032973500000,0.000077799000000,0.000039478000000,0.000102688000000,0.000073454000000,0.000039083000000,0.000098737000000,0.000134293000000,0.000171428000000,0.000555033000000 +0.000023294500000,0.000025269500000,0.000024479500000,0.000073849000000,0.000037898000000,0.000103873000000,0.000071083000000,0.000041059000000,0.000097947000000,0.000140614000000,0.000140219000000,0.000285996000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000078589000000,0.000040269000000,0.000103478000000,0.000077404000000,0.000041058000000,0.000097552000000,0.000140614000000,0.000138244000000,0.000556219000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000077404000000,0.000037898000000,0.000103873000000,0.000080170000000,0.000039478000000,0.000098342000000,0.000135873000000,0.000133108000000,0.000285996000000 +0.000023097000000,0.000025270000000,0.000023492000000,0.000107034000000,0.000041059000000,0.000139033000000,0.000071083000000,0.000059231000000,0.000097552000000,0.000136268000000,0.000133898000000,0.000643922000000 +0.000023294500000,0.000025862500000,0.000023097000000,0.000071083000000,0.000041058000000,0.000103083000000,0.000073058000000,0.000058046000000,0.000097552000000,0.000139824000000,0.000138243000000,0.000553453000000 +0.000024282500000,0.000025862500000,0.000023689500000,0.000070688000000,0.000073848000000,0.000103478000000,0.000122837000000,0.000052515000000,0.000098343000000,0.000139429000000,0.000176169000000,0.000555429000000 +0.000023294500000,0.000025467000000,0.000024085000000,0.000071084000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000097948000000,0.000135873000000,0.000139428000000,0.000286392000000 +0.000023097000000,0.000025270000000,0.000023097500000,0.000078589000000,0.000037503000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000133897000000,0.000136663000000,0.000144169000000,0.000322342000000 +0.000023097000000,0.000025665000000,0.000023690000000,0.000073848000000,0.000041454000000,0.000103083000000,0.000071083000000,0.000040663000000,0.000097553000000,0.000137058000000,0.000140219000000,0.000284811000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000078194000000,0.000041058000000,0.000103874000000,0.000076614000000,0.000039083000000,0.000097553000000,0.000172614000000,0.000136663000000,0.000553453000000 +0.000032973500000,0.000025270000000,0.000023492000000,0.000077404000000,0.000039083000000,0.000102688000000,0.000079775000000,0.000039873000000,0.000097157000000,0.000136268000000,0.000137848000000,0.000556218000000 +0.000023294500000,0.000025467500000,0.000023887000000,0.000070688000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000135873000000,0.000136268000000,0.000555823000000 +0.000023294500000,0.000025665000000,0.000024677500000,0.000070688000000,0.000039083000000,0.000139034000000,0.000072663000000,0.000039873000000,0.000097552000000,0.000139429000000,0.000150491000000,0.000555824000000 +0.000023294500000,0.000025862500000,0.000024084500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000133107000000,0.000136268000000,0.000556614000000 +0.000023689500000,0.000043838000000,0.000024480000000,0.000089651000000,0.000040664000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000139823000000,0.000136268000000,0.000284811000000 +0.000023097500000,0.000032578500000,0.000023689500000,0.000093997000000,0.000038293000000,0.000102688000000,0.000073453000000,0.000039479000000,0.000097947000000,0.000137058000000,0.000136268000000,0.000560960000000 +0.000023295000000,0.000025467000000,0.000041270000000,0.000073454000000,0.000040664000000,0.000103083000000,0.000141800000000,0.000039478000000,0.000133503000000,0.000133898000000,0.000136663000000,0.000284811000000 +0.000024479500000,0.000025665000000,0.000023097500000,0.000078589000000,0.000039873000000,0.000102688000000,0.000076614000000,0.000041059000000,0.000097157000000,0.000136268000000,0.000132712000000,0.000284417000000 +0.000023294500000,0.000025269500000,0.000024085000000,0.000077404000000,0.000039478000000,0.000103874000000,0.000078590000000,0.000039478000000,0.000098342000000,0.000138243000000,0.000172614000000,0.000555033000000 +0.000023492500000,0.000025467500000,0.000024677000000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000097552000000,0.000135873000000,0.000136268000000,0.000555034000000 +0.000023295000000,0.000025467500000,0.000024085000000,0.000071083000000,0.000042244000000,0.000103874000000,0.000072663000000,0.000039083000000,0.000097552000000,0.000136664000000,0.000134293000000,0.000556218000000 +0.000023295000000,0.000025467500000,0.000022900000000,0.000071083000000,0.000037898000000,0.000119281000000,0.000071479000000,0.000039478000000,0.000098342000000,0.000137453000000,0.000139824000000,0.000554243000000 +0.000023294500000,0.000029023000000,0.000023887500000,0.000071478000000,0.000037898000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000140219000000,0.000322342000000 +0.000023294500000,0.000025665000000,0.000024677000000,0.000078194000000,0.000040664000000,0.000103083000000,0.000073453000000,0.000063577000000,0.000097157000000,0.000141799000000,0.000140219000000,0.000284417000000 +0.000023097000000,0.000025467000000,0.000023492000000,0.000073848000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000136268000000,0.000176169000000,0.000284416000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000079379000000,0.000094392000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000097947000000,0.000138638000000,0.000137058000000,0.000431379000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000112959000000,0.000069108000000,0.000103083000000,0.000080170000000,0.000039478000000,0.000210540000000,0.000134688000000,0.000136663000000,0.000569650000000 +0.000023097000000,0.000025862500000,0.000024084500000,0.000071083000000,0.000054886000000,0.000102688000000,0.000142194000000,0.000041058000000,0.000116120000000,0.000136664000000,0.000142985000000,0.000287971000000 +0.000023294500000,0.000025270000000,0.000023887500000,0.000070688000000,0.000041059000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000097948000000,0.000170244000000,0.000138244000000,0.000553058000000 +0.000041467500000,0.000035146500000,0.000023097500000,0.000070688000000,0.000038688000000,0.000139033000000,0.000071083000000,0.000039083000000,0.000098737000000,0.000136663000000,0.000136663000000,0.000555823000000 +0.000023492000000,0.000047986000000,0.000023492500000,0.000071478000000,0.000040664000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000137453000000,0.000136268000000,0.000555034000000 +0.000023097500000,0.000025467500000,0.000024084500000,0.000078589000000,0.000039478000000,0.000102688000000,0.000073058000000,0.000039478000000,0.000098737000000,0.000136663000000,0.000136663000000,0.000575576000000 +0.000023295000000,0.000026850000000,0.000023887000000,0.000073849000000,0.000039874000000,0.000104268000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000178935000000,0.000587823000000 +0.000023097500000,0.000025269500000,0.000024085000000,0.000078590000000,0.000038688000000,0.000103873000000,0.000077404000000,0.000039873000000,0.000097552000000,0.000136663000000,0.000136663000000,0.000301799000000 +0.000023097000000,0.000027047500000,0.000033961500000,0.000077404000000,0.000040664000000,0.000103083000000,0.000078590000000,0.000039083000000,0.000133898000000,0.000137058000000,0.000140613000000,0.000553453000000 +0.000023097000000,0.000025270000000,0.000031393500000,0.000070688000000,0.000038688000000,0.000103874000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000140614000000,0.000136268000000,0.000556613000000 +0.000023492000000,0.000025467000000,0.000023690000000,0.000071083000000,0.000037503000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000556613000000 +0.000023097000000,0.000025467500000,0.000024479500000,0.000089651000000,0.000037898000000,0.000102687000000,0.000071084000000,0.000039083000000,0.000098342000000,0.000136268000000,0.000232268000000,0.000284812000000 +0.000023294500000,0.000025467000000,0.000024085000000,0.000087676000000,0.000038688000000,0.000174194000000,0.000115725000000,0.000039478000000,0.000097552000000,0.000133107000000,0.000152071000000,0.000553848000000 +0.000023097000000,0.000025665000000,0.000024085000000,0.000077404000000,0.000039478000000,0.000103083000000,0.000090046000000,0.000041059000000,0.000097553000000,0.000141404000000,0.000135874000000,0.000555429000000 +0.000023492000000,0.000025269500000,0.000024677000000,0.000074243000000,0.000037503000000,0.000103478000000,0.000071478000000,0.000040268000000,0.000097948000000,0.000136268000000,0.000136663000000,0.000553848000000 +0.000023295000000,0.000025270000000,0.000023097000000,0.000078194000000,0.000040663000000,0.000102688000000,0.000076614000000,0.000041059000000,0.000097947000000,0.000143774000000,0.000136268000000,0.000320761000000 +0.000023295000000,0.000025269500000,0.000023294500000,0.000077799000000,0.000039478000000,0.000103873000000,0.000080169000000,0.000059231000000,0.000097552000000,0.000141404000000,0.000207379000000,0.000285206000000 +0.000023294500000,0.000025467500000,0.000023492500000,0.000071083000000,0.000037502000000,0.000103083000000,0.000071479000000,0.000072268000000,0.000134293000000,0.000137059000000,0.000135083000000,0.000284417000000 +0.000023294500000,0.000047393500000,0.000024085000000,0.000070688000000,0.000074638000000,0.000102688000000,0.000073058000000,0.000041059000000,0.000096762000000,0.000135873000000,0.000136663000000,0.000555823000000 +0.000023097000000,0.000025862500000,0.000023887000000,0.000071478000000,0.000039083000000,0.000102293000000,0.000071083000000,0.000039083000000,0.000096762000000,0.000136663000000,0.000141009000000,0.000556219000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000071478000000,0.000041059000000,0.000138638000000,0.000071478000000,0.000039874000000,0.000097158000000,0.000136664000000,0.000136268000000,0.000555033000000 +0.000033171000000,0.000025467500000,0.000024480000000,0.000077404000000,0.000039478000000,0.000102688000000,0.000073453000000,0.000039478000000,0.000097158000000,0.000157602000000,0.000136268000000,0.000561749000000 +0.000023294500000,0.000025467500000,0.000023294500000,0.000074639000000,0.000041849000000,0.000103478000000,0.000071083000000,0.000041059000000,0.000097553000000,0.000136663000000,0.000207379000000,0.000284022000000 +0.000023294500000,0.000025270000000,0.000024479500000,0.000114935000000,0.000040663000000,0.000103478000000,0.000095577000000,0.000040663000000,0.000097948000000,0.000140219000000,0.000140614000000,0.000575971000000 +0.000023294500000,0.000025862500000,0.000024875000000,0.000077799000000,0.000038688000000,0.000103083000000,0.000144564000000,0.000039478000000,0.000097552000000,0.000139428000000,0.000140614000000,0.000725699000000 +0.000023097000000,0.000025467500000,0.000023294500000,0.000071083000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000096762000000,0.000137453000000,0.000139824000000,0.000555033000000 +0.000023294500000,0.000025665000000,0.000024677000000,0.000071083000000,0.000037898000000,0.000103874000000,0.000072664000000,0.000040663000000,0.000097157000000,0.000135873000000,0.000139824000000,0.000285207000000 +0.000023097000000,0.000025270000000,0.000041862500000,0.000070688000000,0.000039478000000,0.000103478000000,0.000071478000000,0.000039479000000,0.000133897000000,0.000201059000000,0.000134687000000,0.000284021000000 +0.000023492500000,0.000025665000000,0.000023294500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000096367000000,0.000140614000000,0.000204614000000,0.000592564000000 +0.000023097500000,0.000025665000000,0.000024085000000,0.000078194000000,0.000038688000000,0.000120466000000,0.000073454000000,0.000039873000000,0.000097552000000,0.000137454000000,0.000137059000000,0.000555033000000 +0.000023492000000,0.000025665000000,0.000023295000000,0.000073848000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000133503000000,0.000285207000000 +0.000023887000000,0.000025270000000,0.000023295000000,0.000077799000000,0.000041453000000,0.000103083000000,0.000077008000000,0.000042243000000,0.000132713000000,0.000132713000000,0.000137059000000,0.000554638000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000077404000000,0.000041453000000,0.000103873000000,0.000078589000000,0.000039479000000,0.000114935000000,0.000136663000000,0.000136268000000,0.000745058000000 +0.000023097000000,0.000025467500000,0.000023689500000,0.000071083000000,0.000040269000000,0.000102688000000,0.000071478000000,0.000041453000000,0.000098737000000,0.000133898000000,0.000135873000000,0.000555429000000 +0.000023294500000,0.000043838000000,0.000024480000000,0.000070688000000,0.000040268000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000098342000000,0.000137059000000,0.000178935000000,0.000553058000000 +0.000023295000000,0.000025467500000,0.000023295000000,0.000088861000000,0.000040664000000,0.000103083000000,0.000135873000000,0.000039478000000,0.000097157000000,0.000133503000000,0.000137454000000,0.000591774000000 +0.000023295000000,0.000025467500000,0.000022900000000,0.000071083000000,0.000039478000000,0.000103083000000,0.000071478000000,0.000057256000000,0.000114540000000,0.000133503000000,0.000136664000000,0.000554639000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000078194000000,0.000041058000000,0.000139033000000,0.000073454000000,0.000038688000000,0.000097947000000,0.000141404000000,0.000136663000000,0.000286787000000 +0.000023097000000,0.000025270000000,0.000023492000000,0.000074639000000,0.000109404000000,0.000102688000000,0.000071478000000,0.000042244000000,0.000097947000000,0.000137849000000,0.000136663000000,0.000554243000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000099923000000,0.000040268000000,0.000102688000000,0.000076613000000,0.000039478000000,0.000097552000000,0.000135873000000,0.000141009000000,0.000336960000000 +0.000041270000000,0.000025665000000,0.000024085000000,0.000095972000000,0.000040664000000,0.000102688000000,0.000079379000000,0.000040268000000,0.000097947000000,0.000178539000000,0.000212910000000,0.000553848000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000348812000000,0.000139823000000,0.000555429000000 +0.000023492000000,0.000028430500000,0.000023887000000,0.000071083000000,0.000039083000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000097157000000,0.000176565000000,0.000139429000000,0.000554243000000 +0.000023689500000,0.000025665000000,0.000023294500000,0.000071083000000,0.000039084000000,0.000103478000000,0.000071083000000,0.000041059000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000323923000000 +0.000023295000000,0.000025270000000,0.000024084500000,0.000071479000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000145750000000,0.000284811000000 +0.000023097000000,0.000026060000000,0.000045023000000,0.000078194000000,0.000037502000000,0.000102688000000,0.000073059000000,0.000039083000000,0.000133898000000,0.000137058000000,0.000136268000000,0.000284022000000 +0.000023097000000,0.000025665000000,0.000024282500000,0.000090441000000,0.000041453000000,0.000227922000000,0.000141799000000,0.000040663000000,0.000097552000000,0.000136663000000,0.000207379000000,0.000554638000000 +0.000023492000000,0.000028825500000,0.000024480000000,0.000078985000000,0.000039873000000,0.000137453000000,0.000090441000000,0.000039083000000,0.000097947000000,0.000136664000000,0.000136268000000,0.000555034000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000077799000000,0.000038688000000,0.000102688000000,0.000079379000000,0.000039083000000,0.000097948000000,0.000134293000000,0.000136664000000,0.000604416000000 +0.000023097000000,0.000025665000000,0.000023492500000,0.000071083000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000136664000000,0.000141009000000,0.000555823000000 +0.000023294500000,0.000044825500000,0.000024085000000,0.000070688000000,0.000038293000000,0.000102688000000,0.000073059000000,0.000039083000000,0.000097947000000,0.000136663000000,0.000138244000000,0.000555823000000 +0.000023294500000,0.000031986000000,0.000024677000000,0.000071083000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000139824000000,0.000136664000000,0.000284416000000 +0.000023097500000,0.000025467000000,0.000024480000000,0.000071083000000,0.000039478000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136269000000,0.000217651000000,0.000676712000000 +0.000023492500000,0.000025467500000,0.000024677000000,0.000078589000000,0.000039873000000,0.000139034000000,0.000073454000000,0.000040664000000,0.000097947000000,0.000135083000000,0.000137453000000,0.000285207000000 +0.000023294500000,0.000025269500000,0.000023689500000,0.000073849000000,0.000039083000000,0.000102293000000,0.000071478000000,0.000059231000000,0.000133503000000,0.000135873000000,0.000136269000000,0.000286786000000 +0.000022899500000,0.000025862500000,0.000023294500000,0.000078984000000,0.000040664000000,0.000103083000000,0.000077404000000,0.000090836000000,0.000097947000000,0.000137059000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000023690000000,0.000077404000000,0.000039083000000,0.000103083000000,0.000080170000000,0.000081750000000,0.000098342000000,0.000139824000000,0.000139824000000,0.000555823000000 +0.000023294500000,0.000025270000000,0.000024282500000,0.000106639000000,0.000077404000000,0.000102688000000,0.000141799000000,0.000090046000000,0.000097552000000,0.000137849000000,0.000136663000000,0.000553848000000 +0.000042060000000,0.000025665000000,0.000024282000000,0.000071083000000,0.000040268000000,0.000103478000000,0.000073058000000,0.000124417000000,0.000097947000000,0.000144960000000,0.000210935000000,0.000555428000000 +0.000039492000000,0.000025270000000,0.000024084500000,0.000071083000000,0.000040664000000,0.000103083000000,0.000071478000000,0.000102688000000,0.000097157000000,0.000133108000000,0.000134688000000,0.000284811000000 +0.000023097500000,0.000025665000000,0.000024085000000,0.000071083000000,0.000041059000000,0.000102688000000,0.000071478000000,0.000077800000000,0.000099133000000,0.000136663000000,0.000139034000000,0.000322737000000 +0.000023295000000,0.000025270000000,0.000023689500000,0.000077404000000,0.000040663000000,0.000103083000000,0.000073453000000,0.000042244000000,0.000098737000000,0.000138244000000,0.000141404000000,0.000297453000000 +0.000023294500000,0.000025467500000,0.000023097000000,0.000073848000000,0.000039874000000,0.000139034000000,0.000071083000000,0.000041848000000,0.000096762000000,0.000136269000000,0.000136663000000,0.000284416000000 +0.000023294500000,0.000025467500000,0.000041862500000,0.000077404000000,0.000039083000000,0.000103083000000,0.000076614000000,0.000054095000000,0.000097552000000,0.000136663000000,0.000134688000000,0.000556218000000 +0.000023294500000,0.000025270000000,0.000023097000000,0.000077799000000,0.000039083000000,0.000103478000000,0.000080170000000,0.000039083000000,0.000114144000000,0.000136268000000,0.000211725000000,0.000285997000000 +0.000023097000000,0.000043245000000,0.000024084500000,0.000071083000000,0.000041058000000,0.000104269000000,0.000071083000000,0.000041058000000,0.000098343000000,0.000137453000000,0.000136663000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000071083000000,0.000038293000000,0.000102688000000,0.000072663000000,0.000040663000000,0.000097947000000,0.000140218000000,0.000136664000000,0.000554243000000 +0.000023097000000,0.000025467000000,0.000024480000000,0.000070688000000,0.000037503000000,0.000103083000000,0.000071083000000,0.000059231000000,0.000098342000000,0.000136663000000,0.000141404000000,0.000556614000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000141404000000,0.000071873000000,0.000097157000000,0.000137059000000,0.000137059000000,0.000554243000000 +0.000023097000000,0.000025467000000,0.000024677500000,0.000182095000000,0.000038293000000,0.000103083000000,0.000086490000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000592169000000 +0.000023492500000,0.000025467500000,0.000024085000000,0.000095577000000,0.000037502000000,0.000123231000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000135873000000,0.000191182000000,0.000284416000000 +0.000023295000000,0.000025467000000,0.000023887000000,0.000109799000000,0.000038293000000,0.000136269000000,0.000076614000000,0.000039083000000,0.000097157000000,0.000137059000000,0.000395824000000,0.000556219000000 +0.000023294500000,0.000025270000000,0.000023689500000,0.000077799000000,0.000041058000000,0.000103478000000,0.000079379000000,0.000040663000000,0.000097157000000,0.000141799000000,0.000163133000000,0.000555428000000 +0.000023097000000,0.000025467500000,0.000023887500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000146935000000,0.000136268000000,0.000136268000000,0.000658145000000 +0.000022899500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000039874000000,0.000122046000000,0.000073058000000,0.000040664000000,0.000097552000000,0.000137849000000,0.000154836000000,0.000285206000000 +0.000023689500000,0.000025467500000,0.000023492000000,0.000070688000000,0.000039083000000,0.000122836000000,0.000071083000000,0.000040663000000,0.000098342000000,0.000143380000000,0.000152465000000,0.000556219000000 +0.000041665000000,0.000025467500000,0.000024677000000,0.000071083000000,0.000040269000000,0.000118096000000,0.000071083000000,0.000039874000000,0.000097157000000,0.000138243000000,0.000137848000000,0.000553848000000 +0.000023887000000,0.000025467500000,0.000024480000000,0.000077404000000,0.000078589000000,0.000103873000000,0.000073453000000,0.000040268000000,0.000097552000000,0.000138243000000,0.000135083000000,0.000555823000000 +0.000023097500000,0.000025467500000,0.000024677000000,0.000073849000000,0.000054491000000,0.000144959000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000193947000000,0.000137849000000,0.000284812000000 +0.000023887500000,0.000026060000000,0.000023887500000,0.000149701000000,0.000054490000000,0.000103083000000,0.000148515000000,0.000039478000000,0.000097157000000,0.000134688000000,0.000138639000000,0.000287182000000 +0.000023097000000,0.000025270000000,0.000023492000000,0.000077404000000,0.000041058000000,0.000102688000000,0.000080169000000,0.000039478000000,0.000097157000000,0.000138639000000,0.000133503000000,0.000284416000000 +0.000023492000000,0.000038899500000,0.000043245000000,0.000070688000000,0.000037897000000,0.000103873000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000154441000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000048381000000,0.000070688000000,0.000037503000000,0.000102688000000,0.000072664000000,0.000039479000000,0.000139824000000,0.000141009000000,0.000138244000000,0.000555428000000 +0.000023294500000,0.000025270000000,0.000042653000000,0.000070688000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000139824000000,0.000136268000000,0.000554243000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000071478000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000099133000000,0.000137058000000,0.000178144000000,0.000597700000000 +0.000023295000000,0.000025467000000,0.000038504500000,0.000078194000000,0.000039083000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000139429000000,0.000284416000000 +0.000023887500000,0.000029023000000,0.000023887000000,0.000074244000000,0.000041059000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000135873000000,0.000136268000000,0.000555429000000 +0.000023294500000,0.000025269500000,0.000024085000000,0.000079380000000,0.000039873000000,0.000120071000000,0.000076614000000,0.000056465000000,0.000097552000000,0.000135478000000,0.000152466000000,0.000555428000000 +0.000023294500000,0.000025467500000,0.000023492500000,0.000077799000000,0.000039084000000,0.000103083000000,0.000079774000000,0.000053305000000,0.000097947000000,0.000137059000000,0.000136269000000,0.000604811000000 +0.000023294500000,0.000025467500000,0.000022702000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000096762000000,0.000136268000000,0.000139429000000,0.000284811000000 +0.000024085000000,0.000025862500000,0.000024282500000,0.000141799000000,0.000037898000000,0.000103083000000,0.000143775000000,0.000039874000000,0.000097552000000,0.000137058000000,0.000136664000000,0.000286787000000 +0.000023295000000,0.000025269500000,0.000024084500000,0.000071083000000,0.000037503000000,0.000103873000000,0.000071083000000,0.000039873000000,0.000136268000000,0.000135873000000,0.000136663000000,0.000555034000000 +0.000023097500000,0.000025270000000,0.000023492000000,0.000071083000000,0.000041453000000,0.000103479000000,0.000071478000000,0.000041059000000,0.000127972000000,0.000136268000000,0.000136663000000,0.000590589000000 +0.000023294500000,0.000025665000000,0.000023887500000,0.000078194000000,0.000038293000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000098343000000,0.000136268000000,0.000207380000000,0.000285601000000 +0.000033171000000,0.000025665000000,0.000023295000000,0.000073849000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000135873000000,0.000696465000000 +0.000031393500000,0.000025269500000,0.000024677500000,0.000079380000000,0.000039083000000,0.000174194000000,0.000077009000000,0.000039478000000,0.000096762000000,0.000138244000000,0.000137848000000,0.000554638000000 +0.000022899500000,0.000052726500000,0.000024084500000,0.000077799000000,0.000059231000000,0.000102688000000,0.000080169000000,0.000039083000000,0.000097157000000,0.000133898000000,0.000136663000000,0.000555823000000 +0.000023294500000,0.000025467000000,0.000042060000000,0.000070688000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000040268000000,0.000098342000000,0.000139033000000,0.000135478000000,0.000602046000000 +0.000023492000000,0.000025270000000,0.000024480000000,0.000070688000000,0.000041453000000,0.000102688000000,0.000073059000000,0.000041058000000,0.000097552000000,0.000136268000000,0.000137848000000,0.000554243000000 +0.000023097000000,0.000025467000000,0.000023097500000,0.000071083000000,0.000039874000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000136269000000,0.000213700000000,0.000592564000000 +0.000023690000000,0.000025270000000,0.000024677500000,0.000071478000000,0.000041453000000,0.000102292000000,0.000071083000000,0.000039478000000,0.000133898000000,0.000135873000000,0.000136268000000,0.000286392000000 +0.000023295000000,0.000025467500000,0.000024677500000,0.000120071000000,0.000037898000000,0.000103083000000,0.000092812000000,0.000039478000000,0.000097552000000,0.000134293000000,0.000136268000000,0.000592959000000 +0.000023097000000,0.000025270000000,0.000024677500000,0.000073849000000,0.000039083000000,0.000102688000000,0.000173799000000,0.000041058000000,0.000097552000000,0.000140614000000,0.000139824000000,0.000285997000000 +0.000023294500000,0.000025467500000,0.000023097000000,0.000079380000000,0.000039083000000,0.000139033000000,0.000193552000000,0.000040664000000,0.000097552000000,0.000141799000000,0.000137849000000,0.000556218000000 +0.000023294500000,0.000034751500000,0.000024874500000,0.000077404000000,0.000037898000000,0.000102688000000,0.000114935000000,0.000039083000000,0.000097157000000,0.000135083000000,0.000133108000000,0.000553453000000 +0.000023294500000,0.000033764000000,0.000023492500000,0.000070688000000,0.000040663000000,0.000103874000000,0.000102293000000,0.000039479000000,0.000097552000000,0.000135873000000,0.000203429000000,0.000556218000000 +0.000023492000000,0.000033171000000,0.000025467500000,0.000070688000000,0.000040663000000,0.000103083000000,0.000072664000000,0.000073453000000,0.000097947000000,0.000139429000000,0.000138243000000,0.000286391000000 +0.000023887500000,0.000025467500000,0.000024282500000,0.000071083000000,0.000039874000000,0.000102688000000,0.000071478000000,0.000041848000000,0.000098738000000,0.000139824000000,0.000140218000000,0.000284812000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000071478000000,0.000039478000000,0.000102688000000,0.000071478000000,0.000054095000000,0.000097553000000,0.000135874000000,0.000139824000000,0.000286786000000 +0.000023689500000,0.000025269500000,0.000023492000000,0.000077799000000,0.000037503000000,0.000103083000000,0.000092812000000,0.000039083000000,0.000097947000000,0.000136663000000,0.000144564000000,0.000570045000000 +0.000023097000000,0.000025665000000,0.000023887000000,0.000074244000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000041453000000,0.000114934000000,0.000138243000000,0.000139824000000,0.000556218000000 +0.000022899500000,0.000026850000000,0.000023690000000,0.000078194000000,0.000041454000000,0.000103083000000,0.000077009000000,0.000039083000000,0.000097948000000,0.000177354000000,0.000172614000000,0.000554243000000 +0.000023294500000,0.000032183500000,0.000023492500000,0.000141404000000,0.000037898000000,0.000139824000000,0.000079774000000,0.000039083000000,0.000097158000000,0.000152071000000,0.000137849000000,0.000555823000000 +0.000050949000000,0.000025862500000,0.000023887500000,0.000070688000000,0.000040664000000,0.000102688000000,0.000071083000000,0.000039874000000,0.000097948000000,0.000135873000000,0.000136269000000,0.000554244000000 +0.000048578500000,0.000025270000000,0.000024084500000,0.000071083000000,0.000038688000000,0.000103873000000,0.000072663000000,0.000039478000000,0.000097158000000,0.000139429000000,0.000132713000000,0.000291132000000 +0.000033171000000,0.000025665000000,0.000050356500000,0.000070688000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000039874000000,0.000097948000000,0.000133108000000,0.000135873000000,0.000605997000000 +0.000031196000000,0.000025467500000,0.000031195500000,0.000071083000000,0.000059231000000,0.000102688000000,0.000071479000000,0.000039083000000,0.000097552000000,0.000176565000000,0.000136663000000,0.000286786000000 +0.000023097500000,0.000025467000000,0.000023690000000,0.000078194000000,0.000088861000000,0.000103478000000,0.000073453000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000171823000000,0.000285206000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000073848000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000096762000000,0.000133898000000,0.000136268000000,0.000553453000000 +0.000023097000000,0.000025467000000,0.000024874500000,0.000078984000000,0.000038688000000,0.000102688000000,0.000077404000000,0.000041059000000,0.000134293000000,0.000136663000000,0.000133108000000,0.000556218000000 +0.000022899500000,0.000025467500000,0.000024875000000,0.000077799000000,0.000040663000000,0.000103083000000,0.000078589000000,0.000039873000000,0.000097948000000,0.000138243000000,0.000136663000000,0.000555824000000 +0.000023294500000,0.000025270000000,0.000023294500000,0.000071083000000,0.000038688000000,0.000154836000000,0.000106638000000,0.000039084000000,0.000097552000000,0.000135478000000,0.000136268000000,0.000554243000000 +0.000023294500000,0.000025862500000,0.000024084500000,0.000070688000000,0.000039873000000,0.000103083000000,0.000073058000000,0.000038688000000,0.000097157000000,0.000137454000000,0.000134688000000,0.000284812000000 +0.000023492000000,0.000025665000000,0.000022899500000,0.000107033000000,0.000037898000000,0.000102688000000,0.000071084000000,0.000039478000000,0.000097947000000,0.000136664000000,0.000139429000000,0.000397009000000 +0.000023097000000,0.000025467500000,0.000023887000000,0.000071083000000,0.000039083000000,0.000102293000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000176169000000,0.000299429000000 +0.000023097000000,0.000026060500000,0.000023690000000,0.000079775000000,0.000041058000000,0.000103083000000,0.000073453000000,0.000041059000000,0.000098342000000,0.000141404000000,0.000140614000000,0.000284416000000 +0.000023690000000,0.000043443000000,0.000024085000000,0.000073849000000,0.000039479000000,0.000103479000000,0.000071478000000,0.000085700000000,0.000097947000000,0.000136663000000,0.000140219000000,0.000556614000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000078194000000,0.000037503000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000097552000000,0.000139034000000,0.000137058000000,0.000285997000000 +0.000022899500000,0.000025467500000,0.000024085000000,0.000077404000000,0.000038688000000,0.000103083000000,0.000079775000000,0.000039873000000,0.000133898000000,0.000135083000000,0.000136663000000,0.000591379000000 +0.000041072500000,0.000025467500000,0.000023294500000,0.000071083000000,0.000041059000000,0.000138639000000,0.000071478000000,0.000041453000000,0.000097947000000,0.000237403000000,0.000142984000000,0.000554638000000 +0.000023295000000,0.000026850000000,0.000023492000000,0.000071083000000,0.000041058000000,0.000102688000000,0.000072663000000,0.000039479000000,0.000097947000000,0.000133503000000,0.000215281000000,0.000556614000000 +0.000023294500000,0.000025467500000,0.000023097000000,0.000071083000000,0.000039873000000,0.000102688000000,0.000071479000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000579132000000 +0.000023294500000,0.000029023000000,0.000023294500000,0.000071083000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000137454000000,0.000136268000000,0.000570836000000 +0.000023097000000,0.000025270000000,0.000049763500000,0.000077800000000,0.000039873000000,0.000103083000000,0.000143774000000,0.000039083000000,0.000097947000000,0.000136664000000,0.000136268000000,0.000284811000000 +0.000023887000000,0.000025270000000,0.000024677500000,0.000074244000000,0.000038293000000,0.000103478000000,0.000071479000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000134688000000,0.000555428000000 +0.000023492500000,0.000025665000000,0.000023294500000,0.000115725000000,0.000038293000000,0.000103083000000,0.000077404000000,0.000039478000000,0.000097553000000,0.000137453000000,0.000136268000000,0.000592959000000 +0.000023295000000,0.000025270000000,0.000023689500000,0.000077799000000,0.000112169000000,0.000102688000000,0.000078590000000,0.000039478000000,0.000098343000000,0.000136268000000,0.000176169000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000070688000000,0.000039083000000,0.000136268000000,0.000071478000000,0.000041058000000,0.000097947000000,0.000141008000000,0.000136663000000,0.000284416000000 +0.000023492000000,0.000025467500000,0.000023492000000,0.000070688000000,0.000039478000000,0.000118886000000,0.000072663000000,0.000039478000000,0.000133503000000,0.000136268000000,0.000136269000000,0.000555428000000 +0.000023097000000,0.000025270000000,0.000023295000000,0.000070688000000,0.000039478000000,0.000103083000000,0.000071479000000,0.000039873000000,0.000097553000000,0.000136268000000,0.000133898000000,0.000592169000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097553000000,0.000133108000000,0.000136664000000,0.000570045000000 +0.000023294500000,0.000025467500000,0.000023689500000,0.000077799000000,0.000038688000000,0.000102293000000,0.000073058000000,0.000041453000000,0.000097948000000,0.000142194000000,0.000136268000000,0.000284417000000 +0.000023097000000,0.000072085000000,0.000024084500000,0.000074638000000,0.000040664000000,0.000103083000000,0.000071479000000,0.000040268000000,0.000097947000000,0.000136269000000,0.000172614000000,0.000286787000000 +0.000023097000000,0.000075838000000,0.000023492500000,0.000079774000000,0.000040663000000,0.000103083000000,0.000076614000000,0.000041059000000,0.000097552000000,0.000142589000000,0.000136268000000,0.000284021000000 +0.000023097000000,0.000055492000000,0.000024085000000,0.000077799000000,0.000039083000000,0.000102688000000,0.000115725000000,0.000039478000000,0.000096762000000,0.000141009000000,0.000136663000000,0.000664070000000 +0.000023097500000,0.000027838000000,0.000024282000000,0.000070688000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000135083000000,0.000553848000000 +0.000023097500000,0.000033171500000,0.000023689500000,0.000106638000000,0.000040664000000,0.000245700000000,0.000073059000000,0.000058441000000,0.000097947000000,0.000136268000000,0.000136663000000,0.000555824000000 +0.000042060000000,0.000025862500000,0.000022899500000,0.000071083000000,0.000038688000000,0.000259528000000,0.000071083000000,0.000039478000000,0.000133898000000,0.000136268000000,0.000141404000000,0.000555033000000 +0.000039492000000,0.000025467500000,0.000023097000000,0.000071478000000,0.000041059000000,0.000120861000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000137059000000,0.000136269000000,0.000286392000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000077799000000,0.000041454000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097157000000,0.000137058000000,0.000171824000000,0.000554638000000 +0.000023097000000,0.000025270000000,0.000043047500000,0.000073849000000,0.000041453000000,0.000103083000000,0.000071478000000,0.000040664000000,0.000097552000000,0.000136663000000,0.000136664000000,0.000870292000000 +0.000023097000000,0.000025467500000,0.000038307000000,0.000077799000000,0.000040663000000,0.000103083000000,0.000077404000000,0.000041059000000,0.000097552000000,0.000140218000000,0.000141404000000,0.000556219000000 +0.000023097500000,0.000025862500000,0.000029813000000,0.000077799000000,0.000039478000000,0.000174589000000,0.000080170000000,0.000039478000000,0.000097157000000,0.000139824000000,0.000140614000000,0.000285206000000 +0.000023492500000,0.000034949000000,0.000024084500000,0.000070688000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000137453000000,0.000139824000000,0.000284416000000 +0.000024479500000,0.000025270000000,0.000024677500000,0.000070688000000,0.000037897000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000118095000000,0.000197898000000,0.000139824000000,0.000556613000000 +0.000023097000000,0.000025467500000,0.000023295000000,0.000070688000000,0.000077799000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000113749000000,0.000270590000000,0.000170639000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000023097000000,0.000071478000000,0.000104664000000,0.000103873000000,0.000088861000000,0.000041453000000,0.000133503000000,0.000157602000000,0.000136268000000,0.000286787000000 +0.000023295000000,0.000025270000000,0.000022899500000,0.000078590000000,0.000054095000000,0.000103083000000,0.000073453000000,0.000039478000000,0.000098342000000,0.000137059000000,0.000137058000000,0.000555033000000 +0.000023295000000,0.000025665000000,0.000023887500000,0.000200268000000,0.000053305000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000136268000000,0.000133502000000,0.000555824000000 +0.000023492000000,0.000025270000000,0.000023689500000,0.000237799000000,0.000041454000000,0.000103083000000,0.000077404000000,0.000042244000000,0.000097947000000,0.000133898000000,0.000136663000000,0.000553848000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000142589000000,0.000041454000000,0.000173799000000,0.000080169000000,0.000039479000000,0.000097552000000,0.000137058000000,0.000136268000000,0.000554639000000 +0.000023887000000,0.000025270000000,0.000024085000000,0.000085700000000,0.000037898000000,0.000103478000000,0.000071478000000,0.000041453000000,0.000097157000000,0.000133898000000,0.000171824000000,0.000556218000000 +0.000023294500000,0.000025467500000,0.000023690000000,0.000071083000000,0.000040268000000,0.000103083000000,0.000073059000000,0.000039083000000,0.000097947000000,0.000136269000000,0.000137059000000,0.000554638000000 +0.000023294500000,0.000025270000000,0.000024677000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000133503000000,0.000137059000000,0.000285997000000 +0.000023492500000,0.000025862500000,0.000024282500000,0.000071478000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000097157000000,0.000134293000000,0.000136663000000,0.000556218000000 +0.000058850000000,0.000025467500000,0.000023887500000,0.000114145000000,0.000038293000000,0.000102688000000,0.000073454000000,0.000039083000000,0.000132713000000,0.000141404000000,0.000136663000000,0.000285996000000 +0.000023689500000,0.000025467500000,0.000024874500000,0.000074243000000,0.000038688000000,0.000103478000000,0.000071083000000,0.000058836000000,0.000112565000000,0.000175379000000,0.000136663000000,0.000555429000000 +0.000023492000000,0.000025467500000,0.000022899500000,0.000078589000000,0.000039873000000,0.000103083000000,0.000112959000000,0.000039478000000,0.000098343000000,0.000135873000000,0.000221207000000,0.000553848000000 +0.000023097500000,0.000044825500000,0.000057862500000,0.000077404000000,0.000039083000000,0.000173404000000,0.000079774000000,0.000039478000000,0.000096762000000,0.000139823000000,0.000138243000000,0.000556219000000 +0.000023295000000,0.000039492000000,0.000030010500000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071479000000,0.000039478000000,0.000096367000000,0.000136268000000,0.000139428000000,0.000285996000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000070688000000,0.000039874000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000141009000000,0.000139428000000,0.000287181000000 +0.000023097000000,0.000025665000000,0.000023294500000,0.000071083000000,0.000039873000000,0.000103083000000,0.000071083000000,0.000040664000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000353947000000 +0.000023294500000,0.000025270000000,0.000023887000000,0.000071478000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097553000000,0.000193552000000,0.000145749000000,0.000554243000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000077799000000,0.000058441000000,0.000103083000000,0.000073453000000,0.000039084000000,0.000097157000000,0.000136268000000,0.000136663000000,0.000592169000000 +0.000023097000000,0.000028628000000,0.000023887500000,0.000074639000000,0.000073058000000,0.000102293000000,0.000071083000000,0.000040663000000,0.000134293000000,0.000137058000000,0.000136663000000,0.000560960000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000077799000000,0.000050540000000,0.000103083000000,0.000077009000000,0.000039478000000,0.000098738000000,0.000136663000000,0.000136663000000,0.000553848000000 +0.000023294500000,0.000035739000000,0.000023887000000,0.000096762000000,0.000039083000000,0.000122441000000,0.000078589000000,0.000039083000000,0.000098343000000,0.000134292000000,0.000137058000000,0.000557009000000 +0.000023097000000,0.000077023000000,0.000024677500000,0.000086490000000,0.000041454000000,0.000139429000000,0.000071478000000,0.000039084000000,0.000098342000000,0.000136268000000,0.000140614000000,0.000284811000000 +0.000023097000000,0.000041270000000,0.000024282000000,0.000071083000000,0.000038293000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000173404000000,0.000138243000000,0.000673551000000 +0.000023887500000,0.000025665000000,0.000024084500000,0.000071083000000,0.000041059000000,0.000102688000000,0.000112169000000,0.000039083000000,0.000098342000000,0.000140219000000,0.000136663000000,0.000301009000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000071083000000,0.000037898000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000136269000000,0.000172613000000,0.000284021000000 +0.000023294500000,0.000050554000000,0.000024085000000,0.000077404000000,0.000040268000000,0.000103083000000,0.000073059000000,0.000039873000000,0.000097157000000,0.000135083000000,0.000137453000000,0.000554243000000 +0.000023294500000,0.000025665000000,0.000024677000000,0.000075428000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000096762000000,0.000135478000000,0.000135873000000,0.000555033000000 +0.000068924000000,0.000025665000000,0.000023690000000,0.000078194000000,0.000039873000000,0.000122441000000,0.000077799000000,0.000039083000000,0.000097157000000,0.000136663000000,0.000136664000000,0.000556218000000 +0.000024677500000,0.000025467500000,0.000023690000000,0.000096367000000,0.000038293000000,0.000188021000000,0.000078984000000,0.000039478000000,0.000219626000000,0.000139429000000,0.000139429000000,0.000556219000000 +0.000031196000000,0.000025665000000,0.000051541500000,0.000088861000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000058046000000,0.000121256000000,0.000144170000000,0.000136664000000,0.000285602000000 +0.000023294500000,0.000025467000000,0.000024282000000,0.000071083000000,0.000040268000000,0.000103083000000,0.000073059000000,0.000056465000000,0.000112170000000,0.000138639000000,0.000175379000000,0.000284811000000 +0.000023294500000,0.000025665000000,0.000023492500000,0.000104268000000,0.000040664000000,0.000103873000000,0.000071478000000,0.000040268000000,0.000097553000000,0.000133108000000,0.000134688000000,0.000285207000000 +0.000023887000000,0.000025862500000,0.000032578500000,0.000087281000000,0.000041453000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136664000000,0.000139034000000,0.000286391000000 +0.000023097500000,0.000025270000000,0.000032183500000,0.000077799000000,0.000040268000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000096762000000,0.000138244000000,0.000141009000000,0.000554243000000 +0.000023295000000,0.000025665000000,0.000031393500000,0.000074244000000,0.000037503000000,0.000102688000000,0.000071478000000,0.000040269000000,0.000097552000000,0.000136663000000,0.000137058000000,0.000323527000000 +0.000022900000000,0.000025467500000,0.000023097000000,0.000080170000000,0.000041059000000,0.000103083000000,0.000104268000000,0.000039478000000,0.000097552000000,0.000174194000000,0.000134688000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000022899500000,0.000077799000000,0.000081750000000,0.000103083000000,0.000080170000000,0.000039083000000,0.000169453000000,0.000136268000000,0.000178540000000,0.000683823000000 +0.000023492000000,0.000025270000000,0.000023887000000,0.000070688000000,0.000128367000000,0.000154837000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000137849000000,0.000209354000000,0.000554639000000 +0.000023097000000,0.000025270000000,0.000024282000000,0.000070688000000,0.000105848000000,0.000103083000000,0.000073058000000,0.000041059000000,0.000097552000000,0.000176170000000,0.000149305000000,0.000555823000000 +0.000023097000000,0.000025665000000,0.000024480000000,0.000071084000000,0.000122441000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000150095000000,0.000141404000000,0.000556218000000 +0.000023097000000,0.000051146500000,0.000024084500000,0.000071083000000,0.000088465000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000137058000000,0.000136663000000,0.000284812000000 +0.000023689500000,0.000032579000000,0.000024084500000,0.000077799000000,0.000088466000000,0.000103083000000,0.000073453000000,0.000039083000000,0.000097157000000,0.000137453000000,0.000136268000000,0.000554243000000 +0.000023295000000,0.000026060000000,0.000023690000000,0.000073849000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000041453000000,0.000096762000000,0.000135873000000,0.000208170000000,0.000591379000000 +0.000033171500000,0.000025467500000,0.000024282000000,0.000159577000000,0.000041848000000,0.000103083000000,0.000077009000000,0.000039478000000,0.000097157000000,0.000135873000000,0.000136664000000,0.000572811000000 +0.000023295000000,0.000025665000000,0.000024084500000,0.000077404000000,0.000054095000000,0.000103083000000,0.000079379000000,0.000040663000000,0.000097157000000,0.000141799000000,0.000133108000000,0.000285206000000 +0.000022900000000,0.000026652500000,0.000024677500000,0.000071083000000,0.000037503000000,0.000208564000000,0.000071478000000,0.000039479000000,0.000168268000000,0.000136268000000,0.000136663000000,0.000553453000000 +0.000023295000000,0.000025467500000,0.000031985500000,0.000071083000000,0.000039873000000,0.000102688000000,0.000108614000000,0.000041058000000,0.000098342000000,0.000137848000000,0.000135083000000,0.000555033000000 +0.000023689500000,0.000028233000000,0.000024677500000,0.000070688000000,0.000058441000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000097552000000,0.000142984000000,0.000135873000000,0.000591774000000 +0.000023887000000,0.000025467500000,0.000024677000000,0.000071083000000,0.000040269000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097553000000,0.000173404000000,0.000173404000000,0.000284812000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000077404000000,0.000037898000000,0.000103083000000,0.000073454000000,0.000058836000000,0.000096762000000,0.000138639000000,0.000134688000000,0.000285601000000 +0.000023492500000,0.000025665000000,0.000023492000000,0.000073849000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000052516000000,0.000097948000000,0.000136268000000,0.000137848000000,0.000284416000000 +0.000022900000000,0.000025270000000,0.000023887000000,0.000078589000000,0.000041059000000,0.000103083000000,0.000076614000000,0.000039478000000,0.000097947000000,0.000134293000000,0.000138638000000,0.000589009000000 +0.000023097500000,0.000028825500000,0.000024677500000,0.000077404000000,0.000041058000000,0.000102688000000,0.000079775000000,0.000039084000000,0.000137058000000,0.000137849000000,0.000133503000000,0.000555824000000 +0.000023492500000,0.000025467500000,0.000024084500000,0.000070688000000,0.000039478000000,0.000173799000000,0.000071083000000,0.000039478000000,0.000169848000000,0.000136268000000,0.000137453000000,0.000555033000000 +0.000023887000000,0.000044035000000,0.000023492000000,0.000106639000000,0.000041849000000,0.000103083000000,0.000073059000000,0.000039083000000,0.000098343000000,0.000141799000000,0.000192762000000,0.000556614000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000071083000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000139824000000,0.000150490000000,0.000285207000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000071478000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000040268000000,0.000097947000000,0.000136268000000,0.000133898000000,0.000605601000000 +0.000023294500000,0.000025270000000,0.000023689500000,0.000078194000000,0.000038293000000,0.000103083000000,0.000073454000000,0.000040268000000,0.000098342000000,0.000136268000000,0.000139823000000,0.000553848000000 +0.000023492500000,0.000025467500000,0.000024677500000,0.000075033000000,0.000041058000000,0.000102688000000,0.000141009000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000555428000000 +0.000023097000000,0.000025665000000,0.000024479500000,0.000078984000000,0.000038688000000,0.000103083000000,0.000076614000000,0.000041058000000,0.000097552000000,0.000135478000000,0.000136268000000,0.000285207000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000077404000000,0.000038688000000,0.000103083000000,0.000080170000000,0.000039479000000,0.000097552000000,0.000138244000000,0.000171824000000,0.000284811000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000071083000000,0.000039083000000,0.000185651000000,0.000071083000000,0.000040663000000,0.000097552000000,0.000136268000000,0.000139429000000,0.000555824000000 +0.000070702000000,0.000025270000000,0.000024084500000,0.000070688000000,0.000039479000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000116910000000,0.000136269000000,0.000136663000000,0.000555033000000 +0.000067344000000,0.000025269500000,0.000024085000000,0.000070688000000,0.000037503000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000130342000000,0.000135873000000,0.000136664000000,0.000285601000000 +0.000077220500000,0.000025270000000,0.000050356500000,0.000071083000000,0.000041058000000,0.000103478000000,0.000071478000000,0.000040663000000,0.000097553000000,0.000135873000000,0.000136663000000,0.000555034000000 +0.000040875000000,0.000025467500000,0.000024282000000,0.000098342000000,0.000039478000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097948000000,0.000135873000000,0.000135873000000,0.000556218000000 +0.000025270000000,0.000025467500000,0.000023492000000,0.000090441000000,0.000039083000000,0.000103084000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000136269000000,0.000554243000000 +0.000024282000000,0.000025467500000,0.000024085000000,0.000078194000000,0.000038688000000,0.000102688000000,0.000077404000000,0.000039083000000,0.000097157000000,0.000143379000000,0.000179330000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000023887500000,0.000077404000000,0.000055281000000,0.000103083000000,0.000079775000000,0.000039083000000,0.000097552000000,0.000133502000000,0.000136268000000,0.000555824000000 +0.000023097500000,0.000025270000000,0.000024479500000,0.000071083000000,0.000037898000000,0.000157601000000,0.000107824000000,0.000073058000000,0.000097947000000,0.000138243000000,0.000135083000000,0.000555033000000 +0.000023097500000,0.000055689500000,0.000024677500000,0.000071083000000,0.000041454000000,0.000116120000000,0.000072664000000,0.000043429000000,0.000097552000000,0.000136268000000,0.000137848000000,0.000338934000000 +0.000023097000000,0.000025467500000,0.000023689500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000117305000000,0.000136268000000,0.000142589000000,0.000554638000000 +0.000023294500000,0.000025270000000,0.000024282000000,0.000071478000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000039874000000,0.000140614000000,0.000135873000000,0.000136268000000,0.000285997000000 +0.000023097000000,0.000025862500000,0.000025270000000,0.000078589000000,0.000041058000000,0.000103084000000,0.000073454000000,0.000039873000000,0.000113355000000,0.000155231000000,0.000218836000000,0.000556218000000 +0.000037121500000,0.000025270000000,0.000024479500000,0.000075429000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000098738000000,0.000140219000000,0.000140219000000,0.000555428000000 +0.000023492500000,0.000025270000000,0.000024875000000,0.000078984000000,0.000039478000000,0.000103479000000,0.000077799000000,0.000041058000000,0.000097552000000,0.000141009000000,0.000138244000000,0.000570441000000 +0.000023887500000,0.000025467500000,0.000024677000000,0.000097157000000,0.000038688000000,0.000102688000000,0.000079379000000,0.000039478000000,0.000098342000000,0.000135083000000,0.000133503000000,0.000285601000000 +0.000023097000000,0.000025467500000,0.000023492000000,0.000070688000000,0.000040663000000,0.000122046000000,0.000071083000000,0.000039478000000,0.000152466000000,0.000135873000000,0.000133898000000,0.000411626000000 +0.000023097000000,0.000025665000000,0.000023887500000,0.000070688000000,0.000041059000000,0.000136268000000,0.000073059000000,0.000039083000000,0.000097947000000,0.000139429000000,0.000138243000000,0.000284811000000 +0.000023294500000,0.000025862500000,0.000023295000000,0.000070688000000,0.000038293000000,0.000102293000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000139429000000,0.000176169000000,0.000555429000000 +0.000023097000000,0.000025665000000,0.000024084500000,0.000071478000000,0.000037503000000,0.000103083000000,0.000089651000000,0.000041454000000,0.000097552000000,0.000135874000000,0.000139823000000,0.000553848000000 +0.000023294500000,0.000025467500000,0.000041862500000,0.000078589000000,0.000039874000000,0.000103083000000,0.000124812000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000144169000000,0.000630885000000 +0.000023097000000,0.000025665000000,0.000024677000000,0.000074243000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000137453000000,0.000139823000000,0.000554243000000 +0.000023097500000,0.000025270000000,0.000023887500000,0.000079774000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000039479000000,0.000097948000000,0.000136663000000,0.000136663000000,0.000557404000000 +0.000023097500000,0.000025467500000,0.000023492500000,0.000077799000000,0.000039083000000,0.000102688000000,0.000079774000000,0.000039478000000,0.000097552000000,0.000136664000000,0.000137453000000,0.000284811000000 +0.000023294500000,0.000042653000000,0.000023887000000,0.000070688000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000040269000000,0.000097552000000,0.000135873000000,0.000172613000000,0.000591774000000 +0.000023492000000,0.000033566500000,0.000023887000000,0.000070688000000,0.000039083000000,0.000184860000000,0.000072664000000,0.000039478000000,0.000152070000000,0.000182095000000,0.000133108000000,0.000284811000000 +0.000023887000000,0.000025862500000,0.000022899500000,0.000070688000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000039479000000,0.000097552000000,0.000418737000000,0.000135873000000,0.000284812000000 +0.000023294500000,0.000026455000000,0.000023887000000,0.000134688000000,0.000067922000000,0.000142590000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000174589000000,0.000136268000000,0.000554638000000 +0.000023295000000,0.000025665000000,0.000024480000000,0.000092021000000,0.000039084000000,0.000155626000000,0.000073059000000,0.000093997000000,0.000097947000000,0.000135478000000,0.000136269000000,0.000617058000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000073453000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000052515000000,0.000097947000000,0.000139429000000,0.000136268000000,0.000698045000000 +0.000023294500000,0.000025862500000,0.000024085000000,0.000080169000000,0.000039478000000,0.000102688000000,0.000077404000000,0.000041058000000,0.000096762000000,0.000136664000000,0.000132317000000,0.000555824000000 +0.000041467500000,0.000025467000000,0.000023295000000,0.000077799000000,0.000037898000000,0.000103478000000,0.000125997000000,0.000039478000000,0.000098342000000,0.000138244000000,0.000232268000000,0.000284811000000 +0.000023887500000,0.000025467500000,0.000024875000000,0.000070688000000,0.000040664000000,0.000174589000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000135478000000,0.000136268000000,0.000285996000000 +0.000023097000000,0.000025269500000,0.000024084500000,0.000071083000000,0.000037503000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000134688000000,0.000284812000000 +0.000023097000000,0.000025270000000,0.000023690000000,0.000070688000000,0.000052120000000,0.000103874000000,0.000071478000000,0.000039478000000,0.000132318000000,0.000136663000000,0.000139824000000,0.000284811000000 +0.000023294500000,0.000029220500000,0.000024282500000,0.000071478000000,0.000043428000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000112564000000,0.000137454000000,0.000140219000000,0.000555824000000 +0.000023097000000,0.000025270000000,0.000024084500000,0.000079380000000,0.000043033000000,0.000102688000000,0.000073453000000,0.000041058000000,0.000097157000000,0.000141404000000,0.000176170000000,0.000285602000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000073849000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000098738000000,0.000136663000000,0.000140219000000,0.000555428000000 +0.000023097000000,0.000025270000000,0.000040875000000,0.000146935000000,0.000041453000000,0.000103873000000,0.000095577000000,0.000039478000000,0.000096762000000,0.000138639000000,0.000137058000000,0.000628515000000 +0.000023097000000,0.000025270000000,0.000031788500000,0.000091627000000,0.000041454000000,0.000103478000000,0.000079775000000,0.000040663000000,0.000097552000000,0.000134688000000,0.000137059000000,0.000556614000000 +0.000024085000000,0.000061615500000,0.000023295000000,0.000071478000000,0.000043429000000,0.000137453000000,0.000071083000000,0.000041454000000,0.000097552000000,0.000136663000000,0.000143379000000,0.000554243000000 +0.000023294500000,0.000025467000000,0.000024084500000,0.000071083000000,0.000043429000000,0.000293107000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000133108000000,0.000137848000000,0.000556218000000 +0.000023492000000,0.000025862500000,0.000023689500000,0.000071083000000,0.000040663000000,0.000195922000000,0.000088860000000,0.000039478000000,0.000097947000000,0.000137453000000,0.000136663000000,0.000284416000000 +0.000023097000000,0.000026060000000,0.000023294500000,0.000071083000000,0.000043429000000,0.000121651000000,0.000071083000000,0.000040663000000,0.000116515000000,0.000137453000000,0.000152861000000,0.000555823000000 +0.000023294500000,0.000025665000000,0.000023492000000,0.000077404000000,0.000041453000000,0.000102688000000,0.000073454000000,0.000039083000000,0.000149700000000,0.000136663000000,0.000136663000000,0.000554639000000 +0.000023097000000,0.000026850000000,0.000023690000000,0.000073848000000,0.000041849000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000097157000000,0.000136269000000,0.000135083000000,0.000592169000000 +0.000023690000000,0.000025270000000,0.000024677500000,0.000078589000000,0.000077009000000,0.000139429000000,0.000076614000000,0.000039478000000,0.000096367000000,0.000136268000000,0.000136268000000,0.000284021000000 +0.000023097500000,0.000027048000000,0.000023492000000,0.000077800000000,0.000043428000000,0.000102688000000,0.000079775000000,0.000075824000000,0.000098342000000,0.000135873000000,0.000140614000000,0.000556218000000 +0.000022899500000,0.000025467500000,0.000024677500000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097552000000,0.000141404000000,0.000136663000000,0.000553453000000 +0.000033368500000,0.000025270000000,0.000023295000000,0.000112960000000,0.000041848000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000270194000000,0.000555823000000 +0.000023492500000,0.000025665000000,0.000024084500000,0.000070688000000,0.000041848000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000354738000000,0.000284812000000 +0.000023097000000,0.000025270000000,0.000024084500000,0.000071478000000,0.000041849000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000098343000000,0.000133503000000,0.000171428000000,0.000285601000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000078194000000,0.000042639000000,0.000102688000000,0.000073454000000,0.000041058000000,0.000117701000000,0.000141404000000,0.000136268000000,0.000291132000000 +0.000023294500000,0.000025269500000,0.000024084500000,0.000074244000000,0.000041059000000,0.000103873000000,0.000104268000000,0.000039873000000,0.000278490000000,0.000136268000000,0.000200663000000,0.000553848000000 +0.000023887000000,0.000025270000000,0.000023294500000,0.000078195000000,0.000043429000000,0.000103083000000,0.000077009000000,0.000041058000000,0.000286391000000,0.000142589000000,0.000136269000000,0.000638392000000 +0.000023097000000,0.000043443000000,0.000024084500000,0.000077404000000,0.000041454000000,0.000139034000000,0.000079380000000,0.000039083000000,0.000184071000000,0.000141799000000,0.000136268000000,0.000554243000000 +0.000023295000000,0.000025269500000,0.000040875000000,0.000070688000000,0.000041849000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000134293000000,0.000137058000000,0.000135083000000,0.000556614000000 +0.000023295000000,0.000029023000000,0.000031986000000,0.000070688000000,0.000042639000000,0.000102688000000,0.000073058000000,0.000041059000000,0.000128367000000,0.000135873000000,0.000136664000000,0.000284811000000 +0.000022899500000,0.000025862500000,0.000024282000000,0.000070687000000,0.000041059000000,0.000103873000000,0.000071083000000,0.000039083000000,0.000097553000000,0.000136664000000,0.000141404000000,0.000555823000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000071478000000,0.000043034000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000199083000000,0.000553848000000 +0.000023097000000,0.000025270000000,0.000024480000000,0.000078985000000,0.000041059000000,0.000103083000000,0.000073453000000,0.000039873000000,0.000097552000000,0.000172219000000,0.000136663000000,0.000591379000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000109799000000,0.000044219000000,0.000103873000000,0.000071083000000,0.000041059000000,0.000097552000000,0.000151676000000,0.000136268000000,0.000285206000000 +0.000023294500000,0.000025269500000,0.000024480000000,0.000079774000000,0.000043429000000,0.000103478000000,0.000076614000000,0.000041058000000,0.000097947000000,0.000139824000000,0.000141009000000,0.000396218000000 +0.000023294500000,0.000025862500000,0.000023492500000,0.000077404000000,0.000040664000000,0.000149306000000,0.000078985000000,0.000039478000000,0.000097552000000,0.000139824000000,0.000140614000000,0.000571625000000 +0.000023887500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000043824000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000096762000000,0.000137848000000,0.000139824000000,0.000589403000000 +0.000023295000000,0.000025072500000,0.000023492000000,0.000071083000000,0.000041849000000,0.000103083000000,0.000108614000000,0.000039478000000,0.000097157000000,0.000135873000000,0.000204219000000,0.000299823000000 +0.000023097000000,0.000025270000000,0.000024480000000,0.000071083000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000133898000000,0.000133503000000,0.000134688000000,0.000556218000000 +0.000023097000000,0.000025862500000,0.000023690000000,0.000071478000000,0.000041059000000,0.000102688000000,0.000071478000000,0.000082539000000,0.000098738000000,0.000140219000000,0.000136268000000,0.000554639000000 +0.000041270000000,0.000025467500000,0.000024084500000,0.000079380000000,0.000040268000000,0.000103873000000,0.000073059000000,0.000039873000000,0.000097157000000,0.000137848000000,0.000137058000000,0.000555428000000 +0.000023492500000,0.000025665000000,0.000024084500000,0.000074244000000,0.000039873000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000098342000000,0.000136268000000,0.000133107000000,0.000552663000000 +0.000023097000000,0.000025467000000,0.000023492000000,0.000077404000000,0.000043824000000,0.000103083000000,0.000076614000000,0.000041849000000,0.000097552000000,0.000133108000000,0.000136663000000,0.000556218000000 +0.000023294500000,0.000050751500000,0.000023887500000,0.000077799000000,0.000043429000000,0.000102688000000,0.000078984000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000188417000000,0.000556614000000 +0.000023294500000,0.000032184000000,0.000024479500000,0.000141799000000,0.000041058000000,0.000139824000000,0.000071478000000,0.000041454000000,0.000097947000000,0.000133898000000,0.000135873000000,0.000285997000000 +0.000023097000000,0.000025665000000,0.000023492000000,0.000070688000000,0.000042639000000,0.000141404000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000051146500000,0.000070688000000,0.000043429000000,0.000115725000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000134293000000,0.000137453000000,0.000287577000000 +0.000023294500000,0.000025270000000,0.000076825500000,0.000071083000000,0.000041848000000,0.000103083000000,0.000071479000000,0.000041059000000,0.000098343000000,0.000134293000000,0.000136663000000,0.000553453000000 +0.000024085000000,0.000025467000000,0.000067936500000,0.000077404000000,0.000039874000000,0.000102688000000,0.000073453000000,0.000039873000000,0.000133107000000,0.000141404000000,0.000136664000000,0.000555428000000 +0.000023097000000,0.000025467500000,0.000075442500000,0.000074638000000,0.000043429000000,0.000102688000000,0.000088071000000,0.000042639000000,0.000097552000000,0.000137848000000,0.000207379000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000057862500000,0.000078984000000,0.000042639000000,0.000102688000000,0.000077404000000,0.000039083000000,0.000097552000000,0.000135873000000,0.000141009000000,0.000287576000000 +0.000023294500000,0.000025665000000,0.000033763500000,0.000077799000000,0.000043429000000,0.000102688000000,0.000079774000000,0.000039083000000,0.000097552000000,0.000139824000000,0.000137849000000,0.000285206000000 +0.000023294500000,0.000025467000000,0.000026060000000,0.000071083000000,0.000041454000000,0.000152070000000,0.000071084000000,0.000039083000000,0.000096367000000,0.000136664000000,0.000139429000000,0.000284812000000 +0.000023097000000,0.000028233000000,0.000026060000000,0.000070688000000,0.000041454000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000097947000000,0.000142194000000,0.000139429000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000030998500000,0.000071083000000,0.000042244000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098343000000,0.000136663000000,0.000136664000000,0.000553453000000 +0.000023690000000,0.000034554000000,0.000024085000000,0.000104663000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097553000000,0.000136664000000,0.000227132000000,0.000643527000000 +0.000023097500000,0.000027640500000,0.000034949000000,0.000077009000000,0.000041059000000,0.000102688000000,0.000073453000000,0.000039478000000,0.000097158000000,0.000136268000000,0.000136663000000,0.000555823000000 +0.000023294500000,0.000066356500000,0.000024677500000,0.000074243000000,0.000044219000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000133503000000,0.000137058000000,0.000136663000000,0.000554638000000 +0.000040084500000,0.000028825500000,0.000022899500000,0.000079379000000,0.000041849000000,0.000103083000000,0.000077009000000,0.000057651000000,0.000097157000000,0.000136663000000,0.000136269000000,0.000286392000000 +0.000024677500000,0.000025270000000,0.000023887000000,0.000077799000000,0.000043429000000,0.000103083000000,0.000079379000000,0.000055676000000,0.000097552000000,0.000154836000000,0.000137058000000,0.000554243000000 +0.000023294500000,0.000025270000000,0.000023294500000,0.000070688000000,0.000043824000000,0.000138639000000,0.000125996000000,0.000039083000000,0.000098343000000,0.000136268000000,0.000141009000000,0.000285207000000 +0.000023492000000,0.000025862500000,0.000024085000000,0.000070688000000,0.000042638000000,0.000103083000000,0.000072663000000,0.000039479000000,0.000096762000000,0.000136268000000,0.000219626000000,0.000286391000000 +0.000023294500000,0.000025467000000,0.000024085000000,0.000070688000000,0.000043428000000,0.000103478000000,0.000071478000000,0.000039083000000,0.000097948000000,0.000140219000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024677000000,0.000071478000000,0.000041848000000,0.000103478000000,0.000071479000000,0.000041849000000,0.000097553000000,0.000135873000000,0.000136268000000,0.000592169000000 +0.000023295000000,0.000025665000000,0.000023690000000,0.000078194000000,0.000042638000000,0.000103873000000,0.000073058000000,0.000055281000000,0.000097552000000,0.000135083000000,0.000137454000000,0.000609947000000 +0.000023295000000,0.000025467500000,0.000023492500000,0.000073848000000,0.000042638000000,0.000104269000000,0.000071083000000,0.000053701000000,0.000097552000000,0.000135479000000,0.000135873000000,0.000603231000000 +0.000023097000000,0.000025665000000,0.000024282500000,0.000078194000000,0.000041058000000,0.000102688000000,0.000076614000000,0.000039873000000,0.000149700000000,0.000137453000000,0.000136663000000,0.000284416000000 +0.000023097000000,0.000025467500000,0.000023294500000,0.000113355000000,0.000040269000000,0.000102688000000,0.000079774000000,0.000039479000000,0.000114935000000,0.000139824000000,0.000225552000000,0.000325502000000 +0.000023689500000,0.000025270000000,0.000023294500000,0.000070688000000,0.000043824000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000138244000000,0.000136663000000,0.000302194000000 +0.000023097000000,0.000025467500000,0.000023294500000,0.000070688000000,0.000042244000000,0.000138639000000,0.000072664000000,0.000039083000000,0.000097552000000,0.000138639000000,0.000139824000000,0.000302589000000 +0.000023294500000,0.000025665000000,0.000023294500000,0.000070687000000,0.000043429000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000133108000000,0.000134292000000,0.000574391000000 +0.000023690000000,0.000025467500000,0.000023887000000,0.000071083000000,0.000043429000000,0.000103083000000,0.000090441000000,0.000038688000000,0.000097157000000,0.000136664000000,0.000139034000000,0.000286787000000 +0.000023887500000,0.000060430500000,0.000023295000000,0.000078194000000,0.000041058000000,0.000102688000000,0.000124417000000,0.000039083000000,0.000097947000000,0.000139034000000,0.000141009000000,0.000555428000000 +0.000023294500000,0.000032973500000,0.000023492500000,0.000073849000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000040268000000,0.000098737000000,0.000136663000000,0.000189207000000,0.000554243000000 +0.000023689500000,0.000025269500000,0.000041467500000,0.000078984000000,0.000040663000000,0.000103479000000,0.000077404000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000134688000000,0.000556218000000 +0.000023294500000,0.000025862500000,0.000024085000000,0.000077799000000,0.000041058000000,0.000103083000000,0.000078984000000,0.000039083000000,0.000133898000000,0.000136663000000,0.000140219000000,0.000554243000000 +0.000033171500000,0.000025665000000,0.000024875000000,0.000070688000000,0.000041848000000,0.000103478000000,0.000071083000000,0.000041059000000,0.000098342000000,0.000138244000000,0.000136663000000,0.000684613000000 +0.000054504500000,0.000025270000000,0.000023689500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000072664000000,0.000041454000000,0.000097552000000,0.000139824000000,0.000136663000000,0.000284811000000 +0.000023097500000,0.000025467500000,0.000024085000000,0.000090837000000,0.000041849000000,0.000103083000000,0.000071478000000,0.000056861000000,0.000096762000000,0.000136664000000,0.000141403000000,0.000591379000000 +0.000023295000000,0.000025467500000,0.000024085000000,0.000071083000000,0.000040664000000,0.000103873000000,0.000071478000000,0.000040268000000,0.000097552000000,0.000137454000000,0.000207774000000,0.000592960000000 +0.000023097000000,0.000025269500000,0.000024084500000,0.000079379000000,0.000043429000000,0.000103873000000,0.000073454000000,0.000039083000000,0.000098343000000,0.000136663000000,0.000136663000000,0.000554638000000 +0.000023689500000,0.000025467500000,0.000024282500000,0.000073848000000,0.000041454000000,0.000103873000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000136268000000,0.000180911000000,0.000284417000000 +0.000023492000000,0.000025467000000,0.000023887500000,0.000078194000000,0.000040268000000,0.000103083000000,0.000077009000000,0.000039083000000,0.000097947000000,0.000135873000000,0.000136664000000,0.000590194000000 +0.000023887500000,0.000025270000000,0.000023492000000,0.000077404000000,0.000043428000000,0.000102688000000,0.000187626000000,0.000040664000000,0.000096762000000,0.000141799000000,0.000132713000000,0.000593354000000 +0.000023295000000,0.000025467500000,0.000023294500000,0.000070688000000,0.000041848000000,0.000103083000000,0.000161157000000,0.000039478000000,0.000098342000000,0.000136269000000,0.000155231000000,0.000552268000000 +0.000023887000000,0.000025467500000,0.000024875000000,0.000070688000000,0.000041453000000,0.000102293000000,0.000197898000000,0.000041059000000,0.000133898000000,0.000138639000000,0.000167478000000,0.000609157000000 +0.000024084500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000042243000000,0.000139034000000,0.000210935000000,0.000041058000000,0.000097157000000,0.000143379000000,0.000136268000000,0.000553058000000 +0.000023690000000,0.000043442500000,0.000024084500000,0.000071084000000,0.000042243000000,0.000103084000000,0.000179330000000,0.000039478000000,0.000098342000000,0.000138243000000,0.000137454000000,0.000590589000000 +0.000023295000000,0.000025467500000,0.000024085000000,0.000078194000000,0.000040663000000,0.000103083000000,0.000091231000000,0.000039478000000,0.000098342000000,0.000138638000000,0.000135083000000,0.000590589000000 +0.000023492000000,0.000025269500000,0.000023492500000,0.000073848000000,0.000040664000000,0.000102688000000,0.000075429000000,0.000039083000000,0.000098342000000,0.000136663000000,0.000137848000000,0.000553058000000 +0.000023097000000,0.000025862500000,0.000023689500000,0.000177354000000,0.000043824000000,0.000103083000000,0.000091231000000,0.000039478000000,0.000097552000000,0.000133898000000,0.000138244000000,0.000637601000000 +0.000023294500000,0.000025665000000,0.000024282000000,0.000133108000000,0.000043429000000,0.000103084000000,0.000079775000000,0.000039478000000,0.000097552000000,0.000138243000000,0.000185256000000,0.000569256000000 +0.000023887000000,0.000025467500000,0.000041270000000,0.000077799000000,0.000041454000000,0.000103873000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000137058000000,0.000137848000000,0.000594144000000 +0.000023097000000,0.000025467500000,0.000023492000000,0.000087280000000,0.000040268000000,0.000103083000000,0.000073058000000,0.000039083000000,0.000097553000000,0.000141009000000,0.000138243000000,0.000574391000000 +0.000041072500000,0.000025467500000,0.000024677500000,0.000071083000000,0.000039873000000,0.000121651000000,0.000071478000000,0.000039083000000,0.000133898000000,0.000139823000000,0.000136268000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000023887500000,0.000071478000000,0.000043033000000,0.000165502000000,0.000071478000000,0.000039874000000,0.000097552000000,0.000136663000000,0.000133898000000,0.000860811000000 +0.000023492000000,0.000025467500000,0.000024282000000,0.000077404000000,0.000040663000000,0.000102688000000,0.000073453000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000139823000000,0.000337750000000 +0.000023887500000,0.000029023000000,0.000024084500000,0.000074639000000,0.000043429000000,0.000102688000000,0.000071084000000,0.000058046000000,0.000097552000000,0.000135873000000,0.000206589000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000024480000000,0.000078590000000,0.000039873000000,0.000103083000000,0.000095182000000,0.000057256000000,0.000097157000000,0.000141799000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025270000000,0.000023294500000,0.000077799000000,0.000040268000000,0.000102688000000,0.000374885000000,0.000039873000000,0.000097948000000,0.000136663000000,0.000136268000000,0.000554243000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000106638000000,0.000041453000000,0.000103083000000,0.000075823000000,0.000041058000000,0.000097553000000,0.000136664000000,0.000139429000000,0.000556614000000 +0.000023492000000,0.000025862500000,0.000024085000000,0.000070688000000,0.000041453000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000097158000000,0.000136268000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000023690000000,0.000070688000000,0.000039874000000,0.000103083000000,0.000089256000000,0.000039478000000,0.000097158000000,0.000135873000000,0.000136663000000,0.000557798000000 +0.000023295000000,0.000078998000000,0.000024480000000,0.000071083000000,0.000043824000000,0.000139034000000,0.000088466000000,0.000040664000000,0.000150096000000,0.000135874000000,0.000284417000000,0.000552267000000 +0.000023097500000,0.000077418000000,0.000023294500000,0.000078194000000,0.000043824000000,0.000103478000000,0.000073453000000,0.000039478000000,0.000098738000000,0.000136268000000,0.000136268000000,0.000554243000000 +0.000023294500000,0.000077418000000,0.000023294500000,0.000075034000000,0.000042244000000,0.000104268000000,0.000071083000000,0.000039084000000,0.000097157000000,0.000137453000000,0.000136268000000,0.000555033000000 +0.000023097000000,0.000049961500000,0.000023294500000,0.000079774000000,0.000041454000000,0.000103083000000,0.000112170000000,0.000039083000000,0.000097552000000,0.000138243000000,0.000137453000000,0.000557403000000 +0.000023097000000,0.000034159000000,0.000023887000000,0.000077799000000,0.000043429000000,0.000103083000000,0.000091626000000,0.000040269000000,0.000097157000000,0.000133897000000,0.000136663000000,0.000554638000000 +0.000023689500000,0.000033171000000,0.000024085000000,0.000071083000000,0.000041059000000,0.000103874000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000138638000000,0.000174195000000,0.000555034000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000070688000000,0.000044219000000,0.000104268000000,0.000073059000000,0.000041059000000,0.000097552000000,0.000136663000000,0.000211725000000,0.000556218000000 +0.000023294500000,0.000025467500000,0.000042060000000,0.000070688000000,0.000040664000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000135873000000,0.000159972000000,0.000286391000000 +0.000023097500000,0.000043640000000,0.000024282000000,0.000103873000000,0.000043824000000,0.000159182000000,0.000071478000000,0.000039874000000,0.000097552000000,0.000136664000000,0.000136268000000,0.000553058000000 +0.000023097500000,0.000025270000000,0.000024677500000,0.000078195000000,0.000040268000000,0.000117700000000,0.000073454000000,0.000039083000000,0.000134293000000,0.000133898000000,0.000135873000000,0.000561749000000 +0.000031590500000,0.000025270000000,0.000024084500000,0.000074244000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000129552000000,0.000140219000000,0.000139824000000,0.000590984000000 +0.000023295000000,0.000025467500000,0.000022899500000,0.000077799000000,0.000039873000000,0.000103873000000,0.000076614000000,0.000041453000000,0.000097552000000,0.000140614000000,0.000210935000000,0.000610737000000 +0.000023887500000,0.000025467500000,0.000023492000000,0.000077404000000,0.000040664000000,0.000102688000000,0.000079774000000,0.000039478000000,0.000097552000000,0.000135083000000,0.000132712000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000023294500000,0.000070688000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000040664000000,0.000097552000000,0.000135873000000,0.000133898000000,0.000552663000000 +0.000023097000000,0.000025467500000,0.000024282500000,0.000070688000000,0.000043429000000,0.000103083000000,0.000092417000000,0.000058836000000,0.000098738000000,0.000139429000000,0.000138244000000,0.000555824000000 +0.000023689500000,0.000025269500000,0.000023492500000,0.000070688000000,0.000041059000000,0.000104268000000,0.000071478000000,0.000039478000000,0.000097948000000,0.000140219000000,0.000140219000000,0.000554638000000 +0.000024085000000,0.000025467500000,0.000023689500000,0.000071478000000,0.000041454000000,0.000121255000000,0.000071479000000,0.000041059000000,0.000097553000000,0.000167083000000,0.000139824000000,0.000552663000000 +0.000022899500000,0.000025269500000,0.000024084500000,0.000077799000000,0.000039873000000,0.000119281000000,0.000073453000000,0.000039478000000,0.000098342000000,0.000136268000000,0.000192762000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000024480000000,0.000074243000000,0.000044218000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000134293000000,0.000137848000000,0.000139824000000,0.000557799000000 +0.000023294500000,0.000025269500000,0.000024084500000,0.000079379000000,0.000043824000000,0.000102688000000,0.000077009000000,0.000039083000000,0.000097948000000,0.000136663000000,0.000137059000000,0.000555428000000 +0.000023097000000,0.000025270000000,0.000023492000000,0.000113354000000,0.000041848000000,0.000102688000000,0.000079774000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000137849000000,0.000553453000000 +0.000023294500000,0.000025863000000,0.000024677500000,0.000071083000000,0.000043429000000,0.000102688000000,0.000071083000000,0.000040269000000,0.000097947000000,0.000205799000000,0.000136663000000,0.000558194000000 +0.000023887500000,0.000025665000000,0.000024677500000,0.000070688000000,0.000041453000000,0.000102688000000,0.000073058000000,0.000039873000000,0.000097552000000,0.000212120000000,0.000132713000000,0.000285997000000 +0.000023690000000,0.000025862500000,0.000024677000000,0.000071083000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000040664000000,0.000097947000000,0.000132713000000,0.000184861000000,0.000554243000000 +0.000023294500000,0.000043443000000,0.000023492500000,0.000071083000000,0.000043033000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000096762000000,0.000139823000000,0.000136268000000,0.000553453000000 +0.000023689500000,0.000025467500000,0.000033566500000,0.000079379000000,0.000039873000000,0.000139429000000,0.000073453000000,0.000039874000000,0.000097947000000,0.000135873000000,0.000136268000000,0.000590984000000 +0.000023689500000,0.000025467500000,0.000025665000000,0.000073848000000,0.000043033000000,0.000103083000000,0.000137453000000,0.000039478000000,0.000097947000000,0.000133898000000,0.000136268000000,0.000555428000000 +0.000023690000000,0.000025467500000,0.000029418000000,0.000079379000000,0.000041848000000,0.000103478000000,0.000077404000000,0.000040664000000,0.000097552000000,0.000137453000000,0.000132713000000,0.000555034000000 +0.000040677000000,0.000025467500000,0.000024084500000,0.000077404000000,0.000042639000000,0.000102688000000,0.000079380000000,0.000039083000000,0.000133503000000,0.000138243000000,0.000136663000000,0.000662095000000 +0.000030603500000,0.000025270000000,0.000023887000000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000135478000000,0.000172614000000,0.000586638000000 +0.000023492000000,0.000025862500000,0.000023097000000,0.000071083000000,0.000040269000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000134292000000,0.000640366000000 +0.000023097000000,0.000025270000000,0.000023294500000,0.000106638000000,0.000041058000000,0.000103478000000,0.000071083000000,0.000039479000000,0.000097552000000,0.000137058000000,0.000139824000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000023294500000,0.000071083000000,0.000061996000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000140614000000,0.000554244000000 +0.000023294500000,0.000026060500000,0.000024282500000,0.000077800000000,0.000070293000000,0.000103083000000,0.000073454000000,0.000041059000000,0.000096762000000,0.000162342000000,0.000140613000000,0.000603626000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000074244000000,0.000039873000000,0.000139033000000,0.000071083000000,0.000059231000000,0.000097947000000,0.000136268000000,0.000140219000000,0.000605996000000 +0.000023294500000,0.000025467000000,0.000023492000000,0.000078194000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000039083000000,0.000097947000000,0.000139034000000,0.000137454000000,0.000596910000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000077404000000,0.000041453000000,0.000103478000000,0.000080170000000,0.000039083000000,0.000097947000000,0.000135083000000,0.000153256000000,0.000285996000000 +0.000023097500000,0.000025269500000,0.000024085000000,0.000070688000000,0.000043429000000,0.000102688000000,0.000107429000000,0.000041058000000,0.000133898000000,0.000137058000000,0.000143380000000,0.000554639000000 +0.000023097500000,0.000026850000000,0.000024677000000,0.000070688000000,0.000043428000000,0.000102688000000,0.000072664000000,0.000038293000000,0.000097947000000,0.000133502000000,0.000138244000000,0.000555428000000 +0.000023492000000,0.000025467500000,0.000023689500000,0.000070688000000,0.000042638000000,0.000102688000000,0.000071478000000,0.000040663000000,0.000098738000000,0.000136268000000,0.000136268000000,0.000609552000000 +0.000023294500000,0.000037122000000,0.000024480000000,0.000071478000000,0.000043034000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000117701000000,0.000143379000000,0.000136268000000,0.000552267000000 +0.000023294500000,0.000025467000000,0.000023492000000,0.000078194000000,0.000040663000000,0.000103873000000,0.000073454000000,0.000039083000000,0.000103083000000,0.000136269000000,0.000136268000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000074639000000,0.000040663000000,0.000139034000000,0.000071083000000,0.000039083000000,0.000098737000000,0.000136268000000,0.000170639000000,0.000554243000000 +0.000023294500000,0.000025467500000,0.000033764000000,0.000114145000000,0.000041059000000,0.000102688000000,0.000076613000000,0.000039478000000,0.000098342000000,0.000136268000000,0.000136664000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000048974000000,0.000077799000000,0.000043429000000,0.000103083000000,0.000079774000000,0.000039479000000,0.000098342000000,0.000135873000000,0.000140614000000,0.000590984000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000070688000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000040663000000,0.000097552000000,0.000140614000000,0.000136664000000,0.000552268000000 +0.000053122000000,0.000025665000000,0.000024084500000,0.000071083000000,0.000041454000000,0.000103083000000,0.000072664000000,0.000039478000000,0.000133503000000,0.000193553000000,0.000136268000000,0.000554638000000 +0.000052134000000,0.000025467000000,0.000023887500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000133503000000,0.000556613000000 +0.000023097000000,0.000025270000000,0.000024677500000,0.000071478000000,0.000041058000000,0.000103083000000,0.000092811000000,0.000039083000000,0.000097552000000,0.000133108000000,0.000172614000000,0.000560564000000 +0.000023097500000,0.000025467500000,0.000024084500000,0.000078589000000,0.000041058000000,0.000103874000000,0.000125996000000,0.000040663000000,0.000097947000000,0.000141404000000,0.000136268000000,0.000596515000000 +0.000023295000000,0.000025467500000,0.000023294500000,0.000073848000000,0.000042639000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000136664000000,0.000708713000000 +0.000023689500000,0.000025467500000,0.000024677500000,0.000078984000000,0.000043824000000,0.000139428000000,0.000077009000000,0.000040664000000,0.000097947000000,0.000142985000000,0.000136663000000,0.000371725000000 +0.000023887000000,0.000026652500000,0.000023492000000,0.000077404000000,0.000041058000000,0.000103083000000,0.000079379000000,0.000039478000000,0.000097948000000,0.000142984000000,0.000136268000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000071083000000,0.000041059000000,0.000103083000000,0.000071084000000,0.000039083000000,0.000097553000000,0.000137058000000,0.000135083000000,0.000637601000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000090441000000,0.000044614000000,0.000142589000000,0.000073058000000,0.000060811000000,0.000096762000000,0.000136268000000,0.000136663000000,0.000553453000000 +0.000023295000000,0.000043640000000,0.000024085000000,0.000103478000000,0.000043034000000,0.000109009000000,0.000071083000000,0.000040664000000,0.000144565000000,0.000136664000000,0.000173404000000,0.000603626000000 +0.000023295000000,0.000025665000000,0.000023689500000,0.000071478000000,0.000043033000000,0.000117700000000,0.000071478000000,0.000039873000000,0.000096762000000,0.000136268000000,0.000136268000000,0.000603626000000 +0.000023097000000,0.000025270000000,0.000024875000000,0.000078984000000,0.000041058000000,0.000104268000000,0.000073453000000,0.000039479000000,0.000097552000000,0.000136663000000,0.000136663000000,0.000556219000000 +0.000023294500000,0.000025665000000,0.000024282500000,0.000073848000000,0.000044219000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000136664000000,0.000136663000000,0.000642342000000 +0.000023294500000,0.000025467500000,0.000024282000000,0.000079774000000,0.000043033000000,0.000139033000000,0.000076614000000,0.000041058000000,0.000097552000000,0.000141009000000,0.000185651000000,0.000552663000000 +0.000023097000000,0.000025665000000,0.000024084500000,0.000077404000000,0.000041848000000,0.000102688000000,0.000114539000000,0.000039083000000,0.000097157000000,0.000139823000000,0.000213700000000,0.000605601000000 +0.000023294500000,0.000026455500000,0.000041862500000,0.000071083000000,0.000043824000000,0.000102293000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000137848000000,0.000140219000000,0.000598095000000 +0.000023294500000,0.000025665000000,0.000024282500000,0.000071083000000,0.000041848000000,0.000103083000000,0.000072664000000,0.000039478000000,0.000097157000000,0.000135873000000,0.000139824000000,0.000552663000000 +0.000036924500000,0.000025665000000,0.000024677500000,0.000071083000000,0.000041848000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000133503000000,0.000134688000000,0.000592169000000 +0.000023492000000,0.000025467500000,0.000024282000000,0.000071478000000,0.000039873000000,0.000102688000000,0.000071478000000,0.000041059000000,0.000097157000000,0.000140614000000,0.000136268000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000022899500000,0.000078194000000,0.000041849000000,0.000103478000000,0.000073454000000,0.000039478000000,0.000127972000000,0.000137848000000,0.000136664000000,0.000323132000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000109799000000,0.000041059000000,0.000103873000000,0.000071083000000,0.000039874000000,0.000097552000000,0.000136268000000,0.000168663000000,0.000552663000000 +0.000023689500000,0.000025467500000,0.000023690000000,0.000078985000000,0.000043824000000,0.000122836000000,0.000077009000000,0.000042243000000,0.000097947000000,0.000133108000000,0.000150886000000,0.000592564000000 +0.000023295000000,0.000025665000000,0.000023294500000,0.000077404000000,0.000043824000000,0.000103083000000,0.000078984000000,0.000040268000000,0.000098342000000,0.000136663000000,0.000135873000000,0.000552268000000 +0.000032579000000,0.000025270000000,0.000024084500000,0.000070688000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000097157000000,0.000134293000000,0.000136268000000,0.000590589000000 +0.000031788500000,0.000025862500000,0.000023097000000,0.000070688000000,0.000043034000000,0.000103478000000,0.000073059000000,0.000039478000000,0.000096762000000,0.000135873000000,0.000137059000000,0.000601651000000 +0.000031393500000,0.000043442500000,0.000043640500000,0.000070688000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000133503000000,0.000137453000000,0.000553058000000 +0.000023492000000,0.000025862500000,0.000026455500000,0.000071478000000,0.000041849000000,0.000103873000000,0.000107428000000,0.000041059000000,0.000097947000000,0.000171428000000,0.000136268000000,0.000590984000000 +0.000023492500000,0.000025467000000,0.000031196000000,0.000077404000000,0.000042244000000,0.000103083000000,0.000073453000000,0.000039478000000,0.000097552000000,0.000141404000000,0.000136664000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000073849000000,0.000040664000000,0.000103083000000,0.000071478000000,0.000078194000000,0.000167083000000,0.000138244000000,0.000136663000000,0.000590589000000 +0.000023097000000,0.000025269500000,0.000024677000000,0.000078194000000,0.000042639000000,0.000103083000000,0.000076614000000,0.000039478000000,0.000097552000000,0.000135873000000,0.000141404000000,0.000594934000000 +0.000023294500000,0.000025467500000,0.000024480000000,0.000077404000000,0.000040663000000,0.000206589000000,0.000080169000000,0.000039083000000,0.000096762000000,0.000139429000000,0.000137849000000,0.000634836000000 +0.000024084500000,0.000025862500000,0.000023887500000,0.000106639000000,0.000043429000000,0.000145354000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000136663000000,0.000139824000000,0.000555428000000 +0.000023097000000,0.000025862500000,0.000041270000000,0.000070688000000,0.000039873000000,0.000132713000000,0.000073058000000,0.000039478000000,0.000097157000000,0.000141799000000,0.000139034000000,0.000553454000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000070688000000,0.000042243000000,0.000102688000000,0.000071083000000,0.000041453000000,0.000098342000000,0.000136664000000,0.000172614000000,0.000558194000000 +0.000041270000000,0.000025270000000,0.000024084500000,0.000071478000000,0.000043428000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000145749000000,0.000285601000000 +0.000030801000000,0.000025270000000,0.000024084500000,0.000077404000000,0.000041453000000,0.000102688000000,0.000073453000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000699230000000 +0.000023097000000,0.000028825500000,0.000023492500000,0.000073849000000,0.000043823000000,0.000103478000000,0.000071083000000,0.000041058000000,0.000096762000000,0.000137059000000,0.000137058000000,0.000553453000000 +0.000023492000000,0.000025270000000,0.000024282500000,0.000077799000000,0.000041058000000,0.000139034000000,0.000077404000000,0.000038688000000,0.000146935000000,0.000136664000000,0.000136269000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000077404000000,0.000042638000000,0.000102688000000,0.000129947000000,0.000039478000000,0.000097552000000,0.000133898000000,0.000137058000000,0.000556614000000 +0.000024480000000,0.000025665000000,0.000024084500000,0.000070688000000,0.000043824000000,0.000103478000000,0.000071083000000,0.000039873000000,0.000097947000000,0.000137059000000,0.000176564000000,0.000552663000000 +0.000023887000000,0.000025072500000,0.000024677500000,0.000070688000000,0.000041058000000,0.000103083000000,0.000072663000000,0.000040268000000,0.000098343000000,0.000136268000000,0.000138243000000,0.000557799000000 +0.000023689500000,0.000061023000000,0.000023689500000,0.000070688000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097553000000,0.000140219000000,0.000136663000000,0.000553453000000 +0.000023097000000,0.000025467500000,0.000023294500000,0.000071083000000,0.000040268000000,0.000103083000000,0.000071479000000,0.000039873000000,0.000098343000000,0.000136268000000,0.000136268000000,0.000559379000000 +0.000023690000000,0.000025665000000,0.000024479500000,0.000119676000000,0.000042243000000,0.000103083000000,0.000073058000000,0.000039873000000,0.000097552000000,0.000135478000000,0.000137454000000,0.000555033000000 +0.000023097500000,0.000025467500000,0.000024480000000,0.000074638000000,0.000042638000000,0.000103873000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000135873000000,0.000136268000000,0.000555429000000 +0.000023294500000,0.000025270000000,0.000023689500000,0.000078194000000,0.000039873000000,0.000103083000000,0.000077404000000,0.000039478000000,0.000098342000000,0.000142984000000,0.000182490000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000023689500000,0.000077799000000,0.000041849000000,0.000139034000000,0.000080169000000,0.000039083000000,0.000133898000000,0.000139824000000,0.000139824000000,0.000555033000000 +0.000024677000000,0.000025862500000,0.000023887000000,0.000071083000000,0.000043824000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000097157000000,0.000137453000000,0.000136663000000,0.000605601000000 +0.000023295000000,0.000025270000000,0.000024085000000,0.000071083000000,0.000042244000000,0.000103478000000,0.000073059000000,0.000078194000000,0.000097157000000,0.000139033000000,0.000139824000000,0.000285996000000 +0.000023295000000,0.000025665000000,0.000023887000000,0.000071083000000,0.000043429000000,0.000102688000000,0.000107034000000,0.000089651000000,0.000097157000000,0.000133108000000,0.000134688000000,0.000555034000000 +0.000023492000000,0.000025467500000,0.000041467500000,0.000071478000000,0.000043428000000,0.000102688000000,0.000071083000000,0.000058836000000,0.000097552000000,0.000136663000000,0.000139034000000,0.000555428000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000077404000000,0.000052515000000,0.000103874000000,0.000073058000000,0.000041849000000,0.000098342000000,0.000138243000000,0.000141009000000,0.000555034000000 +0.000044035000000,0.000025665000000,0.000023492000000,0.000074639000000,0.000039873000000,0.000103083000000,0.000071083000000,0.000053306000000,0.000098342000000,0.000233058000000,0.000136664000000,0.000552663000000 +0.000030010500000,0.000025467500000,0.000024084500000,0.000077404000000,0.000041453000000,0.000103083000000,0.000076614000000,0.000039873000000,0.000097947000000,0.000252022000000,0.000134688000000,0.000554243000000 +0.000023294500000,0.000025467500000,0.000023690000000,0.000113355000000,0.000038688000000,0.000103083000000,0.000080170000000,0.000039479000000,0.000098342000000,0.000154046000000,0.000140219000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000071083000000,0.000038293000000,0.000136269000000,0.000071083000000,0.000041058000000,0.000117701000000,0.000137848000000,0.000136663000000,0.000554638000000 +0.000024085000000,0.000046011000000,0.000023294500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000072663000000,0.000040663000000,0.000172219000000,0.000140218000000,0.000136663000000,0.000555033000000 +0.000023097500000,0.000032381000000,0.000024084500000,0.000071083000000,0.000039083000000,0.000103479000000,0.000071083000000,0.000039479000000,0.000103479000000,0.000137453000000,0.000141404000000,0.000553058000000 +0.000023887500000,0.000025270000000,0.000024085000000,0.000071478000000,0.000040268000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000110984000000,0.000137058000000,0.000172614000000,0.000555033000000 +0.000022899500000,0.000025862500000,0.000024480000000,0.000078589000000,0.000037503000000,0.000103478000000,0.000073453000000,0.000039874000000,0.000097552000000,0.000136664000000,0.000136664000000,0.000607576000000 +0.000023294500000,0.000025862500000,0.000023887000000,0.000075033000000,0.000038292000000,0.000103478000000,0.000071083000000,0.000041058000000,0.000097157000000,0.000136663000000,0.000137058000000,0.000555034000000 +0.000023492000000,0.000025665000000,0.000023887500000,0.000079774000000,0.000039873000000,0.000103478000000,0.000093207000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136663000000,0.000553058000000 +0.000023492000000,0.000025467000000,0.000024677500000,0.000077404000000,0.000041059000000,0.000103083000000,0.000079775000000,0.000041058000000,0.000098342000000,0.000141799000000,0.000133107000000,0.000558194000000 +0.000023295000000,0.000026850000000,0.000024084500000,0.000070688000000,0.000038688000000,0.000139428000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000173404000000,0.000136663000000,0.000285997000000 +0.000023294500000,0.000025862500000,0.000024085000000,0.000070688000000,0.000056071000000,0.000103083000000,0.000073058000000,0.000040663000000,0.000144565000000,0.000137849000000,0.000170639000000,0.000554638000000 +0.000023689500000,0.000028430500000,0.000024480000000,0.000070688000000,0.000037898000000,0.000103084000000,0.000071083000000,0.000060416000000,0.000098343000000,0.000143380000000,0.000135874000000,0.000553453000000 +0.000023689500000,0.000025665000000,0.000023097000000,0.000107428000000,0.000039873000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000138243000000,0.000137848000000,0.000651823000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000077404000000,0.000037898000000,0.000103084000000,0.000073059000000,0.000039478000000,0.000097947000000,0.000138638000000,0.000135083000000,0.000592564000000 +0.000023097000000,0.000025467500000,0.000033566500000,0.000073849000000,0.000037108000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000137849000000,0.000553058000000 +0.000024282500000,0.000025270000000,0.000023689500000,0.000078195000000,0.000041453000000,0.000103083000000,0.000076614000000,0.000039478000000,0.000098737000000,0.000134687000000,0.000138639000000,0.000562539000000 +0.000041665000000,0.000029023000000,0.000024085000000,0.000077799000000,0.000041454000000,0.000103083000000,0.000079775000000,0.000039083000000,0.000097552000000,0.000168268000000,0.000133108000000,0.000553058000000 +0.000023294500000,0.000052727000000,0.000024677500000,0.000070688000000,0.000038688000000,0.000138638000000,0.000071478000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000153255000000,0.000554243000000 +0.000023294500000,0.000025665000000,0.000023689500000,0.000071083000000,0.000038688000000,0.000102688000000,0.000109009000000,0.000039873000000,0.000097157000000,0.000141404000000,0.000138243000000,0.000555034000000 +0.000023294500000,0.000025665000000,0.000024875000000,0.000071084000000,0.000037503000000,0.000103873000000,0.000071478000000,0.000039479000000,0.000166688000000,0.000139429000000,0.000136268000000,0.000556613000000 +0.000022899500000,0.000025467500000,0.000023097000000,0.000071083000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000133897000000,0.000555033000000 +0.000023492000000,0.000025467500000,0.000023097000000,0.000078589000000,0.000040664000000,0.000102688000000,0.000073454000000,0.000039084000000,0.000098342000000,0.000136268000000,0.000139428000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000074244000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000173009000000,0.000136268000000,0.000557008000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000097552000000,0.000037502000000,0.000103083000000,0.000076613000000,0.000041059000000,0.000097948000000,0.000135478000000,0.000172219000000,0.000285996000000 +0.000023097500000,0.000025665000000,0.000023887500000,0.000110589000000,0.000038688000000,0.000102688000000,0.000079774000000,0.000039873000000,0.000097553000000,0.000136664000000,0.000136268000000,0.000554639000000 +0.000023097000000,0.000025862500000,0.000024085000000,0.000071083000000,0.000041453000000,0.000104268000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000136268000000,0.000139823000000,0.000555428000000 +0.000023492000000,0.000025862500000,0.000024084500000,0.000071083000000,0.000038293000000,0.000138638000000,0.000072664000000,0.000039083000000,0.000097948000000,0.000136268000000,0.000136663000000,0.000554639000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000552663000000 +0.000023097000000,0.000025270000000,0.000023097000000,0.000071083000000,0.000041454000000,0.000103083000000,0.000071478000000,0.000040663000000,0.000168663000000,0.000137058000000,0.000136664000000,0.000554638000000 +0.000023294500000,0.000025270000000,0.000023887500000,0.000078590000000,0.000038688000000,0.000103083000000,0.000073454000000,0.000039873000000,0.000097947000000,0.000135873000000,0.000240169000000,0.000591379000000 +0.000023294500000,0.000025862500000,0.000024085000000,0.000073849000000,0.000079775000000,0.000102688000000,0.000120071000000,0.000039083000000,0.000098342000000,0.000137058000000,0.000173799000000,0.000603626000000 +0.000023294500000,0.000025270000000,0.000023097000000,0.000078194000000,0.000039083000000,0.000103083000000,0.000077009000000,0.000058441000000,0.000097552000000,0.000138244000000,0.000137454000000,0.000555033000000 +0.000023294500000,0.000043245500000,0.000023689500000,0.000077404000000,0.000040268000000,0.000103873000000,0.000079774000000,0.000055281000000,0.000097552000000,0.000133898000000,0.000136268000000,0.000552663000000 +0.000023097500000,0.000025270000000,0.000041270000000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071874000000,0.000039478000000,0.000097947000000,0.000138638000000,0.000135478000000,0.000604021000000 +0.000033369000000,0.000025665000000,0.000024479500000,0.000071083000000,0.000041454000000,0.000122441000000,0.000073058000000,0.000041058000000,0.000097552000000,0.000136268000000,0.000137453000000,0.000556613000000 +0.000023097000000,0.000025270000000,0.000024480000000,0.000088071000000,0.000040268000000,0.000157206000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000173404000000,0.000159972000000,0.000555033000000 +0.000023097000000,0.000025467000000,0.000023295000000,0.000071478000000,0.000041058000000,0.000102688000000,0.000071084000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136268000000,0.000552663000000 +0.000023295000000,0.000025665000000,0.000024085000000,0.000077799000000,0.000038293000000,0.000102293000000,0.000073453000000,0.000039478000000,0.000139429000000,0.000134293000000,0.000135874000000,0.000557404000000 +0.000023294500000,0.000025467500000,0.000024677000000,0.000109009000000,0.000038293000000,0.000103873000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000140614000000,0.000140219000000,0.000285997000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000094392000000,0.000040268000000,0.000104268000000,0.000076614000000,0.000041059000000,0.000097552000000,0.000140614000000,0.000137849000000,0.000590589000000 +0.000022899500000,0.000025270000000,0.000024479500000,0.000077009000000,0.000039083000000,0.000103873000000,0.000079379000000,0.000039478000000,0.000097552000000,0.000135478000000,0.000133108000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000023887000000,0.000070688000000,0.000041059000000,0.000103083000000,0.000107033000000,0.000039083000000,0.000097552000000,0.000193157000000,0.000212911000000,0.000591379000000 +0.000023294500000,0.000025665000000,0.000024677500000,0.000070688000000,0.000040663000000,0.000103083000000,0.000072663000000,0.000039873000000,0.000097948000000,0.000139823000000,0.000138244000000,0.000597700000000 +0.000023097000000,0.000025862500000,0.000024084500000,0.000070688000000,0.000037897000000,0.000174590000000,0.000071083000000,0.000039478000000,0.000098343000000,0.000139428000000,0.000140614000000,0.000553453000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000071083000000,0.000038688000000,0.000103478000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000135873000000,0.000139429000000,0.000558194000000 +0.000023295000000,0.000025467500000,0.000023294500000,0.000078589000000,0.000038688000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000144169000000,0.000552663000000 +0.000023295000000,0.000025665000000,0.000024677000000,0.000090441000000,0.000041454000000,0.000103083000000,0.000071479000000,0.000041059000000,0.000134292000000,0.000137454000000,0.000139824000000,0.000554243000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000078194000000,0.000041059000000,0.000103478000000,0.000077009000000,0.000039083000000,0.000097553000000,0.000173799000000,0.000205799000000,0.000555428000000 +0.000023887000000,0.000045023000000,0.000023295000000,0.000077405000000,0.000040268000000,0.000103873000000,0.000079775000000,0.000039083000000,0.000097948000000,0.000136268000000,0.000137453000000,0.000682638000000 +0.000023097000000,0.000025862500000,0.000024085000000,0.000070688000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000040268000000,0.000097552000000,0.000135874000000,0.000136663000000,0.000554243000000 +0.000023097000000,0.000035936500000,0.000024084500000,0.000070688000000,0.000073849000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000098342000000,0.000139824000000,0.000133107000000,0.000555033000000 +0.000023097000000,0.000034553500000,0.000057862500000,0.000070688000000,0.000038688000000,0.000139033000000,0.000071083000000,0.000058441000000,0.000097552000000,0.000133108000000,0.000135873000000,0.000640366000000 +0.000023295000000,0.000032973500000,0.000031986000000,0.000071084000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000139824000000,0.000136269000000,0.000285996000000 +0.000041270000000,0.000025665000000,0.000024084500000,0.000078984000000,0.000039873000000,0.000103083000000,0.000109799000000,0.000040664000000,0.000098342000000,0.000136663000000,0.000171824000000,0.000621404000000 +0.000022899500000,0.000025467500000,0.000023689500000,0.000074243000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000038688000000,0.000097552000000,0.000133503000000,0.000136268000000,0.000555033000000 +0.000023097000000,0.000025665000000,0.000023690000000,0.000077799000000,0.000037898000000,0.000102688000000,0.000076614000000,0.000041059000000,0.000097948000000,0.000136663000000,0.000133108000000,0.000589798000000 +0.000023690000000,0.000025270000000,0.000024677500000,0.000077799000000,0.000038688000000,0.000102688000000,0.000080170000000,0.000039478000000,0.000169059000000,0.000137849000000,0.000136663000000,0.000556613000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000106638000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039479000000,0.000097157000000,0.000135478000000,0.000136268000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024282500000,0.000071083000000,0.000037503000000,0.000103083000000,0.000073059000000,0.000039873000000,0.000096762000000,0.000136268000000,0.000134688000000,0.000673551000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000071083000000,0.000038688000000,0.000102293000000,0.000071083000000,0.000039479000000,0.000097552000000,0.000136663000000,0.000175774000000,0.000746243000000 +0.000023294500000,0.000029023000000,0.000023887000000,0.000071478000000,0.000039478000000,0.000155231000000,0.000071478000000,0.000040268000000,0.000097552000000,0.000173009000000,0.000144564000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000078195000000,0.000040664000000,0.000103083000000,0.000073454000000,0.000041058000000,0.000116910000000,0.000141404000000,0.000140614000000,0.000554638000000 +0.000023097000000,0.000035146500000,0.000024084500000,0.000074639000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000129157000000,0.000136664000000,0.000140219000000,0.000553058000000 +0.000023097500000,0.000025270000000,0.000024480000000,0.000078589000000,0.000038688000000,0.000103083000000,0.000077009000000,0.000039478000000,0.000097157000000,0.000138639000000,0.000137059000000,0.000558984000000 +0.000023690000000,0.000025270000000,0.000022900000000,0.000077404000000,0.000038293000000,0.000103874000000,0.000079380000000,0.000039479000000,0.000133107000000,0.000134688000000,0.000137059000000,0.000553453000000 +0.000023097000000,0.000025665000000,0.000024282500000,0.000071083000000,0.000061602000000,0.000121651000000,0.000086491000000,0.000041453000000,0.000096762000000,0.000136664000000,0.000162737000000,0.000555034000000 +0.000023097000000,0.000025862500000,0.000023689500000,0.000071083000000,0.000111775000000,0.000134292000000,0.000073059000000,0.000039478000000,0.000097157000000,0.000134293000000,0.000137849000000,0.000556614000000 +0.000023492000000,0.000025270000000,0.000023492000000,0.000071083000000,0.000071478000000,0.000123231000000,0.000071083000000,0.000040663000000,0.000098343000000,0.000136663000000,0.000136664000000,0.000323527000000 +0.000023492000000,0.000026060000000,0.000042060000000,0.000071478000000,0.000040664000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000096762000000,0.000137849000000,0.000136663000000,0.000552663000000 +0.000023294500000,0.000025665000000,0.000023492000000,0.000113750000000,0.000038293000000,0.000102293000000,0.000073454000000,0.000039083000000,0.000098343000000,0.000136663000000,0.000136663000000,0.000595724000000 +0.000023097000000,0.000026850000000,0.000024677500000,0.000074243000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000134687000000,0.000555033000000 +0.000033171500000,0.000025467500000,0.000024084500000,0.000077799000000,0.000038293000000,0.000103873000000,0.000076219000000,0.000060021000000,0.000097947000000,0.000136268000000,0.000136663000000,0.000555033000000 +0.000025665000000,0.000027245500000,0.000023097000000,0.000077799000000,0.000040663000000,0.000103083000000,0.000079774000000,0.000041848000000,0.000097552000000,0.000135873000000,0.000176564000000,0.000555033000000 +0.000023097000000,0.000025270000000,0.000023689500000,0.000071083000000,0.000038293000000,0.000103873000000,0.000071083000000,0.000054095000000,0.000115725000000,0.000182095000000,0.000136663000000,0.000555824000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000070688000000,0.000037503000000,0.000103083000000,0.000072664000000,0.000040268000000,0.000113749000000,0.000136663000000,0.000136269000000,0.000554243000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000133108000000,0.000552268000000 +0.000023295000000,0.000025665000000,0.000024084500000,0.000071478000000,0.000039083000000,0.000138244000000,0.000107033000000,0.000039478000000,0.000097948000000,0.000133503000000,0.000136664000000,0.000692514000000 +0.000023295000000,0.000025467000000,0.000023097000000,0.000078984000000,0.000037503000000,0.000103083000000,0.000073058000000,0.000040663000000,0.000097948000000,0.000141404000000,0.000135873000000,0.000557008000000 +0.000023294500000,0.000043640500000,0.000023690000000,0.000075034000000,0.000040269000000,0.000103873000000,0.000071083000000,0.000040268000000,0.000097157000000,0.000136663000000,0.000172219000000,0.000553453000000 +0.000023097000000,0.000025270000000,0.000023097000000,0.000078984000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000041454000000,0.000096762000000,0.000143774000000,0.000136663000000,0.000592564000000 +0.000023294500000,0.000025665000000,0.000024480000000,0.000111775000000,0.000037502000000,0.000103083000000,0.000079774000000,0.000039478000000,0.000098343000000,0.000141009000000,0.000136663000000,0.000554243000000 +0.000023097000000,0.000025467500000,0.000024084500000,0.000085306000000,0.000039083000000,0.000102293000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000134688000000,0.000287576000000 +0.000023492000000,0.000029023000000,0.000024084500000,0.000070688000000,0.000039083000000,0.000103478000000,0.000072663000000,0.000041058000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000070688000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000134293000000,0.000173799000000,0.000141009000000,0.000557009000000 +0.000023690000000,0.000025270000000,0.000024084500000,0.000071083000000,0.000041058000000,0.000102293000000,0.000071478000000,0.000039478000000,0.000110195000000,0.000144960000000,0.000172219000000,0.000552663000000 +0.000023097500000,0.000025665000000,0.000024084500000,0.000078194000000,0.000037502000000,0.000120466000000,0.000073058000000,0.000039478000000,0.000097948000000,0.000200663000000,0.000136663000000,0.000554243000000 +0.000023492500000,0.000025467500000,0.000042060000000,0.000073849000000,0.000041848000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000097947000000,0.000351577000000,0.000136663000000,0.000552663000000 +0.000023097000000,0.000025270000000,0.000024085000000,0.000078194000000,0.000040663000000,0.000103083000000,0.000077404000000,0.000041058000000,0.000097552000000,0.000157996000000,0.000141009000000,0.000555033000000 +0.000023887000000,0.000025862500000,0.000024085000000,0.000077404000000,0.000073849000000,0.000103083000000,0.000115330000000,0.000039478000000,0.000098342000000,0.000139428000000,0.000140614000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000023689500000,0.000071083000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000137453000000,0.000139823000000,0.000553058000000 +0.000069912000000,0.000025270000000,0.000024282000000,0.000070688000000,0.000039083000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000139429000000,0.000750589000000 +0.000049763500000,0.000025270000000,0.000024480000000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000075429000000,0.000097947000000,0.000133503000000,0.000218046000000,0.000587429000000 +0.000040282500000,0.000025665000000,0.000024084500000,0.000198688000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000041454000000,0.000134293000000,0.000140614000000,0.000136268000000,0.000557404000000 +0.000032973500000,0.000025467500000,0.000023887000000,0.000165107000000,0.000038293000000,0.000138638000000,0.000073453000000,0.000039478000000,0.000098342000000,0.000137058000000,0.000137059000000,0.000555033000000 +0.000024875000000,0.000043640000000,0.000024085000000,0.000078194000000,0.000038293000000,0.000103873000000,0.000071083000000,0.000039479000000,0.000097157000000,0.000136268000000,0.000133503000000,0.000553058000000 +0.000030800500000,0.000025467500000,0.000024677500000,0.000093996000000,0.000041454000000,0.000102688000000,0.000077404000000,0.000041848000000,0.000097157000000,0.000132713000000,0.000136664000000,0.000598095000000 +0.000023097000000,0.000025270000000,0.000023689500000,0.000077799000000,0.000041453000000,0.000103873000000,0.000080169000000,0.000040268000000,0.000097552000000,0.000158391000000,0.000136268000000,0.000286391000000 +0.000023097000000,0.000025467500000,0.000023097000000,0.000071083000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097552000000,0.000134293000000,0.000172219000000,0.000555033000000 +0.000023294500000,0.000025270000000,0.000023294500000,0.000071083000000,0.000040268000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000096367000000,0.000136268000000,0.000136663000000,0.000553058000000 +0.000023492500000,0.000025269500000,0.000024085000000,0.000070688000000,0.000041058000000,0.000103083000000,0.000109799000000,0.000039873000000,0.000097947000000,0.000133503000000,0.000137453000000,0.000555034000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000071478000000,0.000038688000000,0.000102688000000,0.000188021000000,0.000040664000000,0.000097552000000,0.000133897000000,0.000136268000000,0.000612317000000 +0.000023492000000,0.000025665000000,0.000024084500000,0.000148515000000,0.000039478000000,0.000103873000000,0.000131132000000,0.000039478000000,0.000116910000000,0.000141404000000,0.000136664000000,0.000555034000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000074244000000,0.000039083000000,0.000139429000000,0.000075428000000,0.000042244000000,0.000097947000000,0.000138639000000,0.000136268000000,0.000555823000000 +0.000023887000000,0.000025467500000,0.000023097500000,0.000077799000000,0.000039874000000,0.000102688000000,0.000091626000000,0.000039083000000,0.000098342000000,0.000135874000000,0.000178540000000,0.000590589000000 +0.000033171500000,0.000025665000000,0.000034356500000,0.000077800000000,0.000038688000000,0.000102688000000,0.000079774000000,0.000039083000000,0.000097947000000,0.000139824000000,0.000138244000000,0.000554243000000 +0.000023294500000,0.000025269500000,0.000029813000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000139824000000,0.000554639000000 +0.000023887500000,0.000028430500000,0.000023887500000,0.000071083000000,0.000039478000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000098342000000,0.000141009000000,0.000139034000000,0.000556613000000 +0.000023295000000,0.000025665000000,0.000023295000000,0.000071083000000,0.000039873000000,0.000103083000000,0.000071478000000,0.000041059000000,0.000097553000000,0.000136664000000,0.000136664000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000023295000000,0.000071084000000,0.000076614000000,0.000103083000000,0.000107033000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000145750000000,0.000592959000000 +0.000023294500000,0.000026060000000,0.000024084500000,0.000078589000000,0.000038688000000,0.000103083000000,0.000073453000000,0.000039084000000,0.000097948000000,0.000137453000000,0.000171824000000,0.000554638000000 +0.000023097000000,0.000033764000000,0.000024084500000,0.000074243000000,0.000041849000000,0.000139034000000,0.000071479000000,0.000041058000000,0.000098343000000,0.000137058000000,0.000136663000000,0.000287576000000 +0.000023294500000,0.000028825500000,0.000024085000000,0.000078589000000,0.000040268000000,0.000103084000000,0.000077009000000,0.000075428000000,0.000258342000000,0.000136269000000,0.000136269000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000023887500000,0.000113355000000,0.000040268000000,0.000103083000000,0.000080170000000,0.000039083000000,0.000306539000000,0.000133898000000,0.000136663000000,0.000556614000000 +0.000023097000000,0.000025270000000,0.000024084500000,0.000070688000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000152861000000,0.000136268000000,0.000141009000000,0.000553058000000 +0.000025862500000,0.000026060000000,0.000023097000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000112959000000,0.000136268000000,0.000137849000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000024282000000,0.000071083000000,0.000041059000000,0.000102688000000,0.000071478000000,0.000039873000000,0.000097552000000,0.000140219000000,0.000172219000000,0.000555034000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000167083000000,0.000135873000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000077799000000,0.000040269000000,0.000103478000000,0.000073058000000,0.000039478000000,0.000097157000000,0.000135083000000,0.000137454000000,0.000590984000000 +0.000023097000000,0.000025270000000,0.000024084500000,0.000073849000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136269000000,0.000135873000000,0.000553453000000 +0.000023295000000,0.000025665000000,0.000023887500000,0.000078589000000,0.000038688000000,0.000139034000000,0.000077799000000,0.000039083000000,0.000098342000000,0.000136663000000,0.000136663000000,0.000554243000000 +0.000023295000000,0.000025270000000,0.000023887500000,0.000077404000000,0.000039084000000,0.000102688000000,0.000150095000000,0.000039084000000,0.000096762000000,0.000139429000000,0.000139428000000,0.000552663000000 +0.000023492000000,0.000025665000000,0.000023887000000,0.000070688000000,0.000041058000000,0.000103083000000,0.000071084000000,0.000059626000000,0.000098342000000,0.000137453000000,0.000136663000000,0.000557799000000 +0.000023097000000,0.000025665000000,0.000033961000000,0.000071083000000,0.000039873000000,0.000103083000000,0.000072663000000,0.000055675000000,0.000097157000000,0.000139429000000,0.000175379000000,0.000560169000000 +0.000041467500000,0.000025270000000,0.000031788500000,0.000109799000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000041453000000,0.000097157000000,0.000133108000000,0.000134688000000,0.000553058000000 +0.000024084500000,0.000025665000000,0.000022899500000,0.000100713000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000040269000000,0.000098343000000,0.000136663000000,0.000182885000000,0.000609947000000 +0.000023294500000,0.000043443000000,0.000023689500000,0.000078984000000,0.000038688000000,0.000103478000000,0.000073058000000,0.000039873000000,0.000133503000000,0.000138639000000,0.000141404000000,0.000285601000000 +0.000023492000000,0.000025270000000,0.000024677500000,0.000075429000000,0.000040268000000,0.000102293000000,0.000071083000000,0.000039478000000,0.000109799000000,0.000136663000000,0.000136664000000,0.000624169000000 +0.000023492500000,0.000025467500000,0.000024085000000,0.000078589000000,0.000037503000000,0.000103083000000,0.000077404000000,0.000039478000000,0.000097157000000,0.000137058000000,0.000134688000000,0.000621009000000 +0.000023690000000,0.000025467500000,0.000024084500000,0.000077404000000,0.000057255000000,0.000119280000000,0.000080169000000,0.000039083000000,0.000096762000000,0.000136269000000,0.000176564000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000070688000000,0.000088071000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000096762000000,0.000138244000000,0.000136663000000,0.000554639000000 +0.000023294500000,0.000025270000000,0.000023295000000,0.000070688000000,0.000075824000000,0.000102688000000,0.000073059000000,0.000081355000000,0.000098342000000,0.000139824000000,0.000136269000000,0.000609947000000 +0.000023294500000,0.000025665000000,0.000023295000000,0.000071083000000,0.000039873000000,0.000102688000000,0.000107034000000,0.000039083000000,0.000097947000000,0.000137059000000,0.000141799000000,0.000621799000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000071479000000,0.000069108000000,0.000102293000000,0.000071083000000,0.000039874000000,0.000097553000000,0.000137058000000,0.000136663000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000024282000000,0.000078194000000,0.000038688000000,0.000102688000000,0.000073058000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000136664000000,0.000590194000000 +0.000023097000000,0.000025665000000,0.000023887500000,0.000112959000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000166688000000,0.000136268000000,0.000186046000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000024282500000,0.000093602000000,0.000038688000000,0.000103083000000,0.000077009000000,0.000039873000000,0.000097947000000,0.000137059000000,0.000136664000000,0.000556613000000 +0.000023492500000,0.000025467500000,0.000024479500000,0.000077404000000,0.000041059000000,0.000139034000000,0.000079774000000,0.000040663000000,0.000098342000000,0.000135083000000,0.000132713000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000023690000000,0.000071083000000,0.000037898000000,0.000103083000000,0.000071479000000,0.000039083000000,0.000098342000000,0.000136268000000,0.000136268000000,0.000699231000000 +0.000024084500000,0.000025270000000,0.000023887500000,0.000070688000000,0.000038688000000,0.000103083000000,0.000092021000000,0.000041453000000,0.000097157000000,0.000137849000000,0.000135083000000,0.000596120000000 +0.000024677500000,0.000025665000000,0.000023887000000,0.000070688000000,0.000040663000000,0.000103478000000,0.000124811000000,0.000041058000000,0.000097947000000,0.000135083000000,0.000136269000000,0.000305354000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000071083000000,0.000040268000000,0.000103083000000,0.000085305000000,0.000039873000000,0.000097947000000,0.000137848000000,0.000179330000000,0.000626934000000 +0.000040282000000,0.000043640000000,0.000031788500000,0.000078194000000,0.000038688000000,0.000103083000000,0.000073849000000,0.000039083000000,0.000097552000000,0.000138243000000,0.000134688000000,0.000742292000000 +0.000030998500000,0.000025467500000,0.000023689500000,0.000074638000000,0.000038688000000,0.000102688000000,0.000152466000000,0.000039083000000,0.000096762000000,0.000141009000000,0.000138244000000,0.000554638000000 +0.000023097000000,0.000025862500000,0.000024480000000,0.000079774000000,0.000041058000000,0.000103478000000,0.000077009000000,0.000040268000000,0.000167478000000,0.000137453000000,0.000138243000000,0.000663280000000 +0.000023097000000,0.000025665000000,0.000023492000000,0.000077404000000,0.000041059000000,0.000103083000000,0.000078589000000,0.000039083000000,0.000112170000000,0.000138638000000,0.000133108000000,0.000799181000000 +0.000023492000000,0.000025467500000,0.000023492000000,0.000125602000000,0.000037503000000,0.000212120000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000135873000000,0.000137454000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000023294500000,0.000085701000000,0.000055281000000,0.000134293000000,0.000072664000000,0.000039478000000,0.000097552000000,0.000134688000000,0.000137848000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000071083000000,0.000038293000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000139824000000,0.000135873000000,0.000733601000000 +0.000023097500000,0.000025270000000,0.000023887000000,0.000071478000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000174195000000,0.000134293000000,0.000666441000000 +0.000023294500000,0.000025467500000,0.000023690000000,0.000078589000000,0.000037898000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000096762000000,0.000136268000000,0.000139823000000,0.000557009000000 +0.000023294500000,0.000029220500000,0.000023492500000,0.000074243000000,0.000041058000000,0.000103478000000,0.000071083000000,0.000056071000000,0.000097157000000,0.000135873000000,0.000136268000000,0.000557009000000 +0.000023294500000,0.000025270000000,0.000023294500000,0.000078589000000,0.000038293000000,0.000102688000000,0.000076614000000,0.000041058000000,0.000097157000000,0.000139429000000,0.000136269000000,0.000555428000000 +0.000024282000000,0.000025665000000,0.000024084500000,0.000077404000000,0.000040268000000,0.000139033000000,0.000079774000000,0.000038688000000,0.000167478000000,0.000136663000000,0.000136268000000,0.000552663000000 +0.000023295000000,0.000025270000000,0.000023689500000,0.000070688000000,0.000040268000000,0.000102688000000,0.000107033000000,0.000041059000000,0.000111379000000,0.000136269000000,0.000252021000000,0.000607576000000 +0.000023295000000,0.000026060000000,0.000024085000000,0.000070688000000,0.000039083000000,0.000102688000000,0.000073058000000,0.000040663000000,0.000097157000000,0.000136268000000,0.000154441000000,0.000286391000000 +0.000023097000000,0.000025467500000,0.000024085000000,0.000070688000000,0.000040268000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000136663000000,0.000554639000000 +0.000024479500000,0.000025270000000,0.000024084500000,0.000131527000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000136268000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000043640000000,0.000023689500000,0.000092811000000,0.000040268000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000099133000000,0.000141009000000,0.000136268000000,0.000555033000000 +0.000023295000000,0.000025862500000,0.000024085000000,0.000074638000000,0.000038293000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000169453000000,0.000554638000000 +0.000033369000000,0.000025467500000,0.000061813500000,0.000078194000000,0.000038688000000,0.000103478000000,0.000076219000000,0.000039873000000,0.000097947000000,0.000135479000000,0.000152466000000,0.000609157000000 +0.000023097500000,0.000025270000000,0.000034949000000,0.000077404000000,0.000039083000000,0.000103478000000,0.000078590000000,0.000040268000000,0.000097552000000,0.000138243000000,0.000136268000000,0.000557404000000 +0.000023097500000,0.000025467500000,0.000053912000000,0.000071478000000,0.000038688000000,0.000187231000000,0.000071083000000,0.000039478000000,0.000133503000000,0.000143774000000,0.000135083000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000060035500000,0.000070688000000,0.000041453000000,0.000103083000000,0.000073059000000,0.000041454000000,0.000097158000000,0.000136268000000,0.000137849000000,0.000554244000000 +0.000023492000000,0.000025467500000,0.000055887500000,0.000070688000000,0.000037503000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000096366000000,0.000135873000000,0.000142984000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000024479500000,0.000071083000000,0.000041058000000,0.000103083000000,0.000090046000000,0.000040664000000,0.000097158000000,0.000140219000000,0.000136268000000,0.000592564000000 +0.000023097000000,0.000025467500000,0.000044430500000,0.000077009000000,0.000038293000000,0.000103083000000,0.000137849000000,0.000039083000000,0.000098343000000,0.000137849000000,0.000171823000000,0.000552663000000 +0.000023294500000,0.000025270000000,0.000034949000000,0.000074638000000,0.000072268000000,0.000103083000000,0.000071083000000,0.000040664000000,0.000098342000000,0.000133108000000,0.000139824000000,0.000554639000000 +0.000023492500000,0.000025862500000,0.000076825500000,0.000114935000000,0.000052515000000,0.000103083000000,0.000076614000000,0.000041058000000,0.000096762000000,0.000153255000000,0.000138244000000,0.000557009000000 +0.000023295000000,0.000025270000000,0.000201072000000,0.000077404000000,0.000039873000000,0.000102688000000,0.000080170000000,0.000039478000000,0.000097947000000,0.000154836000000,0.000133108000000,0.000285601000000 +0.000023097500000,0.000025467500000,0.000041467500000,0.000070688000000,0.000041059000000,0.000188416000000,0.000071083000000,0.000057651000000,0.000097157000000,0.000140219000000,0.000133108000000,0.000552662000000 +0.000023097000000,0.000025270000000,0.000059838000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000072663000000,0.000055675000000,0.000168663000000,0.000139428000000,0.000138243000000,0.000789700000000 +0.000023097000000,0.000025270000000,0.000053911500000,0.000071084000000,0.000037898000000,0.000102688000000,0.000071479000000,0.000039083000000,0.000097947000000,0.000144564000000,0.000220811000000,0.000849354000000 +0.000023097000000,0.000025270000000,0.000026850500000,0.000071478000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000097947000000,0.000140218000000,0.000139429000000,0.000605996000000 +0.000024084500000,0.000051541500000,0.000051541500000,0.000077799000000,0.000040663000000,0.000102688000000,0.000073453000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000144564000000,0.000553058000000 +0.000023097000000,0.000025665000000,0.000060035000000,0.000074244000000,0.000041453000000,0.000103874000000,0.000071084000000,0.000041059000000,0.000097157000000,0.000138638000000,0.000140219000000,0.000565305000000 +0.000023097000000,0.000025862500000,0.000025270000000,0.000079380000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000136663000000,0.000553058000000 +0.000023690000000,0.000025467500000,0.000026455000000,0.000077404000000,0.000037898000000,0.000103873000000,0.000095577000000,0.000039083000000,0.000097947000000,0.000133108000000,0.000137454000000,0.000662885000000 +0.000023097000000,0.000025863000000,0.000031986000000,0.000071083000000,0.000040664000000,0.000180910000000,0.000071478000000,0.000039873000000,0.000098342000000,0.000136268000000,0.000172614000000,0.000590589000000 +0.000041467500000,0.000025270000000,0.000035146500000,0.000071083000000,0.000039478000000,0.000120071000000,0.000073059000000,0.000039478000000,0.000096762000000,0.000136663000000,0.000132712000000,0.000645108000000 +0.000023097000000,0.000025665000000,0.000031788500000,0.000128762000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000190787000000,0.000135873000000,0.000136268000000,0.000598095000000 +0.000023492000000,0.000025467500000,0.000026257500000,0.000071083000000,0.000040663000000,0.000103084000000,0.000071478000000,0.000039478000000,0.000096762000000,0.000142194000000,0.000136269000000,0.000594145000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000078589000000,0.000037898000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097552000000,0.000132713000000,0.000136268000000,0.000590194000000 +0.000023097000000,0.000025270000000,0.000034158500000,0.000074244000000,0.000040663000000,0.000103084000000,0.000071478000000,0.000039083000000,0.000096762000000,0.000136663000000,0.000136268000000,0.000588613000000 +0.000023097000000,0.000025467500000,0.000032974000000,0.000078194000000,0.000037502000000,0.000102688000000,0.000076613000000,0.000041058000000,0.000097552000000,0.000136664000000,0.000187627000000,0.000285996000000 +0.000023097000000,0.000025270000000,0.000032973500000,0.000077404000000,0.000038293000000,0.000103874000000,0.000079774000000,0.000039873000000,0.000097552000000,0.000134688000000,0.000151281000000,0.000618638000000 +0.000023492500000,0.000025269500000,0.000024874500000,0.000091627000000,0.000038688000000,0.000174194000000,0.000071478000000,0.000039083000000,0.000098342000000,0.000139824000000,0.000136664000000,0.000553058000000 +0.000023492500000,0.000025862500000,0.000034554000000,0.000087281000000,0.000054886000000,0.000103083000000,0.000072664000000,0.000039478000000,0.000098342000000,0.000140614000000,0.000134293000000,0.000603626000000 +0.000023294500000,0.000025467500000,0.000059838000000,0.000070688000000,0.000037898000000,0.000103083000000,0.000125602000000,0.000039083000000,0.000097947000000,0.000141404000000,0.000139823000000,0.000554638000000 +0.000023294500000,0.000043640500000,0.000050554000000,0.000071478000000,0.000039083000000,0.000103478000000,0.000108219000000,0.000039478000000,0.000182491000000,0.000140218000000,0.000140614000000,0.000554638000000 +0.000023097000000,0.000025862500000,0.000065171000000,0.000119281000000,0.000041058000000,0.000103083000000,0.000197108000000,0.000060021000000,0.000097948000000,0.000137058000000,0.000176565000000,0.000592564000000 +0.000022899500000,0.000025467500000,0.000041862500000,0.000103873000000,0.000040664000000,0.000102687000000,0.000088071000000,0.000109799000000,0.000097553000000,0.000136663000000,0.000140614000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000068529500000,0.000078194000000,0.000040268000000,0.000103478000000,0.000077404000000,0.000074244000000,0.000097157000000,0.000143380000000,0.000137059000000,0.000554638000000 +0.000023097000000,0.000025270000000,0.000068924500000,0.000077404000000,0.000037502000000,0.000102687000000,0.000078984000000,0.000041453000000,0.000097947000000,0.000137849000000,0.000136663000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000068924000000,0.000071083000000,0.000040663000000,0.000171824000000,0.000071083000000,0.000043824000000,0.000098342000000,0.000174589000000,0.000143379000000,0.000661305000000 +0.000022899500000,0.000026850000000,0.000034356000000,0.000070688000000,0.000041059000000,0.000119281000000,0.000072664000000,0.000052910000000,0.000097552000000,0.000136268000000,0.000138243000000,0.000552663000000 +0.000023492000000,0.000025467500000,0.000039492500000,0.000071478000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000154836000000,0.000555033000000 +0.000041270000000,0.000028825500000,0.000030405500000,0.000071478000000,0.000040664000000,0.000103083000000,0.000107033000000,0.000039478000000,0.000097552000000,0.000134688000000,0.000136268000000,0.000556218000000 +0.000023294500000,0.000025270000000,0.000023492000000,0.000078984000000,0.000037503000000,0.000103083000000,0.000073453000000,0.000039479000000,0.000181305000000,0.000136268000000,0.000136268000000,0.000285602000000 +0.000023690000000,0.000025467500000,0.000025270000000,0.000073848000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000096762000000,0.000140613000000,0.000134688000000,0.000553058000000 +0.000023097500000,0.000025862500000,0.000023294500000,0.000078984000000,0.000038688000000,0.000102688000000,0.000077009000000,0.000040269000000,0.000097947000000,0.000136663000000,0.000136663000000,0.000557009000000 +0.000023097000000,0.000025467500000,0.000023492000000,0.000113355000000,0.000040663000000,0.000103873000000,0.000079379000000,0.000039083000000,0.000099132000000,0.000136268000000,0.000140218000000,0.000565305000000 +0.000023294500000,0.000025467500000,0.000023097000000,0.000071084000000,0.000037503000000,0.000139429000000,0.000071083000000,0.000041059000000,0.000097552000000,0.000133898000000,0.000136663000000,0.000553058000000 +0.000023492000000,0.000025270000000,0.000023492000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000344465000000,0.000555033000000 +0.000023294500000,0.000035541500000,0.000024084500000,0.000071083000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000097948000000,0.000136268000000,0.000289947000000,0.000553058000000 +0.000023097000000,0.000051936500000,0.000024085000000,0.000071478000000,0.000038688000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097158000000,0.000136664000000,0.000136664000000,0.000688564000000 +0.000023689500000,0.000041862500000,0.000023887000000,0.000078984000000,0.000039083000000,0.000103083000000,0.000073453000000,0.000041058000000,0.000097553000000,0.000141404000000,0.000172219000000,0.000555033000000 +0.000023295000000,0.000027047500000,0.000023492000000,0.000073849000000,0.000074244000000,0.000102688000000,0.000071083000000,0.000040269000000,0.000162342000000,0.000137059000000,0.000136663000000,0.000552663000000 +0.000023295000000,0.000032776000000,0.000024084500000,0.000078194000000,0.000041058000000,0.000102688000000,0.000077009000000,0.000076614000000,0.000097947000000,0.000135083000000,0.000136268000000,0.000590589000000 +0.000023294500000,0.000026850000000,0.000024480000000,0.000077799000000,0.000038688000000,0.000102688000000,0.000096367000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000136663000000,0.000557403000000 +0.000033171000000,0.000025863000000,0.000024084500000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000141009000000,0.000134688000000,0.000590588000000 +0.000031788500000,0.000025270000000,0.000024085000000,0.000070688000000,0.000039083000000,0.000217650000000,0.000072663000000,0.000040663000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000553058000000 +0.000030800500000,0.000025467000000,0.000024085000000,0.000071083000000,0.000039478000000,0.000206589000000,0.000071083000000,0.000039478000000,0.000098737000000,0.000136663000000,0.000141009000000,0.000594144000000 +0.000023492500000,0.000025467500000,0.000023294500000,0.000197503000000,0.000040664000000,0.000125997000000,0.000071083000000,0.000038688000000,0.000097157000000,0.000136269000000,0.000153651000000,0.000285601000000 +0.000023097500000,0.000025270000000,0.000023887000000,0.000238194000000,0.000038688000000,0.000116516000000,0.000073059000000,0.000039083000000,0.000097947000000,0.000249651000000,0.000136663000000,0.000555034000000 +0.000046405500000,0.000025467500000,0.000037714500000,0.000171824000000,0.000041454000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000118096000000,0.000156416000000,0.000136269000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000031590500000,0.000097552000000,0.000040663000000,0.000102688000000,0.000076219000000,0.000041058000000,0.000142195000000,0.000140218000000,0.000141009000000,0.000590984000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000077800000000,0.000037898000000,0.000139034000000,0.000079774000000,0.000039478000000,0.000097948000000,0.000139429000000,0.000140614000000,0.000628120000000 +0.000023492000000,0.000047393500000,0.000024084500000,0.000071083000000,0.000041453000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000134688000000,0.000139824000000,0.000603231000000 +0.000023097000000,0.000033961000000,0.000024084500000,0.000109009000000,0.000038688000000,0.000103083000000,0.000072664000000,0.000039479000000,0.000097552000000,0.000137059000000,0.000175379000000,0.000613503000000 +0.000023295000000,0.000025467500000,0.000024480000000,0.000101108000000,0.000038688000000,0.000102688000000,0.000107034000000,0.000039873000000,0.000097157000000,0.000136664000000,0.000134688000000,0.000553058000000 +0.000023887000000,0.000025467500000,0.000024282000000,0.000071478000000,0.000055281000000,0.000103478000000,0.000071083000000,0.000041059000000,0.000097157000000,0.000133503000000,0.000135873000000,0.000554243000000 +0.000023294500000,0.000025665000000,0.000024875000000,0.000077799000000,0.000070293000000,0.000103083000000,0.000073058000000,0.000040663000000,0.000098342000000,0.000136664000000,0.000137058000000,0.000592959000000 +0.000023294500000,0.000025467500000,0.000022899500000,0.000074243000000,0.000039874000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000133898000000,0.000555033000000 +0.000023689500000,0.000025467500000,0.000023887000000,0.000079379000000,0.000041058000000,0.000103873000000,0.000076219000000,0.000041849000000,0.000136663000000,0.000136268000000,0.000137058000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000024677000000,0.000077799000000,0.000041058000000,0.000102688000000,0.000078984000000,0.000039478000000,0.000113749000000,0.000136664000000,0.000182490000000,0.000554639000000 +0.000023097500000,0.000025665000000,0.000023294500000,0.000070688000000,0.000055676000000,0.000139034000000,0.000071478000000,0.000041454000000,0.000097552000000,0.000137849000000,0.000136268000000,0.000696860000000 +0.000023295000000,0.000025467500000,0.000023690000000,0.000070688000000,0.000040269000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000136664000000,0.000137059000000,0.000285997000000 +0.000023689500000,0.000025467500000,0.000024085000000,0.000070688000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000075033000000,0.000097948000000,0.000136663000000,0.000137454000000,0.000561354000000 +0.000023294500000,0.000025862500000,0.000024084500000,0.000071478000000,0.000037503000000,0.000103083000000,0.000071478000000,0.000055280000000,0.000098343000000,0.000136663000000,0.000136663000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000113355000000,0.000039873000000,0.000102688000000,0.000073453000000,0.000040663000000,0.000096367000000,0.000141009000000,0.000136663000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000023294500000,0.000074244000000,0.000037503000000,0.000103083000000,0.000071083000000,0.000042639000000,0.000098343000000,0.000137848000000,0.000156021000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000023294500000,0.000078589000000,0.000040269000000,0.000103083000000,0.000118491000000,0.000039083000000,0.000097552000000,0.000140614000000,0.000141009000000,0.000553058000000 +0.000041270000000,0.000046800500000,0.000037121500000,0.000077404000000,0.000038688000000,0.000102688000000,0.000078589000000,0.000039083000000,0.000151675000000,0.000139429000000,0.000137849000000,0.000555033000000 +0.000023689500000,0.000025862500000,0.000024085000000,0.000070688000000,0.000039478000000,0.000122441000000,0.000071083000000,0.000039083000000,0.000298244000000,0.000136269000000,0.000139824000000,0.000553058000000 +0.000023295000000,0.000025467500000,0.000024677000000,0.000071083000000,0.000039083000000,0.000103083000000,0.000072664000000,0.000039873000000,0.000236614000000,0.000146145000000,0.000139429000000,0.000555429000000 +0.000023097000000,0.000025665000000,0.000024084500000,0.000070688000000,0.000040268000000,0.000103478000000,0.000071478000000,0.000041059000000,0.000119675000000,0.000136663000000,0.000136268000000,0.000552268000000 +0.000023294500000,0.000025665000000,0.000024085000000,0.000071478000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000111775000000,0.000137058000000,0.000145750000000,0.000554638000000 +0.000023097000000,0.000025270000000,0.000023689500000,0.000078985000000,0.000039084000000,0.000102688000000,0.000073454000000,0.000039479000000,0.000096762000000,0.000136268000000,0.000206589000000,0.000556219000000 +0.000023097000000,0.000028825500000,0.000024677000000,0.000074244000000,0.000041848000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000133502000000,0.000137849000000,0.000137058000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000023887500000,0.000079379000000,0.000038293000000,0.000103083000000,0.000077404000000,0.000039873000000,0.000097157000000,0.000141009000000,0.000136268000000,0.000590984000000 +0.000023887500000,0.000025665000000,0.000024085000000,0.000077799000000,0.000037503000000,0.000102688000000,0.000078589000000,0.000039873000000,0.000097553000000,0.000138243000000,0.000137058000000,0.000641552000000 +0.000023690000000,0.000025467500000,0.000023492000000,0.000107034000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097553000000,0.000136268000000,0.000141009000000,0.000287181000000 +0.000023097000000,0.000025269500000,0.000023887000000,0.000070688000000,0.000038688000000,0.000138638000000,0.000072664000000,0.000040663000000,0.000097158000000,0.000136663000000,0.000138243000000,0.000553453000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000071083000000,0.000040664000000,0.000103083000000,0.000122836000000,0.000039873000000,0.000097158000000,0.000137454000000,0.000172219000000,0.000590984000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000071478000000,0.000037503000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000096762000000,0.000137058000000,0.000136268000000,0.000553058000000 +0.000023492000000,0.000025270000000,0.000023689500000,0.000078194000000,0.000076219000000,0.000103083000000,0.000073454000000,0.000039873000000,0.000097948000000,0.000136663000000,0.000137453000000,0.000556219000000 +0.000023294500000,0.000025467500000,0.000024282500000,0.000074243000000,0.000037503000000,0.000103083000000,0.000071083000000,0.000075429000000,0.000097158000000,0.000139824000000,0.000136268000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000023492500000,0.000079379000000,0.000037503000000,0.000102688000000,0.000077009000000,0.000039479000000,0.000133503000000,0.000136663000000,0.000136664000000,0.000557799000000 +0.000023097000000,0.000033961000000,0.000023887000000,0.000077404000000,0.000038688000000,0.000102688000000,0.000115330000000,0.000039478000000,0.000110984000000,0.000139823000000,0.000139824000000,0.000554639000000 +0.000023887500000,0.000025665000000,0.000023689500000,0.000070688000000,0.000041453000000,0.000102293000000,0.000086095000000,0.000039874000000,0.000098343000000,0.000134688000000,0.000172614000000,0.000552268000000 +0.000032973500000,0.000025665000000,0.000037912000000,0.000070688000000,0.000039873000000,0.000102688000000,0.000073059000000,0.000039478000000,0.000098738000000,0.000138639000000,0.000139428000000,0.000557009000000 +0.000023295000000,0.000025665000000,0.000023492000000,0.000070688000000,0.000040664000000,0.000145354000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000141799000000,0.000134688000000,0.000555033000000 +0.000023294500000,0.000025270000000,0.000023492000000,0.000090046000000,0.000041058000000,0.000103478000000,0.000071478000000,0.000039083000000,0.000096762000000,0.000136663000000,0.000139034000000,0.000555034000000 +0.000023294500000,0.000025270000000,0.000023492000000,0.000078194000000,0.000037898000000,0.000103479000000,0.000127972000000,0.000039478000000,0.000098737000000,0.000154836000000,0.000141009000000,0.000555033000000 +0.000023097000000,0.000025665000000,0.000023097000000,0.000075429000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000140614000000,0.000136663000000,0.000609947000000 +0.000023492000000,0.000033961000000,0.000024084500000,0.000078590000000,0.000039873000000,0.000102688000000,0.000077404000000,0.000039478000000,0.000098737000000,0.000137058000000,0.000170639000000,0.000285996000000 +0.000023097000000,0.000032776000000,0.000023492500000,0.000077404000000,0.000038293000000,0.000102688000000,0.000079380000000,0.000040663000000,0.000133898000000,0.000136664000000,0.000140614000000,0.000554639000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000070688000000,0.000038293000000,0.000102688000000,0.000071083000000,0.000040664000000,0.000097552000000,0.000142194000000,0.000137058000000,0.000555428000000 +0.000023295000000,0.000025270000000,0.000024084500000,0.000071083000000,0.000037898000000,0.000102688000000,0.000072663000000,0.000040663000000,0.000097157000000,0.000136663000000,0.000136268000000,0.000554638000000 +0.000022899500000,0.000025665000000,0.000038504500000,0.000070688000000,0.000039083000000,0.000139034000000,0.000071479000000,0.000039478000000,0.000097157000000,0.000136664000000,0.000141799000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000071478000000,0.000037503000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000137058000000,0.000552663000000 +0.000023294500000,0.000025862500000,0.000024677500000,0.000077799000000,0.000038293000000,0.000102688000000,0.000073454000000,0.000039083000000,0.000097157000000,0.000137058000000,0.000136269000000,0.000688564000000 +0.000023492000000,0.000035344000000,0.000023887500000,0.000074244000000,0.000038293000000,0.000103873000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000132712000000,0.000211725000000,0.000572021000000 +0.000023492000000,0.000033369000000,0.000023294500000,0.000078984000000,0.000039083000000,0.000103083000000,0.000076614000000,0.000040268000000,0.000097948000000,0.000136268000000,0.000136663000000,0.000555034000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000113355000000,0.000040663000000,0.000102293000000,0.000116120000000,0.000041059000000,0.000097553000000,0.000170638000000,0.000133108000000,0.000604811000000 +0.000023097000000,0.000026850000000,0.000023492000000,0.000070688000000,0.000075033000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000136664000000,0.000553058000000 +0.000023097500000,0.000025269500000,0.000023492000000,0.000071083000000,0.000037503000000,0.000102688000000,0.000073059000000,0.000074639000000,0.000133502000000,0.000137849000000,0.000135083000000,0.000558589000000 +0.000023492500000,0.000028233000000,0.000024085000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000043429000000,0.000097157000000,0.000135083000000,0.000136269000000,0.000553058000000 +0.000023689500000,0.000025270000000,0.000069714500000,0.000071479000000,0.000039874000000,0.000195133000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000138243000000,0.000208564000000,0.000590193000000 +0.000062010500000,0.000025665000000,0.000047788500000,0.000078984000000,0.000038293000000,0.000102688000000,0.000073059000000,0.000039873000000,0.000097553000000,0.000138244000000,0.000135083000000,0.000556613000000 +0.000023097000000,0.000025467500000,0.000039492500000,0.000073848000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039874000000,0.000097158000000,0.000141404000000,0.000138244000000,0.000287972000000 +0.000023295000000,0.000025467500000,0.000023492000000,0.000078194000000,0.000041454000000,0.000102688000000,0.000076218000000,0.000041058000000,0.000097158000000,0.000137453000000,0.000138639000000,0.000553058000000 +0.000023097500000,0.000028825500000,0.000023097000000,0.000077404000000,0.000041059000000,0.000102293000000,0.000079379000000,0.000039478000000,0.000097553000000,0.000138243000000,0.000133108000000,0.000555033000000 +0.000023492000000,0.000025467500000,0.000023887000000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071478000000,0.000040268000000,0.000097552000000,0.000136663000000,0.000137848000000,0.000553848000000 +0.000023294500000,0.000025665000000,0.000023689500000,0.000070688000000,0.000039873000000,0.000103084000000,0.000072663000000,0.000039083000000,0.000097552000000,0.000134292000000,0.000174590000000,0.000557008000000 +0.000024282000000,0.000025467500000,0.000024085000000,0.000071083000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000133502000000,0.000139824000000,0.000136268000000,0.000552663000000 +0.000022899500000,0.000025269500000,0.000023294500000,0.000120466000000,0.000039478000000,0.000139429000000,0.000107033000000,0.000039083000000,0.000097552000000,0.000161947000000,0.000134293000000,0.000593354000000 +0.000023295000000,0.000025270000000,0.000023887000000,0.000078590000000,0.000038688000000,0.000103083000000,0.000073453000000,0.000039478000000,0.000097553000000,0.000136268000000,0.000139824000000,0.000554638000000 +0.000023097500000,0.000043443000000,0.000023294500000,0.000075034000000,0.000041058000000,0.000103083000000,0.000071478000000,0.000039479000000,0.000097157000000,0.000135873000000,0.000136269000000,0.000553453000000 +0.000023097500000,0.000025665000000,0.000023492000000,0.000079380000000,0.000037503000000,0.000103873000000,0.000076614000000,0.000041058000000,0.000097948000000,0.000139824000000,0.000136268000000,0.000592169000000 +0.000023294500000,0.000025467500000,0.000023097000000,0.000077404000000,0.000037898000000,0.000103083000000,0.000078590000000,0.000039478000000,0.000097948000000,0.000136663000000,0.000172218000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000022899500000,0.000070688000000,0.000040268000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000136663000000,0.000139824000000,0.000559379000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136663000000,0.000555033000000 +0.000023097000000,0.000025270000000,0.000033566500000,0.000070688000000,0.000039478000000,0.000103083000000,0.000071084000000,0.000039873000000,0.000097552000000,0.000137059000000,0.000136663000000,0.000665651000000 +0.000023294500000,0.000025467500000,0.000059442500000,0.000071083000000,0.000041454000000,0.000139824000000,0.000071083000000,0.000041453000000,0.000131527000000,0.000136268000000,0.000136268000000,0.000285997000000 +0.000023097000000,0.000025467500000,0.000023492000000,0.000078194000000,0.000058441000000,0.000103083000000,0.000073453000000,0.000039084000000,0.000112170000000,0.000141009000000,0.000136269000000,0.000554638000000 +0.000033171500000,0.000025467500000,0.000024480000000,0.000073849000000,0.000039873000000,0.000102293000000,0.000071478000000,0.000085700000000,0.000097947000000,0.000136664000000,0.000216071000000,0.000593355000000 +0.000031393000000,0.000025467000000,0.000023492500000,0.000149701000000,0.000038688000000,0.000139824000000,0.000076614000000,0.000039478000000,0.000096762000000,0.000135083000000,0.000137454000000,0.000552663000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000077404000000,0.000040663000000,0.000120465000000,0.000116120000000,0.000039873000000,0.000097552000000,0.000137848000000,0.000136268000000,0.000604811000000 +0.000023294500000,0.000025467500000,0.000024084500000,0.000070688000000,0.000037503000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000143379000000,0.000135478000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000070688000000,0.000041453000000,0.000102293000000,0.000072664000000,0.000041058000000,0.000097157000000,0.000136269000000,0.000137848000000,0.000590984000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000142985000000,0.000553453000000 +0.000023097000000,0.000025467500000,0.000023689500000,0.000071083000000,0.000041058000000,0.000123231000000,0.000071478000000,0.000039083000000,0.000098342000000,0.000140218000000,0.000169454000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000024084500000,0.000077404000000,0.000037503000000,0.000147330000000,0.000073454000000,0.000039083000000,0.000097157000000,0.000138243000000,0.000135873000000,0.000639576000000 +0.000023294500000,0.000043442500000,0.000024085000000,0.000074244000000,0.000037503000000,0.000103873000000,0.000071083000000,0.000040663000000,0.000114145000000,0.000132713000000,0.000140219000000,0.000553058000000 +0.000023887500000,0.000025665000000,0.000024874500000,0.000078194000000,0.000038688000000,0.000103083000000,0.000077009000000,0.000040663000000,0.000097947000000,0.000133503000000,0.000138244000000,0.000558194000000 +0.000023294500000,0.000025467500000,0.000023689500000,0.000077799000000,0.000037502000000,0.000103478000000,0.000079775000000,0.000039083000000,0.000136663000000,0.000270194000000,0.000132713000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000023294500000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000140219000000,0.000133898000000,0.000590984000000 +0.000023097000000,0.000025467500000,0.000023492500000,0.000106638000000,0.000041059000000,0.000102688000000,0.000073059000000,0.000039083000000,0.000097552000000,0.000139824000000,0.000138244000000,0.000558194000000 +0.000023294500000,0.000025862500000,0.000023492500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000090836000000,0.000039478000000,0.000098342000000,0.000144170000000,0.000176170000000,0.000285997000000 +0.000023097000000,0.000025467500000,0.000024677000000,0.000071478000000,0.000039478000000,0.000103083000000,0.000071479000000,0.000041059000000,0.000097947000000,0.000139824000000,0.000139429000000,0.000552663000000 +0.000023097000000,0.000025467500000,0.000042060000000,0.000077799000000,0.000038688000000,0.000139033000000,0.000073453000000,0.000039083000000,0.000098342000000,0.000137453000000,0.000144169000000,0.000590589000000 +0.000023097000000,0.000025665000000,0.000023492000000,0.000074244000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000040664000000,0.000116515000000,0.000137849000000,0.000139824000000,0.000554639000000 +0.000022899500000,0.000025467500000,0.000023097000000,0.000078589000000,0.000041058000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000114540000000,0.000136269000000,0.000136663000000,0.000555033000000 +0.000023295000000,0.000025665000000,0.000023492000000,0.000077404000000,0.000037502000000,0.000102688000000,0.000078589000000,0.000039874000000,0.000097552000000,0.000133108000000,0.000137454000000,0.000591379000000 +0.000041072000000,0.000025270000000,0.000023294500000,0.000070688000000,0.000060416000000,0.000103083000000,0.000071083000000,0.000040268000000,0.000097552000000,0.000135873000000,0.000172219000000,0.000556218000000 +0.000023295000000,0.000025270000000,0.000024085000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000072663000000,0.000103083000000,0.000098343000000,0.000136663000000,0.000133107000000,0.000589799000000 +0.000023295000000,0.000025862500000,0.000023492000000,0.000070688000000,0.000040269000000,0.000103083000000,0.000071083000000,0.000040663000000,0.000098343000000,0.000136268000000,0.000136268000000,0.000552268000000 +0.000023097000000,0.000026257500000,0.000024677000000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071478000000,0.000039479000000,0.000097552000000,0.000137059000000,0.000136664000000,0.000788910000000 +0.000023097000000,0.000025665000000,0.000023887500000,0.000078590000000,0.000038688000000,0.000138639000000,0.000073453000000,0.000039083000000,0.000097552000000,0.000132713000000,0.000135873000000,0.000555823000000 +0.000023097000000,0.000043442500000,0.000024282500000,0.000110194000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039874000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000552663000000 +0.000023294500000,0.000032183500000,0.000024084500000,0.000077799000000,0.000038293000000,0.000103873000000,0.000112565000000,0.000041058000000,0.000098342000000,0.000136663000000,0.000169059000000,0.000607577000000 +0.000023294500000,0.000025269500000,0.000024480000000,0.000077404000000,0.000039083000000,0.000103083000000,0.000079775000000,0.000039478000000,0.000168663000000,0.000135083000000,0.000137058000000,0.000557009000000 +0.000023294500000,0.000025665000000,0.000023887000000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071478000000,0.000040663000000,0.000097947000000,0.000139824000000,0.000136268000000,0.000285601000000 +0.000023294500000,0.000025269500000,0.000023294500000,0.000070688000000,0.000038688000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000141799000000,0.000134293000000,0.000552267000000 +0.000023097000000,0.000025467500000,0.000024677000000,0.000070688000000,0.000039478000000,0.000103083000000,0.000071479000000,0.000039478000000,0.000097553000000,0.000156416000000,0.000139824000000,0.000556613000000 +0.000023294500000,0.000029023000000,0.000024282500000,0.000071478000000,0.000039874000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000098738000000,0.000140614000000,0.000140614000000,0.000554638000000 +0.000023097500000,0.000025467500000,0.000024677000000,0.000077799000000,0.000041058000000,0.000102688000000,0.000073453000000,0.000041058000000,0.000097552000000,0.000137058000000,0.000140613000000,0.000553058000000 +0.000023295000000,0.000025467000000,0.000023097000000,0.000073454000000,0.000040268000000,0.000152861000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000156811000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000041270000000,0.000077404000000,0.000038688000000,0.000103083000000,0.000077009000000,0.000039083000000,0.000098342000000,0.000143379000000,0.000137453000000,0.000553058000000 +0.000023492000000,0.000025269500000,0.000023294500000,0.000077799000000,0.000037503000000,0.000103873000000,0.000079380000000,0.000039478000000,0.000098342000000,0.000138244000000,0.000136663000000,0.000554638000000 +0.000023097000000,0.000025862500000,0.000024084500000,0.000131133000000,0.000040663000000,0.000103083000000,0.000071478000000,0.000041453000000,0.000182095000000,0.000137454000000,0.000143380000000,0.000552663000000 +0.000023294500000,0.000025467000000,0.000024677500000,0.000070688000000,0.000040664000000,0.000102688000000,0.000073058000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000138639000000,0.000554243000000 +0.000032776000000,0.000025270000000,0.000023097000000,0.000071083000000,0.000039478000000,0.000102688000000,0.000141799000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000136268000000,0.000553058000000 +0.000031393500000,0.000026060500000,0.000024084500000,0.000071478000000,0.000040664000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000134688000000,0.000250441000000,0.000558589000000 +0.000023097000000,0.000043640500000,0.000023887500000,0.000077405000000,0.000038688000000,0.000103083000000,0.000073453000000,0.000110589000000,0.000098343000000,0.000136663000000,0.000156021000000,0.000590194000000 +0.000023097000000,0.000026850500000,0.000023097500000,0.000073849000000,0.000090441000000,0.000159182000000,0.000071084000000,0.000039083000000,0.000098342000000,0.000140614000000,0.000134688000000,0.000566490000000 +0.000024085000000,0.000025467500000,0.000031196000000,0.000079774000000,0.000038688000000,0.000102688000000,0.000077404000000,0.000040663000000,0.000097947000000,0.000174589000000,0.000136664000000,0.000937058000000 +0.000023294500000,0.000027047500000,0.000026257500000,0.000077799000000,0.000040663000000,0.000103873000000,0.000079379000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000140219000000,0.000285996000000 +0.000023097000000,0.000025270000000,0.000026060000000,0.000070688000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000099132000000,0.000133107000000,0.000172219000000,0.000555428000000 +0.000023492000000,0.000025270000000,0.000024677500000,0.000070688000000,0.000039083000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000134293000000,0.000137058000000,0.000135873000000,0.000555034000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000090441000000,0.000038688000000,0.000103873000000,0.000071873000000,0.000039479000000,0.000098342000000,0.000136268000000,0.000133503000000,0.000553058000000 +0.000023294500000,0.000025665000000,0.000024480000000,0.000136268000000,0.000041058000000,0.000103874000000,0.000071083000000,0.000040268000000,0.000097157000000,0.000136664000000,0.000136268000000,0.000557009000000 +0.000023294500000,0.000025467500000,0.000025269500000,0.000079379000000,0.000038293000000,0.000102688000000,0.000073058000000,0.000041058000000,0.000098342000000,0.000141404000000,0.000136269000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000075428000000,0.000041058000000,0.000121650000000,0.000117700000000,0.000039873000000,0.000098343000000,0.000136268000000,0.000136663000000,0.000562935000000 +0.000023295000000,0.000025467500000,0.000024480000000,0.000077799000000,0.000040663000000,0.000119676000000,0.000077404000000,0.000041058000000,0.000097553000000,0.000135084000000,0.000136268000000,0.000683824000000 +0.000023097500000,0.000025665000000,0.000025467500000,0.000077404000000,0.000037898000000,0.000103083000000,0.000079774000000,0.000039479000000,0.000097948000000,0.000136663000000,0.000172613000000,0.000554243000000 +0.000023097000000,0.000025467500000,0.000025862500000,0.000071083000000,0.000037897000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000175774000000,0.000138244000000,0.000557009000000 +0.000023097000000,0.000029023000000,0.000026060000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000072664000000,0.000041059000000,0.000097157000000,0.000151280000000,0.000136268000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000025467500000,0.000071083000000,0.000038688000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000133502000000,0.000136268000000,0.000133108000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000024479500000,0.000071478000000,0.000041059000000,0.000103873000000,0.000071478000000,0.000039083000000,0.000097553000000,0.000341305000000,0.000135873000000,0.000554243000000 +0.000023887000000,0.000043442500000,0.000025467500000,0.000077799000000,0.000038688000000,0.000102688000000,0.000073059000000,0.000039083000000,0.000098343000000,0.000197503000000,0.000136663000000,0.000557008000000 +0.000050554000000,0.000025467500000,0.000025072500000,0.000074244000000,0.000041848000000,0.000103478000000,0.000071083000000,0.000040664000000,0.000097157000000,0.000154441000000,0.000185255000000,0.000285997000000 +0.000022899500000,0.000025270000000,0.000024677000000,0.000114935000000,0.000040664000000,0.000140219000000,0.000077405000000,0.000041059000000,0.000097552000000,0.000140219000000,0.000133898000000,0.000666441000000 +0.000023097500000,0.000025862500000,0.000025467500000,0.000077799000000,0.000039083000000,0.000103083000000,0.000080169000000,0.000110984000000,0.000097552000000,0.000140614000000,0.000133503000000,0.000555033000000 +0.000023887500000,0.000025467500000,0.000025467500000,0.000071478000000,0.000077009000000,0.000103478000000,0.000090046000000,0.000039479000000,0.000097552000000,0.000134688000000,0.000140218000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000070688000000,0.000037898000000,0.000103873000000,0.000088465000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000139824000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000134688000000,0.000553058000000 +0.000023097000000,0.000025665000000,0.000026060500000,0.000071478000000,0.000037898000000,0.000103083000000,0.000071479000000,0.000041453000000,0.000133107000000,0.000133897000000,0.000172218000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000026060500000,0.000077404000000,0.000040664000000,0.000103478000000,0.000073453000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000137058000000,0.000553453000000 +0.000023689500000,0.000025665000000,0.000024480000000,0.000073848000000,0.000039083000000,0.000102688000000,0.000071478000000,0.000038688000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000025270000000,0.000078194000000,0.000041059000000,0.000102688000000,0.000077009000000,0.000041849000000,0.000097948000000,0.000173404000000,0.000136663000000,0.000553058000000 +0.000023097500000,0.000025270000000,0.000026060000000,0.000077799000000,0.000041059000000,0.000149701000000,0.000078984000000,0.000039478000000,0.000097948000000,0.000136663000000,0.000136269000000,0.000554639000000 +0.000023295000000,0.000025665000000,0.000025072000000,0.000071083000000,0.000038293000000,0.000103083000000,0.000071084000000,0.000041453000000,0.000097157000000,0.000137454000000,0.000133108000000,0.000556613000000 +0.000023097000000,0.000025270000000,0.000030603500000,0.000070688000000,0.000040268000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000098342000000,0.000136664000000,0.000136664000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000051739000000,0.000106244000000,0.000040663000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000203429000000,0.000555033000000 +0.000023492000000,0.000025665000000,0.000078010500000,0.000084910000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000041059000000,0.000097552000000,0.000136268000000,0.000135874000000,0.000556613000000 +0.000024084500000,0.000050751500000,0.000042258000000,0.000078194000000,0.000038688000000,0.000103083000000,0.000109404000000,0.000039083000000,0.000097157000000,0.000212911000000,0.000136663000000,0.000285602000000 +0.000023097500000,0.000025467500000,0.000026258000000,0.000073848000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000042638000000,0.000134293000000,0.000137849000000,0.000136663000000,0.000554638000000 +0.000023295000000,0.000025467500000,0.000025665000000,0.000077799000000,0.000039874000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000098342000000,0.000139429000000,0.000141404000000,0.000613107000000 +0.000046603000000,0.000025665000000,0.000026060000000,0.000077799000000,0.000041058000000,0.000139034000000,0.000079380000000,0.000039478000000,0.000098737000000,0.000139824000000,0.000137453000000,0.000553453000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000136664000000,0.000155626000000,0.000597700000000 +0.000023097000000,0.000028430500000,0.000026455000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000097157000000,0.000145750000000,0.000139428000000,0.000553058000000 +0.000023294500000,0.000025665000000,0.000026060000000,0.000071478000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000077009000000,0.000135478000000,0.000174194000000,0.000136663000000,0.000557799000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000071478000000,0.000040663000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000103873000000,0.000137058000000,0.000141404000000,0.000553058000000 +0.000023097500000,0.000026060000000,0.000025467500000,0.000077404000000,0.000092812000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000103478000000,0.000136663000000,0.000136663000000,0.000554243000000 +0.000023097500000,0.000025665000000,0.000024677500000,0.000093207000000,0.000041453000000,0.000103873000000,0.000071478000000,0.000041058000000,0.000103083000000,0.000137058000000,0.000136663000000,0.000556613000000 +0.000023097000000,0.000028825500000,0.000025072500000,0.000110589000000,0.000037898000000,0.000103083000000,0.000077009000000,0.000039478000000,0.000183676000000,0.000140614000000,0.000182095000000,0.000555428000000 +0.000023294500000,0.000025270000000,0.000024874500000,0.000077404000000,0.000038688000000,0.000102688000000,0.000080170000000,0.000039083000000,0.000097947000000,0.000138243000000,0.000180515000000,0.000590984000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000070688000000,0.000041058000000,0.000139034000000,0.000107034000000,0.000039083000000,0.000097157000000,0.000196712000000,0.000133503000000,0.000555034000000 +0.000023294500000,0.000025862500000,0.000026060000000,0.000071083000000,0.000037898000000,0.000103083000000,0.000072664000000,0.000039478000000,0.000098342000000,0.000188811000000,0.000133503000000,0.000556613000000 +0.000023294500000,0.000025467500000,0.000024875000000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000136663000000,0.000285996000000 +0.000023294500000,0.000034159000000,0.000025072000000,0.000071083000000,0.000037898000000,0.000102293000000,0.000071083000000,0.000039874000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000025467500000,0.000079775000000,0.000039873000000,0.000102688000000,0.000073059000000,0.000039083000000,0.000097157000000,0.000136663000000,0.000173799000000,0.000555428000000 +0.000023295000000,0.000025467500000,0.000025665000000,0.000074639000000,0.000040268000000,0.000102688000000,0.000071478000000,0.000039874000000,0.000097948000000,0.000139429000000,0.000136268000000,0.000554639000000 +0.000023295000000,0.000025467000000,0.000025270000000,0.000078984000000,0.000039083000000,0.000103083000000,0.000077404000000,0.000039083000000,0.000133898000000,0.000174589000000,0.000133503000000,0.000552663000000 +0.000023294500000,0.000025270000000,0.000025072000000,0.000077799000000,0.000038293000000,0.000103083000000,0.000078984000000,0.000039083000000,0.000097157000000,0.000139824000000,0.000135873000000,0.000554638000000 +0.000023492000000,0.000025270000000,0.000024282500000,0.000090442000000,0.000041453000000,0.000163527000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000134292000000,0.000136663000000,0.000554638000000 +0.000041467500000,0.000025467500000,0.000026060000000,0.000070688000000,0.000039874000000,0.000174194000000,0.000073059000000,0.000039478000000,0.000097552000000,0.000139034000000,0.000139428000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000025072000000,0.000070688000000,0.000040663000000,0.000135479000000,0.000071083000000,0.000059231000000,0.000097947000000,0.000140614000000,0.000171033000000,0.000662885000000 +0.000023492000000,0.000025467500000,0.000024677500000,0.000071478000000,0.000041058000000,0.000103478000000,0.000104663000000,0.000055281000000,0.000096762000000,0.000136664000000,0.000139033000000,0.000570835000000 +0.000023294500000,0.000025467500000,0.000024875000000,0.000077404000000,0.000038293000000,0.000102688000000,0.000088465000000,0.000054096000000,0.000098738000000,0.000149700000000,0.000135873000000,0.000554638000000 +0.000023689500000,0.000025270000000,0.000025467500000,0.000073848000000,0.000038293000000,0.000103873000000,0.000071083000000,0.000093997000000,0.000098737000000,0.000140614000000,0.000136269000000,0.000557009000000 +0.000023294500000,0.000025665000000,0.000026257500000,0.000078589000000,0.000038293000000,0.000102688000000,0.000077404000000,0.000039873000000,0.000097947000000,0.000136663000000,0.000138244000000,0.000647873000000 +0.000023097500000,0.000025467500000,0.000025270000000,0.000077799000000,0.000058046000000,0.000102688000000,0.000079774000000,0.000039478000000,0.000116910000000,0.000136664000000,0.000133503000000,0.000555033000000 +0.000023492500000,0.000025467500000,0.000024875000000,0.000071083000000,0.000071083000000,0.000119675000000,0.000071083000000,0.000041058000000,0.000113750000000,0.000141404000000,0.000156417000000,0.000556218000000 +0.000023097000000,0.000025467500000,0.000043047500000,0.000070688000000,0.000039478000000,0.000102688000000,0.000073059000000,0.000040664000000,0.000097947000000,0.000136663000000,0.000226342000000,0.000306935000000 +0.000023294500000,0.000043640500000,0.000025467500000,0.000071478000000,0.000039084000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000137059000000,0.000171428000000,0.000569651000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000071478000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000097947000000,0.000398194000000,0.000136663000000,0.000595330000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000113749000000,0.000037898000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097157000000,0.000339725000000,0.000136663000000,0.000552663000000 +0.000023097000000,0.000025269500000,0.000025467500000,0.000073848000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097157000000,0.000146145000000,0.000136664000000,0.000880959000000 +0.000023492000000,0.000025665000000,0.000024875000000,0.000078194000000,0.000038293000000,0.000103083000000,0.000077405000000,0.000039083000000,0.000097947000000,0.000137058000000,0.000172219000000,0.000554638000000 +0.000023295000000,0.000025665000000,0.000025467000000,0.000077404000000,0.000040663000000,0.000102688000000,0.000187231000000,0.000041059000000,0.000097157000000,0.000135083000000,0.000136269000000,0.000555824000000 +0.000023097500000,0.000025665000000,0.000025467500000,0.000070688000000,0.000038293000000,0.000175379000000,0.000111379000000,0.000039478000000,0.000097157000000,0.000135874000000,0.000136663000000,0.000590589000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000071084000000,0.000039478000000,0.000103083000000,0.000090046000000,0.000041058000000,0.000134688000000,0.000137453000000,0.000134688000000,0.000552268000000 +0.000023689500000,0.000025270000000,0.000025467500000,0.000071083000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000097552000000,0.000135083000000,0.000136268000000,0.000592169000000 +0.000023689500000,0.000025665000000,0.000026060000000,0.000071479000000,0.000039873000000,0.000102293000000,0.000071478000000,0.000040663000000,0.000097947000000,0.000138244000000,0.000138243000000,0.000592169000000 +0.000031591000000,0.000025467500000,0.000025467500000,0.000078589000000,0.000038293000000,0.000103478000000,0.000073454000000,0.000039478000000,0.000097157000000,0.000139429000000,0.000207379000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024677000000,0.000073848000000,0.000038293000000,0.000138243000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000140218000000,0.000152861000000,0.000557008000000 +0.000023097000000,0.000025862500000,0.000025665000000,0.000078984000000,0.000041453000000,0.000134688000000,0.000077404000000,0.000039083000000,0.000097552000000,0.000137848000000,0.000138638000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000026060000000,0.000077405000000,0.000041453000000,0.000103083000000,0.000098737000000,0.000039478000000,0.000097157000000,0.000138243000000,0.000136268000000,0.000287577000000 +0.000024085000000,0.000025270000000,0.000025467500000,0.000087281000000,0.000037503000000,0.000139033000000,0.000096762000000,0.000075428000000,0.000097157000000,0.000136268000000,0.000137848000000,0.000553058000000 +0.000023097000000,0.000025467000000,0.000025072000000,0.000070688000000,0.000041058000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000097947000000,0.000134293000000,0.000138638000000,0.000557404000000 +0.000023097000000,0.000043443000000,0.000025665000000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000133898000000,0.000139824000000,0.000172218000000,0.000553058000000 +0.000023097000000,0.000025665000000,0.000025467500000,0.000071083000000,0.000074638000000,0.000103083000000,0.000071479000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000137453000000,0.000554243000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000078194000000,0.000037897000000,0.000102293000000,0.000073453000000,0.000039478000000,0.000098342000000,0.000136268000000,0.000139428000000,0.000553453000000 +0.000023294500000,0.000029023000000,0.000025467500000,0.000074244000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000039084000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000573996000000 +0.000023097000000,0.000025467500000,0.000052134000000,0.000078194000000,0.000039874000000,0.000103873000000,0.000077404000000,0.000040663000000,0.000098343000000,0.000139429000000,0.000136268000000,0.000622589000000 +0.000023294500000,0.000025665000000,0.000043048000000,0.000077404000000,0.000038293000000,0.000103083000000,0.000078589000000,0.000039478000000,0.000098342000000,0.000136664000000,0.000136268000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025072000000,0.000071083000000,0.000038293000000,0.000122046000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000136268000000,0.000154836000000,0.000554638000000 +0.000023295000000,0.000025862500000,0.000024875000000,0.000070688000000,0.000038293000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000137453000000,0.000152466000000,0.000553058000000 +0.000023295000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136664000000,0.000558194000000 +0.000023294500000,0.000025270000000,0.000025467000000,0.000107033000000,0.000041453000000,0.000102688000000,0.000071084000000,0.000041453000000,0.000136268000000,0.000136269000000,0.000136268000000,0.000553453000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000079379000000,0.000038688000000,0.000103083000000,0.000144169000000,0.000039478000000,0.000188417000000,0.000141009000000,0.000136268000000,0.000559379000000 +0.000022899500000,0.000025665000000,0.000026060000000,0.000074243000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000116910000000,0.000136663000000,0.000135874000000,0.000558589000000 +0.000050158500000,0.000025467500000,0.000043047500000,0.000078984000000,0.000038293000000,0.000102688000000,0.000076614000000,0.000039873000000,0.000112169000000,0.000135478000000,0.000137454000000,0.000285601000000 +0.000031591000000,0.000025270000000,0.000033961500000,0.000077404000000,0.000039478000000,0.000103478000000,0.000080169000000,0.000039083000000,0.000137453000000,0.000174984000000,0.000136268000000,0.000553453000000 +0.000024480000000,0.000025665000000,0.000024874500000,0.000071083000000,0.000037898000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000115330000000,0.000193947000000,0.000135083000000,0.000554639000000 +0.000023097000000,0.000025665000000,0.000025467500000,0.000070688000000,0.000041454000000,0.000139429000000,0.000072664000000,0.000041058000000,0.000097157000000,0.000136268000000,0.000133503000000,0.000554638000000 +0.000023097000000,0.000043442500000,0.000025072500000,0.000070688000000,0.000039083000000,0.000103084000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000135873000000,0.000135083000000,0.000554639000000 +0.000023097000000,0.000025467500000,0.000026257500000,0.000071083000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000133108000000,0.000140219000000,0.000136268000000,0.000820119000000 +0.000023097000000,0.000025665000000,0.000025269500000,0.000077009000000,0.000039478000000,0.000103874000000,0.000073059000000,0.000082145000000,0.000098342000000,0.000137849000000,0.000135873000000,0.000673157000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000074244000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000056861000000,0.000097552000000,0.000133108000000,0.000171429000000,0.000553453000000 +0.000023492000000,0.000025862500000,0.000025665000000,0.000079380000000,0.000037503000000,0.000103084000000,0.000077404000000,0.000041059000000,0.000098737000000,0.000134688000000,0.000147725000000,0.000554638000000 +0.000022899500000,0.000025862500000,0.000025467500000,0.000113750000000,0.000073058000000,0.000103873000000,0.000113355000000,0.000039478000000,0.000097947000000,0.000138243000000,0.000136268000000,0.000555033000000 +0.000023097500000,0.000025467500000,0.000024677000000,0.000070688000000,0.000055676000000,0.000103083000000,0.000086491000000,0.000039083000000,0.000098343000000,0.000140219000000,0.000137059000000,0.000721354000000 +0.000023492500000,0.000025665000000,0.000025665000000,0.000071083000000,0.000040663000000,0.000103873000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000139429000000,0.000137849000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000024875000000,0.000070688000000,0.000039873000000,0.000139428000000,0.000071478000000,0.000039479000000,0.000096367000000,0.000144565000000,0.000133108000000,0.000555034000000 +0.000023097000000,0.000025467500000,0.000025270000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000097552000000,0.000140219000000,0.000174985000000,0.000556218000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000077799000000,0.000040268000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000133502000000,0.000137453000000,0.000150491000000,0.000285206000000 +0.000023294500000,0.000025862500000,0.000025467500000,0.000074243000000,0.000041454000000,0.000103083000000,0.000071083000000,0.000041453000000,0.000097157000000,0.000137453000000,0.000132318000000,0.000605601000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000078589000000,0.000041453000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000097552000000,0.000136664000000,0.000136664000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000024677000000,0.000077799000000,0.000037898000000,0.000103083000000,0.000080169000000,0.000039083000000,0.000097552000000,0.000133503000000,0.000137453000000,0.000650243000000 +0.000046603500000,0.000025862500000,0.000024282500000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000098343000000,0.000136269000000,0.000136663000000,0.000552663000000 +0.000023097000000,0.000025270000000,0.000024874500000,0.000070687000000,0.000039873000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000156416000000,0.000554638000000 +0.000023097000000,0.000033961000000,0.000025862500000,0.000090441000000,0.000038293000000,0.000139034000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000152071000000,0.000554638000000 +0.000023097000000,0.000025270000000,0.000045615500000,0.000157602000000,0.000040663000000,0.000103873000000,0.000107429000000,0.000039478000000,0.000097157000000,0.000137454000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025862500000,0.000025072500000,0.000100317000000,0.000040664000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000098342000000,0.000132318000000,0.000135873000000,0.000555033000000 +0.000023887500000,0.000025467500000,0.000025467500000,0.000090441000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000040268000000,0.000097157000000,0.000136664000000,0.000136664000000,0.000552268000000 +0.000023295000000,0.000025665000000,0.000025467500000,0.000078589000000,0.000039083000000,0.000103083000000,0.000077799000000,0.000041453000000,0.000139428000000,0.000136663000000,0.000135873000000,0.000560959000000 +0.000022899500000,0.000025665000000,0.000024875000000,0.000077799000000,0.000038293000000,0.000102688000000,0.000079380000000,0.000075034000000,0.000097158000000,0.000134688000000,0.000136663000000,0.000557404000000 +0.000023492000000,0.000025270000000,0.000025467500000,0.000070687000000,0.000039873000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000098343000000,0.000140219000000,0.000136268000000,0.000554638000000 +0.000023492000000,0.000025862500000,0.000024875000000,0.000070688000000,0.000038293000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000097157000000,0.000141404000000,0.000134688000000,0.000552268000000 +0.000023294500000,0.000025665000000,0.000024480000000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000140219000000,0.000136269000000,0.000594539000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000071083000000,0.000073849000000,0.000139034000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000140219000000,0.000132713000000,0.000285997000000 +0.000023294500000,0.000025862500000,0.000024874500000,0.000097158000000,0.000040663000000,0.000103083000000,0.000073453000000,0.000040664000000,0.000097552000000,0.000137058000000,0.000132713000000,0.000554243000000 +0.000023097500000,0.000025467500000,0.000025072500000,0.000073848000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000137058000000,0.000132713000000,0.000553058000000 +0.000023097500000,0.000025665000000,0.000025072500000,0.000078589000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000039083000000,0.000097157000000,0.000143380000000,0.000207775000000,0.000555428000000 +0.000023295000000,0.000025467500000,0.000026060000000,0.000077799000000,0.000038293000000,0.000103083000000,0.000096367000000,0.000039478000000,0.000189206000000,0.000137849000000,0.000136664000000,0.000557009000000 +0.000023294500000,0.000025665000000,0.000025862500000,0.000071083000000,0.000040663000000,0.000103873000000,0.000071478000000,0.000041059000000,0.000098342000000,0.000188812000000,0.000134688000000,0.000553453000000 +0.000023294500000,0.000045220500000,0.000026060000000,0.000070688000000,0.000040663000000,0.000103083000000,0.000072664000000,0.000039478000000,0.000097158000000,0.000136268000000,0.000181700000000,0.000558589000000 +0.000054307000000,0.000025862500000,0.000024677000000,0.000071083000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000098343000000,0.000136663000000,0.000136663000000,0.000552662000000 +0.000024479500000,0.000028825500000,0.000025270000000,0.000071083000000,0.000040664000000,0.000124416000000,0.000071083000000,0.000039083000000,0.000096762000000,0.000134687000000,0.000136664000000,0.000555033000000 +0.000047196000000,0.000025665000000,0.000024875000000,0.000077799000000,0.000038293000000,0.000152466000000,0.000073454000000,0.000039083000000,0.000097157000000,0.000137058000000,0.000172219000000,0.000555034000000 +0.000033171000000,0.000025467500000,0.000024480000000,0.000073849000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000140614000000,0.000134688000000,0.000609552000000 +0.000024677500000,0.000025467500000,0.000025467500000,0.000078985000000,0.000038688000000,0.000103479000000,0.000076614000000,0.000039479000000,0.000097157000000,0.000137453000000,0.000136663000000,0.000554638000000 +0.000030603000000,0.000025270000000,0.000025270000000,0.000077404000000,0.000040663000000,0.000103478000000,0.000079774000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000133107000000,0.000554639000000 +0.000023097500000,0.000025467500000,0.000025072500000,0.000126787000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000133898000000,0.000133502000000,0.000136663000000,0.000592564000000 +0.000023690000000,0.000025270000000,0.000024875000000,0.000085305000000,0.000039873000000,0.000103083000000,0.000072664000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000136663000000,0.000285997000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000071084000000,0.000038688000000,0.000102688000000,0.000132318000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000207775000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000025664500000,0.000071083000000,0.000038293000000,0.000122441000000,0.000071478000000,0.000093602000000,0.000097947000000,0.000136664000000,0.000136268000000,0.000555824000000 +0.000023097000000,0.000025665000000,0.000025467500000,0.000078589000000,0.000039083000000,0.000207380000000,0.000073058000000,0.000056071000000,0.000097947000000,0.000141009000000,0.000136268000000,0.000636021000000 +0.000023097000000,0.000035541500000,0.000025862500000,0.000073849000000,0.000038688000000,0.000109404000000,0.000071478000000,0.000040664000000,0.000098342000000,0.000136663000000,0.000133502000000,0.000566490000000 +0.000023294500000,0.000033763500000,0.000024480000000,0.000078194000000,0.000040663000000,0.000117700000000,0.000076614000000,0.000041058000000,0.000098737000000,0.000135083000000,0.000136663000000,0.000601255000000 +0.000023294500000,0.000034159000000,0.000024874500000,0.000077799000000,0.000075033000000,0.000102688000000,0.000078589000000,0.000039478000000,0.000096762000000,0.000136663000000,0.000136268000000,0.000588614000000 +0.000022899500000,0.000046208500000,0.000025467500000,0.000070688000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000141009000000,0.000173799000000,0.000568071000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000071083000000,0.000039478000000,0.000103874000000,0.000073058000000,0.000041453000000,0.000144170000000,0.000136268000000,0.000136663000000,0.000560169000000 +0.000041270000000,0.000025467500000,0.000025665000000,0.000071083000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000098737000000,0.000136268000000,0.000133503000000,0.000552268000000 +0.000023492000000,0.000025862500000,0.000025269500000,0.000109799000000,0.000040663000000,0.000139033000000,0.000071478000000,0.000038293000000,0.000097552000000,0.000137453000000,0.000136268000000,0.000590984000000 +0.000023492500000,0.000025467500000,0.000024480000000,0.000078195000000,0.000037898000000,0.000103873000000,0.000073453000000,0.000039478000000,0.000096367000000,0.000141009000000,0.000136663000000,0.000556613000000 +0.000022899500000,0.000025270000000,0.000025862500000,0.000074244000000,0.000041453000000,0.000102688000000,0.000107033000000,0.000041454000000,0.000096762000000,0.000141009000000,0.000136269000000,0.000555429000000 +0.000023295000000,0.000025665000000,0.000042257500000,0.000078589000000,0.000041058000000,0.000102688000000,0.000077009000000,0.000040664000000,0.000097552000000,0.000139824000000,0.000133898000000,0.000623774000000 +0.000023294500000,0.000025665000000,0.000025072000000,0.000077799000000,0.000039084000000,0.000103083000000,0.000079775000000,0.000039083000000,0.000097947000000,0.000139823000000,0.000185651000000,0.000556614000000 +0.000023097000000,0.000026257500000,0.000025467500000,0.000071083000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000039479000000,0.000097552000000,0.000134688000000,0.000139823000000,0.000285997000000 +0.000023097000000,0.000025467500000,0.000026060000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097947000000,0.000136269000000,0.000139824000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000070688000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000133898000000,0.000136663000000,0.000134293000000,0.000732416000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000039478000000,0.000121651000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000154046000000,0.000135874000000,0.000587428000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000077799000000,0.000039478000000,0.000120071000000,0.000073059000000,0.000039478000000,0.000097552000000,0.000186046000000,0.000136663000000,0.000593749000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000073848000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000208959000000,0.000568860000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000115330000000,0.000041059000000,0.000103874000000,0.000077009000000,0.000078195000000,0.000097552000000,0.000135873000000,0.000136663000000,0.000556218000000 +0.000023097000000,0.000025665000000,0.000025072500000,0.000077404000000,0.000041454000000,0.000102688000000,0.000079775000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000136268000000,0.000555034000000 +0.000023097500000,0.000043443000000,0.000024875000000,0.000090046000000,0.000040268000000,0.000102688000000,0.000071478000000,0.000041453000000,0.000098343000000,0.000137453000000,0.000132713000000,0.000553058000000 +0.000023295000000,0.000025270000000,0.000025072000000,0.000088466000000,0.000040269000000,0.000103083000000,0.000109008000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136664000000,0.000592959000000 +0.000023492000000,0.000025269500000,0.000025665000000,0.000084120000000,0.000041058000000,0.000103479000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000137849000000,0.000555034000000 +0.000023097000000,0.000025862500000,0.000025467500000,0.000071083000000,0.000113354000000,0.000102688000000,0.000071478000000,0.000041059000000,0.000097552000000,0.000136664000000,0.000313256000000,0.000590194000000 +0.000033171000000,0.000025467500000,0.000025467500000,0.000077799000000,0.000056861000000,0.000139034000000,0.000073453000000,0.000039083000000,0.000133897000000,0.000141009000000,0.000193157000000,0.000592169000000 +0.000024875000000,0.000025270000000,0.000024479500000,0.000073849000000,0.000051725000000,0.000103083000000,0.000071083000000,0.000042244000000,0.000097157000000,0.000137848000000,0.000136268000000,0.000554639000000 +0.000029813000000,0.000025467500000,0.000024480000000,0.000078984000000,0.000040268000000,0.000103083000000,0.000076614000000,0.000039083000000,0.000097552000000,0.000143774000000,0.000141404000000,0.000285601000000 +0.000022899500000,0.000025467500000,0.000024874500000,0.000077404000000,0.000039873000000,0.000103873000000,0.000079774000000,0.000039478000000,0.000097948000000,0.000139824000000,0.000138244000000,0.000554638000000 +0.000023690000000,0.000025862500000,0.000026060000000,0.000070688000000,0.000037897000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000175380000000,0.000593749000000 +0.000023887500000,0.000025467500000,0.000025467500000,0.000124811000000,0.000041453000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000097552000000,0.000145750000000,0.000139034000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000070688000000,0.000039478000000,0.000104268000000,0.000071083000000,0.000041059000000,0.000097947000000,0.000136664000000,0.000136268000000,0.000554638000000 +0.000023689500000,0.000025467500000,0.000023689500000,0.000071478000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000098342000000,0.000136663000000,0.000141009000000,0.000552663000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000079379000000,0.000040663000000,0.000103083000000,0.000092811000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136269000000,0.000559774000000 +0.000024677500000,0.000028628000000,0.000025467500000,0.000074638000000,0.000041454000000,0.000169058000000,0.000087281000000,0.000041058000000,0.000133108000000,0.000136663000000,0.000137058000000,0.000553848000000 +0.000023887000000,0.000025467500000,0.000025665000000,0.000077799000000,0.000038688000000,0.000103083000000,0.000077009000000,0.000039083000000,0.000097552000000,0.000140613000000,0.000172219000000,0.000555033000000 +0.000023097000000,0.000035146500000,0.000026060500000,0.000077404000000,0.000039873000000,0.000102688000000,0.000079774000000,0.000039873000000,0.000097947000000,0.000138243000000,0.000136663000000,0.000590588000000 +0.000023294500000,0.000032183500000,0.000025467500000,0.000070688000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000137058000000,0.000133503000000,0.000552663000000 +0.000023295000000,0.000025664500000,0.000025467500000,0.000071083000000,0.000037898000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000136268000000,0.000134293000000,0.000557799000000 +0.000023295000000,0.000025270000000,0.000025467500000,0.000070688000000,0.000041059000000,0.000103873000000,0.000071478000000,0.000079380000000,0.000097552000000,0.000137454000000,0.000136269000000,0.000553058000000 +0.000023097500000,0.000025270000000,0.000024677000000,0.000071478000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000075034000000,0.000097552000000,0.000137059000000,0.000135873000000,0.000554638000000 +0.000023492000000,0.000025665000000,0.000025467500000,0.000078194000000,0.000040268000000,0.000102688000000,0.000073453000000,0.000125206000000,0.000097552000000,0.000173404000000,0.000214490000000,0.000607971000000 +0.000023097000000,0.000025467500000,0.000026060000000,0.000145355000000,0.000038293000000,0.000144564000000,0.000071478000000,0.000073453000000,0.000097553000000,0.000152861000000,0.000136268000000,0.000287182000000 +0.000032578500000,0.000025467500000,0.000024875000000,0.000079774000000,0.000054490000000,0.000102688000000,0.000076614000000,0.000042639000000,0.000136269000000,0.000136663000000,0.000133502000000,0.000553058000000 +0.000031393500000,0.000025664500000,0.000024677000000,0.000077404000000,0.000038688000000,0.000102688000000,0.000079775000000,0.000041454000000,0.000113750000000,0.000139824000000,0.000135873000000,0.000886094000000 +0.000030010500000,0.000025467500000,0.000025665000000,0.000070688000000,0.000041058000000,0.000102688000000,0.000140614000000,0.000053306000000,0.000097157000000,0.000134688000000,0.000136663000000,0.000555033000000 +0.000023294500000,0.000025270000000,0.000041665000000,0.000071083000000,0.000040268000000,0.000102688000000,0.000087280000000,0.000039873000000,0.000098737000000,0.000139429000000,0.000139429000000,0.000555034000000 +0.000023689500000,0.000025665000000,0.000024677500000,0.000071083000000,0.000040664000000,0.000103083000000,0.000071083000000,0.000039084000000,0.000098342000000,0.000141009000000,0.000170639000000,0.000554243000000 +0.000023492500000,0.000025467000000,0.000025467000000,0.000071478000000,0.000041453000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000139034000000,0.000557009000000 +0.000023097500000,0.000025270000000,0.000026060000000,0.000077404000000,0.000038688000000,0.000103083000000,0.000073453000000,0.000039874000000,0.000098342000000,0.000135083000000,0.000135478000000,0.000554638000000 +0.000023887500000,0.000025665000000,0.000025467500000,0.000074244000000,0.000041454000000,0.000159577000000,0.000071083000000,0.000040663000000,0.000097552000000,0.000140614000000,0.000136268000000,0.000554243000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000078590000000,0.000037503000000,0.000115725000000,0.000076219000000,0.000039083000000,0.000098343000000,0.000136663000000,0.000137848000000,0.000555033000000 +0.000023097000000,0.000045813000000,0.000025665000000,0.000077799000000,0.000039873000000,0.000102688000000,0.000078984000000,0.000039083000000,0.000131923000000,0.000136664000000,0.000133108000000,0.000555823000000 +0.000023294500000,0.000036134500000,0.000026060000000,0.000106638000000,0.000038689000000,0.000103873000000,0.000071083000000,0.000041058000000,0.000112564000000,0.000250836000000,0.000137058000000,0.000553453000000 +0.000023097000000,0.000061220500000,0.000025467500000,0.000071083000000,0.000039083000000,0.000103873000000,0.000073058000000,0.000077009000000,0.000096367000000,0.000154441000000,0.000187626000000,0.000556613000000 +0.000023097000000,0.000071689500000,0.000025467500000,0.000070688000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000136664000000,0.000141404000000,0.000554244000000 +0.000023294500000,0.000061220500000,0.000024875000000,0.000071478000000,0.000039083000000,0.000102688000000,0.000107429000000,0.000039083000000,0.000098343000000,0.000136663000000,0.000136268000000,0.000287182000000 +0.000023097500000,0.000027443000000,0.000024677500000,0.000079380000000,0.000040664000000,0.000102688000000,0.000073059000000,0.000039479000000,0.000096762000000,0.000136663000000,0.000136663000000,0.000553058000000 +0.000023097500000,0.000051739000000,0.000025467500000,0.000074244000000,0.000039083000000,0.000149701000000,0.000071083000000,0.000041058000000,0.000097948000000,0.000133502000000,0.000137058000000,0.000593749000000 +0.000023492500000,0.000035937000000,0.000025467500000,0.000079774000000,0.000038293000000,0.000104268000000,0.000077404000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136664000000,0.000553058000000 +0.000023492000000,0.000072282500000,0.000026257500000,0.000077404000000,0.000040663000000,0.000103083000000,0.000079380000000,0.000040663000000,0.000097157000000,0.000135478000000,0.000207379000000,0.000558589000000 +0.000023097000000,0.000069319500000,0.000025270000000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000136663000000,0.000573601000000 +0.000064183500000,0.000033566500000,0.000024677000000,0.000070688000000,0.000038689000000,0.000102688000000,0.000072663000000,0.000041454000000,0.000114539000000,0.000137848000000,0.000134687000000,0.000570440000000 +0.000023492000000,0.000065368500000,0.000024677500000,0.000071083000000,0.000114145000000,0.000102688000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000135083000000,0.000136268000000,0.000555034000000 +0.000023887000000,0.000051541500000,0.000026060000000,0.000090046000000,0.000127182000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000098343000000,0.000138243000000,0.000137848000000,0.000552663000000 +0.000023295000000,0.000061418000000,0.000026060000000,0.000077404000000,0.000088861000000,0.000102293000000,0.000073454000000,0.000039478000000,0.000097553000000,0.000139033000000,0.000138244000000,0.000612712000000 +0.000023097000000,0.000055492000000,0.000026060000000,0.000075033000000,0.000092416000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000096762000000,0.000140614000000,0.000209750000000,0.000553453000000 +0.000023097000000,0.000069714000000,0.000025072500000,0.000077799000000,0.000110984000000,0.000174194000000,0.000077404000000,0.000039478000000,0.000097158000000,0.000137454000000,0.000138244000000,0.000558589000000 +0.000023097000000,0.000067936500000,0.000025072500000,0.000077799000000,0.000124417000000,0.000103873000000,0.000116120000000,0.000039084000000,0.000097157000000,0.000138244000000,0.000136268000000,0.000554638000000 +0.000023492000000,0.000044233000000,0.000025665000000,0.000071083000000,0.000107033000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000097553000000,0.000136268000000,0.000137454000000,0.000553058000000 +0.000023887000000,0.000041862500000,0.000024875000000,0.000071083000000,0.000071479000000,0.000102688000000,0.000072664000000,0.000039083000000,0.000097552000000,0.000134293000000,0.000138244000000,0.000557799000000 +0.000023097000000,0.000026850500000,0.000023887500000,0.000070688000000,0.000055676000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000133897000000,0.000139824000000,0.000180120000000,0.000286391000000 +0.000022702000000,0.000044628000000,0.000024479500000,0.000071083000000,0.000110589000000,0.000102688000000,0.000071478000000,0.000039084000000,0.000097553000000,0.000136268000000,0.000173009000000,0.000555428000000 +0.000023097000000,0.000027047500000,0.000025467500000,0.000077404000000,0.000121651000000,0.000103478000000,0.000073454000000,0.000039083000000,0.000098342000000,0.000136663000000,0.000139824000000,0.000553058000000 +0.000023097000000,0.000027048000000,0.000025072500000,0.000074244000000,0.000078984000000,0.000102688000000,0.000071478000000,0.000075429000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000555824000000 +0.000024282500000,0.000041072500000,0.000025467500000,0.000078195000000,0.000041848000000,0.000139034000000,0.000077404000000,0.000041059000000,0.000097947000000,0.000139823000000,0.000136269000000,0.000555033000000 +0.000023294500000,0.000026850000000,0.000025467000000,0.000112960000000,0.000040664000000,0.000103083000000,0.000078589000000,0.000039083000000,0.000097947000000,0.000137058000000,0.000136268000000,0.000604416000000 +0.000023097000000,0.000027047500000,0.000025665000000,0.000084120000000,0.000041454000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000136664000000,0.000135478000000,0.000555823000000 +0.000023492000000,0.000027245000000,0.000025665000000,0.000071083000000,0.000053700000000,0.000102688000000,0.000072664000000,0.000039874000000,0.000097947000000,0.000137454000000,0.000207380000000,0.000555033000000 +0.000035344000000,0.000054109500000,0.000025665000000,0.000071083000000,0.000039478000000,0.000102688000000,0.000104663000000,0.000039478000000,0.000134293000000,0.000136663000000,0.000136663000000,0.000552268000000 +0.000023294500000,0.000078406000000,0.000024479500000,0.000071478000000,0.000041058000000,0.000102688000000,0.000086885000000,0.000041059000000,0.000148120000000,0.000135873000000,0.000136268000000,0.000693304000000 +0.000023097000000,0.000083146500000,0.000046998500000,0.000079380000000,0.000038293000000,0.000102687000000,0.000073453000000,0.000039083000000,0.000097552000000,0.000140614000000,0.000135874000000,0.000626144000000 +0.000023492000000,0.000047393500000,0.000025665000000,0.000074244000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000038688000000,0.000097947000000,0.000136268000000,0.000136268000000,0.000553058000000 +0.000023097000000,0.000047986000000,0.000025665000000,0.000077799000000,0.000037897000000,0.000103083000000,0.000077009000000,0.000039478000000,0.000097552000000,0.000135478000000,0.000137453000000,0.000593354000000 +0.000023097000000,0.000034554000000,0.000025665000000,0.000077404000000,0.000038688000000,0.000187231000000,0.000078589000000,0.000039478000000,0.000097947000000,0.000137453000000,0.000172218000000,0.000592169000000 +0.000023097000000,0.000035936500000,0.000026257500000,0.000070688000000,0.000037898000000,0.000103084000000,0.000071084000000,0.000039478000000,0.000098343000000,0.000143774000000,0.000135083000000,0.000285601000000 +0.000023690000000,0.000025467500000,0.000025665000000,0.000070688000000,0.000103478000000,0.000102688000000,0.000073058000000,0.000040663000000,0.000097553000000,0.000136268000000,0.000133898000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000026060000000,0.000090441000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097158000000,0.000135873000000,0.000134688000000,0.000653404000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000071478000000,0.000041058000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000096762000000,0.000140219000000,0.000136663000000,0.000590194000000 +0.000023097000000,0.000025862500000,0.000025270000000,0.000078984000000,0.000038688000000,0.000103083000000,0.000073453000000,0.000039083000000,0.000133898000000,0.000138244000000,0.000136268000000,0.000602836000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000074244000000,0.000037898000000,0.000103083000000,0.000071478000000,0.000041059000000,0.000097947000000,0.000133108000000,0.000133108000000,0.000590589000000 +0.000024085000000,0.000025467500000,0.000024875000000,0.000079775000000,0.000039478000000,0.000103478000000,0.000113355000000,0.000041058000000,0.000098342000000,0.000134293000000,0.000169848000000,0.000552662000000 +0.000023295000000,0.000025665000000,0.000025467000000,0.000077404000000,0.000039084000000,0.000138638000000,0.000116910000000,0.000039873000000,0.000097552000000,0.000138639000000,0.000136268000000,0.000590589000000 +0.000023294500000,0.000025270000000,0.000025072500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000084120000000,0.000039083000000,0.000098343000000,0.000140219000000,0.000137059000000,0.000590984000000 +0.000023097000000,0.000025665000000,0.000024875000000,0.000071083000000,0.000041059000000,0.000102688000000,0.000073058000000,0.000073453000000,0.000096366000000,0.000139824000000,0.000137849000000,0.000552663000000 +0.000023097000000,0.000025862500000,0.000025072000000,0.000071083000000,0.000041454000000,0.000103083000000,0.000071084000000,0.000053306000000,0.000098343000000,0.000144564000000,0.000133108000000,0.000590194000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000071478000000,0.000039478000000,0.000103874000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000140219000000,0.000139429000000,0.000556614000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000079774000000,0.000037898000000,0.000103083000000,0.000073453000000,0.000039083000000,0.000097553000000,0.000136663000000,0.000206194000000,0.000671181000000 +0.000058850000000,0.000025665000000,0.000042652500000,0.000073848000000,0.000041058000000,0.000102687000000,0.000071478000000,0.000041059000000,0.000116515000000,0.000137849000000,0.000133503000000,0.000555033000000 +0.000023492500000,0.000053911500000,0.000025270000000,0.000114934000000,0.000041058000000,0.000102688000000,0.000077404000000,0.000039083000000,0.000113749000000,0.000136269000000,0.000136268000000,0.000556614000000 +0.000023097000000,0.000025665000000,0.000024874500000,0.000077799000000,0.000038688000000,0.000122046000000,0.000079775000000,0.000039479000000,0.000096762000000,0.000133503000000,0.000137453000000,0.000285997000000 +0.000023294500000,0.000025270000000,0.000025270000000,0.000071083000000,0.000040663000000,0.000135873000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000136269000000,0.000136268000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000026257500000,0.000071083000000,0.000038293000000,0.000103083000000,0.000108614000000,0.000039479000000,0.000097553000000,0.000136268000000,0.000136269000000,0.000555034000000 +0.000023492000000,0.000025862500000,0.000025665000000,0.000070688000000,0.000037503000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097158000000,0.000136268000000,0.000171824000000,0.000553058000000 +0.000023294500000,0.000026455500000,0.000025665000000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097553000000,0.000137454000000,0.000136268000000,0.000707132000000 +0.000023294500000,0.000025665000000,0.000025270000000,0.000078589000000,0.000074244000000,0.000103873000000,0.000073454000000,0.000039083000000,0.000098343000000,0.000132713000000,0.000135873000000,0.000553058000000 +0.000023097500000,0.000025467500000,0.000026060000000,0.000074244000000,0.000041059000000,0.000102687000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000136664000000,0.000136663000000,0.000594935000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000078590000000,0.000038688000000,0.000103873000000,0.000077009000000,0.000041058000000,0.000097947000000,0.000136268000000,0.000135874000000,0.000555034000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000077404000000,0.000039478000000,0.000102688000000,0.000079774000000,0.000039874000000,0.000133898000000,0.000134688000000,0.000136663000000,0.000552663000000 +0.000023492000000,0.000025665000000,0.000025665000000,0.000070688000000,0.000039083000000,0.000152071000000,0.000071083000000,0.000039873000000,0.000097157000000,0.000139824000000,0.000156021000000,0.000556218000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000089256000000,0.000039478000000,0.000103083000000,0.000072664000000,0.000039874000000,0.000097552000000,0.000140614000000,0.000170638000000,0.000553848000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000230292000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000097157000000,0.000141009000000,0.000135873000000,0.000554243000000 +0.000023887000000,0.000029220500000,0.000025467500000,0.000174590000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000097157000000,0.000140614000000,0.000132713000000,0.000605601000000 +0.000023097500000,0.000025665000000,0.000025467500000,0.000098343000000,0.000041058000000,0.000102688000000,0.000073059000000,0.000041059000000,0.000098342000000,0.000137058000000,0.000133108000000,0.000596910000000 +0.000023295000000,0.000039492000000,0.000025072500000,0.000090046000000,0.000039873000000,0.000103478000000,0.000112170000000,0.000089256000000,0.000097552000000,0.000136663000000,0.000132712000000,0.000285602000000 +0.000032973500000,0.000025467500000,0.000025862500000,0.000078194000000,0.000038688000000,0.000102688000000,0.000077009000000,0.000053701000000,0.000098342000000,0.000142985000000,0.000137058000000,0.000609947000000 +0.000031393500000,0.000025467500000,0.000026060000000,0.000077404000000,0.000038293000000,0.000103478000000,0.000078984000000,0.000039478000000,0.000097552000000,0.000138244000000,0.000316021000000,0.000557009000000 +0.000023295000000,0.000025665000000,0.000025467000000,0.000071083000000,0.000041058000000,0.000174194000000,0.000071083000000,0.000041058000000,0.000139824000000,0.000197108000000,0.000150886000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000026257500000,0.000089651000000,0.000041059000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000097157000000,0.000153255000000,0.000137849000000,0.000554243000000 +0.000024282000000,0.000025467500000,0.000024677500000,0.000135478000000,0.000038688000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136269000000,0.000553058000000 +0.000023294500000,0.000026060000000,0.000025665000000,0.000071478000000,0.000040664000000,0.000103083000000,0.000071083000000,0.000040268000000,0.000097552000000,0.000134687000000,0.000136663000000,0.000555033000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000077799000000,0.000037898000000,0.000103478000000,0.000073058000000,0.000039873000000,0.000097552000000,0.000136663000000,0.000172218000000,0.000553453000000 +0.000023295000000,0.000026850500000,0.000024875000000,0.000073849000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000140219000000,0.000134688000000,0.000555033000000 +0.000023295000000,0.000025270000000,0.000025467500000,0.000078985000000,0.000039083000000,0.000103478000000,0.000076614000000,0.000039478000000,0.000097947000000,0.000137453000000,0.000136664000000,0.000552663000000 +0.000022899500000,0.000027245000000,0.000025270000000,0.000077404000000,0.000040663000000,0.000103083000000,0.000079379000000,0.000039083000000,0.000099133000000,0.000136268000000,0.000133108000000,0.000554244000000 +0.000023097000000,0.000025467500000,0.000026060000000,0.000070688000000,0.000057256000000,0.000120861000000,0.000106639000000,0.000041058000000,0.000097157000000,0.000133107000000,0.000136269000000,0.000558589000000 +0.000023492000000,0.000025665000000,0.000025664500000,0.000070688000000,0.000070293000000,0.000103873000000,0.000072664000000,0.000039479000000,0.000133503000000,0.000171824000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000071083000000,0.000038293000000,0.000103084000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000150491000000,0.000172614000000,0.000554638000000 +0.000023294500000,0.000025270000000,0.000025862500000,0.000071478000000,0.000039083000000,0.000103478000000,0.000071478000000,0.000041059000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000556613000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000078589000000,0.000039478000000,0.000103084000000,0.000073454000000,0.000041058000000,0.000097552000000,0.000161552000000,0.000136268000000,0.000287576000000 +0.000023294500000,0.000053319500000,0.000025270000000,0.000138639000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000040268000000,0.000097158000000,0.000136664000000,0.000133107000000,0.000553058000000 +0.000023295000000,0.000069122000000,0.000025467500000,0.000078590000000,0.000041059000000,0.000102688000000,0.000077009000000,0.000041059000000,0.000096762000000,0.000135478000000,0.000136663000000,0.000555033000000 +0.000023887500000,0.000068134500000,0.000024282500000,0.000077404000000,0.000039083000000,0.000102688000000,0.000079379000000,0.000059231000000,0.000097158000000,0.000136663000000,0.000136269000000,0.000553453000000 +0.000022899500000,0.000033764000000,0.000042257500000,0.000070688000000,0.000039874000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097553000000,0.000141009000000,0.000137849000000,0.001164218000000 +0.000043047500000,0.000036134500000,0.000025269500000,0.000071083000000,0.000039873000000,0.000196317000000,0.000073059000000,0.000041058000000,0.000097553000000,0.000136268000000,0.000177750000000,0.001083230000000 +0.000031591000000,0.000025665000000,0.000024480000000,0.000070688000000,0.000038688000000,0.000327083000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136269000000,0.000133503000000,0.000556218000000 +0.000023492000000,0.000025467500000,0.000026060000000,0.000071083000000,0.000041058000000,0.000236219000000,0.000071083000000,0.000039083000000,0.000170638000000,0.000137453000000,0.000136268000000,0.000590589000000 +0.000023689500000,0.000025270000000,0.000025467500000,0.000078589000000,0.000038293000000,0.000119281000000,0.000109009000000,0.000039083000000,0.000120861000000,0.000140614000000,0.000136269000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000074244000000,0.000041453000000,0.000121256000000,0.000071083000000,0.000041058000000,0.000113354000000,0.000141009000000,0.000136663000000,0.000561354000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000078590000000,0.000041058000000,0.000119676000000,0.000077009000000,0.000041059000000,0.000097947000000,0.000139823000000,0.000133503000000,0.000554638000000 +0.000023294500000,0.000025862500000,0.000025467500000,0.000113355000000,0.000038293000000,0.000103083000000,0.000078984000000,0.000039478000000,0.000097553000000,0.000139824000000,0.000169453000000,0.000555428000000 +0.000023887500000,0.000043443000000,0.000025467500000,0.000070688000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000097157000000,0.000134688000000,0.000140219000000,0.000622984000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000071083000000,0.000037898000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000096762000000,0.000173009000000,0.000139824000000,0.000585058000000 +0.000023887000000,0.000025269500000,0.000025862500000,0.000070688000000,0.000039479000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000097948000000,0.000136663000000,0.000134293000000,0.000285601000000 +0.000023097000000,0.000025665000000,0.000025467000000,0.000071478000000,0.000037898000000,0.000102293000000,0.000071479000000,0.000041453000000,0.000133503000000,0.000133503000000,0.000136268000000,0.000554244000000 +0.000023492000000,0.000025665000000,0.000025270000000,0.000078984000000,0.000107034000000,0.000103873000000,0.000073453000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000137059000000,0.000556613000000 +0.000024085000000,0.000025467500000,0.000026257500000,0.000073848000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000040268000000,0.000097157000000,0.000136268000000,0.000172614000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000078984000000,0.000041453000000,0.000139823000000,0.000076614000000,0.000042243000000,0.000096762000000,0.000135873000000,0.000136663000000,0.000590589000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000077799000000,0.000041453000000,0.000102688000000,0.000098737000000,0.000039478000000,0.000098343000000,0.000137059000000,0.000136269000000,0.000553058000000 +0.000023097000000,0.000025467000000,0.000025270000000,0.000071083000000,0.000040664000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000099133000000,0.000137454000000,0.000132713000000,0.000555428000000 +0.000023294500000,0.000025665000000,0.000029023000000,0.000070688000000,0.000040268000000,0.000102688000000,0.000072663000000,0.000039083000000,0.000098737000000,0.000136268000000,0.000136663000000,0.000553453000000 +0.000032381000000,0.000025665000000,0.000025862500000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039479000000,0.000097552000000,0.000136663000000,0.000137453000000,0.000555033000000 +0.000049171000000,0.000025270000000,0.000025467500000,0.000142589000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000060416000000,0.000097947000000,0.000136268000000,0.000135873000000,0.000613108000000 +0.000023492500000,0.000025269500000,0.000025270000000,0.000078589000000,0.000039873000000,0.000103083000000,0.000073453000000,0.000056466000000,0.000131132000000,0.000141404000000,0.000216465000000,0.001109304000000 +0.000024479500000,0.000025467500000,0.000025072000000,0.000074243000000,0.000037897000000,0.000102293000000,0.000071083000000,0.000042639000000,0.000133898000000,0.000138243000000,0.000136268000000,0.000556614000000 +0.000023294500000,0.000025270000000,0.000026060000000,0.000078589000000,0.000039873000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000098342000000,0.000180515000000,0.000141009000000,0.000590984000000 +0.000023097000000,0.000025862500000,0.000024677500000,0.000077799000000,0.000038293000000,0.000187627000000,0.000080170000000,0.000039478000000,0.000097157000000,0.000139824000000,0.000137849000000,0.000553058000000 +0.000023295000000,0.000043443000000,0.000024875000000,0.000071083000000,0.000040663000000,0.000139034000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136269000000,0.000139429000000,0.000660119000000 +0.000023295000000,0.000028627500000,0.000025665000000,0.000070688000000,0.000039083000000,0.000118886000000,0.000073058000000,0.000039479000000,0.000097157000000,0.000145750000000,0.000139429000000,0.000285996000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000071083000000,0.000040268000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000098738000000,0.000136664000000,0.000153255000000,0.000590194000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000071083000000,0.000040664000000,0.000102688000000,0.000125997000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000141404000000,0.000590589000000 +0.000023294500000,0.000025862500000,0.000025665000000,0.000077404000000,0.000039083000000,0.000102688000000,0.000137454000000,0.000039478000000,0.000097552000000,0.000137453000000,0.000136664000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000024677000000,0.000074243000000,0.000041849000000,0.000102688000000,0.000089651000000,0.000040663000000,0.000116515000000,0.000136663000000,0.000136663000000,0.000607971000000 +0.000023887000000,0.000029023000000,0.000024677500000,0.000132317000000,0.000038688000000,0.000144960000000,0.000090441000000,0.000039479000000,0.000113750000000,0.000140614000000,0.000136268000000,0.000553453000000 +0.000023097500000,0.000025270000000,0.000026060000000,0.000077799000000,0.000093207000000,0.000103478000000,0.000079775000000,0.000039478000000,0.000098343000000,0.000137848000000,0.000136663000000,0.000598095000000 +0.000023690000000,0.000025467500000,0.000024874500000,0.000071083000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000169849000000,0.000555033000000 +0.000023097000000,0.000026060000000,0.000025665000000,0.000070688000000,0.000040268000000,0.000103083000000,0.000072663000000,0.000040268000000,0.000097947000000,0.000136663000000,0.000133898000000,0.000570046000000 +0.000023294500000,0.000041270000000,0.000025665000000,0.000070688000000,0.000040664000000,0.000102293000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000137454000000,0.000136269000000,0.000592564000000 +0.000023294500000,0.000025467500000,0.000058850000000,0.000090441000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000173404000000,0.000136268000000,0.000553453000000 +0.000042257500000,0.000025270000000,0.000026455000000,0.000083725000000,0.000040268000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000137453000000,0.000590589000000 +0.000053714500000,0.000025270000000,0.000066554000000,0.000088070000000,0.000037503000000,0.000103478000000,0.000107429000000,0.000039478000000,0.000097157000000,0.000139428000000,0.000136268000000,0.000554638000000 +0.000031393500000,0.000025467500000,0.000060232500000,0.000078984000000,0.000039478000000,0.000103083000000,0.000077404000000,0.000058441000000,0.000098343000000,0.000137058000000,0.000169453000000,0.000592169000000 +0.000029813000000,0.000043640000000,0.000051146500000,0.000077404000000,0.000041059000000,0.000138639000000,0.000078984000000,0.000089256000000,0.000168663000000,0.000139824000000,0.000135874000000,0.000285601000000 +0.000023294500000,0.000033763500000,0.000026455000000,0.000071083000000,0.000041454000000,0.000103083000000,0.000071083000000,0.000057256000000,0.000097552000000,0.000134293000000,0.000136663000000,0.000760465000000 +0.000022899500000,0.000061418000000,0.000032974000000,0.000123232000000,0.000039873000000,0.000103478000000,0.000073058000000,0.000041453000000,0.000098342000000,0.000139824000000,0.000139428000000,0.000593354000000 +0.000023097000000,0.000043047500000,0.000025269500000,0.000071083000000,0.000040664000000,0.000103874000000,0.000071083000000,0.000053700000000,0.000096762000000,0.000141009000000,0.000134688000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000071083000000,0.000041453000000,0.000102688000000,0.000071479000000,0.000039479000000,0.000098342000000,0.000136663000000,0.000138639000000,0.000591379000000 +0.000023097000000,0.000025270000000,0.000025862500000,0.000077404000000,0.000039478000000,0.000103873000000,0.000073453000000,0.000039478000000,0.000097157000000,0.000135479000000,0.000135874000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000073848000000,0.000037503000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000140219000000,0.000188416000000,0.001000663000000 +0.000023097000000,0.000025665000000,0.000108628000000,0.000078984000000,0.000040664000000,0.000102688000000,0.000077009000000,0.000040268000000,0.000098342000000,0.000137059000000,0.000138243000000,0.000573601000000 +0.000023492500000,0.000032973500000,0.000044035500000,0.000077404000000,0.000037898000000,0.000122046000000,0.000079774000000,0.000040664000000,0.000097157000000,0.000136663000000,0.000133107000000,0.000587823000000 +0.000023492000000,0.000057467500000,0.000043245000000,0.000070688000000,0.000037503000000,0.000139034000000,0.000071478000000,0.000041058000000,0.000132713000000,0.000176960000000,0.000137058000000,0.000552663000000 +0.000023097000000,0.000033764000000,0.000025467500000,0.000070688000000,0.000038688000000,0.000103873000000,0.000144170000000,0.000041058000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000555034000000 +0.000025862500000,0.000034554000000,0.000025665000000,0.000071083000000,0.000057256000000,0.000103083000000,0.000071083000000,0.000039874000000,0.000097947000000,0.000136663000000,0.000141404000000,0.000557404000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000172219000000,0.000555033000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000123626000000,0.000039873000000,0.000103083000000,0.000073454000000,0.000039479000000,0.000098342000000,0.000136268000000,0.000136663000000,0.000553058000000 +0.000041467500000,0.000025665000000,0.000025270000000,0.000073848000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098343000000,0.000133108000000,0.000137058000000,0.000593749000000 +0.000023492000000,0.000025270000000,0.000024480000000,0.000078984000000,0.000038688000000,0.000103478000000,0.000077404000000,0.000039478000000,0.000097157000000,0.000173404000000,0.000136663000000,0.000285997000000 +0.000023294500000,0.000025270000000,0.000026060000000,0.000077799000000,0.000040664000000,0.000103083000000,0.000078984000000,0.000041453000000,0.000097552000000,0.000135478000000,0.000136268000000,0.000590589000000 +0.000023294500000,0.000025467500000,0.000024479500000,0.000107824000000,0.000041058000000,0.000151675000000,0.000071478000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000136663000000,0.000552663000000 +0.000023690000000,0.000025862500000,0.000024875000000,0.000121651000000,0.000037502000000,0.000102688000000,0.000072664000000,0.000091626000000,0.000167083000000,0.000137848000000,0.000170638000000,0.000559774000000 +0.000023689500000,0.000025270000000,0.000025072500000,0.000071084000000,0.000039083000000,0.000103083000000,0.000071478000000,0.000055676000000,0.000112169000000,0.000135083000000,0.000136268000000,0.000556614000000 +0.000023492000000,0.000025665000000,0.000024677500000,0.000071083000000,0.000040268000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000098737000000,0.000138244000000,0.000137849000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000078194000000,0.000038688000000,0.000103478000000,0.000127972000000,0.000039479000000,0.000097552000000,0.000180910000000,0.000138639000000,0.000557798000000 +0.000024085000000,0.000025270000000,0.000025862500000,0.000073849000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000140614000000,0.000137849000000,0.000553058000000 +0.000023097500000,0.000025862500000,0.000024874500000,0.000154836000000,0.000041453000000,0.000103478000000,0.000076613000000,0.000039479000000,0.000098343000000,0.000137454000000,0.000138244000000,0.000554638000000 +0.000023295000000,0.000025862500000,0.000025467500000,0.000078194000000,0.000041454000000,0.000103083000000,0.000078984000000,0.000039478000000,0.000098343000000,0.000138639000000,0.000172219000000,0.000555034000000 +0.000023492000000,0.000025467500000,0.000025467500000,0.000071084000000,0.000038293000000,0.000139034000000,0.000071478000000,0.000040664000000,0.000097552000000,0.000136268000000,0.000137453000000,0.000555823000000 +0.000023294500000,0.000025665000000,0.000024677000000,0.000070688000000,0.000039084000000,0.000103083000000,0.000073059000000,0.000039083000000,0.000097552000000,0.000133898000000,0.000138639000000,0.000553058000000 +0.000023097000000,0.000054504500000,0.000024875000000,0.000070688000000,0.000038293000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000133502000000,0.000140614000000,0.000136269000000,0.000630095000000 +0.000023294500000,0.000025665000000,0.000026060000000,0.000071478000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000132713000000,0.000136664000000,0.000137058000000,0.000592169000000 +0.000023294500000,0.000025467500000,0.000024875000000,0.000077405000000,0.000038688000000,0.000103478000000,0.000073454000000,0.000039478000000,0.000114935000000,0.000135873000000,0.000139824000000,0.000285602000000 +0.000023294500000,0.000029023000000,0.000025467000000,0.000073849000000,0.000041453000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000135873000000,0.000136268000000,0.000555033000000 +0.000023295000000,0.000025665000000,0.000025467500000,0.000078589000000,0.000057256000000,0.000103873000000,0.000077405000000,0.000041059000000,0.000097947000000,0.000139429000000,0.000171823000000,0.000555428000000 +0.000041270000000,0.000025467500000,0.000024480000000,0.000077799000000,0.000112169000000,0.000103083000000,0.000099132000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000605206000000 +0.000023492000000,0.000025467500000,0.000026257500000,0.000071083000000,0.000092416000000,0.000102293000000,0.000100318000000,0.000041059000000,0.000097947000000,0.000136269000000,0.000135478000000,0.000552662000000 +0.000023295000000,0.000025862500000,0.000025665000000,0.000126786000000,0.000124417000000,0.000186046000000,0.000073059000000,0.000039478000000,0.000097948000000,0.000178935000000,0.000136663000000,0.000554638000000 +0.000023295000000,0.000025467500000,0.000025072500000,0.000085700000000,0.000106243000000,0.000103083000000,0.000071478000000,0.000039479000000,0.000098343000000,0.000136269000000,0.000136663000000,0.000553058000000 +0.000023689500000,0.000025467500000,0.000025862500000,0.000071083000000,0.000121651000000,0.000102688000000,0.000071083000000,0.000041453000000,0.000280465000000,0.000136268000000,0.000136268000000,0.000555429000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000077799000000,0.000122441000000,0.000103478000000,0.000073454000000,0.000056070000000,0.000219231000000,0.000141009000000,0.000182096000000,0.000654984000000 +0.000023294500000,0.000025467000000,0.000025665000000,0.000074639000000,0.000105848000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000114935000000,0.000136663000000,0.000136268000000,0.000661700000000 +0.000023294500000,0.000025270000000,0.000026060000000,0.000079774000000,0.000069898000000,0.000103083000000,0.000076613000000,0.000039478000000,0.000097553000000,0.000166293000000,0.000137848000000,0.000554638000000 +0.000023097000000,0.000025269500000,0.000024677500000,0.000077404000000,0.000053305000000,0.000103083000000,0.000079379000000,0.000040268000000,0.000097947000000,0.000178540000000,0.000136663000000,0.000556613000000 +0.000023097500000,0.000025862500000,0.000025467500000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000097157000000,0.000142589000000,0.000135478000000,0.000555034000000 +0.000023295000000,0.000043442500000,0.000025467500000,0.000071083000000,0.000041454000000,0.000138639000000,0.000072664000000,0.000041058000000,0.000143379000000,0.000136268000000,0.000133503000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000025862500000,0.000070688000000,0.000039083000000,0.000102688000000,0.000090046000000,0.000039083000000,0.000097947000000,0.000135873000000,0.000170639000000,0.000556218000000 +0.000023097000000,0.000025862500000,0.000025664500000,0.000071083000000,0.000041059000000,0.000104268000000,0.000087675000000,0.000038293000000,0.000097947000000,0.000139824000000,0.000136268000000,0.000285602000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000115330000000,0.000039083000000,0.000103479000000,0.000073453000000,0.000039083000000,0.000097552000000,0.000138244000000,0.000136268000000,0.000558984000000 +0.000023294500000,0.000025665000000,0.000025072500000,0.000090441000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000216071000000,0.000132712000000,0.000555033000000 +0.000023492000000,0.000025467500000,0.000025072000000,0.000078984000000,0.000041058000000,0.000103083000000,0.000076614000000,0.000041059000000,0.000097948000000,0.000218836000000,0.000133898000000,0.000553453000000 +0.000023295000000,0.000025467500000,0.000024677500000,0.000077404000000,0.000038688000000,0.000103083000000,0.000079380000000,0.000039873000000,0.000097553000000,0.000138638000000,0.000136268000000,0.000556614000000 +0.000023097500000,0.000025467500000,0.000025072500000,0.000070688000000,0.000040663000000,0.000103478000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000140218000000,0.000136663000000,0.000553453000000 +0.000023097500000,0.000025467500000,0.000025467500000,0.000071083000000,0.000041059000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000098342000000,0.000139429000000,0.000173799000000,0.000557799000000 +0.000041270000000,0.000025270000000,0.000024282500000,0.000070688000000,0.000039478000000,0.000133898000000,0.000071478000000,0.000039084000000,0.000133502000000,0.000145355000000,0.000133108000000,0.000552663000000 +0.000023295000000,0.000025467500000,0.000024677000000,0.000071083000000,0.000038688000000,0.000103873000000,0.000071083000000,0.000041058000000,0.000097553000000,0.000139824000000,0.000202639000000,0.000554244000000 +0.000023097500000,0.000025467500000,0.000025862500000,0.000077404000000,0.000039478000000,0.000103083000000,0.000073848000000,0.000039083000000,0.000097553000000,0.000136664000000,0.000135873000000,0.000556613000000 +0.000024085000000,0.000025665000000,0.000025467500000,0.000073848000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098738000000,0.000137849000000,0.000132713000000,0.000555033000000 +0.000023294500000,0.000025270000000,0.000026257500000,0.000078984000000,0.000041454000000,0.000102688000000,0.000131528000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136664000000,0.000670391000000 +0.000033764000000,0.000025665000000,0.000025072500000,0.000113355000000,0.000039083000000,0.000102688000000,0.000079774000000,0.000039478000000,0.000097947000000,0.000133503000000,0.000160367000000,0.000568860000000 +0.000031393000000,0.000025862500000,0.000024874500000,0.000071083000000,0.000040664000000,0.000102688000000,0.000071479000000,0.000178145000000,0.000097947000000,0.000136268000000,0.000136663000000,0.000556218000000 +0.000030011000000,0.000043443000000,0.000025467500000,0.000071083000000,0.000038688000000,0.000102688000000,0.000072663000000,0.000054095000000,0.000097947000000,0.000137453000000,0.000135874000000,0.000285602000000 +0.000023294500000,0.000025862500000,0.000025665000000,0.000071083000000,0.000073454000000,0.000174984000000,0.000071478000000,0.000039873000000,0.000097552000000,0.000136269000000,0.000135873000000,0.000555033000000 +0.000023097000000,0.000025270000000,0.000026060000000,0.000071083000000,0.000040664000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000554639000000 +0.000023294500000,0.000025269500000,0.000025072500000,0.000077800000000,0.000038688000000,0.000102688000000,0.000073453000000,0.000038688000000,0.000133898000000,0.000132712000000,0.000136269000000,0.000554638000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000075034000000,0.000040664000000,0.000104268000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000172614000000,0.000553058000000 +0.000023097000000,0.000025664500000,0.000025467500000,0.000078194000000,0.000038293000000,0.000103083000000,0.000077404000000,0.000041058000000,0.000098342000000,0.000136663000000,0.000135874000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000077404000000,0.000038688000000,0.000103873000000,0.000079379000000,0.000039478000000,0.000097157000000,0.000134688000000,0.000136663000000,0.000555428000000 +0.000023294500000,0.000025467000000,0.000024282000000,0.000070688000000,0.000037898000000,0.000103874000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000139824000000,0.000136268000000,0.000552663000000 +0.000023295000000,0.000026060000000,0.000025072500000,0.000070688000000,0.000039083000000,0.000103083000000,0.000106244000000,0.000039083000000,0.000097552000000,0.000140219000000,0.000134688000000,0.000555033000000 +0.000023295000000,0.000025467500000,0.000025467500000,0.000071478000000,0.000039873000000,0.000139033000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000140218000000,0.000135873000000,0.000552268000000 +0.000042257500000,0.000025467500000,0.000025467500000,0.000106243000000,0.000041059000000,0.000102688000000,0.000071478000000,0.000039873000000,0.000098343000000,0.000140219000000,0.000257157000000,0.000554638000000 +0.000039294500000,0.000026060000000,0.000025665000000,0.000093996000000,0.000040664000000,0.000102688000000,0.000073454000000,0.000041058000000,0.000097158000000,0.000137058000000,0.000167873000000,0.000556614000000 +0.000029615500000,0.000025270000000,0.000025072500000,0.000073849000000,0.000039478000000,0.000102688000000,0.000071478000000,0.000039873000000,0.000133503000000,0.000136663000000,0.000132713000000,0.000555033000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000078194000000,0.000038688000000,0.000103083000000,0.000113749000000,0.000039478000000,0.000097157000000,0.000180120000000,0.000137058000000,0.000552663000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000077799000000,0.000040663000000,0.000103083000000,0.000094787000000,0.000039083000000,0.000097947000000,0.000138244000000,0.000136664000000,0.000562539000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000071083000000,0.000040664000000,0.000103083000000,0.000071083000000,0.000041453000000,0.000098342000000,0.000136269000000,0.000154046000000,0.000285997000000 +0.000023690000000,0.000044825500000,0.000025862500000,0.000070688000000,0.000040663000000,0.000102688000000,0.000072663000000,0.000080565000000,0.000097948000000,0.000136268000000,0.000137849000000,0.000698836000000 +0.000023492500000,0.000025467500000,0.000025467500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000052910000000,0.000097553000000,0.000136268000000,0.000136663000000,0.000555033000000 +0.000023097000000,0.000028825500000,0.000024875000000,0.000071083000000,0.000040663000000,0.000138639000000,0.000071478000000,0.000039478000000,0.000096762000000,0.000134687000000,0.000136663000000,0.000553848000000 +0.000023689500000,0.000025270000000,0.000025467500000,0.000078194000000,0.000039478000000,0.000102688000000,0.000106639000000,0.000039478000000,0.000097948000000,0.000137453000000,0.000136268000000,0.000593354000000 +0.000023689500000,0.000025467500000,0.000024874500000,0.000074243000000,0.000038293000000,0.000103083000000,0.000130342000000,0.000039083000000,0.000097947000000,0.000140219000000,0.000134293000000,0.000552662000000 +0.000023295000000,0.000025467500000,0.000025270000000,0.000112564000000,0.000074244000000,0.000102688000000,0.000234638000000,0.000039479000000,0.000150885000000,0.000136268000000,0.000136663000000,0.000597700000000 +0.000023097500000,0.000025665000000,0.000024677500000,0.000093601000000,0.000041059000000,0.000103083000000,0.000131132000000,0.000039873000000,0.000098342000000,0.000136268000000,0.000216861000000,0.000572811000000 +0.000023295000000,0.000025467500000,0.000025467500000,0.000071083000000,0.000038688000000,0.000102688000000,0.000075428000000,0.000041058000000,0.000097552000000,0.000133502000000,0.000136663000000,0.000569651000000 +0.000023492000000,0.000025665000000,0.000025072500000,0.000071083000000,0.000039083000000,0.000102688000000,0.000086885000000,0.000038688000000,0.000097947000000,0.000136268000000,0.000136269000000,0.000556614000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000071083000000,0.000038293000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000135873000000,0.000136663000000,0.000555033000000 +0.000023492000000,0.000025665000000,0.000025665000000,0.000071478000000,0.000057256000000,0.000122046000000,0.000071479000000,0.000039478000000,0.000097947000000,0.000137454000000,0.000136268000000,0.000618244000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000077799000000,0.000054491000000,0.000154046000000,0.000109404000000,0.000041058000000,0.000097157000000,0.000141404000000,0.000136663000000,0.000554638000000 +0.000041270000000,0.000025270000000,0.000025665000000,0.000074244000000,0.000043034000000,0.000102688000000,0.000071083000000,0.000040269000000,0.000097947000000,0.000136268000000,0.000169454000000,0.000556219000000 +0.000023689500000,0.000025467500000,0.000024480000000,0.000077800000000,0.000041058000000,0.000103083000000,0.000077009000000,0.000041453000000,0.000097552000000,0.000135083000000,0.000136663000000,0.000285602000000 +0.000023294500000,0.000026850500000,0.000025665000000,0.000077799000000,0.000038688000000,0.000103083000000,0.000079380000000,0.000039478000000,0.000134293000000,0.000136268000000,0.000136268000000,0.000842243000000 +0.000023294500000,0.000053122000000,0.000025467000000,0.000071083000000,0.000039873000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000098737000000,0.000141009000000,0.000137848000000,0.000571231000000 +0.000023887500000,0.000031986000000,0.000025072500000,0.000070688000000,0.000039083000000,0.000103083000000,0.000072663000000,0.000041454000000,0.000097947000000,0.000137058000000,0.000136663000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000141799000000,0.000039083000000,0.000103873000000,0.000071478000000,0.000039083000000,0.000097948000000,0.000136663000000,0.000133503000000,0.000590194000000 +0.000023492000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000040664000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000205404000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000079379000000,0.000041058000000,0.000150096000000,0.000073453000000,0.000059231000000,0.000097947000000,0.000141009000000,0.000149305000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000026060500000,0.000074244000000,0.000041453000000,0.000103083000000,0.000071479000000,0.000084120000000,0.000097947000000,0.000141009000000,0.000136268000000,0.000555824000000 +0.000023294500000,0.000025665000000,0.000024677500000,0.000078985000000,0.000041059000000,0.000102688000000,0.000077009000000,0.000041059000000,0.000097947000000,0.000140219000000,0.000133502000000,0.000552663000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000077404000000,0.000038688000000,0.000102688000000,0.000078590000000,0.000039478000000,0.000097947000000,0.000139824000000,0.000133108000000,0.000554638000000 +0.000023492500000,0.000026257500000,0.000025072500000,0.000070688000000,0.000041453000000,0.000138243000000,0.000106639000000,0.000039478000000,0.000098738000000,0.000171823000000,0.000139824000000,0.000552267000000 +0.000023097500000,0.000025467500000,0.000026258000000,0.000071083000000,0.000073849000000,0.000118095000000,0.000072664000000,0.000039083000000,0.000181701000000,0.000136268000000,0.000175775000000,0.000598490000000 +0.000023492000000,0.000025270000000,0.000025270000000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000098342000000,0.000136663000000,0.000134688000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000071083000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000041058000000,0.000098342000000,0.000133503000000,0.000136268000000,0.000554639000000 +0.000023492000000,0.000025467500000,0.000025467500000,0.000077799000000,0.000040268000000,0.000139428000000,0.000073454000000,0.000039479000000,0.000097552000000,0.000136663000000,0.000136663000000,0.000558194000000 +0.000023294500000,0.000025467000000,0.000025665000000,0.000110589000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000285996000000 +0.000023294500000,0.000025665000000,0.000024874500000,0.000078194000000,0.000041454000000,0.000103083000000,0.000077009000000,0.000041849000000,0.000097947000000,0.000136663000000,0.000136663000000,0.000604020000000 +0.000041467500000,0.000052726500000,0.000024875000000,0.000077405000000,0.000041454000000,0.000103478000000,0.000080169000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000136269000000,0.000555033000000 +0.000023097000000,0.000033368500000,0.000024874500000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071478000000,0.000041453000000,0.000097552000000,0.000137453000000,0.000184071000000,0.000591379000000 +0.000023097000000,0.000025467500000,0.000025270000000,0.000070688000000,0.000040268000000,0.000103478000000,0.000072664000000,0.000039873000000,0.000097157000000,0.000136664000000,0.000136664000000,0.000555034000000 +0.000023492500000,0.000025270000000,0.000025467500000,0.000071083000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000133898000000,0.000137058000000,0.000137849000000,0.000555428000000 +0.000023492500000,0.000025862500000,0.000026060000000,0.000071479000000,0.000038688000000,0.000103478000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000136268000000,0.000136268000000,0.000555823000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000079379000000,0.000037502000000,0.000122441000000,0.000106639000000,0.000039083000000,0.000097947000000,0.000141404000000,0.000136663000000,0.000590589000000 +0.000023492000000,0.000025665000000,0.000024677500000,0.000073848000000,0.000038688000000,0.000302589000000,0.000071083000000,0.000042243000000,0.000097947000000,0.000138639000000,0.000136664000000,0.000553058000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000077799000000,0.000040268000000,0.000228318000000,0.000076614000000,0.000039478000000,0.000098343000000,0.000139429000000,0.000176565000000,0.000557009000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000077799000000,0.000038293000000,0.000121256000000,0.000079379000000,0.000075429000000,0.000097158000000,0.000139429000000,0.000137849000000,0.000554639000000 +0.000023097000000,0.000025862500000,0.000024677500000,0.000089651000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097553000000,0.000136268000000,0.000139429000000,0.000553058000000 +0.000023295000000,0.000025467500000,0.000025467500000,0.000197503000000,0.000037503000000,0.000144565000000,0.000073059000000,0.000039478000000,0.000098343000000,0.000145750000000,0.000139429000000,0.000592564000000 +0.000023097500000,0.000025467500000,0.000025072500000,0.000122046000000,0.000040269000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097157000000,0.000136664000000,0.000136664000000,0.000554639000000 +0.000023295000000,0.000025665000000,0.000025072500000,0.000091627000000,0.000040663000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000133502000000,0.000179330000000,0.000141404000000,0.000323527000000 +0.000023097000000,0.000025467500000,0.000025270000000,0.000090836000000,0.000038688000000,0.000103083000000,0.000073059000000,0.000039479000000,0.000097948000000,0.000136268000000,0.000206984000000,0.000552663000000 +0.000023097000000,0.000028825500000,0.000025467500000,0.000074243000000,0.000088071000000,0.000103083000000,0.000071478000000,0.000040663000000,0.000097553000000,0.000137058000000,0.000136663000000,0.000593354000000 +0.000023097000000,0.000043442500000,0.000024677000000,0.000078194000000,0.000037108000000,0.000103083000000,0.000076219000000,0.000039873000000,0.000097947000000,0.000140614000000,0.000136268000000,0.000553058000000 +0.000023097000000,0.000025665000000,0.000025467500000,0.000077404000000,0.000039083000000,0.000103083000000,0.000128367000000,0.000039478000000,0.000097552000000,0.000138243000000,0.000137058000000,0.000626540000000 +0.000023492000000,0.000025665000000,0.000025862500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000096762000000,0.000136663000000,0.000133503000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000070688000000,0.000039083000000,0.000103874000000,0.000072663000000,0.000039478000000,0.000097947000000,0.000157602000000,0.000134293000000,0.000553058000000 +0.000046603500000,0.000025665000000,0.000025665000000,0.000087676000000,0.000055280000000,0.000139034000000,0.000071083000000,0.000039084000000,0.000098342000000,0.000154046000000,0.000171824000000,0.000663675000000 +0.000023492000000,0.000025665000000,0.000026060500000,0.000071478000000,0.000043428000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000570836000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000077404000000,0.000042638000000,0.000103478000000,0.000073453000000,0.000039083000000,0.000152861000000,0.000136663000000,0.000137453000000,0.000594540000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000074244000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000139429000000,0.000135873000000,0.000573601000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000078984000000,0.000041058000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000098343000000,0.000136663000000,0.000133502000000,0.000587823000000 +0.000023295000000,0.000025467500000,0.000025467500000,0.000077404000000,0.000039874000000,0.000103083000000,0.000079774000000,0.000039478000000,0.000097948000000,0.000139428000000,0.000135873000000,0.000555034000000 +0.000023492500000,0.000025467500000,0.000025072000000,0.000070688000000,0.000043824000000,0.000103083000000,0.000071083000000,0.000038293000000,0.000097947000000,0.000134293000000,0.000174985000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025862500000,0.000070688000000,0.000042639000000,0.000103478000000,0.000072663000000,0.000039083000000,0.000098342000000,0.000138639000000,0.000155231000000,0.000557799000000 +0.000023097000000,0.000025862500000,0.000025270000000,0.000071083000000,0.000043429000000,0.000121651000000,0.000106638000000,0.000039083000000,0.000097947000000,0.000140613000000,0.000134293000000,0.000285602000000 +0.000023294500000,0.000025665000000,0.000024875000000,0.000071083000000,0.000043824000000,0.000119281000000,0.000071478000000,0.000075429000000,0.000097947000000,0.000136663000000,0.000139033000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000079380000000,0.000040268000000,0.000103874000000,0.000073454000000,0.000040664000000,0.000097552000000,0.000135083000000,0.000135873000000,0.000552663000000 +0.000023492000000,0.000025665000000,0.000025665000000,0.000108219000000,0.000041454000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000150490000000,0.000140614000000,0.000136269000000,0.000555033000000 +0.000023097000000,0.000043245000000,0.000025270000000,0.000092811000000,0.000041058000000,0.000103084000000,0.000076614000000,0.000039478000000,0.000113749000000,0.000137849000000,0.000174194000000,0.000555033000000 +0.000023887500000,0.000025665000000,0.000025665000000,0.000077800000000,0.000040268000000,0.000102688000000,0.000078984000000,0.000039478000000,0.000097552000000,0.000136269000000,0.000133503000000,0.000554243000000 +0.000023492000000,0.000025467500000,0.000024479500000,0.000070688000000,0.000043033000000,0.000102688000000,0.000071083000000,0.000041059000000,0.000097157000000,0.000141404000000,0.000137058000000,0.000555824000000 +0.000023689500000,0.000025467500000,0.000025072500000,0.000071083000000,0.000039873000000,0.000102688000000,0.000073059000000,0.000041454000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000024875000000,0.000070688000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000141404000000,0.000554639000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000071479000000,0.000041058000000,0.000139824000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000137058000000,0.000136663000000,0.000555033000000 +0.000050751500000,0.000026060000000,0.000025467500000,0.000078589000000,0.000042243000000,0.000102688000000,0.000073454000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000605997000000 +0.000023097000000,0.000025862500000,0.000025072500000,0.000074243000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000097157000000,0.000168663000000,0.000258738000000,0.000553058000000 +0.000023492000000,0.000025269500000,0.000025072000000,0.000118095000000,0.000041059000000,0.000103083000000,0.000146539000000,0.000039083000000,0.000132713000000,0.000136269000000,0.000324713000000,0.000607577000000 +0.000023492000000,0.000025467500000,0.000024677500000,0.000094786000000,0.000043429000000,0.000103083000000,0.000092811000000,0.000041059000000,0.000113355000000,0.000135083000000,0.000212120000000,0.000554243000000 +0.000023097000000,0.000026850500000,0.000025665000000,0.000106638000000,0.000041849000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097158000000,0.000136268000000,0.000178540000000,0.000287577000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000041454000000,0.000102688000000,0.000072663000000,0.000041059000000,0.000097553000000,0.000137849000000,0.000135083000000,0.000552663000000 +0.000023690000000,0.000028430500000,0.000025665000000,0.000070688000000,0.000040269000000,0.000103083000000,0.000071478000000,0.000041059000000,0.000117701000000,0.000135083000000,0.000135873000000,0.000556614000000 +0.000023887500000,0.000025665000000,0.000024875000000,0.000071083000000,0.000042244000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000127972000000,0.000214885000000,0.000138243000000,0.000553058000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000078985000000,0.000041849000000,0.000138639000000,0.000073454000000,0.000039478000000,0.000097157000000,0.000175379000000,0.000138243000000,0.000554244000000 +0.000023294500000,0.000034949000000,0.000026455000000,0.000074244000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000140218000000,0.000137453000000,0.000554638000000 +0.000023294500000,0.000032183500000,0.000025072000000,0.000078194000000,0.000043824000000,0.000103083000000,0.000077404000000,0.000039478000000,0.000097947000000,0.000137453000000,0.000138638000000,0.000604416000000 +0.000023294500000,0.000028825500000,0.000025862500000,0.000077404000000,0.000043824000000,0.000103083000000,0.000079775000000,0.000072663000000,0.000133898000000,0.000138638000000,0.000208564000000,0.000559379000000 +0.000024085000000,0.000025270000000,0.000025665000000,0.000070688000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136268000000,0.000137453000000,0.000553453000000 +0.000023097000000,0.000025862500000,0.000024875000000,0.000071083000000,0.000040663000000,0.000103083000000,0.000142589000000,0.000039478000000,0.000097552000000,0.000135478000000,0.000138639000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000025664500000,0.000071083000000,0.000041453000000,0.000102688000000,0.000084120000000,0.000039479000000,0.000097552000000,0.000139824000000,0.000136664000000,0.000553453000000 +0.000023492000000,0.000025467500000,0.000025072500000,0.000107033000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000136268000000,0.000137059000000,0.000557799000000 +0.000023097000000,0.000025467500000,0.000025072500000,0.000078194000000,0.000041454000000,0.000138638000000,0.000073058000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000139429000000,0.000555033000000 +0.000022899500000,0.000025467500000,0.000025467500000,0.000074243000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000136269000000,0.000172219000000,0.000553058000000 +0.000041072500000,0.000025467500000,0.000024677500000,0.000077800000000,0.000043429000000,0.000103873000000,0.000076614000000,0.000041454000000,0.000097947000000,0.000139824000000,0.000136269000000,0.000670786000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000077799000000,0.000041058000000,0.000103478000000,0.000079775000000,0.000039083000000,0.000097947000000,0.000137849000000,0.000135873000000,0.000301009000000 +0.000023492000000,0.000025467500000,0.000025467500000,0.000070688000000,0.000039874000000,0.000102293000000,0.000071083000000,0.000041059000000,0.000133503000000,0.000136663000000,0.000135478000000,0.000555429000000 +0.000023887000000,0.000025269500000,0.000024875000000,0.000070688000000,0.000041453000000,0.000102688000000,0.000073058000000,0.000040268000000,0.000097552000000,0.000136268000000,0.000136664000000,0.000553058000000 +0.000023097500000,0.000025270000000,0.000034554000000,0.000071083000000,0.000039873000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000136663000000,0.000590589000000 +0.000023295000000,0.000025467000000,0.000026257500000,0.000071478000000,0.000043824000000,0.000102293000000,0.000071478000000,0.000041059000000,0.000097552000000,0.000136268000000,0.000172218000000,0.000555034000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000077405000000,0.000041453000000,0.000102688000000,0.000109009000000,0.000039873000000,0.000097157000000,0.000141404000000,0.000135873000000,0.000555033000000 +0.000023294500000,0.000043442500000,0.000025072500000,0.000074244000000,0.000039874000000,0.000152070000000,0.000071083000000,0.000039083000000,0.000097947000000,0.000136664000000,0.000135873000000,0.000556614000000 +0.000023294500000,0.000025467500000,0.000026060000000,0.000078589000000,0.000039873000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000098738000000,0.000136663000000,0.000137849000000,0.000598885000000 +0.000023097000000,0.000025270000000,0.000025072500000,0.000112959000000,0.000043823000000,0.000103083000000,0.000080169000000,0.000039479000000,0.000096762000000,0.000138243000000,0.000136663000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000026257500000,0.000071083000000,0.000039873000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097948000000,0.000142984000000,0.000135083000000,0.000555429000000 +0.000023097000000,0.000025467500000,0.000025270000000,0.000071083000000,0.000043824000000,0.000103478000000,0.000072664000000,0.000041059000000,0.000098343000000,0.000136664000000,0.000169849000000,0.000592564000000 +0.000023492000000,0.000025467000000,0.000025467500000,0.000070688000000,0.000041848000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000134292000000,0.000135873000000,0.000135083000000,0.000553058000000 +0.000023492500000,0.000025467500000,0.000026455500000,0.000071478000000,0.000043823000000,0.000103083000000,0.000071478000000,0.000094787000000,0.000096762000000,0.000140614000000,0.000136268000000,0.000557008000000 +0.000023887000000,0.000025862500000,0.000024874500000,0.000078984000000,0.000041058000000,0.000102688000000,0.000073454000000,0.000095182000000,0.000097552000000,0.000138639000000,0.000136269000000,0.000575971000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000074244000000,0.000040269000000,0.000139034000000,0.000071478000000,0.000127577000000,0.000097553000000,0.000133108000000,0.000132713000000,0.000605997000000 +0.000023294500000,0.000025467000000,0.000025665000000,0.000078195000000,0.000041058000000,0.000103478000000,0.000077009000000,0.000132712000000,0.000097553000000,0.000133898000000,0.000134688000000,0.000571626000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000077404000000,0.000043034000000,0.000102688000000,0.000078984000000,0.000091627000000,0.000097947000000,0.000138243000000,0.000136268000000,0.000555429000000 +0.000043838000000,0.000025467500000,0.000024875000000,0.000071083000000,0.000043824000000,0.000102688000000,0.000162342000000,0.000059231000000,0.000097552000000,0.000140219000000,0.000176170000000,0.000554243000000 +0.000023097000000,0.000025665000000,0.000024677500000,0.000070688000000,0.000043429000000,0.000102688000000,0.000072663000000,0.000042243000000,0.000098342000000,0.000139429000000,0.000138244000000,0.000552663000000 +0.000023097000000,0.000025862500000,0.000025467000000,0.000071084000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000041453000000,0.000097947000000,0.000144565000000,0.000133108000000,0.000595725000000 +0.000023097000000,0.000025665000000,0.000030801000000,0.000098342000000,0.000039873000000,0.000103083000000,0.000071083000000,0.000054490000000,0.000133503000000,0.000141009000000,0.000139428000000,0.000590589000000 +0.000023097000000,0.000025665000000,0.000039492500000,0.000078984000000,0.000043429000000,0.000103873000000,0.000073454000000,0.000039479000000,0.000097157000000,0.000136663000000,0.000135478000000,0.000553453000000 +0.000023097000000,0.000043640500000,0.000041270000000,0.000073848000000,0.000044219000000,0.000103083000000,0.000071083000000,0.000059626000000,0.000098342000000,0.000137454000000,0.000132713000000,0.000555033000000 +0.000023295000000,0.000025270000000,0.000038702000000,0.000079379000000,0.000043429000000,0.000139034000000,0.000077404000000,0.000055675000000,0.000097552000000,0.000136663000000,0.000172614000000,0.000553058000000 +0.000023295000000,0.000025269500000,0.000025270000000,0.000077799000000,0.000039873000000,0.000103083000000,0.000079775000000,0.000039478000000,0.000097157000000,0.000133108000000,0.000137453000000,0.000590984000000 +0.000023097000000,0.000025270000000,0.000025072500000,0.000071083000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097157000000,0.000136268000000,0.000136663000000,0.000557404000000 +0.000024084500000,0.000025467000000,0.000025665000000,0.000070688000000,0.000041849000000,0.000103083000000,0.000072663000000,0.000039478000000,0.000097947000000,0.000137453000000,0.000136269000000,0.000555034000000 +0.000023097000000,0.000025862500000,0.000026257500000,0.000071083000000,0.000040663000000,0.000103873000000,0.000071478000000,0.000039479000000,0.000098342000000,0.000135873000000,0.000135873000000,0.000555033000000 +0.000023492000000,0.000026455000000,0.000024480000000,0.000071478000000,0.000043034000000,0.000103083000000,0.000120071000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000556218000000 +0.000023097000000,0.000025665000000,0.000025269500000,0.000079379000000,0.000041454000000,0.000103873000000,0.000073454000000,0.000039083000000,0.000133898000000,0.000132713000000,0.000155231000000,0.000285602000000 +0.000023097500000,0.000025467500000,0.000025665000000,0.000074243000000,0.000043034000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000136663000000,0.000136664000000,0.000590589000000 +0.000023097500000,0.000025665000000,0.000026455000000,0.000119675000000,0.000041848000000,0.000121256000000,0.000076614000000,0.000041059000000,0.000098342000000,0.000136268000000,0.000135873000000,0.000555033000000 +0.000023295000000,0.000025270000000,0.000034949000000,0.000077404000000,0.000040268000000,0.000154441000000,0.000078984000000,0.000039478000000,0.000097552000000,0.000134688000000,0.000136663000000,0.000553058000000 +0.000023492000000,0.000025467500000,0.000078998500000,0.000071084000000,0.000043428000000,0.000103083000000,0.000071478000000,0.000039874000000,0.000098342000000,0.000141009000000,0.000136268000000,0.000591774000000 +0.000024874500000,0.000025862500000,0.000076233000000,0.000071083000000,0.000041058000000,0.000103478000000,0.000073059000000,0.000039478000000,0.000098342000000,0.000140614000000,0.000134293000000,0.000553058000000 +0.000032381000000,0.000025467500000,0.000069516500000,0.000071083000000,0.000040664000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097948000000,0.000140613000000,0.000135478000000,0.000594540000000 +0.000031788500000,0.000029220500000,0.000052726500000,0.000071478000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000096762000000,0.000140614000000,0.000169454000000,0.000553058000000 +0.000023690000000,0.000034948500000,0.000025665000000,0.000077405000000,0.000043034000000,0.000103478000000,0.000073454000000,0.000041059000000,0.000098343000000,0.000137058000000,0.000133503000000,0.000554243000000 +0.000023689500000,0.000033566500000,0.000049566000000,0.000074244000000,0.000040664000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000132713000000,0.000623774000000 +0.000023689500000,0.000025467500000,0.000078208500000,0.000078194000000,0.000040663000000,0.000103083000000,0.000112564000000,0.000039479000000,0.000133502000000,0.000185256000000,0.000137059000000,0.000555033000000 +0.000022899500000,0.000025467500000,0.000071492000000,0.000077404000000,0.000041058000000,0.000175379000000,0.000080169000000,0.000040663000000,0.000097948000000,0.000152466000000,0.000136664000000,0.000858046000000 +0.000023097000000,0.000025665000000,0.000060430500000,0.000070688000000,0.000043034000000,0.000103874000000,0.000071479000000,0.000040663000000,0.000097553000000,0.000136664000000,0.000134688000000,0.000556614000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000090441000000,0.000043428000000,0.000102688000000,0.000073058000000,0.000058046000000,0.000097553000000,0.000136268000000,0.000206194000000,0.000555033000000 +0.000023492500000,0.000035739000000,0.000046208000000,0.000070688000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000052515000000,0.000097157000000,0.000136663000000,0.000149700000000,0.000287971000000 +0.000022899500000,0.000049566000000,0.000032381000000,0.000071478000000,0.000043429000000,0.000103083000000,0.000071478000000,0.000040269000000,0.000098342000000,0.000135083000000,0.000136268000000,0.000552663000000 +0.000023097000000,0.000027245500000,0.000025665000000,0.000078194000000,0.000040268000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000098342000000,0.000137453000000,0.000136268000000,0.000633255000000 +0.000023294500000,0.000028627500000,0.000024677000000,0.000074244000000,0.000043034000000,0.000140219000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000140614000000,0.000134688000000,0.000553453000000 +0.000023294500000,0.000027443000000,0.000025270000000,0.000078590000000,0.000041849000000,0.000121651000000,0.000076614000000,0.000039873000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000590589000000 +0.000023097000000,0.000029220500000,0.000025467500000,0.000077404000000,0.000043429000000,0.000119675000000,0.000079774000000,0.000039478000000,0.000168268000000,0.000163132000000,0.000169058000000,0.000553453000000 +0.000023294500000,0.000027047500000,0.000025270000000,0.000071478000000,0.000041849000000,0.000102688000000,0.000071874000000,0.000040663000000,0.000111774000000,0.000146540000000,0.000136269000000,0.000555034000000 +0.000023492000000,0.000118307000000,0.000025467500000,0.000070688000000,0.000043034000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000097948000000,0.000136663000000,0.000136268000000,0.000763230000000 +0.000023295000000,0.000054899500000,0.000025467500000,0.000070688000000,0.000042244000000,0.000102688000000,0.000140614000000,0.000039873000000,0.000097948000000,0.000136663000000,0.000136663000000,0.000553058000000 +0.000023887500000,0.000043245000000,0.000025072500000,0.000071873000000,0.000042244000000,0.000103083000000,0.000084120000000,0.000039084000000,0.000096762000000,0.000153256000000,0.000136269000000,0.000554639000000 +0.000023097000000,0.000032183500000,0.000041862500000,0.000077404000000,0.000041059000000,0.000103083000000,0.000073453000000,0.000040663000000,0.000097553000000,0.000141009000000,0.000136268000000,0.000552663000000 +0.000050751000000,0.000025665000000,0.000034158500000,0.000110194000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000097947000000,0.000136268000000,0.000133503000000,0.000558194000000 +0.000029813000000,0.000025270000000,0.000035146500000,0.000078194000000,0.000043429000000,0.000103083000000,0.000113750000000,0.000041059000000,0.000097552000000,0.000134687000000,0.000172219000000,0.000555428000000 +0.000023294500000,0.000025467500000,0.000041665000000,0.000077405000000,0.000076614000000,0.000138639000000,0.000092021000000,0.000039873000000,0.000097157000000,0.000136663000000,0.000136268000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000031591000000,0.000071083000000,0.000039873000000,0.000116120000000,0.000071083000000,0.000039084000000,0.000195922000000,0.000141009000000,0.000138244000000,0.000558194000000 +0.000023097000000,0.000029220500000,0.000041467500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000073058000000,0.000041058000000,0.000139429000000,0.000137059000000,0.000136663000000,0.000285601000000 +0.000023294500000,0.000025665000000,0.000046208000000,0.000070688000000,0.000041059000000,0.000102293000000,0.000071478000000,0.000039478000000,0.000112169000000,0.000136663000000,0.000133108000000,0.000555428000000 +0.000023689500000,0.000045615500000,0.000026060000000,0.000071083000000,0.000043429000000,0.000102688000000,0.000071478000000,0.000040663000000,0.000098342000000,0.000136268000000,0.000136268000000,0.000553848000000 +0.000022899500000,0.000032381000000,0.000025665000000,0.000077404000000,0.000039873000000,0.000103083000000,0.000092811000000,0.000040663000000,0.000097948000000,0.000141009000000,0.000206984000000,0.000589008000000 +0.000023295000000,0.000056677000000,0.000025665000000,0.000074244000000,0.000044219000000,0.000102688000000,0.000071083000000,0.000077404000000,0.000098343000000,0.000141009000000,0.000136269000000,0.000571231000000 +0.000023097000000,0.000025467500000,0.000026060000000,0.000078195000000,0.000043034000000,0.000103083000000,0.000076614000000,0.000041058000000,0.000098342000000,0.000139824000000,0.000133503000000,0.000590193000000 +0.000023097000000,0.000025862500000,0.000026257500000,0.000077404000000,0.000041059000000,0.000103083000000,0.000078589000000,0.000039479000000,0.000097552000000,0.000140614000000,0.000133108000000,0.000556613000000 +0.000023887000000,0.000025072500000,0.000026060000000,0.000070688000000,0.000043824000000,0.000139034000000,0.000071083000000,0.000039083000000,0.000132317000000,0.000134688000000,0.000139823000000,0.000554639000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000123626000000,0.000042244000000,0.000102688000000,0.000072664000000,0.000039083000000,0.000111380000000,0.000136268000000,0.000139823000000,0.000555033000000 +0.000023294500000,0.000025270000000,0.000024677500000,0.000071083000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097158000000,0.000137058000000,0.000214095000000,0.000555034000000 +0.000023097500000,0.000025665000000,0.000025665000000,0.000071478000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000041454000000,0.000098343000000,0.000133107000000,0.000136268000000,0.000556614000000 +0.000023097500000,0.000025467500000,0.000026060000000,0.000078194000000,0.000041058000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000097552000000,0.000137058000000,0.000136663000000,0.000552663000000 +0.000023294500000,0.000025665000000,0.000042455000000,0.000074244000000,0.000040269000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136269000000,0.000136268000000,0.000556614000000 +0.000022899500000,0.000025862500000,0.000024677500000,0.000078985000000,0.000043824000000,0.000102687000000,0.000076614000000,0.000041849000000,0.000097157000000,0.000137058000000,0.000137059000000,0.000554243000000 +0.000031591000000,0.000025270000000,0.000025270000000,0.000077404000000,0.000043824000000,0.000102688000000,0.000079775000000,0.000039083000000,0.000097947000000,0.000136663000000,0.000136663000000,0.000327873000000 +0.000023295000000,0.000025467500000,0.000026060000000,0.000071083000000,0.000041454000000,0.000162343000000,0.000107034000000,0.000041454000000,0.000097947000000,0.000137453000000,0.000168663000000,0.000552663000000 +0.000023689500000,0.000025270000000,0.000025270000000,0.000071083000000,0.000042639000000,0.000103083000000,0.000073058000000,0.000039083000000,0.000133503000000,0.000136268000000,0.000136664000000,0.000707922000000 +0.000023492000000,0.000025270000000,0.000024677000000,0.000070688000000,0.000043824000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000136664000000,0.000137454000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071479000000,0.000041058000000,0.000098342000000,0.000136268000000,0.000136268000000,0.000553058000000 +0.000023492500000,0.000034158500000,0.000025665000000,0.000113354000000,0.000041059000000,0.000103478000000,0.000073453000000,0.000039478000000,0.000098737000000,0.000141799000000,0.000136663000000,0.000590984000000 +0.000023492500000,0.000025467500000,0.000024480000000,0.000073848000000,0.000041849000000,0.000103478000000,0.000071478000000,0.000042639000000,0.000097157000000,0.000137849000000,0.000136664000000,0.000553058000000 +0.000023689500000,0.000025270000000,0.000026258000000,0.000079379000000,0.000042639000000,0.000103873000000,0.000077404000000,0.000039478000000,0.000097157000000,0.000139824000000,0.000159577000000,0.000554638000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000077800000000,0.000041058000000,0.000103083000000,0.000078984000000,0.000041848000000,0.000097947000000,0.000139429000000,0.000154442000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000071083000000,0.000039873000000,0.000144564000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000136663000000,0.000139429000000,0.000589799000000 +0.000023294500000,0.000028430500000,0.000024480000000,0.000071083000000,0.000041059000000,0.000102688000000,0.000072663000000,0.000075824000000,0.000096762000000,0.000146145000000,0.000139429000000,0.000554638000000 +0.000023097000000,0.000025467500000,0.000025467000000,0.000070688000000,0.000042639000000,0.000102687000000,0.000071478000000,0.000041453000000,0.000098343000000,0.000136664000000,0.000136664000000,0.000557404000000 +0.000023295000000,0.000025270000000,0.000025467500000,0.000071083000000,0.000043429000000,0.000102688000000,0.000071084000000,0.000039478000000,0.000169059000000,0.000137453000000,0.000141009000000,0.000591379000000 +0.000023295000000,0.000025862500000,0.000026060000000,0.000078589000000,0.000039873000000,0.000103874000000,0.000169058000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000156021000000,0.000605206000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000074243000000,0.000044219000000,0.000103873000000,0.000111380000000,0.000041453000000,0.000097947000000,0.000137058000000,0.000153256000000,0.000558589000000 +0.000023097000000,0.000028825500000,0.000042257500000,0.000078589000000,0.000039873000000,0.000102688000000,0.000082145000000,0.000039084000000,0.000097947000000,0.000140613000000,0.000136268000000,0.000285997000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000112960000000,0.000041058000000,0.000102688000000,0.000080169000000,0.000039083000000,0.000097552000000,0.000137848000000,0.000137058000000,0.000590589000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000071479000000,0.000043823000000,0.000103083000000,0.000071084000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000133502000000,0.000552663000000 +0.000041072500000,0.000025862500000,0.000025467000000,0.000071083000000,0.000041058000000,0.000139429000000,0.000072663000000,0.000059626000000,0.000097552000000,0.000137058000000,0.000133503000000,0.000555033000000 +0.000022899500000,0.000025467000000,0.000025467500000,0.000070688000000,0.000043428000000,0.000102688000000,0.000071083000000,0.000056466000000,0.000096762000000,0.000137849000000,0.000136663000000,0.000555033000000 +0.000023294500000,0.000057072500000,0.000025072500000,0.000071083000000,0.000044219000000,0.000104268000000,0.000071083000000,0.000053305000000,0.000097552000000,0.000136268000000,0.000187231000000,0.000603231000000 +0.000024084500000,0.000049763500000,0.000025665000000,0.000078194000000,0.000042244000000,0.000103478000000,0.000073848000000,0.000040269000000,0.000134688000000,0.000136663000000,0.000137454000000,0.000558984000000 +0.000023097000000,0.000027838000000,0.000025665000000,0.000074244000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000098342000000,0.000139429000000,0.000136268000000,0.000553058000000 +0.000023294500000,0.000033961000000,0.000025072500000,0.000079379000000,0.000048169000000,0.000102688000000,0.000112960000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000133503000000,0.000690934000000 +0.000023295000000,0.000025467500000,0.000025467500000,0.000077404000000,0.000043428000000,0.000102688000000,0.000080170000000,0.000039083000000,0.000097552000000,0.000139428000000,0.000136268000000,0.000555034000000 +0.000023294500000,0.000025270000000,0.000024282000000,0.000070688000000,0.000043824000000,0.000103083000000,0.000071083000000,0.000040269000000,0.000097157000000,0.000137058000000,0.000136663000000,0.000555823000000 +0.000023097000000,0.000025270000000,0.000032578500000,0.000071083000000,0.000042244000000,0.000139033000000,0.000072663000000,0.000039478000000,0.000097157000000,0.000138638000000,0.000175379000000,0.000559379000000 +0.000023097000000,0.000025467500000,0.000023690000000,0.000071083000000,0.000043034000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000140614000000,0.000134688000000,0.000555033000000 +0.000023492000000,0.000025270000000,0.000024085000000,0.000140614000000,0.000043824000000,0.000103479000000,0.000071478000000,0.000040663000000,0.000097552000000,0.000137058000000,0.000139033000000,0.000555824000000 +0.000023492000000,0.000025467500000,0.000023887000000,0.000093207000000,0.000040664000000,0.000103083000000,0.000073058000000,0.000075824000000,0.000098343000000,0.000135083000000,0.000135478000000,0.000285602000000 +0.000023690000000,0.000025270000000,0.000022899500000,0.000073849000000,0.000041454000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000134293000000,0.000140614000000,0.000136664000000,0.000590589000000 +0.000023295000000,0.000025467000000,0.000024084500000,0.000078590000000,0.000041058000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000097948000000,0.000157601000000,0.000138244000000,0.000555033000000 +0.000023097000000,0.000025270000000,0.000041467500000,0.000077799000000,0.000041848000000,0.000103083000000,0.000079775000000,0.000039083000000,0.000097948000000,0.000136268000000,0.000247281000000,0.000554244000000 +0.000023294500000,0.000035344000000,0.000023887000000,0.000071083000000,0.000041848000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000141799000000,0.000353157000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000023887500000,0.000070688000000,0.000040268000000,0.000103083000000,0.000092416000000,0.000041058000000,0.000098342000000,0.000136664000000,0.000171824000000,0.000554638000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000043429000000,0.000139033000000,0.000071083000000,0.000039084000000,0.000097947000000,0.000136663000000,0.000141403000000,0.000552663000000 +0.000032578500000,0.000025862500000,0.000024677000000,0.000071083000000,0.000043034000000,0.000103873000000,0.000071478000000,0.000039083000000,0.000098342000000,0.000137058000000,0.000172219000000,0.000555033000000 +0.000031591000000,0.000025467500000,0.000024085000000,0.000078195000000,0.000041848000000,0.000103083000000,0.000073454000000,0.000040664000000,0.000133503000000,0.000136268000000,0.000136663000000,0.000668811000000 +0.000023294500000,0.000025467500000,0.000023887000000,0.000073849000000,0.000043429000000,0.000103478000000,0.000071478000000,0.000041058000000,0.000113750000000,0.000133503000000,0.000137058000000,0.000553058000000 +0.000023887500000,0.000025467500000,0.000024084500000,0.000114145000000,0.000042243000000,0.000102688000000,0.000077799000000,0.000040268000000,0.000180515000000,0.000136663000000,0.000136663000000,0.000555033000000 +0.000023492500000,0.000025467500000,0.000024677500000,0.000077404000000,0.000043428000000,0.000103873000000,0.000079775000000,0.000040664000000,0.000096762000000,0.000135083000000,0.000135874000000,0.000556614000000 +0.000023097000000,0.000025862500000,0.000025270000000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097553000000,0.000135873000000,0.000136663000000,0.000610342000000 +0.000023294500000,0.000025467500000,0.000023295000000,0.000071083000000,0.000043823000000,0.000102688000000,0.000072663000000,0.000041454000000,0.000097553000000,0.000137849000000,0.000171033000000,0.000552663000000 +0.000023689500000,0.000025270000000,0.000023097500000,0.000070688000000,0.000043033000000,0.000103083000000,0.000071478000000,0.000041059000000,0.000098343000000,0.000135083000000,0.000135873000000,0.000558589000000 +0.000023689500000,0.000025467500000,0.000024480000000,0.000071083000000,0.000042639000000,0.000226737000000,0.000071083000000,0.000040268000000,0.000097947000000,0.000193947000000,0.000137849000000,0.000285601000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000078194000000,0.000039873000000,0.000109799000000,0.000073454000000,0.000039479000000,0.000097157000000,0.000195923000000,0.000138639000000,0.000555033000000 +0.000023295000000,0.000025270000000,0.000024480000000,0.000073849000000,0.000041848000000,0.000116120000000,0.000147725000000,0.000039478000000,0.000097947000000,0.000153651000000,0.000137849000000,0.000553453000000 +0.000023294500000,0.000025862500000,0.000023492000000,0.000078195000000,0.000043824000000,0.000102688000000,0.000077009000000,0.000039083000000,0.000097157000000,0.000137453000000,0.000138244000000,0.000554638000000 +0.000023097000000,0.000025270000000,0.000024282000000,0.000077799000000,0.000043824000000,0.000102687000000,0.000078985000000,0.000039478000000,0.000134293000000,0.000138243000000,0.000171824000000,0.000556613000000 +0.000023492000000,0.000112183500000,0.000023492000000,0.000071083000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000075429000000,0.000097947000000,0.000136268000000,0.000137453000000,0.000552663000000 +0.000022899500000,0.000044628000000,0.000032578500000,0.000089651000000,0.000043033000000,0.000102688000000,0.000073058000000,0.000039479000000,0.000098342000000,0.000173009000000,0.000138244000000,0.000558194000000 +0.000023097000000,0.000051344000000,0.000032381000000,0.000122046000000,0.000041848000000,0.000139034000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000139824000000,0.000136269000000,0.000552662000000 +0.000023887000000,0.000025467500000,0.000023492000000,0.000071083000000,0.000041848000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000136268000000,0.000137454000000,0.000554243000000 +0.000023097000000,0.000025467500000,0.000030998500000,0.000079379000000,0.000041454000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000139429000000,0.000555034000000 +0.000023492500000,0.000029023000000,0.000031591000000,0.000074639000000,0.000043429000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000097553000000,0.000136268000000,0.000136268000000,0.000560959000000 +0.000050751500000,0.000025467000000,0.000023295000000,0.000079380000000,0.000040664000000,0.000102688000000,0.000077009000000,0.000041058000000,0.000097947000000,0.000139429000000,0.000206984000000,0.000588219000000 +0.000076825500000,0.000025467500000,0.000023492000000,0.000077404000000,0.000039478000000,0.000102688000000,0.000080170000000,0.000039478000000,0.000097947000000,0.000173799000000,0.000135874000000,0.000571626000000 +0.000064381000000,0.000025467000000,0.000023689500000,0.000071083000000,0.000039873000000,0.000102688000000,0.000105454000000,0.000041058000000,0.000133108000000,0.000136268000000,0.000135478000000,0.000556614000000 +0.000048974000000,0.000026060000000,0.000023492000000,0.000070688000000,0.000041059000000,0.000102688000000,0.000087281000000,0.000039083000000,0.000097948000000,0.000136268000000,0.000136663000000,0.000285602000000 +0.000024677000000,0.000025467500000,0.000023689500000,0.000070688000000,0.000040268000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000096762000000,0.000136268000000,0.000136664000000,0.000647477000000 +0.000024480000000,0.000025270000000,0.000024677500000,0.000071083000000,0.000043824000000,0.000174589000000,0.000071478000000,0.000041058000000,0.000097553000000,0.000176959000000,0.000136268000000,0.001187131000000 +0.000025270000000,0.000043442500000,0.000023887000000,0.000077799000000,0.000041453000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000098342000000,0.000157601000000,0.000172219000000,0.000728070000000 +0.000030406000000,0.000025270000000,0.000024084500000,0.000184466000000,0.000040663000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000096762000000,0.000173799000000,0.000135873000000,0.001040169000000 +0.000023294500000,0.000025862500000,0.000023689500000,0.000096763000000,0.000040268000000,0.000102688000000,0.000077404000000,0.000039478000000,0.000097947000000,0.000135478000000,0.000137453000000,0.000610342000000 +0.000023689500000,0.000025467500000,0.000024677500000,0.000077404000000,0.000041059000000,0.000102688000000,0.000079774000000,0.000038688000000,0.000097157000000,0.000137849000000,0.000136268000000,0.000590984000000 +0.000023295000000,0.000025467500000,0.000024677000000,0.000070688000000,0.000039873000000,0.000102688000000,0.000071478000000,0.000040663000000,0.000098737000000,0.000142589000000,0.000135083000000,0.000553453000000 +0.000023097500000,0.000025270000000,0.000024085000000,0.000070688000000,0.000043823000000,0.000103083000000,0.000072664000000,0.000040663000000,0.000118095000000,0.000136268000000,0.000133898000000,0.000555033000000 +0.000023295000000,0.000025467500000,0.000024084500000,0.000071083000000,0.000039873000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136269000000,0.000170244000000,0.000554638000000 +0.000031590500000,0.000025467500000,0.000041467500000,0.000071478000000,0.000043824000000,0.000139033000000,0.000071478000000,0.000039083000000,0.000098342000000,0.000160762000000,0.000149701000000,0.000553058000000 +0.000023690000000,0.000025467500000,0.000023492500000,0.000078195000000,0.000041058000000,0.000102688000000,0.000109009000000,0.000075824000000,0.000097552000000,0.000138244000000,0.000136268000000,0.000594935000000 +0.000023097000000,0.000025467500000,0.000024677000000,0.000074244000000,0.000039874000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097947000000,0.000133108000000,0.000133107000000,0.000583873000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000078194000000,0.000041058000000,0.000103083000000,0.000077404000000,0.000041058000000,0.000097552000000,0.000133503000000,0.000134293000000,0.000590589000000 +0.000023097000000,0.000025269500000,0.000024480000000,0.000113749000000,0.000040663000000,0.000103083000000,0.000080169000000,0.000039478000000,0.000097948000000,0.000138243000000,0.000136268000000,0.000556614000000 +0.000023887000000,0.000025665000000,0.000023294500000,0.000071083000000,0.000043428000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000097948000000,0.000140218000000,0.000156416000000,0.000287972000000 +0.000023294500000,0.000025862500000,0.000024084500000,0.000071083000000,0.000043428000000,0.000103083000000,0.000073059000000,0.000039083000000,0.000098737000000,0.000139824000000,0.000137848000000,0.000553453000000 +0.000023295000000,0.000025270000000,0.000023294500000,0.000070688000000,0.000041453000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097157000000,0.000186441000000,0.000210145000000,0.000555034000000 +0.000023295000000,0.000034553500000,0.000023294500000,0.000071083000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000041058000000,0.000209354000000,0.000139824000000,0.000212120000000,0.000553058000000 +0.000023097000000,0.000052134000000,0.000024085000000,0.000077404000000,0.000040268000000,0.000133503000000,0.000073454000000,0.000039479000000,0.000118491000000,0.000137058000000,0.000135478000000,0.000556614000000 +0.000023294500000,0.000025862500000,0.000024084500000,0.000075429000000,0.000043824000000,0.000103873000000,0.000071083000000,0.000041058000000,0.000110984000000,0.000137848000000,0.000220416000000,0.000621404000000 +0.000023294500000,0.000025467500000,0.000023887000000,0.000077799000000,0.000043824000000,0.000102688000000,0.000077008000000,0.000040268000000,0.000098342000000,0.000136663000000,0.000149700000000,0.000646293000000 +0.000023294500000,0.000025862500000,0.000023492000000,0.000077009000000,0.000040268000000,0.000102688000000,0.000114540000000,0.000039873000000,0.000097157000000,0.000133107000000,0.000137453000000,0.000555033000000 +0.000023294500000,0.000025862500000,0.000024085000000,0.000070688000000,0.000043429000000,0.000103083000000,0.000071083000000,0.000040268000000,0.000097947000000,0.000193552000000,0.000136663000000,0.000552663000000 +0.000023097500000,0.000025270000000,0.000023689500000,0.000070688000000,0.000041453000000,0.000102293000000,0.000072663000000,0.000039083000000,0.000097947000000,0.000136664000000,0.000135873000000,0.000755724000000 +0.000023295000000,0.000025862500000,0.000024479500000,0.000071083000000,0.000040269000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000135873000000,0.000136268000000,0.000685008000000 +0.000023492000000,0.000025467500000,0.000024677500000,0.000107034000000,0.000043034000000,0.000103083000000,0.000071478000000,0.000040268000000,0.000133897000000,0.000136268000000,0.000136268000000,0.000552663000000 +0.000023689500000,0.000025270000000,0.000024084500000,0.000077799000000,0.000042244000000,0.000139429000000,0.000073453000000,0.000039478000000,0.000097948000000,0.000133108000000,0.000168663000000,0.000592564000000 +0.000041270000000,0.000025467500000,0.000042060000000,0.000074243000000,0.000055676000000,0.000141404000000,0.000071083000000,0.000039083000000,0.000098343000000,0.000137058000000,0.000136269000000,0.000556614000000 +0.000023689500000,0.000025467500000,0.000023887000000,0.000078194000000,0.000037898000000,0.000117305000000,0.000077009000000,0.000041058000000,0.000097552000000,0.000173404000000,0.000136268000000,0.000285996000000 +0.000023492000000,0.000025467500000,0.000024085000000,0.000077799000000,0.000037898000000,0.000103478000000,0.000080170000000,0.000039083000000,0.000097157000000,0.000134688000000,0.000136663000000,0.000552663000000 +0.000023492000000,0.000025467500000,0.000024084500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000056861000000,0.000097947000000,0.000139824000000,0.000136663000000,0.000609947000000 +0.000023097500000,0.000025862500000,0.000022899500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000073058000000,0.000039873000000,0.000097552000000,0.000140613000000,0.000135083000000,0.000555033000000 +0.000023295000000,0.000034949000000,0.000024084500000,0.000071083000000,0.000038293000000,0.000102688000000,0.000071478000000,0.000039874000000,0.000098342000000,0.000140219000000,0.000171824000000,0.000552663000000 +0.000023097000000,0.000031986000000,0.000024282500000,0.000071083000000,0.000039478000000,0.000102688000000,0.000105849000000,0.000039083000000,0.000097947000000,0.000140219000000,0.000133108000000,0.000590984000000 +0.000023097000000,0.000026060000000,0.000024085000000,0.000077799000000,0.000040664000000,0.000140219000000,0.000087676000000,0.000041059000000,0.000133898000000,0.000157602000000,0.000133108000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000023887000000,0.000073848000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000112564000000,0.000152070000000,0.000132713000000,0.000555428000000 +0.000023097000000,0.000025467500000,0.000024282500000,0.000132712000000,0.000038688000000,0.000102688000000,0.000076614000000,0.000039873000000,0.000098342000000,0.000142984000000,0.000137058000000,0.000553453000000 +0.000023294500000,0.000025665000000,0.000023295000000,0.000077799000000,0.000037898000000,0.000103478000000,0.000080170000000,0.000039873000000,0.000097552000000,0.000138243000000,0.000136664000000,0.000590589000000 +0.000024677500000,0.000025467000000,0.000023295000000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000097157000000,0.000136268000000,0.000212120000000,0.000554243000000 +0.000023294500000,0.000026850000000,0.000022899500000,0.000071083000000,0.000041059000000,0.000103478000000,0.000072663000000,0.000039874000000,0.000097157000000,0.000136269000000,0.000138243000000,0.000557403000000 +0.000024282000000,0.000025862500000,0.000023887500000,0.000071083000000,0.000038688000000,0.000103083000000,0.000071479000000,0.000039083000000,0.000116516000000,0.000136663000000,0.000136663000000,0.000590194000000 +0.000023097000000,0.000028825500000,0.000023887000000,0.000071083000000,0.000040663000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000186836000000,0.000183281000000,0.000136268000000,0.000552662000000 +0.000023294500000,0.000025270000000,0.000023097000000,0.000078589000000,0.000037503000000,0.000122836000000,0.000073453000000,0.000039478000000,0.000118490000000,0.000136664000000,0.000136664000000,0.000557798000000 +0.000023887500000,0.000025467000000,0.000023689500000,0.000074243000000,0.000055676000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000098342000000,0.000140614000000,0.000134293000000,0.000285996000000 +0.000023097000000,0.000025270000000,0.000023887500000,0.000078194000000,0.000038293000000,0.000103083000000,0.000076219000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000209749000000,0.000590589000000 +0.000033368500000,0.000025665000000,0.000033764000000,0.000077799000000,0.000040663000000,0.000103083000000,0.000094787000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000133107000000,0.000552662000000 +0.000023690000000,0.000025665000000,0.000032183500000,0.000071083000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000098343000000,0.000133897000000,0.000136268000000,0.000694885000000 +0.000023294500000,0.000025270000000,0.000023689500000,0.000090046000000,0.000038688000000,0.000102688000000,0.000072663000000,0.000039874000000,0.000097157000000,0.000315231000000,0.000136268000000,0.000933502000000 +0.000023294500000,0.000061220500000,0.000023492000000,0.000129157000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000097553000000,0.000298244000000,0.000136664000000,0.000676318000000 +0.000023294500000,0.000025269500000,0.000024282500000,0.000092416000000,0.000037502000000,0.000103083000000,0.000071479000000,0.000039083000000,0.000097948000000,0.000156021000000,0.000136268000000,0.000555823000000 +0.000023492000000,0.000025270000000,0.000022899500000,0.000095182000000,0.000039083000000,0.000102688000000,0.000073453000000,0.000058046000000,0.000097948000000,0.000141009000000,0.000229897000000,0.000655774000000 +0.000023097000000,0.000025270000000,0.000024282500000,0.000073848000000,0.000038688000000,0.000174589000000,0.000071083000000,0.000039874000000,0.000097552000000,0.000136269000000,0.000177354000000,0.000921255000000 +0.000022899500000,0.000025270000000,0.000022899500000,0.000078589000000,0.000041059000000,0.000116910000000,0.000077404000000,0.000041058000000,0.000168663000000,0.000135083000000,0.000150095000000,0.001038193000000 +0.000023690000000,0.000027048000000,0.000023294500000,0.000077404000000,0.000038688000000,0.000103083000000,0.000079379000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000697650000000 +0.000023294500000,0.000025270000000,0.000023887000000,0.000070688000000,0.000056861000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000141009000000,0.000137848000000,0.000586638000000 +0.000023294500000,0.000025467500000,0.000023492000000,0.000070688000000,0.000055675000000,0.000103874000000,0.000072664000000,0.000041058000000,0.000097947000000,0.000136268000000,0.000136664000000,0.000590194000000 +0.000023294500000,0.000025467500000,0.000024085000000,0.000071083000000,0.000041848000000,0.000103083000000,0.000125997000000,0.000039083000000,0.000099132000000,0.000136664000000,0.000169454000000,0.000587823000000 +0.000023492000000,0.000025467500000,0.000024085000000,0.000071478000000,0.000040663000000,0.000103478000000,0.000071478000000,0.000040268000000,0.000097552000000,0.000137058000000,0.000136268000000,0.000305355000000 +0.000023294500000,0.000025270000000,0.000024084500000,0.000119280000000,0.000039083000000,0.000102688000000,0.000073454000000,0.000039478000000,0.000097552000000,0.000141009000000,0.000136268000000,0.000586638000000 +0.000023097000000,0.000025269500000,0.000024084500000,0.000073849000000,0.000041848000000,0.000139033000000,0.000071083000000,0.000041058000000,0.000097552000000,0.000141009000000,0.000136664000000,0.000614687000000 +0.000023295000000,0.000025467500000,0.000024085000000,0.000078589000000,0.000040663000000,0.000103083000000,0.000076613000000,0.000040663000000,0.000097948000000,0.000140218000000,0.000133898000000,0.000554638000000 +0.000023097500000,0.000025269500000,0.000023492500000,0.000077404000000,0.000039083000000,0.000102293000000,0.000079774000000,0.000039478000000,0.000139429000000,0.000139824000000,0.000133503000000,0.000552663000000 +0.000023097500000,0.000026257500000,0.000024084500000,0.000071083000000,0.000077009000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000135083000000,0.000210144000000,0.000610342000000 +0.000023689500000,0.000043245000000,0.000023689500000,0.000070688000000,0.000039083000000,0.000103083000000,0.000073059000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000139428000000,0.000553454000000 +0.000041270000000,0.000025862500000,0.000068726500000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000191576000000,0.000134688000000,0.000554243000000 +0.000023294500000,0.000025467500000,0.000034356500000,0.000071083000000,0.000037502000000,0.000103083000000,0.000071478000000,0.000041453000000,0.000097157000000,0.000133898000000,0.000136269000000,0.000553058000000 +0.000023887000000,0.000025665000000,0.000026652500000,0.000078984000000,0.000038688000000,0.000104268000000,0.000073454000000,0.000039478000000,0.000097552000000,0.000136664000000,0.000137058000000,0.000598490000000 +0.000023294500000,0.000025269500000,0.000030998500000,0.000074244000000,0.000038688000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000098343000000,0.000136268000000,0.000136663000000,0.000664070000000 +0.000023097000000,0.000025665000000,0.000026257500000,0.000078194000000,0.000041059000000,0.000288762000000,0.000135873000000,0.000041848000000,0.000097158000000,0.000136268000000,0.000172613000000,0.000696465000000 +0.000023097000000,0.000025665000000,0.000025072500000,0.000113354000000,0.000041454000000,0.000323527000000,0.000078590000000,0.000039084000000,0.000097553000000,0.000136664000000,0.000136268000000,0.000600465000000 +0.000023294500000,0.000025665000000,0.000026060000000,0.000071083000000,0.000038688000000,0.000157996000000,0.000071083000000,0.000092811000000,0.000133107000000,0.000138244000000,0.000132712000000,0.000590194000000 +0.000023097500000,0.000025269500000,0.000024677500000,0.000071083000000,0.000040268000000,0.000117305000000,0.000072663000000,0.000039478000000,0.000111379000000,0.000136663000000,0.000136663000000,0.000590983000000 +0.000023295000000,0.000025270000000,0.000025665000000,0.000070688000000,0.000040663000000,0.000177749000000,0.000071083000000,0.000039478000000,0.000097158000000,0.000136663000000,0.000137849000000,0.000303379000000 +0.000023097000000,0.000025862500000,0.000025072500000,0.000071083000000,0.000038293000000,0.000109404000000,0.000071478000000,0.000040663000000,0.000097553000000,0.000136663000000,0.000135479000000,0.000588614000000 +0.000023492000000,0.000025467500000,0.000026258000000,0.000077404000000,0.000041453000000,0.000117700000000,0.000073454000000,0.000039084000000,0.000097553000000,0.000141404000000,0.000174589000000,0.000589009000000 +0.000023097000000,0.000025269500000,0.000024875000000,0.000074639000000,0.000039083000000,0.000103083000000,0.000071478000000,0.000042243000000,0.000097947000000,0.000138243000000,0.000151281000000,0.000586243000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000078985000000,0.000040268000000,0.000102688000000,0.000077799000000,0.000039478000000,0.000097947000000,0.000140613000000,0.000141404000000,0.000590983000000 +0.000023294500000,0.000025467000000,0.000025270000000,0.000077799000000,0.000041454000000,0.000103083000000,0.000079380000000,0.000039083000000,0.000097947000000,0.000139429000000,0.000137848000000,0.000586243000000 +0.000023294500000,0.000026060000000,0.000026257500000,0.000071083000000,0.000041059000000,0.000102688000000,0.000089651000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000139824000000,0.000592169000000 +0.000023097500000,0.000043640000000,0.000026060000000,0.000071083000000,0.000039478000000,0.000103083000000,0.000135873000000,0.000039478000000,0.000133503000000,0.000145750000000,0.000139824000000,0.000660119000000 +0.000023097500000,0.000025467500000,0.000026257500000,0.000070687000000,0.000039874000000,0.000139824000000,0.000071083000000,0.000041058000000,0.000097158000000,0.000137058000000,0.000172614000000,0.000586243000000 +0.000023492000000,0.000025467500000,0.000025072500000,0.000107429000000,0.000040663000000,0.000103478000000,0.000071478000000,0.000039478000000,0.000097157000000,0.000136663000000,0.000141404000000,0.000590589000000 +0.000041467500000,0.000025862500000,0.000025467500000,0.000078589000000,0.000074638000000,0.000103873000000,0.000073454000000,0.000039478000000,0.000098343000000,0.000174985000000,0.000136663000000,0.000595329000000 +0.000023492000000,0.000028627500000,0.000025467500000,0.000074243000000,0.000041453000000,0.000103873000000,0.000071478000000,0.000040664000000,0.000098342000000,0.000155626000000,0.000137058000000,0.000552663000000 +0.000023887000000,0.000025862500000,0.000025665000000,0.000078194000000,0.000040269000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000098342000000,0.000141009000000,0.000136269000000,0.000556218000000 +0.000023097000000,0.000025467000000,0.000025665000000,0.000077799000000,0.000039083000000,0.000102688000000,0.000078589000000,0.000039084000000,0.000097157000000,0.000138243000000,0.000137058000000,0.000554243000000 +0.000023294500000,0.000025862500000,0.000025269500000,0.000071083000000,0.000041059000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000137058000000,0.000133503000000,0.000287181000000 +0.000023690000000,0.000025269500000,0.000025467500000,0.000070688000000,0.000039478000000,0.000103083000000,0.000073059000000,0.000039083000000,0.000097552000000,0.000136269000000,0.000205009000000,0.000602045000000 +0.000023295000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000137453000000,0.000136663000000,0.000593354000000 +0.000023097000000,0.000025467500000,0.000024282000000,0.000071083000000,0.000039478000000,0.000138638000000,0.000090046000000,0.000068318000000,0.000170244000000,0.000196317000000,0.000136269000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000078194000000,0.000039873000000,0.000103083000000,0.000201059000000,0.000039478000000,0.000111774000000,0.000136268000000,0.000137453000000,0.000647872000000 +0.000023294500000,0.000025665000000,0.000026257500000,0.000074243000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000038688000000,0.000097157000000,0.000139429000000,0.000136268000000,0.000881354000000 +0.000023097000000,0.000025467500000,0.000026257500000,0.000096762000000,0.000039479000000,0.000102688000000,0.000077404000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000133897000000,0.000603231000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000093997000000,0.000039083000000,0.000103083000000,0.000079379000000,0.000039478000000,0.000097157000000,0.000139824000000,0.000227922000000,0.000555034000000 +0.000023097000000,0.000025467500000,0.000024875000000,0.000071084000000,0.000041454000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000134688000000,0.000136663000000,0.000563725000000 +0.000023097000000,0.000033763500000,0.000026257500000,0.000071083000000,0.000040268000000,0.000102688000000,0.000073058000000,0.000039479000000,0.000097158000000,0.000139429000000,0.000139429000000,0.000553058000000 +0.000023097500000,0.000025665000000,0.000025467500000,0.000071083000000,0.000040663000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000140614000000,0.000231083000000,0.000666836000000 +0.000023294500000,0.000025665000000,0.000026257500000,0.000071478000000,0.000041454000000,0.000122836000000,0.000071479000000,0.000039479000000,0.000116910000000,0.000136663000000,0.000148515000000,0.000570441000000 +0.000023294500000,0.000025467500000,0.000026060000000,0.000079379000000,0.000039478000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000137059000000,0.000135478000000,0.000250441000000,0.000555429000000 +0.000023097000000,0.000025862500000,0.000025072500000,0.000074244000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097553000000,0.000140614000000,0.000260712000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025862500000,0.000078590000000,0.000038293000000,0.000103083000000,0.000126392000000,0.000039083000000,0.000097948000000,0.000137058000000,0.000138244000000,0.000592960000000 +0.000040677500000,0.000025862500000,0.000024874500000,0.000077404000000,0.000038688000000,0.000103873000000,0.000079380000000,0.000039478000000,0.000097157000000,0.000136269000000,0.000133897000000,0.000285601000000 +0.000030208000000,0.000025270000000,0.000025665000000,0.000070688000000,0.000075429000000,0.000103874000000,0.000071083000000,0.000041058000000,0.000096762000000,0.000141404000000,0.000173009000000,0.000555033000000 +0.000023492000000,0.000025467500000,0.000025665000000,0.000070688000000,0.000041059000000,0.000102688000000,0.000073058000000,0.000041454000000,0.000099132000000,0.000136663000000,0.000136663000000,0.000586638000000 +0.000022899500000,0.000025862500000,0.000026257500000,0.000106639000000,0.000040268000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000137059000000,0.000141404000000,0.000715823000000 +0.000023492000000,0.000035936500000,0.000026257500000,0.000071478000000,0.000039478000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000137059000000,0.000136663000000,0.000592564000000 +0.000023294500000,0.000047985500000,0.000026060000000,0.000077404000000,0.000039083000000,0.000139428000000,0.000073058000000,0.000039083000000,0.000117700000000,0.000136663000000,0.000136268000000,0.000553848000000 +0.000023294500000,0.000034751500000,0.000025665000000,0.000074638000000,0.000039479000000,0.000103083000000,0.000071083000000,0.000041454000000,0.000120071000000,0.000132712000000,0.000136664000000,0.000627330000000 +0.000023295000000,0.000026850000000,0.000026257500000,0.000078984000000,0.000037898000000,0.000103478000000,0.000076219000000,0.000072268000000,0.000096367000000,0.000142589000000,0.000206194000000,0.000588614000000 +0.000023689500000,0.000040875000000,0.000025665000000,0.000077800000000,0.000041058000000,0.000102688000000,0.000079380000000,0.000043429000000,0.000097552000000,0.000135083000000,0.000149700000000,0.000552663000000 +0.000023097000000,0.000026850000000,0.000025665000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000135873000000,0.000136663000000,0.000607577000000 +0.000023294500000,0.000025665000000,0.000025665000000,0.000070688000000,0.000038688000000,0.000103083000000,0.000109009000000,0.000041058000000,0.000097552000000,0.000137848000000,0.000135083000000,0.000554638000000 +0.000023689500000,0.000028430000000,0.000025467500000,0.000071083000000,0.000037503000000,0.000102688000000,0.000071083000000,0.000040664000000,0.000096762000000,0.000134688000000,0.000136268000000,0.000607971000000 +0.000023887500000,0.000025270000000,0.000026060000000,0.000071084000000,0.000039478000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000137848000000,0.000137849000000,0.000738736000000 +0.000023294500000,0.000025467500000,0.000025862500000,0.000077799000000,0.000037503000000,0.000103083000000,0.000073454000000,0.000039479000000,0.000098737000000,0.000138243000000,0.000177750000000,0.000555033000000 +0.000023887000000,0.000025467500000,0.000025072500000,0.000074243000000,0.000038688000000,0.000120465000000,0.000071478000000,0.000039083000000,0.000134688000000,0.000141404000000,0.000137849000000,0.000322342000000 +0.000023097000000,0.000025467000000,0.000025270000000,0.000114934000000,0.000041058000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000097157000000,0.000137849000000,0.000138244000000,0.000553453000000 +0.000023294500000,0.000028825500000,0.000026257500000,0.000077404000000,0.000041059000000,0.000103478000000,0.000080169000000,0.000039478000000,0.000097947000000,0.000138244000000,0.000136663000000,0.000590194000000 +0.000023294500000,0.000025269500000,0.000025467500000,0.000070688000000,0.000039873000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000137453000000,0.000553058000000 +0.000041665000000,0.000025862500000,0.000024875000000,0.000070688000000,0.000038292000000,0.000103083000000,0.000073059000000,0.000039873000000,0.000097947000000,0.000133898000000,0.000138243000000,0.000648268000000 +0.000023097000000,0.000025467500000,0.000026060500000,0.000071083000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000139824000000,0.000156021000000,0.000599280000000 +0.000023295000000,0.000025467500000,0.000024875000000,0.000071083000000,0.000037898000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000137454000000,0.000165898000000,0.000553453000000 +0.000023097500000,0.000025269500000,0.000025862500000,0.000077800000000,0.000093602000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097948000000,0.000136269000000,0.000139429000000,0.001026342000000 +0.000023294500000,0.000025862500000,0.000025862500000,0.000074244000000,0.000092021000000,0.000139034000000,0.000107034000000,0.000039478000000,0.000097553000000,0.000135873000000,0.000136664000000,0.000636021000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000078984000000,0.000058046000000,0.000103084000000,0.000076219000000,0.000041058000000,0.000098343000000,0.000139428000000,0.000135873000000,0.000553058000000 +0.000023689500000,0.000033369000000,0.000025467500000,0.000077799000000,0.000041454000000,0.000102688000000,0.000079774000000,0.000038688000000,0.000169058000000,0.000136663000000,0.000136268000000,0.000589009000000 +0.000023294500000,0.000025270000000,0.000026060000000,0.000071083000000,0.000043034000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097947000000,0.000136269000000,0.000179330000000,0.000602441000000 +0.000023689500000,0.000025270000000,0.000024480000000,0.000107033000000,0.000038688000000,0.000103478000000,0.000073058000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000553453000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000070688000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000075824000000,0.000097947000000,0.000137058000000,0.000136663000000,0.000588613000000 +0.000023690000000,0.000025467500000,0.000026257500000,0.000071083000000,0.000041453000000,0.000102688000000,0.000071479000000,0.000041058000000,0.000097552000000,0.000135873000000,0.000136268000000,0.000556614000000 +0.000023492000000,0.000025665000000,0.000025467000000,0.000077799000000,0.000038688000000,0.000102688000000,0.000073453000000,0.000039478000000,0.000097157000000,0.000141009000000,0.000136268000000,0.000321947000000 +0.000023294500000,0.000025269500000,0.000026060000000,0.000075033000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000078194000000,0.000037503000000,0.000139034000000,0.000077009000000,0.000039083000000,0.000097947000000,0.000135873000000,0.000137848000000,0.000588613000000 +0.000023294500000,0.000025862500000,0.000025467500000,0.000077404000000,0.000039479000000,0.000103873000000,0.000079379000000,0.000039873000000,0.000097948000000,0.000138244000000,0.000299824000000,0.000553058000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000071083000000,0.000037503000000,0.000103083000000,0.000071084000000,0.000039083000000,0.000133898000000,0.000180120000000,0.000243330000000,0.000590984000000 +0.000023097500000,0.000025467500000,0.000025269500000,0.000070688000000,0.000041454000000,0.000138244000000,0.000089256000000,0.000041058000000,0.000098342000000,0.000136268000000,0.000147725000000,0.000641947000000 +0.000023097500000,0.000025270000000,0.000024480000000,0.000070688000000,0.000037503000000,0.000118491000000,0.000071083000000,0.000039873000000,0.000097552000000,0.000136269000000,0.000135083000000,0.000556218000000 +0.000032578500000,0.000025270000000,0.000026060000000,0.000071478000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000098343000000,0.000140219000000,0.000207379000000,0.000589008000000 +0.000031393000000,0.000025862500000,0.000024874500000,0.000077404000000,0.000038688000000,0.000102688000000,0.000073059000000,0.000039083000000,0.000097553000000,0.000138244000000,0.000135873000000,0.000553058000000 +0.000023295000000,0.000025467500000,0.000025072500000,0.000110194000000,0.000059231000000,0.000102688000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000133503000000,0.000132713000000,0.000624959000000 +0.000023887500000,0.000042257500000,0.000026060000000,0.000079774000000,0.000056071000000,0.000139428000000,0.000077009000000,0.000041059000000,0.000097552000000,0.000133502000000,0.000134688000000,0.000589799000000 +0.000023294500000,0.000036924000000,0.000025467500000,0.000077404000000,0.000038688000000,0.000102688000000,0.000079775000000,0.000039083000000,0.000097157000000,0.000138243000000,0.000136268000000,0.000552663000000 +0.000023097000000,0.000074850000000,0.000026257500000,0.000070688000000,0.000041059000000,0.000103083000000,0.000071083000000,0.000039084000000,0.000097552000000,0.000139824000000,0.000136663000000,0.000590193000000 +0.000023294500000,0.000034751000000,0.000025665000000,0.000070688000000,0.000041058000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000169058000000,0.000139429000000,0.000173799000000,0.000554243000000 +0.000023294500000,0.000033961500000,0.000025665000000,0.000071083000000,0.000039478000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000144565000000,0.000133107000000,0.000327478000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000071083000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000041058000000,0.000097157000000,0.000139824000000,0.000139823000000,0.000553058000000 +0.000023295000000,0.000025467000000,0.000025072500000,0.000077799000000,0.000039874000000,0.000103083000000,0.000109404000000,0.000038688000000,0.000099132000000,0.000137059000000,0.000135873000000,0.000639181000000 +0.000023492500000,0.000025665000000,0.000025467500000,0.000074243000000,0.000041453000000,0.000103478000000,0.000071083000000,0.000041058000000,0.000097157000000,0.000138639000000,0.000140614000000,0.000552268000000 +0.000023097000000,0.000025862500000,0.000025270000000,0.000078194000000,0.000041058000000,0.000121651000000,0.000077009000000,0.000075428000000,0.000097157000000,0.000136268000000,0.000144564000000,0.000645898000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000077404000000,0.000038293000000,0.000119676000000,0.000078589000000,0.000039873000000,0.000097552000000,0.000133108000000,0.000146145000000,0.000588614000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000106638000000,0.000040663000000,0.000103083000000,0.000071479000000,0.000040268000000,0.000097157000000,0.000135873000000,0.000145355000000,0.000553453000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000071083000000,0.000037898000000,0.000103478000000,0.000072663000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000144564000000,0.000589799000000 +0.000023294500000,0.000035344000000,0.000047393000000,0.000070688000000,0.000037502000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000134293000000,0.000136269000000,0.000144169000000,0.000553058000000 +0.000023294500000,0.000026455000000,0.000024875000000,0.000071083000000,0.000041058000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000144564000000,0.000587824000000 +0.000022899500000,0.000025665000000,0.000025467500000,0.000078195000000,0.000039083000000,0.000103478000000,0.000073453000000,0.000039478000000,0.000098342000000,0.000133108000000,0.000144169000000,0.000589008000000 +0.000023097500000,0.000025467500000,0.000025072500000,0.000109404000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000144564000000,0.000557403000000 +0.000044825500000,0.000025665000000,0.000041269500000,0.000091626000000,0.000038688000000,0.000102688000000,0.000077009000000,0.000041059000000,0.000098343000000,0.000136663000000,0.000144565000000,0.000842243000000 +0.000030998500000,0.000025467500000,0.000050751500000,0.000077800000000,0.000039083000000,0.000139033000000,0.000080169000000,0.000039478000000,0.000097157000000,0.000134688000000,0.000144960000000,0.000793650000000 +0.000023689500000,0.000025467500000,0.000088480000000,0.000071083000000,0.000037898000000,0.000102688000000,0.000112959000000,0.000039478000000,0.000098342000000,0.000139824000000,0.000144960000000,0.000733996000000 +0.000023097000000,0.000025467500000,0.000042257500000,0.000071083000000,0.000039873000000,0.000103873000000,0.000073058000000,0.000039478000000,0.000097947000000,0.000140614000000,0.000142589000000,0.000285997000000 +0.000023887500000,0.000025467500000,0.000042850000000,0.000070688000000,0.000065552000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000097552000000,0.000141404000000,0.000144169000000,0.000553058000000 +0.000023097000000,0.000029023000000,0.000025270000000,0.000089651000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000116910000000,0.000140219000000,0.000141008000000,0.000589009000000 +0.000024282000000,0.000025467500000,0.000025665000000,0.000199083000000,0.000040663000000,0.000103083000000,0.000073453000000,0.000041058000000,0.000322342000000,0.000137058000000,0.000177355000000,0.000588613000000 +0.000023294500000,0.000025467500000,0.000024875000000,0.000093206000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000307725000000,0.000136663000000,0.000140614000000,0.000555033000000 +0.000023690000000,0.000025467500000,0.000025665000000,0.000091626000000,0.000038688000000,0.000102688000000,0.000077009000000,0.000039478000000,0.000276910000000,0.000142984000000,0.000145354000000,0.000623774000000 +0.000023097000000,0.000025467500000,0.000026060000000,0.000077404000000,0.000038688000000,0.000102688000000,0.000079380000000,0.000039478000000,0.000190787000000,0.000138243000000,0.000144960000000,0.000556219000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000070688000000,0.000041058000000,0.000119280000000,0.000071478000000,0.000041059000000,0.000305749000000,0.000136268000000,0.000142984000000,0.000587824000000 +0.000024677000000,0.000025665000000,0.000026060000000,0.000070688000000,0.000040664000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000239774000000,0.000136269000000,0.000146540000000,0.000588218000000 +0.000023295000000,0.000052924000000,0.000024677500000,0.000070688000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000075824000000,0.000157601000000,0.000172614000000,0.000180120000000,0.000554638000000 +0.000023097500000,0.000025862500000,0.000024479500000,0.000071083000000,0.000040664000000,0.000102293000000,0.000090046000000,0.000039479000000,0.000119281000000,0.000148120000000,0.000144565000000,0.000631675000000 +0.000023294500000,0.000025665000000,0.000025072500000,0.000078194000000,0.000037503000000,0.000103083000000,0.000089651000000,0.000039478000000,0.000117305000000,0.000136663000000,0.000144960000000,0.000553058000000 +0.000022899500000,0.000026850000000,0.000024677500000,0.000110194000000,0.000037503000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000104268000000,0.000140614000000,0.000142590000000,0.000645107000000 +0.000023097000000,0.000025467500000,0.000024874500000,0.000078985000000,0.000038688000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000103083000000,0.000136664000000,0.000144960000000,0.000617453000000 +0.000023294500000,0.000027245500000,0.000025467500000,0.000077799000000,0.000040663000000,0.000103083000000,0.000079775000000,0.000039478000000,0.000103873000000,0.000137058000000,0.000190787000000,0.000285997000000 +0.000057862500000,0.000025665000000,0.000025270000000,0.000070688000000,0.000037503000000,0.000139034000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000133898000000,0.000161553000000,0.000552663000000 +0.000023492000000,0.000025269500000,0.000025467000000,0.000071083000000,0.000038293000000,0.000103083000000,0.000073058000000,0.000039479000000,0.000104268000000,0.000136663000000,0.000144960000000,0.000591379000000 +0.000023887000000,0.000025467500000,0.000025467500000,0.000071083000000,0.000038688000000,0.000103873000000,0.000071083000000,0.000039478000000,0.000104269000000,0.000135873000000,0.000144959000000,0.000627330000000 +0.000023295000000,0.000025269500000,0.000025467500000,0.000071478000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000104268000000,0.000136268000000,0.000144564000000,0.000585058000000 +0.000023295000000,0.000025665000000,0.000025665000000,0.000077800000000,0.000037898000000,0.000102688000000,0.000073059000000,0.000041453000000,0.000130737000000,0.000141404000000,0.000144169000000,0.000588218000000 +0.000023294500000,0.000025467000000,0.000025665000000,0.000073849000000,0.000037502000000,0.000103083000000,0.000071083000000,0.000040269000000,0.000103083000000,0.000157206000000,0.000141404000000,0.000553454000000 +0.000023294500000,0.000025665000000,0.000047788500000,0.000077799000000,0.000076614000000,0.000102688000000,0.000077009000000,0.000041059000000,0.000103478000000,0.000215675000000,0.000145750000000,0.000679872000000 +0.000023294500000,0.000025665000000,0.000026060000000,0.000077799000000,0.000037898000000,0.000103083000000,0.000114145000000,0.000039873000000,0.000104268000000,0.000136269000000,0.000144565000000,0.000879774000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000038293000000,0.000103873000000,0.000127182000000,0.000039874000000,0.000103083000000,0.000141009000000,0.000146540000000,0.000602440000000 +0.000023294500000,0.000050553500000,0.000024677500000,0.000142194000000,0.000038688000000,0.000139034000000,0.000077404000000,0.000041058000000,0.000104268000000,0.000136268000000,0.000144959000000,0.000552662000000 +0.000023294500000,0.000025862500000,0.000025467500000,0.000070688000000,0.000037503000000,0.000102687000000,0.000071083000000,0.000039083000000,0.000103083000000,0.000136268000000,0.000141404000000,0.000592959000000 +0.000023492000000,0.000025467500000,0.000024479500000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000039083000000,0.000103873000000,0.000137058000000,0.000144564000000,0.000553453000000 +0.000024480000000,0.000025270000000,0.000025665000000,0.000077799000000,0.000037897000000,0.000102293000000,0.000073454000000,0.000039478000000,0.000104269000000,0.000141009000000,0.000145354000000,0.000589009000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000073848000000,0.000041453000000,0.000102688000000,0.000071478000000,0.000041058000000,0.000171824000000,0.000141009000000,0.000144960000000,0.000592960000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000078194000000,0.000040663000000,0.000102688000000,0.000076614000000,0.000075428000000,0.000103873000000,0.000140219000000,0.000141404000000,0.000285601000000 +0.000023097000000,0.000026060000000,0.000025467000000,0.000077404000000,0.000037898000000,0.000102688000000,0.000080170000000,0.000053305000000,0.000103478000000,0.000139428000000,0.000141404000000,0.000553454000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000070688000000,0.000041454000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000103873000000,0.000134688000000,0.000148515000000,0.000589008000000 +0.000032776000000,0.000025269500000,0.000025467500000,0.000071083000000,0.000038293000000,0.000123626000000,0.000073058000000,0.000039478000000,0.000103083000000,0.000137059000000,0.000148120000000,0.000589008000000 +0.000031393500000,0.000025270000000,0.000026060000000,0.000071083000000,0.000037503000000,0.000103478000000,0.000107034000000,0.000039478000000,0.000103478000000,0.000137058000000,0.000143379000000,0.000555034000000 +0.000023294500000,0.000025665000000,0.000024874500000,0.000071479000000,0.000039083000000,0.000103083000000,0.000071478000000,0.000041453000000,0.000103478000000,0.000133503000000,0.000144169000000,0.000623379000000 +0.000023294500000,0.000025665000000,0.000025270000000,0.000114540000000,0.000039478000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000116120000000,0.000136663000000,0.000145354000000,0.000555824000000 +0.000023295000000,0.000025467500000,0.000024677500000,0.000074639000000,0.000039874000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000125997000000,0.000136268000000,0.000144565000000,0.000735181000000 +0.000023097500000,0.000025467500000,0.000025467000000,0.000078590000000,0.000041058000000,0.000102688000000,0.000077009000000,0.000042243000000,0.000097552000000,0.000136268000000,0.000145355000000,0.000623379000000 +0.000023295000000,0.000025467000000,0.000034949000000,0.000077799000000,0.000041058000000,0.000103083000000,0.000079774000000,0.000039478000000,0.000097947000000,0.000137059000000,0.000144565000000,0.000555033000000 +0.000023294500000,0.000025270000000,0.000033566500000,0.000071083000000,0.000040269000000,0.000102688000000,0.000071478000000,0.000041454000000,0.000097947000000,0.000178145000000,0.000141800000000,0.000624565000000 +0.000023887000000,0.000060035500000,0.000025665000000,0.000070688000000,0.000039873000000,0.000102688000000,0.000073059000000,0.000039478000000,0.000098342000000,0.000136664000000,0.000144565000000,0.000553453000000 +0.000023492000000,0.000025270000000,0.000025665000000,0.000071084000000,0.000076219000000,0.000145749000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000136268000000,0.000146145000000,0.000590984000000 +0.000023294500000,0.000025467500000,0.000024480000000,0.000071478000000,0.000039478000000,0.000103083000000,0.000071478000000,0.000041058000000,0.000098342000000,0.000136663000000,0.000144169000000,0.000778243000000 +0.000023492500000,0.000025467500000,0.000025467500000,0.000077799000000,0.000040268000000,0.000103083000000,0.000073454000000,0.000039479000000,0.000097948000000,0.000141009000000,0.000144959000000,0.000380811000000 +0.000023097000000,0.000025270000000,0.000024479500000,0.000074244000000,0.000038688000000,0.000103083000000,0.000090441000000,0.000042243000000,0.000097948000000,0.000137848000000,0.000144564000000,0.000619033000000 +0.000023294500000,0.000025467500000,0.000026653000000,0.000079775000000,0.000040268000000,0.000103083000000,0.000109799000000,0.000039478000000,0.000097947000000,0.000147725000000,0.000168268000000,0.000555034000000 +0.000023294500000,0.000025665000000,0.000026060000000,0.000077799000000,0.000039083000000,0.000103083000000,0.000079775000000,0.000039083000000,0.000129947000000,0.000139429000000,0.000146539000000,0.000588614000000 +0.000023097000000,0.000025467500000,0.000025072500000,0.000122441000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000110984000000,0.000136268000000,0.000147725000000,0.000588218000000 +0.000023097000000,0.000028430500000,0.000025664500000,0.000071083000000,0.000038688000000,0.000103478000000,0.000073058000000,0.000058836000000,0.000097947000000,0.000145750000000,0.000157996000000,0.000553454000000 +0.000023294500000,0.000025467000000,0.000025467500000,0.000070688000000,0.000039873000000,0.000122046000000,0.000071083000000,0.000057651000000,0.000135083000000,0.000136269000000,0.000136268000000,0.000636416000000 +0.000023294500000,0.000025467500000,0.000026060000000,0.000071083000000,0.000041059000000,0.000103083000000,0.000071478000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000141404000000,0.000553453000000 +0.000041270000000,0.000025862500000,0.000024480000000,0.000079379000000,0.000037898000000,0.000103083000000,0.000073454000000,0.000039873000000,0.000097552000000,0.000136663000000,0.000204219000000,0.000589009000000 +0.000023097000000,0.000025665000000,0.000026060000000,0.000074244000000,0.000041849000000,0.000103478000000,0.000071083000000,0.000040664000000,0.000097947000000,0.000137848000000,0.000150886000000,0.000588614000000 +0.000023097000000,0.000028825500000,0.000025665000000,0.000078195000000,0.000040663000000,0.000102688000000,0.000077404000000,0.000039873000000,0.000097553000000,0.000140613000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000025467500000,0.000077799000000,0.000037898000000,0.000103083000000,0.000079380000000,0.000039479000000,0.000097948000000,0.000137848000000,0.000136663000000,0.000592564000000 +0.000023295000000,0.000033961000000,0.000025862500000,0.000071083000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000146540000000,0.000136663000000,0.000133107000000,0.000553453000000 +0.000023295000000,0.000025862500000,0.000025467500000,0.000071083000000,0.000041059000000,0.000103083000000,0.000089256000000,0.000039874000000,0.000097948000000,0.000136268000000,0.000133503000000,0.000623379000000 +0.000023097500000,0.000025467500000,0.000025665000000,0.000070688000000,0.000040663000000,0.000103478000000,0.000071478000000,0.000039083000000,0.000097947000000,0.000137454000000,0.000179330000000,0.000592564000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000107034000000,0.000038293000000,0.000139033000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000173404000000,0.000135873000000,0.000285997000000 +0.000023097000000,0.000025665000000,0.000025863000000,0.000078194000000,0.000039873000000,0.000103478000000,0.000073454000000,0.000039478000000,0.000098342000000,0.000136663000000,0.000137454000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000024085000000,0.000074243000000,0.000039478000000,0.000103873000000,0.000071083000000,0.000039874000000,0.000097552000000,0.000139824000000,0.000136268000000,0.000588219000000 +0.000023294500000,0.000025665000000,0.000025072500000,0.000078984000000,0.000074639000000,0.000102688000000,0.000077404000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000133503000000,0.000594935000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000077404000000,0.000039083000000,0.000103479000000,0.000080169000000,0.000040664000000,0.000097552000000,0.000139429000000,0.000135873000000,0.000555033000000 +0.000023294500000,0.000025862500000,0.000024875000000,0.000071083000000,0.000041058000000,0.000102688000000,0.000071083000000,0.000061206000000,0.000098343000000,0.000134293000000,0.000136268000000,0.000622984000000 +0.000023492000000,0.000025467500000,0.000025270000000,0.000071084000000,0.000039873000000,0.000103083000000,0.000072664000000,0.000041848000000,0.000125997000000,0.000139429000000,0.000175379000000,0.000556218000000 +0.000023097500000,0.000025269500000,0.000025072000000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000052910000000,0.000098342000000,0.000141009000000,0.000135083000000,0.000587824000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000071084000000,0.000041059000000,0.000103874000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000136663000000,0.000139033000000,0.000626934000000 +0.000023294500000,0.000025467000000,0.000025665000000,0.000078984000000,0.000038293000000,0.000139034000000,0.000130342000000,0.000059231000000,0.000097947000000,0.000135083000000,0.000135478000000,0.000622589000000 +0.000023294500000,0.000025467500000,0.000025269500000,0.000074243000000,0.000038688000000,0.000103083000000,0.000086096000000,0.000039478000000,0.000097947000000,0.000140219000000,0.000136664000000,0.000590589000000 +0.000032776000000,0.000025270000000,0.000025072500000,0.000125601000000,0.000039873000000,0.000102688000000,0.000076219000000,0.000039479000000,0.000097948000000,0.000137059000000,0.000138244000000,0.000552663000000 +0.000024480000000,0.000034751500000,0.000025665000000,0.000109799000000,0.000038293000000,0.000103873000000,0.000118096000000,0.000039478000000,0.000097158000000,0.000136663000000,0.000169453000000,0.000810243000000 +0.000029813000000,0.000050948500000,0.000025665000000,0.000071083000000,0.000038688000000,0.000103083000000,0.000087676000000,0.000041059000000,0.000127972000000,0.000142194000000,0.000137058000000,0.000589799000000 +0.000023097000000,0.000025270000000,0.000024479500000,0.000071083000000,0.000039478000000,0.000102688000000,0.000073059000000,0.000041058000000,0.000097947000000,0.000136664000000,0.000136268000000,0.000285997000000 +0.000023097000000,0.000025467000000,0.000051936500000,0.000071083000000,0.000040269000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000133898000000,0.000136663000000,0.000141404000000,0.000636811000000 +0.000023294500000,0.000025467500000,0.000043443000000,0.000071478000000,0.000039478000000,0.000103873000000,0.000071478000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000136663000000,0.000555429000000 +0.000023294500000,0.000025467000000,0.000068726500000,0.000077799000000,0.000039478000000,0.000143774000000,0.000073454000000,0.000039873000000,0.000097947000000,0.000156417000000,0.000136663000000,0.000589009000000 +0.000023097000000,0.000025467500000,0.000042455000000,0.000074243000000,0.000039083000000,0.000175774000000,0.000071083000000,0.000041454000000,0.000097157000000,0.000154441000000,0.000171429000000,0.000553453000000 +0.000023492000000,0.000025467500000,0.000032776000000,0.000079379000000,0.000039083000000,0.000120466000000,0.000095182000000,0.000039083000000,0.000097947000000,0.000146145000000,0.000150095000000,0.000588219000000 +0.000023295000000,0.000025665000000,0.000026455000000,0.000077800000000,0.000041058000000,0.000103083000000,0.000095972000000,0.000040664000000,0.000097948000000,0.000177354000000,0.000135873000000,0.000589008000000 +0.000024084500000,0.000025467500000,0.000025665000000,0.000071083000000,0.000039083000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000097948000000,0.000165898000000,0.000136663000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000106244000000,0.000038688000000,0.000103083000000,0.000072663000000,0.000041058000000,0.000097947000000,0.000137849000000,0.000135083000000,0.000589008000000 +0.000023492000000,0.000025270000000,0.000025467500000,0.000071083000000,0.000073848000000,0.000103083000000,0.000071478000000,0.000074639000000,0.000097157000000,0.000135083000000,0.000136268000000,0.000553058000000 +0.000023887500000,0.000025467500000,0.000026060000000,0.000071478000000,0.000040268000000,0.000103873000000,0.000071084000000,0.000077404000000,0.000133107000000,0.000138243000000,0.000137453000000,0.000588613000000 +0.000023294500000,0.000025467500000,0.000024677000000,0.000077405000000,0.000039479000000,0.000139033000000,0.000073453000000,0.000055675000000,0.000115330000000,0.000139429000000,0.000335379000000,0.000575181000000 +0.000023294500000,0.000025665000000,0.000024875000000,0.000073848000000,0.000038688000000,0.000103083000000,0.000071478000000,0.000041848000000,0.000097157000000,0.000140218000000,0.000171429000000,0.000569256000000 +0.000023294500000,0.000025862500000,0.000025665000000,0.000077404000000,0.000041454000000,0.000103083000000,0.000076614000000,0.000058046000000,0.000098342000000,0.000137453000000,0.000138639000000,0.000621799000000 +0.000040677500000,0.000033961500000,0.000025665000000,0.000077404000000,0.000041453000000,0.000102688000000,0.000079379000000,0.000039083000000,0.000097947000000,0.000138243000000,0.000136269000000,0.000555823000000 +0.000048973500000,0.000025467500000,0.000025665000000,0.000070688000000,0.000038688000000,0.000102688000000,0.000071083000000,0.000039479000000,0.000097553000000,0.000136268000000,0.000173404000000,0.000342885000000 +0.000023097000000,0.000025467500000,0.000024875000000,0.000071084000000,0.000039478000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000096762000000,0.000134292000000,0.000138244000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000025072000000,0.000070688000000,0.000037503000000,0.000139034000000,0.000125996000000,0.000040664000000,0.000097948000000,0.000139824000000,0.000136269000000,0.000608366000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000071083000000,0.000037897000000,0.000117701000000,0.000086095000000,0.000039873000000,0.000097553000000,0.000137058000000,0.000137454000000,0.000619033000000 +0.000023887000000,0.000025467500000,0.000025072500000,0.000077799000000,0.000037503000000,0.000138639000000,0.000073058000000,0.000039479000000,0.000133503000000,0.000136268000000,0.000139429000000,0.000589799000000 +0.000023097000000,0.000029220500000,0.000025072500000,0.000144169000000,0.000041058000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000098342000000,0.000136269000000,0.000136268000000,0.000588219000000 +0.000023097500000,0.000025270000000,0.000025665000000,0.000093602000000,0.000039478000000,0.000102293000000,0.000077404000000,0.000040664000000,0.000097948000000,0.000160762000000,0.000135873000000,0.000555823000000 +0.000023097500000,0.000025270000000,0.000024677500000,0.000077404000000,0.000037503000000,0.000102688000000,0.000079774000000,0.000039478000000,0.000096763000000,0.000152466000000,0.000219627000000,0.000598490000000 +0.000023887500000,0.000025270000000,0.000026060000000,0.000070688000000,0.000039478000000,0.000102688000000,0.000071083000000,0.000040663000000,0.000098343000000,0.000136268000000,0.000171034000000,0.000552663000000 +0.000023294500000,0.000026060000000,0.000024677000000,0.000070688000000,0.000037502000000,0.000103083000000,0.000072663000000,0.000039083000000,0.000097552000000,0.000227132000000,0.000137058000000,0.000602441000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000070688000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000161157000000,0.000136269000000,0.000588219000000 +0.000023097000000,0.000025269500000,0.000026060000000,0.000071083000000,0.000041058000000,0.000103083000000,0.000071479000000,0.000041059000000,0.000098342000000,0.000150095000000,0.000136268000000,0.000568070000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000079379000000,0.000039478000000,0.000103083000000,0.000073453000000,0.000039083000000,0.000098342000000,0.000141009000000,0.000172219000000,0.000625354000000 +0.000023887500000,0.000025269500000,0.000025665000000,0.000074639000000,0.000040664000000,0.000139429000000,0.000107429000000,0.000038688000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000554638000000 +0.000023492500000,0.000044825500000,0.000025665000000,0.000077799000000,0.000082145000000,0.000102688000000,0.000076614000000,0.000039478000000,0.000114540000000,0.000135083000000,0.000137453000000,0.000321552000000 +0.000023097000000,0.000040085000000,0.000024875000000,0.000077799000000,0.000038293000000,0.000103873000000,0.000078195000000,0.000040268000000,0.000097947000000,0.000174985000000,0.000136268000000,0.000553058000000 +0.000023887000000,0.000025467500000,0.000025467500000,0.000107034000000,0.000039084000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000142984000000,0.000135083000000,0.000590589000000 +0.000023097000000,0.000025270000000,0.000042652500000,0.000070688000000,0.000041453000000,0.000103478000000,0.000073058000000,0.000041059000000,0.000098342000000,0.000136268000000,0.000133898000000,0.000553058000000 +0.000041072500000,0.000025467500000,0.000025270000000,0.000070688000000,0.000037502000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000096762000000,0.000135873000000,0.000170639000000,0.000713453000000 +0.000023097000000,0.000025270000000,0.000025072000000,0.000071478000000,0.000041058000000,0.000103478000000,0.000071478000000,0.000110590000000,0.000096762000000,0.000140219000000,0.000136269000000,0.000637206000000 +0.000023294500000,0.000025467500000,0.000024480000000,0.000077799000000,0.000037502000000,0.000102688000000,0.000073454000000,0.000127972000000,0.000096762000000,0.000138244000000,0.000135873000000,0.000553058000000 +0.000023097000000,0.000025862500000,0.000025072500000,0.000073849000000,0.000037503000000,0.000174589000000,0.000071083000000,0.000098342000000,0.000097947000000,0.000170639000000,0.000133502000000,0.000636416000000 +0.000023295000000,0.000025467500000,0.000025665000000,0.000078194000000,0.000037503000000,0.000103873000000,0.000077009000000,0.000076614000000,0.000097948000000,0.000134293000000,0.000134293000000,0.000571626000000 +0.000023295000000,0.000025467500000,0.000025270000000,0.000077799000000,0.000039873000000,0.000103873000000,0.000078589000000,0.000057256000000,0.000169058000000,0.000138243000000,0.000136664000000,0.000613898000000 +0.000023492000000,0.000025270000000,0.000024875000000,0.000071083000000,0.000041058000000,0.000103478000000,0.000071083000000,0.000043034000000,0.000097947000000,0.000139824000000,0.000136663000000,0.000636416000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000071083000000,0.000040664000000,0.000102688000000,0.000129553000000,0.000039084000000,0.000097552000000,0.000139824000000,0.000174589000000,0.000607972000000 +0.000023097000000,0.000025270000000,0.000025467500000,0.000070688000000,0.000038688000000,0.000103083000000,0.000084910000000,0.000039478000000,0.000098342000000,0.000144565000000,0.000133107000000,0.000628910000000 +0.000023097000000,0.000025467500000,0.000025665000000,0.000090836000000,0.000039478000000,0.000103083000000,0.000071083000000,0.000041059000000,0.000097157000000,0.000211330000000,0.000139428000000,0.000636811000000 +0.000023689500000,0.000025270000000,0.000025467500000,0.000111775000000,0.000039478000000,0.000102688000000,0.000073059000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000135873000000,0.000556219000000 +0.000023097000000,0.000043837500000,0.000024479500000,0.000074639000000,0.000041454000000,0.000123231000000,0.000071083000000,0.000041453000000,0.000097552000000,0.000137848000000,0.000132318000000,0.000340515000000 +0.000023887500000,0.000025467500000,0.000025467500000,0.000078194000000,0.000041058000000,0.000104269000000,0.000077799000000,0.000039478000000,0.000097552000000,0.000136664000000,0.000136268000000,0.000553453000000 +0.000023097000000,0.000025270000000,0.000024677500000,0.000077799000000,0.000038293000000,0.000103083000000,0.000078590000000,0.000039873000000,0.000097552000000,0.000133108000000,0.000183676000000,0.000624169000000 +0.000023294500000,0.000025862500000,0.000026060000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071083000000,0.000040269000000,0.000133503000000,0.000135873000000,0.000136663000000,0.000553058000000 +0.000022899500000,0.000025665000000,0.000025467500000,0.000070688000000,0.000039083000000,0.000102688000000,0.000073058000000,0.000091231000000,0.000097552000000,0.000174194000000,0.000135873000000,0.000625354000000 +0.000023294500000,0.000025862500000,0.000025863000000,0.000071083000000,0.000075824000000,0.000103083000000,0.000071478000000,0.000040664000000,0.000098342000000,0.000136268000000,0.000136268000000,0.000622984000000 +0.000022899500000,0.000025467500000,0.000026060000000,0.000071478000000,0.000040664000000,0.000103478000000,0.000071478000000,0.000039083000000,0.000098343000000,0.000136663000000,0.000136664000000,0.000555429000000 +0.000023294500000,0.000025270000000,0.000025270000000,0.000077799000000,0.000039083000000,0.000102688000000,0.000109404000000,0.000039083000000,0.000098343000000,0.000132713000000,0.000135873000000,0.000933897000000 +0.000031986000000,0.000025270000000,0.000024085000000,0.000074244000000,0.000040663000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000172218000000,0.000605207000000 +0.000024480000000,0.000025467500000,0.000024282500000,0.000116120000000,0.000039083000000,0.000139429000000,0.000076614000000,0.000041059000000,0.000097157000000,0.000136268000000,0.000136268000000,0.000555428000000 +0.000023097000000,0.000025665000000,0.000024677500000,0.000093997000000,0.000038688000000,0.000103083000000,0.000079379000000,0.000039478000000,0.000097947000000,0.000134688000000,0.000136663000000,0.000589798000000 +0.000023689500000,0.000025467500000,0.000025270000000,0.000071083000000,0.000038688000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000097157000000,0.000205404000000,0.000135874000000,0.000553848000000 +0.000023294500000,0.000025862500000,0.000025467500000,0.000070688000000,0.000038688000000,0.000103873000000,0.000073059000000,0.000039478000000,0.000131527000000,0.000140218000000,0.000134688000000,0.000590194000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000071083000000,0.000037897000000,0.000103083000000,0.000071478000000,0.000040269000000,0.000115725000000,0.000140614000000,0.000135873000000,0.000590984000000 +0.000023294500000,0.000025270000000,0.000024874500000,0.000071478000000,0.000038688000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098342000000,0.000140219000000,0.000133108000000,0.000286787000000 +0.000023294500000,0.000025862500000,0.000025467500000,0.000078985000000,0.000040663000000,0.000102688000000,0.000073454000000,0.000041059000000,0.000097552000000,0.000137059000000,0.000169454000000,0.000553058000000 +0.000023097500000,0.000053319500000,0.000026257500000,0.000073848000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000138244000000,0.000133108000000,0.000571626000000 +0.000023097500000,0.000025270000000,0.000024677500000,0.000077799000000,0.000038688000000,0.000103083000000,0.000077404000000,0.000039083000000,0.000097948000000,0.000159577000000,0.000137059000000,0.000588614000000 +0.000023097500000,0.000025269500000,0.000024874500000,0.000077799000000,0.000038688000000,0.000149701000000,0.000080169000000,0.000039478000000,0.000097948000000,0.000138243000000,0.000136663000000,0.000552663000000 +0.000023294500000,0.000025665000000,0.000025072500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000142194000000,0.000041454000000,0.000097552000000,0.000136268000000,0.000134688000000,0.000646688000000 +0.000023097000000,0.000027048000000,0.000025862500000,0.000071083000000,0.000040663000000,0.000102293000000,0.000072663000000,0.000039873000000,0.000098342000000,0.000136664000000,0.000137849000000,0.000553453000000 +0.000024479500000,0.000025467500000,0.000025467500000,0.000122046000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000131922000000,0.000136663000000,0.000172614000000,0.000589009000000 +0.000023097000000,0.000028825500000,0.000026060000000,0.000071479000000,0.000040664000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000286787000000,0.000134688000000,0.000136663000000,0.000649058000000 +0.000023295000000,0.000025467500000,0.000025270000000,0.000078589000000,0.000038293000000,0.000103083000000,0.000073454000000,0.000093206000000,0.000287577000000,0.000179330000000,0.000136269000000,0.000553058000000 +0.000023295000000,0.000025665000000,0.000032974000000,0.000074243000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039478000000,0.000197108000000,0.000140614000000,0.000134688000000,0.000589403000000 +0.000023887000000,0.000025467000000,0.000024480000000,0.000078589000000,0.000038688000000,0.000102688000000,0.000076614000000,0.000040663000000,0.000103478000000,0.000136268000000,0.000136268000000,0.000557009000000 +0.000041072500000,0.000025270000000,0.000025270000000,0.000077404000000,0.000056861000000,0.000180515000000,0.000079775000000,0.000039478000000,0.000135083000000,0.000136268000000,0.000133503000000,0.000598490000000 +0.000023294500000,0.000025270000000,0.000025467000000,0.000070688000000,0.000038688000000,0.000120861000000,0.000071083000000,0.000040663000000,0.000112564000000,0.000133502000000,0.000136663000000,0.000588218000000 +0.000023492000000,0.000025270000000,0.000025467500000,0.000108613000000,0.000039478000000,0.000102688000000,0.000072663000000,0.000039478000000,0.000097947000000,0.000136663000000,0.000200268000000,0.000556614000000 +0.000023294500000,0.000025862500000,0.000026257500000,0.000075034000000,0.000037898000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000174194000000,0.000136663000000,0.000285602000000 +0.000023294500000,0.000035146500000,0.000026060000000,0.000071083000000,0.000037898000000,0.000102688000000,0.000107429000000,0.000039083000000,0.000098342000000,0.000136663000000,0.000136268000000,0.000569650000000 +0.000023097000000,0.000051146000000,0.000025467500000,0.000113749000000,0.000039083000000,0.000102688000000,0.000073453000000,0.000041058000000,0.000098738000000,0.000141009000000,0.000136269000000,0.000623378000000 +0.000023294500000,0.000041072500000,0.000024875000000,0.000074243000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039874000000,0.000097553000000,0.000136268000000,0.000133503000000,0.000553453000000 +0.000023294500000,0.000025467500000,0.000025072000000,0.000078984000000,0.000041059000000,0.000103083000000,0.000076614000000,0.000041058000000,0.000097158000000,0.000135478000000,0.000136664000000,0.000590589000000 +0.000023097500000,0.000027047500000,0.000025467500000,0.000077799000000,0.000039083000000,0.000137849000000,0.000080169000000,0.000039873000000,0.000097948000000,0.000136663000000,0.000178540000000,0.000553453000000 +0.000023097500000,0.000025270000000,0.000026257500000,0.000071083000000,0.000039478000000,0.000116515000000,0.000071083000000,0.000039478000000,0.000139428000000,0.000178540000000,0.000137848000000,0.000592565000000 +0.000023295000000,0.000025467500000,0.000025467500000,0.000070688000000,0.000038293000000,0.000102688000000,0.000073059000000,0.000041058000000,0.000097947000000,0.000136268000000,0.000136268000000,0.000636416000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071083000000,0.000039479000000,0.000098343000000,0.000136664000000,0.000133108000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000024677000000,0.000071478000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000097158000000,0.000136268000000,0.000136664000000,0.000590589000000 +0.000023492000000,0.000025269500000,0.000024677500000,0.000078194000000,0.000038688000000,0.000103083000000,0.000073453000000,0.000039478000000,0.000097948000000,0.000140614000000,0.000136663000000,0.000554244000000 +0.000023097000000,0.000025467500000,0.000026455000000,0.000073848000000,0.000041453000000,0.000103083000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000141009000000,0.000172614000000,0.000587823000000 +0.000023294500000,0.000025467000000,0.000025665000000,0.000078194000000,0.000040664000000,0.000103873000000,0.000076614000000,0.000041058000000,0.000097552000000,0.000160367000000,0.000133503000000,0.000590588000000 +0.000023097000000,0.000025467500000,0.000025467000000,0.000096762000000,0.000039083000000,0.000102293000000,0.000175379000000,0.000074639000000,0.000097157000000,0.000152465000000,0.000133503000000,0.000618243000000 +0.000023492500000,0.000026257500000,0.000025467500000,0.000121651000000,0.000074638000000,0.000139034000000,0.000127577000000,0.000054491000000,0.000097552000000,0.000134688000000,0.000139823000000,0.000305355000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000071083000000,0.000042638000000,0.000103083000000,0.000105848000000,0.000039478000000,0.000133107000000,0.000136268000000,0.000140219000000,0.000700416000000 +0.000049171000000,0.000025270000000,0.000024480000000,0.000070688000000,0.000092811000000,0.000103478000000,0.000086490000000,0.000039084000000,0.000098343000000,0.000137058000000,0.000134688000000,0.000590984000000 +0.000023294500000,0.000051344000000,0.000024875000000,0.000071478000000,0.000069503000000,0.000102688000000,0.000071478000000,0.000041453000000,0.000097948000000,0.000133898000000,0.000171823000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000078194000000,0.000057256000000,0.000102293000000,0.000073453000000,0.000039478000000,0.000097552000000,0.000136663000000,0.000137058000000,0.000588613000000 +0.000023294500000,0.000025467500000,0.000025665000000,0.000073848000000,0.000041058000000,0.000103873000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000186441000000,0.000136663000000,0.000629700000000 +0.000023097000000,0.000025665000000,0.000025665000000,0.000078195000000,0.000071478000000,0.000104268000000,0.000076614000000,0.000041453000000,0.000097552000000,0.000136268000000,0.000136664000000,0.000553453000000 +0.000023097000000,0.000025467500000,0.000024677500000,0.000077404000000,0.000041454000000,0.000103083000000,0.000079380000000,0.000039083000000,0.000137848000000,0.000137058000000,0.000136268000000,0.000589403000000 +0.000023097000000,0.000025467500000,0.000025072500000,0.000070688000000,0.000038688000000,0.000145355000000,0.000112960000000,0.000041453000000,0.000115330000000,0.000137453000000,0.000132712000000,0.000553058000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000071083000000,0.000040268000000,0.000103083000000,0.000087281000000,0.000039478000000,0.000097947000000,0.000136268000000,0.000137058000000,0.000598885000000 +0.000023295000000,0.000025270000000,0.000025665000000,0.000070688000000,0.000061206000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000133898000000,0.000136663000000,0.000154046000000,0.000586638000000 +0.000023492000000,0.000025862500000,0.000025270000000,0.000107034000000,0.000055281000000,0.000102688000000,0.000071478000000,0.000040663000000,0.000097947000000,0.000274935000000,0.000135873000000,0.000572811000000 +0.000023492000000,0.000025467500000,0.000025665000000,0.000078194000000,0.000052910000000,0.000103873000000,0.000073454000000,0.000039084000000,0.000097157000000,0.000154441000000,0.000137058000000,0.000601256000000 +0.000023294500000,0.000025467500000,0.000025270000000,0.000073848000000,0.000037898000000,0.000103874000000,0.000071083000000,0.000042638000000,0.000097157000000,0.000137849000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000025270000000,0.000025467000000,0.000077799000000,0.000039874000000,0.000102688000000,0.000077404000000,0.000039083000000,0.000097552000000,0.000139429000000,0.000141009000000,0.000591379000000 +0.000023097000000,0.000025467500000,0.000034949000000,0.000077799000000,0.000039083000000,0.000103083000000,0.000079380000000,0.000039478000000,0.000098342000000,0.000173799000000,0.000137848000000,0.000285997000000 +0.000023097000000,0.000026060000000,0.000032578500000,0.000071083000000,0.000039083000000,0.000103083000000,0.000071083000000,0.000039873000000,0.000097947000000,0.000205799000000,0.000175379000000,0.000623774000000 +0.000023295000000,0.000025269500000,0.000025665000000,0.000070688000000,0.000058046000000,0.000284811000000,0.000073058000000,0.000039478000000,0.000097552000000,0.000146144000000,0.000139033000000,0.000553453000000 +0.000023295000000,0.000043443000000,0.000025467500000,0.000071478000000,0.000039873000000,0.000239380000000,0.000071083000000,0.000041058000000,0.000097947000000,0.000136663000000,0.000136268000000,0.000602835000000 +0.000033368500000,0.000025467500000,0.000024677000000,0.000071478000000,0.000040664000000,0.000116910000000,0.000071873000000,0.000091231000000,0.000117305000000,0.000137059000000,0.000220417000000,0.000589404000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000078194000000,0.000038688000000,0.000103478000000,0.000090836000000,0.000039083000000,0.000098342000000,0.000136268000000,0.000136268000000,0.000566490000000 +0.000023097000000,0.000028628000000,0.000025665000000,0.000073849000000,0.000041454000000,0.000102688000000,0.000071478000000,0.000041058000000,0.000097552000000,0.000136663000000,0.000136663000000,0.000856070000000 +0.000023097000000,0.000025072000000,0.000025467500000,0.000116120000000,0.000038293000000,0.000103873000000,0.000077405000000,0.000039083000000,0.000097157000000,0.000199873000000,0.000153651000000,0.000641947000000 +0.000023294500000,0.000025467500000,0.000026060500000,0.000211725000000,0.000041059000000,0.000120071000000,0.000080169000000,0.000039083000000,0.000098343000000,0.000405305000000,0.000137059000000,0.000552268000000 +0.000023294500000,0.000025665000000,0.000025467500000,0.000225552000000,0.000041453000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097553000000,0.000155626000000,0.000133503000000,0.000635231000000 +0.000023097000000,0.000025270000000,0.000026455000000,0.000126787000000,0.000038688000000,0.000103083000000,0.000072664000000,0.000039873000000,0.000097553000000,0.000136664000000,0.000133503000000,0.000554639000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000088465000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000039083000000,0.000096762000000,0.000140219000000,0.000136663000000,0.000632070000000 +0.000023097000000,0.000025665000000,0.000024479500000,0.000071083000000,0.000039873000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000097948000000,0.000135873000000,0.000136269000000,0.000638392000000 +0.000023097000000,0.000025270000000,0.000024875000000,0.000078194000000,0.000039873000000,0.000103083000000,0.000073454000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000175379000000,0.000554243000000 +0.000023295000000,0.000025467500000,0.000026257500000,0.000109799000000,0.000038688000000,0.000103478000000,0.000071083000000,0.000039479000000,0.000135083000000,0.000139824000000,0.000135873000000,0.000357108000000 +0.000023294500000,0.000025270000000,0.000024875000000,0.000078985000000,0.000038688000000,0.000102688000000,0.000076614000000,0.000039083000000,0.000112564000000,0.000136664000000,0.000133502000000,0.000552663000000 +0.000023294500000,0.000025467500000,0.000025072000000,0.000077404000000,0.000038688000000,0.000172219000000,0.000114540000000,0.000039083000000,0.000097947000000,0.000139429000000,0.000135873000000,0.000596515000000 +0.000023294500000,0.000025467500000,0.000024677500000,0.000070688000000,0.000041058000000,0.000120070000000,0.000071083000000,0.000039478000000,0.000097947000000,0.000134688000000,0.000137059000000,0.000553058000000 +0.000023492000000,0.000034949000000,0.000024677000000,0.000071083000000,0.000040663000000,0.000102293000000,0.000073058000000,0.000040268000000,0.000097157000000,0.000175379000000,0.000139429000000,0.000636811000000 +0.000023294500000,0.000076232500000,0.000024875000000,0.000070688000000,0.000040663000000,0.000103478000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000140614000000,0.000171429000000,0.000633255000000 +0.000023294500000,0.000063195500000,0.000025467500000,0.000071083000000,0.000041058000000,0.000102688000000,0.000071478000000,0.000039478000000,0.000098343000000,0.000136268000000,0.000139033000000,0.000552662000000 +0.000023295000000,0.000045220500000,0.000025467500000,0.000078194000000,0.000037502000000,0.000102688000000,0.000073453000000,0.000039083000000,0.000097947000000,0.000135083000000,0.000135478000000,0.000634835000000 +0.000023097500000,0.000034949000000,0.000025665000000,0.000074244000000,0.000071873000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000098342000000,0.000140219000000,0.000136268000000,0.000553058000000 +0.000060035500000,0.000026850000000,0.000025270000000,0.000078194000000,0.000040664000000,0.000103083000000,0.000077404000000,0.000108218000000,0.000133898000000,0.000136664000000,0.000138243000000,0.000624169000000 +0.000040677000000,0.000027837500000,0.000024282000000,0.000077404000000,0.000037898000000,0.000163133000000,0.000080169000000,0.000039874000000,0.000099132000000,0.000137454000000,0.000133108000000,0.000634046000000 +0.000033171000000,0.000032776000000,0.000026258000000,0.000106639000000,0.000038688000000,0.000136664000000,0.000071083000000,0.000041058000000,0.000097552000000,0.000141404000000,0.000136663000000,0.000556218000000 +0.000030998500000,0.000025467500000,0.000025467500000,0.000071083000000,0.000038293000000,0.000102688000000,0.000072663000000,0.000041058000000,0.000097157000000,0.000136268000000,0.000172219000000,0.000623379000000 +0.000023294500000,0.000025665000000,0.000025270000000,0.000070688000000,0.000038293000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000097947000000,0.000136663000000,0.000141404000000,0.000552268000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000071083000000,0.000037503000000,0.000103083000000,0.000107429000000,0.000039478000000,0.000097947000000,0.000137058000000,0.000136663000000,0.000636416000000 +0.000023294500000,0.000035739000000,0.000026060000000,0.000077404000000,0.000039083000000,0.000103083000000,0.000073453000000,0.000039874000000,0.000097157000000,0.000136663000000,0.000136664000000,0.000323527000000 +0.000023097500000,0.000025862500000,0.000025269500000,0.000074244000000,0.000040663000000,0.000103083000000,0.000071084000000,0.000041058000000,0.000097552000000,0.000133898000000,0.000137058000000,0.001035428000000 +0.000023492500000,0.000025467500000,0.000026258000000,0.000079775000000,0.000039084000000,0.000103478000000,0.000077009000000,0.000040268000000,0.000098342000000,0.000136268000000,0.000136268000000,0.000602046000000 +0.000023492000000,0.000025270000000,0.000024480000000,0.000077404000000,0.000040663000000,0.000139429000000,0.000080170000000,0.000041059000000,0.000155231000000,0.000135479000000,0.000261107000000,0.000589008000000 +0.000023294500000,0.000026850000000,0.000025467500000,0.000070688000000,0.000037897000000,0.000117701000000,0.000071083000000,0.000039478000000,0.000097157000000,0.000135873000000,0.000170639000000,0.000555033000000 +0.000023097000000,0.000025467500000,0.000025467500000,0.000071083000000,0.000037898000000,0.000102688000000,0.000072663000000,0.000041058000000,0.000097157000000,0.000137849000000,0.000135083000000,0.000588614000000 +0.000023689500000,0.000028430500000,0.000035739500000,0.000071083000000,0.000038293000000,0.000102688000000,0.000071083000000,0.000041454000000,0.000097552000000,0.000134687000000,0.000136268000000,0.000557009000000 +0.000024480000000,0.000025270000000,0.000033764000000,0.000071083000000,0.000039873000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000096762000000,0.000137848000000,0.000137848000000,0.000598885000000 +0.000023294500000,0.000025270000000,0.000025665000000,0.000114934000000,0.000039083000000,0.000102688000000,0.000073453000000,0.000039479000000,0.000098342000000,0.000139428000000,0.000174589000000,0.000588219000000 +0.000023097000000,0.000025270000000,0.000025665000000,0.000074639000000,0.000037898000000,0.000102688000000,0.000071083000000,0.000039478000000,0.000097552000000,0.000140614000000,0.000137454000000,0.000555428000000 +0.000057270000000,0.000025270000000,0.000025072500000,0.000077799000000,0.000041454000000,0.000103083000000,0.000077799000000,0.000039083000000,0.000097947000000,0.000137454000000,0.000138639000000,0.000590588000000 +0.000029813000000,0.000028825500000,0.000025467500000,0.000077799000000,0.000041454000000,0.000102688000000,0.000109404000000,0.000039083000000,0.000097552000000,0.000138639000000,0.000136663000000,0.000553058000000 +0.000023294500000,0.000025467500000,0.000025072500000,0.000070688000000,0.000039083000000,0.000152070000000,0.000071083000000,0.000039478000000,0.000134293000000,0.000135873000000,0.000137058000000,0.000630095000000 +0.000023294500000,0.000025862500000,0.000051936500000,0.000070688000000,0.000060022000000,0.000103083000000,0.000072663000000,0.000060416000000,0.000097157000000,0.000133898000000,0.000138243000000,0.000555428000000 +0.000023097000000,0.000035541500000,0.000024874500000,0.000071083000000,0.000080960000000,0.000102293000000,0.000071874000000,0.000334193000000,0.000098738000000,0.000139824000000,0.000136269000000,0.000303774000000 +0.000023294500000,0.000057467500000,0.000025665000000,0.000071083000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000058441000000,0.000097948000000,0.000191577000000,0.000220416000000,0.000553058000000 +0.000023295000000,0.000025467500000,0.000024677500000,0.000078984000000,0.000037898000000,0.000102688000000,0.000073453000000,0.000069503000000,0.000097552000000,0.000136268000000,0.000139429000000,0.000590194000000 +0.000023097500000,0.000025467500000,0.000026060000000,0.000074639000000,0.000041059000000,0.000103478000000,0.000092022000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000136663000000,0.000622984000000 +0.000023887500000,0.000025467500000,0.000024479500000,0.000078589000000,0.000039083000000,0.000103083000000,0.000093997000000,0.000041453000000,0.000097947000000,0.000139429000000,0.000136268000000,0.000553453000000 +0.000023294500000,0.000025665000000,0.000024480000000,0.000115330000000,0.000038688000000,0.000103873000000,0.000078985000000,0.000039083000000,0.000097157000000,0.000136663000000,0.000135874000000,0.000588613000000 +0.000023294500000,0.000025270000000,0.000025467500000,0.000087280000000,0.000037897000000,0.000184861000000,0.000071083000000,0.000040664000000,0.000097947000000,0.000136268000000,0.000135478000000,0.000553058000000 +0.000023294500000,0.000032578500000,0.000025665000000,0.000070688000000,0.000038293000000,0.000102688000000,0.000073058000000,0.000039083000000,0.000097947000000,0.000137453000000,0.000172219000000,0.000589008000000 +0.000023097000000,0.000026850000000,0.000024677500000,0.000070688000000,0.000039083000000,0.000103873000000,0.000101107000000,0.000038688000000,0.000180120000000,0.000136268000000,0.000136268000000,0.000553058000000 +0.000022899500000,0.000026850000000,0.000024677000000,0.000071083000000,0.000041454000000,0.000102292000000,0.000071083000000,0.000041058000000,0.000097157000000,0.000136268000000,0.000136268000000,0.000657354000000 +0.000023295000000,0.000027047500000,0.000025270000000,0.000077404000000,0.000039478000000,0.000102688000000,0.000073454000000,0.000039874000000,0.000097157000000,0.000141009000000,0.000135874000000,0.000589009000000 +0.000023097000000,0.000026850000000,0.000025665000000,0.000074244000000,0.000038293000000,0.000102688000000,0.000071083000000,0.000038688000000,0.000097157000000,0.000136663000000,0.000136268000000,0.000557404000000 +0.000023492000000,0.000027047500000,0.000024875000000,0.000078984000000,0.000038688000000,0.000103873000000,0.000076614000000,0.000094392000000,0.000097157000000,0.000135478000000,0.000137453000000,0.000589403000000 +0.000023294500000,0.000027047500000,0.000025665000000,0.000077404000000,0.000038688000000,0.000102688000000,0.000079379000000,0.000039083000000,0.000097157000000,0.000144169000000,0.000206985000000,0.000552663000000 +0.000048776000000,0.000027047500000,0.000025862500000,0.000071083000000,0.000037898000000,0.000139429000000,0.000071083000000,0.000039083000000,0.000097552000000,0.000142589000000,0.000135083000000,0.000592169000000 +0.000030208000000,0.000027047500000,0.000025467500000,0.000070688000000,0.000041453000000,0.000102688000000,0.000073059000000,0.000040663000000,0.000098342000000,0.000136268000000,0.000133898000000,0.000285997000000 +0.000022899500000,0.000036727000000,0.000025072500000,0.000071083000000,0.000037502000000,0.000103083000000,0.000071083000000,0.000039083000000,0.000097157000000,0.000135874000000,0.000135083000000,0.000588218000000 +0.000023295000000,0.000026850000000,0.000024875000000,0.000093601000000,0.000041453000000,0.000103083000000,0.000071478000000,0.000039083000000,0.000114935000000,0.000140219000000,0.000136269000000,0.000553453000000 +0.000023097000000,0.000027245000000,0.000025665000000,0.000078194000000,0.000039084000000,0.000103084000000,0.000073454000000,0.000039874000000,0.000097157000000,0.000137849000000,0.000135873000000,0.000569650000000 +0.000022899500000,0.000026850000000,0.000025467500000,0.000074243000000,0.000055675000000,0.000103083000000,0.000107429000000,0.000041058000000,0.000097947000000,0.000133108000000,0.000169058000000,0.000590984000000 +0.000023294500000,0.000027245000000,0.000024479500000,0.000078195000000,0.000038688000000,0.000103478000000,0.000077404000000,0.000041058000000,0.000097552000000,0.000135083000000,0.000134292000000,0.000552268000000 +0.000023294500000,0.000026850000000,0.000025072500000,0.000077404000000,0.000037898000000,0.000102688000000,0.000080169000000,0.000039083000000,0.000097552000000,0.000138244000000,0.000136268000000,0.000715823000000 +0.000023492000000,0.000026850000000,0.000025467500000,0.000070688000000,0.000041059000000,0.000102688000000,0.000071083000000,0.000040268000000,0.000097552000000,0.000140219000000,0.000137058000000,0.000589008000000 +0.000023097000000,0.000027047500000,0.000025072500000,0.000071083000000,0.000041058000000,0.000174194000000,0.000073058000000,0.000039478000000,0.000097157000000,0.000139824000000,0.000138243000000,0.000553453000000 +0.000023295000000,0.000027443000000,0.000025467500000,0.000070688000000,0.000039083000000,0.000118095000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000144564000000,0.000132713000000,0.000630095000000 +0.000023492500000,0.000027048000000,0.000024677500000,0.000071083000000,0.000038293000000,0.000104269000000,0.000071479000000,0.000041059000000,0.000098343000000,0.000139824000000,0.000139033000000,0.000554243000000 +0.000023097000000,0.000027048000000,0.000026258000000,0.000077404000000,0.000038293000000,0.000103083000000,0.000073453000000,0.000039478000000,0.000133503000000,0.000174194000000,0.000167873000000,0.000589009000000 +0.000023294500000,0.000027048000000,0.000042455000000,0.000073849000000,0.000041453000000,0.000103083000000,0.000071478000000,0.000041059000000,0.000097947000000,0.000137849000000,0.000132713000000,0.000555429000000 +0.000023294500000,0.000026850500000,0.000025665000000,0.000153651000000,0.000041454000000,0.000103873000000,0.000076614000000,0.000039478000000,0.000097552000000,0.000136268000000,0.000136269000000,0.000625354000000 +0.000023097000000,0.000026850000000,0.000024875000000,0.000093601000000,0.000039478000000,0.000102688000000,0.000080169000000,0.000039873000000,0.000097947000000,0.000133108000000,0.000137849000000,0.000285997000000 +0.000023097000000,0.000027245000000,0.000025467500000,0.000071083000000,0.000040663000000,0.000103083000000,0.000071478000000,0.000039873000000,0.000097553000000,0.000136268000000,0.000136663000000,0.000589009000000 +0.000042455000000,0.000030800500000,0.000030998000000,0.000070688000000,0.000038688000000,0.000139033000000,0.000108614000000,0.000073848000000,0.000097948000000,0.000136663000000,0.000136268000000,0.000590984000000 +0.000031393500000,0.000027640500000,0.000023492500000,0.000070688000000,0.000038688000000,0.000102688000000,0.000071478000000,0.000041848000000,0.000097947000000,0.000136269000000,0.000171824000000,0.000603626000000 +0.000023295000000,0.000028035500000,0.000024085000000,0.000071083000000,0.000040663000000,0.000102688000000,0.000071478000000,0.000039873000000,0.000097552000000,0.000136268000000,0.000136268000000,0.000588219000000 +0.000023689500000,0.000026850000000,0.000023887000000,0.000078984000000,0.000038293000000,0.000103083000000,0.000073453000000,0.000039478000000,0.000097947000000,0.000132713000000,0.000135873000000,0.000553058000000 +0.000023294500000,0.000027047500000,0.000024084500000,0.000074639000000,0.000040663000000,0.000104268000000,0.000071083000000,0.000039479000000,0.000134293000000,0.000136268000000,0.000136663000000,0.000589009000000 +0.000023097000000,0.000027245000000,0.000024085000000,0.000077800000000,0.000037898000000,0.000102688000000,0.000076614000000,0.000040663000000,0.000098342000000,0.000136268000000,0.000135873000000,0.000589008000000 +0.000023294500000,0.000027442500000,0.000024677000000,0.000077404000000,0.000042243000000,0.000102688000000,0.000079380000000,0.000039083000000,0.000097552000000,0.000134688000000,0.000136269000000,0.000552663000000 +0.000023492500000,0.000027047500000,0.000024085000000,0.000071083000000,0.000039083000000,0.000102688000000,0.000071083000000,0.000039873000000,0.000097947000000,0.000139824000000,0.000248071000000,0.000622984000000 +0.000023097500000,0.000026850500000,0.000023887500000,0.000106639000000,0.000112170000000,0.000103083000000,0.000073058000000,0.000039478000000,0.000097552000000,0.000141404000000,0.000310491000000,0.000553058000000 +0.000023097000000,0.000027048000000,0.000023492000000,0.000071083000000,0.000038688000000,0.000155231000000,0.000071083000000,0.000039083000000,0.000098342000000,0.000182490000000,0.000154836000000,0.000626935000000 +0.000023097000000,0.000030801000000,0.000023492000000,0.000071083000000,0.000037898000000,0.000102688000000,0.000071478000000,0.000039479000000,0.000098737000000,0.000157206000000,0.000177354000000,0.000572021000000 +0.000023294500000,0.000026850500000,0.000023294500000,0.000078984000000,0.000041059000000,0.000102688000000,0.000092811000000,0.000041058000000,0.000098343000000,0.000137058000000,0.000169453000000,0.000552662000000 +0.000023294500000,0.000027048000000,0.000023689500000,0.000073848000000,0.000040268000000,0.000102688000000,0.000071083000000,0.000039083000000,0.000097158000000,0.000137059000000,0.000132713000000,0.000592169000000 +0.000023097000000,0.000027245000000,0.000058652500000,0.000079774000000,0.000038293000000,0.000103478000000,0.000077009000000,0.000039478000000,0.000097553000000,0.000143379000000,0.000136663000000,0.000285997000000 diff --git a/docs/source/media/bench/lua bench tests old-sol.csv b/docs/source/media/bench/lua bench tests old-sol.csv new file mode 100644 index 00000000..c80ed424 --- /dev/null +++ b/docs/source/media/bench/lua bench tests old-sol.csv @@ -0,0 +1,2001 @@ +"old sol - global get","old sol - return userdata","old sol - c function","old sol - global set","old sol - table chained get","old sol - table get","old sol - many userdata variables access last registered (simple)","old sol - lua function","old sol - table chained set","old sol - table set","old sol - c function through lua","old sol - member function calls","old sol - member function calls (simple)","old sol - userdata variable access","old sol - many userdata variables access","old sol - many userdata variables access last registered","old sol - userdata variable access (simple)","old sol - many userdata variable access (simple)","old sol - multi return","old sol - stateful c function" +0.000038687000000,0.000152069000000,0.000039872000000,0.000030602500000,0.000324712000000,0.000037502000000,0.000189205000000,0.000031181000000,0.000308910000000,0.000025862000000,0.000040267000000,0.000384365000000,0.000382786000000,0.000174193000000,0.010793444000000,0.000190390000000,0.000195526000000,0.010831369000000,0.000045403000000,0.000041452000000 +0.000037897000000,0.000162736000000,0.000036711000000,0.000029220000000,0.000360662000000,0.000037502000000,0.000187625000000,0.000031971000000,0.000309304000000,0.000025862000000,0.000039478000000,0.000426637000000,0.000405304000000,0.000174983000000,0.010827419000000,0.000189205000000,0.000189996000000,0.011535765000000,0.000043823000000,0.000038687000000 +0.000038292000000,0.000142983000000,0.000036711000000,0.000028825000000,0.000323131000000,0.000037502000000,0.000190785000000,0.000031181000000,0.000344070000000,0.000026257500000,0.000039477000000,0.000410439000000,0.000368564000000,0.000174193000000,0.011347320000000,0.000189601000000,0.000172613000000,0.010781198000000,0.000044613000000,0.000039082000000 +0.000038687000000,0.000141403000000,0.000036712000000,0.000029417500000,0.000390291000000,0.000036712000000,0.000263872000000,0.000031180000000,0.000320761000000,0.000026652000000,0.000039477000000,0.000376465000000,0.000373699000000,0.000173008000000,0.011233938000000,0.000186440000000,0.000173403000000,0.011529838000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036711000000,0.000028825000000,0.000363033000000,0.000037897000000,0.000204218000000,0.000030786000000,0.000306934000000,0.000026652000000,0.000039477000000,0.000422687000000,0.000929551000000,0.000174193000000,0.010746431000000,0.000190391000000,0.000173403000000,0.010842826000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000145749000000,0.000035922000000,0.000029022500000,0.000325107000000,0.000073847000000,0.000187230000000,0.000030390000000,0.000346835000000,0.000025862000000,0.000039083000000,0.000380811000000,0.000483921000000,0.000173403000000,0.011116604000000,0.000188415000000,0.000208959000000,0.011248950000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000206983000000,0.000036712000000,0.000028825000000,0.000325107000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000308909000000,0.000026257000000,0.000039082000000,0.000455082000000,0.000372909000000,0.000174588000000,0.011202332000000,0.000203823000000,0.000209749000000,0.011340209000000,0.000080959000000,0.000038292000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000028825000000,0.000756118000000,0.000037502000000,0.000317205000000,0.000031576000000,0.000309699000000,0.000026257000000,0.000039477000000,0.000379625000000,0.000454686000000,0.000173798000000,0.010818728000000,0.000186835000000,0.000172613000000,0.011103962000000,0.000045008000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036712000000,0.000028825000000,0.000374884000000,0.000037501000000,0.000188810000000,0.000030391000000,0.000345255000000,0.000044035000000,0.000039872000000,0.000403329000000,0.000377254000000,0.000210538000000,0.011030481000000,0.000188810000000,0.000174589000000,0.012019319000000,0.000044218000000,0.000040267000000 +0.000038292000000,0.000144169000000,0.000036711000000,0.000028825000000,0.000323131000000,0.000038687000000,0.000309304000000,0.000030786000000,0.000306933000000,0.000025862000000,0.000059230000000,0.000372513000000,0.000416760000000,0.000173008000000,0.011469789000000,0.000189601000000,0.000172613000000,0.011602925000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000072267000000,0.000028825000000,0.000324316000000,0.000037897000000,0.000225156000000,0.000030786000000,0.000307724000000,0.000026257000000,0.000052514000000,0.000372514000000,0.000379625000000,0.000171428000000,0.011677196000000,0.000218835000000,0.000218440000000,0.011059320000000,0.000044218000000,0.000040268000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000034948500000,0.000361452000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000354341000000,0.000026454500000,0.000039477000000,0.000599674000000,0.000376860000000,0.000171032000000,0.010981099000000,0.000189996000000,0.000171822000000,0.011057740000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000144563000000,0.000036317000000,0.000027047000000,0.000322736000000,0.000038292000000,0.000189206000000,0.000030391000000,0.000306934000000,0.000026060000000,0.000039872000000,0.000382786000000,0.000447971000000,0.000173008000000,0.011100407000000,0.000188415000000,0.000173798000000,0.011076308000000,0.000044613000000,0.000040267000000 +0.000037896000000,0.000183675000000,0.000036711000000,0.000027442500000,0.000322341000000,0.000037106000000,0.000188811000000,0.000030391000000,0.000306934000000,0.000025862000000,0.000039478000000,0.000409650000000,0.000378045000000,0.000172613000000,0.010849148000000,0.000208958000000,0.000174193000000,0.011340209000000,0.000044218000000,0.000039083000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000325502000000,0.000037107000000,0.000259131000000,0.000030390000000,0.000345254000000,0.000025862000000,0.000039477000000,0.000378045000000,0.000420316000000,0.000170242000000,0.011026135000000,0.000188020000000,0.000173403000000,0.011095271000000,0.000044613000000,0.000037897000000 +0.000038292000000,0.000139823000000,0.000036712000000,0.000027047500000,0.000325107000000,0.000037897000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000422687000000,0.000368168000000,0.000172218000000,0.011235518000000,0.000186440000000,0.000211329000000,0.010944357000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000037121500000,0.000323526000000,0.000037107000000,0.000190390000000,0.000030785000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000373699000000,0.000401749000000,0.000171822000000,0.011071567000000,0.000190390000000,0.000173403000000,0.011615962000000,0.000044612000000,0.000039082000000 +0.000038292000000,0.000143773000000,0.000036317000000,0.000104874500000,0.000325501000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000326292000000,0.000026257000000,0.000039082000000,0.000413205000000,0.000415970000000,0.000172613000000,0.011397493000000,0.000225156000000,0.000175378000000,0.010937247000000,0.000044612000000,0.000092810000000 +0.000037897000000,0.000151675000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000037502000000,0.000205008000000,0.000031181000000,0.000308119000000,0.000026257500000,0.000039477000000,0.000381205000000,0.000382785000000,0.000172218000000,0.010900901000000,0.000188415000000,0.000173403000000,0.011057345000000,0.000044217000000,0.000054885000000 +0.000110588000000,0.000186440000000,0.000036316000000,0.000027442000000,0.000321946000000,0.000037107000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000026257000000,0.000039478000000,0.000375674000000,0.000413996000000,0.000172218000000,0.011301098000000,0.000188020000000,0.000174194000000,0.011199567000000,0.000045008000000,0.000038687000000 +0.000054489000000,0.000143378000000,0.000036317000000,0.000027442500000,0.000325897000000,0.000036711000000,0.000186835000000,0.000030786000000,0.000327872000000,0.000026257000000,0.000039872000000,0.000439675000000,0.000373304000000,0.000172613000000,0.011521937000000,0.000190390000000,0.000187626000000,0.011605295000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000325106000000,0.000036712000000,0.000188020000000,0.000031576000000,0.000378835000000,0.000026059500000,0.000039872000000,0.000381205000000,0.000503280000000,0.000171033000000,0.011068802000000,0.000227131000000,0.000171428000000,0.010759469000000,0.000044613000000,0.000039478000000 +0.000038292000000,0.000141403000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000253995000000,0.000046589000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000423872000000,0.000905452000000,0.000170638000000,0.011194036000000,0.000185650000000,0.000173008000000,0.011041148000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000142588000000,0.000036712000000,0.000027442500000,0.000361452000000,0.000038687000000,0.000189601000000,0.000030786000000,0.000344070000000,0.000026059500000,0.000039872000000,0.000375280000000,0.000373304000000,0.000224365000000,0.011354036000000,0.000189600000000,0.000171427000000,0.010982678000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000038292000000,0.000187625000000,0.000030785000000,0.000329452000000,0.000035738500000,0.000039082000000,0.000381205000000,0.000375279000000,0.000171033000000,0.010847172000000,0.000188810000000,0.000193946000000,0.013469195000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000196711000000,0.000036316000000,0.000027837000000,0.000323526000000,0.000056070000000,0.000188811000000,0.000030786000000,0.000323527000000,0.000034158000000,0.000039477000000,0.000399774000000,0.000384761000000,0.000172218000000,0.010931321000000,0.000242934000000,0.000173008000000,0.011653493000000,0.000133897000000,0.000039083000000 +0.000037897000000,0.000144169000000,0.000036317000000,0.000027245000000,0.000332217000000,0.000054094000000,0.000187230000000,0.000029995000000,0.000349996000000,0.000026455000000,0.000039477000000,0.000375674000000,0.000428612000000,0.000173403000000,0.011206283000000,0.000463378000000,0.000175773000000,0.010733790000000,0.000066737000000,0.000039082000000 +0.000037501000000,0.000142588000000,0.000036712000000,0.000027047000000,0.000323131000000,0.000038292000000,0.000192366000000,0.000030786000000,0.000306539000000,0.000026257000000,0.000039082000000,0.000407280000000,0.000509205000000,0.000171823000000,0.011049839000000,0.000201453000000,0.000174588000000,0.012873442000000,0.000046984000000,0.000038292000000 +0.000037502000000,0.000141403000000,0.000035921000000,0.000027639500000,0.000325106000000,0.000037107000000,0.000191181000000,0.000030391000000,0.000310489000000,0.000026454500000,0.000039082000000,0.000382390000000,0.000379230000000,0.000209748000000,0.010956604000000,0.000205403000000,0.000172613000000,0.011815468000000,0.000076613000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000037502000000,0.000190390000000,0.000029995000000,0.000354737000000,0.000026257000000,0.000039477000000,0.000375279000000,0.000410045000000,0.000171428000000,0.011188505000000,0.000189600000000,0.000208563000000,0.011738826000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000141008000000,0.000056465000000,0.000045417500000,0.000323921000000,0.000037107000000,0.000205798000000,0.000032761000000,0.000307724000000,0.000026257500000,0.000075428000000,0.000400958000000,0.000372119000000,0.000172613000000,0.011790579000000,0.000188020000000,0.000188020000000,0.011585937000000,0.000044218000000,0.000039873000000 +0.000037897000000,0.000211329000000,0.000036317000000,0.000027639500000,0.000326292000000,0.000037501000000,0.000189601000000,0.000033946000000,0.000308119000000,0.000026652000000,0.000038687000000,0.000379230000000,0.000412020000000,0.000171823000000,0.011507715000000,0.000188020000000,0.000172218000000,0.011381296000000,0.000044613000000,0.000038687000000 +0.000038687000000,0.000154045000000,0.000036316000000,0.000027047000000,0.000325502000000,0.000037107000000,0.000188021000000,0.000033156000000,0.000344465000000,0.000026257000000,0.000039477000000,0.000410440000000,0.000413995000000,0.000172218000000,0.011284901000000,0.000225156000000,0.000171823000000,0.011536554000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000140613000000,0.000035922000000,0.000027245000000,0.000325107000000,0.000036317000000,0.000227922000000,0.000031181000000,0.000308514000000,0.000026059500000,0.000039082000000,0.000503279000000,0.000395427000000,0.000173008000000,0.010842827000000,0.000186440000000,0.000172613000000,0.010736555000000,0.000044613000000,0.000039477000000 +0.000038291000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000037502000000,0.000186835000000,0.000031181000000,0.000307329000000,0.000026257500000,0.000039477000000,0.000464168000000,0.000438884000000,0.000173798000000,0.010899716000000,0.000186835000000,0.000245699000000,0.010912357000000,0.000044613000000,0.000037897000000 +0.000038292000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000325502000000,0.000037106000000,0.000186835000000,0.000031181000000,0.000344465000000,0.000026059500000,0.000039477000000,0.000376464000000,0.000396218000000,0.000173008000000,0.011220111000000,0.000191181000000,0.000174193000000,0.011024160000000,0.000044217000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000035921000000,0.000027047500000,0.000324712000000,0.000038687000000,0.000186835000000,0.000030786000000,0.000305354000000,0.000025862000000,0.000039082000000,0.000410045000000,0.000392267000000,0.000171822000000,0.010875222000000,0.000224761000000,0.000173403000000,0.011186530000000,0.000044612000000,0.000038292000000 +0.000037897000000,0.000178539000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000036712000000,0.000209748000000,0.000030786000000,0.000308119000000,0.000026059500000,0.000039872000000,0.000381601000000,0.000397008000000,0.000174193000000,0.011090135000000,0.000189996000000,0.000171428000000,0.010791074000000,0.000044218000000,0.000074637000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000325502000000,0.000038292000000,0.000186835000000,0.000030785000000,0.000344069000000,0.000026059500000,0.000039872000000,0.000368168000000,0.000396217000000,0.000172217000000,0.010983073000000,0.000186440000000,0.000174588000000,0.010948308000000,0.000044613000000,0.000039082000000 +0.000056860000000,0.000143378000000,0.000036316000000,0.000027245000000,0.000325107000000,0.000038687000000,0.000188020000000,0.000029996000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000404119000000,0.000399773000000,0.000173403000000,0.011591468000000,0.000188415000000,0.000208563000000,0.011173098000000,0.000044613000000,0.000039082000000 +0.000054489000000,0.000144168000000,0.000035922000000,0.000027245000000,0.000324316000000,0.000036317000000,0.000188415000000,0.000030786000000,0.000309304000000,0.000026652000000,0.000039082000000,0.000374095000000,0.000391872000000,0.000173798000000,0.010752752000000,0.000226736000000,0.000173008000000,0.011344949000000,0.000044613000000,0.000040267000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000377254000000,0.000038292000000,0.000188810000000,0.000031181000000,0.000341699000000,0.000071887000000,0.000039477000000,0.000412810000000,0.000404514000000,0.000174193000000,0.010787123000000,0.000186440000000,0.000171428000000,0.011240258000000,0.000080564000000,0.000038687000000 +0.000037897000000,0.000145354000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037502000000,0.000187625000000,0.000030391000000,0.000322342000000,0.000045417500000,0.000039477000000,0.000366983000000,0.000386736000000,0.000173798000000,0.011292406000000,0.000189996000000,0.000174983000000,0.010992160000000,0.000045008000000,0.000038687000000 +0.000038292000000,0.000178934000000,0.000036316000000,0.000027047500000,0.000324711000000,0.000037107000000,0.000188020000000,0.000031180000000,0.000308119000000,0.000028232500000,0.000039477000000,0.000366193000000,0.000399773000000,0.000172613000000,0.011310184000000,0.000190391000000,0.000174589000000,0.010931716000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000144168000000,0.000036317000000,0.000027639500000,0.000323526000000,0.000037502000000,0.000187231000000,0.000034341000000,0.000342884000000,0.000033763500000,0.000039478000000,0.000412415000000,0.000393847000000,0.000173403000000,0.011213789000000,0.000222390000000,0.000208564000000,0.011139123000000,0.000045403000000,0.000040662000000 +0.000038292000000,0.000142983000000,0.000035922000000,0.000027837500000,0.000323922000000,0.000036316000000,0.000207378000000,0.000048168000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000369353000000,0.000395033000000,0.000174588000000,0.010716802000000,0.000189996000000,0.000174193000000,0.011291222000000,0.000044613000000,0.000037896000000 +0.000037897000000,0.000141798000000,0.000036316000000,0.000045220000000,0.000323132000000,0.000073057000000,0.000242934000000,0.000030391000000,0.000306933000000,0.000026454500000,0.000039477000000,0.000414391000000,0.000398193000000,0.000172218000000,0.010961740000000,0.000189205000000,0.000172613000000,0.011030876000000,0.000044613000000,0.000037896000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000036711000000,0.000242933000000,0.000030391000000,0.000343674000000,0.000026059500000,0.000039082000000,0.000383971000000,0.000401749000000,0.000173008000000,0.013079665000000,0.000189600000000,0.000171428000000,0.011274629000000,0.000044613000000,0.000038292000000 +0.000038687000000,0.000141008000000,0.000035922000000,0.000027442000000,0.000323132000000,0.000037501000000,0.000287576000000,0.000030786000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000371724000000,0.000441650000000,0.000237402000000,0.011921344000000,0.000224366000000,0.000171033000000,0.011037987000000,0.000045008000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000036712000000,0.000212119000000,0.000030786000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000410440000000,0.000404119000000,0.000210934000000,0.011935962000000,0.000188020000000,0.000221600000000,0.011333888000000,0.000043822000000,0.000040267000000 +0.000038292000000,0.000143773000000,0.000035921000000,0.000027047500000,0.000324712000000,0.000038687000000,0.000204217000000,0.000031576000000,0.000327872000000,0.000026060000000,0.000039477000000,0.000374489000000,0.000387921000000,0.000176564000000,0.011040753000000,0.000189206000000,0.000175773000000,0.010915123000000,0.000045008000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000072662000000,0.000027244500000,0.000322736000000,0.000037897000000,0.000188415000000,0.000030391000000,0.000414390000000,0.000026849500000,0.000078193000000,0.000417551000000,0.000392267000000,0.000218045000000,0.011140308000000,0.000188811000000,0.000174588000000,0.010893790000000,0.000045008000000,0.000038687000000 +0.000037501000000,0.000146144000000,0.000035922000000,0.000027442500000,0.000324316000000,0.000038292000000,0.000206588000000,0.000031181000000,0.000306934000000,0.000026454500000,0.000110983000000,0.000368168000000,0.000396612000000,0.000175378000000,0.012523023000000,0.000259527000000,0.000172218000000,0.010941987000000,0.000043032000000,0.000038292000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037502000000,0.000415971000000,0.000030786000000,0.000357897000000,0.000027047500000,0.000130736000000,0.000371723000000,0.000406884000000,0.000179328000000,0.011256061000000,0.000188811000000,0.000173798000000,0.011570530000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000323526000000,0.000037502000000,0.000216070000000,0.000031180000000,0.000307724000000,0.000026454500000,0.000090045000000,0.000407674000000,0.000387132000000,0.000171823000000,0.011440160000000,0.000189206000000,0.000244909000000,0.010899715000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000142588000000,0.000036712000000,0.000027047000000,0.000322341000000,0.000037502000000,0.000229107000000,0.000031181000000,0.000308119000000,0.000060232500000,0.000075033000000,0.000380810000000,0.000396218000000,0.000174984000000,0.011010728000000,0.000186045000000,0.000175773000000,0.010950283000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000179329000000,0.000036317000000,0.000027245000000,0.000361453000000,0.000038292000000,0.000187230000000,0.000030786000000,0.000344465000000,0.000025862000000,0.000056070000000,0.000418341000000,0.000383971000000,0.000172218000000,0.011376160000000,0.000224761000000,0.000175773000000,0.011065246000000,0.000043428000000,0.000039082000000 +0.000037897000000,0.000144564000000,0.000036712000000,0.000027047000000,0.000325107000000,0.000037501000000,0.000187625000000,0.000030786000000,0.000308119000000,0.000025862000000,0.000042242000000,0.000378440000000,0.000378440000000,0.000176168000000,0.011025740000000,0.000186045000000,0.000174193000000,0.011410135000000,0.000045008000000,0.000037897000000 +0.000038292000000,0.000143773000000,0.000036316000000,0.000027244500000,0.000323527000000,0.000037897000000,0.000189601000000,0.000030391000000,0.000307723000000,0.000026257000000,0.000052120000000,0.000448761000000,0.000437304000000,0.000174193000000,0.010927370000000,0.000190785000000,0.000208564000000,0.011412900000000,0.000045008000000,0.000093995000000 +0.000039083000000,0.000141008000000,0.000036317000000,0.000027245000000,0.000555033000000,0.000037107000000,0.000259132000000,0.000029995000000,0.000344069000000,0.000025862000000,0.000039872000000,0.000440464000000,0.000372514000000,0.000172612000000,0.011290827000000,0.000188810000000,0.000178539000000,0.010766975000000,0.000044613000000,0.000042242000000 +0.000037897000000,0.000143773000000,0.000036712000000,0.000027047000000,0.000323527000000,0.000037107000000,0.000188416000000,0.000031576000000,0.000309304000000,0.000026257500000,0.000039477000000,0.000368563000000,0.000444020000000,0.000177749000000,0.011064851000000,0.000223971000000,0.000171427000000,0.010999271000000,0.000184860000000,0.000053700000000 +0.000058045000000,0.000143378000000,0.000036711000000,0.000027047000000,0.000324712000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000306933000000,0.000026059500000,0.000039477000000,0.000420317000000,0.000370143000000,0.000172613000000,0.010936061000000,0.000188416000000,0.000178144000000,0.011369048000000,0.000061205000000,0.000038687000000 +0.000077008000000,0.000178539000000,0.000036317000000,0.000036924000000,0.000325107000000,0.000035922000000,0.000186835000000,0.000029995000000,0.000343674000000,0.000025862000000,0.000039082000000,0.000374489000000,0.000513156000000,0.000175378000000,0.010708506000000,0.000187230000000,0.000172613000000,0.010849938000000,0.000045008000000,0.000039872000000 +0.000052909000000,0.000143378000000,0.000036317000000,0.000081368000000,0.000322341000000,0.000037502000000,0.000223180000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039477000000,0.000410835000000,0.000394637000000,0.000172612000000,0.010887468000000,0.000187625000000,0.000244909000000,0.010944753000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000036726000000,0.000323921000000,0.000038292000000,0.000186045000000,0.000030391000000,0.000358292000000,0.000026257000000,0.000039477000000,0.000374885000000,0.000412416000000,0.000173008000000,0.011227221000000,0.000296662000000,0.000174588000000,0.011435024000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000142589000000,0.000036711000000,0.000052923500000,0.000326687000000,0.000037107000000,0.000189995000000,0.000031181000000,0.000380020000000,0.000026059500000,0.000112169000000,0.000512761000000,0.000380810000000,0.000172613000000,0.010845592000000,0.000188020000000,0.000173008000000,0.011614776000000,0.000043823000000,0.000038292000000 +0.000037897000000,0.000140613000000,0.000035922000000,0.000029220000000,0.000322341000000,0.000037502000000,0.000186045000000,0.000030786000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000373304000000,0.000363033000000,0.000171428000000,0.011489147000000,0.000189206000000,0.000171033000000,0.011363123000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000034948500000,0.000323921000000,0.000072268000000,0.000223576000000,0.000030390000000,0.000308119000000,0.000026455000000,0.000039477000000,0.000375280000000,0.000409649000000,0.000171823000000,0.011206283000000,0.000188415000000,0.000175774000000,0.011034036000000,0.000043823000000,0.000039082000000 +0.000038292000000,0.000178144000000,0.000036712000000,0.000027245000000,0.000323526000000,0.000037107000000,0.000189995000000,0.000066736000000,0.000343279000000,0.000026257000000,0.000039083000000,0.000406489000000,0.000376464000000,0.000173798000000,0.011425937000000,0.000233057000000,0.000209749000000,0.011069197000000,0.000044218000000,0.000038687000000 +0.000037896000000,0.000141402000000,0.000037502000000,0.000027442500000,0.000323921000000,0.000037107000000,0.000187625000000,0.000031576000000,0.000307724000000,0.000026849500000,0.000039872000000,0.000380021000000,0.000408465000000,0.000173008000000,0.010900110000000,0.000192366000000,0.000171822000000,0.010955814000000,0.000044613000000,0.000039872000000 +0.000038292000000,0.000142589000000,0.000036317000000,0.000027244500000,0.000330638000000,0.000036711000000,0.000187625000000,0.000032761000000,0.000309304000000,0.000026850000000,0.000039477000000,0.000419131000000,0.000372909000000,0.000173403000000,0.010930135000000,0.000189600000000,0.000176168000000,0.011133592000000,0.000043822000000,0.000037897000000 +0.000037502000000,0.000142589000000,0.000056070000000,0.000027047500000,0.000325107000000,0.000037502000000,0.000222785000000,0.000030786000000,0.000350785000000,0.000051146000000,0.000039082000000,0.000380020000000,0.000375279000000,0.000173008000000,0.010985048000000,0.000188415000000,0.000205403000000,0.010969641000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000038292000000,0.000187230000000,0.000030786000000,0.000308514000000,0.000033170500000,0.000039477000000,0.000366193000000,0.000408465000000,0.000173798000000,0.011554332000000,0.000227922000000,0.000171823000000,0.010820703000000,0.000044613000000,0.000039082000000 +0.000037107000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000325897000000,0.000037107000000,0.000188810000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000407674000000,0.000374884000000,0.000174983000000,0.010957000000000,0.000186835000000,0.000214885000000,0.011031271000000,0.000045008000000,0.000038292000000 +0.000038291000000,0.000144564000000,0.000037502000000,0.000027244500000,0.000324316000000,0.000037896000000,0.000188415000000,0.000031576000000,0.000392267000000,0.000026257500000,0.000039478000000,0.000372119000000,0.000412020000000,0.000171032000000,0.010949889000000,0.000188020000000,0.000173403000000,0.011493493000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000158785000000,0.000036317000000,0.000045220000000,0.000325106000000,0.000038292000000,0.000222785000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000422292000000,0.000366587000000,0.000174193000000,0.011347715000000,0.000189205000000,0.000171428000000,0.011596208000000,0.000045008000000,0.000039872000000 +0.000038292000000,0.000142589000000,0.000036316000000,0.000027245000000,0.000325106000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000308119000000,0.000026257000000,0.000039477000000,0.000383181000000,0.000372514000000,0.000173007000000,0.011259616000000,0.000224761000000,0.000173403000000,0.011013888000000,0.000120070000000,0.000039873000000 +0.000038292000000,0.000142589000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000038292000000,0.000188020000000,0.000030786000000,0.000344860000000,0.000026849500000,0.000039477000000,0.000406489000000,0.000406884000000,0.000174983000000,0.011440555000000,0.000208168000000,0.000174983000000,0.011225246000000,0.000046588000000,0.000038292000000 +0.000039082000000,0.000142984000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000036712000000,0.000191181000000,0.000029996000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000377649000000,0.000371724000000,0.000171823000000,0.010848358000000,0.000200267000000,0.000189205000000,0.011124901000000,0.000058441000000,0.000058440000000 +0.000037897000000,0.000139823000000,0.000035921000000,0.000027245000000,0.000326291000000,0.000036317000000,0.000223180000000,0.000030391000000,0.000306143000000,0.000026060000000,0.000039872000000,0.000372119000000,0.000412020000000,0.000173798000000,0.010986234000000,0.000188415000000,0.000172218000000,0.010630283000000,0.000044217000000,0.000038292000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027047500000,0.000374489000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000453106000000,0.000026060000000,0.000039873000000,0.000455872000000,0.000364613000000,0.000174193000000,0.010995715000000,0.000226341000000,0.000172613000000,0.011141098000000,0.000043822000000,0.000039082000000 +0.000037897000000,0.000190391000000,0.000036317000000,0.000027047000000,0.000322341000000,0.000037106000000,0.000189995000000,0.000030391000000,0.000322341000000,0.000027442000000,0.000039477000000,0.000377649000000,0.000375674000000,0.000171427000000,0.010975173000000,0.000188810000000,0.000174193000000,0.011457937000000,0.000044218000000,0.000039873000000 +0.000073847000000,0.000142194000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037107000000,0.000189206000000,0.000030786000000,0.000307328000000,0.000026059500000,0.000039872000000,0.000480366000000,0.000411230000000,0.000171427000000,0.010970432000000,0.000188810000000,0.000173798000000,0.011243419000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000144564000000,0.000036316000000,0.000027442500000,0.000323527000000,0.000037897000000,0.000233847000000,0.000030391000000,0.000344464000000,0.000025862000000,0.000039477000000,0.000375675000000,0.000373699000000,0.000207773000000,0.011046678000000,0.000190390000000,0.000314045000000,0.011142678000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000035922000000,0.000188810000000,0.000031181000000,0.000308514000000,0.000026455000000,0.000039872000000,0.000403329000000,0.000454292000000,0.000172613000000,0.010914333000000,0.000259526000000,0.000171428000000,0.010887073000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000143774000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000038292000000,0.000187230000000,0.000029995000000,0.000304169000000,0.000026454500000,0.000075428000000,0.000381205000000,0.000373304000000,0.000172217000000,0.011363123000000,0.000189996000000,0.000174193000000,0.011021789000000,0.000044218000000,0.000039478000000 +0.000037502000000,0.000142588000000,0.000035922000000,0.000027245000000,0.000323131000000,0.000037501000000,0.000188810000000,0.000030391000000,0.000389107000000,0.000053318500000,0.000039477000000,0.000387922000000,0.000454687000000,0.000171033000000,0.011508110000000,0.000191181000000,0.000171823000000,0.011283715000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000192366000000,0.000036316000000,0.000027047500000,0.000324711000000,0.000036317000000,0.000225156000000,0.000030786000000,0.000308119000000,0.000033960500000,0.000039873000000,0.000709896000000,0.000363823000000,0.000171823000000,0.011030481000000,0.000186044000000,0.000210144000000,0.010750382000000,0.000044613000000,0.000039872000000 +0.000037502000000,0.000188021000000,0.000036317000000,0.000027442000000,0.000361452000000,0.000052909000000,0.000188811000000,0.000030391000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000464563000000,0.000374884000000,0.000173007000000,0.011027320000000,0.000235428000000,0.000172612000000,0.011482431000000,0.000045008000000,0.000040268000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037502000000,0.000188810000000,0.000030391000000,0.000343279000000,0.000026455000000,0.000039872000000,0.000376465000000,0.000441650000000,0.000170638000000,0.011425937000000,0.000188811000000,0.000174588000000,0.011005592000000,0.000043823000000,0.000037897000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000037502000000,0.000188810000000,0.000030390000000,0.000305353000000,0.000027047000000,0.000039082000000,0.000375279000000,0.000387526000000,0.000172218000000,0.010864555000000,0.000186045000000,0.000173403000000,0.011367073000000,0.000043823000000,0.000039872000000 +0.000037896000000,0.000142588000000,0.000036316000000,0.000045022500000,0.000326292000000,0.000037897000000,0.000230292000000,0.000030391000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000453897000000,0.000416760000000,0.000171427000000,0.011116209000000,0.000188020000000,0.000173403000000,0.010990185000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000140218000000,0.000072267000000,0.000027244500000,0.000324316000000,0.000037501000000,0.000202243000000,0.000057255000000,0.000378439000000,0.000026059500000,0.000039477000000,0.000381600000000,0.000376069000000,0.000174588000000,0.011133592000000,0.000222390000000,0.000254390000000,0.011003221000000,0.000045798000000,0.000039082000000 +0.000037502000000,0.000281649000000,0.000036317000000,0.000027244500000,0.000412415000000,0.000037502000000,0.000186835000000,0.000032762000000,0.000306539000000,0.000026454500000,0.000039478000000,0.000411229000000,0.000393847000000,0.000172612000000,0.011180209000000,0.000188810000000,0.000174193000000,0.010816357000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000174589000000,0.000037107000000,0.000027047500000,0.000323922000000,0.000038292000000,0.000189206000000,0.000049354000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000374884000000,0.000376465000000,0.000171033000000,0.010751567000000,0.000188810000000,0.000174193000000,0.011388407000000,0.000079773000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000036316000000,0.000027047500000,0.000323132000000,0.000037896000000,0.000223971000000,0.000032366000000,0.000343675000000,0.000025862000000,0.000039477000000,0.000400168000000,0.000367773000000,0.000171428000000,0.010946333000000,0.000185650000000,0.000178539000000,0.010786728000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000144959000000,0.000036317000000,0.000027837000000,0.000326687000000,0.000037502000000,0.000186835000000,0.000061996000000,0.000308119000000,0.000026849500000,0.000038687000000,0.000427428000000,0.000408464000000,0.000171427000000,0.011011518000000,0.000223181000000,0.000208959000000,0.012289937000000,0.000044218000000,0.000039082000000 +0.000037896000000,0.000141403000000,0.000036317000000,0.000027047500000,0.000323527000000,0.000038292000000,0.000186835000000,0.000031181000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000376464000000,0.000372908000000,0.000171428000000,0.011045493000000,0.000185650000000,0.000175378000000,0.011567764000000,0.000044218000000,0.000039872000000 +0.000037107000000,0.000234637000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000037107000000,0.000186835000000,0.000031576000000,0.000381206000000,0.000026059500000,0.000039477000000,0.000451527000000,0.000405304000000,0.000216860000000,0.010993345000000,0.000186440000000,0.000171428000000,0.011293591000000,0.000044218000000,0.000058045000000 +0.000038292000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000323527000000,0.000037897000000,0.000260316000000,0.000030785000000,0.000307724000000,0.000026257000000,0.000039872000000,0.000375674000000,0.000372514000000,0.000170637000000,0.011109098000000,0.000186045000000,0.000174983000000,0.011595023000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000144169000000,0.000036317000000,0.000027244500000,0.000325897000000,0.000038292000000,0.000186045000000,0.000030391000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000449946000000,0.000380020000000,0.000173008000000,0.011224456000000,0.000233057000000,0.000173403000000,0.010827024000000,0.000044218000000,0.000039083000000 +0.000037502000000,0.000142984000000,0.000035922000000,0.000027047500000,0.000324317000000,0.000037502000000,0.000187230000000,0.000031971000000,0.000343675000000,0.000026060000000,0.000039872000000,0.000381995000000,0.000425452000000,0.000173798000000,0.011314925000000,0.000189600000000,0.000210934000000,0.010869691000000,0.000044613000000,0.000040267000000 +0.000037501000000,0.000141008000000,0.000036711000000,0.000027047000000,0.000361848000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000306539000000,0.000060825000000,0.000039872000000,0.000404909000000,0.000364218000000,0.000172613000000,0.011351270000000,0.000188020000000,0.000172218000000,0.011363123000000,0.000045008000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036712000000,0.000027244500000,0.000324317000000,0.000037502000000,0.000225156000000,0.000031181000000,0.000360267000000,0.000033170500000,0.000039872000000,0.000368168000000,0.000411625000000,0.000236217000000,0.011145049000000,0.000186440000000,0.000174588000000,0.011087765000000,0.000044613000000,0.000040268000000 +0.000076613000000,0.000198687000000,0.000036317000000,0.000027442500000,0.000323131000000,0.000037502000000,0.000188415000000,0.000031576000000,0.000357107000000,0.000026849500000,0.000039872000000,0.000374884000000,0.000370539000000,0.000173008000000,0.011055764000000,0.000331428000000,0.000174983000000,0.010804110000000,0.000044218000000,0.000039872000000 +0.000053699000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000189206000000,0.000031971000000,0.000306539000000,0.000026455000000,0.000039478000000,0.000447971000000,0.000367773000000,0.000173402000000,0.011457542000000,0.000206588000000,0.000176168000000,0.010932111000000,0.000044218000000,0.000039872000000 +0.000050539000000,0.000144959000000,0.000036317000000,0.000027442000000,0.000324316000000,0.000037502000000,0.000225551000000,0.000030391000000,0.000343675000000,0.000025862000000,0.000075822000000,0.000368958000000,0.000412020000000,0.000174588000000,0.011438975000000,0.000188415000000,0.000244118000000,0.011328752000000,0.000045403000000,0.000039478000000 +0.000037502000000,0.000143379000000,0.000036317000000,0.000036924000000,0.000324711000000,0.000037107000000,0.000226341000000,0.000029996000000,0.000307329000000,0.000025862000000,0.000039478000000,0.000447970000000,0.000363822000000,0.000172613000000,0.010825839000000,0.000188020000000,0.000172613000000,0.011196407000000,0.000044218000000,0.000039477000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000043837000000,0.000361452000000,0.000073058000000,0.000188810000000,0.000030390000000,0.000306144000000,0.000026454500000,0.000039082000000,0.000374490000000,0.000401354000000,0.000174193000000,0.011081049000000,0.000185254000000,0.000173403000000,0.011272259000000,0.000044612000000,0.000038292000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000027244500000,0.000323526000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000362637000000,0.000025862000000,0.000039477000000,0.000370538000000,0.000363427000000,0.000172218000000,0.011565789000000,0.000186835000000,0.000172613000000,0.010980703000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000225551000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000036317000000,0.000188020000000,0.000031181000000,0.000306934000000,0.000026257000000,0.000039477000000,0.000449551000000,0.000376860000000,0.000179724000000,0.011115814000000,0.000187625000000,0.000172613000000,0.011074728000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000036712000000,0.000244909000000,0.000031576000000,0.000308909000000,0.000026850000000,0.000039477000000,0.000383180000000,0.000502489000000,0.000173798000000,0.011030086000000,0.000189206000000,0.000210143000000,0.011096851000000,0.000044218000000,0.000039873000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000027047000000,0.000324317000000,0.000037501000000,0.000189600000000,0.000069107000000,0.000343279000000,0.000026652000000,0.000039477000000,0.000455871000000,0.000380415000000,0.000171823000000,0.011097641000000,0.000200267000000,0.000173798000000,0.010716012000000,0.000043823000000,0.000040662000000 +0.000037897000000,0.000141403000000,0.000052514000000,0.000028232500000,0.000324317000000,0.000037897000000,0.000187230000000,0.000033947000000,0.000307329000000,0.000026059500000,0.000039082000000,0.000373699000000,0.000408860000000,0.000173798000000,0.010750778000000,0.000188415000000,0.000174193000000,0.012898726000000,0.000090835000000,0.000038292000000 +0.000037897000000,0.000142588000000,0.000050143000000,0.000027244500000,0.000329848000000,0.000037502000000,0.000189600000000,0.000043823000000,0.000306539000000,0.000026059500000,0.000039478000000,0.000459822000000,0.000375280000000,0.000171428000000,0.011788998000000,0.000186045000000,0.000173403000000,0.011287271000000,0.000044218000000,0.000038687000000 +0.000038687000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000038687000000,0.000223576000000,0.000030786000000,0.000385156000000,0.000026652500000,0.000039477000000,0.000370539000000,0.000409254000000,0.000174193000000,0.010927765000000,0.000189996000000,0.000171427000000,0.011820999000000,0.000043428000000,0.000040662000000 +0.000037502000000,0.000231082000000,0.000036712000000,0.000027047500000,0.000323131000000,0.000038292000000,0.000188810000000,0.000031181000000,0.000307329000000,0.000026849500000,0.000039872000000,0.000367773000000,0.000375279000000,0.000171823000000,0.010937641000000,0.000186045000000,0.000445205000000,0.010976357000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000434539000000,0.000036711000000,0.000189996000000,0.000030390000000,0.000307329000000,0.000046800500000,0.000039477000000,0.000457057000000,0.000376465000000,0.000171032000000,0.010730235000000,0.000188415000000,0.000297057000000,0.011233543000000,0.000044218000000,0.000040268000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000377650000000,0.000037106000000,0.000189206000000,0.000030786000000,0.000343279000000,0.000041269500000,0.000039477000000,0.000369353000000,0.000410835000000,0.000219230000000,0.012075023000000,0.000188810000000,0.000172613000000,0.012054875000000,0.000044218000000,0.000040267000000 +0.000037896000000,0.000143773000000,0.000035922000000,0.000027245000000,0.000342884000000,0.000037107000000,0.000223576000000,0.000030391000000,0.000308514000000,0.000026257500000,0.000039477000000,0.000748613000000,0.000376069000000,0.000171823000000,0.010969246000000,0.000206588000000,0.000245305000000,0.011697345000000,0.000044218000000,0.000074243000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000037897000000,0.000187625000000,0.000030391000000,0.000307329000000,0.000026257000000,0.000039082000000,0.000451921000000,0.000457057000000,0.000171428000000,0.011574876000000,0.000189205000000,0.000175378000000,0.011181395000000,0.000044612000000,0.000039477000000 +0.000037502000000,0.000140218000000,0.000036711000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000188416000000,0.000030391000000,0.000386736000000,0.000025664500000,0.000039082000000,0.000378440000000,0.000388316000000,0.000170242000000,0.011001246000000,0.000189600000000,0.000172218000000,0.011380505000000,0.000043823000000,0.000038687000000 +0.000038292000000,0.000225156000000,0.000036317000000,0.000027244500000,0.000325896000000,0.000038292000000,0.000188416000000,0.000030786000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000374094000000,0.000513551000000,0.000173798000000,0.011248160000000,0.000187230000000,0.000173403000000,0.011482826000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000062998000000,0.000340514000000,0.000037897000000,0.000222786000000,0.000030786000000,0.000306934000000,0.000025862000000,0.000039477000000,0.000415576000000,0.000369749000000,0.000172613000000,0.010907617000000,0.000269403000000,0.000191971000000,0.011454382000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000326687000000,0.000038292000000,0.000187230000000,0.000030391000000,0.000380020000000,0.000026454500000,0.000039477000000,0.000367378000000,0.000373699000000,0.000174588000000,0.011226036000000,0.000188415000000,0.000172613000000,0.011033641000000,0.000044218000000,0.000039477000000 +0.000073847000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000378044000000,0.000037897000000,0.000187230000000,0.000030390000000,0.000305354000000,0.000026455000000,0.000039477000000,0.000431378000000,0.000427822000000,0.000175378000000,0.011382480000000,0.000188810000000,0.000171427000000,0.011088160000000,0.000045008000000,0.000037897000000 +0.000037502000000,0.000142984000000,0.000036317000000,0.000027442500000,0.000420711000000,0.000037502000000,0.000187625000000,0.000029996000000,0.000308514000000,0.000026652000000,0.000039082000000,0.000424267000000,0.000381205000000,0.000172217000000,0.010905641000000,0.000189205000000,0.000174983000000,0.011292407000000,0.000044218000000,0.000037897000000 +0.000037502000000,0.000147328000000,0.000035921000000,0.000027047000000,0.000323131000000,0.000037501000000,0.000225947000000,0.000030786000000,0.000517501000000,0.000026257000000,0.000075427000000,0.000374489000000,0.000410835000000,0.000171033000000,0.011455567000000,0.000260316000000,0.000174193000000,0.011660999000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000225946000000,0.000036316000000,0.000027047000000,0.000361057000000,0.000037107000000,0.000187230000000,0.000031180000000,0.000668415000000,0.000025862000000,0.000039082000000,0.000388317000000,0.000376069000000,0.000172218000000,0.011136753000000,0.000188020000000,0.000209354000000,0.010829394000000,0.000044218000000,0.000037897000000 +0.000038292000000,0.000142193000000,0.000036712000000,0.000027442500000,0.000323526000000,0.000091230000000,0.000187625000000,0.000032761000000,0.001000266000000,0.000026059500000,0.000039478000000,0.000374884000000,0.000371328000000,0.000174588000000,0.010804901000000,0.000191181000000,0.000176169000000,0.010926975000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000141403000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000052514000000,0.000186045000000,0.000030785000000,0.000734785000000,0.000026060000000,0.000039477000000,0.000408465000000,0.000711871000000,0.000171823000000,0.010973987000000,0.000240168000000,0.000173008000000,0.011148209000000,0.000044217000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000324712000000,0.000037896000000,0.000227921000000,0.000030786000000,0.000363428000000,0.000026454500000,0.000039872000000,0.000377650000000,0.000410834000000,0.000172218000000,0.011098431000000,0.000237798000000,0.000178934000000,0.011094086000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000037502000000,0.000248465000000,0.000030391000000,0.000451526000000,0.000036133500000,0.000039872000000,0.000406884000000,0.000372909000000,0.000173008000000,0.010847962000000,0.000190391000000,0.000208959000000,0.011479666000000,0.000060811000000,0.000038687000000 +0.000038687000000,0.000141008000000,0.000072662000000,0.000027245000000,0.000324712000000,0.000036712000000,0.000186835000000,0.000030390000000,0.000702785000000,0.000042257000000,0.000039477000000,0.000380415000000,0.000365007000000,0.000174193000000,0.010998086000000,0.000188416000000,0.000227527000000,0.010972012000000,0.000044613000000,0.000037897000000 +0.000037897000000,0.000225946000000,0.000036317000000,0.000027244500000,0.000361452000000,0.000037502000000,0.000187230000000,0.000031181000000,0.000320761000000,0.000025862000000,0.000039082000000,0.000382786000000,0.000406885000000,0.000174193000000,0.011238283000000,0.000189206000000,0.000174589000000,0.011104358000000,0.000044218000000,0.000039082000000 +0.000037896000000,0.000144564000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000036711000000,0.000223181000000,0.000048169000000,0.000365008000000,0.000026652000000,0.000039478000000,0.000421896000000,0.000378440000000,0.000174588000000,0.013348701000000,0.000238588000000,0.000175378000000,0.010978333000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000144959000000,0.000036316000000,0.000027047500000,0.000325106000000,0.000037107000000,0.000191181000000,0.000030390000000,0.000453501000000,0.000025664500000,0.000039477000000,0.000365402000000,0.000425057000000,0.000172218000000,0.011146234000000,0.000187625000000,0.000173798000000,0.011895271000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000027047000000,0.000362637000000,0.000037502000000,0.000188415000000,0.000031576000000,0.000378440000000,0.000025862000000,0.000039872000000,0.000445600000000,0.000374490000000,0.000174983000000,0.011405789000000,0.000188416000000,0.000171428000000,0.011075122000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000036924000000,0.000324316000000,0.000037897000000,0.000188810000000,0.000031181000000,0.000349996000000,0.000026257000000,0.000039872000000,0.000372909000000,0.000394637000000,0.000174588000000,0.011309789000000,0.000188021000000,0.000208959000000,0.010981493000000,0.000044613000000,0.000039477000000 +0.000038687000000,0.000142193000000,0.000036316000000,0.000033565500000,0.000323131000000,0.000037106000000,0.000225947000000,0.000030391000000,0.000307724000000,0.000026455000000,0.000039872000000,0.000372909000000,0.000384760000000,0.000172613000000,0.011402233000000,0.000257946000000,0.000172217000000,0.010936851000000,0.000044612000000,0.000038687000000 +0.000037502000000,0.000178538000000,0.000036317000000,0.000027244500000,0.000360662000000,0.000037107000000,0.000188020000000,0.000030391000000,0.000308909000000,0.000026059500000,0.000039872000000,0.000432563000000,0.000372908000000,0.000173008000000,0.012107418000000,0.000187625000000,0.000174588000000,0.010928950000000,0.000044218000000,0.000081749000000 +0.000038687000000,0.000145354000000,0.000035922000000,0.000027047500000,0.000323527000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000321551000000,0.000026059500000,0.000039478000000,0.000370539000000,0.000442834000000,0.000173403000000,0.011429098000000,0.000188810000000,0.000172613000000,0.011252110000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000037502000000,0.000188020000000,0.000030391000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000449551000000,0.000372909000000,0.000171427000000,0.011335863000000,0.000188810000000,0.000173798000000,0.011110678000000,0.000044613000000,0.000039872000000 +0.000037502000000,0.000141798000000,0.000036316000000,0.000027047000000,0.000324317000000,0.000037501000000,0.000240563000000,0.000031576000000,0.000307328000000,0.000025862000000,0.000039872000000,0.000372514000000,0.000416761000000,0.000175378000000,0.011725394000000,0.000270588000000,0.000215674000000,0.010987814000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000036712000000,0.000027047000000,0.000323921000000,0.000035921000000,0.000186835000000,0.000030390000000,0.000336168000000,0.000026257000000,0.000039082000000,0.000408860000000,0.000380415000000,0.000171033000000,0.011243419000000,0.000187626000000,0.000171033000000,0.011286085000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027640000000,0.000343674000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000377254000000,0.000369354000000,0.000173008000000,0.011115419000000,0.000189601000000,0.000174193000000,0.010729049000000,0.000044218000000,0.000037897000000 +0.000038292000000,0.000253205000000,0.000036316000000,0.000027047000000,0.000585847000000,0.000038292000000,0.000186835000000,0.000030786000000,0.000307724000000,0.000035541500000,0.000039477000000,0.000378044000000,0.000410835000000,0.000171427000000,0.011457147000000,0.000189601000000,0.000173008000000,0.011050234000000,0.000045798000000,0.000039477000000 +0.000092415000000,0.000252021000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037896000000,0.000237403000000,0.000030786000000,0.000376070000000,0.000034355500000,0.000039083000000,0.000411230000000,0.000371724000000,0.000171033000000,0.011706431000000,0.000479971000000,0.000172217000000,0.011135567000000,0.000043823000000,0.000039872000000 +0.000071873000000,0.000159970000000,0.000036712000000,0.000027245000000,0.000324316000000,0.000036317000000,0.000187230000000,0.000030786000000,0.000307724000000,0.000067541000000,0.000110588000000,0.000368168000000,0.000447970000000,0.000214095000000,0.011278184000000,0.000244514000000,0.000218440000000,0.011452801000000,0.000044218000000,0.000039082000000 +0.000054489000000,0.000142984000000,0.000036316000000,0.000027047500000,0.000325106000000,0.000086885000000,0.000189995000000,0.000030390000000,0.000306143000000,0.000026060000000,0.000039477000000,0.000417156000000,0.000378439000000,0.000242144000000,0.011079864000000,0.000222785000000,0.000171822000000,0.010837296000000,0.000044613000000,0.000038687000000 +0.000108613000000,0.000143774000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000050539000000,0.000188810000000,0.000030786000000,0.000476810000000,0.000026652000000,0.000039477000000,0.000386341000000,0.000413995000000,0.000174589000000,0.011260407000000,0.000189206000000,0.000173798000000,0.011021790000000,0.000063576000000,0.000039082000000 +0.000069501000000,0.000214489000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037897000000,0.000222786000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000375279000000,0.000366588000000,0.000174193000000,0.011275419000000,0.000186835000000,0.000172218000000,0.011034432000000,0.000044218000000,0.000040267000000 +0.000039873000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000323131000000,0.000037897000000,0.000186440000000,0.000030785000000,0.000418736000000,0.000026059500000,0.000039477000000,0.000416761000000,0.000373304000000,0.000171823000000,0.010735370000000,0.000186835000000,0.000173798000000,0.011370234000000,0.000044218000000,0.000039082000000 +0.000039872000000,0.000140217000000,0.000036316000000,0.000027442500000,0.000324711000000,0.000035922000000,0.000189600000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000363823000000,0.000440860000000,0.000210144000000,0.011040358000000,0.000259132000000,0.000190391000000,0.010741691000000,0.000044613000000,0.000039873000000 +0.000037502000000,0.000140218000000,0.000052909000000,0.000036923500000,0.000362637000000,0.000036317000000,0.000189205000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000411230000000,0.000377255000000,0.000171032000000,0.010945147000000,0.000188811000000,0.000172218000000,0.011017049000000,0.000044613000000,0.000040267000000 +0.000037501000000,0.000144563000000,0.000036316000000,0.000058257000000,0.000323526000000,0.000037897000000,0.000223181000000,0.000031181000000,0.000344465000000,0.000026257000000,0.000039477000000,0.000370933000000,0.000413205000000,0.000172613000000,0.011486777000000,0.000188811000000,0.000172217000000,0.011002826000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000142983000000,0.000035922000000,0.000027442500000,0.000382786000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000308119000000,0.000025664500000,0.000039477000000,0.000381995000000,0.000374884000000,0.000173403000000,0.011032851000000,0.000189206000000,0.000175378000000,0.010962925000000,0.000044217000000,0.000039477000000 +0.000038292000000,0.000180514000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037106000000,0.000188415000000,0.000030785000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000391872000000,0.000377255000000,0.000171033000000,0.010911567000000,0.000225156000000,0.000173403000000,0.010865345000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000143773000000,0.000036316000000,0.000027244500000,0.000325107000000,0.000037897000000,0.000187625000000,0.000050144000000,0.000378045000000,0.000025862000000,0.000039872000000,0.000425848000000,0.000451131000000,0.000226341000000,0.011073148000000,0.000187625000000,0.000173798000000,0.011065247000000,0.000044218000000,0.000055279000000 +0.000037502000000,0.000144169000000,0.000036712000000,0.000027047500000,0.000326687000000,0.000037897000000,0.000265058000000,0.000032761000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000416365000000,0.000376860000000,0.000171033000000,0.010930530000000,0.000188811000000,0.000171428000000,0.010753543000000,0.000045008000000,0.000041058000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000037501000000,0.000202242000000,0.000044218000000,0.000308119000000,0.000026257000000,0.000058835000000,0.000374489000000,0.000412810000000,0.000174588000000,0.011460702000000,0.000188416000000,0.000173798000000,0.011218925000000,0.000044218000000,0.000075033000000 +0.000039082000000,0.000141008000000,0.000036316000000,0.000027442000000,0.000323131000000,0.000036712000000,0.000189600000000,0.000031181000000,0.000379625000000,0.000025862000000,0.000054884000000,0.000426242000000,0.000373304000000,0.000177749000000,0.011467419000000,0.000258736000000,0.000175773000000,0.011269493000000,0.000044218000000,0.000037897000000 +0.000038292000000,0.000141798000000,0.000036316000000,0.000027047000000,0.000324317000000,0.000037107000000,0.000190391000000,0.000030786000000,0.000307724000000,0.000026652000000,0.000094786000000,0.000380020000000,0.000400959000000,0.000174588000000,0.010905641000000,0.000190391000000,0.000212514000000,0.010822679000000,0.000044218000000,0.000039477000000 +0.000057650000000,0.000176169000000,0.000036317000000,0.000027245000000,0.000322341000000,0.000036712000000,0.000260317000000,0.000031181000000,0.000306539000000,0.000066553500000,0.000054885000000,0.000375674000000,0.000378044000000,0.000186835000000,0.010984259000000,0.000189206000000,0.000173403000000,0.011005592000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000322736000000,0.000038687000000,0.000188416000000,0.000030391000000,0.000344860000000,0.000026257000000,0.000042243000000,0.000410440000000,0.000373700000000,0.000171823000000,0.011278974000000,0.000190391000000,0.000171823000000,0.013473145000000,0.000045008000000,0.000039082000000 +0.000038687000000,0.000140613000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000186440000000,0.000030390000000,0.000308514000000,0.000026257000000,0.000072267000000,0.000381205000000,0.000428612000000,0.000173403000000,0.011164801000000,0.000236613000000,0.000173008000000,0.013789195000000,0.000043823000000,0.000038292000000 +0.000037897000000,0.000184465000000,0.000035922000000,0.000027245000000,0.000323921000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000308119000000,0.000026257500000,0.000055675000000,0.000512366000000,0.000381995000000,0.000171428000000,0.010694679000000,0.000188415000000,0.000174588000000,0.011623468000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000324317000000,0.000036712000000,0.000229502000000,0.000030786000000,0.000354736000000,0.000026454500000,0.000039477000000,0.000382390000000,0.000523427000000,0.000209749000000,0.010888259000000,0.000188810000000,0.000209748000000,0.010886679000000,0.000044218000000,0.000038292000000 +0.000037896000000,0.000140218000000,0.000035922000000,0.000027047000000,0.000325897000000,0.000057650000000,0.000187625000000,0.000030786000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000445600000000,0.000567675000000,0.000185255000000,0.011299518000000,0.000187625000000,0.000173403000000,0.011273048000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000180514000000,0.000036316000000,0.000027047000000,0.000325106000000,0.000056859000000,0.000188810000000,0.000030786000000,0.000308514000000,0.000026849500000,0.000040267000000,0.000376464000000,0.000416365000000,0.000171428000000,0.011213395000000,0.000276119000000,0.000173403000000,0.011574876000000,0.000080564000000,0.000039082000000 +0.000037897000000,0.000144563000000,0.000035922000000,0.000045220000000,0.000323526000000,0.000054094000000,0.000189996000000,0.000030785000000,0.000588613000000,0.000026060000000,0.000039477000000,0.000368169000000,0.000372909000000,0.000173798000000,0.010723123000000,0.000190391000000,0.000174193000000,0.011185740000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000143379000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000050934000000,0.000231476000000,0.000032366000000,0.000345255000000,0.000026257000000,0.000039478000000,0.000421896000000,0.000402933000000,0.000171823000000,0.011090135000000,0.000188810000000,0.000173008000000,0.011373395000000,0.000043823000000,0.000037896000000 +0.000037897000000,0.000141008000000,0.000035922000000,0.000027047500000,0.000323922000000,0.000037897000000,0.000188811000000,0.000030390000000,0.000342884000000,0.000026849500000,0.000039872000000,0.000375279000000,0.000385551000000,0.000233452000000,0.011766085000000,0.000186835000000,0.000208168000000,0.010960950000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000323922000000,0.000037106000000,0.000189601000000,0.000030786000000,0.000306539000000,0.000026059500000,0.000039477000000,0.000406094000000,0.000373699000000,0.000171033000000,0.010788308000000,0.000271378000000,0.000173008000000,0.011430678000000,0.000044218000000,0.000039082000000 +0.000039083000000,0.000143378000000,0.000058045000000,0.000027047000000,0.000361452000000,0.000037502000000,0.000187231000000,0.000030391000000,0.000423871000000,0.000025862000000,0.000039477000000,0.000373304000000,0.000409650000000,0.000172218000000,0.011374184000000,0.000187626000000,0.000171032000000,0.011408160000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000180119000000,0.000063576000000,0.000027245000000,0.000323131000000,0.000037897000000,0.000224366000000,0.000030390000000,0.000593748000000,0.000026059500000,0.000039477000000,0.000382785000000,0.000375674000000,0.000173008000000,0.011162826000000,0.000190391000000,0.000171427000000,0.010842827000000,0.000044613000000,0.000039872000000 +0.000038292000000,0.000142983000000,0.000052515000000,0.000027837000000,0.000322341000000,0.000037897000000,0.000190390000000,0.000030786000000,0.000323526000000,0.000026059500000,0.000039082000000,0.000420712000000,0.000413206000000,0.000173008000000,0.011135962000000,0.000188811000000,0.000173403000000,0.011357197000000,0.000044217000000,0.000038687000000 +0.000037897000000,0.000145354000000,0.000053305000000,0.000027442500000,0.000363428000000,0.000035921000000,0.000186440000000,0.000031181000000,0.000415575000000,0.000026059500000,0.000039477000000,0.000373304000000,0.000374094000000,0.000210539000000,0.011368654000000,0.000224761000000,0.000210539000000,0.011276999000000,0.000043823000000,0.000039477000000 +0.000038292000000,0.000139822000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000189995000000,0.000030391000000,0.000308909000000,0.000035936000000,0.000039872000000,0.000410440000000,0.000372909000000,0.000172613000000,0.010855863000000,0.000187230000000,0.000173798000000,0.010866135000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000324712000000,0.000038292000000,0.000333798000000,0.000030786000000,0.000309304000000,0.000052331000000,0.000039477000000,0.000370538000000,0.000414390000000,0.000171428000000,0.010726678000000,0.000189205000000,0.000174193000000,0.010959370000000,0.000044218000000,0.000039872000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000039082000000,0.000259132000000,0.000030390000000,0.000342885000000,0.000026059500000,0.000039477000000,0.000404119000000,0.000377254000000,0.000172217000000,0.011012308000000,0.000186440000000,0.000172613000000,0.010948308000000,0.000044218000000,0.000060021000000 +0.000038292000000,0.000142983000000,0.000035922000000,0.000027245000000,0.000323131000000,0.000035922000000,0.000185650000000,0.000049749000000,0.000307724000000,0.000026850000000,0.000039872000000,0.000372513000000,0.000444020000000,0.000172218000000,0.011421591000000,0.000281650000000,0.000173798000000,0.011273838000000,0.000043823000000,0.000071477000000 +0.000037897000000,0.000188810000000,0.000036316000000,0.000044430000000,0.000323132000000,0.000037107000000,0.000237403000000,0.000073847000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000372118000000,0.000371328000000,0.000227527000000,0.010783568000000,0.000187625000000,0.000208168000000,0.010690333000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000142984000000,0.000035921000000,0.000035541000000,0.000325107000000,0.000036711000000,0.000187230000000,0.000030391000000,0.000357502000000,0.000026059500000,0.000039477000000,0.000431773000000,0.000372119000000,0.000216860000000,0.010959370000000,0.000189600000000,0.000176958000000,0.011188111000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000142984000000,0.000036712000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000306934000000,0.000026059500000,0.000039872000000,0.000380415000000,0.000444415000000,0.000174984000000,0.010963716000000,0.000189995000000,0.000172613000000,0.011929641000000,0.000044613000000,0.000039082000000 +0.000074242000000,0.000144169000000,0.000036317000000,0.000045220000000,0.000322736000000,0.000037502000000,0.000188810000000,0.000031180000000,0.000308119000000,0.000026455000000,0.000039477000000,0.000414786000000,0.000373304000000,0.000171823000000,0.011024160000000,0.000225946000000,0.000171428000000,0.011551171000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000141008000000,0.000036711000000,0.000027245000000,0.000323131000000,0.000037502000000,0.000260317000000,0.000030391000000,0.000389501000000,0.000025862000000,0.000058835000000,0.000374884000000,0.000423872000000,0.000172217000000,0.011365098000000,0.000186439000000,0.000179329000000,0.010984259000000,0.000043823000000,0.000038687000000 +0.000038292000000,0.000140612000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000037897000000,0.000187625000000,0.000029996000000,0.000303378000000,0.000026257000000,0.000052119000000,0.000380020000000,0.000368563000000,0.000192761000000,0.011019814000000,0.000186045000000,0.000212119000000,0.010868111000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000176169000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000072662000000,0.000187230000000,0.000030785000000,0.000308118000000,0.000026059500000,0.000039083000000,0.000404119000000,0.000421501000000,0.000172613000000,0.011152555000000,0.000189205000000,0.000172613000000,0.010791468000000,0.000078193000000,0.000037896000000 +0.000037897000000,0.000141007000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000037501000000,0.000186835000000,0.000030786000000,0.000345255000000,0.000026652000000,0.000039477000000,0.000383575000000,0.000378044000000,0.000175379000000,0.011330727000000,0.000225156000000,0.000173403000000,0.011201147000000,0.000080168000000,0.000039872000000 +0.000037896000000,0.000142984000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000223576000000,0.000031181000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000499329000000,0.000366983000000,0.000171033000000,0.010680061000000,0.000186440000000,0.000173403000000,0.011320851000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000142984000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037897000000,0.000187625000000,0.000030786000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000374489000000,0.000457057000000,0.000193551000000,0.010888259000000,0.000186835000000,0.000173403000000,0.011009148000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000037897000000,0.000187625000000,0.000030391000000,0.000344070000000,0.000026257500000,0.000039872000000,0.000412415000000,0.000366193000000,0.000187230000000,0.011075913000000,0.000186835000000,0.000208959000000,0.010936061000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000055674000000,0.000027442000000,0.000323921000000,0.000037106000000,0.000187625000000,0.000030785000000,0.000378440000000,0.000026454500000,0.000039477000000,0.000372514000000,0.000417156000000,0.000174589000000,0.011676801000000,0.000224366000000,0.000171428000000,0.011188900000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000175379000000,0.000036316000000,0.000027244500000,0.000322341000000,0.000038292000000,0.000274934000000,0.000031181000000,0.000339724000000,0.000043639500000,0.000039478000000,0.000374489000000,0.000374884000000,0.000172613000000,0.011621888000000,0.000189995000000,0.000174589000000,0.011042727000000,0.000044218000000,0.000039478000000 +0.000037896000000,0.000144563000000,0.000035922000000,0.000027047500000,0.000323527000000,0.000037897000000,0.000191180000000,0.000031181000000,0.000308119000000,0.000034158500000,0.000039477000000,0.000411230000000,0.000405304000000,0.000172217000000,0.010916308000000,0.000188020000000,0.000171428000000,0.010845592000000,0.000044613000000,0.000038292000000 +0.000038687000000,0.000139823000000,0.000035922000000,0.000027047500000,0.000381205000000,0.000037897000000,0.000190786000000,0.000031181000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000371723000000,0.000374884000000,0.000212514000000,0.010985049000000,0.000187230000000,0.000173008000000,0.010847173000000,0.000044218000000,0.000039082000000 +0.000038687000000,0.000143379000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000191181000000,0.000030786000000,0.000307329000000,0.000026850000000,0.000039872000000,0.000433353000000,0.000367773000000,0.000403724000000,0.011371814000000,0.000223181000000,0.000244909000000,0.011395518000000,0.000044218000000,0.000040662000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037107000000,0.000267427000000,0.000030786000000,0.000325502000000,0.000026652000000,0.000039082000000,0.000383576000000,0.000410045000000,0.000208564000000,0.011065641000000,0.000187231000000,0.000186440000000,0.011047863000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000038292000000,0.000278094000000,0.000031576000000,0.000308118000000,0.000026454500000,0.000039477000000,0.000398588000000,0.000372119000000,0.000171428000000,0.011024555000000,0.000188020000000,0.000173403000000,0.011280949000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000159575000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000037107000000,0.000188020000000,0.000031181000000,0.000307329000000,0.000025862000000,0.000039478000000,0.000383970000000,0.000415971000000,0.000172613000000,0.011244604000000,0.000189996000000,0.000171032000000,0.010879567000000,0.000044218000000,0.000058440000000 +0.000037897000000,0.000161156000000,0.000036316000000,0.000046602500000,0.000366193000000,0.000037502000000,0.000209748000000,0.000030391000000,0.000342885000000,0.000026059500000,0.000039477000000,0.000374885000000,0.000370934000000,0.000171427000000,0.011496258000000,0.000270588000000,0.000212909000000,0.011036407000000,0.000044218000000,0.000039872000000 +0.000037501000000,0.000141403000000,0.000036317000000,0.000043640000000,0.000323527000000,0.000037502000000,0.000187625000000,0.000030390000000,0.000307724000000,0.000026455000000,0.000039477000000,0.000409255000000,0.000371724000000,0.000172218000000,0.010817543000000,0.000191971000000,0.000173008000000,0.013392553000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000036711000000,0.000190785000000,0.000030786000000,0.000307723000000,0.000026059500000,0.000039082000000,0.000372909000000,0.000446786000000,0.000174589000000,0.011337048000000,0.000188416000000,0.000173008000000,0.011466233000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000140613000000,0.000036316000000,0.000027047000000,0.000451526000000,0.000036711000000,0.000187230000000,0.000046193000000,0.000378835000000,0.000026257000000,0.000039477000000,0.000419526000000,0.000373699000000,0.000173008000000,0.010738530000000,0.000190391000000,0.000173798000000,0.011497443000000,0.000044613000000,0.000039477000000 +0.000038292000000,0.000142588000000,0.000036711000000,0.000027245000000,0.000325106000000,0.000038687000000,0.000222785000000,0.000044613000000,0.000308909000000,0.000026849500000,0.000039477000000,0.000370539000000,0.000416761000000,0.000174193000000,0.011542481000000,0.000224366000000,0.000175378000000,0.011162431000000,0.000044217000000,0.000039082000000 +0.000037897000000,0.000159576000000,0.000036317000000,0.000027244500000,0.000325502000000,0.000037897000000,0.000190391000000,0.000030391000000,0.000307724000000,0.000026257500000,0.000039083000000,0.000377255000000,0.000373699000000,0.000175774000000,0.010985839000000,0.000186835000000,0.000243329000000,0.012533294000000,0.000063181000000,0.000038687000000 +0.000058045000000,0.000196316000000,0.000036712000000,0.000027442000000,0.000325107000000,0.000039082000000,0.000190786000000,0.000030391000000,0.000339329000000,0.000026454500000,0.000077798000000,0.000415575000000,0.000372119000000,0.000173402000000,0.011771616000000,0.000187230000000,0.000174588000000,0.011428308000000,0.000094786000000,0.000039082000000 +0.000037502000000,0.000143773000000,0.000037502000000,0.000027837500000,0.000322736000000,0.000056860000000,0.000186835000000,0.000030390000000,0.000307329000000,0.000025862000000,0.000056070000000,0.000372514000000,0.000403329000000,0.000174193000000,0.011647566000000,0.000190391000000,0.000173798000000,0.011517592000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000140218000000,0.000035922000000,0.000027244500000,0.000323131000000,0.000037897000000,0.000236613000000,0.000030391000000,0.000307724000000,0.000027244500000,0.000039872000000,0.000429798000000,0.000367378000000,0.000172613000000,0.011944653000000,0.000261897000000,0.000173798000000,0.011248160000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000322341000000,0.000037107000000,0.000227132000000,0.000030391000000,0.000324712000000,0.000062405500000,0.000039082000000,0.000380810000000,0.000411625000000,0.000173798000000,0.011076308000000,0.000186835000000,0.000172613000000,0.011382876000000,0.000044613000000,0.000039872000000 +0.000038292000000,0.000142983000000,0.000035921000000,0.000027245000000,0.000323132000000,0.000037501000000,0.000188810000000,0.000031971000000,0.000307724000000,0.000056084000000,0.000039477000000,0.000375674000000,0.000373304000000,0.000172613000000,0.010972802000000,0.000189996000000,0.000300217000000,0.010876011000000,0.000044613000000,0.000039873000000 +0.000037896000000,0.000178539000000,0.000036316000000,0.000027047000000,0.000325502000000,0.000036712000000,0.000187230000000,0.000030391000000,0.000436908000000,0.000035738500000,0.000039478000000,0.000404514000000,0.000370934000000,0.000172613000000,0.011203123000000,0.000188811000000,0.000207773000000,0.010993740000000,0.000044613000000,0.000040267000000 +0.000038292000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000037107000000,0.000226737000000,0.000031576000000,0.000324317000000,0.000028232500000,0.000039477000000,0.000380810000000,0.000411230000000,0.000171428000000,0.010827025000000,0.000225156000000,0.000173798000000,0.011391567000000,0.000043823000000,0.000038687000000 +0.000037502000000,0.000142588000000,0.000092416000000,0.000027245000000,0.000325107000000,0.000038292000000,0.000186440000000,0.000033946000000,0.000308909000000,0.000032973000000,0.000039477000000,0.000547921000000,0.000372119000000,0.000171823000000,0.011408555000000,0.000188020000000,0.000175774000000,0.011431073000000,0.000044613000000,0.000040663000000 +0.000037897000000,0.000140613000000,0.000054884000000,0.000027047500000,0.000323922000000,0.000037106000000,0.000187230000000,0.000030391000000,0.000344860000000,0.000026059500000,0.000039477000000,0.000374489000000,0.000502094000000,0.000172218000000,0.010918678000000,0.000188415000000,0.000216070000000,0.011160851000000,0.000044613000000,0.000037897000000 +0.000037897000000,0.000144958000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000187230000000,0.000030391000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000452712000000,0.000443625000000,0.000173008000000,0.010930530000000,0.000188415000000,0.000174588000000,0.011327567000000,0.000044217000000,0.000039082000000 +0.000038292000000,0.000142983000000,0.000036712000000,0.000045220000000,0.000325501000000,0.000036712000000,0.000274144000000,0.000031181000000,0.000307328000000,0.000025862000000,0.000039873000000,0.000364217000000,0.000454686000000,0.000172218000000,0.011289641000000,0.000236612000000,0.000172218000000,0.010812407000000,0.000044218000000,0.000039477000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000666835000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000343674000000,0.000026850000000,0.000039082000000,0.000395822000000,0.000370933000000,0.000171823000000,0.011142678000000,0.000189601000000,0.000171427000000,0.011413295000000,0.000044218000000,0.000037502000000 +0.000037502000000,0.000178539000000,0.000036711000000,0.000027245000000,0.000355921000000,0.000038292000000,0.000186440000000,0.000030391000000,0.000307329000000,0.000026652000000,0.000039477000000,0.000408070000000,0.000446391000000,0.000173798000000,0.011329542000000,0.000186440000000,0.000171823000000,0.010802531000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000037502000000,0.000189601000000,0.000030786000000,0.000308119000000,0.000026652000000,0.000039082000000,0.000381600000000,0.000380415000000,0.000172218000000,0.010865345000000,0.000190785000000,0.000209749000000,0.011066827000000,0.000044218000000,0.000038291000000 +0.000038292000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000038687000000,0.000204218000000,0.000030391000000,0.000402539000000,0.000026257000000,0.000039477000000,0.000492217000000,0.000372514000000,0.000172613000000,0.010891024000000,0.000224761000000,0.000173798000000,0.010880358000000,0.000044218000000,0.000073057000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000036712000000,0.000189600000000,0.000069896000000,0.000396217000000,0.000026059500000,0.000039477000000,0.000374490000000,0.000468514000000,0.000173798000000,0.011210629000000,0.000188415000000,0.000173403000000,0.011047863000000,0.000044218000000,0.000053305000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047500000,0.000324317000000,0.000037107000000,0.000186835000000,0.000031971000000,0.000308119000000,0.000026652000000,0.000039477000000,0.000433353000000,0.000378440000000,0.000172218000000,0.010822283000000,0.000189995000000,0.000173798000000,0.011070382000000,0.000044613000000,0.000038687000000 +0.000037501000000,0.000140613000000,0.000035922000000,0.000027047000000,0.000325107000000,0.000038292000000,0.000188811000000,0.000032761000000,0.000343279000000,0.000044825000000,0.000039478000000,0.000374885000000,0.000466144000000,0.000174193000000,0.012470085000000,0.000188810000000,0.000175378000000,0.011103962000000,0.000045008000000,0.000039082000000 +0.000038292000000,0.000177748000000,0.000036317000000,0.000027639500000,0.000323922000000,0.000036711000000,0.000240564000000,0.000050143000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000412415000000,0.000375280000000,0.000173008000000,0.011563419000000,0.000224761000000,0.000222390000000,0.010943962000000,0.000080564000000,0.000038687000000 +0.000039082000000,0.000142193000000,0.000036316000000,0.000027047500000,0.000323922000000,0.000037107000000,0.000188416000000,0.000030390000000,0.000306934000000,0.000026257000000,0.000039082000000,0.000379230000000,0.000410440000000,0.000172217000000,0.011633739000000,0.000189206000000,0.000174193000000,0.011186135000000,0.000044217000000,0.000039477000000 +0.000037897000000,0.000142588000000,0.000036712000000,0.000027244500000,0.000324712000000,0.000037107000000,0.000190391000000,0.000031971000000,0.000400959000000,0.000026257000000,0.000058440000000,0.000376465000000,0.000366588000000,0.000172613000000,0.010994530000000,0.000189996000000,0.000174984000000,0.011324801000000,0.000044217000000,0.000039477000000 +0.000038687000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037897000000,0.000190391000000,0.000030785000000,0.000307329000000,0.000025862000000,0.000055280000000,0.000445600000000,0.000369353000000,0.000173008000000,0.012650628000000,0.000188811000000,0.000172218000000,0.010702975000000,0.000043823000000,0.000038687000000 +0.000073848000000,0.000143378000000,0.000036711000000,0.000027047500000,0.000325502000000,0.000073057000000,0.000186836000000,0.000030786000000,0.000308514000000,0.000026652500000,0.000039082000000,0.000381206000000,0.000443625000000,0.000176563000000,0.010940802000000,0.000351971000000,0.000173008000000,0.011414480000000,0.000043823000000,0.000039477000000 +0.000038291000000,0.000142983000000,0.000036712000000,0.000027245000000,0.000322736000000,0.000037897000000,0.000187230000000,0.000029996000000,0.000379230000000,0.000026059500000,0.000039477000000,0.000405304000000,0.000374094000000,0.000173008000000,0.012013788000000,0.000238588000000,0.000210538000000,0.011371814000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000178539000000,0.000036317000000,0.000027244500000,0.000325501000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000309700000000,0.000026257000000,0.000039082000000,0.000366983000000,0.000446390000000,0.000173403000000,0.011141098000000,0.000186835000000,0.000173008000000,0.011346530000000,0.000044613000000,0.000040663000000 +0.000037502000000,0.000142983000000,0.000035921000000,0.000027047000000,0.000381600000000,0.000037897000000,0.000188020000000,0.000031971000000,0.000308514000000,0.000026849500000,0.000039477000000,0.000373699000000,0.000372909000000,0.000171823000000,0.011165987000000,0.000234638000000,0.000175378000000,0.011401443000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000140218000000,0.000036711000000,0.000045813000000,0.000323922000000,0.000037502000000,0.000573996000000,0.000030391000000,0.000392662000000,0.000026455000000,0.000039082000000,0.000692909000000,0.000379230000000,0.000171822000000,0.011081839000000,0.000223971000000,0.000171428000000,0.010819518000000,0.000043823000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000052909000000,0.000027245000000,0.000374095000000,0.000038292000000,0.000238588000000,0.000030786000000,0.000306934000000,0.000026257000000,0.000039872000000,0.000404909000000,0.000403328000000,0.000171428000000,0.011379715000000,0.000190391000000,0.000177353000000,0.011010727000000,0.000044613000000,0.000039873000000 +0.000038292000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037897000000,0.000205798000000,0.000029995000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000365798000000,0.000376070000000,0.000175378000000,0.010985444000000,0.000188811000000,0.000256761000000,0.011058135000000,0.000043822000000,0.000039477000000 +0.000072662000000,0.000144168000000,0.000037107000000,0.000027244500000,0.000323526000000,0.000037897000000,0.000187231000000,0.000030391000000,0.000390687000000,0.000025862000000,0.000039872000000,0.000372119000000,0.000446390000000,0.000173798000000,0.011143468000000,0.000225946000000,0.000172613000000,0.010721148000000,0.000044612000000,0.000039082000000 +0.000040662000000,0.000180909000000,0.000036316000000,0.000027047500000,0.000324711000000,0.000037106000000,0.000187625000000,0.000030786000000,0.000304169000000,0.000025862000000,0.000039082000000,0.000407280000000,0.000375674000000,0.000173403000000,0.011119369000000,0.000190390000000,0.000172612000000,0.010773691000000,0.000044217000000,0.000039477000000 +0.000051329000000,0.000146934000000,0.000037502000000,0.000027245000000,0.000374489000000,0.000037502000000,0.000186835000000,0.000030390000000,0.000306539000000,0.000025862000000,0.000039477000000,0.000378440000000,0.000407674000000,0.000172217000000,0.011279764000000,0.000188415000000,0.000173403000000,0.011009148000000,0.000045008000000,0.000039083000000 +0.000037107000000,0.000143773000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000206193000000,0.000030391000000,0.000379625000000,0.000026850000000,0.000039477000000,0.000416761000000,0.000376859000000,0.000178144000000,0.010934481000000,0.000186835000000,0.000172218000000,0.011222876000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000144959000000,0.000036316000000,0.000027047500000,0.000325106000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000307329000000,0.000044825000000,0.000039082000000,0.000371724000000,0.000367774000000,0.000172613000000,0.010909197000000,0.000265453000000,0.000536069000000,0.011028900000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027442500000,0.000325106000000,0.000038687000000,0.000191180000000,0.000030390000000,0.000424267000000,0.000025862000000,0.000039082000000,0.000373304000000,0.000735970000000,0.000171428000000,0.011924504000000,0.000187230000000,0.000173403000000,0.011243814000000,0.000045008000000,0.000039477000000 +0.000038292000000,0.000145353000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000038292000000,0.000187625000000,0.000030786000000,0.000431378000000,0.000025862000000,0.000039477000000,0.000416366000000,0.000428217000000,0.000171428000000,0.011254876000000,0.000186835000000,0.000172613000000,0.011108703000000,0.000043823000000,0.000055280000000 +0.000037502000000,0.000140218000000,0.000036712000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000272958000000,0.000030785000000,0.000435329000000,0.000026652000000,0.000039872000000,0.000370934000000,0.000372514000000,0.000171823000000,0.011427518000000,0.000191971000000,0.000208958000000,0.011015864000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000159181000000,0.000036316000000,0.000027245000000,0.000417551000000,0.000037897000000,0.000186440000000,0.000030786000000,0.000767575000000,0.000026652000000,0.000039478000000,0.000524217000000,0.000374095000000,0.000173007000000,0.011179024000000,0.000222786000000,0.000173798000000,0.011367468000000,0.000080169000000,0.000039478000000 +0.000037502000000,0.000142194000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000038292000000,0.000190391000000,0.000030391000000,0.000358292000000,0.000026455000000,0.000039477000000,0.000371724000000,0.000408069000000,0.000172613000000,0.011458333000000,0.000187625000000,0.000171033000000,0.010938431000000,0.000044217000000,0.000039477000000 +0.000037501000000,0.000142984000000,0.000035922000000,0.000027047000000,0.000322736000000,0.000038687000000,0.000188810000000,0.000032761000000,0.000435723000000,0.000026454500000,0.000038687000000,0.000442835000000,0.000364613000000,0.000189995000000,0.010961345000000,0.000190785000000,0.000172218000000,0.011158085000000,0.000043822000000,0.000039082000000 +0.000037897000000,0.000141007000000,0.000036316000000,0.000027047500000,0.000323527000000,0.000037502000000,0.000189996000000,0.000030786000000,0.000327477000000,0.000026059500000,0.000039082000000,0.000380811000000,0.000461403000000,0.000174193000000,0.011435023000000,0.000188810000000,0.000178538000000,0.011026530000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000144564000000,0.000036317000000,0.000027047500000,0.000323922000000,0.000035921000000,0.000189206000000,0.000030391000000,0.000461403000000,0.000026059500000,0.000059230000000,0.000381205000000,0.000373699000000,0.000218045000000,0.010813197000000,0.000222785000000,0.000189205000000,0.011486382000000,0.000044613000000,0.000039082000000 +0.000037107000000,0.000205403000000,0.000036317000000,0.000046405000000,0.000324712000000,0.000037501000000,0.000190785000000,0.000066737000000,0.000362638000000,0.000026059500000,0.000071872000000,0.000414786000000,0.000380415000000,0.000173008000000,0.011243419000000,0.000186835000000,0.000173403000000,0.010836900000000,0.000045008000000,0.000038687000000 +0.000080563000000,0.000143774000000,0.000035921000000,0.000088874500000,0.000362638000000,0.000054094000000,0.000188810000000,0.000031181000000,0.000344465000000,0.000026455000000,0.000039478000000,0.000374489000000,0.000410045000000,0.000171822000000,0.010893000000000,0.000189600000000,0.000177749000000,0.010973197000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000036711000000,0.000085911500000,0.000323132000000,0.000037897000000,0.000206193000000,0.000030390000000,0.000327477000000,0.000025664500000,0.000039872000000,0.000415971000000,0.000371329000000,0.000171823000000,0.011576455000000,0.000187625000000,0.000172218000000,0.010873246000000,0.000045008000000,0.000038687000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000046405000000,0.000363428000000,0.000036712000000,0.000189996000000,0.000030391000000,0.000326292000000,0.000026059500000,0.000039477000000,0.000400563000000,0.000402934000000,0.000173403000000,0.011332702000000,0.000258736000000,0.000173008000000,0.011230776000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000142984000000,0.000035922000000,0.000028825000000,0.000325897000000,0.000037107000000,0.000190785000000,0.000030391000000,0.000664860000000,0.000026257000000,0.000039477000000,0.000434538000000,0.000381996000000,0.000221601000000,0.010994925000000,0.000186835000000,0.000173798000000,0.011403024000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000144959000000,0.000095576000000,0.000042652000000,0.000324317000000,0.000037106000000,0.000191971000000,0.000030786000000,0.000326291000000,0.000025862000000,0.000039477000000,0.000373304000000,0.000373699000000,0.000172218000000,0.011195221000000,0.000189206000000,0.000171822000000,0.010921443000000,0.000043823000000,0.000039873000000 +0.000038292000000,0.000142193000000,0.000066736000000,0.000027244500000,0.000359477000000,0.000037502000000,0.000206588000000,0.000030391000000,0.000362242000000,0.000026257000000,0.000039082000000,0.000374094000000,0.000369354000000,0.000173007000000,0.011705641000000,0.000188415000000,0.000173008000000,0.011011517000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000179329000000,0.000036712000000,0.000027442500000,0.000322341000000,0.000037502000000,0.000186440000000,0.000029995000000,0.000326687000000,0.000026257000000,0.000039083000000,0.000447181000000,0.000374884000000,0.000172613000000,0.010774481000000,0.000225946000000,0.000172218000000,0.011571715000000,0.000045008000000,0.000040662000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000187625000000,0.000032366000000,0.000325896000000,0.000043837500000,0.000039477000000,0.000374094000000,0.000421897000000,0.000177353000000,0.010900111000000,0.000189600000000,0.000194737000000,0.011255271000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000140613000000,0.000036316000000,0.000027244500000,0.000324317000000,0.000037106000000,0.000188810000000,0.000031181000000,0.000327082000000,0.000032183000000,0.000039477000000,0.000410440000000,0.000371724000000,0.000172613000000,0.011194431000000,0.000187625000000,0.000243329000000,0.010846777000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027442500000,0.000325107000000,0.000037107000000,0.000223971000000,0.000030786000000,0.000326687000000,0.000026059500000,0.000039872000000,0.000376070000000,0.000446390000000,0.000171823000000,0.011450826000000,0.000189601000000,0.000220415000000,0.010907222000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000145353000000,0.000036317000000,0.000062800000000,0.000324712000000,0.000037502000000,0.000188811000000,0.000030786000000,0.000327082000000,0.000026455000000,0.000039872000000,0.000369749000000,0.000374094000000,0.000173008000000,0.010921444000000,0.000224365000000,0.000172218000000,0.011827320000000,0.000044217000000,0.000039477000000 +0.000037896000000,0.000140613000000,0.000036316000000,0.000027442500000,0.000391871000000,0.000037502000000,0.000221996000000,0.000030785000000,0.000326292000000,0.000025862000000,0.000039872000000,0.000450341000000,0.000374884000000,0.000171428000000,0.011006382000000,0.000190391000000,0.000191576000000,0.010862975000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000177748000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037501000000,0.000187230000000,0.000031181000000,0.000326686000000,0.000026652000000,0.000039873000000,0.000383181000000,0.000404908000000,0.000172612000000,0.011105147000000,0.000187230000000,0.000174588000000,0.011485592000000,0.000044218000000,0.000058045000000 +0.000037897000000,0.000144564000000,0.000035922000000,0.000027244500000,0.000324711000000,0.000037897000000,0.000205403000000,0.000031180000000,0.000325502000000,0.000025862000000,0.000039082000000,0.000415575000000,0.000377254000000,0.000172218000000,0.011291616000000,0.000186440000000,0.000173403000000,0.011206678000000,0.000080169000000,0.000039872000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000188810000000,0.000030786000000,0.000327477000000,0.000025862000000,0.000039477000000,0.000366984000000,0.000459428000000,0.000171428000000,0.010851913000000,0.000258737000000,0.000173008000000,0.011828505000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000145353000000,0.000036711000000,0.000027245000000,0.000325502000000,0.000037501000000,0.000187625000000,0.000030786000000,0.000326291000000,0.000026059500000,0.000039082000000,0.000392662000000,0.000374884000000,0.000172218000000,0.010754728000000,0.000186835000000,0.000172613000000,0.011105542000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000323526000000,0.000037897000000,0.000188811000000,0.000030391000000,0.000326687000000,0.000026257500000,0.000039477000000,0.000372514000000,0.000366588000000,0.000174193000000,0.011085394000000,0.000190785000000,0.000208959000000,0.011179814000000,0.000044218000000,0.000039872000000 +0.000037501000000,0.000144168000000,0.000036317000000,0.000027244500000,0.000373304000000,0.000037502000000,0.000223971000000,0.000030391000000,0.000326686000000,0.000026454500000,0.000039477000000,0.000372909000000,0.000382786000000,0.000173798000000,0.011606876000000,0.000187625000000,0.000172612000000,0.010856654000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000227526000000,0.000036316000000,0.000027245000000,0.000323526000000,0.000037897000000,0.000188415000000,0.000030391000000,0.000326292000000,0.000026454500000,0.000039478000000,0.000419921000000,0.000375279000000,0.000171033000000,0.010899715000000,0.000237007000000,0.000174983000000,0.011123321000000,0.000043822000000,0.000040267000000 +0.000037502000000,0.000202638000000,0.000036712000000,0.000027639500000,0.000325107000000,0.000037501000000,0.000189205000000,0.000030391000000,0.000327082000000,0.000026454500000,0.000056069000000,0.000370539000000,0.000421502000000,0.000173798000000,0.011294382000000,0.000186440000000,0.000174193000000,0.011186925000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000156020000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000078588000000,0.000186835000000,0.000030786000000,0.000326292000000,0.000026652500000,0.000039478000000,0.000413995000000,0.000364218000000,0.000210539000000,0.010740506000000,0.000189600000000,0.000171823000000,0.010786332000000,0.000043823000000,0.000038292000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000322342000000,0.000037502000000,0.000270983000000,0.000031575000000,0.000327082000000,0.000026454500000,0.000039477000000,0.000372119000000,0.000417551000000,0.000171428000000,0.011536159000000,0.000188415000000,0.000207379000000,0.010950284000000,0.000044613000000,0.000040663000000 +0.000093600000000,0.000140613000000,0.000036316000000,0.000027244500000,0.000362242000000,0.000037502000000,0.000190391000000,0.000049749000000,0.000326291000000,0.000026454500000,0.000039477000000,0.000372514000000,0.000387921000000,0.000174588000000,0.011557493000000,0.000224761000000,0.000178539000000,0.011301888000000,0.000044218000000,0.000038292000000 +0.000053304000000,0.000144564000000,0.000074242000000,0.000027244500000,0.000374489000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000326687000000,0.000044035000000,0.000039872000000,0.000423871000000,0.000371328000000,0.000171823000000,0.011250925000000,0.000189601000000,0.000174588000000,0.011864061000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000178934000000,0.000052909000000,0.000027245000000,0.000324316000000,0.000038292000000,0.000188415000000,0.000030390000000,0.000326292000000,0.000025664500000,0.000039477000000,0.000379230000000,0.000416366000000,0.000172217000000,0.011467418000000,0.000189206000000,0.000173798000000,0.011419616000000,0.000044613000000,0.000037897000000 +0.000039082000000,0.000150490000000,0.000036316000000,0.000046603000000,0.000324316000000,0.000037107000000,0.000204613000000,0.000030391000000,0.000327872000000,0.000026454500000,0.000039477000000,0.000557403000000,0.000374885000000,0.000174193000000,0.011017049000000,0.000187626000000,0.000174588000000,0.011194826000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000047788000000,0.000323921000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000325502000000,0.000025862000000,0.000039477000000,0.000421501000000,0.000407279000000,0.000170637000000,0.011601344000000,0.000313650000000,0.000244910000000,0.011545641000000,0.000044613000000,0.000039873000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000037502000000,0.000188810000000,0.000031576000000,0.000326291000000,0.000025862000000,0.000039478000000,0.000423476000000,0.000373699000000,0.000174193000000,0.011069592000000,0.000319181000000,0.000185255000000,0.011248159000000,0.000043822000000,0.000039477000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000189995000000,0.000029996000000,0.000334983000000,0.000026455000000,0.000039477000000,0.000388711000000,0.000374094000000,0.000172613000000,0.010736555000000,0.000188810000000,0.000173008000000,0.011053790000000,0.000044612000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027047500000,0.000714242000000,0.000037502000000,0.000239773000000,0.000031576000000,0.000327082000000,0.000026059500000,0.000039082000000,0.000374095000000,0.000459823000000,0.000172218000000,0.010980703000000,0.000279674000000,0.000171033000000,0.011041938000000,0.000044217000000,0.000038687000000 +0.000037897000000,0.000177748000000,0.000036317000000,0.000027245000000,0.000323922000000,0.000037502000000,0.000187625000000,0.000030391000000,0.000327477000000,0.000025862000000,0.000039477000000,0.000381206000000,0.000375279000000,0.000174983000000,0.011032061000000,0.000189600000000,0.000173798000000,0.011374184000000,0.000045799000000,0.000038687000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000028034500000,0.000325107000000,0.000037501000000,0.000188810000000,0.000031181000000,0.000410045000000,0.000025862000000,0.000039477000000,0.000364217000000,0.000404909000000,0.000174193000000,0.010800160000000,0.000187625000000,0.000216859000000,0.011229197000000,0.000044612000000,0.000039082000000 +0.000037502000000,0.000143773000000,0.000036316000000,0.000027245000000,0.000325502000000,0.000038687000000,0.000187625000000,0.000030786000000,0.000328267000000,0.000026059500000,0.000039477000000,0.000412415000000,0.000370143000000,0.000171428000000,0.011408160000000,0.000188810000000,0.000175379000000,0.010749197000000,0.000079774000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036712000000,0.000027047000000,0.000361058000000,0.000037107000000,0.000263477000000,0.000030391000000,0.000327082000000,0.000026257000000,0.000039478000000,0.000369353000000,0.000374489000000,0.000173798000000,0.010918283000000,0.000261501000000,0.000175773000000,0.010862579000000,0.000044613000000,0.000074638000000 +0.000037897000000,0.000141008000000,0.000035922000000,0.000027442000000,0.000323527000000,0.000038291000000,0.000186045000000,0.000030785000000,0.000327872000000,0.000025862000000,0.000039478000000,0.000455081000000,0.000428217000000,0.000173008000000,0.011308209000000,0.000187230000000,0.000173008000000,0.011094481000000,0.000043428000000,0.000038292000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000037502000000,0.000190785000000,0.000030786000000,0.000383576000000,0.000025862000000,0.000039872000000,0.000375674000000,0.000373699000000,0.000172612000000,0.010921444000000,0.000238588000000,0.000174984000000,0.011524308000000,0.000044613000000,0.000039082000000 +0.000037502000000,0.000222786000000,0.000036711000000,0.000027442000000,0.000365403000000,0.000037897000000,0.000188020000000,0.000032366000000,0.000489452000000,0.000026060000000,0.000039082000000,0.000374489000000,0.000408464000000,0.000172613000000,0.011203123000000,0.000188021000000,0.000189996000000,0.010744851000000,0.000044218000000,0.000040663000000 +0.000037897000000,0.000140613000000,0.000035922000000,0.000027442000000,0.000324712000000,0.000037502000000,0.000223971000000,0.000033551000000,0.000466143000000,0.000026652000000,0.000039872000000,0.000416761000000,0.000379230000000,0.000173798000000,0.011560259000000,0.000187230000000,0.000172218000000,0.010831370000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000037897000000,0.000187230000000,0.000032761000000,0.000363823000000,0.000026059500000,0.000039477000000,0.000374095000000,0.000448366000000,0.000172218000000,0.011605690000000,0.000189206000000,0.000171032000000,0.010952654000000,0.000044217000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027244500000,0.000325502000000,0.000037897000000,0.000189206000000,0.000030390000000,0.000328662000000,0.000044035000000,0.000058045000000,0.000412810000000,0.000441254000000,0.000173403000000,0.011334283000000,0.000188020000000,0.000173403000000,0.012634430000000,0.000044217000000,0.000039082000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000323132000000,0.000037897000000,0.000187230000000,0.000030391000000,0.000326291000000,0.000025862000000,0.000056069000000,0.000379230000000,0.000379230000000,0.000172218000000,0.010928159000000,0.000228712000000,0.000172613000000,0.011133196000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000035922000000,0.000053319000000,0.000324317000000,0.000054489000000,0.000187230000000,0.000031181000000,0.000326687000000,0.000025862000000,0.000039872000000,0.000376070000000,0.000390291000000,0.000173008000000,0.011325197000000,0.000190390000000,0.000191181000000,0.011305443000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000178539000000,0.000036316000000,0.000027047000000,0.000321946000000,0.000037106000000,0.000187230000000,0.000030785000000,0.000327477000000,0.000025862000000,0.000039478000000,0.000445205000000,0.000368958000000,0.000174588000000,0.011485986000000,0.000190391000000,0.000173008000000,0.012407270000000,0.000044218000000,0.000038687000000 +0.000073452000000,0.000143379000000,0.000075033000000,0.000027244500000,0.000324711000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000326292000000,0.000026257000000,0.000039477000000,0.000381601000000,0.000411230000000,0.000172218000000,0.010782778000000,0.000189996000000,0.000171428000000,0.011643617000000,0.000044613000000,0.000038687000000 +0.000037107000000,0.000142588000000,0.000052514000000,0.000027047500000,0.000324711000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000333008000000,0.000026257000000,0.000039477000000,0.000439674000000,0.000373699000000,0.000173798000000,0.010846383000000,0.000261502000000,0.000173798000000,0.011472160000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027047500000,0.000361452000000,0.000035527000000,0.000188415000000,0.000030391000000,0.000327477000000,0.000025862000000,0.000039477000000,0.000367378000000,0.000438094000000,0.000171427000000,0.010897740000000,0.000188415000000,0.000208563000000,0.011036406000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000027244500000,0.000321551000000,0.000038292000000,0.000188020000000,0.000045403000000,0.000327477000000,0.000025862000000,0.000039082000000,0.000410045000000,0.000383576000000,0.000294687000000,0.012231862000000,0.000189995000000,0.000173008000000,0.011536554000000,0.000044613000000,0.000040268000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037106000000,0.000188020000000,0.000044613000000,0.000357107000000,0.000026652000000,0.000039478000000,0.000376070000000,0.000380810000000,0.000185650000000,0.011674036000000,0.000189996000000,0.000172218000000,0.011608455000000,0.000044613000000,0.000039477000000 +0.000037106000000,0.000205798000000,0.000036711000000,0.000027245000000,0.000360662000000,0.000037502000000,0.000187231000000,0.000030785000000,0.000359082000000,0.000025862000000,0.000039873000000,0.000368563000000,0.000400958000000,0.000173402000000,0.011046283000000,0.000279280000000,0.000174984000000,0.010779222000000,0.000045008000000,0.000039082000000 +0.000038292000000,0.000143379000000,0.000036711000000,0.000027244500000,0.000325106000000,0.000036317000000,0.000224761000000,0.000030786000000,0.000326686000000,0.000026257000000,0.000039477000000,0.000436119000000,0.000376464000000,0.000172218000000,0.011009543000000,0.000190786000000,0.000174588000000,0.010859419000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000143774000000,0.000036317000000,0.000027442000000,0.000322736000000,0.000037502000000,0.000187230000000,0.000034342000000,0.000364613000000,0.000027047500000,0.000039477000000,0.000375280000000,0.000442835000000,0.000172218000000,0.011078283000000,0.000188810000000,0.000207773000000,0.011043123000000,0.000044218000000,0.000039873000000 +0.000037897000000,0.000142983000000,0.000035527000000,0.000027837500000,0.000324711000000,0.000037502000000,0.000187626000000,0.000030391000000,0.000326687000000,0.000026059500000,0.000039477000000,0.000419526000000,0.000370539000000,0.000170242000000,0.011499814000000,0.000188810000000,0.000173798000000,0.011143074000000,0.000061205000000,0.000039082000000 +0.000038292000000,0.000141403000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000189996000000,0.000030390000000,0.000327477000000,0.000025862000000,0.000039477000000,0.000378440000000,0.000372909000000,0.000171033000000,0.011062481000000,0.000274933000000,0.000173403000000,0.011324406000000,0.000057650000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000038292000000,0.000233848000000,0.000030391000000,0.000328267000000,0.000026059500000,0.000039477000000,0.000383576000000,0.000450341000000,0.000170638000000,0.010778827000000,0.000188810000000,0.000171427000000,0.011048654000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000179723000000,0.000036317000000,0.000027640000000,0.000360662000000,0.000038687000000,0.000187626000000,0.000030786000000,0.000326687000000,0.000026454500000,0.000039873000000,0.000408465000000,0.000376465000000,0.000172613000000,0.011072357000000,0.000186835000000,0.000171428000000,0.010753938000000,0.000044218000000,0.000073057000000 +0.000038292000000,0.000159576000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000327476000000,0.000025862000000,0.000039872000000,0.000395032000000,0.000417551000000,0.000263477000000,0.011169938000000,0.000187625000000,0.000276909000000,0.011032851000000,0.000044218000000,0.000062391000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000046405000000,0.000324317000000,0.000037897000000,0.000188020000000,0.000031971000000,0.000327872000000,0.000034751000000,0.000039477000000,0.000434933000000,0.000365008000000,0.000173008000000,0.010826234000000,0.000272959000000,0.000212514000000,0.011328752000000,0.000044613000000,0.000077008000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000035541000000,0.000326292000000,0.000038292000000,0.000224366000000,0.000030390000000,0.000326291000000,0.000026849500000,0.000039477000000,0.000370144000000,0.000406489000000,0.000171822000000,0.011069591000000,0.000188020000000,0.000173403000000,0.011393147000000,0.000044613000000,0.000041057000000 +0.000037897000000,0.000145748000000,0.000036317000000,0.000027639500000,0.000324316000000,0.000038292000000,0.000187625000000,0.000030786000000,0.000326687000000,0.000026257000000,0.000039872000000,0.000404514000000,0.000373700000000,0.000171823000000,0.011405394000000,0.000187231000000,0.000172218000000,0.010703370000000,0.000043823000000,0.000040662000000 +0.000037897000000,0.000141798000000,0.000036712000000,0.000027244500000,0.000324316000000,0.000037897000000,0.000187231000000,0.000030786000000,0.000327476000000,0.000026849500000,0.000039477000000,0.000371724000000,0.000382785000000,0.000175773000000,0.011458727000000,0.000187625000000,0.000210539000000,0.011762529000000,0.000044613000000,0.000053699000000 +0.000037502000000,0.000176168000000,0.000036316000000,0.000027245000000,0.000373699000000,0.000037107000000,0.000190786000000,0.000031181000000,0.000325107000000,0.000026454500000,0.000058836000000,0.000374094000000,0.000436119000000,0.000222390000000,0.010814777000000,0.000256366000000,0.000173403000000,0.011175469000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000323527000000,0.000056465000000,0.000331428000000,0.000030786000000,0.000326687000000,0.000025862000000,0.000056069000000,0.000416761000000,0.000423082000000,0.000171428000000,0.010965296000000,0.000189206000000,0.000175378000000,0.011486777000000,0.000043428000000,0.000039872000000 +0.000038292000000,0.000142984000000,0.000035922000000,0.000027244500000,0.000325107000000,0.000037107000000,0.000201452000000,0.000030390000000,0.000417156000000,0.000025862000000,0.000039478000000,0.000380020000000,0.000415971000000,0.000171822000000,0.010854283000000,0.000189996000000,0.000175378000000,0.010792653000000,0.000044612000000,0.000039082000000 +0.000037502000000,0.000144169000000,0.000072267000000,0.000027245000000,0.000361057000000,0.000038292000000,0.000186440000000,0.000030391000000,0.000327477000000,0.000025862000000,0.000039477000000,0.000419921000000,0.000378045000000,0.000174193000000,0.013471960000000,0.000189601000000,0.000174588000000,0.011364308000000,0.000044217000000,0.000039477000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000263872000000,0.000031181000000,0.000327082000000,0.000025862500000,0.000039082000000,0.000374489000000,0.000372514000000,0.000218440000000,0.011137542000000,0.000188810000000,0.000226737000000,0.011281740000000,0.000043823000000,0.000037897000000 +0.000074637000000,0.000140613000000,0.000035921000000,0.000027442000000,0.000325106000000,0.000037502000000,0.000188811000000,0.000030391000000,0.000327082000000,0.000026059500000,0.000039477000000,0.000379625000000,0.000388711000000,0.000171822000000,0.011146233000000,0.000186045000000,0.000178144000000,0.010909197000000,0.000044218000000,0.000040267000000 +0.000038292000000,0.000143378000000,0.000037107000000,0.000027245000000,0.000322341000000,0.000038292000000,0.000188416000000,0.000031181000000,0.000325502000000,0.000026257000000,0.000039477000000,0.000454686000000,0.000372909000000,0.000174983000000,0.011546036000000,0.000186835000000,0.000171428000000,0.010906431000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000160761000000,0.000036711000000,0.000027047500000,0.000323526000000,0.000037502000000,0.000186835000000,0.000030390000000,0.000325896000000,0.000026454500000,0.000039873000000,0.000383970000000,0.000508810000000,0.000171427000000,0.011400258000000,0.000186440000000,0.000177749000000,0.011028505000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000142589000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037896000000,0.000221995000000,0.000030391000000,0.000326292000000,0.000026454500000,0.000039477000000,0.000457057000000,0.000555032000000,0.000172218000000,0.011852999000000,0.000232267000000,0.000171823000000,0.011204703000000,0.000044613000000,0.000037897000000 +0.000037897000000,0.000143378000000,0.000036712000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000187230000000,0.000105058000000,0.000323922000000,0.000025862000000,0.000039477000000,0.000374489000000,0.000459427000000,0.000171823000000,0.011343764000000,0.000186440000000,0.000224366000000,0.010954629000000,0.000063971000000,0.000039872000000 +0.000037896000000,0.000140612000000,0.000035922000000,0.000027047500000,0.000324316000000,0.000037502000000,0.000186440000000,0.000046193000000,0.000326292000000,0.000026652500000,0.000039082000000,0.000412020000000,0.000374094000000,0.000171428000000,0.011554727000000,0.000188416000000,0.000174588000000,0.010849147000000,0.000044217000000,0.000038687000000 +0.000037502000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000326291000000,0.000038292000000,0.000190391000000,0.000049353000000,0.000326291000000,0.000026257000000,0.000039477000000,0.000374489000000,0.000452711000000,0.000171428000000,0.010683221000000,0.000186835000000,0.000173403000000,0.010945147000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000062997500000,0.000499329000000,0.000037897000000,0.000222390000000,0.000032366000000,0.000327082000000,0.000043639500000,0.000039477000000,0.000374094000000,0.000364218000000,0.000173403000000,0.010440259000000,0.000207773000000,0.000171428000000,0.011258431000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000214489000000,0.000035922000000,0.000027245000000,0.000406094000000,0.000037107000000,0.000187230000000,0.000032761000000,0.000435723000000,0.000033170500000,0.000039477000000,0.000553057000000,0.000427822000000,0.000173403000000,0.010655172000000,0.000188810000000,0.000206589000000,0.011175468000000,0.000045008000000,0.000099131000000 +0.000039082000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000342094000000,0.000037107000000,0.000189996000000,0.000044613000000,0.000327477000000,0.000026257000000,0.000039477000000,0.000370143000000,0.000391872000000,0.000171427000000,0.010702975000000,0.000187230000000,0.000244514000000,0.010864555000000,0.000063971000000,0.000038687000000 +0.000037502000000,0.000141403000000,0.000036316000000,0.000027442000000,0.000323526000000,0.000036711000000,0.000187231000000,0.000031181000000,0.000326687000000,0.000026850000000,0.000039477000000,0.000417156000000,0.000372514000000,0.000208169000000,0.010527568000000,0.000250045000000,0.000171823000000,0.011047469000000,0.000060021000000,0.000040663000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000324711000000,0.000038292000000,0.000206983000000,0.000033156000000,0.000327872000000,0.000026849500000,0.000039872000000,0.000382786000000,0.000455082000000,0.000172613000000,0.010503074000000,0.000327477000000,0.000175378000000,0.011536159000000,0.000075427000000,0.000038687000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000325501000000,0.000037107000000,0.000187230000000,0.000030390000000,0.000325502000000,0.000026059500000,0.000039872000000,0.000450341000000,0.000373699000000,0.000170637000000,0.010472259000000,0.000190391000000,0.000173008000000,0.010812802000000,0.000044217000000,0.000040662000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000187625000000,0.000030391000000,0.000326292000000,0.000026454500000,0.000039082000000,0.000367378000000,0.000456662000000,0.000171428000000,0.010746432000000,0.000225156000000,0.000208564000000,0.010894185000000,0.000044218000000,0.000039477000000 +0.000037502000000,0.000222390000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000188810000000,0.000030391000000,0.000335773000000,0.000026059500000,0.000039478000000,0.000372514000000,0.000374489000000,0.000173798000000,0.010552456000000,0.000189600000000,0.000172218000000,0.011415666000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000145354000000,0.000037502000000,0.000027442500000,0.000329847000000,0.000036712000000,0.000188810000000,0.000030785000000,0.000326687000000,0.000025862000000,0.000039082000000,0.000408464000000,0.000463773000000,0.000173403000000,0.010883518000000,0.000186835000000,0.000173403000000,0.011052604000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000325106000000,0.000037502000000,0.000186440000000,0.000029996000000,0.000325897000000,0.000026454500000,0.000058835000000,0.000372909000000,0.000366983000000,0.000170637000000,0.010328457000000,0.000188415000000,0.000171428000000,0.011314925000000,0.000044218000000,0.000040268000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000095181000000,0.000187625000000,0.000030391000000,0.000327477000000,0.000026257000000,0.000039477000000,0.000454686000000,0.000371329000000,0.000171033000000,0.011793345000000,0.000226736000000,0.000172613000000,0.010874432000000,0.000044613000000,0.000039477000000 +0.000038292000000,0.000142193000000,0.000036712000000,0.000027047500000,0.000323921000000,0.000069107000000,0.000187625000000,0.000030785000000,0.000326292000000,0.000026849500000,0.000039477000000,0.000370933000000,0.000444020000000,0.000174193000000,0.011312949000000,0.000187230000000,0.000247279000000,0.010877592000000,0.000044613000000,0.000039082000000 +0.000038687000000,0.000142588000000,0.000038292000000,0.000027244500000,0.000325106000000,0.000069502000000,0.000190786000000,0.000030786000000,0.000326687000000,0.000025862000000,0.000039477000000,0.000449551000000,0.000371724000000,0.000173008000000,0.011568555000000,0.000189206000000,0.000172613000000,0.010990974000000,0.000044218000000,0.000039873000000 +0.000038292000000,0.000175378000000,0.000049749000000,0.000027244500000,0.000323131000000,0.000040267000000,0.000209353000000,0.000029996000000,0.000328267000000,0.000026455000000,0.000039477000000,0.000372514000000,0.000447576000000,0.000173798000000,0.011128061000000,0.000188416000000,0.000172218000000,0.011011913000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000141798000000,0.000036316000000,0.000027245000000,0.000323921000000,0.000050538000000,0.000187625000000,0.000030785000000,0.000324711000000,0.000026257000000,0.000039477000000,0.000372118000000,0.000365008000000,0.000171428000000,0.011336259000000,0.000274539000000,0.000172218000000,0.010879173000000,0.000044613000000,0.000037897000000 +0.000073847000000,0.000142588000000,0.000036316000000,0.000056282000000,0.000323131000000,0.000037107000000,0.000191181000000,0.000030391000000,0.000325501000000,0.000027442000000,0.000039477000000,0.000448365000000,0.000375674000000,0.000173008000000,0.010840851000000,0.000191181000000,0.000174193000000,0.011032456000000,0.000080168000000,0.000039872000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000028825000000,0.000323132000000,0.000038292000000,0.000189600000000,0.000030391000000,0.000530538000000,0.000044232500000,0.000039873000000,0.000380020000000,0.000437304000000,0.000172613000000,0.011164801000000,0.000188415000000,0.000209354000000,0.011157690000000,0.000045008000000,0.000040268000000 +0.000038292000000,0.000145749000000,0.000036317000000,0.000034553500000,0.000361848000000,0.000037896000000,0.000228711000000,0.000066736000000,0.000357897000000,0.000026059500000,0.000039477000000,0.000422687000000,0.000374489000000,0.000173008000000,0.010768555000000,0.000189205000000,0.000175773000000,0.011836801000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000140217000000,0.000036316000000,0.000027047000000,0.000322341000000,0.000037107000000,0.000190391000000,0.000031181000000,0.000329058000000,0.000026257000000,0.000039477000000,0.000368168000000,0.000447181000000,0.000240168000000,0.011082234000000,0.000223576000000,0.000171033000000,0.010800555000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000287576000000,0.000035921000000,0.000027047500000,0.000323526000000,0.000036712000000,0.000187230000000,0.000030391000000,0.000327477000000,0.000026257500000,0.000039082000000,0.000381205000000,0.000423082000000,0.000172612000000,0.011387221000000,0.000188810000000,0.000173798000000,0.011015863000000,0.000044218000000,0.000040267000000 +0.000038292000000,0.000247279000000,0.000036317000000,0.000027047000000,0.000325106000000,0.000037502000000,0.000188415000000,0.000030390000000,0.000326292000000,0.000026059500000,0.000039477000000,0.000765995000000,0.000444020000000,0.000173798000000,0.011549592000000,0.000188020000000,0.000171823000000,0.011017839000000,0.000045008000000,0.000058046000000 +0.000037897000000,0.000158786000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037106000000,0.000189206000000,0.000029996000000,0.000363428000000,0.000026059500000,0.000039478000000,0.000411625000000,0.000364613000000,0.000172218000000,0.010899320000000,0.000189205000000,0.000288761000000,0.011405789000000,0.000044218000000,0.000071477000000 +0.000037502000000,0.000142983000000,0.000035921000000,0.000027442500000,0.000323526000000,0.000037502000000,0.000189206000000,0.000030786000000,0.000327872000000,0.000026257000000,0.000039872000000,0.000380810000000,0.000447575000000,0.000173008000000,0.010869691000000,0.000225551000000,0.000342094000000,0.010815962000000,0.000044218000000,0.000041847000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027245000000,0.000362243000000,0.000037107000000,0.000188415000000,0.000030391000000,0.000326687000000,0.000026059500000,0.000039872000000,0.000400169000000,0.000369354000000,0.000173798000000,0.010754333000000,0.000188415000000,0.000190391000000,0.010829789000000,0.000044218000000,0.000051329000000 +0.000038292000000,0.000193156000000,0.000036317000000,0.000027244500000,0.000322341000000,0.000037897000000,0.000188415000000,0.000030391000000,0.000329452000000,0.000027047500000,0.000039872000000,0.000396217000000,0.000373304000000,0.000171427000000,0.010962925000000,0.000188811000000,0.000173403000000,0.011019814000000,0.000043823000000,0.000040267000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000526983000000,0.000037106000000,0.000188021000000,0.000030785000000,0.000326687000000,0.000026257000000,0.000039477000000,0.000386341000000,0.000449551000000,0.000173403000000,0.011192456000000,0.000190391000000,0.000190390000000,0.010770925000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000140218000000,0.000036316000000,0.000027047500000,0.000325106000000,0.000038292000000,0.000188811000000,0.000030391000000,0.000326687000000,0.000026059500000,0.000039477000000,0.000472464000000,0.000374885000000,0.000172218000000,0.011070382000000,0.000259526000000,0.000170638000000,0.011468209000000,0.000043823000000,0.000038292000000 +0.000038292000000,0.000140613000000,0.000035922000000,0.000027245000000,0.000325106000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000327872000000,0.000026454500000,0.000039478000000,0.000375279000000,0.000673945000000,0.000174983000000,0.011224456000000,0.000186835000000,0.000173798000000,0.011064851000000,0.000043823000000,0.000037896000000 +0.000037502000000,0.000141798000000,0.000037107000000,0.000027244500000,0.000323526000000,0.000090045000000,0.000189600000000,0.000031576000000,0.000328662000000,0.000026059500000,0.000039477000000,0.000410835000000,0.000549107000000,0.000224366000000,0.010907616000000,0.000188811000000,0.000174588000000,0.010788703000000,0.000044218000000,0.000039082000000 +0.000037501000000,0.000143378000000,0.000035921000000,0.000027245000000,0.000324712000000,0.000038687000000,0.000187230000000,0.000030786000000,0.000325502000000,0.000026059500000,0.000039477000000,0.000378835000000,0.000383180000000,0.000173798000000,0.011507320000000,0.000189206000000,0.000218835000000,0.010893394000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000194736000000,0.000036317000000,0.000037319000000,0.000322737000000,0.000038292000000,0.000186835000000,0.000030390000000,0.000363427000000,0.000026850000000,0.000058440000000,0.000410834000000,0.000373304000000,0.000174588000000,0.011053395000000,0.000225946000000,0.000186045000000,0.011291221000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000053121000000,0.000324712000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000325501000000,0.000026454500000,0.000039477000000,0.000376859000000,0.000408069000000,0.000172218000000,0.010742086000000,0.000189996000000,0.000174983000000,0.010865740000000,0.000043823000000,0.000039477000000 +0.000037897000000,0.000143773000000,0.000072267000000,0.000027047500000,0.000324712000000,0.000037897000000,0.000186440000000,0.000030786000000,0.000327082000000,0.000035541000000,0.000039477000000,0.000379230000000,0.000368564000000,0.000173007000000,0.011305444000000,0.000187625000000,0.000171032000000,0.010935666000000,0.000044218000000,0.000038687000000 +0.000038687000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000225156000000,0.000030391000000,0.000329453000000,0.000034158500000,0.000039477000000,0.000447576000000,0.000408464000000,0.000308909000000,0.011318481000000,0.000189600000000,0.000175378000000,0.011349691000000,0.000043823000000,0.000039082000000 +0.000038292000000,0.000143378000000,0.000036711000000,0.000027047000000,0.000362242000000,0.000037106000000,0.000186440000000,0.000030786000000,0.000326687000000,0.000026257000000,0.000039477000000,0.000374094000000,0.000380415000000,0.000171428000000,0.010783173000000,0.000231477000000,0.000260712000000,0.011431863000000,0.000080563000000,0.000039872000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000038292000000,0.000187231000000,0.000031971000000,0.000325896000000,0.000036133500000,0.000039873000000,0.000417946000000,0.000374489000000,0.000172218000000,0.010946728000000,0.000188415000000,0.000174194000000,0.011293197000000,0.000043823000000,0.000039872000000 +0.000038292000000,0.000177749000000,0.000036712000000,0.000027047500000,0.000324316000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000328662000000,0.000034356000000,0.000039477000000,0.000367773000000,0.000400168000000,0.000171427000000,0.010964506000000,0.000186835000000,0.000172218000000,0.011002431000000,0.000044613000000,0.000039873000000 +0.000076218000000,0.000142588000000,0.000036711000000,0.000027047000000,0.000325501000000,0.000037107000000,0.000224366000000,0.000031181000000,0.000326686000000,0.000032973000000,0.000039477000000,0.000368168000000,0.000374884000000,0.000208958000000,0.011369049000000,0.000189205000000,0.000174194000000,0.011033246000000,0.000044613000000,0.000039082000000 +0.000053699000000,0.000140613000000,0.000036317000000,0.000027442000000,0.000325106000000,0.000038292000000,0.000189206000000,0.000031576000000,0.000327082000000,0.000026849500000,0.000039082000000,0.000412020000000,0.000406884000000,0.000171428000000,0.010988999000000,0.000225946000000,0.000175378000000,0.011133987000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000189206000000,0.000031971000000,0.000392267000000,0.000026454500000,0.000039872000000,0.000374885000000,0.000364218000000,0.000172613000000,0.011154925000000,0.000188416000000,0.000212909000000,0.010674531000000,0.000044613000000,0.000039873000000 +0.000038292000000,0.000144958000000,0.000036316000000,0.000027442000000,0.000452711000000,0.000037897000000,0.000187625000000,0.000029996000000,0.000326292000000,0.000026454500000,0.000039872000000,0.000459427000000,0.000376464000000,0.000173008000000,0.010866530000000,0.000189601000000,0.000172613000000,0.011736850000000,0.000044218000000,0.000075823000000 +0.000037896000000,0.000142588000000,0.000036712000000,0.000027244500000,0.000322341000000,0.000037106000000,0.000226341000000,0.000082144000000,0.000327081000000,0.000026257500000,0.000039873000000,0.000366193000000,0.000412020000000,0.000171428000000,0.011291221000000,0.000187626000000,0.000172613000000,0.011599765000000,0.000044613000000,0.000040267000000 +0.000039082000000,0.000214094000000,0.000036317000000,0.000027442500000,0.000323131000000,0.000037502000000,0.000189205000000,0.000030391000000,0.000330242000000,0.000026059500000,0.000039082000000,0.000374490000000,0.000365007000000,0.000188811000000,0.010862185000000,0.000259131000000,0.000172613000000,0.011420012000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000035921000000,0.000027244500000,0.000324316000000,0.000036712000000,0.000188020000000,0.000030786000000,0.000327477000000,0.000027047000000,0.000039872000000,0.000368959000000,0.000406490000000,0.000172218000000,0.010930135000000,0.000187626000000,0.000172613000000,0.011072752000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000142589000000,0.000036316000000,0.000027244500000,0.000322737000000,0.000037897000000,0.000188416000000,0.000031180000000,0.000326686000000,0.000026059500000,0.000039082000000,0.000378440000000,0.000378045000000,0.000174983000000,0.010970036000000,0.000187230000000,0.000209748000000,0.010892209000000,0.000044218000000,0.000037896000000 +0.000037897000000,0.000142589000000,0.000036317000000,0.000027047500000,0.000325502000000,0.000038292000000,0.000392662000000,0.000031181000000,0.000329847000000,0.000026652500000,0.000039477000000,0.000420316000000,0.000373699000000,0.000171428000000,0.010897345000000,0.000189600000000,0.000174193000000,0.010985839000000,0.000044217000000,0.000040267000000 +0.000037897000000,0.000143774000000,0.000036712000000,0.000046800500000,0.000321946000000,0.000037107000000,0.000537255000000,0.000029995000000,0.000326687000000,0.000026454500000,0.000039477000000,0.000371724000000,0.000416761000000,0.000171427000000,0.011099616000000,0.000225946000000,0.000173798000000,0.011628604000000,0.000044613000000,0.000040267000000 +0.000038292000000,0.000141798000000,0.000036316000000,0.000036528500000,0.000324711000000,0.000056070000000,0.000436514000000,0.000031971000000,0.000326687000000,0.000026059500000,0.000039083000000,0.000442835000000,0.000372119000000,0.000185649000000,0.011201543000000,0.000187230000000,0.000174193000000,0.010936456000000,0.000044218000000,0.000039478000000 +0.000038291000000,0.000213305000000,0.000036317000000,0.000027047000000,0.000325501000000,0.000088464000000,0.000244119000000,0.000030390000000,0.000327082000000,0.000064775500000,0.000039872000000,0.000387132000000,0.000410045000000,0.000173403000000,0.010705740000000,0.000189206000000,0.000173403000000,0.011215369000000,0.000045008000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000038687000000,0.000199082000000,0.000030786000000,0.000327081000000,0.000026652500000,0.000039477000000,0.000370538000000,0.000372909000000,0.000172612000000,0.011487567000000,0.000189996000000,0.000244119000000,0.011134777000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027047500000,0.000323526000000,0.000038292000000,0.000200267000000,0.000029996000000,0.000328267000000,0.000026849500000,0.000039477000000,0.000404514000000,0.000434934000000,0.000173008000000,0.011266728000000,0.000257552000000,0.000173403000000,0.010844407000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000406884000000,0.000037502000000,0.000201453000000,0.000030390000000,0.000327872000000,0.000026454500000,0.000081749000000,0.000372514000000,0.000391477000000,0.000208958000000,0.010684012000000,0.000190391000000,0.000173403000000,0.011509296000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000143379000000,0.000035922000000,0.000027244500000,0.000383576000000,0.000036712000000,0.000200267000000,0.000030786000000,0.000326292000000,0.000026455000000,0.000039477000000,0.000443624000000,0.000376069000000,0.000186045000000,0.011022580000000,0.000188415000000,0.000173008000000,0.011215370000000,0.000044218000000,0.000040267000000 +0.000037896000000,0.000142588000000,0.000098737000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000233057000000,0.000030785000000,0.000361847000000,0.000025862000000,0.000039477000000,0.000380415000000,0.000413601000000,0.000173008000000,0.011191666000000,0.000187230000000,0.000193156000000,0.010826234000000,0.000080168000000,0.000039082000000 +0.000037897000000,0.000214094000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000037502000000,0.000198687000000,0.000030391000000,0.000372514000000,0.000026059500000,0.000038687000000,0.000381600000000,0.000366588000000,0.000173403000000,0.011047468000000,0.000236218000000,0.000176169000000,0.010936456000000,0.000044613000000,0.000039082000000 +0.000038687000000,0.000140218000000,0.000036711000000,0.000027244500000,0.000325502000000,0.000037107000000,0.000200662000000,0.000031181000000,0.000325897000000,0.000026454500000,0.000039082000000,0.000725303000000,0.000440859000000,0.000172217000000,0.011280555000000,0.000189995000000,0.000171823000000,0.011148209000000,0.000044613000000,0.000037897000000 +0.000038292000000,0.000142589000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000035922000000,0.000199873000000,0.000030390000000,0.000328267000000,0.000026454500000,0.000039478000000,0.000443625000000,0.000370144000000,0.000209749000000,0.011292011000000,0.000187625000000,0.000172613000000,0.012463764000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000143774000000,0.000036317000000,0.000027047500000,0.000388316000000,0.000038292000000,0.000186835000000,0.000030786000000,0.000326687000000,0.000025664500000,0.000039477000000,0.000379625000000,0.000369354000000,0.000219626000000,0.011176654000000,0.000191181000000,0.000172613000000,0.012006282000000,0.000044613000000,0.000038687000000 +0.000074242000000,0.000142983000000,0.000036711000000,0.000027244500000,0.000325501000000,0.000037106000000,0.000187230000000,0.000030786000000,0.000325896000000,0.000025862500000,0.000039477000000,0.000404119000000,0.000410044000000,0.000171822000000,0.011167172000000,0.000225156000000,0.000208959000000,0.010987419000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000027244500000,0.000326687000000,0.000037107000000,0.000187625000000,0.000030786000000,0.000328267000000,0.000025862000000,0.000039872000000,0.000383576000000,0.000378044000000,0.000175774000000,0.010855468000000,0.000188810000000,0.000171033000000,0.011659419000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000197897000000,0.000035922000000,0.000027640000000,0.000325502000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000327872000000,0.000026059500000,0.000039477000000,0.000373304000000,0.000418341000000,0.000171428000000,0.011024160000000,0.000189205000000,0.000174588000000,0.012531319000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000147329000000,0.000036317000000,0.000044232000000,0.000324317000000,0.000037502000000,0.000261107000000,0.000030390000000,0.000327082000000,0.000026257000000,0.000039082000000,0.000416366000000,0.000374094000000,0.000211723000000,0.011154530000000,0.000188415000000,0.000174193000000,0.011214974000000,0.000044218000000,0.000091625000000 +0.000038292000000,0.000142589000000,0.000035921000000,0.000028825000000,0.000324317000000,0.000037897000000,0.000187230000000,0.000030391000000,0.000594539000000,0.000026454500000,0.000039873000000,0.000376859000000,0.000375674000000,0.000173798000000,0.012210134000000,0.000224761000000,0.000173008000000,0.011275814000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142589000000,0.000036317000000,0.000035343500000,0.000360662000000,0.000037502000000,0.000187625000000,0.000068317000000,0.000374884000000,0.000036133500000,0.000039477000000,0.000423082000000,0.000407674000000,0.000172218000000,0.011099221000000,0.000190390000000,0.000216465000000,0.011352456000000,0.000045008000000,0.000039872000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000325501000000,0.000037897000000,0.000186835000000,0.000030785000000,0.000326687000000,0.000025862000000,0.000039477000000,0.000374490000000,0.000375675000000,0.000173403000000,0.011632159000000,0.000189996000000,0.000205008000000,0.011250134000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000374094000000,0.000037501000000,0.000255575000000,0.000029996000000,0.000326292000000,0.000026257000000,0.000039477000000,0.000376069000000,0.000410439000000,0.000171428000000,0.011508900000000,0.000187230000000,0.000178934000000,0.010704951000000,0.000043823000000,0.000037897000000 +0.000037502000000,0.000221601000000,0.000036711000000,0.000027047500000,0.000324711000000,0.000037897000000,0.000190786000000,0.000031181000000,0.000325896000000,0.000026454500000,0.000039477000000,0.000406885000000,0.000372909000000,0.000209749000000,0.011047073000000,0.000227131000000,0.000174193000000,0.011342974000000,0.000043823000000,0.000038292000000 +0.000037502000000,0.000141403000000,0.000036712000000,0.000027047000000,0.000323131000000,0.000056860000000,0.000186440000000,0.000030785000000,0.000326687000000,0.000026257500000,0.000039477000000,0.000380810000000,0.000364217000000,0.000171427000000,0.010969246000000,0.000239773000000,0.000175774000000,0.010937641000000,0.000044217000000,0.000038687000000 +0.000037502000000,0.000142984000000,0.000035922000000,0.000027245000000,0.000343675000000,0.000037897000000,0.000187625000000,0.000030391000000,0.000325107000000,0.000026257000000,0.000039872000000,0.000419131000000,0.000387921000000,0.000172613000000,0.011009542000000,0.000188415000000,0.000211329000000,0.011186135000000,0.000045403000000,0.000038687000000 +0.000037106000000,0.000144958000000,0.000036711000000,0.000027047500000,0.000340119000000,0.000037897000000,0.000219625000000,0.000030391000000,0.000327476000000,0.000026059500000,0.000039873000000,0.000379625000000,0.000378045000000,0.000172613000000,0.011120160000000,0.000187230000000,0.000175773000000,0.010967666000000,0.000043822000000,0.000039082000000 +0.000037897000000,0.000145353000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037502000000,0.000193551000000,0.000029995000000,0.000327477000000,0.000026454500000,0.000039872000000,0.000366983000000,0.000411625000000,0.000171032000000,0.010856258000000,0.000223576000000,0.000174194000000,0.011370233000000,0.000044218000000,0.000039083000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037501000000,0.000190391000000,0.000030786000000,0.000325106000000,0.000026059500000,0.000039477000000,0.000418341000000,0.000374884000000,0.000261107000000,0.011281345000000,0.000188811000000,0.000170638000000,0.011458727000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000213304000000,0.000074638000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000191181000000,0.000030391000000,0.000325501000000,0.000026455000000,0.000075428000000,0.000372119000000,0.000410834000000,0.000171428000000,0.010829000000000,0.000188021000000,0.000173008000000,0.010745246000000,0.000117304000000,0.000039082000000 +0.000037897000000,0.000142983000000,0.000072267000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000188810000000,0.000030390000000,0.000327477000000,0.000026454500000,0.000039477000000,0.000408860000000,0.000368169000000,0.000172613000000,0.011083814000000,0.000186835000000,0.000208169000000,0.010954234000000,0.000078983000000,0.000039872000000 +0.000038291000000,0.000142984000000,0.000039477000000,0.000027244500000,0.000364612000000,0.000037107000000,0.000188810000000,0.000030391000000,0.000327476000000,0.000025862000000,0.000039477000000,0.000383181000000,0.000373304000000,0.000171033000000,0.011301098000000,0.000223576000000,0.000174984000000,0.011236308000000,0.000064367000000,0.000038292000000 +0.000037897000000,0.000145354000000,0.000049354000000,0.000027244500000,0.000336563000000,0.000038687000000,0.000187230000000,0.000030786000000,0.000327082000000,0.000026652000000,0.000039872000000,0.000406884000000,0.000531724000000,0.000191970000000,0.011249345000000,0.000188416000000,0.000173008000000,0.011755813000000,0.000046983000000,0.000039083000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000037107000000,0.000188810000000,0.000031181000000,0.000362637000000,0.000026060000000,0.000039872000000,0.000378045000000,0.000373699000000,0.000173008000000,0.010719172000000,0.000189206000000,0.000174193000000,0.010961345000000,0.000058835000000,0.000040267000000 +0.000037897000000,0.000142193000000,0.000036712000000,0.000054109000000,0.000323921000000,0.000036712000000,0.000223576000000,0.000030786000000,0.000389501000000,0.000025862000000,0.000039478000000,0.000372514000000,0.000417156000000,0.000173008000000,0.010914728000000,0.000188020000000,0.000173008000000,0.010995715000000,0.000044613000000,0.000039082000000 +0.000037502000000,0.000198687000000,0.000036316000000,0.000035541000000,0.000323921000000,0.000037501000000,0.000186835000000,0.000031181000000,0.000326292000000,0.000026454500000,0.000039082000000,0.000444416000000,0.000380810000000,0.000174193000000,0.010968061000000,0.000222785000000,0.000242934000000,0.010717592000000,0.000045008000000,0.000037502000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027837500000,0.000322341000000,0.000038292000000,0.000187625000000,0.000030786000000,0.000327082000000,0.000026257000000,0.000039872000000,0.000376859000000,0.000410835000000,0.000171427000000,0.013351861000000,0.000189996000000,0.000173403000000,0.011134382000000,0.000044613000000,0.000039082000000 +0.000071478000000,0.000142193000000,0.000036712000000,0.000027047000000,0.000360267000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000326686000000,0.000061812500000,0.000039082000000,0.000429402000000,0.000374884000000,0.000212909000000,0.012792455000000,0.000189205000000,0.000172613000000,0.010851123000000,0.000044218000000,0.000040268000000 +0.000073452000000,0.000142984000000,0.000035921000000,0.000027244500000,0.000324316000000,0.000037501000000,0.000201057000000,0.000031181000000,0.000327872000000,0.000025862000000,0.000039082000000,0.000375279000000,0.000373304000000,0.000172613000000,0.011000851000000,0.000187230000000,0.000173008000000,0.010955419000000,0.000044218000000,0.000075823000000 +0.000037897000000,0.000142194000000,0.000035921000000,0.000027047500000,0.000323131000000,0.000037107000000,0.000187231000000,0.000031576000000,0.000335378000000,0.000025862500000,0.000039477000000,0.000367773000000,0.000447181000000,0.000172218000000,0.011644801000000,0.000227527000000,0.000191970000000,0.011174679000000,0.000044613000000,0.000040662000000 +0.000038292000000,0.000143379000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000190391000000,0.000030786000000,0.000327476000000,0.000025862000000,0.000039477000000,0.000451921000000,0.000391872000000,0.000172613000000,0.011461888000000,0.000245699000000,0.000172218000000,0.011526677000000,0.000045008000000,0.000052910000000 +0.000037502000000,0.000213699000000,0.000036712000000,0.000027047000000,0.000323526000000,0.000037502000000,0.000188416000000,0.000030786000000,0.000325897000000,0.000025862000000,0.000039477000000,0.000387921000000,0.000416761000000,0.000173798000000,0.010887073000000,0.000189600000000,0.000173798000000,0.011183765000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000037501000000,0.000572810000000,0.000030390000000,0.000327082000000,0.000026454500000,0.000039872000000,0.000411230000000,0.000366588000000,0.000209749000000,0.011098432000000,0.000187626000000,0.000172613000000,0.011642431000000,0.000044218000000,0.000039477000000 +0.000037502000000,0.000140612000000,0.000035922000000,0.000027047500000,0.000360267000000,0.000037502000000,0.000342489000000,0.000030786000000,0.000326292000000,0.000025862000000,0.000039477000000,0.000381600000000,0.000374489000000,0.000171823000000,0.011231567000000,0.000222786000000,0.000173798000000,0.011194827000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037502000000,0.000189601000000,0.000080564000000,0.000326687000000,0.000026257000000,0.000039082000000,0.000439674000000,0.000426242000000,0.000171427000000,0.011355617000000,0.000188811000000,0.000209748000000,0.011214580000000,0.000044218000000,0.000039083000000 +0.000038292000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000105058000000,0.000188810000000,0.000045798000000,0.000327871000000,0.000025862000000,0.000039477000000,0.000393057000000,0.000377255000000,0.000174193000000,0.010909592000000,0.000189601000000,0.000172218000000,0.011378135000000,0.000064366000000,0.000040267000000 +0.000037897000000,0.000144168000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000327082000000,0.000026455000000,0.000039082000000,0.000369749000000,0.000406884000000,0.000176168000000,0.011015073000000,0.000188811000000,0.000172613000000,0.010958579000000,0.000044613000000,0.000039872000000 +0.000038292000000,0.000214094000000,0.000036317000000,0.000027442500000,0.000323526000000,0.000037896000000,0.000236612000000,0.000030390000000,0.000327082000000,0.000026257000000,0.000039478000000,0.000466933000000,0.000375279000000,0.000208563000000,0.010931320000000,0.000225156000000,0.000175773000000,0.011097641000000,0.000044218000000,0.000039478000000 +0.000037502000000,0.000144564000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000189601000000,0.000030391000000,0.000328267000000,0.000026059500000,0.000039477000000,0.000375280000000,0.000396218000000,0.000172613000000,0.011265938000000,0.000188810000000,0.000173798000000,0.010836901000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000143774000000,0.000098736000000,0.000027244500000,0.000577156000000,0.000037502000000,0.000239773000000,0.000031181000000,0.000326687000000,0.000026454500000,0.000039477000000,0.000410835000000,0.000367773000000,0.000171823000000,0.010875222000000,0.000188415000000,0.000268218000000,0.011289641000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000062800500000,0.000483131000000,0.000037502000000,0.000188811000000,0.000030390000000,0.000325896000000,0.000026059500000,0.000075823000000,0.000380810000000,0.000377255000000,0.000172612000000,0.011011517000000,0.000188021000000,0.000342884000000,0.010790283000000,0.000044613000000,0.000039082000000 +0.000037502000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000329452000000,0.000037897000000,0.000223971000000,0.000030391000000,0.000326687000000,0.000026454500000,0.000039477000000,0.000411625000000,0.000413995000000,0.000175378000000,0.011480850000000,0.000231082000000,0.000187230000000,0.011162036000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027442000000,0.000324316000000,0.000037107000000,0.000189206000000,0.000030786000000,0.000326292000000,0.000026455000000,0.000039872000000,0.000376464000000,0.000373304000000,0.000214884000000,0.011071567000000,0.000187625000000,0.000175379000000,0.011293987000000,0.000044218000000,0.000039873000000 +0.000037896000000,0.000191971000000,0.000036316000000,0.000027837500000,0.000324712000000,0.000038292000000,0.000190391000000,0.000030391000000,0.000327081000000,0.000051936000000,0.000039082000000,0.000379625000000,0.000416366000000,0.000172613000000,0.010860604000000,0.000190785000000,0.000210144000000,0.011648752000000,0.000043822000000,0.000038687000000 +0.000038292000000,0.000140217000000,0.000036317000000,0.000027244500000,0.000413995000000,0.000037501000000,0.000189996000000,0.000030391000000,0.000327082000000,0.000026059500000,0.000039082000000,0.000432168000000,0.000395427000000,0.000171823000000,0.011005592000000,0.000189600000000,0.000173798000000,0.010685987000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027442500000,0.000323131000000,0.000037897000000,0.000237403000000,0.000030390000000,0.000325106000000,0.000026454500000,0.000039872000000,0.000373699000000,0.000373304000000,0.000171032000000,0.010992950000000,0.000226736000000,0.000172218000000,0.011043518000000,0.000044613000000,0.000037897000000 +0.000039082000000,0.000140218000000,0.000035922000000,0.000027245000000,0.000325501000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000328662000000,0.000026257000000,0.000039477000000,0.000417946000000,0.000449551000000,0.000173403000000,0.011085789000000,0.000186835000000,0.000173008000000,0.010862975000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000035921000000,0.000027244500000,0.000323921000000,0.000037896000000,0.000187230000000,0.000030391000000,0.000327872000000,0.000026455000000,0.000039477000000,0.000368169000000,0.000380811000000,0.000208958000000,0.011190876000000,0.000188415000000,0.000173798000000,0.011292407000000,0.000045008000000,0.000038687000000 +0.000057255000000,0.000143774000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037897000000,0.000189206000000,0.000030785000000,0.000326292000000,0.000025862000000,0.000039872000000,0.000366983000000,0.000411625000000,0.000172218000000,0.011005197000000,0.000189206000000,0.000196712000000,0.010864950000000,0.000043428000000,0.000059231000000 +0.000054489000000,0.000210933000000,0.000035922000000,0.000027245000000,0.000398193000000,0.000037897000000,0.000223576000000,0.000030786000000,0.000327082000000,0.000026059500000,0.000039872000000,0.000551081000000,0.000375674000000,0.000171428000000,0.010799765000000,0.000223576000000,0.000173403000000,0.011017444000000,0.000043823000000,0.000071872000000 +0.000037897000000,0.000144959000000,0.000036317000000,0.000027047000000,0.000340514000000,0.000037502000000,0.000188415000000,0.000030391000000,0.000326292000000,0.000026849500000,0.000039477000000,0.000376859000000,0.000368959000000,0.000171033000000,0.011126480000000,0.000189600000000,0.000173008000000,0.010923419000000,0.000044613000000,0.000058045000000 +0.000038292000000,0.000144168000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037107000000,0.000189600000000,0.000030390000000,0.000327477000000,0.000026652000000,0.000039872000000,0.000418736000000,0.000409255000000,0.000174193000000,0.011086579000000,0.000189995000000,0.000174193000000,0.011300308000000,0.000044613000000,0.000041058000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000324317000000,0.000037502000000,0.000188020000000,0.000032366000000,0.000326687000000,0.000025862000000,0.000039083000000,0.000366192000000,0.000365402000000,0.000357107000000,0.010814382000000,0.000189205000000,0.000191576000000,0.011291221000000,0.000044613000000,0.000069502000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000324712000000,0.000037107000000,0.000224761000000,0.000030785000000,0.000327082000000,0.000026849500000,0.000039477000000,0.000411229000000,0.000408069000000,0.000309699000000,0.010711666000000,0.000223181000000,0.000171823000000,0.010925395000000,0.000043822000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000325502000000,0.000057255000000,0.000189600000000,0.000030391000000,0.000326686000000,0.000026059500000,0.000039477000000,0.000369748000000,0.000373699000000,0.000187625000000,0.011322036000000,0.000188811000000,0.000171822000000,0.010987419000000,0.000088465000000,0.000037897000000 +0.000038292000000,0.000235822000000,0.000036316000000,0.000037121000000,0.000324316000000,0.000036712000000,0.000186835000000,0.000030391000000,0.000327477000000,0.000026454500000,0.000039082000000,0.000377650000000,0.000392267000000,0.000173007000000,0.011671270000000,0.000187625000000,0.000171033000000,0.011117394000000,0.000060810000000,0.000039872000000 +0.000037897000000,0.000394242000000,0.000036317000000,0.000043442500000,0.000324316000000,0.000037107000000,0.000188810000000,0.000072662000000,0.000327081000000,0.000025862000000,0.000039082000000,0.000466539000000,0.000393057000000,0.000172218000000,0.011355616000000,0.000190390000000,0.000171823000000,0.010938826000000,0.000043823000000,0.000038291000000 +0.000037897000000,0.000212514000000,0.000036317000000,0.000028034500000,0.000323526000000,0.000037106000000,0.000242539000000,0.000030391000000,0.000326292000000,0.000026454500000,0.000039872000000,0.000371329000000,0.000376465000000,0.000172217000000,0.011022974000000,0.000224761000000,0.000192761000000,0.011064456000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000160366000000,0.000072662000000,0.000027640000000,0.000327082000000,0.000037107000000,0.000197897000000,0.000030391000000,0.000328663000000,0.000035936000000,0.000039082000000,0.000409650000000,0.000406884000000,0.000172613000000,0.011152950000000,0.000188810000000,0.000173798000000,0.010782777000000,0.000043823000000,0.000039082000000 +0.000037107000000,0.000176959000000,0.000036316000000,0.000027244500000,0.000324316000000,0.000038292000000,0.000201848000000,0.000030785000000,0.000325502000000,0.000025862000000,0.000039082000000,0.000374094000000,0.000372119000000,0.000171823000000,0.011162826000000,0.000186440000000,0.000173008000000,0.010879568000000,0.000044218000000,0.000039082000000 +0.000037501000000,0.000142589000000,0.000035922000000,0.000027047000000,0.000322341000000,0.000039082000000,0.000200663000000,0.000030391000000,0.000325897000000,0.000026850000000,0.000092810000000,0.000370934000000,0.000413996000000,0.000172217000000,0.010885888000000,0.000188811000000,0.000174589000000,0.011188506000000,0.000044613000000,0.000040663000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000027047500000,0.000322736000000,0.000057255000000,0.000199477000000,0.000031181000000,0.000327871000000,0.000026257000000,0.000125601000000,0.000419921000000,0.000377649000000,0.000172218000000,0.011136357000000,0.000208169000000,0.000171823000000,0.010795815000000,0.000043823000000,0.000040662000000 +0.000038292000000,0.000143379000000,0.000036317000000,0.000027245000000,0.000322736000000,0.000054094000000,0.000197897000000,0.000030786000000,0.000327872000000,0.000026849500000,0.000039478000000,0.000371329000000,0.000426242000000,0.000172613000000,0.010858629000000,0.000191970000000,0.000210144000000,0.011756604000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000142984000000,0.000036316000000,0.000027047000000,0.000325106000000,0.000041057000000,0.000201452000000,0.000030391000000,0.000390291000000,0.000026455000000,0.000039477000000,0.000406884000000,0.000450736000000,0.000170637000000,0.011391962000000,0.000187230000000,0.000171428000000,0.010942777000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000142984000000,0.000036712000000,0.000027640000000,0.000325107000000,0.000037897000000,0.000198687000000,0.000030785000000,0.000327082000000,0.000025862000000,0.000039477000000,0.000380020000000,0.000371329000000,0.000171428000000,0.010801740000000,0.000189205000000,0.000176958000000,0.011112258000000,0.000044613000000,0.000038292000000 +0.000037501000000,0.000178933000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000037502000000,0.000197502000000,0.000030391000000,0.000325896000000,0.000026059500000,0.000039477000000,0.000452711000000,0.000412810000000,0.000175773000000,0.011143073000000,0.000190390000000,0.000173008000000,0.011160851000000,0.000043822000000,0.000039082000000 +0.000038292000000,0.000143774000000,0.000036316000000,0.000027442000000,0.000323526000000,0.000036712000000,0.000200267000000,0.000030786000000,0.000327477000000,0.000026059500000,0.000039477000000,0.000434933000000,0.000372118000000,0.000172218000000,0.011116999000000,0.000189206000000,0.000170638000000,0.010829000000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000141798000000,0.000035922000000,0.000027047500000,0.000407279000000,0.000037502000000,0.000200267000000,0.000030390000000,0.000411625000000,0.000025862000000,0.000039477000000,0.000374095000000,0.000391477000000,0.000172217000000,0.011690628000000,0.000221996000000,0.000248465000000,0.011078678000000,0.000044218000000,0.000136267000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000036316000000,0.000198292000000,0.000030391000000,0.000321946000000,0.000025862000000,0.000039083000000,0.000409254000000,0.000368959000000,0.000176958000000,0.011535369000000,0.000186045000000,0.000175774000000,0.011231962000000,0.000044613000000,0.000052909000000 +0.000038292000000,0.000140218000000,0.000036712000000,0.000027047000000,0.000324316000000,0.000037502000000,0.000234637000000,0.000030785000000,0.000308909000000,0.000026454500000,0.000039082000000,0.000367378000000,0.000378835000000,0.000173008000000,0.011019025000000,0.000244118000000,0.000173008000000,0.011204703000000,0.000044613000000,0.000039082000000 +0.000056464000000,0.000141403000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000038687000000,0.000198292000000,0.000031181000000,0.000344465000000,0.000026455000000,0.000039082000000,0.000455477000000,0.000760464000000,0.000176563000000,0.011239074000000,0.000189600000000,0.000173008000000,0.011138728000000,0.000044218000000,0.000040267000000 +0.000054489000000,0.000178538000000,0.000036712000000,0.000062800500000,0.000324712000000,0.000037107000000,0.000199082000000,0.000031181000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000373699000000,0.000982094000000,0.000171033000000,0.010927370000000,0.000186835000000,0.000173008000000,0.011409740000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000143379000000,0.000036317000000,0.000027047000000,0.000323132000000,0.000037501000000,0.000198687000000,0.000030786000000,0.000309304000000,0.000026454500000,0.000039477000000,0.000411230000000,0.000960760000000,0.000173008000000,0.011160851000000,0.000186440000000,0.000208958000000,0.011335073000000,0.000062786000000,0.000039477000000 +0.000038292000000,0.000141008000000,0.000036316000000,0.000027047000000,0.000325107000000,0.000038292000000,0.000234638000000,0.000030391000000,0.000350391000000,0.000026257000000,0.000039477000000,0.000374884000000,0.000449551000000,0.000172218000000,0.011079863000000,0.000222785000000,0.000191576000000,0.011037197000000,0.000061206000000,0.000039477000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027442500000,0.000325107000000,0.000105453000000,0.000198686000000,0.000030786000000,0.000306934000000,0.000026454500000,0.000039082000000,0.000374489000000,0.000701205000000,0.000174588000000,0.010874431000000,0.000188415000000,0.000202638000000,0.010992555000000,0.000044217000000,0.000039083000000 +0.000038292000000,0.000140218000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000036712000000,0.000201848000000,0.000030786000000,0.000309304000000,0.000044430000000,0.000039082000000,0.000538835000000,0.000491822000000,0.000173798000000,0.011061295000000,0.000190786000000,0.000174194000000,0.011909887000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000144958000000,0.000036317000000,0.000027047000000,0.000326292000000,0.000037501000000,0.000201057000000,0.000030391000000,0.000307724000000,0.000026652500000,0.000039477000000,0.000376070000000,0.000370144000000,0.000172217000000,0.011231172000000,0.000186835000000,0.000171823000000,0.011084999000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000173403000000,0.000036711000000,0.000027047500000,0.000323526000000,0.000037502000000,0.000200267000000,0.000030785000000,0.000308514000000,0.000025664500000,0.000039477000000,0.000440860000000,0.000445205000000,0.000171823000000,0.011200357000000,0.000223180000000,0.000222391000000,0.011998776000000,0.000043823000000,0.000040663000000 +0.000037897000000,0.000158786000000,0.000035922000000,0.000027047500000,0.000323132000000,0.000038687000000,0.000201848000000,0.000030391000000,0.000307724000000,0.000026849500000,0.000039477000000,0.000381205000000,0.000368564000000,0.000172613000000,0.010955419000000,0.000186440000000,0.000172612000000,0.010918284000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000144168000000,0.000091231000000,0.000027244500000,0.000323526000000,0.000037501000000,0.000199872000000,0.000050144000000,0.000308513000000,0.000027047000000,0.000058045000000,0.000440860000000,0.000402538000000,0.000171823000000,0.012841838000000,0.000186835000000,0.000172218000000,0.011122135000000,0.000043823000000,0.000039082000000 +0.000038292000000,0.000142983000000,0.000038687000000,0.000027245000000,0.000325502000000,0.000038292000000,0.000199872000000,0.000032366000000,0.000307724000000,0.000025862000000,0.000123230000000,0.000379230000000,0.000395427000000,0.000207773000000,0.011615962000000,0.000188020000000,0.000173403000000,0.011273838000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000141008000000,0.000051329000000,0.000027245000000,0.000321946000000,0.000037502000000,0.000198292000000,0.000044613000000,0.000306934000000,0.000025862000000,0.000074637000000,0.000366983000000,0.000402933000000,0.000171033000000,0.011088160000000,0.000225156000000,0.000171032000000,0.011410530000000,0.000044218000000,0.000039872000000 +0.000037501000000,0.000144563000000,0.000036711000000,0.000027244500000,0.000325896000000,0.000037107000000,0.000201847000000,0.000030390000000,0.000308909000000,0.000026059500000,0.000042638000000,0.000408464000000,0.000643921000000,0.000171033000000,0.011246974000000,0.000186835000000,0.000193551000000,0.011429493000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000323131000000,0.000037897000000,0.000199082000000,0.000030786000000,0.000307329000000,0.000026454500000,0.000041453000000,0.000372118000000,0.000395033000000,0.000172613000000,0.011474925000000,0.000192761000000,0.000173007000000,0.010748012000000,0.000045403000000,0.000038292000000 +0.000038292000000,0.000178144000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000037107000000,0.000201848000000,0.000031181000000,0.000308910000000,0.000026257000000,0.000052514000000,0.000409254000000,0.000399773000000,0.000173798000000,0.011450432000000,0.000188810000000,0.000172613000000,0.011387616000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000140613000000,0.000036316000000,0.000027047000000,0.000330242000000,0.000037502000000,0.000198687000000,0.000030786000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000382391000000,0.000397797000000,0.000174588000000,0.011377344000000,0.000189600000000,0.000173403000000,0.011359962000000,0.000043823000000,0.000038687000000 +0.000039082000000,0.000143378000000,0.000037107000000,0.000036923500000,0.000323131000000,0.000037897000000,0.000199082000000,0.000030391000000,0.000308119000000,0.000026850000000,0.000039082000000,0.000406884000000,0.000392662000000,0.000173008000000,0.011013098000000,0.000188811000000,0.000193946000000,0.011105937000000,0.000045008000000,0.000073848000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000075245000000,0.000323921000000,0.000037107000000,0.000201847000000,0.000030391000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000378045000000,0.000397008000000,0.000175378000000,0.011015073000000,0.000186835000000,0.000199082000000,0.011403024000000,0.000045008000000,0.000040662000000 +0.000039082000000,0.000142983000000,0.000036317000000,0.000080973500000,0.000483132000000,0.000037502000000,0.000202638000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039478000000,0.000372514000000,0.000491823000000,0.000173403000000,0.011216950000000,0.000187230000000,0.000174193000000,0.011216949000000,0.000044613000000,0.000054490000000 +0.000037502000000,0.000143378000000,0.000036316000000,0.000088874500000,0.000355527000000,0.000037107000000,0.000197897000000,0.000030391000000,0.000308118000000,0.000025862000000,0.000039477000000,0.000408465000000,0.000449551000000,0.000174193000000,0.011183765000000,0.000190391000000,0.000173403000000,0.011911863000000,0.000044613000000,0.000038687000000 +0.000038687000000,0.000175773000000,0.000036317000000,0.000051145500000,0.000326292000000,0.000037106000000,0.000198292000000,0.000030390000000,0.000309699000000,0.000027442500000,0.000039477000000,0.000377255000000,0.000388712000000,0.000179724000000,0.011433838000000,0.000189996000000,0.000173799000000,0.010901296000000,0.000044217000000,0.000038292000000 +0.000038292000000,0.000142984000000,0.000036317000000,0.000028825000000,0.000323527000000,0.000036712000000,0.000201057000000,0.000030391000000,0.000307724000000,0.000044232000000,0.000039477000000,0.000415181000000,0.000397403000000,0.000173008000000,0.010973592000000,0.000186440000000,0.000209749000000,0.010861790000000,0.000063576000000,0.000039873000000 +0.000058836000000,0.000142984000000,0.000036316000000,0.000042849500000,0.000325107000000,0.000037107000000,0.000201453000000,0.000031971000000,0.000308909000000,0.000026059500000,0.000039872000000,0.000375674000000,0.000396612000000,0.000172217000000,0.011442925000000,0.000188020000000,0.000174193000000,0.013087170000000,0.000095575000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000036711000000,0.000027047000000,0.000323922000000,0.000037107000000,0.000199082000000,0.000030786000000,0.000308119000000,0.000026257500000,0.000039477000000,0.000368169000000,0.000436909000000,0.000173403000000,0.010909592000000,0.000188810000000,0.000173008000000,0.011574085000000,0.000045799000000,0.000040268000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047500000,0.000322736000000,0.000090045000000,0.000201452000000,0.000031971000000,0.000308119000000,0.000025862000000,0.000039478000000,0.000417551000000,0.000397403000000,0.000171032000000,0.011177444000000,0.000205403000000,0.000173798000000,0.011127666000000,0.000044217000000,0.000039477000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000050356000000,0.000324711000000,0.000037502000000,0.000197502000000,0.000033946000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000387526000000,0.000396218000000,0.000173403000000,0.011271469000000,0.000189206000000,0.000175378000000,0.011127271000000,0.000044218000000,0.000040267000000 +0.000037897000000,0.000176563000000,0.000036316000000,0.000027244500000,0.000394637000000,0.000037107000000,0.000199477000000,0.000030390000000,0.000308909000000,0.000026257000000,0.000039477000000,0.000410835000000,0.000397798000000,0.000171823000000,0.011677592000000,0.000189206000000,0.000210143000000,0.010839666000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000145354000000,0.000036317000000,0.000027245000000,0.000360662000000,0.000037107000000,0.000187230000000,0.000031181000000,0.000308909000000,0.000026059500000,0.000058045000000,0.000381601000000,0.000401748000000,0.000173008000000,0.010922629000000,0.000188416000000,0.000174588000000,0.011563024000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000142983000000,0.000054885000000,0.000027245000000,0.000325501000000,0.000037896000000,0.000188415000000,0.000030786000000,0.000345650000000,0.000027245000000,0.000056070000000,0.000414785000000,0.000395033000000,0.000171428000000,0.011422382000000,0.000223181000000,0.000172218000000,0.012519862000000,0.000044613000000,0.000039872000000 +0.000037502000000,0.000142588000000,0.000052909000000,0.000027047000000,0.000324316000000,0.000037502000000,0.000187231000000,0.000030391000000,0.000306144000000,0.000026849500000,0.000039477000000,0.000439674000000,0.000393847000000,0.000172217000000,0.011869986000000,0.000188415000000,0.000171033000000,0.011340999000000,0.000044218000000,0.000038687000000 +0.000038687000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037107000000,0.000222786000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000371329000000,0.000398588000000,0.000173008000000,0.012360257000000,0.000186440000000,0.000172217000000,0.011388012000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000027245000000,0.000324316000000,0.000037107000000,0.000190785000000,0.000030390000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000417551000000,0.000404119000000,0.000171822000000,0.010999271000000,0.000191181000000,0.000210143000000,0.011527468000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000182489000000,0.000036317000000,0.000027244500000,0.000322736000000,0.000036711000000,0.000189205000000,0.000048563000000,0.000308909000000,0.000026454500000,0.000039478000000,0.000376070000000,0.000427428000000,0.000173008000000,0.011274629000000,0.000266243000000,0.000173798000000,0.010831765000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000144564000000,0.000036712000000,0.000027244500000,0.000323527000000,0.000037502000000,0.000188810000000,0.000046193000000,0.000307723000000,0.000026257500000,0.000039082000000,0.000410440000000,0.000383575000000,0.000173403000000,0.011140703000000,0.000188416000000,0.000173403000000,0.011076703000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000141798000000,0.000036316000000,0.000027245000000,0.000322736000000,0.000036712000000,0.000207378000000,0.000030391000000,0.000376069000000,0.000026454500000,0.000039477000000,0.000380415000000,0.000378835000000,0.000172218000000,0.011411715000000,0.000189996000000,0.000173403000000,0.011027715000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000140218000000,0.000035921000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000189205000000,0.000030786000000,0.000305749000000,0.000026849500000,0.000039477000000,0.000374489000000,0.000447970000000,0.000174194000000,0.010968852000000,0.000188416000000,0.000175379000000,0.011302678000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000071477000000,0.000027639500000,0.000322736000000,0.000037502000000,0.000189205000000,0.000031181000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000413206000000,0.000375675000000,0.000173403000000,0.010936852000000,0.000205798000000,0.000219230000000,0.010731419000000,0.000044613000000,0.000059230000000 +0.000038292000000,0.000141798000000,0.000038687000000,0.000027047500000,0.000323922000000,0.000037501000000,0.000188415000000,0.000030391000000,0.000308909000000,0.000035739000000,0.000039872000000,0.000380020000000,0.000410045000000,0.000172613000000,0.010926974000000,0.000189205000000,0.000174193000000,0.010950283000000,0.000043823000000,0.000068712000000 +0.000037502000000,0.000142588000000,0.000048958000000,0.000027244500000,0.000360267000000,0.000037897000000,0.000280859000000,0.000032366000000,0.000308909000000,0.000026454500000,0.000039478000000,0.000411230000000,0.000367378000000,0.000172218000000,0.011039962000000,0.000189996000000,0.000174193000000,0.011045493000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000178934000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000229896000000,0.000030391000000,0.000307723000000,0.000025664500000,0.000039477000000,0.000374094000000,0.000369749000000,0.000173402000000,0.010997690000000,0.000189205000000,0.000172613000000,0.011338233000000,0.000044612000000,0.000039477000000 +0.000038292000000,0.000143378000000,0.000035922000000,0.000027245000000,0.000323921000000,0.000037502000000,0.000187625000000,0.000031180000000,0.000307724000000,0.000026455000000,0.000039477000000,0.000380415000000,0.000408069000000,0.000176168000000,0.011365888000000,0.000337354000000,0.000173007000000,0.010726679000000,0.000061601000000,0.000039477000000 +0.000038292000000,0.000142588000000,0.000037501000000,0.000045220500000,0.000323921000000,0.000036711000000,0.000186835000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000414390000000,0.000374489000000,0.000219625000000,0.011001247000000,0.000203032000000,0.000246094000000,0.010727073000000,0.000045008000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000035922000000,0.000027245000000,0.000324316000000,0.000037107000000,0.000233848000000,0.000031181000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000367773000000,0.000410440000000,0.000172218000000,0.011169543000000,0.000186440000000,0.000173008000000,0.011263962000000,0.000044613000000,0.000039873000000 +0.000037897000000,0.000187230000000,0.000036317000000,0.000027047000000,0.000325106000000,0.000037107000000,0.000188021000000,0.000031576000000,0.000309699000000,0.000026849500000,0.000039082000000,0.000411229000000,0.000373304000000,0.000171428000000,0.011444110000000,0.000225156000000,0.000175774000000,0.011785838000000,0.000044613000000,0.000039477000000 +0.000056860000000,0.000141008000000,0.000036316000000,0.000027837500000,0.000360662000000,0.000094786000000,0.000187625000000,0.000030391000000,0.000302193000000,0.000026455000000,0.000039478000000,0.000375674000000,0.000416761000000,0.000171822000000,0.011196407000000,0.000186835000000,0.000172218000000,0.011104752000000,0.000043823000000,0.000038292000000 +0.000038292000000,0.000173403000000,0.000035921000000,0.000027047500000,0.000322737000000,0.000055280000000,0.000187230000000,0.000030786000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000387527000000,0.000371329000000,0.000171428000000,0.013123516000000,0.000190785000000,0.000177354000000,0.011080258000000,0.000045008000000,0.000040267000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000107428000000,0.000226342000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000039872000000,0.000366193000000,0.000376069000000,0.000175379000000,0.011473739000000,0.000189600000000,0.000172613000000,0.010915123000000,0.000045008000000,0.000039477000000 +0.000039477000000,0.000143773000000,0.000036712000000,0.000027047000000,0.000324711000000,0.000068317000000,0.000187625000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039872000000,0.000372513000000,0.000444020000000,0.000174193000000,0.011532999000000,0.000261501000000,0.000173008000000,0.011054579000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000144564000000,0.000091230000000,0.000027245000000,0.000323921000000,0.000053699000000,0.000188810000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000058045000000,0.000441254000000,0.000376069000000,0.000173798000000,0.011074728000000,0.000190786000000,0.000282835000000,0.011165591000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000146144000000,0.000092416000000,0.000027244500000,0.000323526000000,0.000053304000000,0.000187230000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000089650000000,0.000378439000000,0.000407675000000,0.000171822000000,0.010898925000000,0.000188811000000,0.000173007000000,0.010637000000000,0.000044218000000,0.000040268000000 +0.000038292000000,0.000143773000000,0.000123625000000,0.000027244500000,0.000373304000000,0.000051329000000,0.000226341000000,0.000030390000000,0.000313650000000,0.000026849500000,0.000053305000000,0.000419131000000,0.000470884000000,0.000177354000000,0.012547122000000,0.000225946000000,0.000214489000000,0.011091715000000,0.000044218000000,0.000039872000000 +0.000038292000000,0.000195132000000,0.000105058000000,0.000027245000000,0.000322737000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000308514000000,0.000026652000000,0.000039872000000,0.000371724000000,0.000786143000000,0.000172613000000,0.011548407000000,0.000270588000000,0.000173798000000,0.011187716000000,0.000045008000000,0.000039082000000 +0.000038292000000,0.000142589000000,0.000090440000000,0.000027442500000,0.000325502000000,0.000038292000000,0.000191180000000,0.000030786000000,0.000308119000000,0.000026257000000,0.000039082000000,0.000373304000000,0.000380415000000,0.000171427000000,0.011303073000000,0.000187230000000,0.000173798000000,0.011588308000000,0.000044612000000,0.000038687000000 +0.000037897000000,0.000145354000000,0.000055279000000,0.000027047000000,0.000326292000000,0.000038687000000,0.000189600000000,0.000030390000000,0.000309304000000,0.000026257500000,0.000039477000000,0.000536464000000,0.000468119000000,0.000171822000000,0.010951863000000,0.000186835000000,0.000173008000000,0.010826629000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000141008000000,0.000038687000000,0.000027047500000,0.000325107000000,0.000037897000000,0.000223181000000,0.000030391000000,0.000306539000000,0.000035343500000,0.000039082000000,0.000369749000000,0.000372119000000,0.000171823000000,0.011138728000000,0.000189995000000,0.000173007000000,0.011231567000000,0.000044218000000,0.000039083000000 +0.000037502000000,0.000142983000000,0.000038292000000,0.000027245000000,0.000323922000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000308118000000,0.000026849500000,0.000039477000000,0.000403724000000,0.000410835000000,0.000173008000000,0.011708012000000,0.000257946000000,0.000209749000000,0.011085789000000,0.000043823000000,0.000039477000000 +0.000037897000000,0.000142588000000,0.000049353000000,0.000027244500000,0.000325897000000,0.000036316000000,0.000189995000000,0.000068711000000,0.000346045000000,0.000026257000000,0.000039083000000,0.000372514000000,0.000372119000000,0.000173008000000,0.011172308000000,0.000187626000000,0.000171033000000,0.011239073000000,0.000044218000000,0.000058045000000 +0.000037897000000,0.000192366000000,0.000036317000000,0.000045022500000,0.000359081000000,0.000037502000000,0.000188415000000,0.000047773000000,0.000308513000000,0.000026454500000,0.000039082000000,0.000408069000000,0.000365008000000,0.000173008000000,0.010787913000000,0.000190786000000,0.000171428000000,0.010779222000000,0.000044613000000,0.000089255000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000027047000000,0.000362242000000,0.000037502000000,0.000226341000000,0.000043823000000,0.000308909000000,0.000026059500000,0.000039082000000,0.000378439000000,0.000606785000000,0.000174588000000,0.011317690000000,0.000188021000000,0.000178143000000,0.011003617000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000144564000000,0.000072663000000,0.000027245000000,0.000325502000000,0.000103082000000,0.000189205000000,0.000031181000000,0.000417945000000,0.000026059500000,0.000039082000000,0.000380415000000,0.000374489000000,0.000172613000000,0.011433839000000,0.000222786000000,0.000171032000000,0.011265937000000,0.000122835000000,0.000038688000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000324317000000,0.000054489000000,0.000190785000000,0.000030390000000,0.000323922000000,0.000026059500000,0.000039477000000,0.000527773000000,0.000416760000000,0.000172218000000,0.011234727000000,0.000186835000000,0.000210539000000,0.011445296000000,0.000118885000000,0.000039082000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000368168000000,0.000037502000000,0.000188020000000,0.000031181000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000373699000000,0.000374489000000,0.000172613000000,0.010971617000000,0.000189600000000,0.000177354000000,0.010937641000000,0.000160366000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000537650000000,0.000037107000000,0.000226736000000,0.000030785000000,0.000307329000000,0.000025862000000,0.000039082000000,0.000429403000000,0.000407674000000,0.000172218000000,0.011093296000000,0.000188415000000,0.000172218000000,0.011278579000000,0.000131921000000,0.000038687000000 +0.000037502000000,0.000220020000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000036317000000,0.000189205000000,0.000030391000000,0.000307329000000,0.000026454500000,0.000039872000000,0.000366588000000,0.000366588000000,0.000173008000000,0.011377739000000,0.000259526000000,0.000173008000000,0.011254085000000,0.000081354000000,0.000038292000000 +0.000037107000000,0.000142588000000,0.000036711000000,0.000027244500000,0.000325897000000,0.000037502000000,0.000190390000000,0.000030391000000,0.000307724000000,0.000026257500000,0.000039477000000,0.000432168000000,0.000400563000000,0.000174194000000,0.011266727000000,0.000187230000000,0.000173403000000,0.011530628000000,0.000095971000000,0.000038687000000 +0.000037897000000,0.000144958000000,0.000036317000000,0.000027047000000,0.000325502000000,0.000036711000000,0.000189600000000,0.000031180000000,0.000450736000000,0.000025862000000,0.000039477000000,0.000373699000000,0.000374094000000,0.000217650000000,0.011095271000000,0.000188810000000,0.000299427000000,0.010926185000000,0.000060020000000,0.000039083000000 +0.000057255000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037502000000,0.000225551000000,0.000030786000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000374885000000,0.000369748000000,0.000173008000000,0.010856259000000,0.000188020000000,0.000185650000000,0.011260406000000,0.000101897000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000037502000000,0.000027640000000,0.000362638000000,0.000037502000000,0.000186440000000,0.000030390000000,0.000307329000000,0.000043244500000,0.000039872000000,0.000411625000000,0.000412020000000,0.000172613000000,0.011610036000000,0.000261107000000,0.000222390000000,0.011288061000000,0.000427033000000,0.000040662000000 +0.000037897000000,0.000144959000000,0.000036317000000,0.000027244500000,0.000324712000000,0.000037897000000,0.000187625000000,0.000032366000000,0.000309304000000,0.000028232500000,0.000058440000000,0.000374094000000,0.000371724000000,0.000177749000000,0.010921444000000,0.000190390000000,0.000174983000000,0.011143469000000,0.000095181000000,0.000038292000000 +0.000037897000000,0.000211328000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000038687000000,0.000188415000000,0.000030785000000,0.000307328000000,0.000045813000000,0.000055674000000,0.000408860000000,0.000408069000000,0.000172217000000,0.010998481000000,0.000188020000000,0.000189600000000,0.010864555000000,0.000075428000000,0.000038687000000 +0.000037502000000,0.000142589000000,0.000036317000000,0.000027640000000,0.000321946000000,0.000037502000000,0.000230292000000,0.000030391000000,0.000307329000000,0.000027639500000,0.000039477000000,0.000376069000000,0.000369749000000,0.000171823000000,0.010958580000000,0.000189600000000,0.000173403000000,0.010917098000000,0.000114539000000,0.000038292000000 +0.000037502000000,0.000144959000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037106000000,0.000188810000000,0.000031181000000,0.000344860000000,0.000028232500000,0.000039478000000,0.000369748000000,0.000374094000000,0.000287971000000,0.010999666000000,0.000450341000000,0.000172613000000,0.010712457000000,0.000121650000000,0.000037897000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000027442500000,0.000324711000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000307329000000,0.000027640000000,0.000039082000000,0.000451131000000,0.000410835000000,0.000188415000000,0.011297148000000,0.000210934000000,0.000172218000000,0.010804901000000,0.000065156000000,0.000038687000000 +0.000037897000000,0.000141799000000,0.000036317000000,0.000045220500000,0.000340909000000,0.000037502000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000027442000000,0.000039477000000,0.000382390000000,0.000369354000000,0.000173008000000,0.011155715000000,0.000186440000000,0.000174588000000,0.011178233000000,0.000095576000000,0.000038687000000 +0.000037897000000,0.000144564000000,0.000035921000000,0.000027245000000,0.000324317000000,0.000036712000000,0.000225551000000,0.000031576000000,0.000309304000000,0.000028035000000,0.000039082000000,0.000415576000000,0.000414390000000,0.000172613000000,0.010884308000000,0.000190785000000,0.000206193000000,0.010901296000000,0.000095181000000,0.000039082000000 +0.000037896000000,0.000178143000000,0.000036316000000,0.000027244500000,0.000325107000000,0.000037107000000,0.000254785000000,0.000029996000000,0.000360267000000,0.000027640000000,0.000039477000000,0.000367773000000,0.000376070000000,0.000172218000000,0.011141098000000,0.000187625000000,0.000173403000000,0.011033641000000,0.000108218000000,0.000040268000000 +0.000037502000000,0.000144959000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000037897000000,0.000187230000000,0.000030786000000,0.000307724000000,0.000027837500000,0.000039477000000,0.000410440000000,0.000375674000000,0.000171428000000,0.011248160000000,0.000186836000000,0.000173008000000,0.011019814000000,0.000082934000000,0.000056465000000 +0.000037502000000,0.000140612000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000057255000000,0.000188415000000,0.000030390000000,0.000345649000000,0.000028232000000,0.000039477000000,0.000372514000000,0.000402539000000,0.000173798000000,0.011328357000000,0.000190391000000,0.000172218000000,0.011388406000000,0.000046983000000,0.000054884000000 +0.000037897000000,0.000144169000000,0.000036316000000,0.000027244500000,0.000358292000000,0.000037897000000,0.000259131000000,0.000049749000000,0.000308119000000,0.000028034500000,0.000039083000000,0.000371723000000,0.000364218000000,0.000173008000000,0.010977147000000,0.000187230000000,0.000209354000000,0.011207468000000,0.000046589000000,0.000039477000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000339724000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000307724000000,0.000027837500000,0.000039082000000,0.000418341000000,0.000425057000000,0.000171427000000,0.011685887000000,0.000186835000000,0.000174984000000,0.010786728000000,0.000046588000000,0.000040267000000 +0.000071478000000,0.000144169000000,0.000053304000000,0.000027640000000,0.000323526000000,0.000038292000000,0.000189205000000,0.000047774000000,0.000308909000000,0.000035738500000,0.000039477000000,0.000370933000000,0.000477995000000,0.000174193000000,0.011613592000000,0.000186835000000,0.000174193000000,0.011266332000000,0.000047773000000,0.000038687000000 +0.000040267000000,0.000179329000000,0.000037107000000,0.000027244500000,0.000325501000000,0.000037107000000,0.000186440000000,0.000046589000000,0.000309304000000,0.000033961000000,0.000039477000000,0.000526193000000,0.000453106000000,0.000173008000000,0.012471664000000,0.000189600000000,0.000171032000000,0.011807171000000,0.000047378000000,0.000039477000000 +0.000050934000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000234638000000,0.000030786000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000612316000000,0.000395032000000,0.000171033000000,0.011371419000000,0.000225551000000,0.000171033000000,0.010984654000000,0.000082539000000,0.000039477000000 +0.000038292000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000322341000000,0.000037502000000,0.000190786000000,0.000029996000000,0.000595329000000,0.000026257000000,0.000039872000000,0.000409254000000,0.000374094000000,0.000174589000000,0.011062481000000,0.000188415000000,0.000258736000000,0.011052209000000,0.000047378000000,0.000037897000000 +0.000038292000000,0.000144168000000,0.000036317000000,0.000027245000000,0.000361057000000,0.000037897000000,0.000186440000000,0.000030785000000,0.000480365000000,0.000053319000000,0.000039477000000,0.000376860000000,0.000443625000000,0.000171428000000,0.011763715000000,0.000189995000000,0.000174588000000,0.011238678000000,0.000046983000000,0.000038687000000 +0.000037107000000,0.000142588000000,0.000035922000000,0.000027244500000,0.000325502000000,0.000036317000000,0.000189601000000,0.000030391000000,0.000358687000000,0.000070504000000,0.000039478000000,0.000470094000000,0.000379625000000,0.000171823000000,0.011133592000000,0.000189601000000,0.000173798000000,0.011818628000000,0.000117304000000,0.000039477000000 +0.000038292000000,0.000150489000000,0.000036316000000,0.000027640000000,0.000322341000000,0.000036712000000,0.000258736000000,0.000030391000000,0.000308119000000,0.000077615000000,0.000039872000000,0.000375674000000,0.000446785000000,0.000172613000000,0.010849938000000,0.000223181000000,0.000173403000000,0.011070382000000,0.000094786000000,0.000038687000000 +0.000058045000000,0.000178934000000,0.000036317000000,0.000027047500000,0.000372909000000,0.000037107000000,0.000187230000000,0.000030785000000,0.000307723000000,0.000086701500000,0.000039477000000,0.000368169000000,0.000370539000000,0.000171428000000,0.011236702000000,0.000187230000000,0.000170637000000,0.011101197000000,0.000048959000000,0.000038292000000 +0.000106242000000,0.000143378000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000037897000000,0.000188415000000,0.000031971000000,0.000308119000000,0.000077812500000,0.000039477000000,0.000398193000000,0.000410045000000,0.000173798000000,0.011508110000000,0.000189206000000,0.000207378000000,0.011020604000000,0.000062391000000,0.000038687000000 +0.000100317000000,0.000141403000000,0.000036317000000,0.000045022500000,0.000322736000000,0.000037897000000,0.000189601000000,0.000029995000000,0.000307724000000,0.000083936000000,0.000065946000000,0.000388316000000,0.000374094000000,0.000172218000000,0.011075518000000,0.000188811000000,0.000173798000000,0.011208654000000,0.000082144000000,0.000039477000000 +0.000075823000000,0.000142193000000,0.000036711000000,0.000027244500000,0.000361057000000,0.000037897000000,0.000225551000000,0.000030786000000,0.000307723000000,0.000066948500000,0.000074637000000,0.000488662000000,0.000373304000000,0.000172218000000,0.010862580000000,0.000245699000000,0.000171428000000,0.010919469000000,0.000061996000000,0.000039082000000 +0.000040267000000,0.000142588000000,0.000035922000000,0.000027047500000,0.000323921000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000306539000000,0.000087096500000,0.000039082000000,0.000395032000000,0.000412020000000,0.000174983000000,0.011033246000000,0.000189996000000,0.000174193000000,0.010877197000000,0.000093601000000,0.000038687000000 +0.000054094000000,0.000141008000000,0.000036317000000,0.000027837500000,0.000323921000000,0.000038292000000,0.000188020000000,0.000030786000000,0.000308909000000,0.000055294000000,0.000039083000000,0.000400168000000,0.000368564000000,0.000174193000000,0.011728949000000,0.000186835000000,0.000173007000000,0.010810037000000,0.000085699000000,0.000038687000000 +0.000037896000000,0.000144168000000,0.000035921000000,0.000027244500000,0.000360662000000,0.000038292000000,0.000187625000000,0.000030391000000,0.000308514000000,0.000053714000000,0.000039477000000,0.000376464000000,0.000413600000000,0.000171032000000,0.010714036000000,0.000187625000000,0.000261107000000,0.011053789000000,0.000099922000000,0.000038687000000 +0.000037897000000,0.000188415000000,0.000035921000000,0.000027047500000,0.000323922000000,0.000037107000000,0.000228712000000,0.000030390000000,0.000314045000000,0.000037121000000,0.000039477000000,0.000369749000000,0.000374489000000,0.000173008000000,0.010929740000000,0.000226341000000,0.000174983000000,0.011840356000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000141403000000,0.000036317000000,0.000027442000000,0.000358687000000,0.000037896000000,0.000186440000000,0.000030391000000,0.000309304000000,0.000029220500000,0.000039477000000,0.000431773000000,0.000380810000000,0.000173007000000,0.011334283000000,0.000188416000000,0.000173008000000,0.011124506000000,0.000047773000000,0.000038688000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000396612000000,0.000036712000000,0.000190786000000,0.000030391000000,0.000308909000000,0.000035146000000,0.000039872000000,0.000375675000000,0.000409255000000,0.000178934000000,0.011331912000000,0.000188811000000,0.000174589000000,0.010876012000000,0.000047773000000,0.000038687000000 +0.000038687000000,0.000142193000000,0.000036316000000,0.000027442500000,0.000322341000000,0.000037502000000,0.000188021000000,0.000032366000000,0.000308514000000,0.000028232000000,0.000039477000000,0.000411230000000,0.000371329000000,0.000172613000000,0.010788308000000,0.000188021000000,0.000192366000000,0.011029295000000,0.000046588000000,0.000060020000000 +0.000038292000000,0.000140613000000,0.000036712000000,0.000027442000000,0.000327081000000,0.000073453000000,0.000225946000000,0.000033947000000,0.000308909000000,0.000028232000000,0.000040268000000,0.000381205000000,0.000426242000000,0.000173798000000,0.010769740000000,0.000223576000000,0.000171823000000,0.010973197000000,0.000066341000000,0.000071873000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000027244500000,0.000324712000000,0.000037107000000,0.000186835000000,0.000032761000000,0.000309304000000,0.000029022500000,0.000039872000000,0.000429403000000,0.000374489000000,0.000172218000000,0.010999666000000,0.000189995000000,0.000171427000000,0.010862974000000,0.000077798000000,0.000038292000000 +0.000037501000000,0.000176959000000,0.000056069000000,0.000027245000000,0.000324316000000,0.000037501000000,0.000188810000000,0.000069502000000,0.000308119000000,0.000045812500000,0.000039477000000,0.000390686000000,0.000373699000000,0.000173008000000,0.010963715000000,0.000186835000000,0.000172218000000,0.011557888000000,0.000115329000000,0.000039477000000 +0.000037897000000,0.000143774000000,0.000052120000000,0.000027245000000,0.000369748000000,0.000037107000000,0.000186836000000,0.000047378000000,0.000307724000000,0.000028627500000,0.000039477000000,0.000380415000000,0.000415971000000,0.000173403000000,0.011101987000000,0.000189996000000,0.000173798000000,0.011546036000000,0.000087280000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000038687000000,0.000027047000000,0.000706736000000,0.000037897000000,0.000222786000000,0.000031576000000,0.000307329000000,0.000028232500000,0.000039477000000,0.000412415000000,0.000373699000000,0.000173007000000,0.010926184000000,0.000294291000000,0.000193946000000,0.011317691000000,0.000131527000000,0.000039477000000 +0.000037897000000,0.000142983000000,0.000049354000000,0.000027245000000,0.000326292000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000342489000000,0.000028825000000,0.000039477000000,0.000374489000000,0.000404909000000,0.000174193000000,0.011210628000000,0.000189601000000,0.000187625000000,0.010778431000000,0.000089650000000,0.000039477000000 +0.000074242000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000037896000000,0.000189205000000,0.000030390000000,0.000321156000000,0.000028627500000,0.000039477000000,0.000453107000000,0.000374489000000,0.000172217000000,0.011065247000000,0.000190391000000,0.000170637000000,0.010856258000000,0.000099922000000,0.000037897000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000037121000000,0.000323131000000,0.000038687000000,0.000187625000000,0.000030391000000,0.000307329000000,0.000029022500000,0.000039477000000,0.000367773000000,0.000373304000000,0.000173403000000,0.011031666000000,0.000190786000000,0.000173798000000,0.011000061000000,0.000084119000000,0.000037897000000 +0.000037897000000,0.000232662000000,0.000036317000000,0.000035541000000,0.000324711000000,0.000037502000000,0.000221995000000,0.000030786000000,0.000308909000000,0.000028825000000,0.000039082000000,0.000367378000000,0.000500514000000,0.000172217000000,0.010927370000000,0.000224365000000,0.000172218000000,0.011480060000000,0.000048168000000,0.000038687000000 +0.000037502000000,0.000201452000000,0.000036317000000,0.000037319000000,0.000323921000000,0.000037501000000,0.000188415000000,0.000030391000000,0.000308119000000,0.000034948500000,0.000039082000000,0.000410439000000,0.000369748000000,0.000171033000000,0.010936456000000,0.000188415000000,0.000208958000000,0.010777642000000,0.000048169000000,0.000039872000000 +0.000037897000000,0.000158391000000,0.000036316000000,0.000053713500000,0.000323921000000,0.000037502000000,0.000188810000000,0.000030786000000,0.000308514000000,0.000035738500000,0.000039477000000,0.000377649000000,0.000463774000000,0.000173008000000,0.011040357000000,0.000189996000000,0.000172218000000,0.010935271000000,0.000067526000000,0.000038687000000 +0.000038687000000,0.000145353000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000037107000000,0.000188415000000,0.000030786000000,0.000306538000000,0.000028825000000,0.000059231000000,0.000454292000000,0.000364612000000,0.000173403000000,0.011604505000000,0.000188810000000,0.000174588000000,0.010840851000000,0.000064366000000,0.000038687000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027639500000,0.000325502000000,0.000038687000000,0.000224760000000,0.000030391000000,0.000309699000000,0.000028627500000,0.000039082000000,0.000366193000000,0.000457847000000,0.000171823000000,0.010756308000000,0.000270983000000,0.000174193000000,0.012660504000000,0.000048958000000,0.000039477000000 +0.000038292000000,0.000143379000000,0.000036317000000,0.000027442500000,0.000323527000000,0.000037502000000,0.000187230000000,0.000033551000000,0.000307723000000,0.000029417500000,0.000039477000000,0.000410835000000,0.000371329000000,0.000173008000000,0.010988999000000,0.000189205000000,0.000171822000000,0.011921344000000,0.000048563000000,0.000039872000000 +0.000038292000000,0.000160366000000,0.000036316000000,0.000027837500000,0.000326292000000,0.000038687000000,0.000188020000000,0.000030391000000,0.000308119000000,0.000028430000000,0.000039478000000,0.000370934000000,0.000491032000000,0.000171428000000,0.011066036000000,0.000189205000000,0.000265452000000,0.012066727000000,0.000048564000000,0.000039872000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027244500000,0.000323526000000,0.000037897000000,0.000189996000000,0.000030786000000,0.000345255000000,0.000028430000000,0.000039082000000,0.000378045000000,0.000374490000000,0.000171427000000,0.011101197000000,0.000190785000000,0.000205798000000,0.011402629000000,0.000048563000000,0.000039082000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000323922000000,0.000038292000000,0.000206983000000,0.000029996000000,0.000344464000000,0.000037911500000,0.000039082000000,0.000467724000000,0.000379230000000,0.000171032000000,0.010971617000000,0.000205008000000,0.000225552000000,0.011774381000000,0.000048563000000,0.000037897000000 +0.000037897000000,0.000141008000000,0.000035921000000,0.000027442000000,0.000324317000000,0.000037502000000,0.000187230000000,0.000031181000000,0.000322341000000,0.000028627500000,0.000039477000000,0.000371724000000,0.000426242000000,0.000172218000000,0.010888653000000,0.000187231000000,0.000191971000000,0.010780407000000,0.000048959000000,0.000038687000000 +0.000039477000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000326687000000,0.000037896000000,0.000187230000000,0.000030785000000,0.000308514000000,0.000029022500000,0.000039477000000,0.000416366000000,0.000381205000000,0.000173008000000,0.011694974000000,0.000187230000000,0.000285205000000,0.012075023000000,0.000048564000000,0.000040663000000 +0.000037502000000,0.000142983000000,0.000035922000000,0.000027047500000,0.000322341000000,0.000038687000000,0.000187625000000,0.000031971000000,0.000308119000000,0.000028430000000,0.000039477000000,0.000374094000000,0.000447575000000,0.000175773000000,0.011663764000000,0.000188415000000,0.000201847000000,0.011772801000000,0.000048168000000,0.000058045000000 +0.000038292000000,0.000177748000000,0.000035922000000,0.000027244500000,0.000325897000000,0.000037107000000,0.000188415000000,0.000030785000000,0.000307724000000,0.000029417500000,0.000039477000000,0.000369749000000,0.000368959000000,0.000171428000000,0.011073938000000,0.000224761000000,0.000174193000000,0.011489542000000,0.000048564000000,0.000123625000000 +0.000038292000000,0.000145749000000,0.000036316000000,0.000027442000000,0.000323921000000,0.000054884000000,0.000265057000000,0.000030391000000,0.000308119000000,0.000028429500000,0.000039478000000,0.000827624000000,0.000410440000000,0.000172613000000,0.011092900000000,0.000187230000000,0.000173008000000,0.011326777000000,0.000048959000000,0.000088860000000 +0.000037502000000,0.000142588000000,0.000072267000000,0.000047985500000,0.000323526000000,0.000038687000000,0.000187230000000,0.000030391000000,0.000306934000000,0.000029417500000,0.000039082000000,0.000408859000000,0.000382390000000,0.000175773000000,0.011141493000000,0.000188020000000,0.000218835000000,0.010936061000000,0.000048563000000,0.000125996000000 +0.000037897000000,0.000141403000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000038291000000,0.000188811000000,0.000030785000000,0.000308119000000,0.000028430000000,0.000039477000000,0.000423081000000,0.000364613000000,0.000209354000000,0.011162036000000,0.000191180000000,0.000173403000000,0.010986234000000,0.000048563000000,0.000125205000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027047500000,0.000324712000000,0.000037897000000,0.000234243000000,0.000049749000000,0.000308909000000,0.000028430000000,0.000039082000000,0.000415181000000,0.000674736000000,0.000171427000000,0.011253295000000,0.000225551000000,0.000175379000000,0.011233542000000,0.000048564000000,0.000073452000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037107000000,0.000187230000000,0.000062391000000,0.000304564000000,0.000028430000000,0.000039477000000,0.000381600000000,0.000381205000000,0.000172218000000,0.011151369000000,0.000190390000000,0.000175773000000,0.010858234000000,0.000048564000000,0.000042242000000 +0.000037897000000,0.000240168000000,0.000036711000000,0.000027245000000,0.000325107000000,0.000038687000000,0.000187230000000,0.000044613000000,0.000308514000000,0.000028627500000,0.000039477000000,0.000378045000000,0.000491032000000,0.000174193000000,0.010909592000000,0.000189205000000,0.000174983000000,0.010998086000000,0.000048563000000,0.000054095000000 +0.000037897000000,0.000143774000000,0.000036712000000,0.000027047500000,0.000323922000000,0.000038687000000,0.000189205000000,0.000030391000000,0.000308909000000,0.000028232000000,0.000039478000000,0.000445600000000,0.000372514000000,0.000171823000000,0.011432258000000,0.000188810000000,0.000209353000000,0.010732210000000,0.000048564000000,0.000052909000000 +0.000089650000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000037897000000,0.000225156000000,0.000030785000000,0.000307724000000,0.000028825000000,0.000039477000000,0.000378835000000,0.000409649000000,0.000173008000000,0.011480456000000,0.000222785000000,0.000178144000000,0.011001641000000,0.000083329000000,0.000040267000000 +0.000037897000000,0.000144169000000,0.000037896000000,0.000027244500000,0.000325897000000,0.000037106000000,0.000188416000000,0.000031181000000,0.000306933000000,0.000028232000000,0.000039082000000,0.000415971000000,0.000370144000000,0.000174983000000,0.011434628000000,0.000187625000000,0.000171428000000,0.011485987000000,0.000048959000000,0.000039082000000 +0.000037897000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000038292000000,0.000238193000000,0.000030391000000,0.000345650000000,0.000028232000000,0.000039477000000,0.000383971000000,0.000447576000000,0.000172218000000,0.011089344000000,0.000186440000000,0.000178144000000,0.010995715000000,0.000048168000000,0.000038292000000 +0.000037501000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000036712000000,0.000186440000000,0.000030786000000,0.000306934000000,0.000037911500000,0.000039082000000,0.000409650000000,0.000379230000000,0.000172613000000,0.010913938000000,0.000187231000000,0.000172218000000,0.010747616000000,0.000048959000000,0.000075033000000 +0.000037897000000,0.000179329000000,0.000036316000000,0.000027047000000,0.000418341000000,0.000037502000000,0.000229502000000,0.000030786000000,0.000308514000000,0.000028232500000,0.000058835000000,0.000374489000000,0.000374884000000,0.000171823000000,0.011157691000000,0.000223576000000,0.000226736000000,0.010949098000000,0.000048564000000,0.000038687000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000324317000000,0.000038687000000,0.000186045000000,0.000031180000000,0.000308514000000,0.000029022500000,0.000090836000000,0.000375280000000,0.000411229000000,0.000253206000000,0.011012703000000,0.000188415000000,0.000174193000000,0.011239863000000,0.000048563000000,0.000038292000000 +0.000037897000000,0.000142983000000,0.000036712000000,0.000027047500000,0.000326292000000,0.000037502000000,0.000190391000000,0.000030391000000,0.000306539000000,0.000035936000000,0.000039477000000,0.000412020000000,0.000381205000000,0.000171428000000,0.010980703000000,0.000188021000000,0.000173008000000,0.010764604000000,0.000048958000000,0.000037897000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000360267000000,0.000038687000000,0.000186044000000,0.000030391000000,0.000309304000000,0.000027837500000,0.000039082000000,0.000373304000000,0.000517106000000,0.000173403000000,0.012195912000000,0.000190786000000,0.000171822000000,0.011004012000000,0.000048959000000,0.000039082000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000337354000000,0.000036712000000,0.000259526000000,0.000029995000000,0.000308909000000,0.000034948500000,0.000039477000000,0.000412020000000,0.000430193000000,0.000173403000000,0.011491913000000,0.000224761000000,0.000175378000000,0.011207468000000,0.000049354000000,0.000038291000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000037502000000,0.000189996000000,0.000030391000000,0.000307724000000,0.000025664500000,0.000039477000000,0.000370933000000,0.000979328000000,0.000171823000000,0.011624653000000,0.000187230000000,0.000209748000000,0.011170332000000,0.000048563000000,0.000038292000000 +0.000037897000000,0.000176958000000,0.000036317000000,0.000045812500000,0.000325107000000,0.000037897000000,0.000186835000000,0.000031181000000,0.000307724000000,0.000026849500000,0.000039477000000,0.000380415000000,0.000662884000000,0.000173403000000,0.011230382000000,0.000191576000000,0.000172218000000,0.011230777000000,0.000048564000000,0.000039872000000 +0.000037502000000,0.000142984000000,0.000036712000000,0.000027047000000,0.000323131000000,0.000036711000000,0.000187230000000,0.000032761000000,0.000307328000000,0.000026652500000,0.000039873000000,0.000432168000000,0.000481946000000,0.000172613000000,0.011086975000000,0.000189600000000,0.000176169000000,0.011122135000000,0.000048564000000,0.000037897000000 +0.000037502000000,0.000142589000000,0.000036316000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000235822000000,0.000030390000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000379625000000,0.000397008000000,0.000171032000000,0.011986529000000,0.000239773000000,0.000173403000000,0.010781592000000,0.000048168000000,0.000039477000000 +0.000038292000000,0.000142194000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000073452000000,0.000187230000000,0.000030391000000,0.000307724000000,0.000026652000000,0.000039872000000,0.000402933000000,0.000394638000000,0.000170638000000,0.011650333000000,0.000188020000000,0.000171427000000,0.011218926000000,0.000050143000000,0.000039478000000 +0.000037897000000,0.000142984000000,0.000056070000000,0.000027245000000,0.000323131000000,0.000035922000000,0.000190390000000,0.000030391000000,0.000308909000000,0.000026257000000,0.000039872000000,0.000372514000000,0.000554242000000,0.000173403000000,0.011367468000000,0.000189995000000,0.000188810000000,0.010834136000000,0.000048959000000,0.000038687000000 +0.000037896000000,0.000144564000000,0.000070291000000,0.000047393000000,0.000322737000000,0.000036317000000,0.000188810000000,0.000030785000000,0.000313650000000,0.000025862000000,0.000039477000000,0.000372514000000,0.000474835000000,0.000174193000000,0.011064851000000,0.000186440000000,0.000173403000000,0.010835716000000,0.000047774000000,0.000039872000000 +0.000037897000000,0.000161551000000,0.000035922000000,0.000028825000000,0.000360267000000,0.000038292000000,0.000268218000000,0.000030391000000,0.000306933000000,0.000025862000000,0.000039873000000,0.000777847000000,0.000452316000000,0.000171032000000,0.011045098000000,0.000231082000000,0.000171427000000,0.011090530000000,0.000048168000000,0.000040268000000 +0.000037897000000,0.000142193000000,0.000035922000000,0.000034158500000,0.000323526000000,0.000036711000000,0.000186835000000,0.000030391000000,0.000307329000000,0.000026257000000,0.000039478000000,0.000419131000000,0.000393847000000,0.000171428000000,0.010867715000000,0.000189996000000,0.000173008000000,0.011401444000000,0.000096366000000,0.000041057000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000323132000000,0.000037897000000,0.000188021000000,0.000031180000000,0.000391872000000,0.000026849500000,0.000039477000000,0.000370539000000,0.000410440000000,0.000174588000000,0.010980308000000,0.000187625000000,0.000175378000000,0.010979123000000,0.000047774000000,0.000039477000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000366588000000,0.000037502000000,0.000190391000000,0.000080563000000,0.000322736000000,0.000047195500000,0.000039082000000,0.000378045000000,0.000383181000000,0.000172218000000,0.011246184000000,0.000188810000000,0.000188810000000,0.011088555000000,0.000046588000000,0.000039478000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037897000000,0.000223576000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000409255000000,0.000399773000000,0.000173403000000,0.011317295000000,0.000224366000000,0.000172218000000,0.011436604000000,0.000047379000000,0.000037897000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000325897000000,0.000038687000000,0.000187231000000,0.000030785000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000372514000000,0.000387132000000,0.000171823000000,0.010891814000000,0.000189206000000,0.000173008000000,0.011282530000000,0.000047378000000,0.000038687000000 +0.000073848000000,0.000142588000000,0.000035921000000,0.000027244500000,0.000323921000000,0.000037897000000,0.000189996000000,0.000030391000000,0.000308514000000,0.000027245000000,0.000039477000000,0.000413600000000,0.000398193000000,0.000173008000000,0.010902481000000,0.000191181000000,0.000173403000000,0.011799665000000,0.000046983000000,0.000040267000000 +0.000037897000000,0.000178934000000,0.000035922000000,0.000027245000000,0.000323921000000,0.000037107000000,0.000189601000000,0.000031181000000,0.000308119000000,0.000025862000000,0.000039478000000,0.000380416000000,0.000426638000000,0.000172613000000,0.011045888000000,0.000188021000000,0.000228711000000,0.011113444000000,0.000047378000000,0.000040267000000 +0.000037502000000,0.000145748000000,0.000036712000000,0.000027640000000,0.000325106000000,0.000037106000000,0.000306934000000,0.000030390000000,0.000308909000000,0.000045022500000,0.000039478000000,0.000429798000000,0.000398193000000,0.000172613000000,0.011327172000000,0.000300613000000,0.000174984000000,0.011376554000000,0.000047379000000,0.000075428000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000045220000000,0.000324711000000,0.000037107000000,0.000275724000000,0.000031181000000,0.000307329000000,0.000026257000000,0.000074637000000,0.000367773000000,0.000398193000000,0.000192760000000,0.010823073000000,0.000206983000000,0.000171033000000,0.011067222000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000036711000000,0.000027244500000,0.000325107000000,0.000037107000000,0.000187625000000,0.000030391000000,0.000306934000000,0.000026455000000,0.000039478000000,0.000419132000000,0.000395822000000,0.000171823000000,0.011180604000000,0.000188415000000,0.000174588000000,0.011363123000000,0.000046983000000,0.000039477000000 +0.000037502000000,0.000143378000000,0.000036712000000,0.000027047500000,0.000325502000000,0.000037107000000,0.000237798000000,0.000030786000000,0.000345255000000,0.000026257000000,0.000039082000000,0.000425058000000,0.000396218000000,0.000174588000000,0.011220110000000,0.000188810000000,0.000171428000000,0.011069592000000,0.000047379000000,0.000037897000000 +0.000037502000000,0.000144169000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000037106000000,0.000189205000000,0.000030391000000,0.000306538000000,0.000025862000000,0.000039872000000,0.000375279000000,0.000385946000000,0.000171823000000,0.010994926000000,0.000226341000000,0.000210144000000,0.010917889000000,0.000046983000000,0.000039873000000 +0.000037501000000,0.000192761000000,0.000036316000000,0.000027639500000,0.000323922000000,0.000037897000000,0.000188810000000,0.000029995000000,0.000307329000000,0.000025862000000,0.000039872000000,0.000417946000000,0.000398193000000,0.000172613000000,0.011171517000000,0.000256761000000,0.000172218000000,0.010914332000000,0.000047379000000,0.000040662000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000323921000000,0.000037897000000,0.000188415000000,0.000030391000000,0.000340514000000,0.000025862000000,0.000039477000000,0.000365403000000,0.000656563000000,0.000174193000000,0.010989394000000,0.000188415000000,0.000174588000000,0.012287962000000,0.000046588000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000224366000000,0.000030786000000,0.000308514000000,0.000027047000000,0.000039872000000,0.000375675000000,0.000397402000000,0.000172218000000,0.010817148000000,0.000207773000000,0.000173403000000,0.012918479000000,0.000047378000000,0.000040267000000 +0.000037502000000,0.000142193000000,0.000036712000000,0.000027244500000,0.000323921000000,0.000037501000000,0.000188415000000,0.000030390000000,0.000308514000000,0.000026455000000,0.000039478000000,0.000387131000000,0.000390686000000,0.000174193000000,0.011404209000000,0.000189206000000,0.000173798000000,0.013111269000000,0.000046984000000,0.000037897000000 +0.000037502000000,0.000141008000000,0.000035921000000,0.000027244500000,0.000363032000000,0.000037107000000,0.000188810000000,0.000029996000000,0.000308119000000,0.000026059500000,0.000039872000000,0.000381996000000,0.000398983000000,0.000171823000000,0.011174283000000,0.000189206000000,0.000207774000000,0.012854875000000,0.000046983000000,0.000038687000000 +0.000037502000000,0.000140218000000,0.000074637000000,0.000027245000000,0.000407279000000,0.000054490000000,0.000187626000000,0.000031181000000,0.000307724000000,0.000061812500000,0.000039477000000,0.000411625000000,0.000440465000000,0.000174983000000,0.010891025000000,0.000186835000000,0.000173798000000,0.011451616000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000177748000000,0.000053699000000,0.000027047500000,0.000323922000000,0.000036317000000,0.000262292000000,0.000030390000000,0.000307724000000,0.000026257000000,0.000039872000000,0.000374884000000,0.000397403000000,0.000173008000000,0.011162827000000,0.000208563000000,0.000174588000000,0.011083023000000,0.000082539000000,0.000038687000000 +0.000038292000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000323527000000,0.000038292000000,0.000186440000000,0.000031181000000,0.000304168000000,0.000026454500000,0.000039477000000,0.000415971000000,0.000390687000000,0.000173403000000,0.011666530000000,0.000188810000000,0.000178934000000,0.010795024000000,0.000046983000000,0.000039082000000 +0.000038292000000,0.000144564000000,0.000036317000000,0.000027837500000,0.000323131000000,0.000037106000000,0.000186835000000,0.000030785000000,0.000306934000000,0.000026850000000,0.000039082000000,0.000375280000000,0.000394637000000,0.000174193000000,0.011346530000000,0.000189995000000,0.000172217000000,0.011155321000000,0.000046983000000,0.000039477000000 +0.000038292000000,0.000141403000000,0.000035922000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000186835000000,0.000031181000000,0.000307723000000,0.000026059500000,0.000039083000000,0.000376464000000,0.000395428000000,0.000172217000000,0.010922234000000,0.000189205000000,0.000211724000000,0.011141888000000,0.000046984000000,0.000038687000000 +0.000037896000000,0.000143774000000,0.000036316000000,0.000027047000000,0.000325501000000,0.000036317000000,0.000270193000000,0.000030786000000,0.000308119000000,0.000026257000000,0.000039872000000,0.000547527000000,0.000391872000000,0.000171428000000,0.010974382000000,0.000206193000000,0.000171033000000,0.010988604000000,0.000046588000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027047500000,0.000325501000000,0.000037502000000,0.000188416000000,0.000030786000000,0.000307724000000,0.000026652000000,0.000039477000000,0.000374884000000,0.000394242000000,0.000171823000000,0.011208653000000,0.000189995000000,0.000174983000000,0.010976753000000,0.000047774000000,0.000038687000000 +0.000037897000000,0.000176958000000,0.000035922000000,0.000047985500000,0.000325897000000,0.000038292000000,0.000187230000000,0.000066736000000,0.000308514000000,0.000026060000000,0.000039477000000,0.000410440000000,0.000403329000000,0.000171822000000,0.011996406000000,0.000189995000000,0.000173008000000,0.011095271000000,0.000046983000000,0.000040267000000 +0.000037897000000,0.000159181000000,0.000035922000000,0.000043639500000,0.000325107000000,0.000037107000000,0.000187230000000,0.000031971000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000381601000000,0.000397008000000,0.000171823000000,0.011056555000000,0.000188020000000,0.000174193000000,0.011133987000000,0.000046589000000,0.000040267000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027047500000,0.000325502000000,0.000037502000000,0.000223576000000,0.000030785000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000404909000000,0.000364218000000,0.000171428000000,0.011243814000000,0.000186835000000,0.000208564000000,0.011270283000000,0.000046983000000,0.000039082000000 +0.000073847000000,0.000142193000000,0.000036712000000,0.000027245000000,0.000322737000000,0.000036712000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000026059500000,0.000039478000000,0.000367378000000,0.000466934000000,0.000172613000000,0.010876802000000,0.000189600000000,0.000174193000000,0.010875222000000,0.000047378000000,0.000056859000000 +0.000037897000000,0.000140613000000,0.000035922000000,0.000027244500000,0.000325107000000,0.000038687000000,0.000190390000000,0.000031576000000,0.000308514000000,0.000026652000000,0.000039477000000,0.000374489000000,0.000609551000000,0.000171428000000,0.011576060000000,0.000188810000000,0.000176168000000,0.011245000000000,0.000046983000000,0.000042638000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000027245000000,0.000357502000000,0.000037107000000,0.000189205000000,0.000031576000000,0.000309304000000,0.000026455000000,0.000088860000000,0.000423871000000,0.000426637000000,0.000296662000000,0.011221690000000,0.000188415000000,0.000175773000000,0.011516801000000,0.000048564000000,0.000042637000000 +0.000037502000000,0.000180909000000,0.000035921000000,0.000027640000000,0.000340909000000,0.000037107000000,0.000223970000000,0.000030391000000,0.000307329000000,0.000025664500000,0.000052909000000,0.000368563000000,0.000465353000000,0.000188811000000,0.011482431000000,0.000190390000000,0.000172612000000,0.011004407000000,0.000047378000000,0.000052909000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037897000000,0.000189996000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000402144000000,0.000378045000000,0.000172218000000,0.010994530000000,0.000214885000000,0.000243724000000,0.010973592000000,0.000046983000000,0.000039872000000 +0.000037897000000,0.000142984000000,0.000036317000000,0.000027442500000,0.000325502000000,0.000037897000000,0.000189205000000,0.000030391000000,0.000423082000000,0.000026059500000,0.000038687000000,0.000376859000000,0.000364613000000,0.000171428000000,0.011429097000000,0.000189206000000,0.000173008000000,0.011454382000000,0.000047379000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000036316000000,0.000027047500000,0.000323131000000,0.000037897000000,0.000187230000000,0.000030390000000,0.000306538000000,0.000034356000000,0.000039477000000,0.000368168000000,0.000400958000000,0.000173007000000,0.010762629000000,0.000187230000000,0.000172613000000,0.011250135000000,0.000047378000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000325106000000,0.000036712000000,0.000237798000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000039082000000,0.000413995000000,0.000376859000000,0.000174588000000,0.010885888000000,0.000206588000000,0.000173008000000,0.010978727000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037896000000,0.000187230000000,0.000031576000000,0.000308910000000,0.000026849500000,0.000039478000000,0.000384365000000,0.000445601000000,0.000171427000000,0.011141493000000,0.000189206000000,0.000173799000000,0.011138728000000,0.000046983000000,0.000040662000000 +0.000038292000000,0.000144168000000,0.000036712000000,0.000027245000000,0.000325502000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000307329000000,0.000026850000000,0.000039477000000,0.000407675000000,0.000380415000000,0.000171823000000,0.010900901000000,0.000188811000000,0.000186835000000,0.011147024000000,0.000047773000000,0.000041453000000 +0.000037897000000,0.000211724000000,0.000072662000000,0.000028034500000,0.000323921000000,0.000057650000000,0.000237008000000,0.000031576000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000373304000000,0.000372119000000,0.000171823000000,0.011004011000000,0.000187230000000,0.000173798000000,0.012005887000000,0.000046984000000,0.000038687000000 +0.000037896000000,0.000142588000000,0.000036316000000,0.000027047500000,0.000325502000000,0.000080958000000,0.000260316000000,0.000029995000000,0.000356711000000,0.000025862000000,0.000039477000000,0.000374094000000,0.000410440000000,0.000210933000000,0.010879567000000,0.000189205000000,0.000173008000000,0.010657148000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000036924000000,0.000323921000000,0.000038292000000,0.000269403000000,0.000030391000000,0.000310094000000,0.000026652000000,0.000039477000000,0.000406885000000,0.000372119000000,0.000172613000000,0.010751963000000,0.000190390000000,0.000171823000000,0.012083320000000,0.000046984000000,0.000039872000000 +0.000037502000000,0.000141798000000,0.000035922000000,0.000060627500000,0.000323526000000,0.000037897000000,0.000220020000000,0.000030391000000,0.000306933000000,0.000026850000000,0.000039477000000,0.000366193000000,0.000411230000000,0.000173402000000,0.010857049000000,0.000186440000000,0.000210144000000,0.011233937000000,0.000046588000000,0.000037896000000 +0.000038292000000,0.000142193000000,0.000035526000000,0.000027047000000,0.000323131000000,0.000037501000000,0.000226736000000,0.000029996000000,0.000309304000000,0.000026652000000,0.000039478000000,0.000450341000000,0.000375675000000,0.000174193000000,0.011276999000000,0.000188416000000,0.000174193000000,0.011510875000000,0.000046588000000,0.000040662000000 +0.000038292000000,0.000143378000000,0.000035921000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000189206000000,0.000030786000000,0.000308514000000,0.000026652000000,0.000039082000000,0.000388317000000,0.000377255000000,0.000172218000000,0.010955420000000,0.000188811000000,0.000173008000000,0.011015074000000,0.000046984000000,0.000040267000000 +0.000037501000000,0.000178933000000,0.000036712000000,0.000027047000000,0.000323526000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000423082000000,0.000414785000000,0.000174193000000,0.011307024000000,0.000187625000000,0.000173008000000,0.010885888000000,0.000046983000000,0.000039477000000 +0.000038292000000,0.000142984000000,0.000036712000000,0.000027047500000,0.000325106000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000350391000000,0.000025862000000,0.000039477000000,0.000381205000000,0.000366983000000,0.000173008000000,0.010827814000000,0.000188415000000,0.000175378000000,0.010705740000000,0.000046588000000,0.000039082000000 +0.000037502000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037501000000,0.000232662000000,0.000030391000000,0.000307723000000,0.000026257500000,0.000039477000000,0.000378044000000,0.000406094000000,0.000172613000000,0.011608455000000,0.000189996000000,0.000192761000000,0.011154925000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000035921000000,0.000027244500000,0.000387526000000,0.000038292000000,0.000188020000000,0.000030390000000,0.000306934000000,0.000026454500000,0.000039477000000,0.000536070000000,0.000370144000000,0.000171822000000,0.011188111000000,0.000188020000000,0.000189996000000,0.011251715000000,0.000047378000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000324317000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000379625000000,0.000370143000000,0.000174193000000,0.010868901000000,0.000207774000000,0.000172218000000,0.010824259000000,0.000046984000000,0.000037897000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000326292000000,0.000037897000000,0.000186835000000,0.000080564000000,0.000306933000000,0.000026454500000,0.000039478000000,0.000416761000000,0.000426638000000,0.000249650000000,0.011180604000000,0.000188416000000,0.000172218000000,0.011077493000000,0.000047378000000,0.000074242000000 +0.000073848000000,0.000176169000000,0.000036711000000,0.000027244500000,0.000324711000000,0.000037897000000,0.000223576000000,0.000045008000000,0.000307329000000,0.000061615000000,0.000056465000000,0.000382391000000,0.000378045000000,0.000176564000000,0.011735666000000,0.000188811000000,0.000171427000000,0.010935667000000,0.000048169000000,0.000039082000000 +0.000037107000000,0.000143379000000,0.000036712000000,0.000027442500000,0.000323131000000,0.000037502000000,0.000186440000000,0.000030391000000,0.000344465000000,0.000026455000000,0.000039477000000,0.000455477000000,0.000432168000000,0.000171428000000,0.010879568000000,0.000189601000000,0.000235428000000,0.011273839000000,0.000047378000000,0.000039083000000 +0.000037897000000,0.000147328000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000038291000000,0.000188810000000,0.000030391000000,0.000307329000000,0.000026454500000,0.000039872000000,0.000374489000000,0.000374489000000,0.000174193000000,0.011062876000000,0.000224366000000,0.000205402000000,0.011896850000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000037897000000,0.000187230000000,0.000031181000000,0.000308514000000,0.000026059500000,0.000039082000000,0.000374489000000,0.000421897000000,0.000174193000000,0.011290826000000,0.000188810000000,0.000173008000000,0.011115419000000,0.000047379000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000036316000000,0.000027442000000,0.000325107000000,0.000038292000000,0.000257946000000,0.000032761000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000458242000000,0.000371329000000,0.000173798000000,0.011408555000000,0.000190390000000,0.000175379000000,0.010953048000000,0.000046983000000,0.000039082000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000037107000000,0.000186440000000,0.000030391000000,0.000328662000000,0.000026059500000,0.000039082000000,0.000372909000000,0.000375280000000,0.000173403000000,0.011044703000000,0.000189995000000,0.000209354000000,0.011540110000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000178144000000,0.000036712000000,0.000045220000000,0.000325897000000,0.000037107000000,0.000188810000000,0.000030391000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000456662000000,0.000411230000000,0.000216070000000,0.013558083000000,0.000558193000000,0.000178934000000,0.010818333000000,0.000047378000000,0.000038292000000 +0.000037897000000,0.000144168000000,0.000036316000000,0.000027047000000,0.000323527000000,0.000037502000000,0.000191181000000,0.000030785000000,0.000365007000000,0.000026454500000,0.000039478000000,0.000370538000000,0.000373304000000,0.000172613000000,0.014176750000000,0.000206193000000,0.000174588000000,0.013439565000000,0.000047378000000,0.000038687000000 +0.000037502000000,0.000141008000000,0.000036712000000,0.000027047000000,0.000323922000000,0.000073453000000,0.000222786000000,0.000031181000000,0.000308119000000,0.000025862500000,0.000038687000000,0.000416366000000,0.000437304000000,0.000171032000000,0.014287367000000,0.000223181000000,0.000175379000000,0.011518381000000,0.000047379000000,0.000039477000000 +0.000038292000000,0.000142983000000,0.000054095000000,0.000027245000000,0.000324317000000,0.000037502000000,0.000188020000000,0.000030391000000,0.000306934000000,0.000026059500000,0.000039477000000,0.000382391000000,0.000371329000000,0.000209748000000,0.012211715000000,0.000188810000000,0.000174588000000,0.011815073000000,0.000047773000000,0.000039082000000 +0.000038292000000,0.000144958000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000036711000000,0.000187230000000,0.000030786000000,0.000308909000000,0.000026257000000,0.000039872000000,0.000379625000000,0.000511181000000,0.000172218000000,0.012037888000000,0.000187625000000,0.000252020000000,0.011004012000000,0.000046194000000,0.000039082000000 +0.000057255000000,0.000144959000000,0.000036316000000,0.000027047000000,0.000325106000000,0.000038292000000,0.000191181000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000442045000000,0.000375674000000,0.000171033000000,0.013397294000000,0.000187626000000,0.000276119000000,0.011129641000000,0.000046983000000,0.000038687000000 +0.000052909000000,0.000160761000000,0.000035921000000,0.000027244500000,0.000324317000000,0.000037107000000,0.000257551000000,0.000030390000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000371329000000,0.000373699000000,0.000171822000000,0.011188111000000,0.000257946000000,0.000184069000000,0.012597295000000,0.000047378000000,0.000038687000000 +0.000072267000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000038292000000,0.000189206000000,0.000030391000000,0.000344859000000,0.000026059500000,0.000039872000000,0.000408465000000,0.000690933000000,0.000170638000000,0.011058925000000,0.000201452000000,0.000173008000000,0.011613196000000,0.000048169000000,0.000037897000000 +0.000053700000000,0.000186045000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037897000000,0.000189206000000,0.000030786000000,0.000309304000000,0.000026454500000,0.000039478000000,0.000372909000000,0.000387526000000,0.000173403000000,0.010985049000000,0.000186835000000,0.000221601000000,0.011224456000000,0.000047378000000,0.000038687000000 +0.000053699000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000188811000000,0.000030785000000,0.000306933000000,0.000025862000000,0.000039872000000,0.000382785000000,0.000372119000000,0.000171823000000,0.011143073000000,0.000238193000000,0.000175379000000,0.010747617000000,0.000046984000000,0.000039872000000 +0.000054490000000,0.000144168000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000037897000000,0.000222786000000,0.000030786000000,0.000357896000000,0.000066948000000,0.000039872000000,0.000422291000000,0.000371724000000,0.000170638000000,0.011065641000000,0.000231477000000,0.000173008000000,0.010857444000000,0.000046983000000,0.000039478000000 +0.000037501000000,0.000141798000000,0.000036712000000,0.000027245000000,0.000324316000000,0.000037106000000,0.000188415000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039082000000,0.000377650000000,0.000445205000000,0.000172612000000,0.011057740000000,0.000189205000000,0.000174193000000,0.011389592000000,0.000046588000000,0.000040267000000 +0.000038292000000,0.000182094000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000190390000000,0.000030786000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000409255000000,0.000380810000000,0.000173403000000,0.011118184000000,0.000189205000000,0.000173403000000,0.010996506000000,0.000046983000000,0.000038687000000 +0.000073453000000,0.000156811000000,0.000036316000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000344464000000,0.000026454500000,0.000039477000000,0.000372514000000,0.000417156000000,0.000210934000000,0.011113839000000,0.000187626000000,0.000207773000000,0.010838086000000,0.000046983000000,0.000039082000000 +0.000038292000000,0.000143773000000,0.000035922000000,0.000027837500000,0.000376069000000,0.000038292000000,0.000318391000000,0.000030785000000,0.000323921000000,0.000025862000000,0.000039478000000,0.000448761000000,0.000368959000000,0.000170638000000,0.011234727000000,0.000274539000000,0.000173403000000,0.011074332000000,0.000046194000000,0.000091231000000 +0.000037501000000,0.000142588000000,0.000036712000000,0.000027047000000,0.000324316000000,0.000037897000000,0.000295081000000,0.000066736000000,0.000307328000000,0.000025862000000,0.000113353000000,0.000378835000000,0.000374884000000,0.000174193000000,0.011134382000000,0.000189205000000,0.000173403000000,0.011231567000000,0.000046983000000,0.000039872000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000045022500000,0.000324711000000,0.000036712000000,0.000187625000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000043033000000,0.000375675000000,0.000424267000000,0.000171823000000,0.010976752000000,0.000187626000000,0.000173403000000,0.010822678000000,0.000046983000000,0.000040662000000 +0.000037897000000,0.000142193000000,0.000035922000000,0.000027244500000,0.000323526000000,0.000038687000000,0.000221995000000,0.000030391000000,0.000308118000000,0.000026455000000,0.000098342000000,0.000403724000000,0.000376860000000,0.000172613000000,0.011283320000000,0.000186835000000,0.000172218000000,0.010931320000000,0.000046983000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000038292000000,0.000190391000000,0.000030785000000,0.000308119000000,0.000026257000000,0.000075427000000,0.000431773000000,0.000413205000000,0.000173403000000,0.011157690000000,0.000223180000000,0.000208169000000,0.011235123000000,0.000091625000000,0.000038687000000 +0.000037502000000,0.000159971000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037107000000,0.000188021000000,0.000030786000000,0.000307329000000,0.000026454500000,0.000055675000000,0.000470884000000,0.000379625000000,0.000173403000000,0.010773691000000,0.000188415000000,0.000173798000000,0.011604505000000,0.000047379000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036711000000,0.000027244500000,0.000325106000000,0.000037897000000,0.000186045000000,0.000031181000000,0.000323921000000,0.000026059500000,0.000041848000000,0.000376070000000,0.000366588000000,0.000173008000000,0.011259221000000,0.000187230000000,0.000172613000000,0.011300703000000,0.000046588000000,0.000040267000000 +0.000038291000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000969451000000,0.000037896000000,0.000221600000000,0.000031181000000,0.000306539000000,0.000025862000000,0.000052514000000,0.000465353000000,0.000458637000000,0.000171428000000,0.011565789000000,0.000186836000000,0.000173798000000,0.011079073000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000139427000000,0.000036317000000,0.000027245000000,0.000643526000000,0.000056860000000,0.000189205000000,0.000030391000000,0.000309304000000,0.000026257000000,0.000039872000000,0.000363427000000,0.000370539000000,0.000171428000000,0.012967862000000,0.000259131000000,0.000173798000000,0.010862580000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000140613000000,0.000055675000000,0.000027244500000,0.000346440000000,0.000037897000000,0.000189205000000,0.000030785000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000375675000000,0.000461798000000,0.000363032000000,0.011496653000000,0.000188810000000,0.000225156000000,0.011286876000000,0.000047378000000,0.000040267000000 +0.000038687000000,0.000143773000000,0.000066736000000,0.000027047000000,0.000345255000000,0.000037107000000,0.000186440000000,0.000030786000000,0.000306933000000,0.000026454500000,0.000039477000000,0.000461007000000,0.000370934000000,0.000234243000000,0.011305839000000,0.000188810000000,0.000172218000000,0.011254085000000,0.000047379000000,0.000038292000000 +0.000038292000000,0.000179329000000,0.000036317000000,0.000027442500000,0.000400563000000,0.000037107000000,0.000223575000000,0.000030786000000,0.000309304000000,0.000035738500000,0.000039082000000,0.000381600000000,0.000459427000000,0.000170637000000,0.011175468000000,0.000188810000000,0.000175774000000,0.011431073000000,0.000047378000000,0.000039477000000 +0.000037502000000,0.000144563000000,0.000036317000000,0.000027245000000,0.000343675000000,0.000037106000000,0.000188810000000,0.000030390000000,0.000722934000000,0.000051146000000,0.000039477000000,0.000411625000000,0.000377254000000,0.000173403000000,0.011333493000000,0.000338933000000,0.000173008000000,0.010670185000000,0.000046984000000,0.000038687000000 +0.000038292000000,0.000143773000000,0.000036317000000,0.000027244500000,0.000343279000000,0.000037502000000,0.000188020000000,0.000029996000000,0.000327872000000,0.000032183000000,0.000039477000000,0.000374884000000,0.000367774000000,0.000171428000000,0.011782282000000,0.000188415000000,0.000174193000000,0.011038778000000,0.000046588000000,0.000039477000000 +0.000038687000000,0.000143774000000,0.000036316000000,0.000027244500000,0.000345649000000,0.000037502000000,0.000190390000000,0.000030391000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000491822000000,0.000413600000000,0.000173008000000,0.011538135000000,0.000188810000000,0.000171032000000,0.011351271000000,0.000046983000000,0.000038687000000 +0.000037106000000,0.000144168000000,0.000036317000000,0.000027245000000,0.000350786000000,0.000036317000000,0.000258736000000,0.000030785000000,0.000308119000000,0.000026455000000,0.000039082000000,0.000714242000000,0.000377255000000,0.000174983000000,0.011785048000000,0.000188415000000,0.000173798000000,0.011350480000000,0.000046589000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000323131000000,0.000037107000000,0.000188810000000,0.000031181000000,0.000308514000000,0.000025862500000,0.000039082000000,0.000412415000000,0.000590983000000,0.000177749000000,0.011332308000000,0.000187230000000,0.000175774000000,0.010911963000000,0.000047378000000,0.000038687000000 +0.000038292000000,0.000233452000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000036711000000,0.000189995000000,0.000029995000000,0.000308514000000,0.000025862000000,0.000080959000000,0.000380020000000,0.000398983000000,0.000172613000000,0.010706135000000,0.000190390000000,0.000174193000000,0.011145049000000,0.000046193000000,0.000038292000000 +0.000037502000000,0.000176958000000,0.000036317000000,0.000045417500000,0.000330242000000,0.000037897000000,0.000189205000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039872000000,0.000412020000000,0.000422686000000,0.000207773000000,0.011141493000000,0.000189205000000,0.000193946000000,0.011459123000000,0.000047378000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000035922000000,0.000027442500000,0.000321946000000,0.000038687000000,0.000267032000000,0.000030786000000,0.000308119000000,0.000026059500000,0.000039082000000,0.000372909000000,0.000372514000000,0.000171032000000,0.011095271000000,0.000226736000000,0.000172218000000,0.010761444000000,0.000046983000000,0.000039872000000 +0.000037501000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037106000000,0.000186440000000,0.000030390000000,0.000349600000000,0.000026257000000,0.000039478000000,0.000381600000000,0.000500118000000,0.000173403000000,0.011201937000000,0.000186835000000,0.000173008000000,0.011394333000000,0.000046984000000,0.000091230000000 +0.000076613000000,0.000140612000000,0.000036316000000,0.000027047000000,0.000397008000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000308909000000,0.000026849500000,0.000039477000000,0.000417156000000,0.000381205000000,0.000171823000000,0.010819913000000,0.000188021000000,0.000174983000000,0.011551567000000,0.000047378000000,0.000039872000000 +0.000054094000000,0.000142984000000,0.000036317000000,0.000027047000000,0.000322736000000,0.000038687000000,0.000188415000000,0.000030786000000,0.000307724000000,0.000026257500000,0.000039477000000,0.000367774000000,0.000376069000000,0.000171427000000,0.010988999000000,0.000189206000000,0.000173403000000,0.011058926000000,0.000082144000000,0.000039082000000 +0.000039872000000,0.000176564000000,0.000035922000000,0.000027047500000,0.000323527000000,0.000037501000000,0.000222785000000,0.000030786000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000410835000000,0.000392662000000,0.000172613000000,0.010636605000000,0.000207774000000,0.000229107000000,0.010735765000000,0.000046983000000,0.000038292000000 +0.000037107000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000037502000000,0.000188415000000,0.000030391000000,0.000375675000000,0.000026849500000,0.000039477000000,0.000377254000000,0.000369353000000,0.000171428000000,0.011019024000000,0.000189601000000,0.000173008000000,0.010994925000000,0.000047774000000,0.000037897000000 +0.000037502000000,0.000144959000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037897000000,0.000189995000000,0.000087675000000,0.000308909000000,0.000026059500000,0.000039872000000,0.000368563000000,0.000444416000000,0.000174193000000,0.011141888000000,0.000190391000000,0.000173403000000,0.010774481000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000036712000000,0.000027245000000,0.000324711000000,0.000036711000000,0.000187625000000,0.000035131000000,0.000308514000000,0.000025862000000,0.000039478000000,0.000365798000000,0.000366983000000,0.000172218000000,0.011139123000000,0.000189601000000,0.000173008000000,0.011573690000000,0.000047379000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000878588000000,0.000037502000000,0.000225156000000,0.000046588000000,0.000308119000000,0.000044825000000,0.000039477000000,0.000376069000000,0.000407674000000,0.000171427000000,0.011195221000000,0.000223971000000,0.000172218000000,0.011162826000000,0.000046983000000,0.000038292000000 +0.000037896000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000582687000000,0.000037107000000,0.000188811000000,0.000064761000000,0.000307328000000,0.000026059500000,0.000039872000000,0.000406094000000,0.000372513000000,0.000178144000000,0.011108703000000,0.000188810000000,0.000244514000000,0.011081049000000,0.000046984000000,0.000058440000000 +0.000038687000000,0.000226341000000,0.000056070000000,0.000027047000000,0.000325896000000,0.000075823000000,0.000186440000000,0.000081749000000,0.000345254000000,0.000025862000000,0.000039477000000,0.000378044000000,0.000374094000000,0.000171428000000,0.011110283000000,0.000187230000000,0.000171428000000,0.011192456000000,0.000046983000000,0.000054884000000 +0.000037502000000,0.000144564000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000053699000000,0.000188415000000,0.000083724000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000455476000000,0.000411230000000,0.000173008000000,0.010901691000000,0.000189995000000,0.000171822000000,0.011341789000000,0.000046588000000,0.000042243000000 +0.000037897000000,0.000142589000000,0.000036712000000,0.000027837000000,0.000323131000000,0.000036317000000,0.000226341000000,0.000084515000000,0.000306538000000,0.000026257000000,0.000039477000000,0.000371723000000,0.000376464000000,0.000172218000000,0.010962531000000,0.000210538000000,0.000173403000000,0.011007172000000,0.000048168000000,0.000052119000000 +0.000037897000000,0.000145354000000,0.000036317000000,0.000027442500000,0.000324316000000,0.000037897000000,0.000186440000000,0.000082934000000,0.000308909000000,0.000026257500000,0.000039478000000,0.000373304000000,0.000409255000000,0.000172218000000,0.011381691000000,0.000203032000000,0.000174193000000,0.010864555000000,0.000046193000000,0.000038687000000 +0.000037897000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000361057000000,0.000038292000000,0.000190786000000,0.000084514000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000410439000000,0.000373304000000,0.000172613000000,0.011274234000000,0.000187230000000,0.000225946000000,0.010718777000000,0.000046984000000,0.000039082000000 +0.000037501000000,0.000141798000000,0.000036317000000,0.000045220000000,0.000337749000000,0.000038687000000,0.000188416000000,0.000105452000000,0.000308119000000,0.000026652000000,0.000039477000000,0.000402934000000,0.000378440000000,0.000171428000000,0.010872851000000,0.000189205000000,0.000174194000000,0.011358777000000,0.000047773000000,0.000039872000000 +0.000038292000000,0.000176959000000,0.000036317000000,0.000027244500000,0.000323527000000,0.000037897000000,0.000291922000000,0.000084514000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000552267000000,0.000413996000000,0.000171822000000,0.010793444000000,0.000222391000000,0.000172613000000,0.010984258000000,0.000047379000000,0.000039477000000 +0.000038292000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000324712000000,0.000038292000000,0.000186836000000,0.000079378000000,0.000309304000000,0.000026850000000,0.000039477000000,0.000372514000000,0.000374884000000,0.000173403000000,0.010975568000000,0.000191576000000,0.000173008000000,0.010868506000000,0.000048168000000,0.000039873000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000322341000000,0.000036317000000,0.000190786000000,0.000086489000000,0.000306934000000,0.000026257000000,0.000039477000000,0.000423477000000,0.000406884000000,0.000171033000000,0.011192061000000,0.000187230000000,0.000171427000000,0.010942383000000,0.000047379000000,0.000040267000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027640000000,0.000325501000000,0.000037897000000,0.000186835000000,0.000071872000000,0.000346044000000,0.000026454500000,0.000075428000000,0.000380415000000,0.000370538000000,0.000172217000000,0.010942777000000,0.000189600000000,0.000213699000000,0.011207468000000,0.000047378000000,0.000039082000000 +0.000037501000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000257551000000,0.000077403000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000381601000000,0.000376860000000,0.000175773000000,0.011002827000000,0.000226341000000,0.000172613000000,0.011230382000000,0.000047379000000,0.000054490000000 +0.000037897000000,0.000143774000000,0.000036316000000,0.000027245000000,0.000339724000000,0.000036711000000,0.000188810000000,0.000068316000000,0.000307724000000,0.000026059500000,0.000039478000000,0.000414785000000,0.000445600000000,0.000172218000000,0.011007567000000,0.000189205000000,0.000171428000000,0.010981493000000,0.000046983000000,0.000038687000000 +0.000037502000000,0.000210539000000,0.000036712000000,0.000027047500000,0.000343280000000,0.000037502000000,0.000188020000000,0.000062786000000,0.000309699000000,0.000026454500000,0.000039872000000,0.000373700000000,0.000371724000000,0.000172218000000,0.011135962000000,0.000187230000000,0.000178934000000,0.010723518000000,0.000048169000000,0.000038687000000 +0.000398588000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000381601000000,0.000071477000000,0.000187230000000,0.000047378000000,0.000308119000000,0.000026454500000,0.000059625000000,0.000415575000000,0.000405304000000,0.000176168000000,0.010977543000000,0.000186835000000,0.000175773000000,0.010984259000000,0.000047378000000,0.000038687000000 +0.000039872000000,0.000140218000000,0.000036316000000,0.000027047000000,0.000344069000000,0.000039082000000,0.000234243000000,0.000033551000000,0.000308514000000,0.000045220000000,0.000074243000000,0.000367774000000,0.000378440000000,0.000173798000000,0.011163617000000,0.000223576000000,0.000208958000000,0.011616752000000,0.000046984000000,0.000039083000000 +0.000040267000000,0.000141403000000,0.000036317000000,0.000027245000000,0.000342094000000,0.000050144000000,0.000186440000000,0.000033551000000,0.000344860000000,0.000068133500000,0.000052119000000,0.000425847000000,0.000412020000000,0.000174983000000,0.010807667000000,0.000450736000000,0.000173008000000,0.010972802000000,0.000046983000000,0.000040662000000 +0.000052909000000,0.000143379000000,0.000036317000000,0.000027047000000,0.000344070000000,0.000037502000000,0.000188020000000,0.000081354000000,0.000308514000000,0.000078602500000,0.000039477000000,0.000374884000000,0.000365403000000,0.000170638000000,0.011583962000000,0.000200662000000,0.000216860000000,0.011140703000000,0.000047774000000,0.000037897000000 +0.000038292000000,0.000143378000000,0.000035922000000,0.000027047000000,0.000341304000000,0.000037502000000,0.000188020000000,0.000033552000000,0.000308119000000,0.000087887000000,0.000039082000000,0.000374884000000,0.000373699000000,0.000173008000000,0.010789888000000,0.000270193000000,0.000186045000000,0.010964901000000,0.000046588000000,0.000037897000000 +0.000038292000000,0.000211724000000,0.000036316000000,0.000027047000000,0.000345650000000,0.000037107000000,0.000223971000000,0.000033156000000,0.000351971000000,0.000085516000000,0.000039082000000,0.000421897000000,0.000402144000000,0.000171427000000,0.010885098000000,0.000186440000000,0.000229107000000,0.011437789000000,0.000046983000000,0.000039477000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027442500000,0.000346440000000,0.000073058000000,0.000187230000000,0.000033156000000,0.000709897000000,0.000068133500000,0.000039477000000,0.000374489000000,0.000380810000000,0.000306143000000,0.011167962000000,0.000188810000000,0.000186835000000,0.011311764000000,0.000046588000000,0.000039083000000 +0.000038687000000,0.000140217000000,0.000036317000000,0.000027244500000,0.000343280000000,0.000037897000000,0.000189995000000,0.000033551000000,0.000308119000000,0.000042257000000,0.000039872000000,0.000419526000000,0.000411625000000,0.000172613000000,0.011256851000000,0.000190391000000,0.000174588000000,0.010690728000000,0.000046983000000,0.000039477000000 +0.000037502000000,0.000144959000000,0.000072663000000,0.000037121500000,0.000345650000000,0.000036711000000,0.000189206000000,0.000033551000000,0.000308119000000,0.000026455000000,0.000039872000000,0.000374884000000,0.000369354000000,0.000172217000000,0.011108308000000,0.000223576000000,0.000172613000000,0.011288061000000,0.000046984000000,0.000038687000000 +0.000037501000000,0.000140613000000,0.000036712000000,0.000027047000000,0.000343280000000,0.000038292000000,0.000225946000000,0.000033551000000,0.000308119000000,0.000026257000000,0.000039478000000,0.000369748000000,0.000374884000000,0.000217650000000,0.011004012000000,0.000186835000000,0.000173403000000,0.011501394000000,0.000046983000000,0.000040268000000 +0.000037897000000,0.000143378000000,0.000035921000000,0.000027047500000,0.000342490000000,0.000037897000000,0.000189995000000,0.000033156000000,0.000308119000000,0.000026849500000,0.000039477000000,0.000417551000000,0.000472860000000,0.000173403000000,0.010799765000000,0.000186835000000,0.000215674000000,0.010622778000000,0.000047378000000,0.000039872000000 +0.000037502000000,0.000213305000000,0.000036317000000,0.000027047000000,0.000383181000000,0.000038687000000,0.000188810000000,0.000033946000000,0.000308909000000,0.000026652000000,0.000039872000000,0.000382786000000,0.000372909000000,0.000171822000000,0.011128456000000,0.000186835000000,0.000172218000000,0.011148999000000,0.000046983000000,0.000039872000000 +0.000038292000000,0.000142984000000,0.000036317000000,0.000027244500000,0.000344464000000,0.000036712000000,0.000188415000000,0.000033156000000,0.000308119000000,0.000026257500000,0.000039477000000,0.000414786000000,0.000415181000000,0.000171033000000,0.011398283000000,0.000280069000000,0.000173403000000,0.011191665000000,0.000047378000000,0.000038687000000 +0.000056860000000,0.000139822000000,0.000036316000000,0.000027245000000,0.000343279000000,0.000037107000000,0.000223576000000,0.000033551000000,0.000328267000000,0.000026257000000,0.000039477000000,0.000368958000000,0.000379230000000,0.000171033000000,0.011221691000000,0.000190391000000,0.000171032000000,0.011061691000000,0.000047379000000,0.000037897000000 +0.000065156000000,0.000143774000000,0.000036316000000,0.000027245000000,0.000344069000000,0.000037897000000,0.000190786000000,0.000033156000000,0.000583477000000,0.000025862000000,0.000039478000000,0.000373305000000,0.000389501000000,0.000171033000000,0.011103172000000,0.000186835000000,0.000176958000000,0.011153345000000,0.000046588000000,0.000037896000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000343279000000,0.000037502000000,0.000187626000000,0.000033156000000,0.000307328000000,0.000026257000000,0.000075427000000,0.000408464000000,0.000371724000000,0.000171427000000,0.011197197000000,0.000191971000000,0.000208958000000,0.010926184000000,0.000047774000000,0.000037106000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000345650000000,0.000037502000000,0.000190391000000,0.000033946000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000372514000000,0.000376070000000,0.000205798000000,0.011265147000000,0.000225156000000,0.000172218000000,0.011801246000000,0.000082539000000,0.000039477000000 +0.000037501000000,0.000175773000000,0.000036316000000,0.000027047500000,0.000349205000000,0.000038292000000,0.000237008000000,0.000033946000000,0.000307724000000,0.000026257000000,0.000039873000000,0.000433748000000,0.000411230000000,0.000173798000000,0.011017444000000,0.000191971000000,0.000173403000000,0.011022580000000,0.000047773000000,0.000059230000000 +0.000037897000000,0.000142983000000,0.000036712000000,0.000027047000000,0.000343280000000,0.000038687000000,0.000187230000000,0.000033551000000,0.000307724000000,0.000026850000000,0.000039477000000,0.000370934000000,0.000369353000000,0.000173403000000,0.011029691000000,0.000188415000000,0.000174983000000,0.011991666000000,0.000046984000000,0.000052120000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000345255000000,0.000037502000000,0.000189600000000,0.000033946000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000431773000000,0.000410835000000,0.000174983000000,0.010805296000000,0.000186835000000,0.000171823000000,0.011220901000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027442500000,0.000344069000000,0.000037502000000,0.000190390000000,0.000033551000000,0.000308119000000,0.000026257000000,0.000039477000000,0.000445600000000,0.000372119000000,0.000174588000000,0.011450826000000,0.000259526000000,0.000210538000000,0.010801345000000,0.000046983000000,0.000039477000000 +0.000038292000000,0.000143773000000,0.000037107000000,0.000027837000000,0.000344860000000,0.000037501000000,0.000224761000000,0.000033156000000,0.000378045000000,0.000026257000000,0.000039082000000,0.000372909000000,0.000366983000000,0.000174193000000,0.011209443000000,0.000190390000000,0.000173403000000,0.010921049000000,0.000046589000000,0.000038687000000 +0.000038292000000,0.000140613000000,0.000035922000000,0.000027245000000,0.000344070000000,0.000038687000000,0.000187625000000,0.000033551000000,0.000349205000000,0.000027245000000,0.000039477000000,0.000412415000000,0.000528958000000,0.000172217000000,0.010850333000000,0.000189995000000,0.000173798000000,0.011325987000000,0.000046983000000,0.000038292000000 +0.000037897000000,0.000196316000000,0.000036317000000,0.000027245000000,0.000344465000000,0.000037107000000,0.000189206000000,0.000033551000000,0.000306934000000,0.000026257000000,0.000039083000000,0.000378439000000,0.000374094000000,0.000173008000000,0.011422777000000,0.000186835000000,0.000172613000000,0.010991765000000,0.000047774000000,0.000039873000000 +0.000037501000000,0.000372513000000,0.000035921000000,0.000036528500000,0.000343280000000,0.000036316000000,0.000189206000000,0.000054094000000,0.000308514000000,0.000043837000000,0.000039477000000,0.000468514000000,0.000446786000000,0.000172217000000,0.011316900000000,0.000237798000000,0.000174588000000,0.010751172000000,0.000046983000000,0.000040267000000 +0.000037897000000,0.000158390000000,0.000036316000000,0.000035343500000,0.000344465000000,0.000037501000000,0.000222786000000,0.000033551000000,0.000308909000000,0.000032973000000,0.000039082000000,0.000367378000000,0.000370933000000,0.000174193000000,0.011133197000000,0.000188020000000,0.000446785000000,0.011238678000000,0.000046983000000,0.000039873000000 +0.000038292000000,0.000144563000000,0.000036317000000,0.000027047000000,0.000351575000000,0.000037107000000,0.000190390000000,0.000035131000000,0.000307329000000,0.000026257000000,0.000039082000000,0.000417156000000,0.000429403000000,0.000171823000000,0.010980308000000,0.000189205000000,0.000226737000000,0.011319665000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000050934000000,0.000186045000000,0.000037107000000,0.000307723000000,0.000026059500000,0.000039477000000,0.000387921000000,0.000370539000000,0.000171823000000,0.011005592000000,0.000189205000000,0.000175773000000,0.010920259000000,0.000047378000000,0.000040662000000 +0.000037502000000,0.000176564000000,0.000036711000000,0.000027047500000,0.000360662000000,0.000037501000000,0.000186439000000,0.000033552000000,0.000308909000000,0.000026059500000,0.000039082000000,0.000374885000000,0.000375675000000,0.000171033000000,0.011105938000000,0.000238588000000,0.000210539000000,0.010917494000000,0.000047774000000,0.000038687000000 +0.000037501000000,0.000144958000000,0.000088070000000,0.000027244500000,0.000374095000000,0.000038292000000,0.000258736000000,0.000033947000000,0.000307328000000,0.000026652500000,0.000039477000000,0.000431378000000,0.000413205000000,0.000172613000000,0.011346925000000,0.000188415000000,0.000174588000000,0.011179814000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000321946000000,0.000037897000000,0.000209748000000,0.000033552000000,0.000307724000000,0.000026652000000,0.000039082000000,0.000364218000000,0.000372514000000,0.000171428000000,0.010884703000000,0.000187230000000,0.000172218000000,0.011157296000000,0.000059626000000,0.000040267000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027047500000,0.000323131000000,0.000037106000000,0.000201847000000,0.000033551000000,0.000308514000000,0.000027047000000,0.000039477000000,0.000425057000000,0.000455477000000,0.000172217000000,0.011863270000000,0.000189206000000,0.000171033000000,0.010925000000000,0.000044613000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000035922000000,0.000027245000000,0.000325106000000,0.000037897000000,0.000186835000000,0.000033551000000,0.000309304000000,0.000026059500000,0.000039477000000,0.000369749000000,0.000375675000000,0.000173008000000,0.011101197000000,0.000222391000000,0.000171427000000,0.010809642000000,0.000044613000000,0.000039478000000 +0.000037502000000,0.000144169000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037502000000,0.000238983000000,0.000033156000000,0.000306934000000,0.000026652500000,0.000039477000000,0.000381600000000,0.000381600000000,0.000171033000000,0.011306234000000,0.000190786000000,0.000245304000000,0.010879963000000,0.000101107000000,0.000038292000000 +0.000037897000000,0.000176168000000,0.000035921000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000188810000000,0.000032761000000,0.000309304000000,0.000026454500000,0.000039872000000,0.000406884000000,0.000390687000000,0.000173403000000,0.011135963000000,0.000188416000000,0.000173008000000,0.012822085000000,0.000094786000000,0.000038687000000 +0.000057650000000,0.000144168000000,0.000036316000000,0.000027047500000,0.000324711000000,0.000036711000000,0.000188810000000,0.000033156000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000374884000000,0.000385551000000,0.000173798000000,0.010842036000000,0.000189206000000,0.000173008000000,0.011562234000000,0.000085305000000,0.000038687000000 +0.000077403000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000187230000000,0.000033156000000,0.000307724000000,0.000026454500000,0.000075428000000,0.000415971000000,0.000415181000000,0.000173008000000,0.011327962000000,0.000273749000000,0.000173403000000,0.011642826000000,0.000058835000000,0.000039477000000 +0.000052119000000,0.000140613000000,0.000036712000000,0.000027244500000,0.000323526000000,0.000036317000000,0.000331823000000,0.000033551000000,0.000306933000000,0.000026652500000,0.000039477000000,0.000374489000000,0.000376464000000,0.000174589000000,0.011221295000000,0.000188810000000,0.000175378000000,0.011813493000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000035921000000,0.000027442500000,0.000324712000000,0.000038292000000,0.000205403000000,0.000033946000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000418736000000,0.000411625000000,0.000171823000000,0.010733395000000,0.000189205000000,0.000259527000000,0.011828109000000,0.000044613000000,0.000080563000000 +0.000038687000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000322736000000,0.000036711000000,0.000188020000000,0.000033551000000,0.000308119000000,0.000026257000000,0.000039872000000,0.000380020000000,0.000374489000000,0.000172218000000,0.011605691000000,0.000189600000000,0.000174588000000,0.011674431000000,0.000044218000000,0.000039478000000 +0.000038292000000,0.000177748000000,0.000036317000000,0.000027244500000,0.000450736000000,0.000037501000000,0.000189996000000,0.000034736000000,0.000306538000000,0.000062010000000,0.000039872000000,0.000375674000000,0.000366983000000,0.000172218000000,0.011872752000000,0.000206193000000,0.000174193000000,0.011478876000000,0.000043823000000,0.000039082000000 +0.000037502000000,0.000143378000000,0.000055279000000,0.000045022500000,0.000326687000000,0.000037897000000,0.000205008000000,0.000033551000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000410835000000,0.000441255000000,0.000173798000000,0.011621098000000,0.000189206000000,0.000172612000000,0.011074333000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000052514000000,0.000027442500000,0.000325502000000,0.000036712000000,0.000188020000000,0.000033156000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000381206000000,0.000430983000000,0.000176168000000,0.010868900000000,0.000188416000000,0.000211724000000,0.011306234000000,0.000044613000000,0.000037107000000 +0.000038292000000,0.000142984000000,0.000039872000000,0.000027047500000,0.000323132000000,0.000037897000000,0.000188020000000,0.000033156000000,0.000307329000000,0.000026060000000,0.000039477000000,0.000440069000000,0.000493798000000,0.000171823000000,0.011172703000000,0.000189601000000,0.000174589000000,0.010711666000000,0.000044218000000,0.000038687000000 +0.000037896000000,0.000143774000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000207773000000,0.000033551000000,0.000345255000000,0.000025862000000,0.000039478000000,0.000367774000000,0.000375279000000,0.000172613000000,0.010974382000000,0.000270983000000,0.000172218000000,0.010902876000000,0.000043822000000,0.000040268000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000036317000000,0.000204613000000,0.000034341000000,0.000308513000000,0.000026849500000,0.000039477000000,0.000374094000000,0.000410045000000,0.000171822000000,0.011515221000000,0.000188020000000,0.000175378000000,0.011251715000000,0.000043822000000,0.000039082000000 +0.000038687000000,0.000183279000000,0.000036317000000,0.000028035000000,0.000323131000000,0.000036712000000,0.000187625000000,0.000056860000000,0.000306934000000,0.000026652000000,0.000039872000000,0.000465748000000,0.000379230000000,0.000172218000000,0.010927765000000,0.000187230000000,0.000172218000000,0.011357987000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000142983000000,0.000072267000000,0.000027244500000,0.000323921000000,0.000073058000000,0.000186835000000,0.000033551000000,0.000308909000000,0.000026454500000,0.000039082000000,0.000434144000000,0.000371724000000,0.000171032000000,0.010793049000000,0.000189996000000,0.000214489000000,0.010973987000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000323922000000,0.000036317000000,0.000226736000000,0.000033551000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000415576000000,0.000419527000000,0.000174588000000,0.011082233000000,0.000204218000000,0.000172613000000,0.011029296000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000144169000000,0.000036711000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000187625000000,0.000033946000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000374489000000,0.000372909000000,0.000174193000000,0.011371814000000,0.000189996000000,0.000173008000000,0.010687962000000,0.000063971000000,0.000039082000000 +0.000038292000000,0.000144958000000,0.000036712000000,0.000027047000000,0.000323922000000,0.000037106000000,0.000187625000000,0.000033156000000,0.000344859000000,0.000026059500000,0.000039083000000,0.000409255000000,0.000609946000000,0.000174193000000,0.010860209000000,0.000190391000000,0.000172612000000,0.010819913000000,0.000119280000000,0.000039872000000 +0.000037502000000,0.000146539000000,0.000037107000000,0.000027047000000,0.000325502000000,0.000035921000000,0.000187230000000,0.000033551000000,0.000306933000000,0.000025862000000,0.000039477000000,0.000378045000000,0.000440464000000,0.000172613000000,0.011047468000000,0.000188810000000,0.000173403000000,0.010959370000000,0.000131132000000,0.000039872000000 +0.000038292000000,0.000179724000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000036712000000,0.000264663000000,0.000033946000000,0.000307724000000,0.000045615000000,0.000039872000000,0.000382785000000,0.000423871000000,0.000178144000000,0.010830975000000,0.000186835000000,0.000244119000000,0.010915913000000,0.000134687000000,0.000039477000000 +0.000038292000000,0.000144958000000,0.000036317000000,0.000027047500000,0.000323527000000,0.000037897000000,0.000201452000000,0.000032366000000,0.000308514000000,0.000028232500000,0.000039872000000,0.000408069000000,0.000368168000000,0.000172218000000,0.011002036000000,0.000187230000000,0.000174193000000,0.011409740000000,0.000115724000000,0.000039082000000 +0.000038687000000,0.000142193000000,0.000035922000000,0.000027442000000,0.000324711000000,0.000037107000000,0.000191181000000,0.000032761000000,0.000306538000000,0.000033566000000,0.000039477000000,0.000372909000000,0.000453106000000,0.000170638000000,0.011557097000000,0.000186440000000,0.000173008000000,0.011071172000000,0.000082539000000,0.000039082000000 +0.000037897000000,0.000145354000000,0.000035921000000,0.000027245000000,0.000324712000000,0.000037896000000,0.000188020000000,0.000032366000000,0.000307724000000,0.000061812500000,0.000039082000000,0.000410440000000,0.000377649000000,0.000172218000000,0.012320356000000,0.000187230000000,0.000173403000000,0.011382875000000,0.000046983000000,0.000038292000000 +0.000074242000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000324712000000,0.000037897000000,0.000258341000000,0.000032366000000,0.000308909000000,0.000026652000000,0.000039478000000,0.000431378000000,0.000372909000000,0.000173007000000,0.011449245000000,0.000226341000000,0.000172613000000,0.011240258000000,0.000046984000000,0.000039082000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000045022500000,0.000323921000000,0.000038292000000,0.000200268000000,0.000032366000000,0.000308119000000,0.000026850000000,0.000108217000000,0.000404119000000,0.000407674000000,0.000173403000000,0.011045098000000,0.000216860000000,0.000220020000000,0.010783962000000,0.000057650000000,0.000038292000000 +0.000037897000000,0.000141798000000,0.000035922000000,0.000027047000000,0.000322341000000,0.000037897000000,0.000189996000000,0.000031971000000,0.000308119000000,0.000026652000000,0.000042242000000,0.000371329000000,0.000372119000000,0.000171822000000,0.011526677000000,0.000187625000000,0.000171032000000,0.011181789000000,0.000060810000000,0.000039082000000 +0.000037897000000,0.000222391000000,0.000036711000000,0.000027244500000,0.000324711000000,0.000036712000000,0.000190391000000,0.000050934000000,0.000307329000000,0.000026454500000,0.000038687000000,0.000369354000000,0.000450341000000,0.000172613000000,0.013107319000000,0.000189995000000,0.000172217000000,0.011349691000000,0.000067527000000,0.000109798000000 +0.000037897000000,0.000141007000000,0.000036317000000,0.000027047500000,0.000330637000000,0.000036712000000,0.000225947000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000415576000000,0.000372909000000,0.000174588000000,0.011479666000000,0.000350785000000,0.000178934000000,0.010721148000000,0.000082539000000,0.000038687000000 +0.000037897000000,0.000145749000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000037896000000,0.000189206000000,0.000030390000000,0.000307723000000,0.000026652500000,0.000039082000000,0.000381995000000,0.000411625000000,0.000179724000000,0.011927271000000,0.000203427000000,0.000171033000000,0.011209048000000,0.000059230000000,0.000039873000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000038292000000,0.000190391000000,0.000031181000000,0.000329452000000,0.000025862000000,0.000039082000000,0.000413601000000,0.000380415000000,0.000172613000000,0.011412505000000,0.000186835000000,0.000242934000000,0.011087765000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000142193000000,0.000036711000000,0.000027047000000,0.000326292000000,0.000038292000000,0.000188415000000,0.000030786000000,0.000325896000000,0.000026454500000,0.000039477000000,0.000374094000000,0.000374094000000,0.000171822000000,0.011197592000000,0.000189601000000,0.000177748000000,0.011481641000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000035922000000,0.000027047500000,0.000324712000000,0.000035921000000,0.000263081000000,0.000030390000000,0.000307329000000,0.000026652000000,0.000039477000000,0.000379230000000,0.000462983000000,0.000172218000000,0.011150975000000,0.000188415000000,0.000172218000000,0.010693888000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000158390000000,0.000036317000000,0.000027244500000,0.000326292000000,0.000038687000000,0.000188811000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000403329000000,0.000366588000000,0.000173008000000,0.010895765000000,0.000187625000000,0.000191971000000,0.010900901000000,0.000044613000000,0.000039083000000 +0.000037502000000,0.000142193000000,0.000036711000000,0.000027047000000,0.000326687000000,0.000037107000000,0.000190391000000,0.000030786000000,0.000307328000000,0.000026652500000,0.000039477000000,0.000383576000000,0.000417946000000,0.000249650000000,0.010867320000000,0.000186835000000,0.000297057000000,0.011020999000000,0.000045008000000,0.000038687000000 +0.000037897000000,0.000144959000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000189601000000,0.000050539000000,0.000307724000000,0.000026059500000,0.000039872000000,0.000493403000000,0.000373699000000,0.000229897000000,0.011226827000000,0.000225156000000,0.000171822000000,0.011214975000000,0.000064761000000,0.000039082000000 +0.000037897000000,0.000142588000000,0.000072662000000,0.000027245000000,0.000359081000000,0.000054489000000,0.000225552000000,0.000030786000000,0.000307329000000,0.000026454500000,0.000039478000000,0.000389897000000,0.000368958000000,0.000171823000000,0.010778431000000,0.000188416000000,0.000173008000000,0.010973592000000,0.000127181000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000037897000000,0.000027442000000,0.000444020000000,0.000038292000000,0.000186440000000,0.000029996000000,0.000348810000000,0.000025862000000,0.000039477000000,0.000412810000000,0.000447576000000,0.000173007000000,0.011191271000000,0.000189206000000,0.000171823000000,0.010972801000000,0.000061601000000,0.000039477000000 +0.000038292000000,0.000144563000000,0.000036316000000,0.000027244500000,0.000356316000000,0.000037502000000,0.000187625000000,0.000032366000000,0.000307328000000,0.000035738500000,0.000039477000000,0.000374490000000,0.000372514000000,0.000177749000000,0.011063666000000,0.000189601000000,0.000174588000000,0.010917099000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000212119000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000038292000000,0.000188021000000,0.000031181000000,0.000309699000000,0.000042652000000,0.000039477000000,0.000372514000000,0.000421107000000,0.000172613000000,0.011138727000000,0.000230292000000,0.000244514000000,0.010859419000000,0.000044613000000,0.000037897000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027639500000,0.000325501000000,0.000037106000000,0.000261107000000,0.000030390000000,0.000307723000000,0.000026060000000,0.000039082000000,0.000459822000000,0.000369748000000,0.000171822000000,0.010957394000000,0.000189600000000,0.000173403000000,0.011144654000000,0.000043427000000,0.000039082000000 +0.000037897000000,0.000144564000000,0.000036316000000,0.000044430000000,0.000323131000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000306934000000,0.000026652000000,0.000039477000000,0.000370143000000,0.000503280000000,0.000171823000000,0.011817444000000,0.000191181000000,0.000172613000000,0.010999271000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000140218000000,0.000036316000000,0.000055689000000,0.000324711000000,0.000037897000000,0.000187231000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039478000000,0.000424267000000,0.000374884000000,0.000171033000000,0.011092111000000,0.000190786000000,0.000171427000000,0.010676110000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000037121500000,0.000477205000000,0.000037897000000,0.000187230000000,0.000030390000000,0.000437699000000,0.000026454500000,0.000039082000000,0.000383576000000,0.000368564000000,0.000217649000000,0.010818728000000,0.000222786000000,0.000173798000000,0.011064061000000,0.000112564000000,0.000038292000000 +0.000038292000000,0.000144168000000,0.000036317000000,0.000034948000000,0.000323921000000,0.000037107000000,0.000381600000000,0.000031576000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000414785000000,0.000413600000000,0.000172612000000,0.010960555000000,0.000186440000000,0.000190786000000,0.011236308000000,0.000045008000000,0.000038292000000 +0.000037502000000,0.000178144000000,0.000035921000000,0.000027245000000,0.000323527000000,0.000037107000000,0.000187625000000,0.000030785000000,0.000310490000000,0.000026455000000,0.000073057000000,0.000380020000000,0.000376070000000,0.000171428000000,0.010829394000000,0.000187230000000,0.000173008000000,0.011000456000000,0.000043823000000,0.000040268000000 +0.000058835000000,0.000144563000000,0.000036316000000,0.000027047000000,0.000322341000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000307329000000,0.000026652500000,0.000039872000000,0.000372909000000,0.000425057000000,0.000171428000000,0.011143469000000,0.000186835000000,0.000173008000000,0.011092505000000,0.000044613000000,0.000038687000000 +0.000054094000000,0.000140218000000,0.000036317000000,0.000027047000000,0.000322736000000,0.000037107000000,0.000224761000000,0.000030391000000,0.000307329000000,0.000026257000000,0.000039478000000,0.000422292000000,0.000366193000000,0.000173798000000,0.010766185000000,0.000226737000000,0.000172218000000,0.011217345000000,0.000043823000000,0.000074638000000 +0.000040267000000,0.000143773000000,0.000036317000000,0.000027245000000,0.000361057000000,0.000037106000000,0.000188020000000,0.000030390000000,0.000308909000000,0.000026454500000,0.000039872000000,0.000372909000000,0.000364613000000,0.000173008000000,0.011027715000000,0.000186835000000,0.000173008000000,0.011157691000000,0.000043822000000,0.000039082000000 +0.000043033000000,0.000141008000000,0.000036316000000,0.000027047500000,0.000324712000000,0.000038292000000,0.000188810000000,0.000030391000000,0.000344860000000,0.000026257000000,0.000039082000000,0.000564119000000,0.000411625000000,0.000171822000000,0.011060110000000,0.000186835000000,0.000536859000000,0.011004011000000,0.000044218000000,0.000040267000000 +0.000040268000000,0.000144563000000,0.000036317000000,0.000027442000000,0.000323527000000,0.000037502000000,0.000220810000000,0.000030391000000,0.000306933000000,0.000026454500000,0.000039872000000,0.000487477000000,0.000374884000000,0.000173008000000,0.011242233000000,0.000186835000000,0.000223576000000,0.011351665000000,0.000044218000000,0.000038687000000 +0.000041057000000,0.000178539000000,0.000036317000000,0.000027047500000,0.000323131000000,0.000036711000000,0.000222785000000,0.000030390000000,0.000307329000000,0.000025664500000,0.000039477000000,0.000413996000000,0.000684218000000,0.000173403000000,0.010844407000000,0.000225156000000,0.000207773000000,0.010894185000000,0.000044613000000,0.000039083000000 +0.000040267000000,0.000142984000000,0.000036712000000,0.000027047500000,0.000324711000000,0.000037107000000,0.000188415000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000039873000000,0.000372119000000,0.000492218000000,0.000171428000000,0.011364307000000,0.000188415000000,0.000171032000000,0.011392357000000,0.000044218000000,0.000040267000000 +0.000040268000000,0.000140217000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000190391000000,0.000030786000000,0.000399378000000,0.000026454500000,0.000039477000000,0.000408860000000,0.000402539000000,0.000174589000000,0.010861790000000,0.000188415000000,0.000178539000000,0.011054975000000,0.000044218000000,0.000039082000000 +0.000063971000000,0.000144169000000,0.000036317000000,0.000027047000000,0.000373699000000,0.000037107000000,0.000186440000000,0.000030785000000,0.000308119000000,0.000052924000000,0.000039082000000,0.000376859000000,0.000371724000000,0.000171823000000,0.011322431000000,0.000189600000000,0.000174193000000,0.010927370000000,0.000044218000000,0.000039477000000 +0.000073057000000,0.000142984000000,0.000036317000000,0.000027245000000,0.000321946000000,0.000037107000000,0.000225551000000,0.000029996000000,0.000344069000000,0.000034158000000,0.000039477000000,0.000431379000000,0.000416366000000,0.000172218000000,0.011581986000000,0.000225946000000,0.000173798000000,0.010728654000000,0.000044218000000,0.000038687000000 +0.000040663000000,0.000150095000000,0.000036317000000,0.000036134000000,0.000324712000000,0.000057650000000,0.000186835000000,0.000031181000000,0.000307329000000,0.000028034500000,0.000039082000000,0.000412020000000,0.000374489000000,0.000173403000000,0.010804506000000,0.000187231000000,0.000210144000000,0.011386826000000,0.000044613000000,0.000039872000000 +0.000040267000000,0.000178933000000,0.000109798000000,0.000027244500000,0.000323921000000,0.000069897000000,0.000187230000000,0.000030786000000,0.000306934000000,0.000027640000000,0.000039872000000,0.000367773000000,0.000407280000000,0.000171428000000,0.011412900000000,0.000186835000000,0.000171033000000,0.010862580000000,0.000044613000000,0.000038687000000 +0.000039872000000,0.000142984000000,0.000108217000000,0.000027047000000,0.000325502000000,0.000037502000000,0.000188810000000,0.000031576000000,0.000308909000000,0.000027640000000,0.000039477000000,0.000462587000000,0.000373304000000,0.000174588000000,0.011164406000000,0.000188810000000,0.000171427000000,0.010985839000000,0.000044613000000,0.000039477000000 +0.000041058000000,0.000141403000000,0.000106638000000,0.000027245000000,0.000324317000000,0.000037106000000,0.000226341000000,0.000080563000000,0.000308119000000,0.000027442000000,0.000039082000000,0.000388711000000,0.000373304000000,0.000173798000000,0.011128061000000,0.000225551000000,0.000173798000000,0.010831765000000,0.000044217000000,0.000039477000000 +0.000067526000000,0.000142984000000,0.000072267000000,0.000027245000000,0.000361057000000,0.000037502000000,0.000189600000000,0.000045403000000,0.000308119000000,0.000027442500000,0.000039477000000,0.000429798000000,0.000408464000000,0.000172613000000,0.010801740000000,0.000189206000000,0.000171823000000,0.011659814000000,0.000044218000000,0.000038687000000 +0.000041057000000,0.000142984000000,0.000038687000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000187625000000,0.000030390000000,0.000344464000000,0.000027442500000,0.000039477000000,0.000435328000000,0.000375674000000,0.000173799000000,0.010898925000000,0.000189206000000,0.000210144000000,0.011406184000000,0.000080169000000,0.000038687000000 +0.000040662000000,0.000140612000000,0.000038687000000,0.000028035000000,0.000324316000000,0.000038292000000,0.000188416000000,0.000031181000000,0.000308119000000,0.000027442000000,0.000039082000000,0.000364613000000,0.000404514000000,0.000174588000000,0.011272653000000,0.000186835000000,0.000173008000000,0.011280554000000,0.000044218000000,0.000038292000000 +0.000039873000000,0.000144169000000,0.000049354000000,0.000027442000000,0.000326291000000,0.000038292000000,0.000222786000000,0.000030390000000,0.000308119000000,0.000027442500000,0.000039477000000,0.000423082000000,0.000369749000000,0.000170637000000,0.011031666000000,0.000223971000000,0.000176169000000,0.011467419000000,0.000044613000000,0.000038687000000 +0.000040662000000,0.000208169000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037502000000,0.000192366000000,0.000030786000000,0.000308514000000,0.000027837500000,0.000039082000000,0.000370934000000,0.000374094000000,0.000174588000000,0.010700604000000,0.000189600000000,0.000175378000000,0.011084210000000,0.000044218000000,0.000038291000000 +0.000037897000000,0.000141402000000,0.000036316000000,0.000027640000000,0.000323131000000,0.000037107000000,0.000186440000000,0.000030391000000,0.000309304000000,0.000028232500000,0.000039873000000,0.000419131000000,0.000454292000000,0.000173403000000,0.010919864000000,0.000187625000000,0.000173008000000,0.011465838000000,0.000043822000000,0.000039082000000 +0.000038292000000,0.000142984000000,0.000035922000000,0.000037516000000,0.000361452000000,0.000037896000000,0.000190786000000,0.000049748000000,0.000306933000000,0.000027244500000,0.000075032000000,0.000375675000000,0.000372909000000,0.000171823000000,0.011199172000000,0.000189206000000,0.000246094000000,0.011175468000000,0.000044217000000,0.000039477000000 +0.000038291000000,0.000141403000000,0.000036317000000,0.000029022500000,0.000323922000000,0.000037502000000,0.000223971000000,0.000048169000000,0.000365008000000,0.000028035000000,0.000039082000000,0.000375674000000,0.000421106000000,0.000172612000000,0.011213000000000,0.000292712000000,0.000173798000000,0.011095271000000,0.000044218000000,0.000059230000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000033961000000,0.000422687000000,0.000037897000000,0.000189600000000,0.000035527000000,0.000306934000000,0.000027442500000,0.000039478000000,0.000444020000000,0.000379230000000,0.000174193000000,0.010879963000000,0.000187625000000,0.000172613000000,0.010876406000000,0.000044613000000,0.000102687000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000342489000000,0.000038292000000,0.000187230000000,0.000034736000000,0.000307723000000,0.000028034500000,0.000039477000000,0.000374489000000,0.000446785000000,0.000172613000000,0.011443320000000,0.000190786000000,0.000171428000000,0.011174679000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000157205000000,0.000056070000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000188811000000,0.000030390000000,0.000309304000000,0.000027442000000,0.000039872000000,0.000413205000000,0.000373699000000,0.000172613000000,0.010842827000000,0.000187230000000,0.000173403000000,0.010757888000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000035922000000,0.000047985500000,0.000368168000000,0.000037107000000,0.000244514000000,0.000031181000000,0.000359476000000,0.000028232500000,0.000039477000000,0.000379625000000,0.000379625000000,0.000172218000000,0.010999271000000,0.000241749000000,0.000210143000000,0.011009148000000,0.000044218000000,0.000038687000000 +0.000037107000000,0.000142193000000,0.000035921000000,0.000027244500000,0.000324316000000,0.000037107000000,0.000186835000000,0.000031181000000,0.000308119000000,0.000027442500000,0.000039477000000,0.000412810000000,0.000468514000000,0.000172613000000,0.010784357000000,0.000190390000000,0.000174193000000,0.010916703000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000035921000000,0.000027245000000,0.000325501000000,0.000038292000000,0.000187230000000,0.000030786000000,0.000365403000000,0.000027442000000,0.000039477000000,0.000374489000000,0.000368563000000,0.000174193000000,0.011493888000000,0.000190390000000,0.000172217000000,0.012140999000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000375674000000,0.000037502000000,0.000189601000000,0.000030391000000,0.000308909000000,0.000027640000000,0.000039478000000,0.000381205000000,0.000410440000000,0.000173798000000,0.011562628000000,0.000189205000000,0.000171427000000,0.011131616000000,0.000044218000000,0.000039872000000 +0.000038687000000,0.000142589000000,0.000035922000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000223181000000,0.000031180000000,0.000307724000000,0.000027639500000,0.000039872000000,0.000439674000000,0.000373699000000,0.000173403000000,0.011817839000000,0.000240563000000,0.000173403000000,0.010699420000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000182490000000,0.000036316000000,0.000027245000000,0.000323921000000,0.000073453000000,0.000187626000000,0.000029996000000,0.000308119000000,0.000028034500000,0.000039872000000,0.000367774000000,0.000397008000000,0.000171033000000,0.011051814000000,0.000188020000000,0.000188415000000,0.010845197000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000144168000000,0.000035921000000,0.000027047500000,0.000361452000000,0.000037107000000,0.000187625000000,0.000030786000000,0.000306934000000,0.000028035000000,0.000039477000000,0.000452711000000,0.000370143000000,0.000171032000000,0.010887469000000,0.000238983000000,0.000173007000000,0.011166382000000,0.000044613000000,0.000039478000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000038292000000,0.000188415000000,0.000030391000000,0.000308119000000,0.000028627500000,0.000039872000000,0.000378044000000,0.000381206000000,0.000173403000000,0.010697049000000,0.000189995000000,0.000172218000000,0.010706530000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000144958000000,0.000036317000000,0.000027047000000,0.000325502000000,0.000036712000000,0.000229501000000,0.000029996000000,0.000471279000000,0.000027442500000,0.000039478000000,0.000404909000000,0.000434538000000,0.000174193000000,0.011169937000000,0.000224366000000,0.000174588000000,0.011052605000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000143379000000,0.000036316000000,0.000027245000000,0.000327081000000,0.000038292000000,0.000188021000000,0.000046983000000,0.000321946000000,0.000028034500000,0.000039477000000,0.000366193000000,0.000376069000000,0.000172613000000,0.011010333000000,0.000190391000000,0.000192761000000,0.010949888000000,0.000080959000000,0.000039477000000 +0.000037502000000,0.000187230000000,0.000036317000000,0.000027640000000,0.000323131000000,0.000037502000000,0.000187230000000,0.000033947000000,0.000308119000000,0.000028627500000,0.000039477000000,0.000377254000000,0.000417946000000,0.000171032000000,0.010989000000000,0.000188811000000,0.000171823000000,0.011141888000000,0.000044613000000,0.000040268000000 +0.000037897000000,0.000214094000000,0.000036317000000,0.000027837500000,0.000322736000000,0.000037501000000,0.000188020000000,0.000030391000000,0.000349205000000,0.000028035000000,0.000039477000000,0.000407674000000,0.000371329000000,0.000170638000000,0.011132011000000,0.000189206000000,0.000173798000000,0.011121344000000,0.000044613000000,0.000037897000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000403328000000,0.000037502000000,0.000228711000000,0.000030391000000,0.000307724000000,0.000027442500000,0.000039477000000,0.000378835000000,0.000374094000000,0.000171033000000,0.011074728000000,0.000240169000000,0.000172613000000,0.011026531000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000340514000000,0.000037897000000,0.000203428000000,0.000030391000000,0.000308909000000,0.000027442000000,0.000039477000000,0.000419131000000,0.000415575000000,0.000191971000000,0.011303073000000,0.000188415000000,0.000171033000000,0.010897740000000,0.000043823000000,0.000038687000000 +0.000037106000000,0.000141008000000,0.000036317000000,0.000027640000000,0.000323131000000,0.000037502000000,0.000187626000000,0.000030786000000,0.000308909000000,0.000031195500000,0.000039477000000,0.000371328000000,0.000375280000000,0.000243724000000,0.011175863000000,0.000186835000000,0.000190786000000,0.010919468000000,0.000045008000000,0.000038687000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047500000,0.000363823000000,0.000037897000000,0.000187230000000,0.000031181000000,0.000307329000000,0.000040084500000,0.000039478000000,0.000392662000000,0.000470884000000,0.000172218000000,0.011068011000000,0.000187230000000,0.000172218000000,0.011302283000000,0.000044613000000,0.000039478000000 +0.000073848000000,0.000142983000000,0.000035921000000,0.000045022500000,0.000323526000000,0.000037897000000,0.000223180000000,0.000031971000000,0.000307724000000,0.000027442000000,0.000075033000000,0.000739131000000,0.000364613000000,0.000175774000000,0.011292012000000,0.000223971000000,0.000175774000000,0.010676110000000,0.000043823000000,0.000058440000000 +0.000037896000000,0.000177749000000,0.000036316000000,0.000027047000000,0.000323527000000,0.000037897000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000028430000000,0.000039477000000,0.000416761000000,0.000369354000000,0.000171823000000,0.012022875000000,0.000188415000000,0.000173798000000,0.010883913000000,0.000044613000000,0.000039478000000 +0.000037897000000,0.000146143000000,0.000036712000000,0.000027442000000,0.000327082000000,0.000038292000000,0.000187230000000,0.000031181000000,0.000308119000000,0.000027640000000,0.000039477000000,0.000368563000000,0.000373699000000,0.000173798000000,0.010777246000000,0.000187230000000,0.000173008000000,0.010951073000000,0.000044612000000,0.000038292000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037897000000,0.000186835000000,0.000030390000000,0.000309304000000,0.000028627500000,0.000039082000000,0.000372119000000,0.000382785000000,0.000175773000000,0.010895369000000,0.000188811000000,0.000210539000000,0.013351072000000,0.000043823000000,0.000037897000000 +0.000037897000000,0.000141008000000,0.000072662000000,0.000027244500000,0.000322736000000,0.000037896000000,0.000228317000000,0.000031181000000,0.000308119000000,0.000028035000000,0.000039082000000,0.000409650000000,0.000414786000000,0.000171823000000,0.011328752000000,0.000226736000000,0.000173798000000,0.011305444000000,0.000044218000000,0.000038292000000 +0.000039082000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000037897000000,0.000187625000000,0.000029995000000,0.000307724000000,0.000027442000000,0.000039477000000,0.000380415000000,0.000372909000000,0.000171428000000,0.011312160000000,0.000189205000000,0.000175774000000,0.011477690000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000308514000000,0.000028035000000,0.000039477000000,0.000417156000000,0.000443230000000,0.000171822000000,0.010963320000000,0.000190786000000,0.000175378000000,0.011044308000000,0.000044613000000,0.000038292000000 +0.000037501000000,0.000183675000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000027640000000,0.000039477000000,0.000378045000000,0.000536464000000,0.000211724000000,0.010978728000000,0.000189206000000,0.000173798000000,0.012395813000000,0.000044218000000,0.000039873000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027244500000,0.000406489000000,0.000037502000000,0.000225551000000,0.000030390000000,0.000307329000000,0.000027442500000,0.000039477000000,0.000373699000000,0.000408860000000,0.000172612000000,0.011459913000000,0.000225551000000,0.000239379000000,0.011192061000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000141008000000,0.000036316000000,0.000027245000000,0.000323526000000,0.000038292000000,0.000188415000000,0.000030391000000,0.000308119000000,0.000027442000000,0.000039082000000,0.000415971000000,0.000372514000000,0.000171428000000,0.011714727000000,0.000191970000000,0.000193156000000,0.011484802000000,0.000045008000000,0.000040267000000 +0.000037502000000,0.000142983000000,0.000037107000000,0.000027047500000,0.000326291000000,0.000073453000000,0.000188416000000,0.000031576000000,0.000345255000000,0.000027442500000,0.000039477000000,0.000366193000000,0.000371724000000,0.000174193000000,0.010720357000000,0.000187230000000,0.000171428000000,0.011847468000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000036712000000,0.000186835000000,0.000030390000000,0.000307724000000,0.000027244500000,0.000039477000000,0.000430588000000,0.000407279000000,0.000172218000000,0.010997691000000,0.000186440000000,0.000178144000000,0.011280555000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000325106000000,0.000037501000000,0.000223181000000,0.000030391000000,0.000306933000000,0.000027244500000,0.000039477000000,0.000374095000000,0.000378835000000,0.000173403000000,0.010927765000000,0.000242539000000,0.000172217000000,0.010879567000000,0.000080168000000,0.000038292000000 +0.000037501000000,0.000253995000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000037107000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000027640000000,0.000039872000000,0.000393847000000,0.000421897000000,0.000172217000000,0.011152949000000,0.000187230000000,0.000244909000000,0.010902876000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000269798000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000037107000000,0.000186440000000,0.000031181000000,0.000306934000000,0.000045615000000,0.000039872000000,0.000375674000000,0.000374884000000,0.000171428000000,0.010936456000000,0.000188020000000,0.000173798000000,0.010820704000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000159971000000,0.000036711000000,0.000027244500000,0.000325897000000,0.000038687000000,0.000192761000000,0.000030391000000,0.000307723000000,0.000027640000000,0.000039477000000,0.000374885000000,0.000381600000000,0.000171033000000,0.010934086000000,0.000187231000000,0.000173008000000,0.011516801000000,0.000043823000000,0.000039082000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000045615000000,0.000324712000000,0.000037502000000,0.000271378000000,0.000066736000000,0.000344860000000,0.000028232500000,0.000039478000000,0.000408859000000,0.000400563000000,0.000173008000000,0.010806481000000,0.000225551000000,0.000171427000000,0.010920258000000,0.000045008000000,0.000039478000000 +0.000037502000000,0.000142193000000,0.000036712000000,0.000027047500000,0.000323132000000,0.000037107000000,0.000186835000000,0.000029995000000,0.000307329000000,0.000027442000000,0.000039873000000,0.000375675000000,0.000403724000000,0.000216464000000,0.011323222000000,0.000188415000000,0.000175378000000,0.010910778000000,0.000045008000000,0.000038687000000 +0.000038292000000,0.000197502000000,0.000036712000000,0.000027047500000,0.000322341000000,0.000037502000000,0.000189600000000,0.000031181000000,0.000307329000000,0.000028035000000,0.000039872000000,0.000406094000000,0.000412020000000,0.000171428000000,0.011091321000000,0.000186835000000,0.000190786000000,0.010937641000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000142193000000,0.000036711000000,0.000027639500000,0.000362242000000,0.000037106000000,0.000187230000000,0.000030786000000,0.000308119000000,0.000028430000000,0.000039477000000,0.000380415000000,0.000372514000000,0.000172217000000,0.010980703000000,0.000191181000000,0.000171822000000,0.011446876000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000142193000000,0.000035922000000,0.000027245000000,0.000323131000000,0.000036317000000,0.000234243000000,0.000032761000000,0.000307329000000,0.000028430000000,0.000039082000000,0.000382785000000,0.000408859000000,0.000173008000000,0.011455172000000,0.000315230000000,0.000176168000000,0.010870481000000,0.000045798000000,0.000037502000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000324317000000,0.000037502000000,0.000186835000000,0.000030390000000,0.000307723000000,0.000028232500000,0.000075428000000,0.000414785000000,0.000374094000000,0.000171033000000,0.011212999000000,0.000206588000000,0.000173403000000,0.011233542000000,0.000044613000000,0.000075823000000 +0.000074243000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000326292000000,0.000036712000000,0.000187625000000,0.000029996000000,0.000307329000000,0.000027639500000,0.000039082000000,0.000366983000000,0.000371329000000,0.000171822000000,0.011176258000000,0.000188020000000,0.000171823000000,0.011248555000000,0.000043823000000,0.000038687000000 +0.000038292000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000324316000000,0.000037502000000,0.000188415000000,0.000030786000000,0.000308909000000,0.000028232500000,0.000039872000000,0.000448760000000,0.000446391000000,0.000219230000000,0.011086580000000,0.000189995000000,0.000171823000000,0.011444900000000,0.000044218000000,0.000039873000000 +0.000037897000000,0.000181304000000,0.000037897000000,0.000027442500000,0.000322736000000,0.000037106000000,0.000244514000000,0.000030785000000,0.000308514000000,0.000027442500000,0.000039478000000,0.000372514000000,0.000375674000000,0.000172613000000,0.010861789000000,0.000205008000000,0.000173008000000,0.010753148000000,0.000043822000000,0.000039872000000 +0.000038292000000,0.000142588000000,0.000052910000000,0.000027047000000,0.000325107000000,0.000037897000000,0.000186835000000,0.000030786000000,0.000340119000000,0.000028035000000,0.000039477000000,0.000371329000000,0.000417156000000,0.000171033000000,0.012818134000000,0.000191576000000,0.000171823000000,0.011083024000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000381205000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000308119000000,0.000028034500000,0.000039477000000,0.000418736000000,0.000370539000000,0.000171823000000,0.011252900000000,0.000190390000000,0.000173403000000,0.011243024000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000323527000000,0.000037502000000,0.000187625000000,0.000030390000000,0.000308119000000,0.000028430000000,0.000039477000000,0.000370539000000,0.000371724000000,0.000215280000000,0.011702481000000,0.000186835000000,0.000195131000000,0.011091320000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000142193000000,0.000035922000000,0.000027047500000,0.000332218000000,0.000037107000000,0.000226736000000,0.000030391000000,0.000308909000000,0.000027442500000,0.000039082000000,0.000461798000000,0.000408070000000,0.000173008000000,0.011524703000000,0.000260712000000,0.000173403000000,0.011583567000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000139823000000,0.000036317000000,0.000027244500000,0.000322736000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000345254000000,0.000045812500000,0.000039082000000,0.000372514000000,0.000376069000000,0.000172218000000,0.011377344000000,0.000188021000000,0.000172612000000,0.010828209000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000162341000000,0.000036316000000,0.000027245000000,0.000324712000000,0.000056465000000,0.000186835000000,0.000030785000000,0.000307329000000,0.000027837500000,0.000039478000000,0.000408860000000,0.000449156000000,0.000171032000000,0.011418431000000,0.000188811000000,0.000173008000000,0.010827814000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000361453000000,0.000054489000000,0.000189996000000,0.000030786000000,0.000308119000000,0.000029022500000,0.000039477000000,0.000427822000000,0.000375675000000,0.000173008000000,0.011113049000000,0.000191181000000,0.000173403000000,0.011037591000000,0.000078588000000,0.000040267000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000054701500000,0.000324317000000,0.000036711000000,0.000225947000000,0.000030391000000,0.000308119000000,0.000027442500000,0.000039082000000,0.000380021000000,0.000410835000000,0.000173008000000,0.010949888000000,0.000205798000000,0.000244119000000,0.011171517000000,0.000046984000000,0.000039872000000 +0.000038292000000,0.000145354000000,0.000036317000000,0.000035343500000,0.000323526000000,0.000037106000000,0.000186835000000,0.000030785000000,0.000307724000000,0.000028034500000,0.000039082000000,0.000411230000000,0.000373699000000,0.000173008000000,0.011560653000000,0.000188810000000,0.000175773000000,0.010780802000000,0.000059230000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000036316000000,0.000027047500000,0.000326292000000,0.000037107000000,0.000188020000000,0.000031181000000,0.000309699000000,0.000027837000000,0.000039872000000,0.000367773000000,0.000375674000000,0.000173008000000,0.011788603000000,0.000187230000000,0.000171427000000,0.010910382000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000143774000000,0.000035922000000,0.000027047000000,0.000323922000000,0.000037897000000,0.000186835000000,0.000031180000000,0.000355922000000,0.000028232500000,0.000039477000000,0.000418341000000,0.000427823000000,0.000171823000000,0.011041938000000,0.000188810000000,0.000173403000000,0.011126086000000,0.000045008000000,0.000039872000000 +0.000037501000000,0.000143773000000,0.000036317000000,0.000027047000000,0.000323922000000,0.000037502000000,0.000207774000000,0.000030786000000,0.000308514000000,0.000027837500000,0.000039478000000,0.000388711000000,0.000373304000000,0.000174193000000,0.011229987000000,0.000260316000000,0.000171823000000,0.011023369000000,0.000043823000000,0.000039477000000 +0.000037897000000,0.000179329000000,0.000036317000000,0.000027245000000,0.000324712000000,0.000037897000000,0.000247279000000,0.000029996000000,0.000307328000000,0.000027639500000,0.000039477000000,0.000373699000000,0.000400959000000,0.000208958000000,0.011204307000000,0.000189205000000,0.000210538000000,0.011068011000000,0.000044218000000,0.000040268000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027442500000,0.000323527000000,0.000037897000000,0.000188810000000,0.000030786000000,0.000307724000000,0.000027442000000,0.000039477000000,0.000411230000000,0.000375279000000,0.000172613000000,0.011100012000000,0.000189205000000,0.000172613000000,0.010810432000000,0.000044218000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000322736000000,0.000037897000000,0.000188415000000,0.000030391000000,0.000308514000000,0.000028232500000,0.000039082000000,0.000364613000000,0.000523033000000,0.000173403000000,0.010710481000000,0.000188810000000,0.000174983000000,0.010948309000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000142588000000,0.000035922000000,0.000027245000000,0.000362242000000,0.000037106000000,0.000224366000000,0.000079773000000,0.000307724000000,0.000028627500000,0.000039477000000,0.000411625000000,0.000374489000000,0.000172218000000,0.010996506000000,0.000202637000000,0.000173008000000,0.011267518000000,0.000044218000000,0.000040268000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000037107000000,0.000188415000000,0.000044613000000,0.000346835000000,0.000027640000000,0.000039477000000,0.000370933000000,0.000366983000000,0.000173403000000,0.011192851000000,0.000189205000000,0.000173798000000,0.010736555000000,0.000044217000000,0.000038292000000 +0.000037502000000,0.000141008000000,0.000036316000000,0.000027047000000,0.000325106000000,0.000037502000000,0.000188415000000,0.000029996000000,0.000307723000000,0.000027837000000,0.000113354000000,0.000417551000000,0.000423081000000,0.000173798000000,0.011286086000000,0.000189205000000,0.000207773000000,0.011132012000000,0.000043823000000,0.000074637000000 +0.000037897000000,0.000187231000000,0.000036317000000,0.000027244500000,0.000569254000000,0.000037107000000,0.000186835000000,0.000029995000000,0.000306934000000,0.000027837500000,0.000039477000000,0.000374885000000,0.000373699000000,0.000174588000000,0.010688357000000,0.000257156000000,0.000174193000000,0.011261592000000,0.000044218000000,0.000038292000000 +0.000072662000000,0.000142193000000,0.000037107000000,0.000027245000000,0.000341699000000,0.000037501000000,0.000227132000000,0.000030391000000,0.000309304000000,0.000027837500000,0.000039477000000,0.000374489000000,0.000410440000000,0.000173007000000,0.011150580000000,0.000188021000000,0.000174193000000,0.011633344000000,0.000044613000000,0.000037897000000 +0.000052119000000,0.000142984000000,0.000072267000000,0.000027244500000,0.000325106000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000307724000000,0.000045220000000,0.000039082000000,0.000425847000000,0.000368958000000,0.000173403000000,0.011023370000000,0.000188811000000,0.000178539000000,0.010715221000000,0.000045403000000,0.000039872000000 +0.000038292000000,0.000144169000000,0.000036316000000,0.000027837500000,0.000323131000000,0.000038292000000,0.000186835000000,0.000030390000000,0.000308514000000,0.000028430000000,0.000039477000000,0.000372909000000,0.000371329000000,0.000173798000000,0.011076308000000,0.000189996000000,0.000171823000000,0.011354826000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000037121500000,0.000325501000000,0.000038291000000,0.000187230000000,0.000030786000000,0.000404514000000,0.000028035000000,0.000039477000000,0.000472464000000,0.000408859000000,0.000209749000000,0.011506135000000,0.000223971000000,0.000212119000000,0.010838086000000,0.000044613000000,0.000039083000000 +0.000038292000000,0.000143773000000,0.000035922000000,0.000027047500000,0.000325896000000,0.000037502000000,0.000257946000000,0.000030391000000,0.000342885000000,0.000027442000000,0.000039873000000,0.000399773000000,0.000368958000000,0.000171427000000,0.011048653000000,0.000187625000000,0.000171033000000,0.011130431000000,0.000043823000000,0.000039477000000 +0.000037897000000,0.000178539000000,0.000036712000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000188416000000,0.000030390000000,0.000308119000000,0.000028035000000,0.000039477000000,0.000412020000000,0.000442044000000,0.000171823000000,0.010734185000000,0.000189996000000,0.000174983000000,0.011374975000000,0.000063576000000,0.000038687000000 +0.000038292000000,0.000143774000000,0.000036316000000,0.000027047000000,0.000326687000000,0.000038292000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000028035000000,0.000039477000000,0.000374884000000,0.000380415000000,0.000171033000000,0.011148605000000,0.000189601000000,0.000173008000000,0.010958184000000,0.000058045000000,0.000040267000000 +0.000037501000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000079378000000,0.000187230000000,0.000031971000000,0.000307329000000,0.000027442000000,0.000039872000000,0.000381205000000,0.000374094000000,0.000172218000000,0.011261197000000,0.000230292000000,0.000173403000000,0.010657543000000,0.000044218000000,0.000040267000000 +0.000037502000000,0.000140613000000,0.000036712000000,0.000027047500000,0.000322736000000,0.000039082000000,0.000230291000000,0.000030391000000,0.000308119000000,0.000027837000000,0.000039477000000,0.000417155000000,0.000380415000000,0.000172613000000,0.010678877000000,0.000186440000000,0.000222390000000,0.011241048000000,0.000044613000000,0.000039477000000 +0.000038292000000,0.000142194000000,0.000036712000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000027837500000,0.000039082000000,0.000366983000000,0.000375280000000,0.000172218000000,0.011252110000000,0.000189205000000,0.000174193000000,0.011150580000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000361452000000,0.000036711000000,0.000188810000000,0.000031181000000,0.000307724000000,0.000028430000000,0.000039477000000,0.000454686000000,0.000492217000000,0.000171032000000,0.011489147000000,0.000189600000000,0.000176168000000,0.011237493000000,0.000043823000000,0.000041058000000 +0.000037897000000,0.000487082000000,0.000035922000000,0.000027047500000,0.000324316000000,0.000037106000000,0.000188810000000,0.000031971000000,0.000306539000000,0.000028232500000,0.000039082000000,0.000376464000000,0.000366588000000,0.000173008000000,0.011446875000000,0.000224761000000,0.000176169000000,0.010740505000000,0.000044218000000,0.000039872000000 +0.000037896000000,0.000162341000000,0.000036316000000,0.000027442000000,0.000323131000000,0.000037107000000,0.000259131000000,0.000030391000000,0.000309304000000,0.000027442000000,0.000039082000000,0.000368958000000,0.000412810000000,0.000172613000000,0.010537049000000,0.000190390000000,0.000173008000000,0.011734876000000,0.000044218000000,0.000040663000000 +0.000039083000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000325896000000,0.000037107000000,0.000189600000000,0.000029996000000,0.000306144000000,0.000027442500000,0.000039477000000,0.000436514000000,0.000365007000000,0.000208958000000,0.010781592000000,0.000187625000000,0.000318785000000,0.010953444000000,0.000045008000000,0.000040662000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027442500000,0.000324711000000,0.000037896000000,0.000188810000000,0.000029995000000,0.000307724000000,0.000027442500000,0.000039477000000,0.000376860000000,0.000363823000000,0.000171032000000,0.011005197000000,0.000189205000000,0.000189600000000,0.011177839000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000179329000000,0.000035526000000,0.000027244500000,0.000323526000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000309304000000,0.000027837000000,0.000039082000000,0.000465748000000,0.000435329000000,0.000171427000000,0.011036407000000,0.000259921000000,0.000173008000000,0.011127666000000,0.000044218000000,0.000037897000000 +0.000037502000000,0.000143378000000,0.000036316000000,0.000027047000000,0.000325106000000,0.000037502000000,0.000259921000000,0.000030786000000,0.000325107000000,0.000045615500000,0.000039478000000,0.000378439000000,0.000375674000000,0.000174983000000,0.010809246000000,0.000186835000000,0.000173008000000,0.011214185000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000037502000000,0.000187230000000,0.000031575000000,0.000308909000000,0.000028430000000,0.000058045000000,0.000455081000000,0.000410045000000,0.000171427000000,0.010940011000000,0.000189600000000,0.000210538000000,0.011061691000000,0.000044613000000,0.000039477000000 +0.000038687000000,0.000144564000000,0.000035922000000,0.000027245000000,0.000323921000000,0.000038687000000,0.000187230000000,0.000066341000000,0.000306934000000,0.000028232000000,0.000055279000000,0.000423082000000,0.000380810000000,0.000172613000000,0.011002827000000,0.000189600000000,0.000174193000000,0.011347320000000,0.000044613000000,0.000060020000000 +0.000038687000000,0.000141403000000,0.000036317000000,0.000037318500000,0.000326291000000,0.000037107000000,0.000186835000000,0.000031971000000,0.000301798000000,0.000027639500000,0.000039083000000,0.000412810000000,0.000371724000000,0.000172613000000,0.011443320000000,0.000223181000000,0.000174193000000,0.011228801000000,0.000044613000000,0.000052119000000 +0.000037501000000,0.000142983000000,0.000035921000000,0.000035541000000,0.000343674000000,0.000037502000000,0.000241748000000,0.000030785000000,0.000308119000000,0.000027640000000,0.000039477000000,0.000373699000000,0.000444416000000,0.000173403000000,0.011068802000000,0.000189205000000,0.000173798000000,0.010997690000000,0.000044217000000,0.000038292000000 +0.000055675000000,0.000142193000000,0.000035922000000,0.000027245000000,0.000356316000000,0.000037897000000,0.000187625000000,0.000030391000000,0.000327872000000,0.000028232500000,0.000039477000000,0.000370539000000,0.000373304000000,0.000172613000000,0.011071567000000,0.000189995000000,0.000171822000000,0.011354036000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000157996000000,0.000072268000000,0.000027047000000,0.000325897000000,0.000038687000000,0.000188020000000,0.000030391000000,0.000325502000000,0.000028430000000,0.000039872000000,0.000460218000000,0.000411230000000,0.000173008000000,0.010902086000000,0.000186045000000,0.000209749000000,0.010721543000000,0.000045008000000,0.000039478000000 +0.000037897000000,0.000142193000000,0.000035922000000,0.000027047000000,0.000323922000000,0.000038291000000,0.000189600000000,0.000030786000000,0.000308119000000,0.000028232000000,0.000039477000000,0.000372514000000,0.000376069000000,0.000212119000000,0.010873247000000,0.000296662000000,0.000173798000000,0.011143074000000,0.000044218000000,0.000040267000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000035922000000,0.000225156000000,0.000030391000000,0.000306933000000,0.000028034500000,0.000039872000000,0.000442440000000,0.000446785000000,0.000171823000000,0.011295962000000,0.000461402000000,0.000172613000000,0.011073938000000,0.000080564000000,0.000040268000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000325897000000,0.000037897000000,0.000220416000000,0.000030785000000,0.000308119000000,0.000028035000000,0.000039477000000,0.000379625000000,0.000378440000000,0.000172613000000,0.010897345000000,0.000245700000000,0.000173403000000,0.011532209000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000323922000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000308119000000,0.000027837500000,0.000039083000000,0.000400563000000,0.000366983000000,0.000173008000000,0.011136358000000,0.000189206000000,0.000175774000000,0.011269888000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000140218000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000037106000000,0.000188810000000,0.000030786000000,0.000308514000000,0.000027442500000,0.000039477000000,0.000406094000000,0.000426243000000,0.000173008000000,0.011261592000000,0.000190391000000,0.000207773000000,0.011076308000000,0.000043823000000,0.000039477000000 +0.000037897000000,0.000225551000000,0.000036316000000,0.000027245000000,0.000369354000000,0.000071872000000,0.000257551000000,0.000030391000000,0.000344860000000,0.000028034500000,0.000039872000000,0.000374095000000,0.000369749000000,0.000209748000000,0.011158481000000,0.000188021000000,0.000173008000000,0.010958580000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000188021000000,0.000036316000000,0.000027245000000,0.000323922000000,0.000058045000000,0.000186835000000,0.000030391000000,0.000306934000000,0.000027442500000,0.000039872000000,0.000831575000000,0.000452316000000,0.000174193000000,0.010913938000000,0.000227527000000,0.000223576000000,0.011565789000000,0.000044217000000,0.000038292000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000328662000000,0.000056465000000,0.000186835000000,0.000030390000000,0.000308514000000,0.000027640000000,0.000039872000000,0.000421502000000,0.000373699000000,0.000172217000000,0.010708506000000,0.000188021000000,0.000172613000000,0.010830579000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000326687000000,0.000039872000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000036923500000,0.000039082000000,0.000384366000000,0.000413996000000,0.000176168000000,0.010849542000000,0.000188810000000,0.000171033000000,0.011263172000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000142983000000,0.000036711000000,0.000027640000000,0.000323131000000,0.000067526000000,0.000223576000000,0.000029996000000,0.000308119000000,0.000028035000000,0.000039477000000,0.000373304000000,0.000381600000000,0.000171428000000,0.011144653000000,0.000188810000000,0.000190786000000,0.011668900000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000166687000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000189205000000,0.000030786000000,0.000308514000000,0.000028034500000,0.000039477000000,0.000410439000000,0.000374885000000,0.000293897000000,0.010668210000000,0.000188415000000,0.000173798000000,0.011244604000000,0.000043823000000,0.000039872000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000187625000000,0.000031181000000,0.000308514000000,0.000027837500000,0.000039082000000,0.000375674000000,0.000695674000000,0.000190391000000,0.010783173000000,0.000202243000000,0.000173403000000,0.011046679000000,0.000044218000000,0.000039082000000 +0.000037501000000,0.000142983000000,0.000036316000000,0.000027442500000,0.000324316000000,0.000037106000000,0.000186835000000,0.000032366000000,0.000307724000000,0.000027837500000,0.000039477000000,0.000409650000000,0.000371724000000,0.000172218000000,0.010633839000000,0.000190786000000,0.000175773000000,0.011043913000000,0.000044218000000,0.000039478000000 +0.000037897000000,0.000141403000000,0.000035921000000,0.000062602500000,0.000325106000000,0.000036712000000,0.000221600000000,0.000031576000000,0.000307329000000,0.000027442000000,0.000039082000000,0.000373304000000,0.000482341000000,0.000174193000000,0.011547617000000,0.000189995000000,0.000192761000000,0.010793444000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000036712000000,0.000027245000000,0.000323131000000,0.000037502000000,0.000189600000000,0.000030391000000,0.000308909000000,0.000027639500000,0.000039872000000,0.000396218000000,0.000374489000000,0.000194737000000,0.011095666000000,0.000187230000000,0.000178539000000,0.011157691000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000143773000000,0.000035922000000,0.000027245000000,0.000323526000000,0.000037897000000,0.000189996000000,0.000030391000000,0.000306538000000,0.000028232500000,0.000039477000000,0.000369748000000,0.000409254000000,0.000370538000000,0.011762135000000,0.000190391000000,0.000174193000000,0.011423567000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000141403000000,0.000036711000000,0.000027244500000,0.000325502000000,0.000037897000000,0.000186440000000,0.000030391000000,0.000304168000000,0.000028232500000,0.000055280000000,0.000380021000000,0.000365008000000,0.000273353000000,0.010909987000000,0.000188415000000,0.000174983000000,0.010781988000000,0.000057255000000,0.000058835000000 +0.000037897000000,0.000212909000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000388316000000,0.000030786000000,0.000398588000000,0.000028232500000,0.000052514000000,0.000419131000000,0.000408070000000,0.000173403000000,0.011824159000000,0.000188415000000,0.000174589000000,0.011239864000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000144563000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000038292000000,0.000257551000000,0.000050144000000,0.000381996000000,0.000027837000000,0.000039478000000,0.000378835000000,0.000379230000000,0.000172217000000,0.011106333000000,0.000187230000000,0.000212119000000,0.010989394000000,0.000046983000000,0.000039872000000 +0.000037897000000,0.000144564000000,0.000055674000000,0.000027244500000,0.000326291000000,0.000037106000000,0.000190785000000,0.000064761000000,0.000308119000000,0.000027639500000,0.000039477000000,0.000404514000000,0.000375674000000,0.000171428000000,0.010954234000000,0.000187625000000,0.000173798000000,0.011401049000000,0.000047774000000,0.000038292000000 +0.000058440000000,0.000142193000000,0.000069107000000,0.000027244500000,0.000325502000000,0.000037897000000,0.000257946000000,0.000030391000000,0.000349600000000,0.000027837500000,0.000039872000000,0.000372119000000,0.000410440000000,0.000220416000000,0.011148999000000,0.000188415000000,0.000171428000000,0.011290826000000,0.000047378000000,0.000039477000000 +0.000038687000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000323922000000,0.000037502000000,0.000189205000000,0.000030786000000,0.000308119000000,0.000028035000000,0.000039477000000,0.000372909000000,0.000374094000000,0.000171032000000,0.011239469000000,0.000188415000000,0.000172613000000,0.010885098000000,0.000046589000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000325107000000,0.000038688000000,0.000189205000000,0.000030390000000,0.000308119000000,0.000028035000000,0.000039082000000,0.000422686000000,0.000404118000000,0.000216860000000,0.010814777000000,0.000186835000000,0.000171822000000,0.011231963000000,0.000046983000000,0.000039477000000 +0.000037501000000,0.000189205000000,0.000036317000000,0.000027244500000,0.000323527000000,0.000073057000000,0.000189205000000,0.000030391000000,0.000344464000000,0.000027639500000,0.000039082000000,0.000382391000000,0.000372514000000,0.000171823000000,0.011264357000000,0.000203822000000,0.000214884000000,0.011056950000000,0.000047379000000,0.000038687000000 +0.000037502000000,0.000144959000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037502000000,0.000258341000000,0.000030786000000,0.000308514000000,0.000049763500000,0.000039477000000,0.000406489000000,0.000370143000000,0.000170638000000,0.010812802000000,0.000188415000000,0.000172613000000,0.010764605000000,0.000047773000000,0.000038687000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000325897000000,0.000037107000000,0.000188415000000,0.000030391000000,0.000308909000000,0.000028035000000,0.000039477000000,0.000377649000000,0.000409255000000,0.000173798000000,0.011091715000000,0.000188020000000,0.000173798000000,0.012833146000000,0.000047379000000,0.000040662000000 +0.000037502000000,0.000142588000000,0.000035921000000,0.000027244500000,0.000324712000000,0.000036712000000,0.000190391000000,0.000030786000000,0.000308909000000,0.000027442000000,0.000039477000000,0.000430983000000,0.000380020000000,0.000173798000000,0.011079469000000,0.000188415000000,0.000173008000000,0.011511270000000,0.000046983000000,0.000038687000000 +0.000037502000000,0.000141798000000,0.000036317000000,0.000027244500000,0.000322736000000,0.000037896000000,0.000187230000000,0.000030391000000,0.000307724000000,0.000027837500000,0.000039477000000,0.000372909000000,0.000416366000000,0.000174984000000,0.010925000000000,0.000260712000000,0.000171427000000,0.011767666000000,0.000046588000000,0.000039872000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000044627500000,0.000328267000000,0.000038687000000,0.000238984000000,0.000030786000000,0.000307724000000,0.000027442500000,0.000040267000000,0.000377254000000,0.000368959000000,0.000171428000000,0.011235912000000,0.000189996000000,0.000210144000000,0.011007963000000,0.000047379000000,0.000038291000000 +0.000037502000000,0.000191181000000,0.000036317000000,0.000034948500000,0.000340119000000,0.000037107000000,0.000186045000000,0.000030786000000,0.000356712000000,0.000028034500000,0.000039872000000,0.000462983000000,0.000375279000000,0.000174983000000,0.011190086000000,0.000189601000000,0.000172613000000,0.011788999000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000324317000000,0.000036711000000,0.000188020000000,0.000030390000000,0.000307724000000,0.000027442000000,0.000039478000000,0.000375674000000,0.000409650000000,0.000172612000000,0.011881048000000,0.000187626000000,0.000173008000000,0.010900111000000,0.000046984000000,0.000039872000000 +0.000037502000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000325897000000,0.000037897000000,0.000186440000000,0.000030786000000,0.000305748000000,0.000028232500000,0.000039478000000,0.000404119000000,0.000375674000000,0.000172218000000,0.011709591000000,0.000187230000000,0.000172218000000,0.011707221000000,0.000046588000000,0.000038687000000 +0.000037106000000,0.000143773000000,0.000036712000000,0.000027245000000,0.000323527000000,0.000037502000000,0.000220810000000,0.000030786000000,0.000308909000000,0.000027640000000,0.000039477000000,0.000381601000000,0.000461402000000,0.000173403000000,0.011059715000000,0.000186835000000,0.000171823000000,0.011230777000000,0.000046588000000,0.000039083000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000324317000000,0.000037502000000,0.000188415000000,0.000031181000000,0.000307724000000,0.000027639500000,0.000039082000000,0.000387921000000,0.000378835000000,0.000173403000000,0.011116209000000,0.000188416000000,0.000257551000000,0.011026925000000,0.000046984000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000398193000000,0.000037501000000,0.000186440000000,0.000031181000000,0.000307329000000,0.000027442500000,0.000039872000000,0.000411230000000,0.000441254000000,0.000173008000000,0.011112653000000,0.000186835000000,0.000172613000000,0.010934875000000,0.000046983000000,0.000040267000000 +0.000037107000000,0.000176169000000,0.000036317000000,0.000027047500000,0.000390291000000,0.000037107000000,0.000186440000000,0.000031180000000,0.000345649000000,0.000028232500000,0.000039477000000,0.000381206000000,0.000374885000000,0.000172218000000,0.011060506000000,0.000187230000000,0.000173403000000,0.011783468000000,0.000047774000000,0.000038687000000 +0.000037897000000,0.000139823000000,0.000036712000000,0.000027047500000,0.000361057000000,0.000037107000000,0.000205403000000,0.000030391000000,0.000308514000000,0.000027244500000,0.000075823000000,0.000435328000000,0.000370143000000,0.000171427000000,0.010985049000000,0.000188810000000,0.000173403000000,0.010958185000000,0.000046983000000,0.000038292000000 +0.000037896000000,0.000141008000000,0.000036711000000,0.000027047000000,0.000380415000000,0.000038687000000,0.000189206000000,0.000031576000000,0.000307724000000,0.000027837500000,0.000039477000000,0.000376069000000,0.000413205000000,0.000248465000000,0.011041148000000,0.000189205000000,0.000172218000000,0.011352456000000,0.000046983000000,0.000073452000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000036316000000,0.000187231000000,0.000030391000000,0.000307329000000,0.000027837500000,0.000039477000000,0.000409255000000,0.000370539000000,0.000175774000000,0.011092900000000,0.000189600000000,0.000263082000000,0.011608851000000,0.000047379000000,0.000038292000000 +0.000037502000000,0.000142588000000,0.000055675000000,0.000027442500000,0.000323131000000,0.000037502000000,0.000186440000000,0.000030391000000,0.000358687000000,0.000056084000000,0.000039478000000,0.000381996000000,0.000417551000000,0.000171428000000,0.010975962000000,0.000261107000000,0.000175378000000,0.011726974000000,0.000063181000000,0.000039872000000 +0.000038292000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000361453000000,0.000037502000000,0.000189600000000,0.000030785000000,0.000307723000000,0.000046207500000,0.000039082000000,0.000375674000000,0.000377255000000,0.000173008000000,0.010947913000000,0.000188811000000,0.000173403000000,0.011111863000000,0.000046588000000,0.000038687000000 +0.000037502000000,0.000185650000000,0.000036316000000,0.000027047000000,0.000323922000000,0.000037897000000,0.000188020000000,0.000064761000000,0.000346045000000,0.000058059500000,0.000039082000000,0.000410439000000,0.000367773000000,0.000171033000000,0.010984653000000,0.000188020000000,0.000174193000000,0.010949493000000,0.000047379000000,0.000039872000000 +0.000057650000000,0.000144564000000,0.000036316000000,0.000027245000000,0.000328267000000,0.000036711000000,0.000188415000000,0.000047378000000,0.000308119000000,0.000045220000000,0.000039082000000,0.000381206000000,0.000426637000000,0.000173798000000,0.011376950000000,0.000188020000000,0.000242933000000,0.011260012000000,0.000047378000000,0.000038292000000 +0.000040662000000,0.000144564000000,0.000036317000000,0.000027047500000,0.000353946000000,0.000055675000000,0.000232663000000,0.000030390000000,0.000308119000000,0.000028035000000,0.000039082000000,0.000410835000000,0.000378044000000,0.000174983000000,0.010966481000000,0.000189206000000,0.000184465000000,0.011514431000000,0.000046588000000,0.000039477000000 +0.000051329000000,0.000140613000000,0.000036317000000,0.000046800000000,0.000323132000000,0.000053305000000,0.000189205000000,0.000030391000000,0.000308514000000,0.000027442500000,0.000039477000000,0.000376464000000,0.000409649000000,0.000177749000000,0.010883518000000,0.000187230000000,0.000230687000000,0.011332307000000,0.000046588000000,0.000038687000000 +0.000037502000000,0.000141799000000,0.000036316000000,0.000035541000000,0.000360267000000,0.000037107000000,0.000190785000000,0.000029996000000,0.000308119000000,0.000028035000000,0.000038687000000,0.000380020000000,0.000446391000000,0.000172218000000,0.010653988000000,0.000189995000000,0.000173798000000,0.011009938000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000038292000000,0.000188415000000,0.000030390000000,0.000308119000000,0.000027639500000,0.000039478000000,0.000425847000000,0.000414391000000,0.000171822000000,0.011164802000000,0.000189600000000,0.000173403000000,0.010752752000000,0.000046984000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037106000000,0.000259921000000,0.000031181000000,0.000307723000000,0.000027837500000,0.000039477000000,0.000373699000000,0.000373304000000,0.000172218000000,0.012917689000000,0.000208168000000,0.000208168000000,0.010921839000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000157205000000,0.000036317000000,0.000027245000000,0.000368563000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000345255000000,0.000027640000000,0.000039477000000,0.000416761000000,0.000378045000000,0.000173008000000,0.011122135000000,0.000187230000000,0.000173008000000,0.011143073000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000323131000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000306934000000,0.000028034500000,0.000039872000000,0.000368564000000,0.000417551000000,0.000171428000000,0.010919074000000,0.000188020000000,0.000174194000000,0.010991370000000,0.000046193000000,0.000039082000000 +0.000037897000000,0.000143378000000,0.000035922000000,0.000027047000000,0.000323922000000,0.000037502000000,0.000188811000000,0.000030786000000,0.000308514000000,0.000027442000000,0.000039477000000,0.000367378000000,0.000375674000000,0.000171823000000,0.012843812000000,0.000189206000000,0.000173403000000,0.011397888000000,0.000046983000000,0.000037896000000 +0.000039082000000,0.000139823000000,0.000035922000000,0.000027244500000,0.000372909000000,0.000037106000000,0.000258736000000,0.000030786000000,0.000308909000000,0.000028035000000,0.000039477000000,0.000391477000000,0.000425452000000,0.000171427000000,0.010545346000000,0.000222786000000,0.000173798000000,0.011095666000000,0.000047378000000,0.000037897000000 +0.000037502000000,0.000144958000000,0.000036712000000,0.000027245000000,0.000324316000000,0.000037502000000,0.000187625000000,0.000031181000000,0.000307329000000,0.000028627500000,0.000039478000000,0.000376070000000,0.000368958000000,0.000208563000000,0.010594333000000,0.000189600000000,0.000208959000000,0.011382086000000,0.000047378000000,0.000038292000000 +0.000037501000000,0.000144563000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000037502000000,0.000240168000000,0.000030785000000,0.000307724000000,0.000034356000000,0.000039477000000,0.000520662000000,0.000392267000000,0.000174588000000,0.011047468000000,0.000191575000000,0.000173798000000,0.011186925000000,0.000047378000000,0.000038292000000 +0.000037897000000,0.000178934000000,0.000036317000000,0.000027047000000,0.000361452000000,0.000037502000000,0.000188020000000,0.000032761000000,0.000356711000000,0.000025862000000,0.000039477000000,0.000900316000000,0.000366193000000,0.000171823000000,0.010939222000000,0.000194736000000,0.000173403000000,0.010974777000000,0.000046589000000,0.000039477000000 +0.000038292000000,0.000141403000000,0.000036317000000,0.000027047000000,0.000323527000000,0.000037106000000,0.000259922000000,0.000030390000000,0.000308909000000,0.000027047000000,0.000039477000000,0.000421502000000,0.000370934000000,0.000171428000000,0.010944357000000,0.000259131000000,0.000172218000000,0.011086580000000,0.000046983000000,0.000038687000000 +0.000038687000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000323131000000,0.000037502000000,0.000188810000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000520267000000,0.000408859000000,0.000171033000000,0.010509000000000,0.000189205000000,0.000173008000000,0.011292011000000,0.000047379000000,0.000039873000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000362242000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000059230000000,0.000460612000000,0.000373700000000,0.000173007000000,0.010543765000000,0.000187625000000,0.000207773000000,0.010850332000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000188416000000,0.000030785000000,0.000308514000000,0.000026455000000,0.000039872000000,0.000483526000000,0.000410044000000,0.000173403000000,0.010671765000000,0.000190391000000,0.000172218000000,0.011043518000000,0.000046983000000,0.000074637000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027837500000,0.000324711000000,0.000035921000000,0.000261502000000,0.000030391000000,0.000306538000000,0.000026257000000,0.000039872000000,0.000406490000000,0.000434539000000,0.000172218000000,0.011121345000000,0.000231477000000,0.000173008000000,0.011336259000000,0.000046588000000,0.000039082000000 +0.000038292000000,0.000181699000000,0.000090835000000,0.000035541000000,0.000365008000000,0.000038687000000,0.000186045000000,0.000031181000000,0.000346045000000,0.000026059500000,0.000039477000000,0.000450736000000,0.000372119000000,0.000172218000000,0.010904851000000,0.000189205000000,0.000174193000000,0.011316506000000,0.000046983000000,0.000039082000000 +0.000037502000000,0.000140218000000,0.000035922000000,0.000027244500000,0.000324317000000,0.000038687000000,0.000190391000000,0.000030786000000,0.000308909000000,0.000026257000000,0.000039477000000,0.000409254000000,0.000408859000000,0.000172218000000,0.011086975000000,0.000187625000000,0.000173798000000,0.010759074000000,0.000046984000000,0.000037897000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000038292000000,0.000187626000000,0.000029996000000,0.000308119000000,0.000026849500000,0.000039477000000,0.000439674000000,0.000378835000000,0.000234242000000,0.010796604000000,0.000189601000000,0.000210539000000,0.010887863000000,0.000047378000000,0.000040267000000 +0.000037502000000,0.000141798000000,0.000036316000000,0.000027047500000,0.000696465000000,0.000038292000000,0.000258341000000,0.000030785000000,0.000343675000000,0.000026060000000,0.000039082000000,0.000407674000000,0.000420712000000,0.000171823000000,0.010727468000000,0.000257946000000,0.000172613000000,0.010789493000000,0.000046589000000,0.000040662000000 +0.000073057000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000071477000000,0.000186440000000,0.000048168000000,0.000308909000000,0.000026849500000,0.000039872000000,0.000371724000000,0.000397798000000,0.000173008000000,0.010847172000000,0.000190786000000,0.000173798000000,0.010959765000000,0.000046983000000,0.000038292000000 +0.000074638000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000323527000000,0.000052119000000,0.000190785000000,0.000029996000000,0.000307329000000,0.000026257000000,0.000039478000000,0.000445205000000,0.000442835000000,0.000171033000000,0.010606975000000,0.000187230000000,0.000171428000000,0.011177839000000,0.000046983000000,0.000041058000000 +0.000060415000000,0.000197502000000,0.000036316000000,0.000027640000000,0.000324712000000,0.000038292000000,0.000186835000000,0.000031181000000,0.000628119000000,0.000026454500000,0.000039478000000,0.000380810000000,0.000369749000000,0.000171823000000,0.010594728000000,0.000189205000000,0.000176959000000,0.010977148000000,0.000046984000000,0.000039082000000 +0.000040267000000,0.000200662000000,0.000036317000000,0.000027047000000,0.000327477000000,0.000037107000000,0.000257552000000,0.000030786000000,0.000363822000000,0.000025862500000,0.000039082000000,0.000417156000000,0.000377650000000,0.000212909000000,0.010717197000000,0.000206588000000,0.000189601000000,0.010915123000000,0.000047378000000,0.000038687000000 +0.000040662000000,0.000159576000000,0.000036317000000,0.000027047000000,0.000322341000000,0.000037107000000,0.000188810000000,0.000031181000000,0.000345254000000,0.000042849500000,0.000039477000000,0.000378045000000,0.000422686000000,0.000172217000000,0.010817938000000,0.000189600000000,0.000171033000000,0.010873247000000,0.000047379000000,0.000039872000000 +0.000054095000000,0.000141008000000,0.000035922000000,0.000027047500000,0.000324317000000,0.000037107000000,0.000189205000000,0.000030390000000,0.000307724000000,0.000035541000000,0.000039082000000,0.000373699000000,0.000372118000000,0.000171823000000,0.010573000000000,0.000186440000000,0.000178538000000,0.011244209000000,0.000047378000000,0.000039873000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027047500000,0.000327082000000,0.000037502000000,0.000186835000000,0.000029996000000,0.000308119000000,0.000034356000000,0.000039477000000,0.000397008000000,0.000405304000000,0.000176169000000,0.010678086000000,0.000186045000000,0.000227131000000,0.010947913000000,0.000047378000000,0.000038292000000 +0.000037896000000,0.000140218000000,0.000035922000000,0.000027244500000,0.000322736000000,0.000037502000000,0.000238983000000,0.000029996000000,0.000345650000000,0.000033368000000,0.000039477000000,0.000366983000000,0.000378835000000,0.000172613000000,0.010859419000000,0.000225551000000,0.000209353000000,0.010858234000000,0.000046983000000,0.000039872000000 +0.000038292000000,0.000177749000000,0.000035922000000,0.000027244500000,0.000323527000000,0.000037897000000,0.000186440000000,0.000030390000000,0.000307724000000,0.000025862000000,0.000039083000000,0.000466144000000,0.000373304000000,0.000176168000000,0.010680851000000,0.000189205000000,0.000173008000000,0.011431468000000,0.000046983000000,0.000039872000000 +0.000038292000000,0.000142589000000,0.000036317000000,0.000027245000000,0.000326292000000,0.000038687000000,0.000187625000000,0.000030786000000,0.000308513000000,0.000026455000000,0.000039082000000,0.000374489000000,0.000402144000000,0.000171032000000,0.010498333000000,0.000187230000000,0.000172613000000,0.011405789000000,0.000046589000000,0.000039477000000 +0.000038292000000,0.000142588000000,0.000036711000000,0.000027047000000,0.000375674000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000310094000000,0.000026059500000,0.000039477000000,0.000410439000000,0.000372514000000,0.000173008000000,0.010531123000000,0.000187230000000,0.000173403000000,0.010915123000000,0.000046983000000,0.000054489000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037896000000,0.000483526000000,0.000030785000000,0.000307329000000,0.000026652000000,0.000039477000000,0.000376859000000,0.000444020000000,0.000172217000000,0.010536258000000,0.000223971000000,0.000172613000000,0.011198381000000,0.000047379000000,0.000041453000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000045417500000,0.000327871000000,0.000037107000000,0.000238983000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000038687000000,0.000372514000000,0.000414786000000,0.000174193000000,0.011473739000000,0.000188415000000,0.000207378000000,0.011348900000000,0.000047378000000,0.000037897000000 +0.000037897000000,0.000140218000000,0.000035526000000,0.000027442500000,0.000324317000000,0.000037107000000,0.000226736000000,0.000031576000000,0.000308909000000,0.000026257000000,0.000039082000000,0.000445600000000,0.000424662000000,0.000173403000000,0.010523617000000,0.000189996000000,0.000174193000000,0.011102382000000,0.000046983000000,0.000037897000000 +0.000037897000000,0.000215279000000,0.000035921000000,0.000027245000000,0.000324712000000,0.000037502000000,0.000189205000000,0.000030391000000,0.000307724000000,0.000025862000000,0.000075428000000,0.000374489000000,0.000453502000000,0.000172218000000,0.010624753000000,0.000187231000000,0.000172218000000,0.010759074000000,0.000046193000000,0.000097551000000 +0.000037897000000,0.000155626000000,0.000035922000000,0.000027244500000,0.000326292000000,0.000037502000000,0.000190390000000,0.000030786000000,0.000365797000000,0.000025862000000,0.000039477000000,0.000694884000000,0.000375279000000,0.000172612000000,0.010379025000000,0.000297452000000,0.000173008000000,0.011048653000000,0.000046983000000,0.000112563000000 +0.000037897000000,0.000144169000000,0.000072268000000,0.000027244500000,0.000322737000000,0.000038292000000,0.000189600000000,0.000030785000000,0.000308909000000,0.000026652000000,0.000039872000000,0.000623378000000,0.000385946000000,0.000171823000000,0.010553247000000,0.000240169000000,0.000172613000000,0.010931320000000,0.000047379000000,0.000127971000000 +0.000038292000000,0.000144168000000,0.000036317000000,0.000027245000000,0.000322341000000,0.000037897000000,0.000224761000000,0.000031181000000,0.000307724000000,0.000026652000000,0.000039873000000,0.000383181000000,0.000373699000000,0.000172218000000,0.010863765000000,0.000186440000000,0.000208563000000,0.011308999000000,0.000047378000000,0.000125995000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027047000000,0.000362242000000,0.000038292000000,0.000188811000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039872000000,0.000378835000000,0.000521057000000,0.000285600000000,0.010919468000000,0.000227132000000,0.000173403000000,0.010939222000000,0.000046588000000,0.000119674000000 +0.000058440000000,0.000141008000000,0.000035921000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000187625000000,0.000030785000000,0.000308909000000,0.000026257500000,0.000039477000000,0.000437699000000,0.000380021000000,0.000204218000000,0.010652407000000,0.000189601000000,0.000171032000000,0.011265148000000,0.000047379000000,0.000071872000000 +0.000054489000000,0.000180514000000,0.000036712000000,0.000027442500000,0.000324711000000,0.000088465000000,0.000189996000000,0.000031181000000,0.000307724000000,0.000049170500000,0.000039477000000,0.000372514000000,0.000407279000000,0.000171033000000,0.010675321000000,0.000187625000000,0.000176563000000,0.011663370000000,0.000047773000000,0.000125205000000 +0.000037502000000,0.000141403000000,0.000036712000000,0.000027442000000,0.000359872000000,0.000039872000000,0.000223181000000,0.000029995000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000442835000000,0.000372119000000,0.000217254000000,0.010776456000000,0.000192366000000,0.000173007000000,0.011695370000000,0.000046984000000,0.000091625000000 +0.000037897000000,0.000142589000000,0.000036316000000,0.000027244500000,0.000323527000000,0.000051329000000,0.000190785000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000496563000000,0.000376070000000,0.000175773000000,0.010549691000000,0.000224761000000,0.000381995000000,0.011172308000000,0.000046983000000,0.000084119000000 +0.000037897000000,0.000184070000000,0.000036317000000,0.000027245000000,0.000324317000000,0.000037502000000,0.000186835000000,0.000050144000000,0.000307724000000,0.000026257000000,0.000039478000000,0.000630884000000,0.000443625000000,0.000174193000000,0.010603814000000,0.000190390000000,0.000533699000000,0.011288061000000,0.000046984000000,0.000059626000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000037107000000,0.000186835000000,0.000029996000000,0.000307329000000,0.000026850000000,0.000039477000000,0.000425847000000,0.000370143000000,0.000173008000000,0.011197591000000,0.000188415000000,0.000442440000000,0.010965691000000,0.000046983000000,0.000107823000000 +0.000037896000000,0.000141403000000,0.000036317000000,0.000027244500000,0.000323527000000,0.000037107000000,0.000226736000000,0.000031180000000,0.000308909000000,0.000026652000000,0.000059625000000,0.000414390000000,0.000423081000000,0.000175378000000,0.011052605000000,0.000186835000000,0.000277699000000,0.011250925000000,0.000046983000000,0.000061996000000 +0.000038292000000,0.000213304000000,0.000036711000000,0.000027245000000,0.000324712000000,0.000038292000000,0.000190391000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000055675000000,0.000372119000000,0.000370144000000,0.000173798000000,0.010471469000000,0.000206984000000,0.000190786000000,0.011461098000000,0.000046589000000,0.000105848000000 +0.000037897000000,0.000157206000000,0.000037107000000,0.000028035000000,0.000330638000000,0.000037897000000,0.000187230000000,0.000030786000000,0.000307329000000,0.000026454500000,0.000054094000000,0.000434934000000,0.000436909000000,0.000178538000000,0.010664654000000,0.000190390000000,0.000224761000000,0.010825444000000,0.000046983000000,0.000104662000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000045022500000,0.000323527000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000307328000000,0.000027442500000,0.000039478000000,0.000400169000000,0.000367378000000,0.000172613000000,0.010471469000000,0.000189995000000,0.000189995000000,0.010972012000000,0.000046984000000,0.000054094000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000323132000000,0.000037107000000,0.000225156000000,0.000029996000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000412415000000,0.000374095000000,0.000173403000000,0.010718777000000,0.000186835000000,0.000189600000000,0.011187320000000,0.000047378000000,0.000042243000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000189206000000,0.000031971000000,0.000308909000000,0.000026257000000,0.000039872000000,0.000398588000000,0.000410044000000,0.000172613000000,0.010943963000000,0.000188416000000,0.000191181000000,0.011140307000000,0.000046983000000,0.000055675000000 +0.000037896000000,0.000142589000000,0.000036317000000,0.000027047500000,0.000323131000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000389896000000,0.000371723000000,0.000173008000000,0.010451716000000,0.000188810000000,0.000225551000000,0.010970037000000,0.000048168000000,0.000042243000000 +0.000038687000000,0.000180119000000,0.000036712000000,0.000027244500000,0.000324316000000,0.000037896000000,0.000189996000000,0.000031970000000,0.000387526000000,0.000025862000000,0.000039477000000,0.000404909000000,0.000446391000000,0.000179329000000,0.010623963000000,0.000188810000000,0.000189601000000,0.010936851000000,0.000046588000000,0.000041057000000 +0.000037107000000,0.000143379000000,0.000036316000000,0.000027244500000,0.000325106000000,0.000037107000000,0.000221996000000,0.000033946000000,0.000308118000000,0.000026059500000,0.000039082000000,0.000411625000000,0.000374094000000,0.000172218000000,0.010557592000000,0.000188416000000,0.000191971000000,0.012041838000000,0.000046984000000,0.000055674000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000307329000000,0.000026454500000,0.000080169000000,0.000432168000000,0.000374489000000,0.000171032000000,0.010578530000000,0.000209354000000,0.000190391000000,0.011701295000000,0.000046983000000,0.000054094000000 +0.000037502000000,0.000144959000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000308119000000,0.000026454500000,0.000039872000000,0.000404119000000,0.000413995000000,0.000173403000000,0.010767370000000,0.000188415000000,0.000191180000000,0.011136753000000,0.000046588000000,0.000041058000000 +0.000037897000000,0.000142984000000,0.000055279000000,0.000027047000000,0.000326292000000,0.000037501000000,0.000188810000000,0.000030390000000,0.000306933000000,0.000043442500000,0.000039477000000,0.000386341000000,0.000372119000000,0.000172217000000,0.010345839000000,0.000187230000000,0.000225551000000,0.010928950000000,0.000046983000000,0.000042637000000 +0.000037897000000,0.000142193000000,0.000036712000000,0.000027047000000,0.000322736000000,0.000037107000000,0.000206193000000,0.000030391000000,0.000308514000000,0.000033960500000,0.000039478000000,0.000398588000000,0.000420712000000,0.000173008000000,0.010555222000000,0.000188415000000,0.000171823000000,0.011214974000000,0.000047773000000,0.000041452000000 +0.000038292000000,0.000212119000000,0.000036316000000,0.000027047500000,0.000325502000000,0.000037107000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000026257500000,0.000039477000000,0.000393847000000,0.000375674000000,0.000173007000000,0.010569839000000,0.000186835000000,0.000171823000000,0.011501790000000,0.000047379000000,0.000040663000000 +0.000039082000000,0.000159181000000,0.000036317000000,0.000027047000000,0.000473650000000,0.000037107000000,0.000189206000000,0.000030786000000,0.000306143000000,0.000026059500000,0.000039872000000,0.000440465000000,0.000417551000000,0.000171033000000,0.010429987000000,0.000189996000000,0.000174193000000,0.011542086000000,0.000046983000000,0.000041452000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000343675000000,0.000073058000000,0.000188810000000,0.000030391000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000398588000000,0.000372909000000,0.000172613000000,0.010702975000000,0.000188416000000,0.000173798000000,0.010778827000000,0.000046588000000,0.000041453000000 +0.000056860000000,0.000144168000000,0.000036316000000,0.000027047500000,0.000326292000000,0.000037107000000,0.000258341000000,0.000029996000000,0.000372909000000,0.000025862000000,0.000039872000000,0.000397797000000,0.000381206000000,0.000174193000000,0.010524407000000,0.000188811000000,0.000188811000000,0.011078283000000,0.000046983000000,0.000040267000000 +0.000088860000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000037106000000,0.000186835000000,0.000030786000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000401748000000,0.000462983000000,0.000172613000000,0.010797395000000,0.000189996000000,0.000173403000000,0.011413690000000,0.000046193000000,0.000041847000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000323527000000,0.000036712000000,0.000188415000000,0.000030786000000,0.000307329000000,0.000026849500000,0.000039082000000,0.000396612000000,0.000376069000000,0.000174588000000,0.011011122000000,0.000188415000000,0.000175378000000,0.010837691000000,0.000046984000000,0.000041058000000 +0.000037501000000,0.000178933000000,0.000036316000000,0.000045615000000,0.000325107000000,0.000036712000000,0.000189205000000,0.000031576000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000398588000000,0.000443229000000,0.000172218000000,0.010734185000000,0.000189996000000,0.000172613000000,0.010858629000000,0.000047378000000,0.000041847000000 +0.000037897000000,0.000141798000000,0.000036316000000,0.000027047000000,0.000322737000000,0.000037502000000,0.000225156000000,0.000030786000000,0.000302983000000,0.000026454500000,0.000039082000000,0.000402143000000,0.000374094000000,0.000171823000000,0.010464357000000,0.000189601000000,0.000246094000000,0.011167962000000,0.000047378000000,0.000041452000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000190391000000,0.000032366000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000433749000000,0.000366983000000,0.000172217000000,0.010361642000000,0.000190786000000,0.000174588000000,0.011558282000000,0.000047378000000,0.000041058000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000327082000000,0.000037501000000,0.000189996000000,0.000087280000000,0.000348415000000,0.000026454500000,0.000039477000000,0.000395428000000,0.000429403000000,0.000173008000000,0.011529443000000,0.000261897000000,0.000172217000000,0.010958975000000,0.000047378000000,0.000042242000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000324712000000,0.000037502000000,0.000187626000000,0.000098341000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000495773000000,0.000372514000000,0.000193156000000,0.010751173000000,0.000188810000000,0.000173008000000,0.010970826000000,0.000048169000000,0.000040662000000 +0.000038292000000,0.000142588000000,0.000037502000000,0.000027245000000,0.000374095000000,0.000037107000000,0.000225946000000,0.000098341000000,0.000308119000000,0.000026455000000,0.000039477000000,0.000391477000000,0.000445600000000,0.000171823000000,0.010614482000000,0.000189600000000,0.000173798000000,0.012790479000000,0.000046983000000,0.000041848000000 +0.000037896000000,0.000197502000000,0.000036316000000,0.000027245000000,0.000361452000000,0.000037107000000,0.000186835000000,0.000099526000000,0.000308909000000,0.000026059500000,0.000039478000000,0.000426242000000,0.000372909000000,0.000172613000000,0.010842036000000,0.000207378000000,0.000255181000000,0.011588307000000,0.000046589000000,0.000042638000000 +0.000037897000000,0.000435329000000,0.000036711000000,0.000027047000000,0.000324316000000,0.000037106000000,0.000188811000000,0.000085699000000,0.000308514000000,0.000026652000000,0.000039477000000,0.000374885000000,0.000457057000000,0.000172218000000,0.011141888000000,0.000188020000000,0.000175774000000,0.010979122000000,0.000046983000000,0.000040662000000 +0.000037897000000,0.000197501000000,0.000036317000000,0.000027837500000,0.000323131000000,0.000037502000000,0.000187230000000,0.000099922000000,0.000308119000000,0.000043442500000,0.000039477000000,0.000518291000000,0.000379230000000,0.000173403000000,0.010517691000000,0.000186835000000,0.000172218000000,0.011230777000000,0.000068712000000,0.000041453000000 +0.000037897000000,0.000157206000000,0.000036317000000,0.000027047000000,0.000326687000000,0.000037502000000,0.000222786000000,0.000098737000000,0.000307724000000,0.000033565500000,0.000039477000000,0.000368958000000,0.000370934000000,0.000171823000000,0.010589987000000,0.000189996000000,0.000178144000000,0.012142579000000,0.000063970000000,0.000071082000000 +0.000037897000000,0.000214884000000,0.000036316000000,0.000027047000000,0.000324712000000,0.000036317000000,0.000190786000000,0.000070292000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000365403000000,0.000411625000000,0.000174588000000,0.010486876000000,0.000188415000000,0.000173008000000,0.011348110000000,0.000046983000000,0.000056859000000 +0.000038292000000,0.000144168000000,0.000036317000000,0.000027047500000,0.000323527000000,0.000037502000000,0.000187231000000,0.000050539000000,0.000307724000000,0.000026455000000,0.000075033000000,0.000414785000000,0.000372119000000,0.000174194000000,0.010952259000000,0.000189601000000,0.000473650000000,0.011558282000000,0.000047378000000,0.000041452000000 +0.000038291000000,0.000145354000000,0.000055280000000,0.000027245000000,0.000325897000000,0.000037107000000,0.000188810000000,0.000032366000000,0.000398193000000,0.000026059500000,0.000039082000000,0.000368563000000,0.000744267000000,0.000173403000000,0.010706530000000,0.000190391000000,0.000535674000000,0.011189691000000,0.000047378000000,0.000041848000000 +0.000037502000000,0.000146143000000,0.000075428000000,0.000027047000000,0.000325107000000,0.000037502000000,0.000221206000000,0.000032366000000,0.000308119000000,0.000026257000000,0.000039082000000,0.000414786000000,0.000480761000000,0.000171822000000,0.010384160000000,0.000188416000000,0.000189995000000,0.010849542000000,0.000047379000000,0.000042638000000 +0.000037897000000,0.000144169000000,0.000050144000000,0.000027244500000,0.000324712000000,0.000037107000000,0.000189600000000,0.000043823000000,0.000307724000000,0.000026849500000,0.000039082000000,0.000383971000000,0.000376860000000,0.000178539000000,0.011579222000000,0.000187230000000,0.000172218000000,0.011370628000000,0.000047378000000,0.000043033000000 +0.000038292000000,0.000145353000000,0.000036317000000,0.000037319000000,0.000484317000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000308118000000,0.000026850000000,0.000039082000000,0.000371724000000,0.000367773000000,0.000171427000000,0.011344554000000,0.000187231000000,0.000174193000000,0.011071962000000,0.000046984000000,0.000040662000000 +0.000037897000000,0.000178144000000,0.000036316000000,0.000060825000000,0.000360662000000,0.000036711000000,0.000193156000000,0.000029996000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000422686000000,0.000417156000000,0.000171033000000,0.011098827000000,0.000187230000000,0.000173403000000,0.010960160000000,0.000228711000000,0.000041453000000 +0.000037897000000,0.000145353000000,0.000036316000000,0.000027244500000,0.000323922000000,0.000054094000000,0.000224366000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039477000000,0.000374490000000,0.000377255000000,0.000171823000000,0.010925000000000,0.000187230000000,0.000252810000000,0.011007962000000,0.000084119000000,0.000042243000000 +0.000037897000000,0.000140613000000,0.000035922000000,0.000027047000000,0.000326292000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000308119000000,0.000026849500000,0.000039477000000,0.000442044000000,0.000408859000000,0.000171823000000,0.010668209000000,0.000191970000000,0.000172613000000,0.010908407000000,0.000086094000000,0.000041057000000 +0.000090440000000,0.000143378000000,0.000035922000000,0.000027245000000,0.000323922000000,0.000038292000000,0.000186440000000,0.000031576000000,0.000436514000000,0.000026652500000,0.000039477000000,0.000368168000000,0.000373699000000,0.000210538000000,0.010633444000000,0.000470884000000,0.000173403000000,0.011380110000000,0.000047378000000,0.000042243000000 +0.000038292000000,0.000141798000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037106000000,0.000190390000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000371724000000,0.000371329000000,0.000172613000000,0.010958184000000,0.000205403000000,0.000171428000000,0.010627518000000,0.000046588000000,0.000041453000000 +0.000037897000000,0.000142983000000,0.000036712000000,0.000027244500000,0.000326292000000,0.000037502000000,0.000207773000000,0.000032762000000,0.000308909000000,0.000026652000000,0.000039478000000,0.000416366000000,0.000449550000000,0.000173008000000,0.010501889000000,0.000190390000000,0.000171823000000,0.010923419000000,0.000046588000000,0.000040662000000 +0.000037897000000,0.000218440000000,0.000036712000000,0.000027245000000,0.000324712000000,0.000035922000000,0.000189996000000,0.000030786000000,0.000308514000000,0.000026454500000,0.000039477000000,0.000380415000000,0.000373699000000,0.000174193000000,0.010542975000000,0.000188810000000,0.000214094000000,0.011348900000000,0.000047378000000,0.000041848000000 +0.000038292000000,0.000145353000000,0.000036712000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000189600000000,0.000029995000000,0.000307724000000,0.000026059500000,0.000039872000000,0.000416761000000,0.000411625000000,0.000172613000000,0.010549691000000,0.000186835000000,0.000171032000000,0.011348110000000,0.000046984000000,0.000041453000000 +0.000037502000000,0.000142588000000,0.000035921000000,0.000027047000000,0.000381601000000,0.000037107000000,0.000190391000000,0.000030391000000,0.000309304000000,0.000044034500000,0.000039477000000,0.000378045000000,0.000380020000000,0.000171428000000,0.010625938000000,0.000205403000000,0.000173798000000,0.011220901000000,0.000047378000000,0.000041057000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000326292000000,0.000037502000000,0.000188810000000,0.000030391000000,0.000306934000000,0.000026652500000,0.000039477000000,0.000420317000000,0.000374094000000,0.000171032000000,0.010881148000000,0.000260712000000,0.000177749000000,0.010987419000000,0.000046983000000,0.000041453000000 +0.000038292000000,0.000142984000000,0.000036317000000,0.000027245000000,0.000331033000000,0.000036712000000,0.000189995000000,0.000030785000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000379625000000,0.000388316000000,0.000171428000000,0.010598678000000,0.000201057000000,0.000171823000000,0.010856654000000,0.000047378000000,0.000040662000000 +0.000037897000000,0.000140218000000,0.000035921000000,0.000027047500000,0.000325501000000,0.000037502000000,0.000189205000000,0.000030786000000,0.000309699000000,0.000025862000000,0.000039477000000,0.000366193000000,0.000366983000000,0.000173008000000,0.010420506000000,0.000187625000000,0.000209353000000,0.011342974000000,0.000047378000000,0.000041847000000 +0.000038687000000,0.000178934000000,0.000036712000000,0.000027047000000,0.000325106000000,0.000037107000000,0.000188810000000,0.000029996000000,0.000308514000000,0.000025862000000,0.000039478000000,0.000465749000000,0.000452712000000,0.000173798000000,0.010806876000000,0.000187230000000,0.000173403000000,0.010876802000000,0.000047378000000,0.000073453000000 +0.000038687000000,0.000144958000000,0.000036317000000,0.000027047000000,0.000326687000000,0.000036711000000,0.000190390000000,0.000030390000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000373699000000,0.000373699000000,0.000173403000000,0.010510975000000,0.000224761000000,0.000172218000000,0.011133987000000,0.000047773000000,0.000041848000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000037502000000,0.000188811000000,0.000030391000000,0.000305354000000,0.000026059500000,0.000039477000000,0.000411625000000,0.000452316000000,0.000171823000000,0.010409444000000,0.000188415000000,0.000173008000000,0.011008752000000,0.000046983000000,0.000041452000000 +0.000037897000000,0.000142588000000,0.000037897000000,0.000037121000000,0.000323131000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000309699000000,0.000026059500000,0.000039477000000,0.000376070000000,0.000443625000000,0.000173008000000,0.012301788000000,0.000191970000000,0.000171428000000,0.011211024000000,0.000047378000000,0.000058440000000 +0.000038292000000,0.000144564000000,0.000055280000000,0.000035146000000,0.000362242000000,0.000037107000000,0.000187625000000,0.000031971000000,0.000308514000000,0.000025862500000,0.000075823000000,0.000373699000000,0.000372909000000,0.000178539000000,0.011273049000000,0.000190391000000,0.000191971000000,0.010731420000000,0.000046589000000,0.000039082000000 +0.000038292000000,0.000141007000000,0.000087674000000,0.000027244500000,0.000325501000000,0.000037106000000,0.000188415000000,0.000030785000000,0.000308119000000,0.000026059500000,0.000039872000000,0.000461403000000,0.000401353000000,0.000172613000000,0.011463073000000,0.000259526000000,0.000172613000000,0.011014284000000,0.000046588000000,0.000039477000000 +0.000038687000000,0.000178934000000,0.000035922000000,0.000027640000000,0.000324316000000,0.000037502000000,0.000187625000000,0.000066736000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000376070000000,0.000369354000000,0.000209354000000,0.010935666000000,0.000189601000000,0.000173798000000,0.011520356000000,0.000046983000000,0.000038292000000 +0.000037897000000,0.000145354000000,0.000036317000000,0.000027244500000,0.000325896000000,0.000036712000000,0.000188415000000,0.000030786000000,0.000309304000000,0.000026454500000,0.000039872000000,0.000406489000000,0.000410439000000,0.000171822000000,0.010605000000000,0.000189206000000,0.000182884000000,0.011610826000000,0.000047774000000,0.000071873000000 +0.000037897000000,0.000140613000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000186835000000,0.000031181000000,0.000308909000000,0.000026257000000,0.000039478000000,0.000380415000000,0.000374884000000,0.000171428000000,0.012189986000000,0.000190391000000,0.000183279000000,0.010734975000000,0.000047378000000,0.000041847000000 +0.000037502000000,0.000142193000000,0.000035921000000,0.000027245000000,0.000324711000000,0.000055674000000,0.000187625000000,0.000030390000000,0.000395033000000,0.000026455000000,0.000039082000000,0.000419131000000,0.000411230000000,0.000173008000000,0.011282530000000,0.000223971000000,0.000185255000000,0.011362727000000,0.000046589000000,0.000071477000000 +0.000037897000000,0.000144564000000,0.000036712000000,0.000027244500000,0.000325106000000,0.000037501000000,0.000206983000000,0.000031181000000,0.000309304000000,0.000025862500000,0.000039082000000,0.000380020000000,0.000378045000000,0.000171427000000,0.010981098000000,0.000186440000000,0.000184464000000,0.010827814000000,0.000047378000000,0.000041057000000 +0.000037502000000,0.000142194000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000037502000000,0.000187625000000,0.000030390000000,0.000308119000000,0.000025862000000,0.000039872000000,0.000366588000000,0.000376465000000,0.000172218000000,0.010661494000000,0.000186835000000,0.000183675000000,0.010854678000000,0.000046589000000,0.000053304000000 +0.000092415000000,0.000144959000000,0.000035921000000,0.000027245000000,0.000323526000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000496564000000,0.000446390000000,0.000171428000000,0.010552851000000,0.000187230000000,0.000183280000000,0.011151764000000,0.000046588000000,0.000039082000000 +0.000037502000000,0.000192366000000,0.000036317000000,0.000027047000000,0.000361847000000,0.000037502000000,0.000189601000000,0.000030391000000,0.000308119000000,0.000034356000000,0.000039872000000,0.000371724000000,0.000366588000000,0.000173798000000,0.010666234000000,0.000259526000000,0.000182884000000,0.010690728000000,0.000046983000000,0.000038687000000 +0.000037501000000,0.000144168000000,0.000036317000000,0.000027244500000,0.000322736000000,0.000037502000000,0.000223576000000,0.000029995000000,0.000307724000000,0.000026454500000,0.000038687000000,0.000419131000000,0.000400958000000,0.000173798000000,0.010592358000000,0.000186835000000,0.000183674000000,0.010846382000000,0.000046589000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000364217000000,0.000037107000000,0.000189205000000,0.000030391000000,0.000308514000000,0.000026059500000,0.000039478000000,0.000382786000000,0.000375279000000,0.000171032000000,0.010682826000000,0.000187230000000,0.000185255000000,0.011000456000000,0.000047378000000,0.000039477000000 +0.000037897000000,0.000144563000000,0.000036316000000,0.000027640000000,0.000346045000000,0.000037107000000,0.000189600000000,0.000030391000000,0.000307724000000,0.000026059500000,0.000039872000000,0.000425452000000,0.000375279000000,0.000218835000000,0.010574185000000,0.000186835000000,0.000184464000000,0.011333097000000,0.000046984000000,0.000039082000000 +0.000037897000000,0.000142588000000,0.000036712000000,0.000027244500000,0.000323132000000,0.000037502000000,0.000186440000000,0.000030785000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000377649000000,0.000435724000000,0.000173008000000,0.010631864000000,0.000225551000000,0.000181699000000,0.011102777000000,0.000046983000000,0.000039477000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000036711000000,0.000334193000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000371723000000,0.000381205000000,0.000170637000000,0.010842036000000,0.000188415000000,0.000182490000000,0.010802135000000,0.000046983000000,0.000039872000000 +0.000038292000000,0.000177353000000,0.000036317000000,0.000027047500000,0.000326292000000,0.000037502000000,0.000190391000000,0.000030391000000,0.000307329000000,0.000026455000000,0.000039477000000,0.000639970000000,0.000410045000000,0.000174588000000,0.010452901000000,0.000188415000000,0.000189206000000,0.011048258000000,0.000046984000000,0.000066736000000 +0.000037501000000,0.000144959000000,0.000036316000000,0.000038306500000,0.000324711000000,0.000037897000000,0.000186440000000,0.000030390000000,0.000307723000000,0.000026059500000,0.000039477000000,0.000377255000000,0.000370934000000,0.000171427000000,0.010448556000000,0.000189600000000,0.000185254000000,0.011455567000000,0.000046983000000,0.000038291000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000037501000000,0.000225551000000,0.000030786000000,0.000333798000000,0.000025862000000,0.000039873000000,0.000415576000000,0.000379625000000,0.000173403000000,0.010650037000000,0.000260316000000,0.000184465000000,0.010721938000000,0.000047379000000,0.000038687000000 +0.000038292000000,0.000150094000000,0.000036317000000,0.000027442000000,0.000558983000000,0.000036712000000,0.000217650000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039872000000,0.000375675000000,0.000683428000000,0.000173008000000,0.011064456000000,0.000187626000000,0.000184465000000,0.011119369000000,0.000047378000000,0.000037897000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027442500000,0.000344860000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000306934000000,0.000026454500000,0.000039872000000,0.000403723000000,0.000406094000000,0.000171428000000,0.011278975000000,0.000187625000000,0.000182094000000,0.011350876000000,0.000046983000000,0.000038292000000 +0.000037502000000,0.000143774000000,0.000055674000000,0.000027047000000,0.000361847000000,0.000037502000000,0.000188020000000,0.000031971000000,0.000310094000000,0.000025862000000,0.000039477000000,0.000381600000000,0.000373699000000,0.000173798000000,0.010446580000000,0.000189205000000,0.000181699000000,0.011410135000000,0.000046984000000,0.000038687000000 +0.000037502000000,0.000176959000000,0.000036316000000,0.000027047000000,0.000324712000000,0.000037897000000,0.000232267000000,0.000030390000000,0.000359872000000,0.000026257000000,0.000075428000000,0.000406884000000,0.000374094000000,0.000173403000000,0.011019419000000,0.000224761000000,0.000184465000000,0.010722728000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000322737000000,0.000037502000000,0.000189600000000,0.000030786000000,0.000306538000000,0.000026652500000,0.000039477000000,0.000375675000000,0.000409255000000,0.000173403000000,0.011177838000000,0.000189205000000,0.000181700000000,0.011180604000000,0.000082144000000,0.000039082000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027245000000,0.000375280000000,0.000038292000000,0.000187230000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000381205000000,0.000373699000000,0.000173798000000,0.010685197000000,0.000189600000000,0.000184465000000,0.010981888000000,0.000047774000000,0.000039477000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027837000000,0.000325502000000,0.000037502000000,0.000188415000000,0.000030786000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000407280000000,0.000404514000000,0.000174193000000,0.010702975000000,0.000186835000000,0.000219625000000,0.011347320000000,0.000046983000000,0.000038687000000 +0.000038292000000,0.000144168000000,0.000036316000000,0.000027245000000,0.000323922000000,0.000038292000000,0.000223971000000,0.000030391000000,0.000307329000000,0.000049565500000,0.000039477000000,0.000376069000000,0.000370143000000,0.000171032000000,0.010422482000000,0.000224760000000,0.000186440000000,0.010717988000000,0.000046588000000,0.000039082000000 +0.000037896000000,0.000186440000000,0.000036712000000,0.000027245000000,0.000361057000000,0.000073848000000,0.000192761000000,0.000046983000000,0.000308909000000,0.000026455000000,0.000039082000000,0.000407674000000,0.000374094000000,0.000173403000000,0.010716012000000,0.000189996000000,0.000185650000000,0.010866135000000,0.000046983000000,0.000039477000000 +0.000038687000000,0.000215279000000,0.000036317000000,0.000027442000000,0.000324712000000,0.000037897000000,0.000186045000000,0.000030390000000,0.000309304000000,0.000025862500000,0.000039872000000,0.000381996000000,0.000417551000000,0.000174194000000,0.010893395000000,0.000187625000000,0.000183675000000,0.011036407000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000154835000000,0.000036316000000,0.000027047500000,0.000322736000000,0.000037502000000,0.000190391000000,0.000030786000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000375674000000,0.000373304000000,0.000171823000000,0.010523221000000,0.000188810000000,0.000185255000000,0.011162827000000,0.000047379000000,0.000039872000000 +0.000073453000000,0.000141403000000,0.000036317000000,0.000027245000000,0.000362637000000,0.000036316000000,0.000223970000000,0.000032762000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000411230000000,0.000407674000000,0.000172217000000,0.010348210000000,0.000260711000000,0.000183674000000,0.011242628000000,0.000046983000000,0.000040268000000 +0.000037501000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000326292000000,0.000037107000000,0.000189996000000,0.000033551000000,0.000357107000000,0.000026257000000,0.000039477000000,0.000378835000000,0.000428613000000,0.000174193000000,0.010511765000000,0.000187230000000,0.000182095000000,0.011106727000000,0.000047774000000,0.000039477000000 +0.000037502000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000323922000000,0.000037502000000,0.000187230000000,0.000032761000000,0.000306934000000,0.000026059500000,0.000039082000000,0.000410440000000,0.000446391000000,0.000173008000000,0.010943172000000,0.000188810000000,0.000182095000000,0.010735765000000,0.000046193000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000035936500000,0.000375674000000,0.000037502000000,0.000188810000000,0.000030390000000,0.000306143000000,0.000026257000000,0.000039082000000,0.000376860000000,0.000374094000000,0.000285996000000,0.010532703000000,0.000186835000000,0.000183675000000,0.011491518000000,0.000046984000000,0.000038292000000 +0.000037897000000,0.000178934000000,0.000036317000000,0.000033566000000,0.000325107000000,0.000037896000000,0.000223971000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000380020000000,0.000379625000000,0.000203428000000,0.010588802000000,0.000226737000000,0.000191180000000,0.011241049000000,0.000047378000000,0.000039478000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000038687000000,0.000186440000000,0.000031576000000,0.000307724000000,0.000026257500000,0.000039082000000,0.000426243000000,0.000409650000000,0.000172218000000,0.010978333000000,0.000191181000000,0.000184860000000,0.010882333000000,0.000047774000000,0.000039872000000 +0.000037501000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000341304000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000307724000000,0.000026652000000,0.000039477000000,0.000374094000000,0.000368563000000,0.000174193000000,0.010622778000000,0.000190390000000,0.000183674000000,0.011066036000000,0.000046983000000,0.000039082000000 +0.000038687000000,0.000142983000000,0.000035922000000,0.000027047500000,0.000323526000000,0.000037106000000,0.000189600000000,0.000030391000000,0.000308119000000,0.000026257000000,0.000039082000000,0.000417551000000,0.000410045000000,0.000173403000000,0.010672555000000,0.000189205000000,0.000182094000000,0.011384455000000,0.000046983000000,0.000088070000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000415180000000,0.000037107000000,0.000186440000000,0.000030785000000,0.000307723000000,0.000026257000000,0.000039082000000,0.000366588000000,0.000373304000000,0.000173403000000,0.010827420000000,0.000306539000000,0.000184070000000,0.011324802000000,0.000046589000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000324316000000,0.000037897000000,0.000187230000000,0.000030391000000,0.000308514000000,0.000026455000000,0.000039477000000,0.000367774000000,0.000376860000000,0.000171427000000,0.010447370000000,0.000274144000000,0.000218440000000,0.010825049000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000180514000000,0.000036317000000,0.000027047500000,0.000325501000000,0.000036317000000,0.000188415000000,0.000030391000000,0.000309699000000,0.000026257000000,0.000039477000000,0.000566094000000,0.000412020000000,0.000171428000000,0.010478976000000,0.000188810000000,0.000183675000000,0.011308209000000,0.000047774000000,0.000039872000000 +0.000037897000000,0.000141798000000,0.000035922000000,0.000027245000000,0.000375674000000,0.000037897000000,0.000189206000000,0.000030390000000,0.000307329000000,0.000026652000000,0.000039477000000,0.000377650000000,0.000381601000000,0.000173008000000,0.010926184000000,0.000262292000000,0.000182884000000,0.010869296000000,0.000047378000000,0.000038687000000 +0.000037897000000,0.000145749000000,0.000071873000000,0.000027047000000,0.000324711000000,0.000037106000000,0.000187625000000,0.000030391000000,0.000308514000000,0.000043837500000,0.000039477000000,0.000421106000000,0.000400563000000,0.000174588000000,0.010213493000000,0.000188415000000,0.000184860000000,0.011460307000000,0.000048564000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000204218000000,0.000031181000000,0.000305748000000,0.000025862000000,0.000092810000000,0.000366193000000,0.000376070000000,0.000171823000000,0.010493593000000,0.000189995000000,0.000184465000000,0.010720753000000,0.000047773000000,0.000038687000000 +0.000038292000000,0.000143379000000,0.000035921000000,0.000027640000000,0.000361847000000,0.000037107000000,0.000186835000000,0.000052909000000,0.000307328000000,0.000026849500000,0.000071082000000,0.000422292000000,0.000371724000000,0.000171427000000,0.010457247000000,0.000188810000000,0.000182094000000,0.010807666000000,0.000047774000000,0.000039872000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027837000000,0.000325502000000,0.000038687000000,0.000187231000000,0.000050934000000,0.000306934000000,0.000025862000000,0.000058836000000,0.000368563000000,0.000400563000000,0.000171823000000,0.010765394000000,0.000268613000000,0.000184465000000,0.011252901000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000212909000000,0.000036317000000,0.000027047500000,0.000323131000000,0.000037502000000,0.000189601000000,0.000033156000000,0.000308119000000,0.000026455000000,0.000041452000000,0.000414390000000,0.000373699000000,0.000170638000000,0.010553642000000,0.000204612000000,0.000183675000000,0.012008652000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000361847000000,0.000037502000000,0.000201453000000,0.000059626000000,0.000307723000000,0.000025664500000,0.000041848000000,0.000383971000000,0.000463773000000,0.000191576000000,0.010557197000000,0.000189205000000,0.000181304000000,0.011473740000000,0.000046983000000,0.000039083000000 +0.000038292000000,0.000141008000000,0.000036316000000,0.000036923500000,0.000323131000000,0.000071872000000,0.000187230000000,0.000033156000000,0.000304958000000,0.000026257000000,0.000053304000000,0.000371329000000,0.000376069000000,0.000172613000000,0.010568654000000,0.000186440000000,0.000182094000000,0.011105147000000,0.000046588000000,0.000037502000000 +0.000037896000000,0.000143379000000,0.000036317000000,0.000035343500000,0.000325501000000,0.000052119000000,0.000186835000000,0.000045008000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000409650000000,0.000417946000000,0.000172218000000,0.010712852000000,0.000223180000000,0.000182489000000,0.010810827000000,0.000046589000000,0.000040267000000 +0.000037502000000,0.000142983000000,0.000036712000000,0.000027047500000,0.000417946000000,0.000038687000000,0.000223971000000,0.000031971000000,0.000448761000000,0.000025862000000,0.000039477000000,0.000374094000000,0.000364612000000,0.000175774000000,0.010811222000000,0.000188020000000,0.000186045000000,0.010992950000000,0.000046193000000,0.000039082000000 +0.000038687000000,0.000141798000000,0.000036711000000,0.000027245000000,0.000322737000000,0.000038687000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000026849500000,0.000039873000000,0.000407279000000,0.000369353000000,0.000172218000000,0.010492012000000,0.000188415000000,0.000195921000000,0.011230777000000,0.000046983000000,0.000039477000000 +0.000058045000000,0.000181699000000,0.000036316000000,0.000027639500000,0.000361452000000,0.000038687000000,0.000187230000000,0.000031181000000,0.000309304000000,0.000026257000000,0.000039478000000,0.000367378000000,0.000410440000000,0.000208958000000,0.010459222000000,0.000186835000000,0.000172612000000,0.011439369000000,0.000047379000000,0.000038292000000 +0.000071082000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037107000000,0.000187230000000,0.000030390000000,0.000307724000000,0.000026849500000,0.000039082000000,0.000372119000000,0.000383181000000,0.000175773000000,0.011033641000000,0.000224366000000,0.000210144000000,0.011413690000000,0.000047378000000,0.000038687000000 +0.000050539000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000037502000000,0.000190390000000,0.000030391000000,0.000307329000000,0.000025664500000,0.000039082000000,0.000443230000000,0.000436514000000,0.000171822000000,0.010884703000000,0.000190390000000,0.000173403000000,0.011010728000000,0.000046984000000,0.000038687000000 +0.000057650000000,0.000142984000000,0.000036316000000,0.000027244500000,0.000361057000000,0.000037502000000,0.000201452000000,0.000030391000000,0.000342094000000,0.000025862000000,0.000039477000000,0.000380415000000,0.000372514000000,0.000171033000000,0.010785542000000,0.000188810000000,0.000175773000000,0.011411715000000,0.000058045000000,0.000039082000000 +0.000053700000000,0.000142984000000,0.000036316000000,0.000027244500000,0.000324316000000,0.000037107000000,0.000187230000000,0.000031181000000,0.000322736000000,0.000026257000000,0.000039477000000,0.000416761000000,0.000366983000000,0.000172218000000,0.010421691000000,0.000190785000000,0.000175773000000,0.010902085000000,0.000044218000000,0.000038292000000 +0.000051724000000,0.000144168000000,0.000035527000000,0.000027245000000,0.000323131000000,0.000037897000000,0.000186835000000,0.000046588000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000378045000000,0.000414391000000,0.000174983000000,0.013673441000000,0.000227526000000,0.000174193000000,0.010644111000000,0.000044218000000,0.000101897000000 +0.000037897000000,0.000162736000000,0.000036317000000,0.000027047000000,0.000419131000000,0.000037107000000,0.000189205000000,0.000032366000000,0.000308909000000,0.000035739000000,0.000039477000000,0.000392267000000,0.000372909000000,0.000172218000000,0.010792259000000,0.000188810000000,0.000209353000000,0.010885888000000,0.000062786000000,0.000039478000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027442000000,0.000524218000000,0.000038687000000,0.000203032000000,0.000032366000000,0.000308119000000,0.000051541000000,0.000039873000000,0.000379625000000,0.000419526000000,0.000172613000000,0.010344259000000,0.000186440000000,0.000178144000000,0.011090135000000,0.000061206000000,0.000040267000000 +0.000037897000000,0.000143379000000,0.000037107000000,0.000027245000000,0.000325502000000,0.000037897000000,0.000188415000000,0.000044613000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000366983000000,0.000372909000000,0.000174983000000,0.010403519000000,0.000187231000000,0.000171428000000,0.010828209000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000307724000000,0.000026454500000,0.000075427000000,0.000425847000000,0.000405304000000,0.000172218000000,0.010609740000000,0.000221996000000,0.000178143000000,0.010950678000000,0.000045008000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000323922000000,0.000037106000000,0.000186835000000,0.000029995000000,0.000344464000000,0.000025862000000,0.000039082000000,0.000372909000000,0.000592563000000,0.000193156000000,0.010665444000000,0.000187626000000,0.000172217000000,0.010887864000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000143773000000,0.000050539000000,0.000027245000000,0.000325502000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000360267000000,0.000025862000000,0.000039477000000,0.000466143000000,0.000511970000000,0.000172218000000,0.010721938000000,0.000186835000000,0.000209354000000,0.013321047000000,0.000044613000000,0.000038687000000 +0.000039082000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000322342000000,0.000035922000000,0.000186045000000,0.000029996000000,0.000331823000000,0.000026059500000,0.000039082000000,0.000426637000000,0.000374094000000,0.000171427000000,0.010769346000000,0.000188020000000,0.000174193000000,0.011235518000000,0.000044613000000,0.000037897000000 +0.000037896000000,0.000389501000000,0.000036316000000,0.000064775500000,0.000325897000000,0.000037502000000,0.000189995000000,0.000031180000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000393452000000,0.000400563000000,0.000170638000000,0.010443815000000,0.000223575000000,0.000173403000000,0.011426332000000,0.000044217000000,0.000039082000000 +0.000038687000000,0.000197897000000,0.000036317000000,0.000078800000000,0.000325107000000,0.000037106000000,0.000186440000000,0.000030391000000,0.000308514000000,0.000026652500000,0.000039872000000,0.000373304000000,0.000392662000000,0.000173008000000,0.010829000000000,0.000188810000000,0.000171428000000,0.011618332000000,0.000044217000000,0.000038292000000 +0.000037897000000,0.000156415000000,0.000036317000000,0.000063590500000,0.000324316000000,0.000038292000000,0.000187230000000,0.000030391000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000375675000000,0.000372909000000,0.000210143000000,0.010981888000000,0.000188415000000,0.000175379000000,0.011604110000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000037121000000,0.000325107000000,0.000075823000000,0.000190390000000,0.000030390000000,0.000325501000000,0.000025862000000,0.000039478000000,0.000441254000000,0.000447971000000,0.000171033000000,0.010305543000000,0.000186835000000,0.000209354000000,0.011032061000000,0.000045008000000,0.000038687000000 +0.000037897000000,0.000177353000000,0.000036316000000,0.000029220000000,0.000324711000000,0.000077798000000,0.000187625000000,0.000031181000000,0.000307724000000,0.000026849500000,0.000039478000000,0.000380020000000,0.000372514000000,0.000172218000000,0.010588802000000,0.000227526000000,0.000171823000000,0.012404504000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000142589000000,0.000036712000000,0.000033961000000,0.000322341000000,0.000086490000000,0.000187230000000,0.000052909000000,0.000310094000000,0.000026850000000,0.000039477000000,0.000419131000000,0.000444810000000,0.000172613000000,0.011405394000000,0.000189995000000,0.000176168000000,0.011412110000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000035922000000,0.000027047000000,0.000324712000000,0.000039477000000,0.000222786000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000379230000000,0.000375279000000,0.000171428000000,0.011188506000000,0.000190390000000,0.000173403000000,0.011531419000000,0.000044218000000,0.000040267000000 +0.000073453000000,0.000142193000000,0.000036712000000,0.000027047000000,0.000325107000000,0.000051329000000,0.000225551000000,0.000030391000000,0.000306539000000,0.000026257000000,0.000039872000000,0.000425452000000,0.000371328000000,0.000208169000000,0.010463568000000,0.000188415000000,0.000171823000000,0.011027715000000,0.000044613000000,0.000038291000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027047500000,0.000322736000000,0.000037107000000,0.000188810000000,0.000030390000000,0.000308514000000,0.000025862000000,0.000039872000000,0.000423872000000,0.000446786000000,0.000173008000000,0.010658333000000,0.000225946000000,0.000302193000000,0.010992555000000,0.000044613000000,0.000039082000000 +0.000037896000000,0.000144959000000,0.000037502000000,0.000027640000000,0.000324712000000,0.000037502000000,0.000188415000000,0.000030786000000,0.000564514000000,0.000044232500000,0.000039873000000,0.000371724000000,0.000375674000000,0.000172613000000,0.010221790000000,0.000187230000000,0.000188810000000,0.010795814000000,0.000044613000000,0.000039477000000 +0.000038687000000,0.000175773000000,0.000035922000000,0.000027244500000,0.000324712000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000324317000000,0.000025862000000,0.000039477000000,0.000408860000000,0.000408859000000,0.000171032000000,0.012685788000000,0.000194341000000,0.000171428000000,0.011409740000000,0.000044218000000,0.000040267000000 +0.000038292000000,0.000159181000000,0.000036316000000,0.000043837500000,0.000322736000000,0.000038291000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000039872000000,0.000383181000000,0.000371724000000,0.000170638000000,0.010861789000000,0.000190786000000,0.000173403000000,0.010755123000000,0.000044218000000,0.000040267000000 +0.000037897000000,0.000142589000000,0.000036317000000,0.000034948000000,0.000324711000000,0.000037502000000,0.000187625000000,0.000050934000000,0.000307723000000,0.000026849500000,0.000039477000000,0.000407279000000,0.000451526000000,0.000174984000000,0.010629098000000,0.000258736000000,0.000211329000000,0.011077098000000,0.000063181000000,0.000069502000000 +0.000037897000000,0.000142194000000,0.000035922000000,0.000027047500000,0.000330637000000,0.000037502000000,0.000190390000000,0.000045403000000,0.000308119000000,0.000026652500000,0.000039477000000,0.000393452000000,0.000370934000000,0.000173008000000,0.010632654000000,0.000189601000000,0.000173403000000,0.010927370000000,0.000097156000000,0.000040267000000 +0.000037897000000,0.000139823000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000037107000000,0.000187230000000,0.000031971000000,0.000309700000000,0.000026059500000,0.000039872000000,0.000372119000000,0.000376069000000,0.000216859000000,0.010645691000000,0.000188021000000,0.000172613000000,0.011274629000000,0.000080563000000,0.000039478000000 +0.000038687000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000187230000000,0.000067527000000,0.000308514000000,0.000026257000000,0.000039478000000,0.000408464000000,0.000449946000000,0.000171822000000,0.010855863000000,0.000188020000000,0.000173008000000,0.011042333000000,0.000061995000000,0.000038687000000 +0.000037897000000,0.000279279000000,0.000035922000000,0.000027245000000,0.000360662000000,0.000037502000000,0.000189601000000,0.000045798000000,0.000306933000000,0.000027442500000,0.000039872000000,0.000376859000000,0.000376070000000,0.000173798000000,0.010569444000000,0.000573205000000,0.000173798000000,0.011370234000000,0.000046984000000,0.000039477000000 +0.000037897000000,0.000143379000000,0.000035922000000,0.000027245000000,0.000323526000000,0.000037897000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000026257000000,0.000073057000000,0.000451527000000,0.000446390000000,0.000210143000000,0.010526383000000,0.000188415000000,0.000209749000000,0.011146233000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000144958000000,0.000056069000000,0.000027442000000,0.000323131000000,0.000038687000000,0.000186835000000,0.000030786000000,0.000309699000000,0.000025862000000,0.000041848000000,0.000375279000000,0.000376069000000,0.000173008000000,0.010700209000000,0.000194341000000,0.000175379000000,0.011187715000000,0.000044613000000,0.000038291000000 +0.000037502000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000325897000000,0.000037502000000,0.000188020000000,0.000031180000000,0.000309304000000,0.000026652000000,0.000039477000000,0.000368169000000,0.000447181000000,0.000172613000000,0.011369839000000,0.000223971000000,0.000171033000000,0.011413295000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000187625000000,0.000030391000000,0.000344069000000,0.000025862000000,0.000039477000000,0.000450341000000,0.000372909000000,0.000172218000000,0.010435913000000,0.000189996000000,0.000174193000000,0.010988999000000,0.000044613000000,0.000040267000000 +0.000037106000000,0.000143773000000,0.000036317000000,0.000027244500000,0.000322737000000,0.000073453000000,0.000188811000000,0.000030391000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000387526000000,0.000372514000000,0.000174193000000,0.010746037000000,0.000189206000000,0.000172218000000,0.011675221000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000214094000000,0.000036317000000,0.000027047000000,0.000362638000000,0.000037897000000,0.000226737000000,0.000030786000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000736366000000,0.000436909000000,0.000173008000000,0.010906826000000,0.000190391000000,0.000210144000000,0.011307419000000,0.000044218000000,0.000040662000000 +0.000037897000000,0.000142984000000,0.000035921000000,0.000027442500000,0.000374884000000,0.000037897000000,0.000189206000000,0.000030786000000,0.000308909000000,0.000026257500000,0.000039477000000,0.000431378000000,0.000375279000000,0.000172612000000,0.011145049000000,0.000260317000000,0.000173008000000,0.011502185000000,0.000043822000000,0.000040267000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000325502000000,0.000036712000000,0.000188020000000,0.000030785000000,0.000307724000000,0.000026652000000,0.000039477000000,0.000365008000000,0.000486687000000,0.000173798000000,0.010667815000000,0.000236612000000,0.000174193000000,0.010964900000000,0.000044612000000,0.000038292000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000362242000000,0.000037502000000,0.000188810000000,0.000030391000000,0.000307329000000,0.000026849500000,0.000039477000000,0.000375280000000,0.000374489000000,0.000171427000000,0.010398778000000,0.000189205000000,0.000173008000000,0.010914728000000,0.000044217000000,0.000040267000000 +0.000038292000000,0.000142588000000,0.000036712000000,0.000027245000000,0.000324316000000,0.000037106000000,0.000224366000000,0.000067132000000,0.000308119000000,0.000034158000000,0.000039477000000,0.000455477000000,0.000403723000000,0.000174193000000,0.010301592000000,0.000227131000000,0.000174193000000,0.011066431000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000140613000000,0.000035921000000,0.000046603000000,0.000324316000000,0.000037502000000,0.000188416000000,0.000030391000000,0.000308514000000,0.000026454500000,0.000039477000000,0.000381995000000,0.000376464000000,0.000209353000000,0.012118480000000,0.000188810000000,0.000220415000000,0.011143863000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000176168000000,0.000036317000000,0.000035541000000,0.000325897000000,0.000038687000000,0.000187230000000,0.000029995000000,0.000307724000000,0.000026652500000,0.000039082000000,0.000411230000000,0.000373699000000,0.000174588000000,0.010706926000000,0.000187625000000,0.000173798000000,0.010762234000000,0.000044218000000,0.000039477000000 +0.000114144000000,0.000157601000000,0.000037897000000,0.000027245000000,0.000325107000000,0.000037107000000,0.000189601000000,0.000030786000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000374489000000,0.000463773000000,0.000172613000000,0.011142284000000,0.000188810000000,0.000173798000000,0.010874826000000,0.000095971000000,0.000037897000000 +0.000060020000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000037502000000,0.000462983000000,0.000030785000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000379625000000,0.000368563000000,0.000173008000000,0.010796604000000,0.000231872000000,0.000178539000000,0.010965691000000,0.000045008000000,0.000038292000000 +0.000093600000000,0.000145353000000,0.000036317000000,0.000027639500000,0.000325897000000,0.000037107000000,0.000382786000000,0.000030786000000,0.000308119000000,0.000026652000000,0.000039477000000,0.000416761000000,0.000408464000000,0.000174193000000,0.010784358000000,0.000189996000000,0.000172613000000,0.011428308000000,0.000045008000000,0.000038687000000 +0.000124811000000,0.000141403000000,0.000036317000000,0.000027245000000,0.000325501000000,0.000038292000000,0.000441649000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039082000000,0.000376860000000,0.000372513000000,0.000173403000000,0.011750678000000,0.000220415000000,0.000211329000000,0.011046284000000,0.000044218000000,0.000039477000000 +0.000075823000000,0.000144169000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000036712000000,0.000306934000000,0.000030390000000,0.000309304000000,0.000026257500000,0.000039872000000,0.000415971000000,0.000368958000000,0.000171823000000,0.011114629000000,0.000188021000000,0.000171823000000,0.010826234000000,0.000044218000000,0.000093206000000 +0.000072267000000,0.000188416000000,0.000036317000000,0.000027047000000,0.000325501000000,0.000038687000000,0.000245304000000,0.000030391000000,0.000307329000000,0.000026455000000,0.000039477000000,0.000376069000000,0.000419131000000,0.000171822000000,0.011077888000000,0.000226341000000,0.000175378000000,0.011475715000000,0.000044613000000,0.000038292000000 +0.000071082000000,0.000143378000000,0.000036712000000,0.000027047500000,0.000326687000000,0.000037897000000,0.000197502000000,0.000030391000000,0.000308514000000,0.000026059500000,0.000039083000000,0.000374094000000,0.000380416000000,0.000170637000000,0.010613691000000,0.000189996000000,0.000173008000000,0.011558678000000,0.000044613000000,0.000040662000000 +0.000040267000000,0.000142588000000,0.000036711000000,0.000027047500000,0.000325107000000,0.000037502000000,0.000419922000000,0.000031971000000,0.000308119000000,0.000025664500000,0.000039872000000,0.000395823000000,0.000410835000000,0.000172218000000,0.010559172000000,0.000188415000000,0.000174193000000,0.010939222000000,0.000044218000000,0.000040268000000 +0.000051329000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000326292000000,0.000037106000000,0.000536070000000,0.000030786000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000368168000000,0.000363822000000,0.000230292000000,0.010807666000000,0.000186835000000,0.000256366000000,0.011199963000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000142984000000,0.000036712000000,0.000027047000000,0.000323131000000,0.000036711000000,0.000239378000000,0.000031180000000,0.000347230000000,0.000026257000000,0.000075428000000,0.000427823000000,0.000374885000000,0.000331033000000,0.010537444000000,0.000225551000000,0.000174588000000,0.011322827000000,0.000044218000000,0.000038687000000 +0.000037896000000,0.000140218000000,0.000071872000000,0.000027442500000,0.000325502000000,0.000038292000000,0.000189205000000,0.000031576000000,0.000359477000000,0.000027047500000,0.000039477000000,0.000375279000000,0.000370539000000,0.000184859000000,0.010846382000000,0.000189205000000,0.000175773000000,0.011700110000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000162736000000,0.000036317000000,0.000027047000000,0.000326292000000,0.000037107000000,0.000189205000000,0.000031971000000,0.000308514000000,0.000026652000000,0.000039477000000,0.000412810000000,0.000366193000000,0.000172218000000,0.011194036000000,0.000188415000000,0.000176169000000,0.010817147000000,0.000044218000000,0.000039873000000 +0.000037897000000,0.000188415000000,0.000036316000000,0.000027442000000,0.000323526000000,0.000037501000000,0.000187230000000,0.000030786000000,0.000307724000000,0.000026454500000,0.000039872000000,0.000368168000000,0.000423082000000,0.000180119000000,0.010241543000000,0.000189601000000,0.000214490000000,0.011380901000000,0.000043823000000,0.000039477000000 +0.000074243000000,0.000143378000000,0.000036317000000,0.000036529000000,0.000325106000000,0.000088465000000,0.000253206000000,0.000029995000000,0.000308118000000,0.000044232500000,0.000039477000000,0.000365798000000,0.000364218000000,0.000172218000000,0.010564703000000,0.000223576000000,0.000172613000000,0.010815963000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000035738500000,0.000325896000000,0.000037897000000,0.000189601000000,0.000031181000000,0.000304958000000,0.000026059500000,0.000039873000000,0.000413205000000,0.000400958000000,0.000171428000000,0.010482925000000,0.000188810000000,0.000173403000000,0.011378530000000,0.000044218000000,0.000039478000000 +0.000037502000000,0.000142984000000,0.000035922000000,0.000027047000000,0.000323526000000,0.000037502000000,0.000187231000000,0.000030786000000,0.000308909000000,0.000025862000000,0.000039082000000,0.000369353000000,0.000364218000000,0.000171822000000,0.010655568000000,0.000188020000000,0.000173403000000,0.011468999000000,0.000043823000000,0.000038687000000 +0.000038292000000,0.000142984000000,0.000036316000000,0.000027244500000,0.000324316000000,0.000037502000000,0.000188810000000,0.000030390000000,0.000348416000000,0.000026454500000,0.000039477000000,0.000450341000000,0.000376464000000,0.000174983000000,0.010822283000000,0.000186440000000,0.000172613000000,0.011325592000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000178143000000,0.000036317000000,0.000027047500000,0.000325896000000,0.000037502000000,0.000297057000000,0.000031576000000,0.000308909000000,0.000026850000000,0.000039082000000,0.000383971000000,0.000415575000000,0.000172218000000,0.010455271000000,0.000227527000000,0.000210539000000,0.010642926000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000144564000000,0.000036712000000,0.000027245000000,0.000323921000000,0.000039082000000,0.000186440000000,0.000030390000000,0.000308514000000,0.000026454500000,0.000039477000000,0.000371329000000,0.000380811000000,0.000171823000000,0.011214974000000,0.000189206000000,0.000173403000000,0.011086975000000,0.000115329000000,0.000041058000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000028430000000,0.000324316000000,0.000037107000000,0.000187230000000,0.000031971000000,0.000308119000000,0.000026059500000,0.000039872000000,0.000410440000000,0.000441649000000,0.000172612000000,0.010398383000000,0.000186835000000,0.000173798000000,0.011292012000000,0.000043823000000,0.000038292000000 +0.000037501000000,0.000142193000000,0.000036316000000,0.000027245000000,0.000325106000000,0.000038687000000,0.000366588000000,0.000049748000000,0.000308514000000,0.000026454500000,0.000039872000000,0.000374094000000,0.000374884000000,0.000173403000000,0.010896160000000,0.000189205000000,0.000211329000000,0.011116999000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000038687000000,0.000218835000000,0.000030785000000,0.000307329000000,0.000026652500000,0.000039477000000,0.000455082000000,0.000374094000000,0.000173007000000,0.010632258000000,0.000263872000000,0.000184860000000,0.010924604000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000038687000000,0.000321946000000,0.000030391000000,0.000345254000000,0.000026849500000,0.000039082000000,0.000368168000000,0.000426243000000,0.000174588000000,0.010698630000000,0.000235823000000,0.000209749000000,0.011004406000000,0.000045008000000,0.000039082000000 +0.000037502000000,0.000142193000000,0.000035921000000,0.000027245000000,0.000453501000000,0.000036711000000,0.000189995000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000408860000000,0.000376464000000,0.000174193000000,0.010707320000000,0.000189205000000,0.000174193000000,0.011581592000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000178934000000,0.000036317000000,0.000027245000000,0.000324712000000,0.000037107000000,0.000278885000000,0.000044613000000,0.000309304000000,0.000026455000000,0.000039477000000,0.000371724000000,0.000412020000000,0.000172217000000,0.011367468000000,0.000188810000000,0.000173403000000,0.010990975000000,0.000044613000000,0.000073453000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037107000000,0.000187626000000,0.000032367000000,0.000308514000000,0.000025862000000,0.000039872000000,0.000380810000000,0.000379230000000,0.000173403000000,0.010631864000000,0.000223180000000,0.000173403000000,0.011064456000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000035922000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000257946000000,0.000031971000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000417946000000,0.000367378000000,0.000172613000000,0.010955024000000,0.000189205000000,0.000175773000000,0.011479270000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000140218000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000037501000000,0.000188810000000,0.000032366000000,0.000308119000000,0.000026652000000,0.000039083000000,0.000378044000000,0.000405699000000,0.000173798000000,0.010924604000000,0.000189995000000,0.000207773000000,0.011351666000000,0.000045403000000,0.000039082000000 +0.000037897000000,0.000142194000000,0.000036317000000,0.000027244500000,0.000331033000000,0.000038292000000,0.000188415000000,0.000032366000000,0.000307724000000,0.000026454500000,0.000039872000000,0.000410835000000,0.000369749000000,0.000172217000000,0.010762630000000,0.000187625000000,0.000172613000000,0.011297543000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000143774000000,0.000035527000000,0.000027047000000,0.000324317000000,0.000038292000000,0.000186045000000,0.000032366000000,0.000308910000000,0.000043837500000,0.000039872000000,0.000379625000000,0.000443230000000,0.000173798000000,0.010466333000000,0.000240958000000,0.000172613000000,0.011089740000000,0.000043822000000,0.000039872000000 +0.000037896000000,0.000213304000000,0.000036712000000,0.000065170500000,0.000326292000000,0.000037106000000,0.000258736000000,0.000031971000000,0.000308119000000,0.000026454500000,0.000108218000000,0.000367378000000,0.000373699000000,0.000172217000000,0.010254185000000,0.000188020000000,0.000172613000000,0.010779617000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000141403000000,0.000104662000000,0.000033961000000,0.000327081000000,0.000037502000000,0.000187230000000,0.000031971000000,0.000307724000000,0.000025862000000,0.000041847000000,0.000419921000000,0.000414391000000,0.000175773000000,0.010388902000000,0.000188810000000,0.000170637000000,0.011446876000000,0.000043823000000,0.000038292000000 +0.000037502000000,0.000142588000000,0.000057254000000,0.000027442000000,0.000323922000000,0.000056465000000,0.000186835000000,0.000032366000000,0.000307329000000,0.000026257000000,0.000039873000000,0.000373304000000,0.000450736000000,0.000171823000000,0.010692309000000,0.000189600000000,0.000246489000000,0.011026530000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000147329000000,0.000054885000000,0.000027047500000,0.000381600000000,0.000080564000000,0.000189601000000,0.000032366000000,0.000306934000000,0.000025862000000,0.000039477000000,0.000411230000000,0.000374489000000,0.000173798000000,0.011009543000000,0.000224761000000,0.000173798000000,0.011099221000000,0.000044218000000,0.000039083000000 +0.000037897000000,0.000142193000000,0.000038687000000,0.000027047500000,0.000325106000000,0.000037897000000,0.000223181000000,0.000032761000000,0.000306934000000,0.000026455000000,0.000039477000000,0.000376070000000,0.000412020000000,0.000174193000000,0.010493987000000,0.000188020000000,0.000173008000000,0.011161246000000,0.000044218000000,0.000039477000000 +0.000073847000000,0.000142983000000,0.000049354000000,0.000027639500000,0.000323526000000,0.000038292000000,0.000187231000000,0.000034736000000,0.000309699000000,0.000026652000000,0.000039477000000,0.000374094000000,0.000370934000000,0.000172218000000,0.010334778000000,0.000190391000000,0.000175773000000,0.011570530000000,0.000044218000000,0.000039082000000 +0.000038687000000,0.000186835000000,0.000036316000000,0.000027245000000,0.000322341000000,0.000037107000000,0.000186440000000,0.000032761000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000409650000000,0.000424662000000,0.000173798000000,0.010598679000000,0.000189996000000,0.000173008000000,0.011149394000000,0.000082934000000,0.000038687000000 +0.000038292000000,0.000143773000000,0.000036316000000,0.000027245000000,0.000325896000000,0.000038292000000,0.000189205000000,0.000032366000000,0.000306143000000,0.000025862000000,0.000039477000000,0.000375279000000,0.000374490000000,0.000173008000000,0.010672555000000,0.000224366000000,0.000389106000000,0.011111073000000,0.000060021000000,0.000038292000000 +0.000037502000000,0.000144564000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000237403000000,0.000031971000000,0.000308119000000,0.000026652000000,0.000039478000000,0.000447575000000,0.000372909000000,0.000172613000000,0.010425247000000,0.000190390000000,0.000189600000000,0.011608851000000,0.000044613000000,0.000039478000000 +0.000037502000000,0.000140612000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000038292000000,0.000186835000000,0.000032366000000,0.000307724000000,0.000025862000000,0.000039872000000,0.000381205000000,0.000415970000000,0.000171428000000,0.011350085000000,0.000188020000000,0.000175378000000,0.011828110000000,0.000045403000000,0.000038292000000 +0.000038687000000,0.000143379000000,0.000036316000000,0.000027245000000,0.000325106000000,0.000036712000000,0.000187230000000,0.000032761000000,0.000308119000000,0.000025664500000,0.000039477000000,0.000447971000000,0.000371723000000,0.000172613000000,0.010367173000000,0.000188415000000,0.000210538000000,0.011542875000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000144959000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000037502000000,0.000186835000000,0.000032761000000,0.000435329000000,0.000026060000000,0.000039477000000,0.000500119000000,0.000414391000000,0.000172612000000,0.010795814000000,0.000259526000000,0.000175378000000,0.011706431000000,0.000044613000000,0.000038292000000 +0.000039082000000,0.000180514000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037502000000,0.000263081000000,0.000031971000000,0.000342094000000,0.000026257000000,0.000039872000000,0.000414390000000,0.000374489000000,0.000191576000000,0.010557198000000,0.000187626000000,0.000174588000000,0.011688653000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000141798000000,0.000035921000000,0.000027245000000,0.000361452000000,0.000037897000000,0.000189206000000,0.000033156000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000374094000000,0.000465354000000,0.000173008000000,0.010571420000000,0.000189206000000,0.000171428000000,0.011663764000000,0.000044217000000,0.000039082000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027047500000,0.000325106000000,0.000037502000000,0.000189206000000,0.000032761000000,0.000308909000000,0.000026257000000,0.000039083000000,0.000372119000000,0.000430983000000,0.000171427000000,0.010466728000000,0.000190786000000,0.000173007000000,0.010811617000000,0.000044613000000,0.000039873000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000045022500000,0.000323131000000,0.000037501000000,0.000189206000000,0.000032366000000,0.000308909000000,0.000026454500000,0.000039082000000,0.000408465000000,0.000367773000000,0.000172613000000,0.010623567000000,0.000233453000000,0.000256366000000,0.011224456000000,0.000044613000000,0.000074242000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000361057000000,0.000036316000000,0.000225156000000,0.000032366000000,0.000307724000000,0.000061615000000,0.000039477000000,0.000383180000000,0.000390687000000,0.000171823000000,0.010717197000000,0.000187230000000,0.000175378000000,0.010769345000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000144958000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000187230000000,0.000031971000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000407279000000,0.000370539000000,0.000172217000000,0.010483715000000,0.000189206000000,0.000173008000000,0.011267123000000,0.000044218000000,0.000039478000000 +0.000038292000000,0.000178144000000,0.000036317000000,0.000027047500000,0.000325502000000,0.000037107000000,0.000187626000000,0.000032366000000,0.000308119000000,0.000025862000000,0.000039872000000,0.000377650000000,0.000409255000000,0.000172613000000,0.010680852000000,0.000188415000000,0.000173008000000,0.011413296000000,0.000043823000000,0.000039872000000 +0.000038292000000,0.000142588000000,0.000050144000000,0.000027047500000,0.000327082000000,0.000037897000000,0.000191181000000,0.000032761000000,0.000307724000000,0.000026652000000,0.000039082000000,0.000372514000000,0.000380020000000,0.000173403000000,0.010573789000000,0.000224761000000,0.000172613000000,0.010920653000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000142193000000,0.000035921000000,0.000027244500000,0.000323526000000,0.000036712000000,0.000223181000000,0.000032366000000,0.000360662000000,0.000026257000000,0.000075823000000,0.000419131000000,0.000414785000000,0.000173798000000,0.011114629000000,0.000186835000000,0.000207378000000,0.010971222000000,0.000044218000000,0.000039478000000 +0.000037897000000,0.000143378000000,0.000035922000000,0.000027837500000,0.000323922000000,0.000037502000000,0.000187625000000,0.000032761000000,0.000306933000000,0.000042850000000,0.000039477000000,0.000375675000000,0.000383180000000,0.000216070000000,0.010310679000000,0.000189996000000,0.000174193000000,0.010986234000000,0.000043823000000,0.000039872000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000362638000000,0.000098342000000,0.000203427000000,0.000032761000000,0.000308909000000,0.000027837000000,0.000039478000000,0.000416366000000,0.000374489000000,0.000212514000000,0.010693888000000,0.000188811000000,0.000172613000000,0.011584357000000,0.000043823000000,0.000039872000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037897000000,0.000198687000000,0.000032366000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000375674000000,0.000416761000000,0.000171823000000,0.010770926000000,0.000223181000000,0.000173403000000,0.011050629000000,0.000043823000000,0.000040268000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000199082000000,0.000031971000000,0.000307329000000,0.000026059500000,0.000039477000000,0.000368168000000,0.000376860000000,0.000172218000000,0.010745246000000,0.000186836000000,0.000171823000000,0.010800950000000,0.000063971000000,0.000038687000000 +0.000038687000000,0.000178934000000,0.000036317000000,0.000027047500000,0.000327082000000,0.000037897000000,0.000201848000000,0.000032366000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000464958000000,0.000413600000000,0.000172613000000,0.010571420000000,0.000186440000000,0.000260712000000,0.011165196000000,0.000047378000000,0.000039082000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037107000000,0.000200268000000,0.000032761000000,0.000308514000000,0.000025862000000,0.000039872000000,0.000388317000000,0.000378045000000,0.000173798000000,0.010856654000000,0.000223971000000,0.000173798000000,0.011517592000000,0.000046984000000,0.000039082000000 +0.000071477000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000325107000000,0.000037502000000,0.000197501000000,0.000032366000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000412020000000,0.000366588000000,0.000225551000000,0.010700209000000,0.000223576000000,0.000173008000000,0.011115419000000,0.000057650000000,0.000040268000000 +0.000040662000000,0.000139823000000,0.000036317000000,0.000027047000000,0.000325502000000,0.000037897000000,0.000198687000000,0.000032761000000,0.000308119000000,0.000026652000000,0.000039478000000,0.000380810000000,0.000446391000000,0.000172217000000,0.010664654000000,0.000186835000000,0.000173798000000,0.012781788000000,0.000044218000000,0.000038292000000 +0.000051329000000,0.000139822000000,0.000036712000000,0.000027047500000,0.000323921000000,0.000037501000000,0.000202638000000,0.000031971000000,0.000310489000000,0.000026257000000,0.000039872000000,0.000400564000000,0.000370933000000,0.000170638000000,0.011405789000000,0.000188020000000,0.000210144000000,0.011574875000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000140218000000,0.000036316000000,0.000027244500000,0.000323922000000,0.000037502000000,0.000200267000000,0.000032761000000,0.000338538000000,0.000026060000000,0.000039872000000,0.000375674000000,0.000553057000000,0.000174588000000,0.010326481000000,0.000189600000000,0.000172218000000,0.011540110000000,0.000044612000000,0.000040267000000 +0.000037897000000,0.000179724000000,0.000036317000000,0.000055491500000,0.000325107000000,0.000037502000000,0.000198687000000,0.000032761000000,0.000308514000000,0.000034553000000,0.000039082000000,0.000370934000000,0.000370538000000,0.000175773000000,0.010655172000000,0.000247279000000,0.000172217000000,0.010960950000000,0.000045008000000,0.000038688000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000056479500000,0.000323921000000,0.000036712000000,0.000199082000000,0.000032366000000,0.000331823000000,0.000025862000000,0.000039082000000,0.000418736000000,0.000411625000000,0.000172218000000,0.010770926000000,0.000188811000000,0.000175773000000,0.011230382000000,0.000044612000000,0.000039872000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000081368000000,0.000324712000000,0.000037106000000,0.000200662000000,0.000032762000000,0.000307724000000,0.000026454500000,0.000039082000000,0.000374885000000,0.000377254000000,0.000173403000000,0.010926975000000,0.000188811000000,0.000173403000000,0.012355912000000,0.000044613000000,0.000038687000000 +0.000037501000000,0.000143773000000,0.000036316000000,0.000089664500000,0.000325897000000,0.000036712000000,0.000198292000000,0.000032366000000,0.000308909000000,0.000026059500000,0.000039478000000,0.000469699000000,0.000419131000000,0.000170637000000,0.010379815000000,0.000189206000000,0.000244119000000,0.012081740000000,0.000043823000000,0.000038292000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000054701500000,0.000323921000000,0.000038292000000,0.000199872000000,0.000032366000000,0.000308909000000,0.000025862000000,0.000039478000000,0.000380020000000,0.000442045000000,0.000173008000000,0.010759073000000,0.000224761000000,0.000171823000000,0.011162827000000,0.000044218000000,0.000057650000000 +0.000038292000000,0.000144169000000,0.000036317000000,0.000034553500000,0.000324316000000,0.000037502000000,0.000234242000000,0.000032761000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000394638000000,0.000375674000000,0.000174588000000,0.010681246000000,0.000188415000000,0.000174193000000,0.010872456000000,0.000044613000000,0.000112958000000 +0.000037897000000,0.000176959000000,0.000036316000000,0.000027245000000,0.000326292000000,0.000037107000000,0.000200663000000,0.000032366000000,0.000307328000000,0.000026257000000,0.000039477000000,0.000376070000000,0.000410440000000,0.000178934000000,0.010525988000000,0.000187625000000,0.000175773000000,0.011331913000000,0.000045008000000,0.000110984000000 +0.000037897000000,0.000157205000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037502000000,0.000201847000000,0.000032761000000,0.000308514000000,0.000026455000000,0.000039872000000,0.000380020000000,0.000380810000000,0.000173008000000,0.010836111000000,0.000190390000000,0.000174588000000,0.011017839000000,0.000045008000000,0.000123230000000 +0.000037502000000,0.000141403000000,0.000055675000000,0.000027244500000,0.000323526000000,0.000037107000000,0.000200267000000,0.000032366000000,0.000308514000000,0.000026060000000,0.000039872000000,0.000459823000000,0.000414390000000,0.000171428000000,0.010369938000000,0.000225946000000,0.000210144000000,0.011303468000000,0.000043823000000,0.000107823000000 +0.000038291000000,0.000142193000000,0.000051724000000,0.000045220000000,0.000326292000000,0.000036317000000,0.000235033000000,0.000031971000000,0.000309304000000,0.000025664500000,0.000039873000000,0.000373699000000,0.000372909000000,0.000171823000000,0.010414580000000,0.000190390000000,0.000172218000000,0.010874432000000,0.000043823000000,0.000124811000000 +0.000037897000000,0.000140218000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037896000000,0.000197502000000,0.000032366000000,0.000308514000000,0.000026454500000,0.000075822000000,0.000417156000000,0.000378045000000,0.000173403000000,0.010697049000000,0.000186835000000,0.000172613000000,0.011197591000000,0.000044218000000,0.000106637000000 +0.000037502000000,0.000140612000000,0.000036317000000,0.000027245000000,0.000344069000000,0.000073057000000,0.000198291000000,0.000032761000000,0.000309304000000,0.000026652000000,0.000038687000000,0.000405304000000,0.000735971000000,0.000173008000000,0.011922924000000,0.000188811000000,0.000173798000000,0.011534184000000,0.000044613000000,0.000105847000000 +0.000038292000000,0.000178539000000,0.000036317000000,0.000027244500000,0.000376069000000,0.000037897000000,0.000200267000000,0.000032366000000,0.000308514000000,0.000026257000000,0.000039478000000,0.000367774000000,0.000446785000000,0.000171822000000,0.010874431000000,0.000261107000000,0.000173403000000,0.010869296000000,0.000088464000000,0.000056464000000 +0.000037502000000,0.000141008000000,0.000035921000000,0.000027244500000,0.000322736000000,0.000037107000000,0.000242934000000,0.000032761000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000465353000000,0.000375675000000,0.000171428000000,0.011486777000000,0.000187230000000,0.000244909000000,0.011226431000000,0.000046983000000,0.000072267000000 +0.000038291000000,0.000144563000000,0.000035922000000,0.000027245000000,0.000326687000000,0.000037107000000,0.000199872000000,0.000032366000000,0.000308514000000,0.000026850000000,0.000039872000000,0.000378045000000,0.000369353000000,0.000171033000000,0.011058925000000,0.000189601000000,0.000173008000000,0.011237888000000,0.000058835000000,0.000040662000000 +0.000037502000000,0.000144563000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037502000000,0.000255180000000,0.000032366000000,0.000306539000000,0.000025862000000,0.000039477000000,0.000404909000000,0.000410439000000,0.000174194000000,0.010948308000000,0.000189996000000,0.000174194000000,0.011585147000000,0.000044218000000,0.000051724000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000199082000000,0.000033947000000,0.000308118000000,0.000043837500000,0.000039477000000,0.000365798000000,0.000366193000000,0.000173008000000,0.010418926000000,0.000225551000000,0.000172613000000,0.011294382000000,0.000043823000000,0.000039477000000 +0.000037502000000,0.000140613000000,0.000036316000000,0.000027047000000,0.000326686000000,0.000038292000000,0.000199872000000,0.000031971000000,0.000385156000000,0.000026849500000,0.000039477000000,0.000468119000000,0.000452712000000,0.000171427000000,0.010748012000000,0.000187230000000,0.000172218000000,0.010803320000000,0.000044218000000,0.000039082000000 +0.000079378000000,0.000142193000000,0.000036316000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000200662000000,0.000032761000000,0.000325502000000,0.000025862000000,0.000039477000000,0.000370539000000,0.000373304000000,0.000170637000000,0.010593938000000,0.000188810000000,0.000209353000000,0.010895765000000,0.000045403000000,0.000038687000000 +0.000051329000000,0.000167082000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000037501000000,0.000199082000000,0.000031971000000,0.000307724000000,0.000025862000000,0.000039478000000,0.000378045000000,0.000373304000000,0.000171823000000,0.010667024000000,0.000187625000000,0.000171428000000,0.011098826000000,0.000044613000000,0.000039478000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027047000000,0.000345650000000,0.000036712000000,0.000199873000000,0.000033157000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000419526000000,0.000427033000000,0.000173008000000,0.010918679000000,0.000226736000000,0.000171823000000,0.011156901000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000028035000000,0.000676711000000,0.000036317000000,0.000202242000000,0.000032366000000,0.000308119000000,0.000026257000000,0.000039477000000,0.000371329000000,0.000376464000000,0.000173403000000,0.010634234000000,0.000189206000000,0.000173008000000,0.011075913000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000145749000000,0.000036317000000,0.000027639500000,0.000990785000000,0.000037107000000,0.000197897000000,0.000032366000000,0.000308119000000,0.000025862000000,0.000039872000000,0.000444415000000,0.000454292000000,0.000172218000000,0.010254580000000,0.000189601000000,0.000248465000000,0.011029691000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000140217000000,0.000036317000000,0.000027047000000,0.000645501000000,0.000037897000000,0.000202242000000,0.000032366000000,0.000345649000000,0.000025862500000,0.000039477000000,0.000373304000000,0.000372514000000,0.000172218000000,0.010776457000000,0.000187231000000,0.000203427000000,0.011176654000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000142193000000,0.000036711000000,0.000027245000000,0.000365008000000,0.000038687000000,0.000200663000000,0.000032366000000,0.000309304000000,0.000026850000000,0.000039478000000,0.000403723000000,0.000462983000000,0.000171033000000,0.011306629000000,0.000225156000000,0.000174193000000,0.011500999000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000212119000000,0.000036317000000,0.000036923500000,0.000561748000000,0.000038687000000,0.000197896000000,0.000032366000000,0.000304958000000,0.000026059500000,0.000039477000000,0.000368168000000,0.000377255000000,0.000171428000000,0.010584851000000,0.000186440000000,0.000171823000000,0.011408159000000,0.000044217000000,0.000039872000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000494588000000,0.000037502000000,0.000197501000000,0.000031971000000,0.000308514000000,0.000026849500000,0.000039082000000,0.000372119000000,0.000373699000000,0.000172218000000,0.010849937000000,0.000191576000000,0.000173798000000,0.011190481000000,0.000043822000000,0.000038292000000 +0.000037502000000,0.000142984000000,0.000036316000000,0.000027244500000,0.000346044000000,0.000037107000000,0.000313650000000,0.000032366000000,0.000307724000000,0.000026060000000,0.000039477000000,0.000453502000000,0.000435328000000,0.000171428000000,0.010494778000000,0.000187230000000,0.000252810000000,0.010983073000000,0.000045008000000,0.000040268000000 +0.000038292000000,0.000143379000000,0.000072662000000,0.000027640000000,0.000344465000000,0.000038292000000,0.000215279000000,0.000068317000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000379625000000,0.000372119000000,0.000171428000000,0.012250431000000,0.000225156000000,0.000176958000000,0.011546826000000,0.000044218000000,0.000038292000000 +0.000037107000000,0.000142983000000,0.000036316000000,0.000044430000000,0.000346045000000,0.000038687000000,0.000199477000000,0.000032366000000,0.000363822000000,0.000026257000000,0.000039477000000,0.000417551000000,0.000461798000000,0.000175378000000,0.011382480000000,0.000189205000000,0.000173008000000,0.011015074000000,0.000044613000000,0.000039082000000 +0.000037896000000,0.000144563000000,0.000036317000000,0.000034553500000,0.000344860000000,0.000037107000000,0.000208169000000,0.000032761000000,0.000359082000000,0.000026257000000,0.000039477000000,0.000378440000000,0.000372909000000,0.000171822000000,0.011340999000000,0.000189205000000,0.000171033000000,0.010853888000000,0.000063971000000,0.000039872000000 +0.000037897000000,0.000284020000000,0.000036317000000,0.000027047000000,0.000344070000000,0.000057255000000,0.000188810000000,0.000032366000000,0.000308119000000,0.000025862000000,0.000114539000000,0.000374094000000,0.000454292000000,0.000171427000000,0.011138728000000,0.000186835000000,0.000178538000000,0.011274233000000,0.000088465000000,0.000038292000000 +0.000037502000000,0.000202637000000,0.000035921000000,0.000027245000000,0.000344070000000,0.000068711000000,0.000187230000000,0.000032761000000,0.000310094000000,0.000035738500000,0.000041057000000,0.000462983000000,0.000368959000000,0.000176959000000,0.011015864000000,0.000222390000000,0.000211724000000,0.011184160000000,0.000044218000000,0.000071873000000 +0.000038292000000,0.000140217000000,0.000036316000000,0.000027047500000,0.000343279000000,0.000051329000000,0.000187230000000,0.000032366000000,0.000307723000000,0.000025862000000,0.000053699000000,0.000366983000000,0.000436909000000,0.000173008000000,0.011502184000000,0.000189600000000,0.000173008000000,0.010959369000000,0.000044218000000,0.000041057000000 +0.000038292000000,0.000141403000000,0.000036317000000,0.000027244500000,0.000342489000000,0.000037897000000,0.000186440000000,0.000032366000000,0.000308909000000,0.000025664500000,0.000039872000000,0.000419131000000,0.000392267000000,0.000175773000000,0.010293691000000,0.000189600000000,0.000173008000000,0.010953444000000,0.000044613000000,0.000054095000000 +0.000037897000000,0.000143773000000,0.000035921000000,0.000027047000000,0.000438884000000,0.000036711000000,0.000187625000000,0.000032366000000,0.000345255000000,0.000026257000000,0.000039872000000,0.000373304000000,0.000365402000000,0.000171427000000,0.011042728000000,0.000187230000000,0.000173403000000,0.011094085000000,0.000043823000000,0.000038292000000 +0.000037501000000,0.000179329000000,0.000035921000000,0.000027047500000,0.000339328000000,0.000037107000000,0.000187625000000,0.000032761000000,0.000306933000000,0.000025862000000,0.000039872000000,0.000445206000000,0.000422687000000,0.000173008000000,0.011038382000000,0.000222785000000,0.000172613000000,0.011259616000000,0.000043822000000,0.000038292000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000038687000000,0.000187626000000,0.000032761000000,0.000307724000000,0.000025862000000,0.000039478000000,0.000376464000000,0.000365403000000,0.000172613000000,0.011006382000000,0.000186835000000,0.000256366000000,0.010900901000000,0.000044217000000,0.000039082000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027442000000,0.000327872000000,0.000038292000000,0.000187625000000,0.000032366000000,0.000308119000000,0.000026257500000,0.000039477000000,0.000374885000000,0.000431773000000,0.000174983000000,0.010460012000000,0.000188021000000,0.000171427000000,0.011369838000000,0.000044218000000,0.000039478000000 +0.000057255000000,0.000140218000000,0.000036317000000,0.000027442500000,0.000324711000000,0.000037502000000,0.000191180000000,0.000032761000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000410045000000,0.000374884000000,0.000172217000000,0.010719963000000,0.000189996000000,0.000174193000000,0.010946727000000,0.000044218000000,0.000039477000000 +0.000037107000000,0.000144959000000,0.000036316000000,0.000027047000000,0.000353947000000,0.000037502000000,0.000189205000000,0.000032761000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000375674000000,0.000369354000000,0.000172218000000,0.010546136000000,0.000206193000000,0.000172218000000,0.011368653000000,0.000044218000000,0.000039872000000 +0.000038687000000,0.000140218000000,0.000036317000000,0.000045022500000,0.000328267000000,0.000037502000000,0.000190390000000,0.000032366000000,0.000345255000000,0.000026059500000,0.000039477000000,0.000609156000000,0.000457452000000,0.000172218000000,0.010829789000000,0.000259131000000,0.000193156000000,0.010829395000000,0.000044613000000,0.000040268000000 +0.000038687000000,0.000214490000000,0.000035922000000,0.000027244500000,0.000322341000000,0.000037107000000,0.000190391000000,0.000032366000000,0.000308909000000,0.000026849500000,0.000039872000000,0.000617057000000,0.000368168000000,0.000172217000000,0.010716802000000,0.000186835000000,0.000173403000000,0.011273838000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000027047500000,0.000323922000000,0.000037502000000,0.000188415000000,0.000032761000000,0.000307724000000,0.000026850000000,0.000039478000000,0.000381995000000,0.000423082000000,0.000171823000000,0.010551271000000,0.000187230000000,0.000173008000000,0.010926185000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000361452000000,0.000038687000000,0.000188810000000,0.000032366000000,0.000308909000000,0.000026652000000,0.000039082000000,0.000380020000000,0.000372119000000,0.000171033000000,0.010426432000000,0.000225156000000,0.000173403000000,0.011605295000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000485502000000,0.000037107000000,0.000187625000000,0.000032761000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000402933000000,0.000399773000000,0.000170638000000,0.010770135000000,0.000189600000000,0.000170638000000,0.010706136000000,0.000046193000000,0.000038687000000 +0.000037896000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000446786000000,0.000037502000000,0.000190391000000,0.000032366000000,0.000306933000000,0.000025862000000,0.000039477000000,0.000372909000000,0.000797205000000,0.000171033000000,0.010726284000000,0.000187230000000,0.000231477000000,0.011480060000000,0.000043823000000,0.000039082000000 +0.000038292000000,0.000141008000000,0.000036316000000,0.000027442500000,0.000324712000000,0.000037897000000,0.000219625000000,0.000032366000000,0.000308119000000,0.000026257000000,0.000039082000000,0.000448366000000,0.000408465000000,0.000280859000000,0.010539814000000,0.000191971000000,0.000413996000000,0.011209049000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000178143000000,0.000054885000000,0.000027244500000,0.000323527000000,0.000036711000000,0.000190390000000,0.000033156000000,0.000397008000000,0.000026652000000,0.000039477000000,0.000386341000000,0.000376069000000,0.000193156000000,0.010853494000000,0.000289156000000,0.000228712000000,0.011223271000000,0.000063576000000,0.000039082000000 +0.000037502000000,0.000253206000000,0.000087675000000,0.000027047000000,0.000334983000000,0.000037502000000,0.000187625000000,0.000031971000000,0.000307723000000,0.000044232500000,0.000039477000000,0.000383181000000,0.000410440000000,0.000174193000000,0.010731814000000,0.000190786000000,0.000209749000000,0.011212209000000,0.000109798000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000037106000000,0.000027245000000,0.000323131000000,0.000037107000000,0.000187625000000,0.000033156000000,0.000308514000000,0.000026849500000,0.000059626000000,0.000406884000000,0.000369749000000,0.000173008000000,0.010830580000000,0.000187625000000,0.000176168000000,0.011010332000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000325502000000,0.000073058000000,0.000238983000000,0.000032366000000,0.000308514000000,0.000026257000000,0.000072267000000,0.000378044000000,0.000373699000000,0.000176169000000,0.010725493000000,0.000187230000000,0.000172218000000,0.011154925000000,0.000044218000000,0.000038291000000 +0.000038291000000,0.000142983000000,0.000036317000000,0.000027442000000,0.000325502000000,0.000036712000000,0.000189995000000,0.000031971000000,0.000308119000000,0.000026059500000,0.000052514000000,0.000408464000000,0.000408465000000,0.000173403000000,0.010981888000000,0.000223576000000,0.000174588000000,0.011081048000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000143773000000,0.000037897000000,0.000027640000000,0.000324317000000,0.000037501000000,0.000187230000000,0.000032761000000,0.000307329000000,0.000026257500000,0.000039477000000,0.000372119000000,0.000366983000000,0.000173798000000,0.010666629000000,0.000190786000000,0.000173403000000,0.011358382000000,0.000044218000000,0.000075427000000 +0.000037897000000,0.000211724000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037897000000,0.000187230000000,0.000033156000000,0.000345649000000,0.000027244500000,0.000039872000000,0.000377255000000,0.000404909000000,0.000173008000000,0.010751173000000,0.000190391000000,0.000208958000000,0.010810432000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037107000000,0.000225156000000,0.000031971000000,0.000308119000000,0.000026257000000,0.000039477000000,0.000461008000000,0.000375674000000,0.000173403000000,0.010604999000000,0.000186835000000,0.000299428000000,0.011299123000000,0.000044613000000,0.000040267000000 +0.000038292000000,0.000143378000000,0.000036316000000,0.000027245000000,0.000323527000000,0.000058045000000,0.000189601000000,0.000033947000000,0.000309304000000,0.000026059500000,0.000039477000000,0.000375674000000,0.000373699000000,0.000173798000000,0.010723913000000,0.000259131000000,0.000174589000000,0.010965691000000,0.000063971000000,0.000040268000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000045220000000,0.000323922000000,0.000052514000000,0.000186835000000,0.000031971000000,0.000309304000000,0.000026455000000,0.000039478000000,0.000404514000000,0.000454291000000,0.000173007000000,0.010566284000000,0.000188810000000,0.000172613000000,0.011698925000000,0.000060810000000,0.000039872000000 +0.000038292000000,0.000144958000000,0.000036317000000,0.000027047500000,0.000324712000000,0.000052909000000,0.000190390000000,0.000033946000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000381600000000,0.000374884000000,0.000171428000000,0.010969641000000,0.000188810000000,0.000174193000000,0.010732209000000,0.000111379000000,0.000038292000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000425057000000,0.000037502000000,0.000221995000000,0.000036317000000,0.000307724000000,0.000026257000000,0.000038687000000,0.000423872000000,0.000406884000000,0.000171427000000,0.010506235000000,0.000188415000000,0.000192366000000,0.011050234000000,0.000047378000000,0.000040663000000 +0.000037897000000,0.000176564000000,0.000036711000000,0.000027244500000,0.000325107000000,0.000037502000000,0.000187230000000,0.000031971000000,0.000461008000000,0.000026454500000,0.000039477000000,0.000375675000000,0.000375675000000,0.000171428000000,0.011275814000000,0.000231477000000,0.000174193000000,0.011041542000000,0.000047379000000,0.000037897000000 +0.000057650000000,0.000145353000000,0.000036317000000,0.000027047500000,0.000323922000000,0.000037502000000,0.000187230000000,0.000032761000000,0.000309305000000,0.000026257000000,0.000039872000000,0.000380810000000,0.000420316000000,0.000174589000000,0.010740901000000,0.000188415000000,0.000175379000000,0.011535370000000,0.000044613000000,0.000037897000000 +0.000069897000000,0.000142588000000,0.000036712000000,0.000027047500000,0.000323526000000,0.000038687000000,0.000188416000000,0.000032366000000,0.000308119000000,0.000026454500000,0.000039082000000,0.000448761000000,0.000372514000000,0.000172613000000,0.011083419000000,0.000186835000000,0.000173008000000,0.010828605000000,0.000044218000000,0.000040267000000 +0.000050934000000,0.000142983000000,0.000035921000000,0.000027047000000,0.000361847000000,0.000037106000000,0.000258737000000,0.000032366000000,0.000307329000000,0.000027047000000,0.000039873000000,0.000375674000000,0.000370539000000,0.000172217000000,0.010891419000000,0.000188811000000,0.000189600000000,0.011026530000000,0.000043822000000,0.000039477000000 +0.000037897000000,0.000141798000000,0.000035921000000,0.000027047000000,0.000336958000000,0.000037897000000,0.000278095000000,0.000032366000000,0.000307724000000,0.000026059500000,0.000039082000000,0.000406489000000,0.000429798000000,0.000173403000000,0.010834531000000,0.000258737000000,0.000188415000000,0.011581987000000,0.000099131000000,0.000039478000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000037107000000,0.000189205000000,0.000032761000000,0.000307329000000,0.000062603000000,0.000039082000000,0.000381995000000,0.000400168000000,0.000171032000000,0.010392851000000,0.000191181000000,0.000173798000000,0.011474925000000,0.000045008000000,0.000039082000000 +0.000038292000000,0.000211724000000,0.000035922000000,0.000027047500000,0.000361847000000,0.000037896000000,0.000260316000000,0.000032366000000,0.000308909000000,0.000050553000000,0.000058835000000,0.000375674000000,0.000410835000000,0.000210934000000,0.010803716000000,0.000188416000000,0.000173798000000,0.010637000000000,0.000044612000000,0.000038687000000 +0.000038292000000,0.000144168000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000189600000000,0.000032761000000,0.000306538000000,0.000034158000000,0.000054885000000,0.000374884000000,0.000385551000000,0.000174194000000,0.010920259000000,0.000188416000000,0.000173403000000,0.010941197000000,0.000043822000000,0.000038687000000 +0.000037502000000,0.000141798000000,0.000056070000000,0.000027047000000,0.000322736000000,0.000036712000000,0.000187230000000,0.000032366000000,0.000308119000000,0.000033763500000,0.000041452000000,0.000380020000000,0.000378835000000,0.000171823000000,0.010553247000000,0.000225551000000,0.000221205000000,0.010865345000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000035921000000,0.000027047500000,0.000362243000000,0.000036317000000,0.000188811000000,0.000032366000000,0.000307328000000,0.000026652000000,0.000064761000000,0.000446391000000,0.000446390000000,0.000174193000000,0.010802531000000,0.000188810000000,0.000175378000000,0.011760554000000,0.000044218000000,0.000039083000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027442000000,0.000324317000000,0.000037107000000,0.000225156000000,0.000032761000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000376464000000,0.000375279000000,0.000171823000000,0.011039568000000,0.000189995000000,0.000172612000000,0.011381296000000,0.000043823000000,0.000039872000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000088464000000,0.000188810000000,0.000032366000000,0.000359477000000,0.000026257000000,0.000039477000000,0.000416365000000,0.000410045000000,0.000173403000000,0.010997691000000,0.000189205000000,0.000174588000000,0.011421197000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000178539000000,0.000036316000000,0.000027047500000,0.000373304000000,0.000037502000000,0.000190390000000,0.000033947000000,0.000359081000000,0.000026257000000,0.000039872000000,0.000375675000000,0.000366983000000,0.000171823000000,0.010803716000000,0.000409255000000,0.000174588000000,0.010969246000000,0.000044218000000,0.000038687000000 +0.000037107000000,0.000143379000000,0.000036317000000,0.000045220000000,0.000324316000000,0.000037502000000,0.000189995000000,0.000032762000000,0.000307724000000,0.000025664500000,0.000039478000000,0.000374884000000,0.000405304000000,0.000173403000000,0.010668604000000,0.000223575000000,0.000208564000000,0.011362332000000,0.000045798000000,0.000057650000000 +0.000037897000000,0.000143379000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000036711000000,0.000223576000000,0.000032366000000,0.000307329000000,0.000026059500000,0.000039082000000,0.000470094000000,0.000372119000000,0.000176959000000,0.010495172000000,0.000188020000000,0.000173008000000,0.011183764000000,0.000044613000000,0.000100711000000 +0.000037501000000,0.000142588000000,0.000037502000000,0.000027047000000,0.000361847000000,0.000037106000000,0.000187625000000,0.000032761000000,0.000345254000000,0.000026059500000,0.000039082000000,0.000367378000000,0.000374094000000,0.000171428000000,0.011286876000000,0.000226341000000,0.000174193000000,0.011142678000000,0.000044613000000,0.000039478000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000187625000000,0.000032761000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000667230000000,0.000410439000000,0.000174193000000,0.010546926000000,0.000187230000000,0.000172613000000,0.010771715000000,0.000043823000000,0.000039872000000 +0.000037502000000,0.000142983000000,0.000035922000000,0.000027047500000,0.000323526000000,0.000036712000000,0.000188415000000,0.000033551000000,0.000308514000000,0.000026850000000,0.000039477000000,0.000408860000000,0.000373699000000,0.000172218000000,0.010436309000000,0.000188020000000,0.000175773000000,0.011626628000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000179329000000,0.000036316000000,0.000027837000000,0.000325896000000,0.000036712000000,0.000252810000000,0.000032366000000,0.000308910000000,0.000026454500000,0.000039872000000,0.000447180000000,0.000450341000000,0.000172217000000,0.010700209000000,0.000187230000000,0.000208563000000,0.011016654000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000157601000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000038687000000,0.000232662000000,0.000033156000000,0.000306934000000,0.000043837500000,0.000039477000000,0.000368563000000,0.000369353000000,0.000171428000000,0.010698234000000,0.000226736000000,0.000178143000000,0.010934086000000,0.000045798000000,0.000040267000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027047500000,0.000325106000000,0.000037502000000,0.000201453000000,0.000032761000000,0.000306934000000,0.000025862000000,0.000039477000000,0.000415181000000,0.000376465000000,0.000174588000000,0.010979913000000,0.000188810000000,0.000173008000000,0.010880358000000,0.000043823000000,0.000038292000000 +0.000037502000000,0.000144563000000,0.000036712000000,0.000027047000000,0.000324316000000,0.000037107000000,0.000253205000000,0.000032366000000,0.000308909000000,0.000026059500000,0.000039477000000,0.000371724000000,0.000423082000000,0.000211329000000,0.011045098000000,0.000189205000000,0.000173008000000,0.011324801000000,0.000045008000000,0.000039477000000 +0.000057650000000,0.000145354000000,0.000036316000000,0.000027047000000,0.000359082000000,0.000036711000000,0.000406489000000,0.000032761000000,0.000307329000000,0.000025862000000,0.000039872000000,0.000387526000000,0.000375674000000,0.000174193000000,0.010456457000000,0.000190785000000,0.000172613000000,0.010998876000000,0.000082934000000,0.000040268000000 +0.000037897000000,0.000146143000000,0.000037107000000,0.000027245000000,0.000376070000000,0.000037502000000,0.000414785000000,0.000032367000000,0.000306539000000,0.000025862000000,0.000039477000000,0.000378045000000,0.000408069000000,0.000171823000000,0.010625938000000,0.000259526000000,0.000272564000000,0.010697839000000,0.000061206000000,0.000039477000000 +0.000037502000000,0.000179329000000,0.000036712000000,0.000027245000000,0.000585452000000,0.000037502000000,0.000263082000000,0.000031971000000,0.000364218000000,0.000027047500000,0.000039082000000,0.000383576000000,0.000376860000000,0.000178539000000,0.011005197000000,0.000187625000000,0.000204218000000,0.010962530000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000144958000000,0.000036316000000,0.000027244500000,0.000322736000000,0.000037502000000,0.000198292000000,0.000032366000000,0.000307723000000,0.000026454500000,0.000039082000000,0.000408859000000,0.000367378000000,0.000172218000000,0.010469098000000,0.000186835000000,0.000173403000000,0.010764209000000,0.000043823000000,0.000038292000000 +0.000037502000000,0.000142589000000,0.000036317000000,0.000027442500000,0.000385551000000,0.000037502000000,0.000313254000000,0.000032366000000,0.000308909000000,0.000026059500000,0.000039478000000,0.000373304000000,0.000417156000000,0.000208959000000,0.010557197000000,0.000187230000000,0.000174193000000,0.013503565000000,0.000043822000000,0.000038291000000 +0.000038292000000,0.000144959000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000038292000000,0.000226341000000,0.000032761000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000410044000000,0.000377255000000,0.000171822000000,0.010772901000000,0.000223181000000,0.000209353000000,0.011378135000000,0.000044613000000,0.000038687000000 +0.000037501000000,0.000140613000000,0.000036316000000,0.000027244500000,0.000324712000000,0.000038292000000,0.000198687000000,0.000032366000000,0.000308909000000,0.000026849500000,0.000039872000000,0.000370539000000,0.000408860000000,0.000172218000000,0.010960950000000,0.000189601000000,0.000173008000000,0.010919864000000,0.000045008000000,0.000038292000000 +0.000037502000000,0.000142984000000,0.000093995000000,0.000064973000000,0.000324317000000,0.000038292000000,0.000198292000000,0.000032366000000,0.000308119000000,0.000026652500000,0.000039477000000,0.000368168000000,0.000374094000000,0.000173008000000,0.011051814000000,0.000186044000000,0.000173403000000,0.010857048000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000160365000000,0.000067132000000,0.000028825000000,0.000322737000000,0.000058045000000,0.000201848000000,0.000032761000000,0.000308119000000,0.000026454500000,0.000075428000000,0.000443624000000,0.000408069000000,0.000171823000000,0.010462778000000,0.000187230000000,0.000170637000000,0.012521048000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000175774000000,0.000036317000000,0.000033763500000,0.000408465000000,0.000050539000000,0.000236612000000,0.000034342000000,0.000306933000000,0.000026454500000,0.000039477000000,0.000372514000000,0.000365798000000,0.000174193000000,0.010744851000000,0.000228316000000,0.000172218000000,0.011459518000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000141008000000,0.000055279000000,0.000027245000000,0.000439279000000,0.000037107000000,0.000202242000000,0.000033157000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000415970000000,0.000373699000000,0.000174588000000,0.010980308000000,0.000188020000000,0.000220415000000,0.011458332000000,0.000044218000000,0.000039082000000 +0.000037107000000,0.000145354000000,0.000052119000000,0.000027244500000,0.000323526000000,0.000037502000000,0.000201453000000,0.000033156000000,0.000349600000000,0.000026060000000,0.000039477000000,0.000381600000000,0.000523033000000,0.000173008000000,0.011133197000000,0.000186835000000,0.000171428000000,0.011256456000000,0.000044613000000,0.000059230000000 +0.000038291000000,0.000142588000000,0.000038292000000,0.000027047000000,0.000325106000000,0.000037897000000,0.000243724000000,0.000032761000000,0.000307724000000,0.000026059500000,0.000039478000000,0.000378440000000,0.000380415000000,0.000172613000000,0.010641741000000,0.000186440000000,0.000173403000000,0.011245394000000,0.000044613000000,0.000070292000000 +0.000037897000000,0.000143378000000,0.000048958000000,0.000027245000000,0.000325896000000,0.000038687000000,0.000189206000000,0.000032366000000,0.000308119000000,0.000039096500000,0.000039477000000,0.000445205000000,0.000445600000000,0.000171427000000,0.010589987000000,0.000225551000000,0.000178144000000,0.010930530000000,0.000044613000000,0.000052909000000 +0.000037897000000,0.000161946000000,0.000036316000000,0.000027047000000,0.000323131000000,0.000037502000000,0.000189996000000,0.000068711000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000379625000000,0.000408069000000,0.000173008000000,0.011112258000000,0.000188020000000,0.000172218000000,0.010897740000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000157206000000,0.000036317000000,0.000027047000000,0.000327477000000,0.000037502000000,0.000189601000000,0.000031971000000,0.000324712000000,0.000026454500000,0.000039872000000,0.000403328000000,0.000423081000000,0.000173007000000,0.011056160000000,0.000187231000000,0.000208563000000,0.011026135000000,0.000043823000000,0.000038292000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000189205000000,0.000031971000000,0.000307329000000,0.000025664500000,0.000039082000000,0.000382785000000,0.000381600000000,0.000174193000000,0.010674530000000,0.000186835000000,0.000173008000000,0.011269493000000,0.000044218000000,0.000038292000000 +0.000037896000000,0.000144959000000,0.000036711000000,0.000027245000000,0.000324712000000,0.000037107000000,0.000189995000000,0.000031970000000,0.000307328000000,0.000026454500000,0.000039082000000,0.000413206000000,0.000373699000000,0.000172613000000,0.010411420000000,0.000225551000000,0.000172218000000,0.010930136000000,0.000043822000000,0.000039872000000 +0.000037502000000,0.000142983000000,0.000036712000000,0.000027244500000,0.000325502000000,0.000037106000000,0.000189601000000,0.000031971000000,0.000306539000000,0.000026059500000,0.000039082000000,0.000374489000000,0.000406094000000,0.000172218000000,0.010707320000000,0.000245699000000,0.000173403000000,0.011072753000000,0.000063575000000,0.000039873000000 +0.000038292000000,0.000142983000000,0.000037107000000,0.000027442000000,0.000323921000000,0.000036711000000,0.000186835000000,0.000032761000000,0.000308909000000,0.000025862000000,0.000039082000000,0.000374489000000,0.000375279000000,0.000179329000000,0.011278184000000,0.000188416000000,0.000171822000000,0.010842826000000,0.000113353000000,0.000040267000000 +0.000038292000000,0.000144563000000,0.000036316000000,0.000027047500000,0.000322341000000,0.000037502000000,0.000187230000000,0.000034341000000,0.000308514000000,0.000026060000000,0.000039082000000,0.000409649000000,0.000408465000000,0.000178144000000,0.010460013000000,0.000188810000000,0.000246489000000,0.010850728000000,0.000044218000000,0.000037897000000 +0.000037502000000,0.000371724000000,0.000036317000000,0.000027244500000,0.000375675000000,0.000037502000000,0.000306143000000,0.000032761000000,0.000309699000000,0.000026059500000,0.000039872000000,0.000373700000000,0.000372119000000,0.000172612000000,0.011404999000000,0.000223971000000,0.000173008000000,0.011072752000000,0.000044613000000,0.000039477000000 +0.000057650000000,0.000298637000000,0.000036317000000,0.000037318500000,0.000322341000000,0.000037897000000,0.000217650000000,0.000031971000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000458637000000,0.000369353000000,0.000171823000000,0.011264752000000,0.000189205000000,0.000173007000000,0.010975567000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000163922000000,0.000036316000000,0.000027244500000,0.000323526000000,0.000038292000000,0.000200267000000,0.000032761000000,0.000307329000000,0.000026652000000,0.000039477000000,0.000436514000000,0.000425057000000,0.000172218000000,0.010857839000000,0.000189205000000,0.000172613000000,0.011150974000000,0.000045403000000,0.000038687000000 +0.000038292000000,0.000140613000000,0.000036712000000,0.000027245000000,0.000325106000000,0.000036712000000,0.000199477000000,0.000031971000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000417156000000,0.000374490000000,0.000210934000000,0.010620802000000,0.000190390000000,0.000171823000000,0.010979518000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000142193000000,0.000069897000000,0.000027244500000,0.000322736000000,0.000038292000000,0.000199477000000,0.000031971000000,0.000308514000000,0.000026455000000,0.000039478000000,0.000380811000000,0.000404909000000,0.000225552000000,0.010518876000000,0.000223180000000,0.000210538000000,0.010879567000000,0.000044218000000,0.000042242000000 +0.000037502000000,0.000144563000000,0.000035921000000,0.000027244500000,0.000323921000000,0.000037897000000,0.000200662000000,0.000033552000000,0.000308513000000,0.000025862000000,0.000039082000000,0.000379625000000,0.000378045000000,0.000172613000000,0.010657543000000,0.000186440000000,0.000173798000000,0.011092505000000,0.000044218000000,0.000041452000000 +0.000037502000000,0.000141798000000,0.000035922000000,0.000027047500000,0.000362637000000,0.000037107000000,0.000199872000000,0.000031971000000,0.000596514000000,0.000025862000000,0.000039477000000,0.000402539000000,0.000376069000000,0.000170638000000,0.010996111000000,0.000187230000000,0.000173008000000,0.010786728000000,0.000043822000000,0.000042243000000 +0.000037897000000,0.000144959000000,0.000035922000000,0.000027047500000,0.000324711000000,0.000037897000000,0.000199082000000,0.000032366000000,0.000329453000000,0.000026454500000,0.000039477000000,0.000371724000000,0.000391872000000,0.000171427000000,0.011007567000000,0.000186835000000,0.000173008000000,0.011411320000000,0.000044613000000,0.000040662000000 +0.000038292000000,0.000184464000000,0.000036317000000,0.000027244500000,0.000327081000000,0.000108612000000,0.000201057000000,0.000032366000000,0.000361057000000,0.000026059500000,0.000080563000000,0.000420316000000,0.000366588000000,0.000174983000000,0.011148210000000,0.000262292000000,0.000172218000000,0.010949098000000,0.000044218000000,0.000040662000000 +0.000037502000000,0.000180119000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000199082000000,0.000032366000000,0.000308119000000,0.000044627500000,0.000039477000000,0.000372909000000,0.000400958000000,0.000173008000000,0.010678481000000,0.000186835000000,0.000209749000000,0.010892209000000,0.000044613000000,0.000041058000000 +0.000038292000000,0.000140613000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000036317000000,0.000316020000000,0.000032366000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000382785000000,0.000375279000000,0.000171428000000,0.010625938000000,0.000186835000000,0.000174588000000,0.011025345000000,0.000044613000000,0.000077798000000 +0.000037501000000,0.000144563000000,0.000036317000000,0.000027639500000,0.000335773000000,0.000037107000000,0.000326687000000,0.000032366000000,0.000308514000000,0.000025664500000,0.000039477000000,0.000407675000000,0.000394638000000,0.000173008000000,0.010931716000000,0.000187230000000,0.000174589000000,0.011552357000000,0.000044218000000,0.000041453000000 +0.000037502000000,0.000142983000000,0.000036712000000,0.000027244500000,0.000321946000000,0.000038292000000,0.000197501000000,0.000032366000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000378045000000,0.000364217000000,0.000173403000000,0.010700604000000,0.000225156000000,0.000171428000000,0.011461888000000,0.000045008000000,0.000041057000000 +0.000037897000000,0.000143379000000,0.000035921000000,0.000027047500000,0.000322736000000,0.000036317000000,0.000199082000000,0.000032366000000,0.000307723000000,0.000025862000000,0.000039477000000,0.000408859000000,0.000382391000000,0.000295477000000,0.010632654000000,0.000188810000000,0.000171428000000,0.010835715000000,0.000044218000000,0.000042243000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000344859000000,0.000037502000000,0.000222391000000,0.000031971000000,0.000308514000000,0.000026454500000,0.000039478000000,0.000372514000000,0.000447971000000,0.000173798000000,0.010430778000000,0.000188020000000,0.000224365000000,0.010994925000000,0.000044218000000,0.000040663000000 +0.000037502000000,0.000144959000000,0.000036317000000,0.000027047000000,0.000599279000000,0.000037107000000,0.000198292000000,0.000033156000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000377650000000,0.000370933000000,0.000170637000000,0.010938827000000,0.000189205000000,0.000173403000000,0.010829790000000,0.000093996000000,0.000041057000000 +0.000037896000000,0.000178539000000,0.000036316000000,0.000027245000000,0.000437304000000,0.000038292000000,0.000200267000000,0.000032366000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000684613000000,0.000416365000000,0.000171428000000,0.010509395000000,0.000266637000000,0.000174193000000,0.012010233000000,0.000071872000000,0.000040663000000 +0.000037502000000,0.000150094000000,0.000036317000000,0.000027442500000,0.000853699000000,0.000037897000000,0.000198687000000,0.000031971000000,0.000308514000000,0.000026455000000,0.000039477000000,0.000412415000000,0.000374885000000,0.000173008000000,0.012312850000000,0.000188020000000,0.000174193000000,0.011239468000000,0.000074243000000,0.000042242000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000045220000000,0.000726489000000,0.000036317000000,0.000233847000000,0.000032761000000,0.000307328000000,0.000026454500000,0.000039477000000,0.000367774000000,0.000370143000000,0.000171428000000,0.011211024000000,0.000187230000000,0.000171032000000,0.010977543000000,0.000068711000000,0.000040662000000 +0.000037897000000,0.000143379000000,0.000036317000000,0.000027442000000,0.000427428000000,0.000037502000000,0.000200267000000,0.000033946000000,0.000306934000000,0.000026454500000,0.000039872000000,0.000381600000000,0.000410045000000,0.000220020000000,0.010440259000000,0.000188415000000,0.000331823000000,0.011115814000000,0.000079378000000,0.000041058000000 +0.000038292000000,0.000141403000000,0.000036316000000,0.000027047000000,0.000434143000000,0.000038292000000,0.000201848000000,0.000032366000000,0.000306934000000,0.000025862000000,0.000039082000000,0.000846983000000,0.000373699000000,0.000173007000000,0.011206283000000,0.000225551000000,0.000186440000000,0.011207469000000,0.000046983000000,0.000041452000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027245000000,0.000361057000000,0.000037502000000,0.000201452000000,0.000032761000000,0.000308119000000,0.000026454500000,0.000039873000000,0.000410835000000,0.000408860000000,0.000172218000000,0.012152851000000,0.000189206000000,0.000171428000000,0.011065641000000,0.000046983000000,0.000040663000000 +0.000037107000000,0.000214095000000,0.000036317000000,0.000027047000000,0.000354341000000,0.000037897000000,0.000235033000000,0.000032366000000,0.000308514000000,0.000026257500000,0.000039872000000,0.000381600000000,0.000375280000000,0.000195132000000,0.011181789000000,0.000190391000000,0.000173798000000,0.011203518000000,0.000048563000000,0.000040267000000 +0.000058045000000,0.000141403000000,0.000036316000000,0.000027837500000,0.000353551000000,0.000037107000000,0.000199872000000,0.000032761000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000363822000000,0.000368168000000,0.000174193000000,0.011093295000000,0.000186835000000,0.000209353000000,0.010802136000000,0.000046983000000,0.000041453000000 +0.000089650000000,0.000143774000000,0.000036316000000,0.000027047500000,0.000381601000000,0.000037502000000,0.000198687000000,0.000031971000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000425452000000,0.000406489000000,0.000171427000000,0.011082234000000,0.000224761000000,0.000175773000000,0.011063666000000,0.000046983000000,0.000041848000000 +0.000037502000000,0.000142589000000,0.000088860000000,0.000027244500000,0.000355526000000,0.000037897000000,0.000204218000000,0.000031971000000,0.000307724000000,0.000044430000000,0.000039477000000,0.000370143000000,0.000374490000000,0.000173403000000,0.010411420000000,0.000189995000000,0.000175378000000,0.011372209000000,0.000046984000000,0.000040267000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000353156000000,0.000037106000000,0.000213699000000,0.000032366000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000418341000000,0.000467724000000,0.000172612000000,0.010754333000000,0.000187625000000,0.000172613000000,0.011158480000000,0.000047378000000,0.000040663000000 +0.000039082000000,0.000142588000000,0.000036316000000,0.000027047500000,0.000368169000000,0.000037502000000,0.000203033000000,0.000032366000000,0.000309699000000,0.000026257000000,0.000039478000000,0.000375674000000,0.000373699000000,0.000173403000000,0.010716802000000,0.000188811000000,0.000174193000000,0.011061296000000,0.000065947000000,0.000041452000000 +0.000037501000000,0.000190391000000,0.000036317000000,0.000027442000000,0.000355131000000,0.000054885000000,0.000199477000000,0.000034736000000,0.000306539000000,0.000025862000000,0.000039082000000,0.000413205000000,0.000406884000000,0.000172612000000,0.010862579000000,0.000224761000000,0.000210539000000,0.011252901000000,0.000153255000000,0.000042637000000 +0.000037897000000,0.000141008000000,0.000036712000000,0.000027442000000,0.000357106000000,0.000037897000000,0.000202638000000,0.000035921000000,0.000307329000000,0.000025862000000,0.000115724000000,0.000379625000000,0.000394242000000,0.000174193000000,0.010768160000000,0.000187230000000,0.000172217000000,0.011299123000000,0.000090045000000,0.000067131000000 +0.000037502000000,0.000141008000000,0.000036316000000,0.000027245000000,0.000369749000000,0.000038687000000,0.000197896000000,0.000034736000000,0.000357502000000,0.000026454500000,0.000057650000000,0.000374489000000,0.000374884000000,0.000171823000000,0.010948308000000,0.000188415000000,0.000171428000000,0.011084605000000,0.000148909000000,0.000040662000000 +0.000037502000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000349206000000,0.000037502000000,0.000270984000000,0.000032366000000,0.000308909000000,0.000026060000000,0.000120860000000,0.000447971000000,0.000415971000000,0.000173403000000,0.010514135000000,0.000186835000000,0.000173008000000,0.010993345000000,0.000122045000000,0.000041057000000 +0.000037106000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000035922000000,0.000198686000000,0.000033156000000,0.000308119000000,0.000025862000000,0.000089255000000,0.000430983000000,0.000378440000000,0.000192761000000,0.010928160000000,0.000333008000000,0.000173403000000,0.011050234000000,0.000060810000000,0.000042243000000 +0.000038292000000,0.000143378000000,0.000035921000000,0.000027245000000,0.000324711000000,0.000036712000000,0.000289156000000,0.000032761000000,0.000344464000000,0.000026059500000,0.000058835000000,0.000458242000000,0.000445996000000,0.000172613000000,0.010470679000000,0.000190785000000,0.000190391000000,0.011438579000000,0.000131921000000,0.000042242000000 +0.000038292000000,0.000178934000000,0.000036316000000,0.000045022500000,0.000324711000000,0.000037897000000,0.000437304000000,0.000032366000000,0.000307724000000,0.000026059500000,0.000042242000000,0.000373699000000,0.000368958000000,0.000174589000000,0.010640950000000,0.000190391000000,0.000173008000000,0.011028901000000,0.000147329000000,0.000041452000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000360662000000,0.000037501000000,0.000202242000000,0.000032366000000,0.000307724000000,0.000026059500000,0.000069896000000,0.000417156000000,0.000374885000000,0.000172218000000,0.010659123000000,0.000189206000000,0.000171823000000,0.010824653000000,0.000115329000000,0.000041453000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027442000000,0.000324316000000,0.000037502000000,0.000198687000000,0.000033156000000,0.000380021000000,0.000025862000000,0.000039478000000,0.000367378000000,0.000410044000000,0.000173799000000,0.011133987000000,0.000226341000000,0.000173798000000,0.011092901000000,0.000099527000000,0.000041057000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027442500000,0.000322736000000,0.000037502000000,0.000199082000000,0.000033551000000,0.000308514000000,0.000026257000000,0.000039082000000,0.000366983000000,0.000377649000000,0.000172218000000,0.010886678000000,0.000188415000000,0.000208958000000,0.011406974000000,0.000048564000000,0.000041452000000 +0.000037896000000,0.000143774000000,0.000035921000000,0.000027047500000,0.000323527000000,0.000037502000000,0.000199872000000,0.000032366000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000458242000000,0.000526588000000,0.000171032000000,0.010504654000000,0.000188415000000,0.000173008000000,0.010916703000000,0.000097946000000,0.000042243000000 +0.000037107000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000038292000000,0.000201057000000,0.000032366000000,0.000307724000000,0.000026850000000,0.000039477000000,0.000376069000000,0.000395427000000,0.000173008000000,0.010620802000000,0.000189600000000,0.000171823000000,0.011179419000000,0.000113749000000,0.000041058000000 +0.000037897000000,0.000180909000000,0.000036317000000,0.000027047000000,0.000322341000000,0.000038292000000,0.000198686000000,0.000031971000000,0.000307328000000,0.000026059500000,0.000039082000000,0.000404909000000,0.000400958000000,0.000173007000000,0.010783172000000,0.000224761000000,0.000174588000000,0.010787123000000,0.000112168000000,0.000041847000000 +0.000037897000000,0.000143379000000,0.000036316000000,0.000027047500000,0.000365403000000,0.000037502000000,0.000199872000000,0.000031971000000,0.000307724000000,0.000035936000000,0.000039872000000,0.000366193000000,0.000376464000000,0.000171823000000,0.010834135000000,0.000191181000000,0.000174193000000,0.011854974000000,0.000102292000000,0.000041453000000 +0.000037897000000,0.000142984000000,0.000036712000000,0.000027442500000,0.000336169000000,0.000037897000000,0.000198687000000,0.000035921000000,0.000307724000000,0.000033566000000,0.000039873000000,0.000373700000000,0.000370934000000,0.000191576000000,0.010433148000000,0.000188810000000,0.000208564000000,0.010834135000000,0.000112563000000,0.000042243000000 +0.000037896000000,0.000142983000000,0.000036317000000,0.000027837500000,0.000323526000000,0.000037502000000,0.000199872000000,0.000032366000000,0.000308514000000,0.000026454500000,0.000058835000000,0.000440069000000,0.000442835000000,0.000171823000000,0.010554037000000,0.000188810000000,0.000173402000000,0.011372604000000,0.000076218000000,0.000041057000000 +0.000037502000000,0.000141403000000,0.000036316000000,0.000027047500000,0.000324316000000,0.000037107000000,0.000201452000000,0.000032366000000,0.000307724000000,0.000025862000000,0.000039873000000,0.000377650000000,0.000374094000000,0.000171427000000,0.010608950000000,0.000225946000000,0.000173403000000,0.011224456000000,0.000077798000000,0.000041057000000 +0.000055280000000,0.000142984000000,0.000052909000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000198687000000,0.000032366000000,0.000308514000000,0.000026454500000,0.000039872000000,0.000432959000000,0.000430983000000,0.000171428000000,0.010947123000000,0.000188416000000,0.000210539000000,0.011418036000000,0.000078983000000,0.000041848000000 +0.000037897000000,0.001002637000000,0.000036316000000,0.000027639500000,0.000324316000000,0.000037897000000,0.000199082000000,0.000032761000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000371329000000,0.000376069000000,0.000172613000000,0.010615666000000,0.000186835000000,0.000171822000000,0.010945937000000,0.000050539000000,0.000040662000000 +0.000037897000000,0.000198292000000,0.000035922000000,0.000027047500000,0.000362637000000,0.000036712000000,0.000198687000000,0.000033156000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000465748000000,0.000452712000000,0.000193551000000,0.010749592000000,0.000187230000000,0.000207378000000,0.011146234000000,0.000063576000000,0.000042637000000 +0.000038292000000,0.000143378000000,0.000035922000000,0.000027244500000,0.000325107000000,0.000056860000000,0.000198687000000,0.000033551000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000732020000000,0.000365008000000,0.000175773000000,0.010518481000000,0.000329057000000,0.000175773000000,0.010925394000000,0.000063181000000,0.000041848000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000069501000000,0.000199872000000,0.000032366000000,0.000360662000000,0.000026652000000,0.000039477000000,0.000412810000000,0.000368958000000,0.000171823000000,0.010991764000000,0.000222786000000,0.000173798000000,0.011075913000000,0.000050538000000,0.000076613000000 +0.000037897000000,0.000146144000000,0.000036316000000,0.000045417500000,0.000385946000000,0.000040267000000,0.000198687000000,0.000032761000000,0.000308119000000,0.000025862000000,0.000039083000000,0.000369354000000,0.000410045000000,0.000172613000000,0.010571025000000,0.000204613000000,0.000172218000000,0.011150185000000,0.000049353000000,0.000041453000000 +0.000037897000000,0.000142589000000,0.000036317000000,0.000034158500000,0.000657353000000,0.000051724000000,0.000198687000000,0.000032366000000,0.000310490000000,0.000026849500000,0.000039477000000,0.000408860000000,0.000381996000000,0.000175378000000,0.010399962000000,0.000260316000000,0.000173798000000,0.011046679000000,0.000050539000000,0.000041452000000 +0.000038292000000,0.000141403000000,0.000036712000000,0.000027244500000,0.000480760000000,0.000037897000000,0.000201452000000,0.000032366000000,0.000305749000000,0.000025862500000,0.000039477000000,0.000371724000000,0.000436909000000,0.000209354000000,0.010759469000000,0.000190785000000,0.000220810000000,0.011171123000000,0.000050539000000,0.000041057000000 +0.000038292000000,0.000142983000000,0.000036711000000,0.000027244500000,0.000377650000000,0.000037502000000,0.000198687000000,0.000032366000000,0.000306539000000,0.000026059500000,0.000039477000000,0.000378835000000,0.000372909000000,0.000184465000000,0.010972802000000,0.000189205000000,0.000175773000000,0.011101197000000,0.000062786000000,0.000041453000000 +0.000037897000000,0.000214095000000,0.000036317000000,0.000027245000000,0.000327477000000,0.000037502000000,0.000198292000000,0.000031971000000,0.000307724000000,0.000026059500000,0.000039082000000,0.000417551000000,0.000365798000000,0.000171428000000,0.011089740000000,0.000190390000000,0.000175378000000,0.011546431000000,0.000093601000000,0.000041452000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000036317000000,0.000233847000000,0.000032366000000,0.000308909000000,0.000026257000000,0.000039082000000,0.000378045000000,0.000415181000000,0.000174194000000,0.010877197000000,0.000225946000000,0.000174588000000,0.011532999000000,0.000048564000000,0.000041057000000 +0.000038292000000,0.000143378000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000200663000000,0.000032761000000,0.000308119000000,0.000025862000000,0.000038687000000,0.000410440000000,0.000372514000000,0.000172613000000,0.010992160000000,0.000188415000000,0.000173008000000,0.011030481000000,0.000048169000000,0.000041058000000 +0.000037897000000,0.000140218000000,0.000035921000000,0.000027245000000,0.000361057000000,0.000037897000000,0.000199872000000,0.000032366000000,0.000307329000000,0.000025862000000,0.000039083000000,0.000379625000000,0.000658933000000,0.000208958000000,0.010243518000000,0.000186440000000,0.000214884000000,0.010961740000000,0.000048168000000,0.000042242000000 +0.000037502000000,0.000143378000000,0.000036712000000,0.000027244500000,0.000323921000000,0.000038292000000,0.000199082000000,0.000033552000000,0.000308514000000,0.000044232500000,0.000039477000000,0.000402934000000,0.000578736000000,0.000174588000000,0.011261987000000,0.000186835000000,0.000171032000000,0.011472160000000,0.000048564000000,0.000041452000000 +0.000037502000000,0.000143773000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000242934000000,0.000031971000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000383971000000,0.000370539000000,0.000171823000000,0.010641346000000,0.000257156000000,0.000178144000000,0.010943173000000,0.000047379000000,0.000040267000000 +0.000037502000000,0.000178934000000,0.000035921000000,0.000027245000000,0.000442440000000,0.000038292000000,0.000237008000000,0.000033551000000,0.000307724000000,0.000046010000000,0.000039477000000,0.000374094000000,0.000378835000000,0.000171822000000,0.010527963000000,0.000187230000000,0.000172218000000,0.011019814000000,0.000048958000000,0.000041057000000 +0.000037897000000,0.000143378000000,0.000035922000000,0.000027047500000,0.000324317000000,0.000037897000000,0.000302983000000,0.000033551000000,0.000308119000000,0.000056874500000,0.000039477000000,0.000445996000000,0.000411230000000,0.000171823000000,0.010490431000000,0.000187230000000,0.000173403000000,0.011316506000000,0.000077008000000,0.000041058000000 +0.000038291000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000325502000000,0.000037106000000,0.000197897000000,0.000032761000000,0.000308119000000,0.000033763000000,0.000039872000000,0.000376069000000,0.000374884000000,0.000208564000000,0.010557197000000,0.000188810000000,0.000216464000000,0.011640851000000,0.000048564000000,0.000041057000000 +0.000037502000000,0.000142984000000,0.000036712000000,0.000027244500000,0.000326686000000,0.000038292000000,0.000202243000000,0.000033156000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000462983000000,0.000449551000000,0.000171428000000,0.010813592000000,0.000223181000000,0.000173403000000,0.010821099000000,0.000048564000000,0.000041453000000 +0.000038687000000,0.000141008000000,0.000036316000000,0.000027442500000,0.000324316000000,0.000037502000000,0.000197896000000,0.000032366000000,0.000308119000000,0.000026257500000,0.000059231000000,0.000374489000000,0.000364218000000,0.000173008000000,0.010678086000000,0.000190391000000,0.000171428000000,0.011380505000000,0.000048959000000,0.000041058000000 +0.000037897000000,0.000142983000000,0.000056465000000,0.000027244500000,0.000350390000000,0.000038687000000,0.000198686000000,0.000032366000000,0.000306539000000,0.000025862000000,0.000066341000000,0.000375674000000,0.000373304000000,0.000173403000000,0.010387716000000,0.000188021000000,0.000175773000000,0.011324407000000,0.000048958000000,0.000040662000000 +0.000037897000000,0.000178144000000,0.000052119000000,0.000045220000000,0.000344070000000,0.000037897000000,0.000237008000000,0.000032366000000,0.000307724000000,0.000026059500000,0.000052909000000,0.000406489000000,0.000419131000000,0.000171032000000,0.010761444000000,0.000186835000000,0.000172613000000,0.011263962000000,0.000048959000000,0.000041848000000 +0.000074242000000,0.000141403000000,0.000049353000000,0.000027442000000,0.000342094000000,0.000037107000000,0.000198292000000,0.000033156000000,0.000417551000000,0.000026849500000,0.000039873000000,0.000380415000000,0.000372514000000,0.000173008000000,0.010699814000000,0.000227526000000,0.000227921000000,0.011263172000000,0.000048169000000,0.000042243000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000354736000000,0.000073058000000,0.000198687000000,0.000035131000000,0.000327082000000,0.000026849500000,0.000039082000000,0.000454292000000,0.000408859000000,0.000173008000000,0.010457247000000,0.000189995000000,0.000176168000000,0.010993741000000,0.000048168000000,0.000040662000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000343674000000,0.000037107000000,0.000197896000000,0.000032366000000,0.000307723000000,0.000025862000000,0.000039477000000,0.000380020000000,0.000374885000000,0.000171032000000,0.011083814000000,0.000190786000000,0.000173008000000,0.010953839000000,0.000048959000000,0.000077798000000 +0.000037897000000,0.000142984000000,0.000036317000000,0.000027244500000,0.000343279000000,0.000037897000000,0.000199081000000,0.000032366000000,0.000344860000000,0.000026059500000,0.000039082000000,0.000438885000000,0.000372119000000,0.000171032000000,0.010759074000000,0.000188416000000,0.000171823000000,0.012781393000000,0.000048564000000,0.000041057000000 +0.000037897000000,0.000143379000000,0.000036316000000,0.000027047500000,0.000344860000000,0.000037897000000,0.000199477000000,0.000032366000000,0.000307329000000,0.000025862000000,0.000039082000000,0.000372514000000,0.000391477000000,0.000173798000000,0.010884308000000,0.000225946000000,0.000208564000000,0.011264357000000,0.000049353000000,0.000041057000000 +0.000037896000000,0.000216069000000,0.000037107000000,0.000027442500000,0.000344070000000,0.000037502000000,0.000199873000000,0.000032761000000,0.000307329000000,0.000044034500000,0.000039477000000,0.000372514000000,0.000376069000000,0.000297847000000,0.010560358000000,0.000186835000000,0.000173403000000,0.011685888000000,0.000048168000000,0.000043033000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000343280000000,0.000037897000000,0.000197896000000,0.000032366000000,0.000357896000000,0.000025664500000,0.000039477000000,0.000422687000000,0.000451132000000,0.000461403000000,0.010516111000000,0.000191576000000,0.000171427000000,0.011023369000000,0.000048564000000,0.000042638000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000344860000000,0.000037107000000,0.000198292000000,0.000031971000000,0.000307329000000,0.000026257000000,0.000039478000000,0.000382785000000,0.000371328000000,0.000204613000000,0.010405099000000,0.000190785000000,0.000173008000000,0.011347716000000,0.000048959000000,0.000043033000000 +0.000037502000000,0.000142588000000,0.000035922000000,0.000027047500000,0.000344069000000,0.000037897000000,0.000211329000000,0.000032761000000,0.000307724000000,0.000027047000000,0.000039872000000,0.000406884000000,0.000407674000000,0.000174983000000,0.010657542000000,0.000229897000000,0.000175774000000,0.012581096000000,0.000048563000000,0.000041057000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000344069000000,0.000036712000000,0.000190390000000,0.000032761000000,0.000344859000000,0.000025862000000,0.000039872000000,0.000378045000000,0.000372119000000,0.000172613000000,0.010853889000000,0.000189205000000,0.000208959000000,0.011262382000000,0.000048169000000,0.000042243000000 +0.000037896000000,0.000139823000000,0.000036317000000,0.000027244500000,0.000345650000000,0.000037501000000,0.000187230000000,0.000032366000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000372119000000,0.000375279000000,0.000172218000000,0.010422876000000,0.000188415000000,0.000172218000000,0.011231172000000,0.000048563000000,0.000041058000000 +0.000076613000000,0.000178934000000,0.000036316000000,0.000027245000000,0.000345255000000,0.000037107000000,0.000219625000000,0.000032366000000,0.000307329000000,0.000026060000000,0.000039082000000,0.000408860000000,0.000400959000000,0.000171427000000,0.010911172000000,0.000188021000000,0.000173008000000,0.011582382000000,0.000063180000000,0.000042242000000 +0.000039477000000,0.000142984000000,0.000036317000000,0.000027047500000,0.000343674000000,0.000037502000000,0.000189600000000,0.000031971000000,0.000381996000000,0.000027442500000,0.000039082000000,0.000376859000000,0.000375674000000,0.000173008000000,0.010585247000000,0.000227526000000,0.000173798000000,0.010940802000000,0.000048563000000,0.000041847000000 +0.000040268000000,0.000142984000000,0.000036317000000,0.000027244500000,0.000344069000000,0.000039082000000,0.000189205000000,0.000031971000000,0.000308513000000,0.000025862000000,0.000039083000000,0.000415971000000,0.000459823000000,0.000173798000000,0.010841641000000,0.000187625000000,0.000173403000000,0.011237888000000,0.000048959000000,0.000042243000000 +0.000050934000000,0.000145353000000,0.000036317000000,0.000027442000000,0.000342884000000,0.000037502000000,0.000186835000000,0.000032366000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000375280000000,0.000374094000000,0.000172613000000,0.010772901000000,0.000188810000000,0.000211724000000,0.010842827000000,0.000048564000000,0.000041453000000 +0.000037501000000,0.000140613000000,0.000036316000000,0.000045220000000,0.000344070000000,0.000036712000000,0.000188811000000,0.000032762000000,0.000383181000000,0.000025862000000,0.000039477000000,0.000404119000000,0.000375675000000,0.000173008000000,0.010610530000000,0.000187230000000,0.000171427000000,0.011136358000000,0.000048563000000,0.000041057000000 +0.000037502000000,0.000143378000000,0.000035922000000,0.000027245000000,0.000343675000000,0.000037502000000,0.000187230000000,0.000033156000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000381205000000,0.000408859000000,0.000216860000000,0.010684802000000,0.000188416000000,0.000173798000000,0.011186531000000,0.000048959000000,0.000041848000000 +0.000037897000000,0.000223180000000,0.000036317000000,0.000027047000000,0.000344860000000,0.000037502000000,0.000188020000000,0.000032366000000,0.000308909000000,0.000026059500000,0.000059625000000,0.000388712000000,0.000372514000000,0.000174193000000,0.011199963000000,0.000188415000000,0.000171822000000,0.010901295000000,0.000048169000000,0.000041453000000 +0.000037897000000,0.000155625000000,0.000071873000000,0.000027047000000,0.000346439000000,0.000037107000000,0.000188415000000,0.000032366000000,0.000358687000000,0.000025862000000,0.000073848000000,0.000417551000000,0.000401354000000,0.000173403000000,0.010984259000000,0.000189206000000,0.000173403000000,0.010865345000000,0.000048958000000,0.000042638000000 +0.000037897000000,0.000151675000000,0.000036712000000,0.000027640000000,0.000342489000000,0.000036712000000,0.000189205000000,0.000031971000000,0.000306934000000,0.000025862000000,0.000052909000000,0.000381600000000,0.000375279000000,0.000173403000000,0.010645691000000,0.000189206000000,0.000208169000000,0.011194037000000,0.000048563000000,0.000042242000000 +0.000056860000000,0.000191576000000,0.000036316000000,0.000027047000000,0.000587032000000,0.000037897000000,0.000188416000000,0.000029996000000,0.000308514000000,0.000026454500000,0.000039477000000,0.000399774000000,0.000369354000000,0.000173798000000,0.010883517000000,0.000188415000000,0.000174193000000,0.010990184000000,0.000048959000000,0.000041452000000 +0.000087280000000,0.000155625000000,0.000036316000000,0.000027047000000,0.000393848000000,0.000054885000000,0.000188811000000,0.000030390000000,0.000358687000000,0.000045022500000,0.000039477000000,0.000375674000000,0.000390292000000,0.000171822000000,0.010620012000000,0.000299428000000,0.000173008000000,0.011092901000000,0.000047773000000,0.000043033000000 +0.000052909000000,0.000204217000000,0.000036317000000,0.000027245000000,0.000345254000000,0.000086884000000,0.000188415000000,0.000030391000000,0.000346440000000,0.000025862000000,0.000039478000000,0.000370144000000,0.000425057000000,0.000173798000000,0.010557592000000,0.000254786000000,0.000173798000000,0.011393938000000,0.000048168000000,0.000041453000000 +0.000037897000000,0.000155625000000,0.000035922000000,0.000027245000000,0.000343279000000,0.000040267000000,0.000492217000000,0.000030391000000,0.000308513000000,0.000026454500000,0.000039082000000,0.000418341000000,0.000411230000000,0.000173402000000,0.010589988000000,0.000203033000000,0.000171032000000,0.011255666000000,0.000048169000000,0.000041057000000 +0.000037107000000,0.000140612000000,0.000036316000000,0.000027244500000,0.000343674000000,0.000049748000000,0.000219230000000,0.000030390000000,0.000344860000000,0.000026257000000,0.000039477000000,0.000376070000000,0.000373304000000,0.000174983000000,0.010730234000000,0.000201847000000,0.000210144000000,0.011283320000000,0.000048563000000,0.000040663000000 +0.000037501000000,0.000142588000000,0.000037107000000,0.000027047000000,0.000352761000000,0.000037502000000,0.000240169000000,0.000030391000000,0.000307724000000,0.000026652500000,0.000039872000000,0.000424662000000,0.000410045000000,0.000172613000000,0.011269493000000,0.000188020000000,0.000174193000000,0.010755913000000,0.000049353000000,0.000040662000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000360662000000,0.000037107000000,0.000246885000000,0.000030786000000,0.000306538000000,0.000025862000000,0.000039477000000,0.000379230000000,0.000367378000000,0.000173007000000,0.011452802000000,0.000189206000000,0.000178934000000,0.011097641000000,0.000048959000000,0.000040267000000 +0.000037897000000,0.000144564000000,0.000036316000000,0.000028035000000,0.000323132000000,0.000037502000000,0.000186835000000,0.000031181000000,0.000354736000000,0.000026652000000,0.000039478000000,0.000374885000000,0.000372119000000,0.000173798000000,0.010884703000000,0.000189996000000,0.000172218000000,0.011487567000000,0.000048169000000,0.000040662000000 +0.000037897000000,0.000141403000000,0.000036712000000,0.000027244500000,0.000324317000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000026257000000,0.000039477000000,0.000910982000000,0.000408465000000,0.000173008000000,0.010459222000000,0.000253995000000,0.000174984000000,0.011300703000000,0.000048563000000,0.000041057000000 +0.000037502000000,0.000179328000000,0.000036317000000,0.000027047500000,0.000465749000000,0.000037502000000,0.000236218000000,0.000030785000000,0.000307724000000,0.000026257500000,0.000039477000000,0.000889254000000,0.000368958000000,0.000171428000000,0.010509395000000,0.000187625000000,0.000207378000000,0.010976358000000,0.000076612000000,0.000041453000000 +0.000037501000000,0.000142983000000,0.000035922000000,0.000027047500000,0.000324711000000,0.000036712000000,0.000188415000000,0.000030391000000,0.000636020000000,0.000026257000000,0.000039477000000,0.000650242000000,0.000407675000000,0.000172217000000,0.010900505000000,0.000189601000000,0.000174983000000,0.011048259000000,0.000048563000000,0.000041847000000 +0.000037502000000,0.000143379000000,0.000036316000000,0.000045220000000,0.000363427000000,0.000037897000000,0.000186835000000,0.000030786000000,0.000326687000000,0.000026059500000,0.000039477000000,0.000477996000000,0.000380020000000,0.000171428000000,0.010641740000000,0.000188811000000,0.000173007000000,0.010865345000000,0.000048959000000,0.000042637000000 +0.000037502000000,0.000142984000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037896000000,0.000187230000000,0.000031971000000,0.000308909000000,0.000042849500000,0.000039477000000,0.000794835000000,0.000374884000000,0.000171823000000,0.010719567000000,0.000188416000000,0.000174588000000,0.011378530000000,0.000048564000000,0.000042242000000 +0.000037897000000,0.000140612000000,0.000035922000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000233057000000,0.000029996000000,0.000306538000000,0.000033961000000,0.000039478000000,0.000433353000000,0.000397403000000,0.000208958000000,0.010539024000000,0.000186835000000,0.000172217000000,0.011010728000000,0.000048168000000,0.000041848000000 +0.000038292000000,0.000142588000000,0.000036711000000,0.000027047500000,0.000491822000000,0.000037897000000,0.000188020000000,0.000031181000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000366588000000,0.000374885000000,0.000171822000000,0.011084210000000,0.000188810000000,0.000210144000000,0.010894580000000,0.000047774000000,0.000040267000000 +0.000037501000000,0.000176169000000,0.000035922000000,0.000027245000000,0.000407279000000,0.000037502000000,0.000188416000000,0.000031576000000,0.000310095000000,0.000026652500000,0.000039082000000,0.000437699000000,0.000412020000000,0.000171428000000,0.010357692000000,0.000295872000000,0.000175774000000,0.011151765000000,0.000048564000000,0.000041452000000 +0.000037502000000,0.000142588000000,0.000036712000000,0.000027047000000,0.000325107000000,0.000037502000000,0.000189206000000,0.000031576000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000378440000000,0.000366588000000,0.000172613000000,0.011006777000000,0.000188020000000,0.000175773000000,0.011497839000000,0.000048563000000,0.000042243000000 +0.000037897000000,0.000144563000000,0.000035922000000,0.000027442500000,0.000324317000000,0.000037897000000,0.000223576000000,0.000030391000000,0.000307724000000,0.000034158500000,0.000077798000000,0.000368958000000,0.000376070000000,0.000173007000000,0.010951468000000,0.000190786000000,0.000173403000000,0.010915518000000,0.000048564000000,0.000043033000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037502000000,0.000189600000000,0.000030390000000,0.000308514000000,0.000025862000000,0.000055674000000,0.000433354000000,0.000710686000000,0.000208958000000,0.011050629000000,0.000187625000000,0.000173008000000,0.011000061000000,0.000048564000000,0.000041848000000 +0.000037897000000,0.000142588000000,0.000086489000000,0.000027244500000,0.000361452000000,0.000036711000000,0.000189205000000,0.000074242000000,0.000308119000000,0.000026454500000,0.000039478000000,0.000376860000000,0.000400168000000,0.000171823000000,0.011121740000000,0.000263872000000,0.000243724000000,0.010793048000000,0.000048563000000,0.000041847000000 +0.000037897000000,0.000142588000000,0.000050144000000,0.000027047500000,0.000323921000000,0.000037502000000,0.000187625000000,0.000048959000000,0.000309304000000,0.000025664500000,0.000039872000000,0.000405304000000,0.000365403000000,0.000171428000000,0.010680456000000,0.000187626000000,0.000173008000000,0.011169937000000,0.000048169000000,0.000040663000000 +0.000056859000000,0.000178144000000,0.000036316000000,0.000027047500000,0.000322341000000,0.000073452000000,0.000224366000000,0.000033156000000,0.000308119000000,0.000026454500000,0.000039872000000,0.000378045000000,0.000376859000000,0.000174983000000,0.010709690000000,0.000187230000000,0.000173007000000,0.011325987000000,0.000048959000000,0.000061206000000 +0.000054490000000,0.000142983000000,0.000036712000000,0.000027244500000,0.000333798000000,0.000037107000000,0.000276909000000,0.000043823000000,0.000308119000000,0.000026652500000,0.000039477000000,0.000447971000000,0.000442439000000,0.000171033000000,0.012425837000000,0.000188810000000,0.000209749000000,0.011260802000000,0.000048168000000,0.000042638000000 +0.000039082000000,0.000144168000000,0.000035922000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000186835000000,0.000031181000000,0.000309304000000,0.000026454500000,0.000039477000000,0.000371724000000,0.000370143000000,0.000173008000000,0.011461493000000,0.000260711000000,0.000234243000000,0.011547222000000,0.000048959000000,0.000042243000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000028232500000,0.000325501000000,0.000038687000000,0.000188415000000,0.000031971000000,0.000342094000000,0.000026059500000,0.000039477000000,0.000373304000000,0.000423082000000,0.000172613000000,0.010691518000000,0.000187230000000,0.000173403000000,0.011594233000000,0.000048169000000,0.000041057000000 +0.000038292000000,0.000142193000000,0.000035921000000,0.000027244500000,0.000325501000000,0.000038687000000,0.000205798000000,0.000030391000000,0.000414785000000,0.000025862000000,0.000039478000000,0.000440859000000,0.000372514000000,0.000173008000000,0.010612506000000,0.000189205000000,0.000174193000000,0.011119370000000,0.000048563000000,0.000040662000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037897000000,0.000187230000000,0.000030390000000,0.000307724000000,0.000026652000000,0.000039872000000,0.000370538000000,0.000372514000000,0.000172218000000,0.012011418000000,0.000190391000000,0.000172217000000,0.010891814000000,0.000076218000000,0.000042243000000 +0.000037897000000,0.000180119000000,0.000036712000000,0.000055097000000,0.000325106000000,0.000037107000000,0.000188415000000,0.000030391000000,0.000307724000000,0.000026850000000,0.000039872000000,0.000404514000000,0.000410440000000,0.000173403000000,0.010984259000000,0.000222785000000,0.000173403000000,0.010824259000000,0.000048959000000,0.000041452000000 +0.000037502000000,0.000233848000000,0.000035921000000,0.000035146000000,0.000324316000000,0.000037502000000,0.000189995000000,0.000030391000000,0.000308118000000,0.000026257000000,0.000039082000000,0.000402934000000,0.000375675000000,0.000175773000000,0.011018629000000,0.000188415000000,0.000327477000000,0.011161641000000,0.000048564000000,0.000043427000000 +0.000037897000000,0.000158390000000,0.000036316000000,0.000027245000000,0.000324316000000,0.000037897000000,0.000227131000000,0.000030390000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000377650000000,0.000412415000000,0.000171428000000,0.011058135000000,0.000188810000000,0.000190390000000,0.011296357000000,0.000063576000000,0.000042242000000 +0.000037896000000,0.000142588000000,0.000035922000000,0.000027244500000,0.000323921000000,0.000037106000000,0.000187625000000,0.000030786000000,0.000310095000000,0.000026059500000,0.000039477000000,0.000380415000000,0.000377255000000,0.000173403000000,0.010888654000000,0.000186835000000,0.000173403000000,0.010998481000000,0.000047378000000,0.000041453000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000308909000000,0.000026059500000,0.000039478000000,0.000380415000000,0.000383971000000,0.000172612000000,0.011143863000000,0.000260712000000,0.000175379000000,0.010736555000000,0.000046984000000,0.000041453000000 +0.000037502000000,0.000140218000000,0.000036711000000,0.000027047500000,0.000323526000000,0.000037502000000,0.000188811000000,0.000029995000000,0.000309304000000,0.000026257500000,0.000039872000000,0.000655773000000,0.000366193000000,0.000172613000000,0.010592357000000,0.000189601000000,0.000243724000000,0.011194431000000,0.000046983000000,0.000040267000000 +0.000038292000000,0.000225946000000,0.000036712000000,0.000027047500000,0.000325896000000,0.000037897000000,0.000226341000000,0.000030786000000,0.000308119000000,0.000058257000000,0.000039872000000,0.000374094000000,0.000410440000000,0.000209354000000,0.010614481000000,0.000187626000000,0.000173403000000,0.011526678000000,0.000046983000000,0.000041058000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037106000000,0.000186835000000,0.000030391000000,0.000307724000000,0.000026257500000,0.000039477000000,0.000415575000000,0.000498934000000,0.000173798000000,0.010474629000000,0.000191576000000,0.000172218000000,0.011070777000000,0.000047379000000,0.000041452000000 +0.000037501000000,0.000142983000000,0.000036711000000,0.000027047000000,0.000325106000000,0.000037107000000,0.000187230000000,0.000030390000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000534884000000,0.000469699000000,0.000172218000000,0.010828604000000,0.000224366000000,0.000172218000000,0.010830185000000,0.000043823000000,0.000040662000000 +0.000037502000000,0.000140613000000,0.000035922000000,0.000027245000000,0.000361057000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000308119000000,0.000026257000000,0.000039082000000,0.000587822000000,0.000415181000000,0.000176168000000,0.010714037000000,0.000189205000000,0.000171032000000,0.011549591000000,0.000043823000000,0.000040267000000 +0.000038292000000,0.000143773000000,0.000036712000000,0.000027442500000,0.000393452000000,0.000037502000000,0.000223576000000,0.000030786000000,0.000306934000000,0.000026257000000,0.000058836000000,0.000373699000000,0.000381600000000,0.000171822000000,0.010396802000000,0.000188810000000,0.000246094000000,0.011465838000000,0.000044218000000,0.000042242000000 +0.000037502000000,0.000146934000000,0.000072268000000,0.000027047000000,0.000323131000000,0.000037501000000,0.000189205000000,0.000030391000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000410835000000,0.000411230000000,0.000543970000000,0.010481741000000,0.000189205000000,0.000173403000000,0.010904456000000,0.000044613000000,0.000040663000000 +0.000037897000000,0.000225946000000,0.000036317000000,0.000027047500000,0.000324712000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000306539000000,0.000026257000000,0.000039873000000,0.000374884000000,0.000375675000000,0.000173798000000,0.010422087000000,0.000259526000000,0.000172613000000,0.010802926000000,0.000059625000000,0.000041452000000 +0.000037502000000,0.000143378000000,0.000036316000000,0.000027640000000,0.000323527000000,0.000037502000000,0.000186835000000,0.000032761000000,0.000369748000000,0.000026257000000,0.000039477000000,0.000460612000000,0.000365798000000,0.000172218000000,0.010969642000000,0.000191181000000,0.000176169000000,0.011001642000000,0.000047379000000,0.000040663000000 +0.000037502000000,0.000141403000000,0.000035921000000,0.000027047000000,0.000324317000000,0.000039083000000,0.000269798000000,0.000030786000000,0.000306539000000,0.000025862000000,0.000039082000000,0.000373700000000,0.000557798000000,0.000174588000000,0.010844407000000,0.000190391000000,0.000173008000000,0.010942383000000,0.000046983000000,0.000076613000000 +0.000037897000000,0.000142588000000,0.000035922000000,0.000027245000000,0.000324317000000,0.000094786000000,0.000189205000000,0.000052119000000,0.000359082000000,0.000025862000000,0.000039477000000,0.000374884000000,0.000372514000000,0.000171033000000,0.010713246000000,0.000187626000000,0.000231872000000,0.011386036000000,0.000046983000000,0.000040662000000 +0.000056465000000,0.000144564000000,0.000036317000000,0.000045022500000,0.000406884000000,0.000122440000000,0.000189600000000,0.000044218000000,0.000308118000000,0.000026652000000,0.000039082000000,0.000387526000000,0.000460218000000,0.000173008000000,0.010589593000000,0.000226736000000,0.000174193000000,0.011147024000000,0.000047774000000,0.000041452000000 +0.000087674000000,0.000140613000000,0.000036316000000,0.000033961000000,0.000342094000000,0.000072662000000,0.000186835000000,0.000030786000000,0.000308909000000,0.000025664500000,0.000039477000000,0.000380020000000,0.000363822000000,0.000171428000000,0.010632654000000,0.000188020000000,0.000175378000000,0.010834531000000,0.000047773000000,0.000040663000000 +0.000051329000000,0.000179724000000,0.000035922000000,0.000027244500000,0.000324317000000,0.000040662000000,0.000223181000000,0.000030785000000,0.000307724000000,0.000026059500000,0.000039872000000,0.000466143000000,0.000455872000000,0.000172218000000,0.010785938000000,0.000188020000000,0.000174588000000,0.011103568000000,0.000046589000000,0.000041452000000 +0.000038292000000,0.000144959000000,0.000036317000000,0.000027047000000,0.000323527000000,0.000040267000000,0.000186835000000,0.000030391000000,0.000345649000000,0.000025862000000,0.000039082000000,0.000379625000000,0.000377254000000,0.000193156000000,0.010808456000000,0.000187230000000,0.000263082000000,0.011301493000000,0.000047773000000,0.000041058000000 +0.000038292000000,0.000144564000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000050144000000,0.000191576000000,0.000030391000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000405304000000,0.000411625000000,0.000171032000000,0.010345049000000,0.000265847000000,0.000174983000000,0.010898530000000,0.000046984000000,0.000041057000000 +0.000037502000000,0.000141403000000,0.000036316000000,0.000027047000000,0.000431378000000,0.000037502000000,0.000188021000000,0.000030785000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000389897000000,0.000374490000000,0.000172613000000,0.010935666000000,0.000190786000000,0.000171427000000,0.011229197000000,0.000048563000000,0.000040267000000 +0.000037897000000,0.000143378000000,0.000036712000000,0.000027244500000,0.000338934000000,0.000038292000000,0.000235823000000,0.000029996000000,0.000308909000000,0.000034948500000,0.000039477000000,0.000395032000000,0.000373699000000,0.000170637000000,0.010900901000000,0.000188415000000,0.000172613000000,0.010838876000000,0.000046588000000,0.000041453000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000189600000000,0.000030786000000,0.000309305000000,0.000026454500000,0.000039872000000,0.000430983000000,0.000445995000000,0.000172613000000,0.010522037000000,0.000186440000000,0.000171823000000,0.011043123000000,0.000046983000000,0.000041057000000 +0.000037896000000,0.000213304000000,0.000036711000000,0.000044430000000,0.000361847000000,0.000037502000000,0.000188810000000,0.000030390000000,0.000308514000000,0.000026257500000,0.000039873000000,0.000406884000000,0.000372514000000,0.000173008000000,0.010619222000000,0.000223576000000,0.000259526000000,0.011056160000000,0.000046983000000,0.000041058000000 +0.000037897000000,0.000145354000000,0.000036317000000,0.000034948500000,0.000323921000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000307723000000,0.000026652000000,0.000039478000000,0.000392662000000,0.000418341000000,0.000171427000000,0.010810827000000,0.000188811000000,0.000172612000000,0.010793049000000,0.000046589000000,0.000040662000000 +0.000037107000000,0.000142194000000,0.000036317000000,0.000027047000000,0.000322736000000,0.000037107000000,0.000224366000000,0.000030786000000,0.000309699000000,0.000026652000000,0.000039477000000,0.000400959000000,0.000372514000000,0.000173403000000,0.011221295000000,0.000188415000000,0.000173798000000,0.011193246000000,0.000046983000000,0.000041847000000 +0.000037502000000,0.000142984000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037501000000,0.000190390000000,0.000031181000000,0.000307723000000,0.000025862000000,0.000039082000000,0.000430193000000,0.000374884000000,0.000173403000000,0.010468704000000,0.000188811000000,0.000173008000000,0.011362332000000,0.000046984000000,0.000040663000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000322736000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000039082000000,0.000395033000000,0.000452316000000,0.000174193000000,0.010565493000000,0.000256366000000,0.000171428000000,0.010955024000000,0.000046193000000,0.000041057000000 +0.000037896000000,0.000142984000000,0.000036317000000,0.000027837500000,0.000325107000000,0.000038292000000,0.000187625000000,0.000030390000000,0.000308119000000,0.000026257500000,0.000039477000000,0.000400168000000,0.000366588000000,0.000178539000000,0.010346629000000,0.000189995000000,0.000257946000000,0.011867616000000,0.000046983000000,0.000040268000000 +0.000038292000000,0.000178539000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000055675000000,0.000235823000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000435328000000,0.000410045000000,0.000174983000000,0.011056950000000,0.000189600000000,0.000173008000000,0.011657048000000,0.000046984000000,0.000042242000000 +0.000037897000000,0.000142983000000,0.000036316000000,0.000044825000000,0.000323922000000,0.000037502000000,0.000187231000000,0.000029996000000,0.000309304000000,0.000026454500000,0.000059231000000,0.000398193000000,0.000366983000000,0.000171822000000,0.010493988000000,0.000186835000000,0.000173008000000,0.011265937000000,0.000047378000000,0.000042637000000 +0.000037502000000,0.000141798000000,0.000112563000000,0.000033763000000,0.000323527000000,0.000037897000000,0.000187230000000,0.000030785000000,0.000306934000000,0.000026059500000,0.000078984000000,0.000445995000000,0.000398588000000,0.000172218000000,0.010486877000000,0.000222785000000,0.000172218000000,0.010827814000000,0.000046984000000,0.000039872000000 +0.000037502000000,0.000142983000000,0.000105847000000,0.000027047000000,0.000363823000000,0.000037107000000,0.000191971000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000404514000000,0.000394242000000,0.000172613000000,0.010425246000000,0.000186835000000,0.000244119000000,0.010855468000000,0.000046588000000,0.000041057000000 +0.000038292000000,0.000143774000000,0.000103873000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000236613000000,0.000030786000000,0.000310884000000,0.000025862000000,0.000039477000000,0.000412810000000,0.000377254000000,0.000219625000000,0.010778432000000,0.000189995000000,0.000173798000000,0.011020209000000,0.000046588000000,0.000076217000000 +0.000037897000000,0.000142194000000,0.000127971000000,0.000027047500000,0.000323921000000,0.000037502000000,0.000185650000000,0.000030390000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000397007000000,0.000400564000000,0.000173008000000,0.011125691000000,0.000187230000000,0.000172613000000,0.011500604000000,0.000058440000000,0.000042637000000 +0.000037502000000,0.000176169000000,0.000074243000000,0.000027442000000,0.000323922000000,0.000038292000000,0.000186440000000,0.000030786000000,0.000307329000000,0.000025862000000,0.000039082000000,0.000404119000000,0.000374884000000,0.000171822000000,0.010650431000000,0.000348810000000,0.000174193000000,0.010762629000000,0.000046983000000,0.000041847000000 +0.000037107000000,0.000139822000000,0.000055280000000,0.000027245000000,0.000380416000000,0.000037502000000,0.000189600000000,0.000030786000000,0.000308514000000,0.000026454500000,0.000039478000000,0.000823279000000,0.000515526000000,0.000170638000000,0.010926975000000,0.000376859000000,0.000173798000000,0.010942382000000,0.000047378000000,0.000041453000000 +0.000111773000000,0.000141008000000,0.000038291000000,0.000027047500000,0.000490638000000,0.000037897000000,0.000225156000000,0.000085699000000,0.000308119000000,0.000044034500000,0.000039082000000,0.000522637000000,0.000630094000000,0.000174588000000,0.010992555000000,0.000238193000000,0.000255971000000,0.011179418000000,0.000047378000000,0.000043033000000 +0.000059230000000,0.000144563000000,0.000050144000000,0.000027244500000,0.000324317000000,0.000037107000000,0.000187230000000,0.000046194000000,0.000307329000000,0.000026454500000,0.000039082000000,0.000624168000000,0.000457057000000,0.000176959000000,0.010894184000000,0.000236613000000,0.000172613000000,0.011254876000000,0.000046983000000,0.000041847000000 +0.000108218000000,0.000142588000000,0.000036316000000,0.000027442000000,0.000324317000000,0.000037106000000,0.000187230000000,0.000049354000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000405700000000,0.000374094000000,0.000171823000000,0.010783568000000,0.000189205000000,0.000175378000000,0.010896555000000,0.000046984000000,0.000041847000000 +0.000040663000000,0.000144564000000,0.000036317000000,0.000027047500000,0.000395823000000,0.000037502000000,0.000188811000000,0.000032761000000,0.000309699000000,0.000026059500000,0.000039477000000,0.000398193000000,0.000459032000000,0.000173008000000,0.010576950000000,0.000188415000000,0.000173402000000,0.011111863000000,0.000047773000000,0.000040663000000 +0.000067132000000,0.000161946000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037502000000,0.000223576000000,0.000031971000000,0.000305748000000,0.000026059500000,0.000039872000000,0.000398193000000,0.000367773000000,0.000171428000000,0.010785148000000,0.000224761000000,0.000174193000000,0.010711666000000,0.000046984000000,0.000042242000000 +0.000039872000000,0.000143379000000,0.000077403000000,0.000027244500000,0.000327082000000,0.000037501000000,0.000188810000000,0.000043823000000,0.000308118000000,0.000025862000000,0.000039477000000,0.000402143000000,0.000415181000000,0.000172613000000,0.010616852000000,0.000188021000000,0.000337748000000,0.011573690000000,0.000047378000000,0.000040662000000 +0.000040662000000,0.000144564000000,0.000036712000000,0.000027047500000,0.000447180000000,0.000037107000000,0.000187626000000,0.000030391000000,0.000448366000000,0.000026059500000,0.000039083000000,0.000398588000000,0.000374094000000,0.000175378000000,0.010669790000000,0.000189206000000,0.000299427000000,0.011568949000000,0.000046983000000,0.000041848000000 +0.000037897000000,0.000140218000000,0.000036316000000,0.000027442500000,0.000355526000000,0.000036712000000,0.000189206000000,0.000030786000000,0.000309699000000,0.000025862000000,0.000039872000000,0.000399378000000,0.000367773000000,0.000178143000000,0.010618037000000,0.000187625000000,0.000175773000000,0.010870876000000,0.000046984000000,0.000041057000000 +0.000037897000000,0.000142194000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037897000000,0.000280465000000,0.000030391000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000402539000000,0.000463378000000,0.000172218000000,0.010500308000000,0.000227131000000,0.000220810000000,0.013483417000000,0.000046983000000,0.000041453000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000045220000000,0.000415575000000,0.000037106000000,0.000189996000000,0.000030391000000,0.000307723000000,0.000026257000000,0.000039477000000,0.000399378000000,0.000379625000000,0.000171428000000,0.010721543000000,0.000190786000000,0.000174193000000,0.011009543000000,0.000046983000000,0.000040662000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000325106000000,0.000037107000000,0.000280069000000,0.000030391000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000396612000000,0.000406885000000,0.000171822000000,0.010650037000000,0.000190391000000,0.000172613000000,0.011748307000000,0.000046193000000,0.000041057000000 +0.000037502000000,0.000189601000000,0.000036317000000,0.000027245000000,0.000360662000000,0.000037107000000,0.000186440000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000039872000000,0.000496168000000,0.000381600000000,0.000173403000000,0.010591963000000,0.000187230000000,0.000173008000000,0.012107418000000,0.000046983000000,0.000042243000000 +0.000038292000000,0.000186835000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037897000000,0.000259131000000,0.000030390000000,0.000345254000000,0.000025862000000,0.000039478000000,0.000390292000000,0.000379625000000,0.000171823000000,0.010584851000000,0.000259921000000,0.000174193000000,0.011126481000000,0.000063971000000,0.000041057000000 +0.000037502000000,0.000143773000000,0.000036712000000,0.000027047000000,0.000323921000000,0.000073057000000,0.000189206000000,0.000030391000000,0.000308514000000,0.000026257000000,0.000058835000000,0.000391477000000,0.000738736000000,0.000171823000000,0.010604999000000,0.000189600000000,0.000246884000000,0.011180999000000,0.000118094000000,0.000039872000000 +0.000038687000000,0.000139822000000,0.000036316000000,0.000027047500000,0.000323131000000,0.000037897000000,0.000187625000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000055279000000,0.000397798000000,0.000423872000000,0.000171822000000,0.010571024000000,0.000187230000000,0.000173403000000,0.011513641000000,0.000081749000000,0.000041452000000 +0.000038292000000,0.000144959000000,0.000036317000000,0.000027245000000,0.000323922000000,0.000037502000000,0.000188415000000,0.000030785000000,0.000359872000000,0.000026850000000,0.000039478000000,0.000399378000000,0.000369353000000,0.000170637000000,0.011274234000000,0.000189996000000,0.000173008000000,0.011232752000000,0.000046193000000,0.000041847000000 +0.000074242000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000325502000000,0.000037107000000,0.000318786000000,0.000030391000000,0.000308119000000,0.000036331000000,0.000039477000000,0.000391477000000,0.000376465000000,0.000174193000000,0.010506234000000,0.000227131000000,0.000173798000000,0.010686383000000,0.000046984000000,0.000041453000000 +0.000038292000000,0.000179329000000,0.000036316000000,0.000027244500000,0.000372119000000,0.000037107000000,0.000187626000000,0.000032366000000,0.000312464000000,0.000041862000000,0.000039872000000,0.000387526000000,0.000402934000000,0.000297057000000,0.010777246000000,0.000188810000000,0.000172613000000,0.011048259000000,0.000046983000000,0.000041057000000 +0.000037897000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000323921000000,0.000037897000000,0.000188810000000,0.000030786000000,0.000360662000000,0.000033565500000,0.000039477000000,0.000395427000000,0.000372119000000,0.000184464000000,0.011411320000000,0.000187626000000,0.000259921000000,0.011394727000000,0.000047379000000,0.000041058000000 +0.000039082000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000038687000000,0.000225551000000,0.000031181000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000394638000000,0.000457847000000,0.000171033000000,0.010345049000000,0.000189205000000,0.000173008000000,0.010948704000000,0.000046588000000,0.000041057000000 +0.000037897000000,0.000143378000000,0.000036712000000,0.000027244500000,0.000325896000000,0.000037897000000,0.000186835000000,0.000050144000000,0.000306538000000,0.000026059500000,0.000039082000000,0.000436909000000,0.000374489000000,0.000171428000000,0.010490037000000,0.000223576000000,0.000171033000000,0.010795024000000,0.000047378000000,0.000041452000000 +0.000037502000000,0.000144958000000,0.000036711000000,0.000027245000000,0.000325501000000,0.000038292000000,0.000188416000000,0.000030391000000,0.000350390000000,0.000026652000000,0.000039477000000,0.000407674000000,0.000412020000000,0.000174194000000,0.010666234000000,0.000189996000000,0.000171428000000,0.011049839000000,0.000046193000000,0.000040268000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027837500000,0.000322736000000,0.000037502000000,0.000190786000000,0.000030391000000,0.000306934000000,0.000026257000000,0.000039477000000,0.000393848000000,0.000374884000000,0.000172218000000,0.010929740000000,0.000188811000000,0.000209353000000,0.011764505000000,0.000097946000000,0.000041057000000 +0.000037896000000,0.000191576000000,0.000036317000000,0.000027640000000,0.000362242000000,0.000037897000000,0.000221996000000,0.000030785000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000397008000000,0.000368959000000,0.000172613000000,0.010905641000000,0.000189206000000,0.000173798000000,0.010577345000000,0.000047379000000,0.000041058000000 +0.000038292000000,0.000141008000000,0.000036316000000,0.000027047500000,0.000322736000000,0.000037896000000,0.000191575000000,0.000030391000000,0.000346045000000,0.000026257500000,0.000039082000000,0.000396613000000,0.000406884000000,0.000172218000000,0.010636210000000,0.000257947000000,0.000173798000000,0.011102777000000,0.000046588000000,0.000041847000000 +0.000037107000000,0.000141798000000,0.000055675000000,0.000045220000000,0.000324712000000,0.000037502000000,0.000188020000000,0.000030391000000,0.000307724000000,0.000026849500000,0.000039477000000,0.000429402000000,0.000366983000000,0.000171033000000,0.010616456000000,0.000189206000000,0.000174193000000,0.010988999000000,0.000046983000000,0.000041847000000 +0.000037502000000,0.000141008000000,0.000036316000000,0.000027047000000,0.000325107000000,0.000037897000000,0.000274538000000,0.000030390000000,0.000308514000000,0.000026257000000,0.000039082000000,0.000390687000000,0.000479971000000,0.000172613000000,0.010578135000000,0.000186835000000,0.000171823000000,0.011529049000000,0.000046984000000,0.000042243000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000323922000000,0.000035921000000,0.000222390000000,0.000029996000000,0.000308514000000,0.000027047500000,0.000039478000000,0.000446785000000,0.000373304000000,0.000173008000000,0.011181395000000,0.000191181000000,0.000210144000000,0.010882333000000,0.000046983000000,0.000041058000000 +0.000037897000000,0.000142984000000,0.000036317000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000190786000000,0.000031181000000,0.000308118000000,0.000025862000000,0.000039477000000,0.000398193000000,0.000371329000000,0.000171033000000,0.010644111000000,0.000272168000000,0.000171427000000,0.011009937000000,0.000047379000000,0.000042637000000 +0.000037897000000,0.000185255000000,0.000036316000000,0.000027442500000,0.000360662000000,0.000038687000000,0.000187230000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000380415000000,0.000442835000000,0.000171428000000,0.010862185000000,0.000189205000000,0.000177353000000,0.010992950000000,0.000046588000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000035922000000,0.000027047000000,0.000323526000000,0.000037501000000,0.000185650000000,0.000030786000000,0.000345255000000,0.000025862000000,0.000039477000000,0.000531723000000,0.000445995000000,0.000175378000000,0.010445000000000,0.000190391000000,0.000173008000000,0.010968851000000,0.000082539000000,0.000041848000000 +0.000038687000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037502000000,0.000259527000000,0.000030785000000,0.000308118000000,0.000026454500000,0.000039477000000,0.000378439000000,0.000409650000000,0.000173402000000,0.011278974000000,0.000189601000000,0.000170638000000,0.011068407000000,0.000047773000000,0.000041847000000 +0.000037897000000,0.000140613000000,0.000036316000000,0.000027245000000,0.000323921000000,0.000037897000000,0.000189206000000,0.000030391000000,0.000307724000000,0.000044035000000,0.000039477000000,0.000420712000000,0.000371724000000,0.000171823000000,0.011215765000000,0.000222786000000,0.000214489000000,0.010835716000000,0.000046589000000,0.000041847000000 +0.000037107000000,0.000141403000000,0.000036711000000,0.000027244500000,0.000323921000000,0.000037897000000,0.000187231000000,0.000030786000000,0.000344860000000,0.000026454500000,0.000039873000000,0.000379625000000,0.000461008000000,0.000175379000000,0.011098036000000,0.000185650000000,0.000176169000000,0.010867320000000,0.000047378000000,0.000040268000000 +0.000038292000000,0.000139823000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000109008000000,0.000186835000000,0.000030390000000,0.000308118000000,0.000025862000000,0.000059231000000,0.000402934000000,0.000380415000000,0.000172613000000,0.010394432000000,0.000189206000000,0.000173403000000,0.011100011000000,0.000046984000000,0.000040267000000 +0.000037897000000,0.000216464000000,0.000036317000000,0.000027047500000,0.000381206000000,0.000037897000000,0.000223575000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000090835000000,0.000382785000000,0.000376070000000,0.000175378000000,0.010741691000000,0.000188811000000,0.000173008000000,0.011431863000000,0.000046983000000,0.000043033000000 +0.000037502000000,0.000405699000000,0.000036711000000,0.000027244500000,0.000324316000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000308909000000,0.000026455000000,0.000039082000000,0.000374094000000,0.000417551000000,0.000171823000000,0.010742876000000,0.000223181000000,0.000173403000000,0.011145839000000,0.000047773000000,0.000113354000000 +0.000038292000000,0.000261897000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000036712000000,0.000187230000000,0.000030390000000,0.000306143000000,0.000025862000000,0.000039082000000,0.000410439000000,0.000376464000000,0.000173403000000,0.010704160000000,0.000186835000000,0.000242934000000,0.010872457000000,0.000047378000000,0.000127971000000 +0.000074242000000,0.000178539000000,0.000036317000000,0.000027047500000,0.000325502000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000309304000000,0.000026059500000,0.000039477000000,0.000374884000000,0.000438095000000,0.000172218000000,0.010746827000000,0.000186835000000,0.000172613000000,0.011011123000000,0.000046983000000,0.000129947000000 +0.000038687000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000326292000000,0.000038292000000,0.000258341000000,0.000029996000000,0.000323921000000,0.000026059500000,0.000039082000000,0.000410835000000,0.000378835000000,0.000174193000000,0.010664259000000,0.000188416000000,0.000171822000000,0.011255666000000,0.000047378000000,0.000094786000000 +0.000037502000000,0.000140217000000,0.000036711000000,0.000027244500000,0.000322736000000,0.000037107000000,0.000190785000000,0.000030390000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000372514000000,0.000445995000000,0.000172612000000,0.010682037000000,0.000233453000000,0.000174588000000,0.010718382000000,0.000046983000000,0.000069897000000 +0.000038292000000,0.000144959000000,0.000036317000000,0.000045417500000,0.000624168000000,0.000037897000000,0.000189205000000,0.000030786000000,0.000310489000000,0.000025862000000,0.000039872000000,0.000376070000000,0.000365403000000,0.000171428000000,0.010473444000000,0.000187230000000,0.000172218000000,0.010978333000000,0.000046984000000,0.000041453000000 +0.000037897000000,0.000141008000000,0.000035922000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000189600000000,0.000030786000000,0.000443230000000,0.000026454500000,0.000039477000000,0.000386736000000,0.000375675000000,0.000171823000000,0.010524802000000,0.000186835000000,0.000222785000000,0.010909987000000,0.000046983000000,0.000053699000000 +0.000037897000000,0.000143774000000,0.000036316000000,0.000027047500000,0.000330242000000,0.000038292000000,0.000226341000000,0.000030390000000,0.000359477000000,0.000026652500000,0.000039872000000,0.000380415000000,0.000413995000000,0.000171822000000,0.010817148000000,0.000187230000000,0.000173008000000,0.011237098000000,0.000046589000000,0.000039872000000 +0.000037896000000,0.000143378000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000037502000000,0.000188415000000,0.000085699000000,0.000307724000000,0.000026652000000,0.000039477000000,0.000508810000000,0.000373699000000,0.000171428000000,0.011073147000000,0.000222391000000,0.000172613000000,0.010923419000000,0.000046983000000,0.000038292000000 +0.000037897000000,0.000213304000000,0.000035922000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000188415000000,0.000030785000000,0.000356317000000,0.000025862000000,0.000039478000000,0.000392662000000,0.000408860000000,0.000171033000000,0.010509789000000,0.000188811000000,0.000172613000000,0.011083814000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000072663000000,0.000027047500000,0.000360662000000,0.000037897000000,0.000187626000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000039872000000,0.000404513000000,0.000380020000000,0.000170638000000,0.010432358000000,0.000189206000000,0.000171428000000,0.011232752000000,0.000047379000000,0.000039082000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027245000000,0.000409650000000,0.000037897000000,0.000273749000000,0.000030391000000,0.000308119000000,0.000025664500000,0.000039477000000,0.000372119000000,0.000374490000000,0.000172217000000,0.010807271000000,0.000186835000000,0.000248070000000,0.011353641000000,0.000046983000000,0.000039478000000 +0.000037502000000,0.000141008000000,0.000036316000000,0.000027639500000,0.000324316000000,0.000037502000000,0.000187231000000,0.000029995000000,0.000358292000000,0.000036134000000,0.000039477000000,0.000372514000000,0.000595723000000,0.000172218000000,0.010552457000000,0.000228711000000,0.000173008000000,0.010854283000000,0.000104267000000,0.000039477000000 +0.000037501000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000324711000000,0.000037896000000,0.000190786000000,0.000030786000000,0.000310094000000,0.000025664500000,0.000039477000000,0.000419921000000,0.000412810000000,0.000174194000000,0.013238874000000,0.000188811000000,0.000172613000000,0.010768555000000,0.000047379000000,0.000088860000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037107000000,0.000187625000000,0.000030786000000,0.000305749000000,0.000026257000000,0.000039478000000,0.000383576000000,0.000371329000000,0.000173798000000,0.011694974000000,0.000190391000000,0.000173403000000,0.010812012000000,0.000047378000000,0.000071477000000 +0.000037897000000,0.000178538000000,0.000036316000000,0.000027244500000,0.000325501000000,0.000037107000000,0.000224366000000,0.000030786000000,0.000346440000000,0.000026850000000,0.000039477000000,0.000452316000000,0.000369353000000,0.000173008000000,0.011246579000000,0.000188021000000,0.000175378000000,0.011691023000000,0.000046588000000,0.000039083000000 +0.000037502000000,0.000141798000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037107000000,0.000189996000000,0.000031181000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000378044000000,0.000410045000000,0.000175774000000,0.012891615000000,0.000223576000000,0.000199477000000,0.011189296000000,0.000046589000000,0.000038292000000 +0.000039082000000,0.000142588000000,0.000036317000000,0.000027442500000,0.000325106000000,0.000091625000000,0.000189995000000,0.000030390000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000422687000000,0.000365798000000,0.000173403000000,0.011437394000000,0.000187231000000,0.000174588000000,0.011019814000000,0.000046983000000,0.000038292000000 +0.000037502000000,0.000144168000000,0.000037106000000,0.000027837000000,0.000325501000000,0.000037502000000,0.000186835000000,0.000031181000000,0.000344069000000,0.000026454500000,0.000039477000000,0.000372909000000,0.000406885000000,0.000173798000000,0.011188900000000,0.000240563000000,0.000173798000000,0.011384455000000,0.000046984000000,0.000038687000000 +0.000037501000000,0.000140613000000,0.000035921000000,0.000027245000000,0.000323131000000,0.000037107000000,0.000257946000000,0.000030391000000,0.000308514000000,0.000027442500000,0.000066736000000,0.000377254000000,0.000367378000000,0.000172612000000,0.011284505000000,0.000189995000000,0.000174193000000,0.011251715000000,0.000047378000000,0.000039082000000 +0.000037897000000,0.000142983000000,0.000036712000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000189600000000,0.000030786000000,0.000306934000000,0.000025862000000,0.000039477000000,0.000415971000000,0.000372514000000,0.000173008000000,0.011127271000000,0.000223181000000,0.000209354000000,0.010980703000000,0.000046983000000,0.000039477000000 +0.000037897000000,0.000212119000000,0.000036317000000,0.000046602500000,0.000324711000000,0.000037897000000,0.000189205000000,0.000031971000000,0.000346440000000,0.000026257000000,0.000039082000000,0.000376070000000,0.000410045000000,0.000173798000000,0.011572900000000,0.000188021000000,0.000174984000000,0.010872456000000,0.000047379000000,0.000040267000000 +0.000037897000000,0.000142983000000,0.000035921000000,0.000061812500000,0.000323526000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000361847000000,0.000025862000000,0.000039477000000,0.000403724000000,0.000367773000000,0.000173403000000,0.011103173000000,0.000189996000000,0.000173008000000,0.011342974000000,0.000046983000000,0.000040267000000 +0.000037897000000,0.000144959000000,0.000036316000000,0.000037121000000,0.000323921000000,0.000037897000000,0.000227131000000,0.000031971000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000380415000000,0.000444020000000,0.000171032000000,0.011217344000000,0.000189601000000,0.000174193000000,0.011049048000000,0.000046589000000,0.000037897000000 +0.000080563000000,0.000142588000000,0.000035922000000,0.000034948500000,0.000325107000000,0.000037501000000,0.000186440000000,0.000034341000000,0.000345650000000,0.000025862000000,0.000039082000000,0.000388316000000,0.000387131000000,0.000172218000000,0.011145838000000,0.000283626000000,0.000174984000000,0.010886283000000,0.000046983000000,0.000040267000000 +0.000037502000000,0.000140612000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000187625000000,0.000030785000000,0.000305749000000,0.000025862000000,0.000039477000000,0.000411230000000,0.000513156000000,0.000171428000000,0.011367073000000,0.000465354000000,0.000210144000000,0.010679271000000,0.000047378000000,0.000038292000000 +0.000038687000000,0.000144959000000,0.000036316000000,0.000027244500000,0.000323526000000,0.000037897000000,0.000272958000000,0.000030786000000,0.000310095000000,0.000026257000000,0.000039477000000,0.000483921000000,0.000377650000000,0.000173798000000,0.011078678000000,0.000204218000000,0.000174984000000,0.010917888000000,0.000046984000000,0.000039082000000 +0.000038687000000,0.000213304000000,0.000036712000000,0.000027047500000,0.000323527000000,0.000056465000000,0.000344860000000,0.000031181000000,0.000345255000000,0.000025862000000,0.000039082000000,0.000400563000000,0.000372119000000,0.000216860000000,0.011028901000000,0.000187230000000,0.000172218000000,0.010999271000000,0.000046588000000,0.000040268000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000323132000000,0.000039477000000,0.000187625000000,0.000030786000000,0.000308514000000,0.000026849500000,0.000039477000000,0.000375675000000,0.000408860000000,0.000172613000000,0.010800951000000,0.000189600000000,0.000171427000000,0.011500999000000,0.000047379000000,0.000038292000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000039478000000,0.000186835000000,0.000029996000000,0.000308514000000,0.000043837500000,0.000039477000000,0.000418341000000,0.000374884000000,0.000173403000000,0.011476111000000,0.000187230000000,0.000171822000000,0.010836506000000,0.000047378000000,0.000038687000000 +0.000037106000000,0.000144168000000,0.000036316000000,0.000027245000000,0.000325501000000,0.000051329000000,0.000238983000000,0.000050143000000,0.000397798000000,0.000025862000000,0.000039872000000,0.000382391000000,0.000417156000000,0.000170638000000,0.011371419000000,0.000191181000000,0.000210539000000,0.011431073000000,0.000046984000000,0.000039082000000 +0.000038292000000,0.000141008000000,0.000053304000000,0.000027047500000,0.000323921000000,0.000037106000000,0.000188020000000,0.000062786000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000375674000000,0.000369749000000,0.000216069000000,0.010639765000000,0.000188811000000,0.000173798000000,0.010836901000000,0.000046588000000,0.000039082000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000035922000000,0.000189600000000,0.000029996000000,0.000307724000000,0.000026257500000,0.000039083000000,0.000473650000000,0.000385551000000,0.000174193000000,0.010913542000000,0.000188416000000,0.000173798000000,0.011194037000000,0.000046983000000,0.000075033000000 +0.000037897000000,0.000211724000000,0.000036317000000,0.000027047000000,0.000359872000000,0.000037107000000,0.000186440000000,0.000030390000000,0.000344860000000,0.000026257000000,0.000039477000000,0.000380020000000,0.000422292000000,0.000172218000000,0.011333493000000,0.000189996000000,0.000174193000000,0.010873246000000,0.000047379000000,0.000038687000000 +0.000037897000000,0.000153650000000,0.000036711000000,0.000027245000000,0.000323132000000,0.000038292000000,0.000225156000000,0.000030786000000,0.000307328000000,0.000026652000000,0.000039477000000,0.000411230000000,0.000376464000000,0.000174588000000,0.011023765000000,0.000188416000000,0.000175773000000,0.011090925000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000048183000000,0.000323131000000,0.000037502000000,0.000188810000000,0.000031181000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000377254000000,0.000459823000000,0.000171823000000,0.010925790000000,0.000276514000000,0.000209354000000,0.010935271000000,0.000046589000000,0.000039083000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000325501000000,0.000071872000000,0.000188415000000,0.000030391000000,0.000344860000000,0.000026454500000,0.000039477000000,0.000416366000000,0.000374489000000,0.000223576000000,0.011214185000000,0.000189205000000,0.000174193000000,0.011210629000000,0.000047378000000,0.000038687000000 +0.000037502000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000051725000000,0.000189995000000,0.000031971000000,0.000307723000000,0.000026060000000,0.000039477000000,0.000376070000000,0.000383971000000,0.000172217000000,0.011390776000000,0.000189995000000,0.000174983000000,0.011031666000000,0.000047379000000,0.000037897000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000326292000000,0.000038687000000,0.000226341000000,0.000030390000000,0.000306934000000,0.000026059500000,0.000039477000000,0.000373304000000,0.000366983000000,0.000173008000000,0.010772110000000,0.000189205000000,0.000172218000000,0.011000456000000,0.000046983000000,0.000039477000000 +0.000037502000000,0.000179329000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000037502000000,0.000187625000000,0.000030786000000,0.000344465000000,0.000025862000000,0.000058836000000,0.000418341000000,0.000372514000000,0.000176563000000,0.011094086000000,0.000188811000000,0.000173008000000,0.011275419000000,0.000046588000000,0.000038687000000 +0.000037896000000,0.000142983000000,0.000037502000000,0.000027047000000,0.000323527000000,0.000037897000000,0.000188020000000,0.000030786000000,0.000307329000000,0.000025862000000,0.000041057000000,0.000367773000000,0.000438094000000,0.000171427000000,0.011182185000000,0.000189206000000,0.000223971000000,0.010921049000000,0.000046984000000,0.000037502000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000036317000000,0.000187230000000,0.000031576000000,0.000308909000000,0.000026652000000,0.000072663000000,0.000414390000000,0.000374094000000,0.000173403000000,0.011391567000000,0.000186440000000,0.000172613000000,0.011128456000000,0.000046983000000,0.000040268000000 +0.000037897000000,0.000142983000000,0.000036712000000,0.000027047500000,0.000325502000000,0.000037107000000,0.000225156000000,0.000031576000000,0.000382391000000,0.000027047500000,0.000041848000000,0.000375279000000,0.000420317000000,0.000172217000000,0.010767370000000,0.000188020000000,0.000175773000000,0.011214580000000,0.000046983000000,0.000039477000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000028035000000,0.000323922000000,0.000037897000000,0.000187626000000,0.000030786000000,0.000308514000000,0.000026652000000,0.000052909000000,0.000376464000000,0.000380415000000,0.000171428000000,0.011003617000000,0.000186835000000,0.000172218000000,0.010879567000000,0.000046588000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000036316000000,0.000027047000000,0.000324712000000,0.000037897000000,0.000186440000000,0.000030786000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000404514000000,0.000371724000000,0.000170638000000,0.010771716000000,0.000189996000000,0.000178143000000,0.011739616000000,0.000047378000000,0.000040267000000 +0.000037897000000,0.000214094000000,0.000035922000000,0.000027047500000,0.000324712000000,0.000037107000000,0.000190390000000,0.000030390000000,0.000344860000000,0.000047590500000,0.000039872000000,0.000366193000000,0.000411625000000,0.000174983000000,0.011035616000000,0.000188415000000,0.000209749000000,0.011558283000000,0.000046589000000,0.000038687000000 +0.000071082000000,0.000144168000000,0.000037107000000,0.000027244500000,0.000323527000000,0.000037502000000,0.000223576000000,0.000029996000000,0.000306934000000,0.000032973000000,0.000039082000000,0.000414786000000,0.000365403000000,0.000174984000000,0.011416456000000,0.000189600000000,0.000193156000000,0.010856654000000,0.000046983000000,0.000039082000000 +0.000039477000000,0.000144564000000,0.000036317000000,0.000027047000000,0.000323922000000,0.000037502000000,0.000188415000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000370144000000,0.000413601000000,0.000173798000000,0.011105938000000,0.000227131000000,0.000204218000000,0.010791864000000,0.000047379000000,0.000040267000000 +0.000038292000000,0.000146143000000,0.000037107000000,0.000027047500000,0.000324316000000,0.000036711000000,0.000186835000000,0.000030785000000,0.000345650000000,0.000025862000000,0.000039478000000,0.000378045000000,0.000371328000000,0.000171823000000,0.010878777000000,0.000188415000000,0.000173798000000,0.010815173000000,0.000046588000000,0.000039873000000 +0.000039082000000,0.000143774000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037897000000,0.000189600000000,0.000030391000000,0.000307724000000,0.000026849500000,0.000039872000000,0.000419131000000,0.000370538000000,0.000177749000000,0.011223666000000,0.000187230000000,0.000208958000000,0.011413690000000,0.000046983000000,0.000039872000000 +0.000037896000000,0.000144959000000,0.000036317000000,0.000027244500000,0.000380810000000,0.000037107000000,0.000223576000000,0.000031181000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000371724000000,0.000404119000000,0.000172217000000,0.011154135000000,0.000187626000000,0.000173798000000,0.011309789000000,0.000046983000000,0.000038292000000 +0.000038687000000,0.000178144000000,0.000072267000000,0.000045417500000,0.000330637000000,0.000037897000000,0.000190786000000,0.000030390000000,0.000577156000000,0.000025862000000,0.000039082000000,0.000555427000000,0.000374094000000,0.000172613000000,0.011215765000000,0.000223181000000,0.000173798000000,0.010951468000000,0.000047773000000,0.000039477000000 +0.000037502000000,0.000145748000000,0.000036316000000,0.000027245000000,0.000324711000000,0.000039477000000,0.000187625000000,0.000030786000000,0.000323131000000,0.000026257500000,0.000039477000000,0.000433353000000,0.000413995000000,0.000171823000000,0.010910382000000,0.000186836000000,0.000172613000000,0.011057345000000,0.000046984000000,0.000039082000000 +0.000037502000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000038687000000,0.000186835000000,0.000069107000000,0.000306934000000,0.000026652000000,0.000039477000000,0.000903477000000,0.000374489000000,0.000171427000000,0.011369839000000,0.000189601000000,0.000173008000000,0.011057741000000,0.000046983000000,0.000074637000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000037897000000,0.000222785000000,0.000057255000000,0.000308514000000,0.000026849500000,0.000039082000000,0.000773897000000,0.000373700000000,0.000172613000000,0.011315715000000,0.000186045000000,0.000209749000000,0.010966086000000,0.000046193000000,0.000039477000000 +0.000038292000000,0.000186835000000,0.000035527000000,0.000027244500000,0.000325501000000,0.000037107000000,0.000189995000000,0.000030786000000,0.000307329000000,0.000026257500000,0.000039477000000,0.000700019000000,0.000414390000000,0.000171823000000,0.010796999000000,0.000261896000000,0.000171032000000,0.010859814000000,0.000046588000000,0.000037897000000 +0.000037896000000,0.000142983000000,0.000035921000000,0.000027047500000,0.000323526000000,0.000071477000000,0.000188415000000,0.000032366000000,0.000308118000000,0.000026454500000,0.000039477000000,0.000393847000000,0.000365008000000,0.000173403000000,0.011124506000000,0.000189996000000,0.000171823000000,0.011192851000000,0.000046588000000,0.000039477000000 +0.000037502000000,0.000163131000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000040267000000,0.000189995000000,0.000031181000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000466538000000,0.000498144000000,0.000174193000000,0.011329937000000,0.000188416000000,0.000178144000000,0.011417641000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000197107000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037897000000,0.000209353000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000404514000000,0.000373699000000,0.000172613000000,0.011417245000000,0.000187230000000,0.000171428000000,0.010977542000000,0.000047379000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000035922000000,0.000190390000000,0.000030786000000,0.000309304000000,0.000026257000000,0.000075428000000,0.000462983000000,0.000463378000000,0.000172217000000,0.010999271000000,0.000265847000000,0.000210143000000,0.010765394000000,0.000046588000000,0.000039477000000 +0.000037897000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000324711000000,0.000037107000000,0.000188415000000,0.000030391000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000397403000000,0.000403723000000,0.000171033000000,0.011500999000000,0.000189205000000,0.000178144000000,0.012814973000000,0.000046984000000,0.000038292000000 +0.000037897000000,0.000142983000000,0.000035922000000,0.000027244500000,0.000325106000000,0.000037501000000,0.000190390000000,0.000031180000000,0.000341304000000,0.000044232500000,0.000039477000000,0.000401749000000,0.000407674000000,0.000173403000000,0.011109098000000,0.000188020000000,0.000171823000000,0.011159271000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000055280000000,0.000027442000000,0.000323921000000,0.000037502000000,0.000189600000000,0.000030391000000,0.000340909000000,0.000026454500000,0.000039872000000,0.000440464000000,0.000368169000000,0.000173403000000,0.011237493000000,0.000187626000000,0.000173008000000,0.011231172000000,0.000047378000000,0.000039082000000 +0.000037502000000,0.000178539000000,0.000038292000000,0.000027047500000,0.000452316000000,0.000037502000000,0.000189205000000,0.000030391000000,0.000307329000000,0.000026060000000,0.000039478000000,0.000405699000000,0.000380415000000,0.000173798000000,0.010850728000000,0.000258341000000,0.000174193000000,0.011492703000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000145354000000,0.000038687000000,0.000027047500000,0.000338933000000,0.000038292000000,0.000189995000000,0.000030786000000,0.000308909000000,0.000026454500000,0.000039082000000,0.000449551000000,0.000457452000000,0.000172613000000,0.011288455000000,0.000188415000000,0.000298243000000,0.012132703000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000142193000000,0.000050144000000,0.000027244500000,0.000323526000000,0.000036316000000,0.000189600000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000374094000000,0.000370144000000,0.000172218000000,0.010983469000000,0.000187625000000,0.000191181000000,0.011534184000000,0.000047774000000,0.000039082000000 +0.000038292000000,0.000143378000000,0.000037107000000,0.000027442500000,0.000325896000000,0.000037897000000,0.000186835000000,0.000030390000000,0.000308514000000,0.000026059500000,0.000039872000000,0.000458637000000,0.000411625000000,0.000173798000000,0.010930530000000,0.000189205000000,0.000172217000000,0.011589492000000,0.000047773000000,0.000039872000000 +0.000037896000000,0.000144958000000,0.000036316000000,0.000036924000000,0.000324711000000,0.000036712000000,0.000204218000000,0.000032366000000,0.000306934000000,0.000026454500000,0.000039477000000,0.000375675000000,0.000372119000000,0.000178144000000,0.010989789000000,0.000189996000000,0.000174193000000,0.011148209000000,0.000046984000000,0.000039478000000 +0.000074638000000,0.000141008000000,0.000036317000000,0.000035343500000,0.000322341000000,0.000036711000000,0.000188020000000,0.000031180000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000412810000000,0.000370934000000,0.000172217000000,0.011041938000000,0.000187626000000,0.000244909000000,0.010949493000000,0.000046983000000,0.000039477000000 +0.000037897000000,0.000226736000000,0.000036317000000,0.000027639500000,0.000323526000000,0.000037502000000,0.000189601000000,0.000030391000000,0.000308119000000,0.000026257000000,0.000039478000000,0.000375279000000,0.000442834000000,0.000171823000000,0.011161641000000,0.000223181000000,0.000173798000000,0.010952259000000,0.000047378000000,0.000039477000000 +0.000037502000000,0.000145354000000,0.000036711000000,0.000027047500000,0.000324712000000,0.000037107000000,0.000208564000000,0.000030786000000,0.000308119000000,0.000026652500000,0.000039872000000,0.000370144000000,0.000372909000000,0.000171428000000,0.010843617000000,0.000225551000000,0.000173008000000,0.010802135000000,0.000046983000000,0.000039082000000 +0.000037501000000,0.000140217000000,0.000049749000000,0.000027245000000,0.000322737000000,0.000037897000000,0.000187625000000,0.000030785000000,0.000307724000000,0.000025664500000,0.000039872000000,0.000871477000000,0.000423872000000,0.000171427000000,0.010990974000000,0.000189996000000,0.000171823000000,0.011029691000000,0.000047773000000,0.000038688000000 +0.000039082000000,0.000142193000000,0.000035921000000,0.000027244500000,0.000325107000000,0.000038291000000,0.000187230000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000437304000000,0.000365798000000,0.000172613000000,0.011169147000000,0.000187230000000,0.000174983000000,0.010998876000000,0.000046984000000,0.000038687000000 +0.000038292000000,0.000144564000000,0.000036711000000,0.000027047000000,0.000322736000000,0.000037502000000,0.000188811000000,0.000031181000000,0.000308909000000,0.000026454500000,0.000039082000000,0.000380416000000,0.000395032000000,0.000172613000000,0.010996901000000,0.000186045000000,0.000210144000000,0.011042728000000,0.000047378000000,0.000038687000000 +0.000037897000000,0.000142194000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000188415000000,0.000030786000000,0.000307723000000,0.000026257000000,0.000039872000000,0.000402538000000,0.000418736000000,0.000171427000000,0.011187715000000,0.000234242000000,0.000173008000000,0.011394727000000,0.000046983000000,0.000091230000000 +0.000038687000000,0.000288366000000,0.000036317000000,0.000027047000000,0.000361847000000,0.000037502000000,0.000187230000000,0.000049749000000,0.000350390000000,0.000025862000000,0.000039083000000,0.000372909000000,0.000372909000000,0.000171823000000,0.011549591000000,0.000186045000000,0.000173402000000,0.010958185000000,0.000046983000000,0.000039477000000 +0.000037502000000,0.000154835000000,0.000035921000000,0.000027047000000,0.000324316000000,0.000037897000000,0.000188811000000,0.000029996000000,0.000307724000000,0.000026455000000,0.000039477000000,0.000372909000000,0.000401748000000,0.000174983000000,0.010897740000000,0.000189601000000,0.000172613000000,0.010894580000000,0.000047378000000,0.000039082000000 +0.000037502000000,0.000143774000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000054490000000,0.000188020000000,0.000030390000000,0.000309305000000,0.000044430000000,0.000039082000000,0.000419921000000,0.000362638000000,0.000173008000000,0.010977148000000,0.000187230000000,0.000172613000000,0.010917888000000,0.000046984000000,0.000038687000000 +0.000039083000000,0.000141008000000,0.000035527000000,0.000027047500000,0.000447575000000,0.000050934000000,0.000188810000000,0.000031181000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000383180000000,0.000446785000000,0.000171033000000,0.011241838000000,0.000206588000000,0.000244514000000,0.011123716000000,0.000046983000000,0.000040267000000 +0.000037897000000,0.000144564000000,0.000035922000000,0.000027442000000,0.000324316000000,0.000036712000000,0.000240564000000,0.000030391000000,0.000305748000000,0.000026454500000,0.000039477000000,0.000407279000000,0.000370934000000,0.000173008000000,0.011278184000000,0.000186440000000,0.000174193000000,0.011219715000000,0.000047379000000,0.000038292000000 +0.000037502000000,0.000254390000000,0.000036316000000,0.000027047500000,0.000324316000000,0.000038292000000,0.000186440000000,0.000031181000000,0.000309304000000,0.000025862000000,0.000081354000000,0.000376860000000,0.000363823000000,0.000173403000000,0.010833345000000,0.000188810000000,0.000171032000000,0.010803321000000,0.000046983000000,0.000038291000000 +0.000038292000000,0.000367379000000,0.000036316000000,0.000027245000000,0.000321946000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000344070000000,0.000026257000000,0.000066342000000,0.000372909000000,0.000422292000000,0.000171427000000,0.011209443000000,0.000188810000000,0.000171428000000,0.010958185000000,0.000047379000000,0.000039477000000 +0.000037897000000,0.000197897000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000035922000000,0.000190785000000,0.000030390000000,0.000308514000000,0.000026257000000,0.000039872000000,0.000426637000000,0.000373304000000,0.000291527000000,0.010966876000000,0.000190786000000,0.000178539000000,0.011012308000000,0.000047378000000,0.000038292000000 +0.000037897000000,0.000157601000000,0.000036317000000,0.000027244500000,0.000324316000000,0.000036317000000,0.000186835000000,0.000030391000000,0.000305748000000,0.000025862000000,0.000039477000000,0.000399773000000,0.000450736000000,0.000171033000000,0.011348900000000,0.000189601000000,0.000224366000000,0.010777641000000,0.000046983000000,0.000038292000000 +0.000037501000000,0.000179724000000,0.000036316000000,0.000035738500000,0.000323131000000,0.000037502000000,0.000188416000000,0.000030786000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000485106000000,0.000376465000000,0.000172218000000,0.010701000000000,0.000189995000000,0.000173798000000,0.011020210000000,0.000047379000000,0.000038687000000 +0.000037897000000,0.000150095000000,0.000036712000000,0.000027442500000,0.000323527000000,0.000037501000000,0.000186835000000,0.000029995000000,0.000307724000000,0.000025862000000,0.000039478000000,0.000681451000000,0.000392267000000,0.000172613000000,0.011752258000000,0.000187625000000,0.000173799000000,0.011031666000000,0.000047773000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000361847000000,0.000037502000000,0.000186835000000,0.000029996000000,0.000308514000000,0.000025862000000,0.000039872000000,0.000391477000000,0.000383576000000,0.000171823000000,0.011455172000000,0.000187230000000,0.000171033000000,0.011420406000000,0.000046983000000,0.000039477000000 +0.000038292000000,0.000143773000000,0.000036712000000,0.000027244500000,0.000325107000000,0.000037502000000,0.000188415000000,0.000031971000000,0.000344465000000,0.000025862000000,0.000039477000000,0.000404513000000,0.000372909000000,0.000173798000000,0.011638876000000,0.000188416000000,0.000170638000000,0.010667419000000,0.000046193000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000035921000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000189996000000,0.000030390000000,0.000310094000000,0.000025862000000,0.000039477000000,0.000414390000000,0.000634835000000,0.000172613000000,0.011193246000000,0.000188811000000,0.000215280000000,0.010802530000000,0.000047774000000,0.000037897000000 +0.000038292000000,0.000141798000000,0.000036317000000,0.000027047000000,0.000392267000000,0.000036711000000,0.000189996000000,0.000030786000000,0.000307724000000,0.000026454500000,0.000039082000000,0.000398983000000,0.000387131000000,0.000172218000000,0.011420012000000,0.000188811000000,0.000171823000000,0.011245394000000,0.000047378000000,0.000039872000000 +0.000073848000000,0.000177748000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000187625000000,0.000030390000000,0.000310094000000,0.000025862000000,0.000039477000000,0.000404514000000,0.000417946000000,0.000173798000000,0.011073938000000,0.000189601000000,0.000173798000000,0.011195222000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000141403000000,0.000071872000000,0.000027640000000,0.000324711000000,0.000035922000000,0.000204613000000,0.000031181000000,0.000307329000000,0.000025862000000,0.000039478000000,0.000386342000000,0.000367378000000,0.000211329000000,0.011414876000000,0.000186835000000,0.000172613000000,0.011145839000000,0.000046983000000,0.000039082000000 +0.000037501000000,0.000144168000000,0.000036712000000,0.000027244500000,0.000361847000000,0.000036712000000,0.000186835000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000398983000000,0.000410835000000,0.000171033000000,0.010700604000000,0.000188020000000,0.000175773000000,0.010847172000000,0.000046983000000,0.000038687000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000037502000000,0.000192366000000,0.000029995000000,0.000308909000000,0.000026652500000,0.000039872000000,0.000427823000000,0.000372514000000,0.000218439000000,0.010899320000000,0.000189996000000,0.000221206000000,0.010879567000000,0.000046984000000,0.000038687000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027442500000,0.000322736000000,0.000037897000000,0.000186835000000,0.000029996000000,0.000308909000000,0.000071096500000,0.000039477000000,0.000405304000000,0.000380020000000,0.000173007000000,0.010618036000000,0.000187230000000,0.000173008000000,0.011051815000000,0.000047378000000,0.000066736000000 +0.000037502000000,0.000142193000000,0.000035922000000,0.000027047000000,0.000331428000000,0.000036316000000,0.000208564000000,0.000029996000000,0.000308514000000,0.000045417500000,0.000039477000000,0.000398193000000,0.000409649000000,0.000171823000000,0.010768160000000,0.000205798000000,0.000174588000000,0.011262777000000,0.000047379000000,0.000038687000000 +0.000037502000000,0.000177749000000,0.000036316000000,0.000027442000000,0.000322736000000,0.000037897000000,0.000188021000000,0.000032366000000,0.000307329000000,0.000028035000000,0.000039477000000,0.000397798000000,0.000372119000000,0.000225551000000,0.011100407000000,0.000188415000000,0.000173008000000,0.010589197000000,0.000047378000000,0.000039477000000 +0.000038687000000,0.000141008000000,0.000036316000000,0.000027442500000,0.000326687000000,0.000073058000000,0.000192761000000,0.000033947000000,0.000344069000000,0.000028035000000,0.000039477000000,0.000448366000000,0.000414786000000,0.000174589000000,0.011270678000000,0.000187625000000,0.000208563000000,0.010829394000000,0.000046984000000,0.000037502000000 +0.000037502000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000505255000000,0.000038292000000,0.000187625000000,0.000033156000000,0.000309304000000,0.000032775500000,0.000039477000000,0.000397402000000,0.000375280000000,0.000171428000000,0.010800950000000,0.000188810000000,0.000171033000000,0.011125690000000,0.000046983000000,0.000039872000000 +0.000038292000000,0.000140613000000,0.000036316000000,0.000027244500000,0.000324317000000,0.000036712000000,0.000227132000000,0.000084909000000,0.000309699000000,0.000026257000000,0.000039872000000,0.000399378000000,0.000374489000000,0.000172612000000,0.011063666000000,0.000233847000000,0.000172613000000,0.011260802000000,0.000047378000000,0.000038292000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000045022500000,0.000323922000000,0.000037106000000,0.000187625000000,0.000032366000000,0.000308909000000,0.000026455000000,0.000075428000000,0.000404119000000,0.000417551000000,0.000172613000000,0.011307419000000,0.000190390000000,0.000173798000000,0.010796604000000,0.000047378000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000036712000000,0.000027047000000,0.000322341000000,0.000037107000000,0.000186835000000,0.000031181000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000398193000000,0.000374884000000,0.000189205000000,0.010731814000000,0.000191181000000,0.000173403000000,0.011226827000000,0.000047378000000,0.000038687000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000037502000000,0.000186836000000,0.000030391000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000397798000000,0.000451132000000,0.000174193000000,0.012041048000000,0.000190786000000,0.000220415000000,0.011081048000000,0.000047379000000,0.000039082000000 +0.000037502000000,0.000160365000000,0.000036316000000,0.000027442500000,0.000361452000000,0.000037502000000,0.000261107000000,0.000030785000000,0.000361057000000,0.000026059500000,0.000039477000000,0.000404909000000,0.000373699000000,0.000172613000000,0.011508110000000,0.000340119000000,0.000171823000000,0.011159666000000,0.000082539000000,0.000038687000000 +0.000038292000000,0.000142589000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000036711000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000039082000000,0.000426243000000,0.000408860000000,0.000173403000000,0.011623073000000,0.000190786000000,0.000174193000000,0.011042333000000,0.000046588000000,0.000039477000000 +0.000038292000000,0.000142984000000,0.000036317000000,0.000027047500000,0.000323922000000,0.000036712000000,0.000187230000000,0.000030786000000,0.000308513000000,0.000026652500000,0.000039477000000,0.000386736000000,0.000376859000000,0.000178539000000,0.011047073000000,0.000188811000000,0.000171823000000,0.010842826000000,0.000046984000000,0.000037897000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000027245000000,0.000325502000000,0.000037502000000,0.000189205000000,0.000030390000000,0.000309699000000,0.000026454500000,0.000039477000000,0.000374094000000,0.000370539000000,0.000171428000000,0.010937246000000,0.000260712000000,0.000173008000000,0.011436209000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000322737000000,0.000037107000000,0.000334588000000,0.000030786000000,0.000308514000000,0.000026849500000,0.000039477000000,0.000411625000000,0.000405699000000,0.000173402000000,0.012810627000000,0.000189600000000,0.000254390000000,0.011095666000000,0.000047379000000,0.000039477000000 +0.000037501000000,0.000144958000000,0.000036317000000,0.000027047000000,0.000323922000000,0.000037107000000,0.000188021000000,0.000030391000000,0.000307329000000,0.000044035000000,0.000039477000000,0.000368563000000,0.000364613000000,0.000173008000000,0.011284900000000,0.000188810000000,0.000174983000000,0.010778827000000,0.000047378000000,0.000038687000000 +0.000038292000000,0.000262292000000,0.000036317000000,0.000027047500000,0.000380415000000,0.000039082000000,0.000188415000000,0.000030390000000,0.000309305000000,0.000025862000000,0.000039477000000,0.000401749000000,0.000426242000000,0.000172217000000,0.011258036000000,0.000190785000000,0.000174588000000,0.010749987000000,0.000046588000000,0.000037501000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000027442000000,0.000324316000000,0.000037107000000,0.000222391000000,0.000033946000000,0.000308119000000,0.000026652000000,0.000039478000000,0.000378045000000,0.000370934000000,0.000171823000000,0.011410135000000,0.000247674000000,0.000215280000000,0.010750382000000,0.000046984000000,0.000039872000000 +0.000037897000000,0.000143773000000,0.000036316000000,0.000027640000000,0.000347230000000,0.000037107000000,0.000187626000000,0.000030391000000,0.000307723000000,0.000025862000000,0.000039872000000,0.000368958000000,0.000367773000000,0.000187231000000,0.010847962000000,0.000200267000000,0.000206983000000,0.011902777000000,0.000046983000000,0.000039082000000 +0.000073452000000,0.000141008000000,0.000086095000000,0.000027245000000,0.000343279000000,0.000037106000000,0.000189996000000,0.000030391000000,0.000419131000000,0.000026257500000,0.000039477000000,0.000427428000000,0.000452711000000,0.000171033000000,0.011105938000000,0.000201847000000,0.000173008000000,0.011307024000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000050144000000,0.000027047000000,0.000455477000000,0.000038292000000,0.000187230000000,0.000030390000000,0.000328662000000,0.000026454500000,0.000039872000000,0.000383576000000,0.000378835000000,0.000171428000000,0.011041148000000,0.000248465000000,0.000171823000000,0.011512456000000,0.000047378000000,0.000037502000000 +0.000038292000000,0.000140613000000,0.000035921000000,0.000027639500000,0.000361057000000,0.000039082000000,0.000223181000000,0.000031181000000,0.000307724000000,0.000026652000000,0.000039477000000,0.000407674000000,0.000416761000000,0.000172217000000,0.011257246000000,0.000229501000000,0.000171427000000,0.010891815000000,0.000046983000000,0.000057650000000 +0.000037897000000,0.000159970000000,0.000036317000000,0.000027245000000,0.000325502000000,0.000037897000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000466539000000,0.000374489000000,0.000173798000000,0.010918283000000,0.000188020000000,0.000171823000000,0.011122531000000,0.000046983000000,0.000056464000000 +0.000038292000000,0.000142193000000,0.000036317000000,0.000061220000000,0.000323921000000,0.000037897000000,0.000187625000000,0.000031971000000,0.000308119000000,0.000025862000000,0.000039478000000,0.000430983000000,0.000363823000000,0.000173008000000,0.011259221000000,0.000188415000000,0.000212119000000,0.010977147000000,0.000058045000000,0.000038687000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000034553000000,0.000323921000000,0.000037896000000,0.000188416000000,0.000030786000000,0.000307724000000,0.000026850000000,0.000039477000000,0.000443229000000,0.000433354000000,0.000171822000000,0.010998875000000,0.000188415000000,0.000173403000000,0.010970827000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000146144000000,0.000036316000000,0.000027442500000,0.000323131000000,0.000088465000000,0.000206983000000,0.000030786000000,0.000348415000000,0.000025862000000,0.000039477000000,0.000368563000000,0.000372909000000,0.000172218000000,0.010955814000000,0.000230687000000,0.000172613000000,0.010702580000000,0.000044218000000,0.000039872000000 +0.000038292000000,0.000142193000000,0.000035922000000,0.000027047000000,0.000322736000000,0.000039872000000,0.000186835000000,0.000030391000000,0.000308514000000,0.000027047000000,0.000039872000000,0.000408070000000,0.000417946000000,0.000175774000000,0.011226827000000,0.000188021000000,0.000173798000000,0.011391567000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000141403000000,0.000036712000000,0.000027047000000,0.000359082000000,0.000050934000000,0.000189601000000,0.000031180000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000478391000000,0.000415181000000,0.000192366000000,0.011414876000000,0.000190786000000,0.000173798000000,0.011403813000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000179329000000,0.000036316000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000187230000000,0.000066341000000,0.000309699000000,0.000025862000000,0.000136267000000,0.000560563000000,0.000454687000000,0.000480365000000,0.011969542000000,0.000208169000000,0.000253205000000,0.011125690000000,0.000080168000000,0.000038687000000 +0.000037897000000,0.000142984000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000038292000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000110588000000,0.000381205000000,0.000364612000000,0.000211724000000,0.011075123000000,0.000207378000000,0.000323526000000,0.010981098000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000143774000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037502000000,0.000201848000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000128366000000,0.000414786000000,0.000376859000000,0.000178933000000,0.011151370000000,0.000189600000000,0.000193946000000,0.011290826000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000027047000000,0.000323132000000,0.000035922000000,0.000193551000000,0.000030785000000,0.000308909000000,0.000066356000000,0.000107427000000,0.000374884000000,0.000373699000000,0.000172613000000,0.010920653000000,0.000188810000000,0.000172613000000,0.011222481000000,0.000043823000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000035921000000,0.000027442500000,0.000325107000000,0.000037502000000,0.000188415000000,0.000030391000000,0.000308909000000,0.000027837000000,0.000073452000000,0.000415575000000,0.000372909000000,0.000171823000000,0.011060901000000,0.000223181000000,0.000249255000000,0.011553542000000,0.000044613000000,0.000040267000000 +0.000037107000000,0.000143774000000,0.000036712000000,0.000027047000000,0.000360267000000,0.000038687000000,0.000224761000000,0.000031576000000,0.000309304000000,0.000033170500000,0.000071477000000,0.000367379000000,0.000425057000000,0.000174983000000,0.010724704000000,0.000187230000000,0.000171427000000,0.010951864000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000214094000000,0.000035922000000,0.000027047000000,0.000375279000000,0.000037897000000,0.000187230000000,0.000030786000000,0.000307724000000,0.000026454500000,0.000041847000000,0.000383576000000,0.000372909000000,0.000172218000000,0.010578926000000,0.000186045000000,0.000177748000000,0.011125296000000,0.000044613000000,0.000039477000000 +0.000038292000000,0.000142983000000,0.000035921000000,0.000027245000000,0.000322736000000,0.000036712000000,0.000187230000000,0.000029996000000,0.000307329000000,0.000026257000000,0.000041848000000,0.000444810000000,0.000408464000000,0.000173798000000,0.011213789000000,0.000187231000000,0.000172218000000,0.011275419000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000143773000000,0.000036317000000,0.000027047500000,0.000324711000000,0.000037501000000,0.000187230000000,0.000030786000000,0.000307328000000,0.000025862000000,0.000052909000000,0.000374489000000,0.000374489000000,0.000172218000000,0.011035221000000,0.000256366000000,0.000173403000000,0.010977938000000,0.000045008000000,0.000039478000000 +0.000037897000000,0.000140218000000,0.000035922000000,0.000027244500000,0.000323131000000,0.000038687000000,0.000186045000000,0.000029995000000,0.000346440000000,0.000025862000000,0.000039082000000,0.000410835000000,0.000373699000000,0.000170638000000,0.011258036000000,0.000188020000000,0.000237008000000,0.011055765000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000072663000000,0.000045220000000,0.000325502000000,0.000036317000000,0.000190391000000,0.000030391000000,0.000308119000000,0.000026455000000,0.000039477000000,0.000374884000000,0.000621798000000,0.000170638000000,0.010836901000000,0.000186835000000,0.000173403000000,0.011071962000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000184464000000,0.000036317000000,0.000027442000000,0.000408069000000,0.000036712000000,0.000236218000000,0.000030391000000,0.000306934000000,0.000026454500000,0.000075428000000,0.000558193000000,0.000364613000000,0.000172218000000,0.011030086000000,0.000189206000000,0.000171822000000,0.011881838000000,0.000044217000000,0.000038687000000 +0.000057650000000,0.000178934000000,0.000035921000000,0.000027047500000,0.000325106000000,0.000037106000000,0.000187230000000,0.000030390000000,0.000308909000000,0.000025664500000,0.000039872000000,0.000375674000000,0.000408464000000,0.000174193000000,0.011300703000000,0.000259527000000,0.000175378000000,0.010956210000000,0.000044612000000,0.000039478000000 +0.000073058000000,0.000142983000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000225551000000,0.000030786000000,0.000306143000000,0.000026059500000,0.000039477000000,0.000369749000000,0.000375675000000,0.000171427000000,0.010657937000000,0.000186835000000,0.000242933000000,0.011397097000000,0.000044218000000,0.000038687000000 +0.000086885000000,0.000141008000000,0.000036317000000,0.000027442000000,0.000325501000000,0.000037107000000,0.000186835000000,0.000030390000000,0.000307329000000,0.000026652000000,0.000039872000000,0.000396613000000,0.000410440000000,0.000171823000000,0.010864555000000,0.000193946000000,0.000185650000000,0.010916308000000,0.000044613000000,0.000082539000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000322736000000,0.000037107000000,0.000187625000000,0.000032761000000,0.000308119000000,0.000026652000000,0.000039478000000,0.000382786000000,0.000372119000000,0.000173008000000,0.011142678000000,0.000189601000000,0.000175378000000,0.010968456000000,0.000044218000000,0.000039477000000 +0.000038292000000,0.000142193000000,0.000036316000000,0.000027245000000,0.000323527000000,0.000073452000000,0.000186045000000,0.000030390000000,0.000309700000000,0.000026257000000,0.000039477000000,0.000415180000000,0.000374884000000,0.000171032000000,0.011241444000000,0.000226341000000,0.000173008000000,0.010808851000000,0.000044218000000,0.000040663000000 +0.000037502000000,0.000142193000000,0.000035921000000,0.000027047000000,0.000692514000000,0.000037501000000,0.000207378000000,0.000030391000000,0.000306934000000,0.000026059500000,0.000039477000000,0.000366588000000,0.000408465000000,0.000170242000000,0.010696259000000,0.000188020000000,0.000171428000000,0.010911172000000,0.000043823000000,0.000038687000000 +0.000037502000000,0.000246884000000,0.000035922000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000308119000000,0.000044430000000,0.000039477000000,0.000464168000000,0.000373699000000,0.000173798000000,0.010890629000000,0.000189600000000,0.000255971000000,0.011037196000000,0.000043823000000,0.000038292000000 +0.000037502000000,0.000145354000000,0.000037502000000,0.000027442500000,0.000322736000000,0.000037502000000,0.000188416000000,0.000030785000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000388317000000,0.000458242000000,0.000172612000000,0.010943567000000,0.000186835000000,0.000173007000000,0.011378925000000,0.000061205000000,0.000040662000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000323922000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000307329000000,0.000025862000000,0.000039082000000,0.000372514000000,0.000363823000000,0.000171033000000,0.011076703000000,0.000265847000000,0.000171428000000,0.011247370000000,0.000044217000000,0.000039478000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000037501000000,0.000225946000000,0.000030391000000,0.000310094000000,0.000026454500000,0.000039873000000,0.000419131000000,0.000392267000000,0.000171428000000,0.011384456000000,0.000190785000000,0.000173008000000,0.010751172000000,0.000043823000000,0.000039872000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000325502000000,0.000036316000000,0.000187625000000,0.000030785000000,0.000347230000000,0.000026850000000,0.000039872000000,0.000370933000000,0.000413205000000,0.000174193000000,0.011183369000000,0.000186835000000,0.000175773000000,0.011151369000000,0.000045008000000,0.000038292000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000038292000000,0.000190391000000,0.000030786000000,0.000359872000000,0.000026454500000,0.000039477000000,0.000468119000000,0.000371329000000,0.000173798000000,0.010712456000000,0.000189601000000,0.000209748000000,0.010902481000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000176168000000,0.000036316000000,0.000027047000000,0.000323527000000,0.000037897000000,0.000187230000000,0.000047774000000,0.000306934000000,0.000026059500000,0.000039872000000,0.000406094000000,0.000413205000000,0.000171823000000,0.010885098000000,0.000382786000000,0.000172217000000,0.011218925000000,0.000044613000000,0.000038687000000 +0.000037896000000,0.000142588000000,0.000036712000000,0.000027245000000,0.000323131000000,0.000037501000000,0.000221205000000,0.000030786000000,0.000358686000000,0.000025862000000,0.000039477000000,0.000459822000000,0.000364613000000,0.000171033000000,0.011596604000000,0.000314834000000,0.000173008000000,0.011102382000000,0.000045798000000,0.000038687000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000036924000000,0.000323921000000,0.000037502000000,0.000189600000000,0.000030391000000,0.000308514000000,0.000027442500000,0.000039478000000,0.000377254000000,0.000412415000000,0.000173403000000,0.011273444000000,0.000227527000000,0.000173798000000,0.010906432000000,0.000043823000000,0.000040267000000 +0.000037897000000,0.000143378000000,0.000035921000000,0.000027245000000,0.000323526000000,0.000037107000000,0.000189600000000,0.000030786000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000380416000000,0.000375675000000,0.000172613000000,0.010794629000000,0.000188416000000,0.000173403000000,0.011337049000000,0.000044613000000,0.000039873000000 +0.000037502000000,0.000145353000000,0.000035921000000,0.000027639500000,0.000323526000000,0.000037107000000,0.000187230000000,0.000030785000000,0.000310094000000,0.000026454500000,0.000039082000000,0.000445600000000,0.000378440000000,0.000173403000000,0.011326777000000,0.000189206000000,0.000240563000000,0.013158281000000,0.000045008000000,0.000038292000000 +0.000037502000000,0.000139823000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037501000000,0.000231477000000,0.000030391000000,0.000308119000000,0.000026455000000,0.000039082000000,0.000366588000000,0.000454291000000,0.000173008000000,0.011566184000000,0.000187230000000,0.000171427000000,0.011729739000000,0.000043823000000,0.000038687000000 +0.000038292000000,0.000178934000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000309304000000,0.000026257000000,0.000039082000000,0.000430192000000,0.000372908000000,0.000171823000000,0.011013493000000,0.000209749000000,0.000174193000000,0.010725494000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000144168000000,0.000071082000000,0.000027047000000,0.000324317000000,0.000037502000000,0.000188415000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000039872000000,0.000388711000000,0.000460217000000,0.000174193000000,0.011302678000000,0.000189205000000,0.000171428000000,0.012791665000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000143773000000,0.000050934000000,0.000027047000000,0.000323922000000,0.000037107000000,0.000188415000000,0.000030786000000,0.000308909000000,0.000026652000000,0.000075428000000,0.000456662000000,0.000363033000000,0.000172218000000,0.011764110000000,0.000189995000000,0.000233847000000,0.011679172000000,0.000044218000000,0.000039872000000 +0.000073847000000,0.000142193000000,0.000036317000000,0.000027442500000,0.000322341000000,0.000037106000000,0.000227922000000,0.000030391000000,0.000309305000000,0.000025862000000,0.000039477000000,0.000380811000000,0.000410440000000,0.000210143000000,0.011470579000000,0.000189205000000,0.000186440000000,0.011377740000000,0.000043823000000,0.000039872000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000360267000000,0.000037897000000,0.000471675000000,0.000029996000000,0.000308909000000,0.000026454500000,0.000039082000000,0.000364612000000,0.000368563000000,0.000173403000000,0.011087765000000,0.000208168000000,0.000174193000000,0.011128456000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000142588000000,0.000036711000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000205798000000,0.000030391000000,0.000306933000000,0.000053121500000,0.000039478000000,0.000412020000000,0.000374884000000,0.000171822000000,0.011361542000000,0.000189206000000,0.000173798000000,0.011279764000000,0.000043822000000,0.000067132000000 +0.000037897000000,0.000178539000000,0.000036317000000,0.000027047500000,0.000325501000000,0.000036712000000,0.000224366000000,0.000030390000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000370144000000,0.000402538000000,0.000173403000000,0.011376159000000,0.000189601000000,0.000173798000000,0.011685888000000,0.000043428000000,0.000038687000000 +0.000037897000000,0.000140218000000,0.000036317000000,0.000027047500000,0.000322736000000,0.000083724000000,0.000188810000000,0.000030391000000,0.000309699000000,0.000026257000000,0.000039477000000,0.000466538000000,0.000373699000000,0.000217649000000,0.011362333000000,0.000189206000000,0.000213304000000,0.011468604000000,0.000064366000000,0.000038292000000 +0.000037501000000,0.000140217000000,0.000036317000000,0.000027047000000,0.000322736000000,0.000036712000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000026454500000,0.000039872000000,0.000375675000000,0.000481945000000,0.000175378000000,0.010800950000000,0.000186835000000,0.000174193000000,0.010895370000000,0.000060416000000,0.000038687000000 +0.000037502000000,0.000141403000000,0.000037502000000,0.000027244500000,0.000324317000000,0.000037107000000,0.000188811000000,0.000030390000000,0.000307724000000,0.000026060000000,0.000039477000000,0.000411230000000,0.000422686000000,0.000172218000000,0.011371419000000,0.000188415000000,0.000174589000000,0.010873642000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000035541000000,0.000325107000000,0.000037107000000,0.000258341000000,0.000030391000000,0.000309304000000,0.000025862500000,0.000039477000000,0.000379625000000,0.000408860000000,0.000300218000000,0.010849148000000,0.000189205000000,0.000178539000000,0.011406974000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000144959000000,0.000036711000000,0.000035738500000,0.000325107000000,0.000037501000000,0.000186835000000,0.000030391000000,0.000308909000000,0.000026652000000,0.000039478000000,0.000374094000000,0.000383180000000,0.000174193000000,0.011583171000000,0.000189600000000,0.000172218000000,0.010891024000000,0.000044218000000,0.000037897000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000062800500000,0.000323921000000,0.000037107000000,0.000187230000000,0.000030390000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000448760000000,0.000373304000000,0.000173008000000,0.010766580000000,0.000189600000000,0.000259921000000,0.010992555000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000179724000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000037897000000,0.000186835000000,0.000030391000000,0.000313255000000,0.000025862000000,0.000039477000000,0.000380021000000,0.000454292000000,0.000171427000000,0.011178234000000,0.000187230000000,0.000171032000000,0.010973592000000,0.000044613000000,0.000039477000000 +0.000037896000000,0.000142589000000,0.000036317000000,0.000027244500000,0.000373304000000,0.000037896000000,0.000225551000000,0.000030391000000,0.000323526000000,0.000026257000000,0.000039477000000,0.000425057000000,0.000365008000000,0.000171823000000,0.010989394000000,0.000189996000000,0.000174983000000,0.011313740000000,0.000044218000000,0.000039478000000 +0.000037502000000,0.000143379000000,0.000035921000000,0.000027244500000,0.000389896000000,0.000037897000000,0.000186835000000,0.000030390000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000374489000000,0.000410045000000,0.000170638000000,0.011287271000000,0.000189601000000,0.000172613000000,0.011132011000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000142984000000,0.000036712000000,0.000027245000000,0.000324317000000,0.000039082000000,0.000187230000000,0.000031971000000,0.000308909000000,0.000025862000000,0.000039082000000,0.000381600000000,0.000375674000000,0.000172613000000,0.011246975000000,0.000188416000000,0.000173798000000,0.010983864000000,0.000043822000000,0.000040267000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037106000000,0.000187230000000,0.000050143000000,0.000308909000000,0.000025862000000,0.000039478000000,0.000457057000000,0.000364612000000,0.000208168000000,0.010965691000000,0.000203823000000,0.000218440000000,0.010963715000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036711000000,0.000027244500000,0.000325502000000,0.000037502000000,0.000261107000000,0.000080169000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000368168000000,0.000455082000000,0.000171427000000,0.011770826000000,0.000189205000000,0.000174588000000,0.011094481000000,0.000044613000000,0.000038292000000 +0.000037896000000,0.000217650000000,0.000035922000000,0.000027245000000,0.000324712000000,0.000038687000000,0.000188416000000,0.000031970000000,0.000308119000000,0.000026652000000,0.000039477000000,0.000521847000000,0.000367378000000,0.000171428000000,0.011010727000000,0.000189205000000,0.000175773000000,0.010967666000000,0.000044218000000,0.000040267000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000027047500000,0.000323131000000,0.000037897000000,0.000189601000000,0.000031576000000,0.000308909000000,0.000036331500000,0.000039872000000,0.000378045000000,0.000403329000000,0.000172613000000,0.011310579000000,0.000188415000000,0.000175379000000,0.011331912000000,0.000044218000000,0.000039477000000 +0.000077403000000,0.000144959000000,0.000072268000000,0.000027244500000,0.000326292000000,0.000036317000000,0.000187625000000,0.000030390000000,0.000307329000000,0.000042455000000,0.000039872000000,0.000451921000000,0.000373304000000,0.000172613000000,0.010914728000000,0.000226737000000,0.000316415000000,0.011188505000000,0.000044218000000,0.000040267000000 +0.000039872000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325107000000,0.000037897000000,0.000261107000000,0.000030786000000,0.000307328000000,0.000026257000000,0.000039477000000,0.000365798000000,0.000363823000000,0.000173403000000,0.011851023000000,0.000253601000000,0.000173008000000,0.010974383000000,0.000044613000000,0.000040267000000 +0.000040268000000,0.000142983000000,0.000036316000000,0.000027640000000,0.000325107000000,0.000037502000000,0.000188810000000,0.000029996000000,0.000434933000000,0.000026059500000,0.000075033000000,0.000395032000000,0.000416761000000,0.000170637000000,0.010906432000000,0.000189601000000,0.000173008000000,0.011318086000000,0.000044218000000,0.000039478000000 +0.000087674000000,0.000143773000000,0.000036317000000,0.000027047000000,0.000322737000000,0.000037501000000,0.000187230000000,0.000030390000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000368958000000,0.000363032000000,0.000172218000000,0.011913444000000,0.000187230000000,0.000173007000000,0.011043913000000,0.000044218000000,0.000037897000000 +0.000052119000000,0.000178934000000,0.000035922000000,0.000046405000000,0.000324712000000,0.000037107000000,0.000188415000000,0.000030786000000,0.000308909000000,0.000026257000000,0.000039477000000,0.000375280000000,0.000411230000000,0.000174983000000,0.011089740000000,0.000186440000000,0.000173008000000,0.011049839000000,0.000044613000000,0.000077798000000 +0.000037501000000,0.000142193000000,0.000036317000000,0.000054306500000,0.000322341000000,0.000037502000000,0.000258736000000,0.000031181000000,0.000309304000000,0.000026850000000,0.000039083000000,0.000853699000000,0.000372119000000,0.000171428000000,0.010900901000000,0.000189996000000,0.000190391000000,0.010745246000000,0.000063576000000,0.000067131000000 +0.000037502000000,0.000144563000000,0.000036316000000,0.000033961000000,0.000323526000000,0.000056070000000,0.000186835000000,0.000030786000000,0.000309305000000,0.000026652000000,0.000039477000000,0.000442045000000,0.000437699000000,0.000178934000000,0.010973196000000,0.000189601000000,0.000174193000000,0.011435024000000,0.000115724000000,0.000040267000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000028034500000,0.000323526000000,0.000069896000000,0.000187230000000,0.000031971000000,0.000308909000000,0.000026454500000,0.000039872000000,0.000373304000000,0.000372119000000,0.000172218000000,0.011300703000000,0.000187231000000,0.000174193000000,0.010910382000000,0.000093995000000,0.000039873000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000323527000000,0.000037897000000,0.000188810000000,0.000030391000000,0.000393057000000,0.000025862000000,0.000039477000000,0.000373699000000,0.000374884000000,0.000173798000000,0.011129246000000,0.000218440000000,0.000174588000000,0.010880752000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000329847000000,0.000037502000000,0.000221205000000,0.000031181000000,0.000307724000000,0.000026652500000,0.000039477000000,0.000417946000000,0.000409650000000,0.000172613000000,0.011064061000000,0.000189601000000,0.000171822000000,0.010995321000000,0.000059231000000,0.000041058000000 +0.000038292000000,0.000190391000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000037502000000,0.000188020000000,0.000029995000000,0.000307724000000,0.000026652000000,0.000039082000000,0.000368169000000,0.000374884000000,0.000173008000000,0.011154530000000,0.000186045000000,0.000190786000000,0.011311370000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000142984000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000241354000000,0.000030786000000,0.000308119000000,0.000026257000000,0.000039478000000,0.000442835000000,0.000483922000000,0.000175773000000,0.011453591000000,0.000208168000000,0.000173403000000,0.010995321000000,0.000044217000000,0.000041057000000 +0.000037502000000,0.000143773000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000038292000000,0.000260316000000,0.000030786000000,0.000348020000000,0.000026454500000,0.000039082000000,0.000369748000000,0.000389897000000,0.000172218000000,0.011163616000000,0.000203032000000,0.000173008000000,0.011095666000000,0.000044613000000,0.000039873000000 +0.000038292000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000037107000000,0.000187625000000,0.000030786000000,0.000326292000000,0.000025862500000,0.000039477000000,0.000435328000000,0.000412810000000,0.000173008000000,0.011161246000000,0.000187230000000,0.000173798000000,0.011106728000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000038687000000,0.000186835000000,0.000030391000000,0.000346044000000,0.000026454500000,0.000039082000000,0.000381205000000,0.000363823000000,0.000172613000000,0.011617542000000,0.000189601000000,0.000212514000000,0.011488357000000,0.000043823000000,0.000038292000000 +0.000038687000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037106000000,0.000188811000000,0.000030390000000,0.000310489000000,0.000044430000000,0.000039477000000,0.000378044000000,0.000367378000000,0.000172613000000,0.011526283000000,0.000225946000000,0.000172217000000,0.011106728000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000178143000000,0.000036317000000,0.000027245000000,0.000326686000000,0.000036316000000,0.000235033000000,0.000030786000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000410440000000,0.000440860000000,0.000173008000000,0.010867321000000,0.000186835000000,0.000173008000000,0.011089345000000,0.000045008000000,0.000039872000000 +0.000038687000000,0.000143774000000,0.000036316000000,0.000027047000000,0.000324316000000,0.000037107000000,0.000187231000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000379626000000,0.000368958000000,0.000173798000000,0.010988605000000,0.000191181000000,0.000171823000000,0.011046283000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000326291000000,0.000037897000000,0.000186835000000,0.000049353000000,0.000307723000000,0.000025862000000,0.000039478000000,0.000402933000000,0.000407280000000,0.000172613000000,0.010932506000000,0.000188020000000,0.000171822000000,0.011484406000000,0.000044218000000,0.000039477000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000327082000000,0.000036712000000,0.000187626000000,0.000032761000000,0.000308119000000,0.000026059500000,0.000039082000000,0.000383180000000,0.000378835000000,0.000176169000000,0.013018825000000,0.000224366000000,0.000284810000000,0.010901295000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000143378000000,0.000035921000000,0.000027442500000,0.000323922000000,0.000037106000000,0.000257946000000,0.000043428000000,0.000344465000000,0.000026455000000,0.000039477000000,0.000374094000000,0.000381600000000,0.000171033000000,0.010829790000000,0.000189205000000,0.000478390000000,0.011254085000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000146934000000,0.000072662000000,0.000045220000000,0.000323922000000,0.000037502000000,0.000189205000000,0.000030786000000,0.000307328000000,0.000026454500000,0.000039477000000,0.000410835000000,0.000455477000000,0.000193947000000,0.011333493000000,0.000188020000000,0.000282045000000,0.010975567000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000323922000000,0.000037897000000,0.000187230000000,0.000031181000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000375279000000,0.000375675000000,0.000174588000000,0.010956605000000,0.000188811000000,0.000173798000000,0.010926975000000,0.000061600000000,0.000037897000000 +0.000037896000000,0.000158786000000,0.000035922000000,0.000027442500000,0.000323131000000,0.000038292000000,0.000186835000000,0.000032761000000,0.000344860000000,0.000025862000000,0.000075428000000,0.000443230000000,0.000401748000000,0.000173008000000,0.012155616000000,0.000227132000000,0.000176169000000,0.011242629000000,0.000044613000000,0.000038687000000 +0.000074243000000,0.000141403000000,0.000036317000000,0.000027047500000,0.000447971000000,0.000037897000000,0.000223181000000,0.000030786000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000374885000000,0.000375675000000,0.000173403000000,0.011360357000000,0.000189206000000,0.000173008000000,0.011126875000000,0.000044613000000,0.000107823000000 +0.000037897000000,0.000142984000000,0.000035921000000,0.000027244500000,0.000336959000000,0.000037502000000,0.000189206000000,0.000029996000000,0.000306934000000,0.000025862000000,0.000039872000000,0.000410835000000,0.000372514000000,0.000171427000000,0.011553542000000,0.000187625000000,0.000178934000000,0.010806481000000,0.000045008000000,0.000054095000000 +0.000038292000000,0.000144564000000,0.000036316000000,0.000027244500000,0.000324712000000,0.000073453000000,0.000189996000000,0.000030390000000,0.000643921000000,0.000026454500000,0.000039872000000,0.000384761000000,0.000814983000000,0.000173403000000,0.011225246000000,0.000189995000000,0.000210539000000,0.011230382000000,0.000045008000000,0.000039872000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027245000000,0.000360267000000,0.000037107000000,0.000186045000000,0.000030391000000,0.000340514000000,0.000026454500000,0.000039478000000,0.000380415000000,0.000400563000000,0.000171822000000,0.011404209000000,0.000188020000000,0.000175379000000,0.011229987000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000143379000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037501000000,0.000256366000000,0.000030391000000,0.000307724000000,0.000025664500000,0.000039477000000,0.000418736000000,0.000370539000000,0.000172218000000,0.010789888000000,0.000188811000000,0.000174983000000,0.011250925000000,0.000045008000000,0.000039082000000 +0.000037897000000,0.000284810000000,0.000036316000000,0.000027047000000,0.000324711000000,0.000037897000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000380020000000,0.000449551000000,0.000172613000000,0.011299913000000,0.000188020000000,0.000174983000000,0.011000851000000,0.000043823000000,0.000037897000000 +0.000037897000000,0.000162341000000,0.000036316000000,0.000027047500000,0.000323131000000,0.000037502000000,0.000191181000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000412020000000,0.000375280000000,0.000170637000000,0.011244999000000,0.000187230000000,0.000173403000000,0.011173493000000,0.000043823000000,0.000039083000000 +0.000037897000000,0.000141798000000,0.000036712000000,0.000027047500000,0.000324316000000,0.000037502000000,0.000188811000000,0.000030786000000,0.000440465000000,0.000025862000000,0.000039477000000,0.000373699000000,0.000373304000000,0.000173008000000,0.012016554000000,0.000188415000000,0.000207773000000,0.011202727000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000381205000000,0.000036316000000,0.000225551000000,0.000030391000000,0.000308909000000,0.000082553500000,0.000039477000000,0.000372513000000,0.000410440000000,0.000171427000000,0.010970431000000,0.000188020000000,0.000172613000000,0.010824654000000,0.000044218000000,0.000037897000000 +0.000038292000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000323922000000,0.000037107000000,0.000188810000000,0.000030391000000,0.000308909000000,0.000054306500000,0.000039478000000,0.000444810000000,0.000367773000000,0.000172613000000,0.010960555000000,0.000187230000000,0.000171823000000,0.011197196000000,0.000044218000000,0.000038292000000 +0.000038292000000,0.000177749000000,0.000036317000000,0.000027245000000,0.000322737000000,0.000036712000000,0.000189205000000,0.000030391000000,0.000307724000000,0.000068331500000,0.000039477000000,0.000383181000000,0.000409255000000,0.000171822000000,0.010863370000000,0.000186835000000,0.000174588000000,0.011356011000000,0.000045008000000,0.000038292000000 +0.000038292000000,0.000158390000000,0.000036317000000,0.000027245000000,0.000359872000000,0.000037502000000,0.000186440000000,0.000030391000000,0.000308514000000,0.000045417500000,0.000039872000000,0.000573995000000,0.000370538000000,0.000171032000000,0.011253691000000,0.000188811000000,0.000172613000000,0.011529049000000,0.000043822000000,0.000039082000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000323131000000,0.000037501000000,0.000336168000000,0.000030786000000,0.000308514000000,0.000027442000000,0.000039477000000,0.000378440000000,0.000371328000000,0.000173008000000,0.010980703000000,0.000204612000000,0.000245304000000,0.011248160000000,0.000043823000000,0.000040663000000 +0.000038687000000,0.000142588000000,0.000036317000000,0.000044035000000,0.000323922000000,0.000037897000000,0.000456267000000,0.000030785000000,0.000312465000000,0.000033763000000,0.000039082000000,0.000409255000000,0.000410835000000,0.000173403000000,0.010900110000000,0.000188810000000,0.000173008000000,0.010789493000000,0.000043823000000,0.000039082000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000065170500000,0.000323527000000,0.000037107000000,0.000253206000000,0.000030786000000,0.000307329000000,0.000026257000000,0.000039082000000,0.000374094000000,0.000380415000000,0.000173403000000,0.010842037000000,0.000187230000000,0.000171823000000,0.010945543000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000143773000000,0.000035922000000,0.000047393000000,0.000325502000000,0.000037897000000,0.000187230000000,0.000031181000000,0.000307329000000,0.000025664500000,0.000039478000000,0.000397008000000,0.000402538000000,0.000171428000000,0.010839666000000,0.000189600000000,0.000174193000000,0.011420801000000,0.000045798000000,0.000039082000000 +0.000037896000000,0.000178539000000,0.000036316000000,0.000028824500000,0.000325897000000,0.000037106000000,0.000186835000000,0.000030785000000,0.000309699000000,0.000025862000000,0.000039477000000,0.000380020000000,0.000373699000000,0.000174588000000,0.011094875000000,0.000238588000000,0.000172613000000,0.010639765000000,0.000044613000000,0.000039478000000 +0.000037897000000,0.000186835000000,0.000054884000000,0.000034553500000,0.000323527000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000309304000000,0.000026455000000,0.000039082000000,0.000375675000000,0.000366983000000,0.000171823000000,0.011594629000000,0.000187231000000,0.000199477000000,0.010948703000000,0.000079774000000,0.000040662000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000037502000000,0.000222786000000,0.000082143000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000651822000000,0.000412415000000,0.000173008000000,0.010906431000000,0.000186835000000,0.000172218000000,0.011065641000000,0.000060810000000,0.000039082000000 +0.000037897000000,0.000143378000000,0.000035922000000,0.000027245000000,0.000324712000000,0.000037502000000,0.000190785000000,0.000030391000000,0.000306933000000,0.000034356000000,0.000039477000000,0.000399378000000,0.000429798000000,0.000172218000000,0.011239863000000,0.000186835000000,0.000172613000000,0.011000851000000,0.000111774000000,0.000057255000000 +0.000037897000000,0.000143773000000,0.000035922000000,0.000027047000000,0.000324317000000,0.000037501000000,0.000188415000000,0.000030391000000,0.000308514000000,0.000025862000000,0.000075033000000,0.000425057000000,0.000414786000000,0.000173008000000,0.012168258000000,0.000225551000000,0.000174193000000,0.011192456000000,0.000047773000000,0.000054490000000 +0.000037897000000,0.000142589000000,0.000036316000000,0.000027244500000,0.000323131000000,0.000037107000000,0.000186835000000,0.000030785000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000376070000000,0.000364217000000,0.000173403000000,0.011122135000000,0.000187230000000,0.000191971000000,0.011559863000000,0.000046983000000,0.000040267000000 +0.000195922000000,0.000175774000000,0.000036316000000,0.000027245000000,0.000323921000000,0.000037502000000,0.000221206000000,0.000030391000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000417156000000,0.000410834000000,0.000171823000000,0.011077493000000,0.000186835000000,0.000173008000000,0.011062481000000,0.000047378000000,0.000039477000000 +0.000039872000000,0.000139822000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000073453000000,0.000189205000000,0.000050934000000,0.000307329000000,0.000026059500000,0.000039082000000,0.000363823000000,0.000367773000000,0.000281255000000,0.011551566000000,0.000188021000000,0.000173403000000,0.011471370000000,0.000047378000000,0.000039082000000 +0.000037502000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000188416000000,0.000032366000000,0.000307723000000,0.000026059500000,0.000039478000000,0.000375674000000,0.000377255000000,0.000206193000000,0.011580802000000,0.000225156000000,0.000171428000000,0.011839961000000,0.000046984000000,0.000040267000000 +0.000038292000000,0.000144168000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037106000000,0.000186045000000,0.000032366000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000421501000000,0.000439279000000,0.000175378000000,0.011011913000000,0.000189600000000,0.000171823000000,0.011608061000000,0.000206193000000,0.000038292000000 +0.000039082000000,0.000142193000000,0.000036317000000,0.000027047500000,0.000326291000000,0.000037502000000,0.000242143000000,0.000044613000000,0.000306934000000,0.000026257500000,0.000039872000000,0.000381996000000,0.000373304000000,0.000171428000000,0.011070777000000,0.000189600000000,0.000211723000000,0.011602530000000,0.000096762000000,0.000039082000000 +0.000037897000000,0.000144564000000,0.000036317000000,0.000045022500000,0.000325106000000,0.000037107000000,0.000189206000000,0.000030786000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000411625000000,0.000412811000000,0.000174588000000,0.010996901000000,0.000188810000000,0.000173008000000,0.011201147000000,0.000082539000000,0.000038687000000 +0.000037501000000,0.000143774000000,0.000036316000000,0.000027245000000,0.000322341000000,0.000037502000000,0.000187231000000,0.000029995000000,0.000359872000000,0.000026454500000,0.000039477000000,0.000375675000000,0.000367773000000,0.000216464000000,0.011311764000000,0.000453896000000,0.000174193000000,0.011450432000000,0.000046983000000,0.000039872000000 +0.000037897000000,0.000207774000000,0.000036316000000,0.000027244500000,0.000368563000000,0.000038291000000,0.000188415000000,0.000030786000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000415575000000,0.000378440000000,0.000173008000000,0.010853493000000,0.000476020000000,0.000171428000000,0.010916308000000,0.000057650000000,0.000039082000000 +0.000037502000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000321946000000,0.000037502000000,0.000223576000000,0.000030391000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000374884000000,0.000413205000000,0.000175773000000,0.011071567000000,0.000558193000000,0.000174193000000,0.010954629000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000140613000000,0.000036712000000,0.000027442500000,0.000322736000000,0.000037502000000,0.000189206000000,0.000030390000000,0.000308909000000,0.000025862500000,0.000039477000000,0.000375674000000,0.000368168000000,0.000177749000000,0.010666629000000,0.000237402000000,0.000218045000000,0.011327962000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000141798000000,0.000035921000000,0.000027244500000,0.000325106000000,0.000037502000000,0.000190391000000,0.000030391000000,0.000345255000000,0.000026257000000,0.000039872000000,0.000415575000000,0.000415180000000,0.000173798000000,0.011214184000000,0.000190786000000,0.000174193000000,0.011312160000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000140217000000,0.000036712000000,0.000027244500000,0.000325502000000,0.000037501000000,0.000188811000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000375675000000,0.000379230000000,0.000171428000000,0.011066431000000,0.000188810000000,0.000174193000000,0.010779222000000,0.000043823000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037897000000,0.000224761000000,0.000030786000000,0.000307328000000,0.000026059500000,0.000039872000000,0.000409650000000,0.000372514000000,0.000171428000000,0.011036802000000,0.000190391000000,0.000171823000000,0.010908406000000,0.000045008000000,0.000037897000000 +0.000037897000000,0.000156811000000,0.000035922000000,0.000027245000000,0.000324316000000,0.000037107000000,0.000186045000000,0.000030391000000,0.000309699000000,0.000062010000000,0.000039873000000,0.000381205000000,0.000397403000000,0.000173403000000,0.010896950000000,0.000187230000000,0.000173008000000,0.010974382000000,0.000043823000000,0.000038291000000 +0.000037897000000,0.000140217000000,0.000036316000000,0.000027047000000,0.000323131000000,0.000038291000000,0.000187230000000,0.000030785000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000368169000000,0.000380020000000,0.000172218000000,0.011057345000000,0.000188415000000,0.000245699000000,0.010941197000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036712000000,0.000027245000000,0.000322736000000,0.000035921000000,0.000189205000000,0.000029996000000,0.000308514000000,0.000026455000000,0.000039872000000,0.000404119000000,0.000429007000000,0.000173008000000,0.011431073000000,0.000188810000000,0.000208959000000,0.011200753000000,0.000063971000000,0.000038292000000 +0.000037897000000,0.000140218000000,0.000070292000000,0.000027245000000,0.000324712000000,0.000037107000000,0.000257551000000,0.000029996000000,0.000308118000000,0.000026059500000,0.000039477000000,0.000375279000000,0.000374094000000,0.000171428000000,0.010936457000000,0.000187230000000,0.000319575000000,0.010828999000000,0.000060810000000,0.000039082000000 +0.000037896000000,0.000144958000000,0.000050934000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000188415000000,0.000066736000000,0.000309699000000,0.000026849500000,0.000039872000000,0.000420317000000,0.000440859000000,0.000171033000000,0.011068802000000,0.000232663000000,0.000173403000000,0.011119765000000,0.000058440000000,0.000039477000000 +0.000037502000000,0.000144169000000,0.000035921000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000189600000000,0.000031181000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000368959000000,0.000377649000000,0.000174589000000,0.010913543000000,0.000189601000000,0.000297848000000,0.011248950000000,0.000043823000000,0.000058441000000 +0.000073848000000,0.000214094000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000037501000000,0.000188020000000,0.000032761000000,0.000308909000000,0.000026059500000,0.000093601000000,0.000365007000000,0.000366983000000,0.000172218000000,0.011293592000000,0.000189600000000,0.000173403000000,0.010860605000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000141403000000,0.000036317000000,0.000027047500000,0.000325107000000,0.000036712000000,0.000224761000000,0.000030786000000,0.000307328000000,0.000026652000000,0.000054094000000,0.000429403000000,0.000408069000000,0.000172217000000,0.010874431000000,0.000188020000000,0.000171823000000,0.012389097000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000142589000000,0.000036712000000,0.000036528500000,0.000325501000000,0.000037897000000,0.000189996000000,0.000030786000000,0.000306539000000,0.000026454500000,0.000039872000000,0.000423081000000,0.000377650000000,0.000170243000000,0.010917098000000,0.000207379000000,0.000172613000000,0.011470184000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000143379000000,0.000036316000000,0.000052924000000,0.000323921000000,0.000110589000000,0.000187230000000,0.000030785000000,0.000308119000000,0.000026652000000,0.000039477000000,0.000415181000000,0.000457847000000,0.000171823000000,0.011237888000000,0.000187230000000,0.000243329000000,0.011409740000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000144563000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000054490000000,0.000188415000000,0.000031181000000,0.000307328000000,0.000025862000000,0.000039872000000,0.000383181000000,0.000375280000000,0.000173008000000,0.011297542000000,0.000190390000000,0.000185649000000,0.010761049000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000142983000000,0.000036712000000,0.000028034500000,0.000322736000000,0.000075033000000,0.000226341000000,0.000029996000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000407674000000,0.000375674000000,0.000173008000000,0.010878777000000,0.000189205000000,0.000173008000000,0.011070777000000,0.000113354000000,0.000039082000000 +0.000037501000000,0.000181304000000,0.000036316000000,0.000027442500000,0.000347625000000,0.000039872000000,0.000186835000000,0.000029995000000,0.000308909000000,0.000026060000000,0.000039477000000,0.000372908000000,0.000373699000000,0.000173403000000,0.010897740000000,0.000257946000000,0.000173798000000,0.012163517000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000141403000000,0.000035922000000,0.000027244500000,0.000354736000000,0.000040268000000,0.000189995000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000373699000000,0.000370539000000,0.000171427000000,0.011135962000000,0.000187230000000,0.000173798000000,0.011104358000000,0.000044218000000,0.000039478000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000052119000000,0.000188810000000,0.000030391000000,0.000307724000000,0.000026849500000,0.000039477000000,0.000455477000000,0.000496168000000,0.000171428000000,0.011159666000000,0.000189205000000,0.000210539000000,0.011123321000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000037107000000,0.000205798000000,0.000030390000000,0.000328267000000,0.000026059500000,0.000039477000000,0.000368563000000,0.000393847000000,0.000171823000000,0.010761839000000,0.000186835000000,0.000172217000000,0.010964901000000,0.000045008000000,0.000040662000000 +0.000038687000000,0.000142983000000,0.000036316000000,0.000027047500000,0.000322341000000,0.000037897000000,0.000199873000000,0.000030786000000,0.000307328000000,0.000035146000000,0.000039477000000,0.000407675000000,0.000441254000000,0.000172613000000,0.011015468000000,0.000229107000000,0.000173798000000,0.010415370000000,0.000044217000000,0.000039873000000 +0.000037502000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037502000000,0.000190391000000,0.000030391000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000373699000000,0.000370934000000,0.000170637000000,0.011004407000000,0.000187230000000,0.000171428000000,0.010352950000000,0.000044613000000,0.000040662000000 +0.000037501000000,0.000178539000000,0.000036317000000,0.000027640000000,0.000324317000000,0.000037502000000,0.000186835000000,0.000030390000000,0.000327477000000,0.000025862000000,0.000039478000000,0.000416366000000,0.000370144000000,0.000171428000000,0.012622183000000,0.000189206000000,0.000176958000000,0.010975567000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000141798000000,0.000036316000000,0.000027047500000,0.000321946000000,0.000037107000000,0.000222391000000,0.000030391000000,0.000323921000000,0.000026257500000,0.000039477000000,0.000380415000000,0.000512366000000,0.000175379000000,0.011246579000000,0.000190391000000,0.000208958000000,0.010787518000000,0.000044218000000,0.000040663000000 +0.000037107000000,0.000143379000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000037107000000,0.000188415000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000377255000000,0.000372909000000,0.000171823000000,0.011147419000000,0.000223181000000,0.000171032000000,0.010456851000000,0.000044218000000,0.000054489000000 +0.000037897000000,0.000140612000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000037897000000,0.000188415000000,0.000030390000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000421107000000,0.000409254000000,0.000171427000000,0.011074332000000,0.000186440000000,0.000179724000000,0.011416060000000,0.000044613000000,0.000052909000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037502000000,0.000187230000000,0.000029996000000,0.000307723000000,0.000025862000000,0.000039872000000,0.000379625000000,0.000369353000000,0.000175773000000,0.011619518000000,0.000186835000000,0.000175379000000,0.011412900000000,0.000044218000000,0.000039477000000 +0.000038291000000,0.000140218000000,0.000054884000000,0.000027245000000,0.000323526000000,0.000037107000000,0.000206984000000,0.000030786000000,0.000307724000000,0.000026059500000,0.000039083000000,0.000416366000000,0.000415576000000,0.000179329000000,0.010895765000000,0.000190786000000,0.000173008000000,0.010483321000000,0.000044218000000,0.000039872000000 +0.000038292000000,0.000176563000000,0.000052909000000,0.000050355500000,0.000458242000000,0.000038292000000,0.000186835000000,0.000030786000000,0.000308909000000,0.000026059500000,0.000039477000000,0.000383971000000,0.000373304000000,0.000175773000000,0.010994926000000,0.000245699000000,0.000208958000000,0.010712061000000,0.000045008000000,0.000039872000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027047500000,0.000340514000000,0.000037106000000,0.000187230000000,0.000030391000000,0.000313255000000,0.000025862000000,0.000039477000000,0.000374489000000,0.000367378000000,0.000171428000000,0.010766975000000,0.000186440000000,0.000172613000000,0.011143864000000,0.000044613000000,0.000074638000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000324712000000,0.000071082000000,0.000187625000000,0.000030390000000,0.000307724000000,0.000026454500000,0.000075428000000,0.000410835000000,0.000427033000000,0.000173008000000,0.010971222000000,0.000187231000000,0.000173403000000,0.010973987000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027047000000,0.000352366000000,0.000040267000000,0.000187625000000,0.000030786000000,0.000308909000000,0.000025862000000,0.000039872000000,0.000374489000000,0.000366983000000,0.000171823000000,0.011071172000000,0.000187230000000,0.000172612000000,0.010626333000000,0.000045008000000,0.000039477000000 +0.000073452000000,0.000142588000000,0.000035921000000,0.000027047000000,0.000323526000000,0.000039477000000,0.000187625000000,0.000087675000000,0.000435724000000,0.000026257000000,0.000039082000000,0.000408860000000,0.000414785000000,0.000175378000000,0.010755913000000,0.000259526000000,0.000171428000000,0.010532309000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000140218000000,0.000035922000000,0.000027047500000,0.000360663000000,0.000037107000000,0.000190390000000,0.000082539000000,0.000307724000000,0.000026454500000,0.000039082000000,0.000373304000000,0.000375279000000,0.000172217000000,0.011159271000000,0.000190390000000,0.000223576000000,0.010513345000000,0.000080959000000,0.000037897000000 +0.000037107000000,0.000144563000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000036712000000,0.000189601000000,0.000098737000000,0.000309699000000,0.000026059500000,0.000039872000000,0.000374884000000,0.000383576000000,0.000172218000000,0.010907222000000,0.000187625000000,0.000172218000000,0.010599863000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000230292000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000190391000000,0.000100317000000,0.000308909000000,0.000026059500000,0.000039873000000,0.000538045000000,0.000420316000000,0.000171823000000,0.011770826000000,0.000187231000000,0.000173403000000,0.010878778000000,0.000044218000000,0.000040268000000 +0.000037896000000,0.000143773000000,0.000036317000000,0.000027245000000,0.000325106000000,0.000037502000000,0.000189600000000,0.000100317000000,0.000308119000000,0.000044035000000,0.000039478000000,0.000380020000000,0.000367774000000,0.000171822000000,0.011727764000000,0.000223576000000,0.000173008000000,0.010504654000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000143773000000,0.000036712000000,0.000027244500000,0.000322736000000,0.000037897000000,0.000188810000000,0.000065947000000,0.000308119000000,0.000033763500000,0.000039477000000,0.000454686000000,0.000409649000000,0.000173008000000,0.010805296000000,0.000186835000000,0.000172218000000,0.010415370000000,0.000044613000000,0.000039872000000 +0.000038292000000,0.000142984000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000188810000000,0.000033157000000,0.000348810000000,0.000026652000000,0.000039872000000,0.000380020000000,0.000372118000000,0.000171428000000,0.011041938000000,0.000188810000000,0.000189600000000,0.010766580000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000140218000000,0.000036316000000,0.000027245000000,0.000374884000000,0.000037896000000,0.000189600000000,0.000045799000000,0.000308119000000,0.000026257000000,0.000039872000000,0.000404119000000,0.000415575000000,0.000171427000000,0.011367073000000,0.000189600000000,0.000171032000000,0.011246579000000,0.000044217000000,0.000039082000000 +0.000037107000000,0.000144563000000,0.000036317000000,0.000027245000000,0.000324712000000,0.000037502000000,0.000213304000000,0.000044613000000,0.000308909000000,0.000026652000000,0.000039872000000,0.000372514000000,0.000374490000000,0.000171032000000,0.010875221000000,0.000263082000000,0.000176563000000,0.010587222000000,0.000044217000000,0.000039082000000 +0.000037896000000,0.000157206000000,0.000036317000000,0.000027442000000,0.000322737000000,0.000037897000000,0.000187625000000,0.000031181000000,0.000308514000000,0.000026257500000,0.000039478000000,0.000392267000000,0.000374489000000,0.000171428000000,0.011005197000000,0.000584267000000,0.000173008000000,0.011310579000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027245000000,0.000331033000000,0.000037502000000,0.000190786000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039082000000,0.000401748000000,0.000464563000000,0.000305749000000,0.011417641000000,0.000237008000000,0.000191181000000,0.010565889000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000140218000000,0.000035922000000,0.000027047500000,0.000323922000000,0.000037502000000,0.000187231000000,0.000030785000000,0.000310095000000,0.000026257000000,0.000039477000000,0.000420317000000,0.000369748000000,0.000202242000000,0.011366283000000,0.000190391000000,0.000172613000000,0.010780802000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000143378000000,0.000036712000000,0.000064380500000,0.000323132000000,0.000037107000000,0.000223181000000,0.000071872000000,0.000310489000000,0.000026652000000,0.000039477000000,0.000462983000000,0.000406094000000,0.000240564000000,0.010825839000000,0.000188021000000,0.000175378000000,0.010812012000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000141008000000,0.000036316000000,0.000027047000000,0.000361057000000,0.000037502000000,0.000190391000000,0.000031181000000,0.000306144000000,0.000026257000000,0.000039477000000,0.000378045000000,0.000374094000000,0.000228711000000,0.010917888000000,0.000225946000000,0.000171822000000,0.010590382000000,0.000043428000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027442500000,0.000323921000000,0.000037502000000,0.000190786000000,0.000030785000000,0.000308514000000,0.000026257500000,0.000039082000000,0.000455477000000,0.000366983000000,0.000189206000000,0.011145048000000,0.000241748000000,0.000174588000000,0.011023370000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000180119000000,0.000037502000000,0.000027640000000,0.000322736000000,0.000037502000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039478000000,0.000372909000000,0.000380810000000,0.000173798000000,0.011306234000000,0.000189600000000,0.000210144000000,0.011000851000000,0.000044218000000,0.000038291000000 +0.000037897000000,0.000140613000000,0.000078983000000,0.000027244500000,0.000323922000000,0.000038687000000,0.000361452000000,0.000029996000000,0.000307329000000,0.000027442000000,0.000039477000000,0.000461797000000,0.000367774000000,0.000172218000000,0.010853888000000,0.000190390000000,0.000173798000000,0.010366777000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027245000000,0.000321946000000,0.000037107000000,0.000189205000000,0.000030786000000,0.000307724000000,0.000026059500000,0.000040267000000,0.000380020000000,0.000408859000000,0.000173008000000,0.010872852000000,0.000187230000000,0.000173008000000,0.010440259000000,0.000043823000000,0.000039872000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037502000000,0.000189205000000,0.000032366000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000375674000000,0.000373699000000,0.000172613000000,0.010842037000000,0.000259526000000,0.000174589000000,0.010440654000000,0.000045008000000,0.000076218000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027047000000,0.000615081000000,0.000054094000000,0.000223576000000,0.000030786000000,0.000308119000000,0.000026455000000,0.000085304000000,0.000452316000000,0.000385156000000,0.000189205000000,0.010815173000000,0.000189205000000,0.000173008000000,0.010508605000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000144168000000,0.000036317000000,0.000027047000000,0.000372119000000,0.000037502000000,0.000190391000000,0.000031576000000,0.000307724000000,0.000046405000000,0.000039478000000,0.000381600000000,0.000421106000000,0.000171823000000,0.013828305000000,0.000189205000000,0.000208563000000,0.010787123000000,0.000080563000000,0.000038687000000 +0.000037897000000,0.000178934000000,0.000036316000000,0.000027047500000,0.000323922000000,0.000037502000000,0.000185649000000,0.000033946000000,0.000346045000000,0.000026059500000,0.000039477000000,0.000423871000000,0.000372513000000,0.000171823000000,0.011842728000000,0.000188416000000,0.000188810000000,0.010269198000000,0.000044613000000,0.000039477000000 +0.000073847000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000373700000000,0.000037107000000,0.000186440000000,0.000030785000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000375674000000,0.000411230000000,0.000170637000000,0.011500208000000,0.000241353000000,0.000173798000000,0.010378235000000,0.000043823000000,0.000039082000000 +0.000037897000000,0.000144959000000,0.000035922000000,0.000027244500000,0.000323921000000,0.000037502000000,0.000223181000000,0.000031181000000,0.000306934000000,0.000026652500000,0.000039082000000,0.000465749000000,0.000378440000000,0.000174193000000,0.011642826000000,0.000188415000000,0.000174984000000,0.010637395000000,0.000043823000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000035921000000,0.000027245000000,0.000325502000000,0.000037897000000,0.000188810000000,0.000030390000000,0.000307329000000,0.000026454500000,0.000039477000000,0.000365008000000,0.000408069000000,0.000187230000000,0.011130431000000,0.000188020000000,0.000173008000000,0.010909197000000,0.000044613000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000036316000000,0.000027245000000,0.000324317000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000026849500000,0.000039478000000,0.000375279000000,0.000372909000000,0.000171822000000,0.010945542000000,0.000188811000000,0.000276514000000,0.010718777000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000142588000000,0.000035922000000,0.000027244500000,0.000324316000000,0.000037897000000,0.000186835000000,0.000031576000000,0.000307724000000,0.000026455000000,0.000039477000000,0.000406094000000,0.000375280000000,0.000173008000000,0.011261197000000,0.000202637000000,0.000209354000000,0.010521247000000,0.000043823000000,0.000039477000000 +0.000037501000000,0.000179329000000,0.000036317000000,0.000045220000000,0.000322736000000,0.000037502000000,0.000209354000000,0.000031181000000,0.000309699000000,0.000026257000000,0.000039872000000,0.000381600000000,0.000417156000000,0.000170638000000,0.011164407000000,0.000206983000000,0.000173798000000,0.010396012000000,0.000044613000000,0.000038292000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000039082000000,0.000258342000000,0.000030391000000,0.000307724000000,0.000026059500000,0.000039477000000,0.000541996000000,0.000372119000000,0.000207379000000,0.010924999000000,0.000200267000000,0.000174193000000,0.010938036000000,0.000045403000000,0.000039873000000 +0.000037897000000,0.000144564000000,0.000036317000000,0.000027047000000,0.000324316000000,0.000037107000000,0.000188811000000,0.000030390000000,0.000308514000000,0.000026454500000,0.000039477000000,0.000406489000000,0.000421502000000,0.000188415000000,0.010988209000000,0.000200268000000,0.000192761000000,0.010566679000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000141403000000,0.000036712000000,0.000027047500000,0.000324711000000,0.000037106000000,0.000187230000000,0.000030391000000,0.000307329000000,0.000026059500000,0.000039082000000,0.000417551000000,0.000372119000000,0.000219230000000,0.010832950000000,0.000201057000000,0.000173798000000,0.010301593000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000225156000000,0.000030391000000,0.000434934000000,0.000026652000000,0.000039477000000,0.000374885000000,0.000376069000000,0.000175378000000,0.010927370000000,0.000199872000000,0.000175773000000,0.010732605000000,0.000044218000000,0.000038292000000 +0.000037106000000,0.000142983000000,0.000036712000000,0.000027639500000,0.000322341000000,0.000037107000000,0.000189206000000,0.000031180000000,0.000307329000000,0.000025862000000,0.000039478000000,0.000376069000000,0.000391872000000,0.000171823000000,0.011184950000000,0.000200662000000,0.000173403000000,0.010645691000000,0.000044217000000,0.000037897000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027245000000,0.000324712000000,0.000039082000000,0.000188416000000,0.000030391000000,0.000308909000000,0.000026059500000,0.000039082000000,0.000416761000000,0.000373699000000,0.000173798000000,0.011127666000000,0.000243724000000,0.000174588000000,0.010844802000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000178144000000,0.000035922000000,0.000027047000000,0.000325107000000,0.000037502000000,0.000190786000000,0.000031971000000,0.000308514000000,0.000026257000000,0.000039082000000,0.000376070000000,0.000511575000000,0.000172218000000,0.010830579000000,0.000201847000000,0.000210934000000,0.010473049000000,0.000044613000000,0.000038688000000 +0.000037502000000,0.000143378000000,0.000036711000000,0.000027047000000,0.000325502000000,0.000037502000000,0.000238588000000,0.000050144000000,0.000307724000000,0.000026257000000,0.000039082000000,0.000410440000000,0.000380811000000,0.000173008000000,0.011260012000000,0.000200267000000,0.000172218000000,0.010429987000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000186835000000,0.000035922000000,0.000027245000000,0.000325106000000,0.000056465000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000044430000000,0.000039082000000,0.000381996000000,0.000408859000000,0.000176168000000,0.011496258000000,0.000199872000000,0.000172612000000,0.010648061000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000143378000000,0.000053699000000,0.000027047500000,0.000323131000000,0.000053304000000,0.000187625000000,0.000030391000000,0.000345254000000,0.000025862000000,0.000039477000000,0.000403328000000,0.000366588000000,0.000171427000000,0.010822678000000,0.000236613000000,0.000255971000000,0.011036802000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000049749000000,0.000027244500000,0.000323527000000,0.000039478000000,0.000187230000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039478000000,0.000380415000000,0.000374094000000,0.000210539000000,0.011444505000000,0.000198687000000,0.000184465000000,0.010305543000000,0.000043823000000,0.000039872000000 +0.000037502000000,0.000143378000000,0.000036316000000,0.000027047000000,0.000324712000000,0.000080959000000,0.000261897000000,0.000031971000000,0.000307724000000,0.000026850000000,0.000039082000000,0.000374094000000,0.000835131000000,0.000171822000000,0.010737345000000,0.000199082000000,0.000371329000000,0.010737740000000,0.000125600000000,0.000056070000000 +0.000037107000000,0.000157601000000,0.000035922000000,0.000027837500000,0.000323131000000,0.000037107000000,0.000187230000000,0.000030390000000,0.000357501000000,0.000026454500000,0.000055674000000,0.000411230000000,0.000417156000000,0.000172218000000,0.011246974000000,0.000198292000000,0.000293106000000,0.010843222000000,0.000043822000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000036316000000,0.000186440000000,0.000030391000000,0.000307723000000,0.000025862000000,0.000039478000000,0.000368169000000,0.000371328000000,0.000171033000000,0.010817148000000,0.000237798000000,0.000178144000000,0.010615666000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000359872000000,0.000037106000000,0.000189996000000,0.000030391000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000476810000000,0.000430983000000,0.000174588000000,0.011020209000000,0.000199872000000,0.000270588000000,0.010907616000000,0.000045008000000,0.000038687000000 +0.000037107000000,0.000144168000000,0.000036711000000,0.000036726500000,0.000324317000000,0.000037107000000,0.000223575000000,0.000030786000000,0.000349601000000,0.000026454500000,0.000039872000000,0.000397798000000,0.000364613000000,0.000174984000000,0.011610826000000,0.000201452000000,0.000173008000000,0.010884703000000,0.000045008000000,0.000038687000000 +0.000073848000000,0.000144959000000,0.000036317000000,0.000052528500000,0.000322737000000,0.000037897000000,0.000188810000000,0.000030391000000,0.000309305000000,0.000025862000000,0.000039477000000,0.000367774000000,0.000377650000000,0.000174193000000,0.011376160000000,0.000201057000000,0.000173008000000,0.010664259000000,0.000044613000000,0.000039872000000 +0.000038292000000,0.000146538000000,0.000037502000000,0.000033763000000,0.000685008000000,0.000038292000000,0.000187230000000,0.000030390000000,0.000307329000000,0.000025862000000,0.000039872000000,0.000463773000000,0.000414390000000,0.000172218000000,0.010863765000000,0.000244910000000,0.000173403000000,0.010750382000000,0.000044218000000,0.000040662000000 +0.000037502000000,0.000193156000000,0.000036316000000,0.000027245000000,0.000437304000000,0.000037107000000,0.000191575000000,0.000029996000000,0.000308514000000,0.000026850000000,0.000039082000000,0.000383181000000,0.000370933000000,0.000178144000000,0.011011913000000,0.000198291000000,0.000173008000000,0.011150974000000,0.000044613000000,0.000040268000000 +0.000037502000000,0.000144959000000,0.000036317000000,0.000027245000000,0.000322736000000,0.000037502000000,0.000222785000000,0.000030391000000,0.000359872000000,0.000026454500000,0.000039477000000,0.000414390000000,0.000449945000000,0.000171427000000,0.010957395000000,0.000198687000000,0.000211329000000,0.010358876000000,0.000044613000000,0.000037897000000 +0.000037502000000,0.000143773000000,0.000036317000000,0.000027639500000,0.000322736000000,0.000037897000000,0.000191181000000,0.000030391000000,0.000306934000000,0.000025862000000,0.000073452000000,0.000374095000000,0.000373699000000,0.000208563000000,0.010989789000000,0.000198292000000,0.000173798000000,0.010685197000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000144563000000,0.000035922000000,0.000027047500000,0.000323922000000,0.000038292000000,0.000188020000000,0.000030391000000,0.000453896000000,0.000026059500000,0.000042243000000,0.000410044000000,0.000378440000000,0.000171823000000,0.011125296000000,0.000233848000000,0.000173008000000,0.010765789000000,0.000044218000000,0.000038292000000 +0.000037501000000,0.000140218000000,0.000036711000000,0.000027245000000,0.000322736000000,0.000037107000000,0.000186835000000,0.000031181000000,0.000307329000000,0.000026652500000,0.000055675000000,0.000370933000000,0.000447181000000,0.000171823000000,0.011333492000000,0.000203033000000,0.000173008000000,0.011111074000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142983000000,0.000036712000000,0.000027047000000,0.000324711000000,0.000037502000000,0.000236218000000,0.000030785000000,0.000308514000000,0.000026849500000,0.000039477000000,0.000367774000000,0.000388711000000,0.000172612000000,0.010738926000000,0.000198291000000,0.000173403000000,0.010557197000000,0.000044218000000,0.000039082000000 +0.000039082000000,0.000190786000000,0.000036712000000,0.000027244500000,0.000331823000000,0.000037897000000,0.000225551000000,0.000030786000000,0.000307329000000,0.000026257000000,0.000039082000000,0.000418341000000,0.000724119000000,0.000172218000000,0.010964110000000,0.000198687000000,0.000207378000000,0.010362037000000,0.000043823000000,0.000038292000000 +0.000037897000000,0.000142983000000,0.000035921000000,0.000027245000000,0.000324317000000,0.000038687000000,0.000208169000000,0.000033157000000,0.000306934000000,0.000035146000000,0.000039477000000,0.000370934000000,0.000382391000000,0.000174193000000,0.011036012000000,0.000201057000000,0.000172217000000,0.010393642000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000036711000000,0.000027047000000,0.000323132000000,0.000037896000000,0.000190391000000,0.000031181000000,0.000310094000000,0.000026059500000,0.000039082000000,0.000416761000000,0.000390686000000,0.000174588000000,0.011318875000000,0.000200267000000,0.000178539000000,0.011451222000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000144169000000,0.000036317000000,0.000027244500000,0.000323526000000,0.000038687000000,0.000225947000000,0.000030785000000,0.000324712000000,0.000025862000000,0.000039477000000,0.000380810000000,0.000373699000000,0.000172218000000,0.010839666000000,0.000198292000000,0.000171033000000,0.011563814000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000143378000000,0.000036712000000,0.000027047500000,0.000324316000000,0.000037502000000,0.000189996000000,0.000030786000000,0.000308909000000,0.000026257000000,0.000039478000000,0.000377650000000,0.000420711000000,0.000172218000000,0.011011518000000,0.000233452000000,0.000174194000000,0.010605790000000,0.000064366000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000072267000000,0.000027047500000,0.000323921000000,0.000037897000000,0.000188415000000,0.000031181000000,0.000308118000000,0.000026257500000,0.000039872000000,0.000410440000000,0.000369749000000,0.000171032000000,0.011247370000000,0.000200662000000,0.000214884000000,0.010977543000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000178934000000,0.000036316000000,0.000027047000000,0.000324316000000,0.000037897000000,0.000190391000000,0.000030391000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000378835000000,0.000407279000000,0.000209354000000,0.010808062000000,0.000199477000000,0.000172613000000,0.010540605000000,0.000044613000000,0.000038291000000 +0.000037502000000,0.000140612000000,0.000036316000000,0.000045220000000,0.000325896000000,0.000108613000000,0.000224761000000,0.000047773000000,0.000307723000000,0.000026059500000,0.000078588000000,0.000402934000000,0.000369353000000,0.000173403000000,0.010931320000000,0.000199082000000,0.000173403000000,0.010750778000000,0.000044218000000,0.000057650000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000361452000000,0.000037106000000,0.000190786000000,0.000030391000000,0.000306934000000,0.000025862000000,0.000056069000000,0.000383181000000,0.000380020000000,0.000173798000000,0.011201147000000,0.000289551000000,0.000174193000000,0.011076308000000,0.000044613000000,0.000038292000000 +0.000038292000000,0.000144959000000,0.000036317000000,0.000027047500000,0.000338933000000,0.000037502000000,0.000189996000000,0.000029996000000,0.000357107000000,0.000026059500000,0.000039873000000,0.000393847000000,0.000444810000000,0.000173007000000,0.011409344000000,0.000299428000000,0.000172217000000,0.010516110000000,0.000044218000000,0.000038688000000 +0.000037502000000,0.000142193000000,0.000036316000000,0.000027047500000,0.000323921000000,0.000037897000000,0.000188811000000,0.000030391000000,0.000306934000000,0.000026454500000,0.000039477000000,0.000390292000000,0.000370143000000,0.000171823000000,0.010820308000000,0.000199477000000,0.000190390000000,0.010577740000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000142983000000,0.000037107000000,0.000027442000000,0.000324316000000,0.000037502000000,0.000222786000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000376464000000,0.000412020000000,0.000174193000000,0.010823073000000,0.000201847000000,0.000171823000000,0.011138332000000,0.000044218000000,0.000039477000000 +0.000037502000000,0.000220415000000,0.000036317000000,0.000027245000000,0.000325502000000,0.000035921000000,0.000188020000000,0.000032366000000,0.000308514000000,0.000026257500000,0.000039477000000,0.000410440000000,0.000371329000000,0.000178144000000,0.010734580000000,0.000200267000000,0.000174983000000,0.010429593000000,0.000043822000000,0.000037897000000 +0.000037897000000,0.000403724000000,0.000036316000000,0.000027047500000,0.000324317000000,0.000037107000000,0.000189996000000,0.000031181000000,0.000307724000000,0.000026059500000,0.000039872000000,0.000375674000000,0.000371329000000,0.000172218000000,0.011389591000000,0.000208169000000,0.000173008000000,0.010716802000000,0.000044218000000,0.000039082000000 +0.000076217000000,0.000388316000000,0.000036317000000,0.000027442000000,0.000324712000000,0.000037502000000,0.000187626000000,0.000030785000000,0.000307723000000,0.000025862000000,0.000039477000000,0.000410835000000,0.000407674000000,0.000171427000000,0.010879962000000,0.000189206000000,0.000173403000000,0.010900900000000,0.000044218000000,0.000038687000000 +0.000064366000000,0.000224366000000,0.000035922000000,0.000027245000000,0.000324316000000,0.000036317000000,0.000278884000000,0.000030391000000,0.000345255000000,0.000026652000000,0.000039478000000,0.000369354000000,0.000372909000000,0.000171823000000,0.010813987000000,0.000225551000000,0.000172218000000,0.010949889000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000155231000000,0.000036712000000,0.000027245000000,0.000324712000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000380020000000,0.000410834000000,0.000215675000000,0.010842431000000,0.000190391000000,0.000171427000000,0.010603815000000,0.000045008000000,0.000037897000000 +0.000037502000000,0.000142194000000,0.000036316000000,0.000027244500000,0.000324316000000,0.000037107000000,0.000187625000000,0.000030391000000,0.000306933000000,0.000042652000000,0.000039477000000,0.000419131000000,0.000367773000000,0.000172612000000,0.010879172000000,0.000187230000000,0.000174588000000,0.010567073000000,0.000044218000000,0.000038687000000 +0.000037501000000,0.000144169000000,0.000036317000000,0.000027244500000,0.000325107000000,0.000037502000000,0.000188810000000,0.000031576000000,0.000308909000000,0.000033170500000,0.000039477000000,0.000379625000000,0.000377650000000,0.000173008000000,0.011610826000000,0.000186045000000,0.000173402000000,0.010482531000000,0.000044218000000,0.000039872000000 +0.000037897000000,0.000141798000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037107000000,0.000224366000000,0.000029995000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000403724000000,0.000409649000000,0.000171428000000,0.010937641000000,0.000186835000000,0.000192761000000,0.012448752000000,0.000044613000000,0.000040663000000 +0.000038292000000,0.000144168000000,0.000036712000000,0.000027244500000,0.000322736000000,0.000037897000000,0.000187230000000,0.000029996000000,0.000308119000000,0.000026257000000,0.000039872000000,0.000370934000000,0.000372514000000,0.000171032000000,0.010919468000000,0.000186835000000,0.000202638000000,0.011068407000000,0.000045403000000,0.000038292000000 +0.000037897000000,0.000190786000000,0.000036316000000,0.000027244500000,0.000322736000000,0.000037106000000,0.000189206000000,0.000030391000000,0.000344860000000,0.000036529000000,0.000039478000000,0.000372514000000,0.000402934000000,0.000174983000000,0.011049839000000,0.000190390000000,0.000171823000000,0.010819518000000,0.000044218000000,0.000039477000000 +0.000037502000000,0.000143774000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000037107000000,0.000187231000000,0.000030390000000,0.000307328000000,0.000028232500000,0.000039872000000,0.000474045000000,0.000364613000000,0.000173008000000,0.011432654000000,0.000186835000000,0.000173403000000,0.010696654000000,0.000045008000000,0.000039082000000 +0.000037897000000,0.000141008000000,0.000051724000000,0.000053911500000,0.000323922000000,0.000037107000000,0.000235823000000,0.000030391000000,0.000308119000000,0.000032380500000,0.000039872000000,0.000413995000000,0.000375279000000,0.000171428000000,0.010900900000000,0.000187230000000,0.000174588000000,0.010322136000000,0.000080563000000,0.000039873000000 +0.000037897000000,0.000145354000000,0.000038292000000,0.000035541000000,0.000470884000000,0.000037502000000,0.000189206000000,0.000030391000000,0.000309304000000,0.000026059500000,0.000039477000000,0.000406490000000,0.000421897000000,0.000173799000000,0.011197592000000,0.000186835000000,0.000210933000000,0.012197888000000,0.000044218000000,0.000038292000000 +0.000037502000000,0.000142588000000,0.000052514000000,0.000027047000000,0.000341304000000,0.000037106000000,0.000187230000000,0.000030390000000,0.000309699000000,0.000026454500000,0.000039872000000,0.000378045000000,0.000363823000000,0.000173403000000,0.011185740000000,0.000189206000000,0.000171823000000,0.010618431000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027047500000,0.000323921000000,0.000037107000000,0.000189205000000,0.000030786000000,0.000307328000000,0.000026257000000,0.000039477000000,0.000551082000000,0.000411230000000,0.000208563000000,0.011038382000000,0.000189601000000,0.000170638000000,0.011370234000000,0.000044613000000,0.000040267000000 +0.000037502000000,0.000186440000000,0.000036317000000,0.000027047000000,0.000323922000000,0.000073848000000,0.000227131000000,0.000030786000000,0.000440464000000,0.000026257500000,0.000058836000000,0.000442440000000,0.000374094000000,0.000174193000000,0.011245000000000,0.000188811000000,0.000178144000000,0.010696654000000,0.000043823000000,0.000039477000000 +0.000037897000000,0.000144958000000,0.000036711000000,0.000027047000000,0.000323527000000,0.000037107000000,0.000186835000000,0.000030786000000,0.000585847000000,0.000025862000000,0.000039082000000,0.000448366000000,0.000367773000000,0.000170243000000,0.010661889000000,0.000206193000000,0.000173798000000,0.010814777000000,0.000044613000000,0.000074242000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027047500000,0.000324317000000,0.000037502000000,0.000227132000000,0.000030391000000,0.000308909000000,0.000026059500000,0.000039873000000,0.000379625000000,0.000378440000000,0.000171822000000,0.010745247000000,0.000190390000000,0.000210539000000,0.010568654000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000150490000000,0.000036712000000,0.000027640000000,0.000323922000000,0.000037897000000,0.000186835000000,0.000050144000000,0.000306933000000,0.000026059500000,0.000039478000000,0.000417550000000,0.000441255000000,0.000173008000000,0.011584357000000,0.000188020000000,0.000173798000000,0.010559568000000,0.000045403000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000038687000000,0.000223576000000,0.000030390000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000368563000000,0.000406094000000,0.000172613000000,0.010755123000000,0.000187230000000,0.000171033000000,0.010623962000000,0.000044218000000,0.000038292000000 +0.000038687000000,0.000143773000000,0.000036316000000,0.000027047500000,0.000324711000000,0.000037107000000,0.000188811000000,0.000031971000000,0.000308514000000,0.000035738500000,0.000039477000000,0.000381205000000,0.000372909000000,0.000174193000000,0.011325986000000,0.000224365000000,0.000170638000000,0.010436704000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000190785000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037896000000,0.000190786000000,0.000030786000000,0.000308514000000,0.000034356000000,0.000039872000000,0.000472069000000,0.000419921000000,0.000173008000000,0.011641246000000,0.000189206000000,0.000173798000000,0.010574580000000,0.000044613000000,0.000039082000000 +0.000038687000000,0.000142194000000,0.000035922000000,0.000027047000000,0.000324711000000,0.000037107000000,0.000189205000000,0.000030786000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000375675000000,0.000370933000000,0.000172218000000,0.011873147000000,0.000188810000000,0.000208168000000,0.010595123000000,0.000044613000000,0.000038687000000 +0.000079773000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000037502000000,0.000223575000000,0.000030786000000,0.000452316000000,0.000026455000000,0.000039478000000,0.000417156000000,0.000375280000000,0.000173403000000,0.011166777000000,0.000189601000000,0.000173798000000,0.010732605000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027640000000,0.000360662000000,0.000038687000000,0.000188415000000,0.000031181000000,0.000308119000000,0.000026257000000,0.000039872000000,0.000364217000000,0.000404119000000,0.000275724000000,0.010950678000000,0.000222786000000,0.000172613000000,0.010567864000000,0.000043822000000,0.000038687000000 +0.000037897000000,0.000143378000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000308909000000,0.000026059500000,0.000039082000000,0.000375279000000,0.000374884000000,0.000445601000000,0.010806085000000,0.000187626000000,0.000175773000000,0.010905642000000,0.000043823000000,0.000038687000000 +0.000037501000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000325107000000,0.000037897000000,0.000192761000000,0.000030390000000,0.000309304000000,0.000026454500000,0.000039477000000,0.000406489000000,0.000443625000000,0.000206983000000,0.011103567000000,0.000189996000000,0.000175379000000,0.010443419000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000228712000000,0.000036316000000,0.000036331000000,0.000324712000000,0.000037107000000,0.000227921000000,0.000029996000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000381996000000,0.000380416000000,0.000173798000000,0.010783568000000,0.000188020000000,0.000209354000000,0.010945543000000,0.000044218000000,0.000038292000000 +0.000038687000000,0.000142588000000,0.000036317000000,0.000033763500000,0.000323527000000,0.000037107000000,0.000190391000000,0.000030391000000,0.000308909000000,0.000025862000000,0.000039082000000,0.000425057000000,0.000393847000000,0.000172217000000,0.011400653000000,0.000231477000000,0.000174589000000,0.011141493000000,0.000044218000000,0.000039872000000 +0.000038292000000,0.000141798000000,0.000036712000000,0.000027442000000,0.000343675000000,0.000037502000000,0.000190391000000,0.000032761000000,0.000309699000000,0.000026257500000,0.000039478000000,0.000375280000000,0.000371723000000,0.000172218000000,0.011492702000000,0.000188415000000,0.000173798000000,0.011177443000000,0.000044613000000,0.000040267000000 +0.000037502000000,0.000141403000000,0.000036316000000,0.000027640000000,0.000343675000000,0.000037897000000,0.000190391000000,0.000033946000000,0.000306934000000,0.000026454500000,0.000039872000000,0.000415970000000,0.000378439000000,0.000220021000000,0.011233542000000,0.000187230000000,0.000172218000000,0.010501493000000,0.000064366000000,0.000039477000000 +0.000037502000000,0.000140218000000,0.000036317000000,0.000027245000000,0.000325897000000,0.000036711000000,0.000273353000000,0.000032761000000,0.000308909000000,0.000026257000000,0.000039477000000,0.000375279000000,0.000411625000000,0.000171427000000,0.011297542000000,0.000188810000000,0.000171428000000,0.010650037000000,0.000082144000000,0.000038687000000 +0.000038292000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000331033000000,0.000037107000000,0.000188810000000,0.000030786000000,0.000346835000000,0.000026059500000,0.000039477000000,0.000377255000000,0.000374884000000,0.000173403000000,0.010884308000000,0.000223180000000,0.000223576000000,0.010350975000000,0.000131131000000,0.000039478000000 +0.000037896000000,0.000214489000000,0.000055674000000,0.000027047000000,0.000323131000000,0.000037502000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000416366000000,0.000416761000000,0.000172217000000,0.010875221000000,0.000190391000000,0.000173403000000,0.010897740000000,0.000061601000000,0.000039872000000 +0.000037107000000,0.000142983000000,0.000088465000000,0.000027047500000,0.000323132000000,0.000035922000000,0.000186440000000,0.000031181000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000373699000000,0.000374489000000,0.000173008000000,0.011886184000000,0.000191181000000,0.000173798000000,0.010757099000000,0.000095576000000,0.000038292000000 +0.000038292000000,0.000142588000000,0.000071477000000,0.000027047000000,0.000360662000000,0.000056070000000,0.000223181000000,0.000030391000000,0.000307724000000,0.000026257500000,0.000039478000000,0.000500909000000,0.000366588000000,0.000173798000000,0.011264752000000,0.000190390000000,0.000172612000000,0.010461988000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000142983000000,0.000038292000000,0.000027047000000,0.000337748000000,0.000039477000000,0.000189601000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000075427000000,0.000514736000000,0.000538834000000,0.000172218000000,0.010793839000000,0.000260711000000,0.000260316000000,0.010462777000000,0.000048169000000,0.000039873000000 +0.000037897000000,0.000142589000000,0.000038687000000,0.000027245000000,0.000322341000000,0.000039872000000,0.000187230000000,0.000031180000000,0.000307724000000,0.000065763000000,0.000039873000000,0.000404118000000,0.000372909000000,0.000222785000000,0.010772111000000,0.000191181000000,0.000193156000000,0.010670975000000,0.000057650000000,0.000074637000000 +0.000037896000000,0.000142984000000,0.000050539000000,0.000027047500000,0.000324711000000,0.000049749000000,0.000187625000000,0.000031181000000,0.000333008000000,0.000026455000000,0.000039082000000,0.000367773000000,0.000413600000000,0.000171428000000,0.011442925000000,0.000188416000000,0.000172218000000,0.011154530000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000178933000000,0.000036316000000,0.000027244500000,0.000325106000000,0.000037502000000,0.000224761000000,0.000030391000000,0.000325107000000,0.000026059500000,0.000039477000000,0.000374094000000,0.000370144000000,0.000171428000000,0.011292011000000,0.000188020000000,0.000173008000000,0.010357297000000,0.000044218000000,0.000039872000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000038292000000,0.000189600000000,0.000029995000000,0.000308119000000,0.000026849500000,0.000039477000000,0.000440860000000,0.000406094000000,0.000173008000000,0.011309394000000,0.000225946000000,0.000172218000000,0.010528358000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000144563000000,0.000036317000000,0.000027047500000,0.000432168000000,0.000038292000000,0.000187625000000,0.000030391000000,0.000344464000000,0.000025664500000,0.000039477000000,0.000435329000000,0.000364218000000,0.000172218000000,0.010724308000000,0.000188810000000,0.000210934000000,0.010574580000000,0.000044218000000,0.000039082000000 +0.000038292000000,0.000142589000000,0.000035921000000,0.000036528500000,0.000344464000000,0.000037501000000,0.000188415000000,0.000047378000000,0.000307329000000,0.000026257000000,0.000039477000000,0.000449946000000,0.000376464000000,0.000209353000000,0.011246975000000,0.000191575000000,0.000173798000000,0.011516801000000,0.000044218000000,0.000039873000000 +0.000039082000000,0.000142984000000,0.000036712000000,0.000067936000000,0.000322736000000,0.000038292000000,0.000333403000000,0.000033946000000,0.000308909000000,0.000026850000000,0.000039478000000,0.000375674000000,0.000407280000000,0.000171428000000,0.011244604000000,0.000188810000000,0.000172218000000,0.010539024000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000142984000000,0.000036317000000,0.000029417500000,0.000324317000000,0.000037502000000,0.000201847000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000454292000000,0.000369353000000,0.000171428000000,0.011023370000000,0.000225551000000,0.000174193000000,0.010883913000000,0.000092810000000,0.000038292000000 +0.000074243000000,0.000174983000000,0.000036317000000,0.000035541000000,0.000325897000000,0.000037502000000,0.000190786000000,0.000030786000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000376070000000,0.000406885000000,0.000171032000000,0.012251220000000,0.000189995000000,0.000173403000000,0.010449346000000,0.000082143000000,0.000038292000000 +0.000038292000000,0.000353946000000,0.000036316000000,0.000027245000000,0.000322736000000,0.000037502000000,0.000205798000000,0.000030391000000,0.000310884000000,0.000026257000000,0.000039477000000,0.000453896000000,0.000380020000000,0.000171427000000,0.011922924000000,0.000188020000000,0.000213700000000,0.010661099000000,0.000085699000000,0.000039082000000 +0.000037502000000,0.000530539000000,0.000036317000000,0.000027442500000,0.000389107000000,0.000037502000000,0.000201057000000,0.000031180000000,0.000307724000000,0.000026454500000,0.000039477000000,0.000384366000000,0.000380810000000,0.000173008000000,0.011780307000000,0.000186835000000,0.000171428000000,0.010945937000000,0.000060811000000,0.000038292000000 +0.000037501000000,0.000160366000000,0.000036317000000,0.000027047000000,0.000325107000000,0.000037502000000,0.000186835000000,0.000030786000000,0.000308514000000,0.000026454500000,0.000039082000000,0.000373304000000,0.000410045000000,0.000171822000000,0.011211024000000,0.000223576000000,0.000171427000000,0.010549296000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000323921000000,0.000038292000000,0.000187625000000,0.000031970000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000410440000000,0.000365008000000,0.000175378000000,0.011108308000000,0.000188021000000,0.000175378000000,0.010337938000000,0.000045403000000,0.000038687000000 +0.000037897000000,0.000141798000000,0.000036316000000,0.000027047500000,0.000323922000000,0.000037107000000,0.000188416000000,0.000030786000000,0.000308514000000,0.000026849500000,0.000039873000000,0.000370143000000,0.000478786000000,0.000171822000000,0.011078284000000,0.000188415000000,0.000173798000000,0.010644506000000,0.000044218000000,0.000037897000000 +0.000037502000000,0.000146143000000,0.000056070000000,0.000027639500000,0.000323132000000,0.000037502000000,0.000187230000000,0.000030786000000,0.000344860000000,0.000026454500000,0.000039477000000,0.000439674000000,0.000373699000000,0.000172218000000,0.011343764000000,0.000186835000000,0.000294292000000,0.010778431000000,0.000044218000000,0.000039477000000 +0.000037107000000,0.000142193000000,0.000036317000000,0.000027047000000,0.000324317000000,0.000037107000000,0.000187230000000,0.000031181000000,0.000307724000000,0.000043442500000,0.000039477000000,0.000370934000000,0.000381600000000,0.000176564000000,0.010786333000000,0.000237798000000,0.000173798000000,0.010515716000000,0.000044612000000,0.000039873000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027047500000,0.000360662000000,0.000037502000000,0.000189995000000,0.000030391000000,0.000307329000000,0.000033960500000,0.000039477000000,0.000372119000000,0.000364613000000,0.000171823000000,0.011269098000000,0.000190786000000,0.000173798000000,0.010755518000000,0.000044218000000,0.000039477000000 +0.000037502000000,0.000178539000000,0.000036316000000,0.000027244500000,0.000322341000000,0.000038687000000,0.000229106000000,0.000030785000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000474440000000,0.000370934000000,0.000171032000000,0.011322431000000,0.000239774000000,0.000175773000000,0.010614876000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000142983000000,0.000036316000000,0.000027244500000,0.000323526000000,0.000036711000000,0.000187230000000,0.000030391000000,0.000306933000000,0.000026257000000,0.000039477000000,0.000381600000000,0.000401748000000,0.000171823000000,0.011649937000000,0.000189996000000,0.000175378000000,0.010677691000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000144563000000,0.000036317000000,0.000027047500000,0.000322342000000,0.000054884000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039082000000,0.000449551000000,0.000377254000000,0.000174193000000,0.010912752000000,0.000225156000000,0.000507625000000,0.010506235000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000143378000000,0.000036317000000,0.000045220500000,0.000323131000000,0.000037107000000,0.000189601000000,0.000030785000000,0.000307329000000,0.000026454500000,0.000075427000000,0.000374094000000,0.000408070000000,0.000173403000000,0.011240258000000,0.000188810000000,0.000630094000000,0.010466729000000,0.000044218000000,0.000038687000000 +0.000038291000000,0.000140218000000,0.000036316000000,0.000027245000000,0.000322736000000,0.000037502000000,0.000206983000000,0.000030391000000,0.000307724000000,0.000026454500000,0.000039873000000,0.000429403000000,0.000386341000000,0.000172217000000,0.010776456000000,0.000186045000000,0.000334193000000,0.010346235000000,0.000044613000000,0.000076218000000 +0.000037107000000,0.000143378000000,0.000036712000000,0.000027244500000,0.000395032000000,0.000036317000000,0.000203033000000,0.000031576000000,0.000309699000000,0.000025862000000,0.000039872000000,0.000366983000000,0.000370934000000,0.000174588000000,0.011130036000000,0.000186440000000,0.000322341000000,0.010465938000000,0.000044613000000,0.000037897000000 +0.000037897000000,0.000179724000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000509601000000,0.000026060000000,0.000039477000000,0.000383971000000,0.000409650000000,0.000171822000000,0.010919074000000,0.000222390000000,0.000443230000000,0.010748407000000,0.000044613000000,0.000039082000000 +0.000037502000000,0.000143378000000,0.000035921000000,0.000027245000000,0.000324711000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000529353000000,0.000026257000000,0.000039477000000,0.000445206000000,0.000372514000000,0.000172218000000,0.011096061000000,0.000186440000000,0.000237403000000,0.010556012000000,0.000095971000000,0.000037897000000 +0.000037897000000,0.000143773000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000037897000000,0.000229106000000,0.000031181000000,0.000361452000000,0.000026257000000,0.000039477000000,0.000373699000000,0.000410440000000,0.000209749000000,0.011134777000000,0.000187230000000,0.000204218000000,0.010488062000000,0.000043823000000,0.000038292000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037502000000,0.000185650000000,0.000030786000000,0.000309304000000,0.000026059500000,0.000039477000000,0.000458637000000,0.000373699000000,0.000171428000000,0.011189690000000,0.000188416000000,0.000203822000000,0.010618432000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027245000000,0.000363822000000,0.000037106000000,0.000190390000000,0.000030786000000,0.000307329000000,0.000026454500000,0.000039873000000,0.000374490000000,0.000381996000000,0.000171032000000,0.010916703000000,0.000222786000000,0.000458637000000,0.010761444000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027442500000,0.000325502000000,0.000039082000000,0.000185650000000,0.000064761000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000459032000000,0.000518291000000,0.000173008000000,0.010793444000000,0.000188810000000,0.000329452000000,0.010713247000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000162341000000,0.000035922000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000207773000000,0.000047379000000,0.000310094000000,0.000025862500000,0.000039477000000,0.000375279000000,0.000371724000000,0.000173008000000,0.010961345000000,0.000188415000000,0.000186835000000,0.010617642000000,0.000044218000000,0.000039082000000 +0.000092415000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000325106000000,0.000037502000000,0.000383180000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000039082000000,0.000370539000000,0.000424662000000,0.000172613000000,0.011429492000000,0.000186835000000,0.000183675000000,0.010376259000000,0.000044612000000,0.000038687000000 +0.000087280000000,0.000141008000000,0.000036317000000,0.000027442500000,0.000323526000000,0.000037897000000,0.000187230000000,0.000031181000000,0.000385551000000,0.000036331000000,0.000039477000000,0.000461798000000,0.000374489000000,0.000173008000000,0.011574085000000,0.000227527000000,0.000182490000000,0.011426727000000,0.000044613000000,0.000039477000000 +0.000075823000000,0.000142193000000,0.000035921000000,0.000027047000000,0.000322341000000,0.000037502000000,0.000256366000000,0.000032761000000,0.000308119000000,0.000034948500000,0.000039477000000,0.000382785000000,0.000455082000000,0.000172613000000,0.010654777000000,0.000189996000000,0.000249254000000,0.010387716000000,0.000044218000000,0.000038687000000 +0.000040268000000,0.000142588000000,0.000036316000000,0.000027047000000,0.000360267000000,0.000038292000000,0.000186440000000,0.000030391000000,0.000308514000000,0.000026454500000,0.000039082000000,0.000462588000000,0.000373304000000,0.000171033000000,0.011299913000000,0.000190391000000,0.000183280000000,0.010508604000000,0.000044613000000,0.000039872000000 +0.000040267000000,0.000142588000000,0.000035922000000,0.000027442500000,0.000323131000000,0.000037502000000,0.000187625000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000039872000000,0.000366588000000,0.000371329000000,0.000171033000000,0.011057740000000,0.000188810000000,0.000182094000000,0.010618827000000,0.000044218000000,0.000037897000000 +0.000052119000000,0.000142588000000,0.000072663000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000188416000000,0.000030390000000,0.000308119000000,0.000026257500000,0.000039477000000,0.000526588000000,0.000456267000000,0.000174983000000,0.011419616000000,0.000227921000000,0.000182884000000,0.011066432000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000193946000000,0.000037107000000,0.000063195500000,0.000325106000000,0.000036712000000,0.000224761000000,0.000031576000000,0.000307328000000,0.000026652000000,0.000039872000000,0.000648662000000,0.000373699000000,0.000173008000000,0.010832950000000,0.000186440000000,0.000183279000000,0.011112654000000,0.000044218000000,0.000040268000000 +0.000038687000000,0.000142588000000,0.000036316000000,0.000027047500000,0.000374094000000,0.000037107000000,0.000187230000000,0.000030785000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000402538000000,0.000455082000000,0.000171428000000,0.011235913000000,0.000188416000000,0.000216465000000,0.010566284000000,0.000044218000000,0.000040267000000 +0.000037107000000,0.000156415000000,0.000035922000000,0.000027047000000,0.000322737000000,0.000038687000000,0.000187231000000,0.000030391000000,0.000309304000000,0.000026059500000,0.000039082000000,0.000383575000000,0.000372119000000,0.000171033000000,0.010773296000000,0.000190391000000,0.000183279000000,0.010671370000000,0.000044613000000,0.000039872000000 +0.000038687000000,0.000151280000000,0.000036317000000,0.000027047000000,0.000403329000000,0.000058045000000,0.000188020000000,0.000030786000000,0.000308514000000,0.000026850000000,0.000039478000000,0.000406885000000,0.000419921000000,0.000174193000000,0.011319666000000,0.000291132000000,0.000185650000000,0.010998481000000,0.000043823000000,0.000038687000000 +0.000037897000000,0.000150884000000,0.000036317000000,0.000027047500000,0.000323526000000,0.000037897000000,0.000227131000000,0.000030785000000,0.000345255000000,0.000025862000000,0.000039477000000,0.000378045000000,0.000371723000000,0.000179724000000,0.010928950000000,0.000223576000000,0.000183279000000,0.011344160000000,0.000044613000000,0.000039478000000 +0.000037502000000,0.000148514000000,0.000036711000000,0.000027244500000,0.000323527000000,0.000038687000000,0.000187230000000,0.000029996000000,0.000306933000000,0.000026059500000,0.000077798000000,0.000408464000000,0.000376860000000,0.000172613000000,0.010907221000000,0.000188020000000,0.000282045000000,0.010759864000000,0.000044218000000,0.000039477000000 +0.000037897000000,0.000151675000000,0.000036317000000,0.000027244500000,0.000325897000000,0.000037107000000,0.000187230000000,0.000031181000000,0.000308119000000,0.000026059500000,0.000056070000000,0.000372514000000,0.000447181000000,0.000171033000000,0.011000456000000,0.000188416000000,0.000389897000000,0.010893394000000,0.000115724000000,0.000110588000000 +0.000038292000000,0.000151279000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000037897000000,0.000189206000000,0.000031181000000,0.000308119000000,0.000027442000000,0.000039872000000,0.000376464000000,0.000376069000000,0.000173403000000,0.010798185000000,0.000227131000000,0.000173403000000,0.010575765000000,0.000044613000000,0.000075033000000 +0.000037502000000,0.000152070000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000038292000000,0.000225946000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000416761000000,0.000411230000000,0.000172613000000,0.011506135000000,0.000188020000000,0.000173798000000,0.011749493000000,0.000045008000000,0.000059231000000 +0.000037502000000,0.000154835000000,0.000036316000000,0.000027639500000,0.000360267000000,0.000037502000000,0.000187230000000,0.000030785000000,0.000308119000000,0.000026455000000,0.000039477000000,0.000375675000000,0.000427033000000,0.000255971000000,0.011060506000000,0.000189205000000,0.000247279000000,0.010781987000000,0.000044218000000,0.000041847000000 +0.000038292000000,0.000148909000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000038292000000,0.000189995000000,0.000030786000000,0.000308514000000,0.000026849500000,0.000039477000000,0.000404514000000,0.000409255000000,0.000173008000000,0.010704555000000,0.000187625000000,0.000317601000000,0.011029691000000,0.000044217000000,0.000053304000000 +0.000038292000000,0.000152464000000,0.000036317000000,0.000027245000000,0.000323131000000,0.000038292000000,0.000187625000000,0.000030786000000,0.000307724000000,0.000025862000000,0.000039477000000,0.000381600000000,0.000387526000000,0.000172218000000,0.011152555000000,0.000224761000000,0.000195131000000,0.010693494000000,0.000044217000000,0.000040267000000 +0.000037502000000,0.000152859000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000037502000000,0.000225551000000,0.000031181000000,0.000308119000000,0.000044035000000,0.000039477000000,0.000387922000000,0.000372119000000,0.000174193000000,0.011263962000000,0.000189206000000,0.000218835000000,0.010548506000000,0.000045008000000,0.000038687000000 +0.000074242000000,0.000152465000000,0.000036316000000,0.000027047000000,0.000323921000000,0.000036317000000,0.000189206000000,0.000030391000000,0.000306538000000,0.000026257000000,0.000039872000000,0.000412415000000,0.000410045000000,0.000172217000000,0.011385641000000,0.000190391000000,0.000306144000000,0.010805295000000,0.000044613000000,0.000041057000000 +0.000037502000000,0.000151675000000,0.000035922000000,0.000027442500000,0.000323921000000,0.000036712000000,0.000188415000000,0.000030785000000,0.000308909000000,0.000025664500000,0.000039477000000,0.000380810000000,0.000374884000000,0.000173403000000,0.010836900000000,0.000189601000000,0.000187626000000,0.010491617000000,0.000044613000000,0.000040267000000 +0.000037897000000,0.000150884000000,0.000035922000000,0.000036923500000,0.000417946000000,0.000037502000000,0.000188415000000,0.000047773000000,0.000309304000000,0.000026257000000,0.000039478000000,0.000408070000000,0.000446786000000,0.000173403000000,0.011223666000000,0.000258737000000,0.000195527000000,0.010713642000000,0.000044218000000,0.000038292000000 +0.000037897000000,0.000150884000000,0.000036317000000,0.000035146000000,0.000322341000000,0.000037502000000,0.000224366000000,0.000030786000000,0.000308909000000,0.000027047500000,0.000039477000000,0.000376070000000,0.000374489000000,0.000171823000000,0.011226826000000,0.000188811000000,0.000221205000000,0.011042333000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000150490000000,0.000035921000000,0.000027244500000,0.000325896000000,0.000038292000000,0.000188415000000,0.000030391000000,0.000345649000000,0.000026257000000,0.000039477000000,0.000370144000000,0.000366588000000,0.000173798000000,0.011129641000000,0.000188811000000,0.000174193000000,0.010949888000000,0.000044218000000,0.000039082000000 +0.000037502000000,0.000150489000000,0.000036317000000,0.000027047500000,0.000324316000000,0.000037502000000,0.000188415000000,0.000030785000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000420711000000,0.000411230000000,0.000172613000000,0.010881147000000,0.000188810000000,0.000170638000000,0.010891024000000,0.000043823000000,0.000039082000000 +0.000038292000000,0.000148909000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037107000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000026454500000,0.000039477000000,0.000445996000000,0.000371724000000,0.000175773000000,0.011035616000000,0.000223970000000,0.000173798000000,0.010573000000000,0.000045008000000,0.000038292000000 +0.000037897000000,0.000150885000000,0.000089650000000,0.000027047000000,0.000325501000000,0.000036711000000,0.000225156000000,0.000031181000000,0.000308909000000,0.000026059500000,0.000039477000000,0.000410835000000,0.000457057000000,0.000172612000000,0.011604110000000,0.000188415000000,0.000174588000000,0.010401148000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000151674000000,0.000036712000000,0.000027244500000,0.000325106000000,0.000037502000000,0.000187230000000,0.000031181000000,0.000307724000000,0.000026257500000,0.000039083000000,0.000379230000000,0.000369353000000,0.000173403000000,0.010781197000000,0.000189205000000,0.000214489000000,0.011051419000000,0.000044613000000,0.000038687000000 +0.000038292000000,0.000153255000000,0.000036317000000,0.000027837500000,0.000322736000000,0.000038687000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000026652000000,0.000039477000000,0.000459427000000,0.000372514000000,0.000174588000000,0.011001246000000,0.000189600000000,0.000172613000000,0.010454087000000,0.000044613000000,0.000039872000000 +0.000037896000000,0.000149699000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037106000000,0.000186440000000,0.000030786000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000377254000000,0.000372119000000,0.000172613000000,0.011257641000000,0.000225551000000,0.000175379000000,0.010629099000000,0.000043823000000,0.000039082000000 +0.000037897000000,0.000152860000000,0.000036317000000,0.000027245000000,0.000323921000000,0.000073452000000,0.000186835000000,0.000029996000000,0.000303378000000,0.000026454500000,0.000039477000000,0.000399774000000,0.000368563000000,0.000217255000000,0.011672851000000,0.000186835000000,0.000171428000000,0.010599469000000,0.000097551000000,0.000065947000000 +0.000038292000000,0.000150884000000,0.000036317000000,0.000027245000000,0.000322342000000,0.000037502000000,0.000203033000000,0.000029995000000,0.000306934000000,0.000026059500000,0.000058835000000,0.000375675000000,0.000651823000000,0.000171822000000,0.011175469000000,0.000189996000000,0.000174983000000,0.010602234000000,0.000061996000000,0.000039082000000 +0.000037502000000,0.000152070000000,0.000036316000000,0.000027442000000,0.000363033000000,0.000037107000000,0.000186440000000,0.000030391000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000373304000000,0.000457057000000,0.000171428000000,0.010931321000000,0.000189206000000,0.000189995000000,0.012528158000000,0.000045008000000,0.000040267000000 +0.000037897000000,0.000151675000000,0.000036316000000,0.000027047000000,0.000336564000000,0.000038292000000,0.000186835000000,0.000031576000000,0.000306934000000,0.000025862000000,0.000039477000000,0.000417946000000,0.000409650000000,0.000172613000000,0.010752753000000,0.000305749000000,0.000173798000000,0.011131617000000,0.000044613000000,0.000039873000000 +0.000037502000000,0.000148909000000,0.000036317000000,0.000027047500000,0.000322736000000,0.000037501000000,0.000207379000000,0.000030391000000,0.000306538000000,0.000049368000000,0.000039872000000,0.000367378000000,0.000364613000000,0.000170637000000,0.011288851000000,0.000186835000000,0.000171822000000,0.010997691000000,0.000044613000000,0.000039082000000 +0.000037107000000,0.000151279000000,0.000036712000000,0.000027047000000,0.000324316000000,0.000038292000000,0.000200267000000,0.000029996000000,0.000308909000000,0.000026059500000,0.000039477000000,0.000404119000000,0.000406489000000,0.000317600000000,0.010909592000000,0.000189205000000,0.000174193000000,0.010768950000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000203428000000,0.000036316000000,0.000027244500000,0.000324711000000,0.000037502000000,0.000247675000000,0.000031576000000,0.000344860000000,0.000026849500000,0.000039082000000,0.000497354000000,0.000367378000000,0.000253206000000,0.010927369000000,0.000189205000000,0.000195526000000,0.011843517000000,0.000045008000000,0.000039872000000 +0.000037897000000,0.000152070000000,0.000035922000000,0.000027047500000,0.000321156000000,0.000037502000000,0.000271378000000,0.000031576000000,0.000322341000000,0.000026454500000,0.000039478000000,0.000412020000000,0.000366192000000,0.000172218000000,0.011506135000000,0.000188020000000,0.000176168000000,0.010701395000000,0.000044217000000,0.000040267000000 +0.000037502000000,0.000153650000000,0.000036317000000,0.000053516500000,0.000323132000000,0.000037501000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000026454500000,0.000039477000000,0.000368168000000,0.000410044000000,0.000173008000000,0.010980703000000,0.000190785000000,0.000172612000000,0.011197196000000,0.000044612000000,0.000039872000000 +0.000038291000000,0.000151280000000,0.000036317000000,0.000027047000000,0.000325107000000,0.000037897000000,0.000189600000000,0.000030391000000,0.000306538000000,0.000026257000000,0.000039477000000,0.000366193000000,0.000363823000000,0.000172613000000,0.011237888000000,0.000187230000000,0.000173008000000,0.010976752000000,0.000044613000000,0.000040663000000 +0.000037502000000,0.000151279000000,0.000036316000000,0.000027245000000,0.000325897000000,0.000036317000000,0.000188810000000,0.000031181000000,0.000306538000000,0.000025862000000,0.000039477000000,0.000413996000000,0.000449551000000,0.000171427000000,0.011138728000000,0.000295082000000,0.000173008000000,0.011086975000000,0.000044218000000,0.000038687000000 +0.000076218000000,0.000152070000000,0.000036317000000,0.000027047500000,0.000324712000000,0.000037502000000,0.000203428000000,0.000030390000000,0.000309304000000,0.000026652500000,0.000039477000000,0.000370539000000,0.000363032000000,0.000171428000000,0.010940011000000,0.000187230000000,0.000209353000000,0.010660704000000,0.000044613000000,0.000038687000000 +0.000054885000000,0.000152070000000,0.000036317000000,0.000027047000000,0.000325107000000,0.000037897000000,0.000188811000000,0.000030786000000,0.000307328000000,0.000026059500000,0.000039477000000,0.000412415000000,0.000410834000000,0.000175378000000,0.011076308000000,0.000187230000000,0.000173008000000,0.010579715000000,0.000044218000000,0.000038687000000 +0.000038292000000,0.000151279000000,0.000036316000000,0.000027244500000,0.000324317000000,0.000037502000000,0.000187625000000,0.000031181000000,0.000307329000000,0.000026652000000,0.000039873000000,0.000383576000000,0.000370538000000,0.000171033000000,0.011278185000000,0.000189601000000,0.000174193000000,0.010438678000000,0.000044613000000,0.000041058000000 +0.000037502000000,0.000153650000000,0.000036711000000,0.000027245000000,0.000361453000000,0.000037107000000,0.000188810000000,0.000049749000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000371329000000,0.000369354000000,0.000173008000000,0.010966875000000,0.000208564000000,0.000173798000000,0.011339419000000,0.000045008000000,0.000040267000000 +0.000037501000000,0.000149699000000,0.000036317000000,0.000028034500000,0.000324317000000,0.000037897000000,0.000223180000000,0.000031971000000,0.000307724000000,0.000026455000000,0.000039477000000,0.000409649000000,0.000409254000000,0.000172217000000,0.010875617000000,0.000186835000000,0.000173798000000,0.010580111000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000150094000000,0.000098342000000,0.000027047500000,0.000393057000000,0.000038292000000,0.000189206000000,0.000030786000000,0.000307329000000,0.000026454500000,0.000039082000000,0.000374095000000,0.000427427000000,0.000173403000000,0.011318876000000,0.000188416000000,0.000210143000000,0.010590382000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000150885000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037107000000,0.000187230000000,0.000030786000000,0.000308119000000,0.000026652000000,0.000039082000000,0.000406094000000,0.000409255000000,0.000172612000000,0.014384157000000,0.000190391000000,0.000171823000000,0.010855864000000,0.000044218000000,0.000040267000000 +0.000037502000000,0.000157205000000,0.000036316000000,0.000027047000000,0.000325501000000,0.000038292000000,0.000188415000000,0.000030786000000,0.000348415000000,0.000026850000000,0.000039082000000,0.000368168000000,0.000462588000000,0.000173403000000,0.011207074000000,0.000186045000000,0.000173798000000,0.010450926000000,0.000078193000000,0.000038687000000 +0.000038292000000,0.000151280000000,0.000036712000000,0.000027047500000,0.000323921000000,0.000038292000000,0.000226342000000,0.000030786000000,0.000306934000000,0.000026454500000,0.000039477000000,0.000373699000000,0.000417551000000,0.000211723000000,0.011465049000000,0.000188415000000,0.000174193000000,0.010802530000000,0.000075428000000,0.000040663000000 +0.000037501000000,0.000152070000000,0.000035922000000,0.000027047500000,0.000324711000000,0.000056860000000,0.000189601000000,0.000030786000000,0.000307329000000,0.000044627500000,0.000039478000000,0.000405304000000,0.000390292000000,0.000171428000000,0.012563714000000,0.000188415000000,0.000172613000000,0.010770135000000,0.000043823000000,0.000082539000000 +0.000037502000000,0.000151675000000,0.000036316000000,0.000027047000000,0.000324316000000,0.000087674000000,0.000187625000000,0.000030390000000,0.000308909000000,0.000026257000000,0.000039082000000,0.000381600000000,0.000374094000000,0.000173007000000,0.011964406000000,0.000187231000000,0.000222785000000,0.010882333000000,0.000044613000000,0.000038292000000 +0.000037502000000,0.000152070000000,0.000035921000000,0.000027047000000,0.000323526000000,0.000037107000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000025862000000,0.000059625000000,0.000525798000000,0.000399773000000,0.000172613000000,0.011146234000000,0.000188810000000,0.000198687000000,0.010668209000000,0.000044218000000,0.000038687000000 +0.000037502000000,0.000148514000000,0.000036317000000,0.000045022500000,0.000330242000000,0.000037502000000,0.000265057000000,0.000030786000000,0.000310490000000,0.000026454500000,0.000039082000000,0.000395428000000,0.000366588000000,0.000173008000000,0.011391962000000,0.000189995000000,0.000182489000000,0.011096851000000,0.000044613000000,0.000039082000000 +0.000038292000000,0.000151279000000,0.000036317000000,0.000027244500000,0.000325896000000,0.000037501000000,0.000202243000000,0.000030785000000,0.000422687000000,0.000026454500000,0.000039477000000,0.000410835000000,0.000406094000000,0.000173403000000,0.011146234000000,0.000188020000000,0.000184069000000,0.010595123000000,0.000077798000000,0.000038687000000 +0.000038687000000,0.000152860000000,0.000036316000000,0.000027442500000,0.000324711000000,0.000037107000000,0.000187230000000,0.000031181000000,0.000321156000000,0.000026455000000,0.000039477000000,0.000379625000000,0.000369353000000,0.000173403000000,0.011785048000000,0.000191575000000,0.000182489000000,0.010488852000000,0.000085305000000,0.000038291000000 +0.000037502000000,0.000150884000000,0.000036317000000,0.000027047000000,0.000408464000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000026059500000,0.000039477000000,0.000366983000000,0.000371329000000,0.000172613000000,0.011184160000000,0.000188415000000,0.000218835000000,0.010678481000000,0.000061206000000,0.000039477000000 +0.000038292000000,0.000148909000000,0.000036317000000,0.000027047000000,0.000327082000000,0.000037502000000,0.000215280000000,0.000030390000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000441649000000,0.000421897000000,0.000175379000000,0.010918679000000,0.000326687000000,0.000182094000000,0.011306628000000,0.000046983000000,0.000039082000000 +0.000037502000000,0.000151675000000,0.000036317000000,0.000027442500000,0.000324317000000,0.000037896000000,0.000186835000000,0.000030391000000,0.000307328000000,0.000026059500000,0.000039478000000,0.000374489000000,0.000379625000000,0.000171823000000,0.011494678000000,0.000189206000000,0.000184465000000,0.010565099000000,0.000058835000000,0.000038687000000 +0.000037897000000,0.000156020000000,0.000036316000000,0.000027244500000,0.000325502000000,0.000037897000000,0.000189205000000,0.000030786000000,0.000307724000000,0.000026059500000,0.000039873000000,0.000410440000000,0.000459032000000,0.000174588000000,0.011094481000000,0.000188021000000,0.000184464000000,0.011071567000000,0.000044613000000,0.000039477000000 +0.000037106000000,0.000152070000000,0.000036317000000,0.000027244500000,0.000323527000000,0.000038687000000,0.000187230000000,0.000030786000000,0.000365403000000,0.000025862000000,0.000039477000000,0.000376465000000,0.000375279000000,0.000174194000000,0.010872456000000,0.000225156000000,0.000184070000000,0.010401543000000,0.000044613000000,0.000038687000000 +0.000037897000000,0.000196711000000,0.000036317000000,0.000027442500000,0.000323132000000,0.000038687000000,0.000261107000000,0.000032761000000,0.000310094000000,0.000026850000000,0.000039477000000,0.000372909000000,0.000386341000000,0.000172613000000,0.011450036000000,0.000190785000000,0.000186440000000,0.010675320000000,0.000044613000000,0.000038292000000 +0.000057650000000,0.000149700000000,0.000036712000000,0.000027245000000,0.000325107000000,0.000036712000000,0.000186440000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000409255000000,0.000375674000000,0.000173798000000,0.011327962000000,0.000189600000000,0.000183675000000,0.010873247000000,0.000043823000000,0.000038687000000 +0.000054490000000,0.000151279000000,0.000035921000000,0.000027244500000,0.000322736000000,0.000038687000000,0.000188811000000,0.000030391000000,0.000355921000000,0.000025862000000,0.000039477000000,0.000376859000000,0.000372119000000,0.000171428000000,0.011341789000000,0.000188020000000,0.000189995000000,0.010633839000000,0.000045403000000,0.000038292000000 +0.000056859000000,0.000152465000000,0.000036317000000,0.000027245000000,0.000324711000000,0.000037107000000,0.000190391000000,0.000031576000000,0.000308119000000,0.000026652000000,0.000039872000000,0.000441254000000,0.000412020000000,0.000173403000000,0.010744061000000,0.000260316000000,0.000185255000000,0.010694678000000,0.000115329000000,0.000038687000000 +0.000053700000000,0.000149304000000,0.000072663000000,0.000027245000000,0.000324316000000,0.000037502000000,0.000237403000000,0.000031181000000,0.000307724000000,0.000026652000000,0.000039478000000,0.000380811000000,0.000365798000000,0.000171428000000,0.010844802000000,0.000188020000000,0.000186835000000,0.010487667000000,0.000044218000000,0.000039082000000 +0.000040267000000,0.000152070000000,0.000036712000000,0.000027244500000,0.000323131000000,0.000037897000000,0.000187230000000,0.000030390000000,0.000357897000000,0.000025862500000,0.000039477000000,0.000462983000000,0.000407674000000,0.000172613000000,0.010867716000000,0.000318785000000,0.000185650000000,0.011136753000000,0.000044218000000,0.000038687000000 +0.000037897000000,0.000152859000000,0.000036316000000,0.000027244500000,0.000322736000000,0.000038687000000,0.000186835000000,0.000030391000000,0.000309699000000,0.000043639500000,0.000039082000000,0.000379230000000,0.000377650000000,0.000172612000000,0.013254281000000,0.000187626000000,0.000186045000000,0.010707321000000,0.000044613000000,0.000039082000000 +0.000037897000000,0.000153650000000,0.000036711000000,0.000027245000000,0.000651823000000,0.000037897000000,0.000191181000000,0.000047379000000,0.000307724000000,0.000025862000000,0.000039082000000,0.000419922000000,0.000375279000000,0.000171428000000,0.011272258000000,0.000187230000000,0.000184860000000,0.010406284000000,0.000044218000000,0.000038292000000 +0.000037896000000,0.000156811000000,0.000036712000000,0.000037121500000,0.000340514000000,0.000037897000000,0.000188811000000,0.000030391000000,0.000310094000000,0.000026454500000,0.000039082000000,0.000410045000000,0.000679476000000,0.000173008000000,0.010979913000000,0.000188810000000,0.000181699000000,0.010791864000000,0.000044218000000,0.000039082000000 +0.000037897000000,0.000143378000000,0.000036712000000,0.000079195500000,0.000324316000000,0.000056859000000,0.000189206000000,0.000030390000000,0.000306934000000,0.000026849500000,0.000039477000000,0.000372514000000,0.000387131000000,0.000171033000000,0.011005987000000,0.000188415000000,0.000219230000000,0.010977937000000,0.000044613000000,0.000038687000000 +0.000037502000000,0.000142588000000,0.000036316000000,0.000052923500000,0.000325106000000,0.000040267000000,0.000189601000000,0.000030391000000,0.000307328000000,0.000026454500000,0.000039082000000,0.000409254000000,0.000417156000000,0.000172613000000,0.011213000000000,0.000186835000000,0.000182884000000,0.011158481000000,0.000043823000000,0.000075033000000 +0.000037897000000,0.000178934000000,0.000036317000000,0.000036923500000,0.000323921000000,0.000289156000000,0.000189206000000,0.000030391000000,0.000345650000000,0.000026059500000,0.000039082000000,0.000383180000000,0.000373304000000,0.000171822000000,0.011233542000000,0.000202637000000,0.000185255000000,0.010902085000000,0.000044613000000,0.000039477000000 +0.000037897000000,0.000145353000000,0.000036712000000,0.000034356000000,0.000325106000000,0.000041058000000,0.000203033000000,0.000030785000000,0.000307329000000,0.000026257500000,0.000072662000000,0.000404514000000,0.000408069000000,0.000171033000000,0.012453097000000,0.000189206000000,0.000182884000000,0.010761444000000,0.000044613000000,0.000039872000000 +0.000037897000000,0.000142193000000,0.000036316000000,0.000027244500000,0.000322341000000,0.000039477000000,0.000188416000000,0.000030786000000,0.000309305000000,0.000026454500000,0.000039477000000,0.000394637000000,0.000371723000000,0.000173798000000,0.011284901000000,0.000189206000000,0.000183674000000,0.010927369000000,0.000044613000000,0.000039477000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000322737000000,0.000039872000000,0.000190786000000,0.000031181000000,0.000309304000000,0.000026059500000,0.000039082000000,0.000371724000000,0.000395032000000,0.000173008000000,0.011387221000000,0.000188811000000,0.000184465000000,0.010404704000000,0.000044217000000,0.000038687000000 +0.000038292000000,0.000142588000000,0.000036712000000,0.000027245000000,0.000325502000000,0.000040267000000,0.000186440000000,0.000030391000000,0.000307724000000,0.000026454500000,0.000039873000000,0.000443625000000,0.000380810000000,0.000174193000000,0.011019814000000,0.000187230000000,0.000182094000000,0.010447765000000,0.000058836000000,0.000039872000000 +0.000038292000000,0.000142983000000,0.000036317000000,0.000028034500000,0.000323922000000,0.000039873000000,0.000333403000000,0.000030786000000,0.000359082000000,0.000026454500000,0.000039477000000,0.000376465000000,0.000385946000000,0.000171033000000,0.010792259000000,0.000189995000000,0.000184464000000,0.010650432000000,0.000046983000000,0.000039082000000 +0.000037897000000,0.000178144000000,0.000036316000000,0.000027245000000,0.000324712000000,0.000078193000000,0.000201452000000,0.000030785000000,0.000345255000000,0.000026652500000,0.000039477000000,0.000415971000000,0.000426242000000,0.000174588000000,0.011447270000000,0.000189205000000,0.000183280000000,0.010586037000000,0.000047378000000,0.000039872000000 +0.000037897000000,0.000142983000000,0.000036317000000,0.000027245000000,0.000325502000000,0.000053304000000,0.000187230000000,0.000030786000000,0.000307328000000,0.000025862000000,0.000039477000000,0.000376069000000,0.000366193000000,0.000173008000000,0.011501394000000,0.000187625000000,0.000184069000000,0.010551666000000,0.000046983000000,0.000040267000000 +0.000037896000000,0.000142588000000,0.000036317000000,0.000027244500000,0.000322341000000,0.000052119000000,0.000222391000000,0.000030786000000,0.000307329000000,0.000026059500000,0.000039477000000,0.000367773000000,0.000410045000000,0.000172218000000,0.010704160000000,0.000257551000000,0.000182885000000,0.010350580000000,0.000046588000000,0.000039082000000 +0.000037897000000,0.000143378000000,0.000036316000000,0.000027244500000,0.000323526000000,0.000038292000000,0.000190391000000,0.000030391000000,0.000309304000000,0.000026059500000,0.000039477000000,0.000417551000000,0.000379625000000,0.000172613000000,0.011113049000000,0.000186440000000,0.000182489000000,0.010516111000000,0.000047379000000,0.000038688000000 +0.000038292000000,0.000143773000000,0.000036316000000,0.000045220000000,0.000325106000000,0.000037501000000,0.000187625000000,0.000030391000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000388711000000,0.000377650000000,0.000173403000000,0.010870086000000,0.000189600000000,0.000228711000000,0.010668605000000,0.000047378000000,0.000039082000000 +0.000056465000000,0.000142588000000,0.000035922000000,0.000027245000000,0.000324316000000,0.000036712000000,0.000186440000000,0.000031181000000,0.000307329000000,0.000044035000000,0.000039477000000,0.000428613000000,0.000401353000000,0.000173008000000,0.011235913000000,0.000206983000000,0.000183675000000,0.010965295000000,0.000047379000000,0.000040267000000 +0.000089255000000,0.000140218000000,0.000035922000000,0.000027245000000,0.000370539000000,0.000073452000000,0.000222391000000,0.000030391000000,0.000345650000000,0.000026454500000,0.000039477000000,0.000381996000000,0.000374884000000,0.000172217000000,0.011255665000000,0.000187230000000,0.000434933000000,0.010572209000000,0.000046983000000,0.000037897000000 +0.000037897000000,0.000175773000000,0.000036712000000,0.000027442000000,0.000336564000000,0.000037107000000,0.000189600000000,0.000030786000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000383575000000,0.000440464000000,0.000201848000000,0.011340209000000,0.000188020000000,0.000184070000000,0.010737346000000,0.000046983000000,0.000038687000000 +0.000037501000000,0.000140613000000,0.000075032000000,0.000027047000000,0.000323526000000,0.000037502000000,0.000188415000000,0.000030785000000,0.000307328000000,0.000025862000000,0.000039477000000,0.000376070000000,0.000376859000000,0.000174984000000,0.011092110000000,0.000189600000000,0.000182884000000,0.010508210000000,0.000046984000000,0.000039872000000 +0.000037897000000,0.000144563000000,0.000038687000000,0.000027047500000,0.000323131000000,0.000037107000000,0.000187626000000,0.000030391000000,0.000308909000000,0.000026455000000,0.000039477000000,0.000371724000000,0.000368959000000,0.000175378000000,0.011399468000000,0.000188810000000,0.000183279000000,0.011073543000000,0.000046983000000,0.000039872000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000324711000000,0.000037106000000,0.000223576000000,0.000030786000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000418736000000,0.000457057000000,0.000171033000000,0.011360752000000,0.000203823000000,0.000186440000000,0.010814778000000,0.000047774000000,0.000040268000000 +0.000037107000000,0.000144168000000,0.000036711000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000188811000000,0.000030786000000,0.000306934000000,0.000025664500000,0.000039478000000,0.000376069000000,0.000376860000000,0.000174588000000,0.011102777000000,0.000188415000000,0.000183675000000,0.010431173000000,0.000046983000000,0.000038292000000 +0.000037501000000,0.000143774000000,0.000035922000000,0.000027047500000,0.000325106000000,0.000037107000000,0.000187625000000,0.000030786000000,0.000386736000000,0.000025862000000,0.000039082000000,0.000445996000000,0.000409649000000,0.000171823000000,0.010962530000000,0.000188415000000,0.000184465000000,0.010571419000000,0.000047378000000,0.000039477000000 +0.000037897000000,0.000215675000000,0.000036317000000,0.000027047500000,0.000326291000000,0.000037107000000,0.000188415000000,0.000066341000000,0.000558588000000,0.000026454500000,0.000039477000000,0.000380020000000,0.000378835000000,0.000172613000000,0.011144653000000,0.000227131000000,0.000182094000000,0.010551666000000,0.000046983000000,0.000058440000000 +0.000037502000000,0.000157600000000,0.000036317000000,0.000027244500000,0.000323131000000,0.000037502000000,0.000187230000000,0.000030391000000,0.000348810000000,0.000026257000000,0.000039477000000,0.000374884000000,0.000449551000000,0.000174983000000,0.011182974000000,0.000330242000000,0.000185650000000,0.010783962000000,0.000046983000000,0.000090045000000 +0.000037897000000,0.000141008000000,0.000036316000000,0.000027442000000,0.000324316000000,0.000038292000000,0.000189996000000,0.000030786000000,0.000308514000000,0.000026059500000,0.000039082000000,0.000419131000000,0.000367773000000,0.000177748000000,0.010774481000000,0.000252416000000,0.000186044000000,0.010821889000000,0.000046984000000,0.000038687000000 +0.000038292000000,0.000142193000000,0.000035922000000,0.000027245000000,0.000325501000000,0.000037897000000,0.000189996000000,0.000029996000000,0.000306538000000,0.000025862000000,0.000075428000000,0.000380020000000,0.000378835000000,0.000173403000000,0.011582381000000,0.000261897000000,0.000184860000000,0.010754333000000,0.000047378000000,0.000038687000000 +0.000037897000000,0.000140613000000,0.000035922000000,0.000027244500000,0.000322736000000,0.000037897000000,0.000189206000000,0.000029995000000,0.000308514000000,0.000025862000000,0.000039477000000,0.000411230000000,0.000415971000000,0.000171428000000,0.011877098000000,0.000189600000000,0.000184069000000,0.010505839000000,0.000046588000000,0.000039082000000 +0.000037896000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000367379000000,0.000036712000000,0.000188415000000,0.000030391000000,0.000307724000000,0.000026257000000,0.000039477000000,0.000373700000000,0.000371724000000,0.000216859000000,0.011329937000000,0.000190390000000,0.000182884000000,0.010944358000000,0.000047774000000,0.000038687000000 +0.000037897000000,0.000280464000000,0.000036317000000,0.000027245000000,0.000323132000000,0.000036712000000,0.000186440000000,0.000030391000000,0.000307724000000,0.000026059500000,0.000039478000000,0.000381205000000,0.000427823000000,0.000173403000000,0.010890234000000,0.000187230000000,0.000196317000000,0.010402728000000,0.000046983000000,0.000039477000000 +0.000037502000000,0.000174983000000,0.000035922000000,0.000045220000000,0.000325897000000,0.000038292000000,0.000187625000000,0.000030785000000,0.000308514000000,0.000026257000000,0.000039477000000,0.000401354000000,0.000379625000000,0.000172218000000,0.010960950000000,0.000238193000000,0.000173798000000,0.010724703000000,0.000046984000000,0.000039478000000 +0.000037897000000,0.000143378000000,0.000036712000000,0.000027047500000,0.000373304000000,0.000037107000000,0.000191971000000,0.000030786000000,0.000308119000000,0.000035541000000,0.000039477000000,0.000368168000000,0.000392267000000,0.000173007000000,0.010867321000000,0.000189206000000,0.000173403000000,0.010635814000000,0.000048958000000,0.000038687000000 +0.000037502000000,0.000140613000000,0.000036316000000,0.000027047000000,0.000324316000000,0.000038292000000,0.000187626000000,0.000030391000000,0.000308514000000,0.000056282000000,0.000039477000000,0.000553057000000,0.000373699000000,0.000171428000000,0.011244209000000,0.000187230000000,0.000173403000000,0.010727073000000,0.000090835000000,0.000038687000000 +0.000037897000000,0.000144958000000,0.000036317000000,0.000027244500000,0.000325106000000,0.000037502000000,0.000206193000000,0.000030391000000,0.000309699000000,0.000026849500000,0.000039477000000,0.000376465000000,0.000368958000000,0.000171033000000,0.010916308000000,0.000189996000000,0.000173008000000,0.010666234000000,0.000047378000000,0.000038687000000 +0.000038292000000,0.000180514000000,0.000036317000000,0.000027245000000,0.000324316000000,0.000037501000000,0.000189996000000,0.000030391000000,0.000309304000000,0.000025862000000,0.000039477000000,0.000401748000000,0.000413996000000,0.000173798000000,0.010844802000000,0.000261897000000,0.000308119000000,0.010638185000000,0.000047379000000,0.000038687000000 +0.000037502000000,0.000156416000000,0.000035922000000,0.000027245000000,0.000323526000000,0.000038687000000,0.000187230000000,0.000032761000000,0.000307329000000,0.000026059500000,0.000039872000000,0.000366588000000,0.000366193000000,0.000171428000000,0.011066431000000,0.000189995000000,0.000252020000000,0.010553642000000,0.000047378000000,0.000038292000000 +0.000038292000000,0.000140613000000,0.000035921000000,0.000027047000000,0.000324316000000,0.000037897000000,0.000188811000000,0.000030786000000,0.000307329000000,0.000026652500000,0.000039082000000,0.000374884000000,0.000418341000000,0.000172218000000,0.011386431000000,0.000186835000000,0.000172218000000,0.010697839000000,0.000046984000000,0.000038292000000 +0.000054489000000,0.000142193000000,0.000036316000000,0.000027047000000,0.000323526000000,0.000054094000000,0.000240563000000,0.000030785000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000420712000000,0.000376860000000,0.000171032000000,0.010950678000000,0.000189996000000,0.000173008000000,0.010902876000000,0.000046983000000,0.000038292000000 +0.000037897000000,0.000143773000000,0.000053700000000,0.000027047500000,0.000325106000000,0.000038292000000,0.000221995000000,0.000030786000000,0.000307329000000,0.000025862000000,0.000039477000000,0.000374884000000,0.000374884000000,0.000171823000000,0.011420011000000,0.000223576000000,0.000217650000000,0.010503864000000,0.000047378000000,0.000038687000000 +0.000037897000000,0.000144564000000,0.000036317000000,0.000027047000000,0.000323921000000,0.000037897000000,0.000188415000000,0.000030391000000,0.000307329000000,0.000026059500000,0.000039477000000,0.000455872000000,0.000411230000000,0.000173008000000,0.011007172000000,0.000190391000000,0.000171823000000,0.011585542000000,0.000047378000000,0.000038687000000 +0.000037897000000,0.000178143000000,0.000036316000000,0.000027837500000,0.000359872000000,0.000038292000000,0.000232662000000,0.000030785000000,0.000355921000000,0.000026652000000,0.000039477000000,0.000371329000000,0.000374885000000,0.000172217000000,0.011592653000000,0.000188810000000,0.000173008000000,0.011763320000000,0.000046588000000,0.000037897000000 +0.000037897000000,0.000145749000000,0.000036316000000,0.000027442500000,0.000326292000000,0.000037502000000,0.000186440000000,0.000031181000000,0.000309699000000,0.000026257000000,0.000039082000000,0.000444810000000,0.000443625000000,0.000172218000000,0.011200753000000,0.000189206000000,0.000174193000000,0.011593049000000,0.000047774000000,0.000037897000000 +0.000037897000000,0.000141008000000,0.000036317000000,0.000027047000000,0.000323526000000,0.000038292000000,0.000190390000000,0.000031180000000,0.000307724000000,0.000026652500000,0.000039082000000,0.000373700000000,0.000403329000000,0.000173008000000,0.011031666000000,0.000265453000000,0.000173008000000,0.010876012000000,0.000047773000000,0.000039872000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000323922000000,0.000038292000000,0.000188415000000,0.000030786000000,0.000308909000000,0.000026849500000,0.000039477000000,0.000370538000000,0.000367773000000,0.000171032000000,0.011493888000000,0.000189206000000,0.000210143000000,0.010719568000000,0.000046984000000,0.000039873000000 +0.000038292000000,0.000141403000000,0.000036316000000,0.000027047500000,0.000323922000000,0.000037897000000,0.000223180000000,0.000029996000000,0.000308909000000,0.000025862000000,0.000039477000000,0.000403724000000,0.000412020000000,0.000171823000000,0.011083024000000,0.000186440000000,0.000172218000000,0.010450926000000,0.000050539000000,0.000067526000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037502000000,0.000186440000000,0.000030785000000,0.000307723000000,0.000026849500000,0.000039082000000,0.000372119000000,0.000374489000000,0.000172613000000,0.011314925000000,0.000191181000000,0.000173798000000,0.011068801000000,0.000046983000000,0.000038687000000 +0.000037897000000,0.000143379000000,0.000036317000000,0.000057467000000,0.000325502000000,0.000037897000000,0.000190391000000,0.000030391000000,0.000308514000000,0.000026059500000,0.000039477000000,0.000442440000000,0.000407280000000,0.000171032000000,0.010964901000000,0.000223576000000,0.000171428000000,0.010465148000000,0.000046588000000,0.000040662000000 +0.000037896000000,0.000159181000000,0.000036316000000,0.000041862000000,0.000323527000000,0.000036712000000,0.000187230000000,0.000105453000000,0.000307329000000,0.000043244500000,0.000075823000000,0.000379230000000,0.000370539000000,0.000172613000000,0.011432653000000,0.000189601000000,0.000177354000000,0.010540604000000,0.000046588000000,0.000039082000000 +0.000037502000000,0.000142588000000,0.000036316000000,0.000027244500000,0.000325502000000,0.000037107000000,0.000204613000000,0.000109008000000,0.000307724000000,0.000033763500000,0.000039477000000,0.000418341000000,0.000377254000000,0.000174983000000,0.011442530000000,0.000189600000000,0.000209354000000,0.010576951000000,0.000047378000000,0.000037897000000 +0.000037502000000,0.000144169000000,0.000036317000000,0.000027244500000,0.000324317000000,0.000037107000000,0.000188020000000,0.000032761000000,0.000348415000000,0.000025862000000,0.000039477000000,0.000377649000000,0.000519081000000,0.000171823000000,0.011226826000000,0.000188415000000,0.000171033000000,0.010548111000000,0.000047379000000,0.000038687000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027245000000,0.000323526000000,0.000037106000000,0.000188810000000,0.000032366000000,0.000307724000000,0.000026257000000,0.000039478000000,0.000374490000000,0.000369749000000,0.000172218000000,0.010650827000000,0.000474835000000,0.000178538000000,0.010904061000000,0.000082539000000,0.000038292000000 +0.000037501000000,0.000141403000000,0.000035921000000,0.000027047500000,0.000322341000000,0.000037107000000,0.000187230000000,0.000032761000000,0.000308119000000,0.000026059500000,0.000039082000000,0.000734785000000,0.000440860000000,0.000175773000000,0.010989395000000,0.000222390000000,0.000175773000000,0.010569049000000,0.000048168000000,0.000039478000000 +0.000037897000000,0.000140218000000,0.000036712000000,0.000027047000000,0.000325501000000,0.000037897000000,0.000222786000000,0.000044218000000,0.000381205000000,0.000026257000000,0.000039082000000,0.000366983000000,0.000378440000000,0.000173403000000,0.010704160000000,0.000189205000000,0.000173403000000,0.010490037000000,0.000046984000000,0.000038687000000 +0.000037897000000,0.000177353000000,0.000036317000000,0.000027244500000,0.000321946000000,0.000037502000000,0.000187231000000,0.000030391000000,0.000322341000000,0.000026059500000,0.000039477000000,0.000383576000000,0.000425452000000,0.000175378000000,0.011228406000000,0.000188810000000,0.000208563000000,0.010608951000000,0.000046588000000,0.000039872000000 +0.000037502000000,0.000143378000000,0.000036317000000,0.000027047500000,0.000324317000000,0.000037501000000,0.000186835000000,0.000030391000000,0.000308119000000,0.000026060000000,0.000039082000000,0.000373699000000,0.000366588000000,0.000171033000000,0.010962925000000,0.000186835000000,0.000173008000000,0.011083419000000,0.000047378000000,0.000039872000000 +0.000038292000000,0.000142984000000,0.000036316000000,0.000027047500000,0.000324712000000,0.000037107000000,0.000187230000000,0.000030391000000,0.000308119000000,0.000026060000000,0.000039477000000,0.000410440000000,0.000416366000000,0.000173008000000,0.011141098000000,0.000186836000000,0.000173403000000,0.010356901000000,0.000047378000000,0.000038292000000 +0.000037501000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000358292000000,0.000037502000000,0.000186835000000,0.000030391000000,0.000309304000000,0.000026257000000,0.000039477000000,0.000376860000000,0.000366983000000,0.000171823000000,0.010842037000000,0.000186835000000,0.000172613000000,0.012550677000000,0.000046588000000,0.000038292000000 +0.000038292000000,0.000142588000000,0.000036317000000,0.000027047000000,0.000326291000000,0.000073058000000,0.000187230000000,0.000030786000000,0.000308909000000,0.000026059500000,0.000039083000000,0.000409650000000,0.000379230000000,0.000175773000000,0.011703665000000,0.000188416000000,0.000171822000000,0.012118875000000,0.000048564000000,0.000038292000000 +0.000037502000000,0.000139823000000,0.000074638000000,0.000027245000000,0.000453897000000,0.000037897000000,0.000190391000000,0.000030391000000,0.000308119000000,0.000026257000000,0.000039477000000,0.000373304000000,0.000462588000000,0.000172613000000,0.011032851000000,0.000189996000000,0.000188020000000,0.011368258000000,0.000047378000000,0.000039082000000 +0.000109008000000,0.000180909000000,0.000052515000000,0.000027047000000,0.000323526000000,0.000037897000000,0.000190786000000,0.000030390000000,0.000308119000000,0.000025862000000,0.000039477000000,0.000373699000000,0.000365403000000,0.000172218000000,0.010935666000000,0.000187231000000,0.000172218000000,0.010592752000000,0.000047378000000,0.000038687000000 +0.000037502000000,0.000141008000000,0.000036317000000,0.000027244500000,0.000345255000000,0.000037897000000,0.000189600000000,0.000030391000000,0.000308909000000,0.000026454500000,0.000039477000000,0.000412810000000,0.000754538000000,0.000171823000000,0.011075123000000,0.000186440000000,0.000173798000000,0.010524407000000,0.000047378000000,0.000039873000000 +0.000037107000000,0.000143773000000,0.000035921000000,0.000027047000000,0.000323131000000,0.000037107000000,0.000191576000000,0.000030786000000,0.000306934000000,0.000026850000000,0.000039477000000,0.000381206000000,0.000366983000000,0.000171428000000,0.011585542000000,0.000223180000000,0.000173008000000,0.010352951000000,0.000047378000000,0.000039872000000 +0.000038292000000,0.000143378000000,0.000036316000000,0.000035541000000,0.000323922000000,0.000037897000000,0.000188415000000,0.000031181000000,0.000308514000000,0.000026652000000,0.000039477000000,0.000419131000000,0.000409650000000,0.000173008000000,0.010945543000000,0.000206193000000,0.000192366000000,0.010809247000000,0.000046983000000,0.000038687000000 +0.000037502000000,0.000142193000000,0.000036317000000,0.000027245000000,0.000361848000000,0.000037502000000,0.000188811000000,0.000030786000000,0.000309304000000,0.000046800500000,0.000039478000000,0.000430983000000,0.000372119000000,0.000171033000000,0.011379715000000,0.000200267000000,0.000173403000000,0.011137937000000,0.000046984000000,0.000057650000000 +0.000038292000000,0.000140218000000,0.000036317000000,0.000027244500000,0.000323527000000,0.000037107000000,0.000188020000000,0.000030785000000,0.000307329000000,0.000045022500000,0.000039872000000,0.000367774000000,0.000451921000000,0.000171823000000,0.010769345000000,0.000201058000000,0.000171033000000,0.011010333000000,0.000047773000000,0.000090440000000 +0.000038687000000,0.000180909000000,0.000036316000000,0.000027244500000,0.000323921000000,0.000037107000000,0.000206588000000,0.000030391000000,0.000308909000000,0.000045022500000,0.000039477000000,0.000409254000000,0.000374489000000,0.000171033000000,0.011379320000000,0.000198292000000,0.000176168000000,0.010634234000000,0.000046589000000,0.000069501000000 +0.000037897000000,0.000141007000000,0.000036316000000,0.000027442500000,0.000360662000000,0.000037106000000,0.000186835000000,0.000064366000000,0.000307329000000,0.000027837500000,0.000039082000000,0.000372514000000,0.000407674000000,0.000171822000000,0.010715221000000,0.000204217000000,0.000172612000000,0.010543370000000,0.000047378000000,0.000038292000000 +0.000037897000000,0.000142193000000,0.000036317000000,0.000027244500000,0.000324711000000,0.000037897000000,0.000190391000000,0.000066736000000,0.000307329000000,0.000033565500000,0.000039082000000,0.000409254000000,0.000391872000000,0.000245699000000,0.011275024000000,0.000200267000000,0.000212119000000,0.011117395000000,0.000046983000000,0.000038292000000 +0.000037897000000,0.000140613000000,0.000036317000000,0.000027047000000,0.000323131000000,0.000038687000000,0.000187230000000,0.000030391000000,0.000310094000000,0.000026455000000,0.000093996000000,0.000383180000000,0.000372119000000,0.000222390000000,0.010782382000000,0.000201057000000,0.000187625000000,0.011148999000000,0.000082143000000,0.000038292000000 +0.000038292000000,0.000142983000000,0.000036711000000,0.000027047500000,0.000423082000000,0.000037501000000,0.000223576000000,0.000029995000000,0.000308909000000,0.000026652000000,0.000071082000000,0.000407280000000,0.000451922000000,0.000172613000000,0.010968061000000,0.000199477000000,0.000175773000000,0.010770135000000,0.000047379000000,0.000039477000000 +0.000038292000000,0.000140613000000,0.000036712000000,0.000027245000000,0.000323526000000,0.000037502000000,0.000189996000000,0.000030391000000,0.000309699000000,0.000025862000000,0.000059230000000,0.000378045000000,0.000373699000000,0.000175773000000,0.011591468000000,0.000197896000000,0.000171822000000,0.010929740000000,0.000046588000000,0.000038687000000 +0.000037897000000,0.000142588000000,0.000036317000000,0.000027442000000,0.000324711000000,0.000037897000000,0.000190786000000,0.000030391000000,0.000348415000000,0.000026454500000,0.000042243000000,0.000372119000000,0.000403724000000,0.000173798000000,0.011536554000000,0.000198291000000,0.000174588000000,0.011520357000000,0.000047379000000,0.000038687000000 diff --git a/docs/source/media/bench/lua bench tests oolua.csv b/docs/source/media/bench/lua bench tests oolua.csv new file mode 100644 index 00000000..2734fa8d --- /dev/null +++ b/docs/source/media/bench/lua bench tests oolua.csv @@ -0,0 +1,2001 @@ +"oolua - global get","oolua - member function calls","oolua - c function","oolua - global set","oolua - table get","oolua - table chained get","oolua - c function through lua","oolua - table set","oolua - table chained set","oolua - lua function","oolua - member function calls (simple)","oolua - return userdata","oolua - base call on derived" +0.000030209000000,0.000097949000000,0.000026851500000,0.000013028666667,0.000027641500000,0.000183678000000,0.000059628000000,0.000026258500000,0.000221999000000,0.000066344000000,0.000118887000000,0.000301011000000,0.000054887000000 +0.000020135500000,0.000096764000000,0.000026851500000,0.000013028333333,0.000027839000000,0.000182097000000,0.000058048000000,0.000026258500000,0.000185257000000,0.000062789000000,0.000117308000000,0.000297851000000,0.000068319000000 +0.000047394500000,0.000096369000000,0.000029024000000,0.000013028333333,0.000026258500000,0.000233455000000,0.000057258000000,0.000025271000000,0.000181702000000,0.000064764000000,0.000117307000000,0.000280073000000,0.000053307000000 +0.000021320500000,0.000115332000000,0.000030604500000,0.000012896666667,0.000027444000000,0.000249653000000,0.000088863000000,0.000025468500000,0.000183678000000,0.000063974000000,0.000117307000000,0.000315628000000,0.000051332000000 +0.000021518000000,0.000095973000000,0.000025666000000,0.000012896666667,0.000028036500000,0.000184468000000,0.000059233000000,0.000026653500000,0.000197110000000,0.000063974000000,0.000116912000000,0.000282838000000,0.000052517000000 +0.000101320500000,0.000118097000000,0.000025863500000,0.000012896666667,0.000027839000000,0.000218048000000,0.000058838000000,0.000026061000000,0.000183282000000,0.000097159000000,0.000116517000000,0.000338936000000,0.000052122000000 +0.000045024000000,0.000114937000000,0.000027049000000,0.000013028333333,0.000027049000000,0.000180913000000,0.000058838000000,0.000056086000000,0.000184072000000,0.000063579000000,0.000096369000000,0.000278492000000,0.000051727000000 +0.000020332500000,0.000150493000000,0.000068925500000,0.000013028333333,0.000028036500000,0.000185257000000,0.000057653000000,0.000026259000000,0.000184863000000,0.000067134000000,0.000096369000000,0.000295875000000,0.000089653000000 +0.000020332500000,0.000105060000000,0.000034950000000,0.000013028333333,0.000027246000000,0.000184467000000,0.000057653000000,0.000026258500000,0.000182097000000,0.000063184000000,0.000116122000000,0.000275332000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000027048500000,0.000013028333333,0.000027048500000,0.000218048000000,0.000057653000000,0.000026061000000,0.000183678000000,0.000066739000000,0.000116912000000,0.000277307000000,0.000053307000000 +0.000020135500000,0.000094788000000,0.000041468500000,0.000013028333333,0.000027246000000,0.000186048000000,0.000058838000000,0.000025863500000,0.000181307000000,0.000063579000000,0.000094789000000,0.000279678000000,0.000051727000000 +0.000029221500000,0.000115332000000,0.000026061000000,0.000013028333333,0.000026653500000,0.000183282000000,0.000058443000000,0.000026851000000,0.000217653000000,0.000067135000000,0.000116913000000,0.000277702000000,0.000061209000000 +0.000020135500000,0.000096369000000,0.000026851000000,0.000017637333333,0.000027641500000,0.000182888000000,0.000058838000000,0.000026061000000,0.000184468000000,0.000079777000000,0.000094789000000,0.000278492000000,0.000052913000000 +0.000020135500000,0.000110196000000,0.000037320000000,0.000013028333333,0.000212925000000,0.000218838000000,0.000058838000000,0.000026653500000,0.000183678000000,0.000064369000000,0.000096369000000,0.000282443000000,0.000052913000000 +0.000029814000000,0.000104665000000,0.000028036000000,0.000013028333333,0.000027641000000,0.000181702000000,0.000058443000000,0.000033370000000,0.000180122000000,0.000062789000000,0.000096369000000,0.000278097000000,0.000056073000000 +0.000021122500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000026851000000,0.000187628000000,0.000058838000000,0.000026456000000,0.000216073000000,0.000065554000000,0.000096369000000,0.000277702000000,0.000055283000000 +0.000020135000000,0.000095974000000,0.000025863500000,0.000013028333333,0.000027246500000,0.000182098000000,0.000057258000000,0.000026061000000,0.000180912000000,0.000063579000000,0.000096764000000,0.000271776000000,0.000052913000000 +0.000020530500000,0.000094394000000,0.000027246000000,0.000013555000000,0.000027443500000,0.000262295000000,0.000058443000000,0.000026061000000,0.000185653000000,0.000067135000000,0.000196714000000,0.000272961000000,0.000052912000000 +0.000020135000000,0.000095974000000,0.000028826500000,0.000013423666667,0.000043246500000,0.000181702000000,0.000057258000000,0.000025271000000,0.000186443000000,0.000063974000000,0.000181307000000,0.000308912000000,0.000051727000000 +0.000020135500000,0.000095974000000,0.000030604500000,0.000013423333333,0.000027641500000,0.000184467000000,0.000058838000000,0.000026061000000,0.000214492000000,0.000102690000000,0.000131135000000,0.000274542000000,0.000052912000000 +0.000020135500000,0.000114542000000,0.000026061000000,0.000013028333333,0.000027246000000,0.000182492000000,0.000058838000000,0.000025666000000,0.000181308000000,0.000063184000000,0.000117702000000,0.000308122000000,0.000107826000000 +0.000021122500000,0.000095974000000,0.000060826500000,0.000012896666667,0.000027246500000,0.000187233000000,0.000057258000000,0.000025271000000,0.000183678000000,0.000065554000000,0.000096369000000,0.000273752000000,0.000052122000000 +0.000020530500000,0.000186443000000,0.000026851000000,0.000013028333333,0.000029024000000,0.000184468000000,0.000058838000000,0.000056875500000,0.000184468000000,0.000063184000000,0.000095974000000,0.000353159000000,0.000051332000000 +0.000030011500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027049000000,0.000184863000000,0.000058443000000,0.000025073000000,0.000259134000000,0.000063183000000,0.000117307000000,0.000280072000000,0.000052122000000 +0.000021122500000,0.000118097000000,0.000026851000000,0.000012896666667,0.000028036000000,0.000218443000000,0.000057653000000,0.000025863500000,0.000180912000000,0.000063184000000,0.000094789000000,0.000307727000000,0.000051332000000 +0.000020333000000,0.000096764000000,0.000026851000000,0.000013028333333,0.000026061000000,0.000182097000000,0.000058444000000,0.000027246500000,0.000180517000000,0.000065554000000,0.000117308000000,0.000279678000000,0.000052913000000 +0.000020332500000,0.000117308000000,0.000027048500000,0.000013028333333,0.000043246500000,0.000182888000000,0.000057258000000,0.000029616500000,0.000184862000000,0.000062789000000,0.000094788000000,0.000438097000000,0.000050937000000 +0.000020333000000,0.000117307000000,0.000026061000000,0.000012896666667,0.000026851000000,0.000181702000000,0.000075826000000,0.000026259000000,0.000214887000000,0.000062789000000,0.000095974000000,0.000273751000000,0.000051332000000 +0.000020333000000,0.000150493000000,0.000026653500000,0.000013818666667,0.000027443500000,0.000236616000000,0.000057653000000,0.000027443500000,0.000183283000000,0.000062788000000,0.000116517000000,0.000308912000000,0.000051332000000 +0.000020332500000,0.000096764000000,0.000026851500000,0.000013423333333,0.000027049000000,0.000187628000000,0.000060023000000,0.000025863500000,0.000186443000000,0.000063579000000,0.000096764000000,0.000275332000000,0.000051332000000 +0.000021518000000,0.000115727000000,0.000028036500000,0.000012896666667,0.000025863500000,0.000182888000000,0.000057258000000,0.000027049000000,0.000182097000000,0.000063184000000,0.000117702000000,0.000331035000000,0.000052912000000 +0.000021122500000,0.000096369000000,0.000026456000000,0.000018032333333,0.000028036500000,0.000184072000000,0.000058838000000,0.000025666000000,0.000214097000000,0.000064369000000,0.000097554000000,0.000274937000000,0.000051727000000 +0.000020332500000,0.000129949000000,0.000025863500000,0.000013028333333,0.000027443500000,0.000231480000000,0.000057258000000,0.000026653500000,0.000180912000000,0.000063184000000,0.000117702000000,0.000307332000000,0.000051727000000 +0.000021320500000,0.000096764000000,0.000027049000000,0.000013028333333,0.000029024000000,0.000180517000000,0.000057258000000,0.000025863500000,0.000184467000000,0.000090048000000,0.000096765000000,0.000281258000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000029024000000,0.000013028333333,0.000053715000000,0.000181308000000,0.000059233000000,0.000027049000000,0.000214492000000,0.000063973000000,0.000094394000000,0.000362245000000,0.000054097000000 +0.000020332500000,0.000114936000000,0.000030406500000,0.000013555000000,0.000026259000000,0.000184072000000,0.000073851000000,0.000026653500000,0.000184073000000,0.000065950000000,0.000094788000000,0.000275727000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000050554500000,0.000013028333333,0.000027839000000,0.000215283000000,0.000057653000000,0.000026653500000,0.000184073000000,0.000067530000000,0.000116122000000,0.000309307000000,0.000051332000000 +0.000020332500000,0.000115332000000,0.000025863500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000057258000000,0.000025863500000,0.000184468000000,0.000066345000000,0.000117308000000,0.000274936000000,0.000051332000000 +0.000020333000000,0.000094394000000,0.000027048500000,0.000012896666667,0.000028234000000,0.000181702000000,0.000057653000000,0.000042258500000,0.000214493000000,0.000063579000000,0.000096369000000,0.000311678000000,0.000051332000000 +0.000020135000000,0.000115727000000,0.000026851500000,0.000013555000000,0.000029814000000,0.000181307000000,0.000058838000000,0.000025665500000,0.000186048000000,0.000065555000000,0.000095184000000,0.000274937000000,0.000097949000000 +0.000021320000000,0.000096764000000,0.000027048500000,0.000019744666667,0.000027049000000,0.000223579000000,0.000058838000000,0.000025666000000,0.000180517000000,0.000084517000000,0.000095974000000,0.000275331000000,0.000053308000000 +0.000020135500000,0.000097159000000,0.000026851000000,0.000013686666667,0.000027048500000,0.000180912000000,0.000057653000000,0.000026456500000,0.000180912000000,0.000063974000000,0.000114937000000,0.000277307000000,0.000053307000000 +0.000061814000000,0.000115727000000,0.000027049000000,0.000012896666667,0.000044826500000,0.000183282000000,0.000057258000000,0.000025863500000,0.000253604000000,0.000062789000000,0.000119283000000,0.000271381000000,0.000051332000000 +0.000038110500000,0.000116913000000,0.000026258500000,0.000013028333333,0.000027048500000,0.000182888000000,0.000057258000000,0.000025863500000,0.000183678000000,0.000062789000000,0.000096764000000,0.000339332000000,0.000051332000000 +0.000021320000000,0.000095974000000,0.000026851500000,0.000012896666667,0.000025863500000,0.000182098000000,0.000058838000000,0.000025863500000,0.000183283000000,0.000065160000000,0.000117307000000,0.000275332000000,0.000052517000000 +0.000020135500000,0.000094393000000,0.000026851000000,0.000013028333333,0.000027049000000,0.000184468000000,0.000057653000000,0.000027049000000,0.000183283000000,0.000063184000000,0.000096764000000,0.000277702000000,0.000053307000000 +0.000020135000000,0.000096764000000,0.000028036500000,0.000013028333333,0.000027838500000,0.000182098000000,0.000058443000000,0.000036332500000,0.000233850000000,0.000062789000000,0.000115332000000,0.000276122000000,0.000051727000000 +0.000021320500000,0.000094788000000,0.000026259000000,0.000013028333333,0.000027246500000,0.000184863000000,0.000058838000000,0.000026061000000,0.000180912000000,0.000062789000000,0.000098344000000,0.000277702000000,0.000052122000000 +0.000039690500000,0.000156023000000,0.000025863500000,0.000012896666667,0.000026456000000,0.000181702000000,0.000058838000000,0.000026061000000,0.000183678000000,0.000100715000000,0.000125604000000,0.000282838000000,0.000052517000000 +0.000021320500000,0.000116122000000,0.000026851000000,0.000012896666667,0.000026654000000,0.000181702000000,0.000057258000000,0.000026061000000,0.000181307000000,0.000067924000000,0.000117307000000,0.000277308000000,0.000053307000000 +0.000020333000000,0.000097950000000,0.000029024000000,0.000018032666667,0.000044629000000,0.000183678000000,0.000058838000000,0.000026061000000,0.000217653000000,0.000067530000000,0.000096369000000,0.000280863000000,0.000051332000000 +0.000020135000000,0.000114936000000,0.000049962500000,0.000013555333333,0.000028036000000,0.000205011000000,0.000058838000000,0.000026456000000,0.000180517000000,0.000065554000000,0.000095974000000,0.000290740000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026258500000,0.000013555000000,0.000027246500000,0.000184862000000,0.000058443000000,0.000025666000000,0.000183282000000,0.000062789000000,0.000124813000000,0.000280468000000,0.000098344000000 +0.000020333000000,0.000129554000000,0.000026258500000,0.000013028333333,0.000027641500000,0.000183677000000,0.000058443000000,0.000026061000000,0.000184468000000,0.000062789000000,0.000117702000000,0.000275332000000,0.000052122000000 +0.000020135000000,0.000114542000000,0.000026851500000,0.000013028333333,0.000026061000000,0.000237010000000,0.000076221000000,0.000026456000000,0.000184862000000,0.000109801000000,0.000115332000000,0.000274146000000,0.000052122000000 +0.000020135500000,0.000117703000000,0.000026258500000,0.000024485333333,0.000028629000000,0.000216072000000,0.000073850000000,0.000025271000000,0.000180122000000,0.000066345000000,0.000096369000000,0.000305752000000,0.000053702000000 +0.000021320000000,0.000096369000000,0.000026851000000,0.000018164333333,0.000027246500000,0.000181307000000,0.000058838000000,0.000026061000000,0.000183283000000,0.000065554000000,0.000105060000000,0.000271776000000,0.000051332000000 +0.000020135000000,0.000116122000000,0.000027246500000,0.000013555000000,0.000027641000000,0.000181702000000,0.000058839000000,0.000025666000000,0.000180517000000,0.000063184000000,0.000136665000000,0.000363826000000,0.000053702000000 +0.000020332500000,0.000129554000000,0.000026851000000,0.000019349333333,0.000043048500000,0.000185653000000,0.000098739000000,0.000026061000000,0.000180122000000,0.000066739000000,0.000096764000000,0.000273752000000,0.000052517000000 +0.000020135000000,0.000116122000000,0.000026061000000,0.000013028333333,0.000026259000000,0.000344467000000,0.000058838000000,0.000026851500000,0.000180912000000,0.000064764000000,0.000118888000000,0.000458640000000,0.000055283000000 +0.000020135000000,0.000096369000000,0.000026653500000,0.000013028333333,0.000028629000000,0.000205801000000,0.000058838000000,0.000027246000000,0.000180517000000,0.000065159000000,0.000117307000000,0.000274147000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000012896666667,0.000028036500000,0.000184863000000,0.000058839000000,0.000035147500000,0.000180913000000,0.000091233000000,0.000096369000000,0.000286789000000,0.000051332000000 +0.000021320000000,0.000149702000000,0.000028036500000,0.000013028333333,0.000028431500000,0.000216863000000,0.000058838000000,0.000026061000000,0.000183677000000,0.000067134000000,0.000120863000000,0.000274146000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026258500000,0.000012896666667,0.000027444000000,0.000186048000000,0.000057258000000,0.000026653500000,0.000184073000000,0.000066344000000,0.000096764000000,0.000306147000000,0.000051727000000 +0.000020332500000,0.000115332000000,0.000026061000000,0.000013028333333,0.000027246000000,0.000185258000000,0.000060813000000,0.000027444000000,0.000180517000000,0.000063974000000,0.000117703000000,0.000278097000000,0.000052912000000 +0.000020135000000,0.000117308000000,0.000026851000000,0.000013028333333,0.000026654000000,0.000181702000000,0.000057258000000,0.000026061000000,0.000214887000000,0.000062789000000,0.000118887000000,0.000310887000000,0.000071086000000 +0.000020332500000,0.000096369000000,0.000029024000000,0.000013028333333,0.000035542500000,0.000230295000000,0.000073851000000,0.000028431500000,0.000180912000000,0.000062394000000,0.000117702000000,0.000273357000000,0.000051727000000 +0.000020332500000,0.000136270000000,0.000037913000000,0.000013028333333,0.000026851000000,0.000184468000000,0.000058838000000,0.000026258500000,0.000180517000000,0.000065554000000,0.000117307000000,0.000344467000000,0.000051727000000 +0.000020332500000,0.000286788000000,0.000026258500000,0.000017769000000,0.000027246500000,0.000184073000000,0.000057258000000,0.000025271000000,0.000183678000000,0.000064369000000,0.000096369000000,0.000271381000000,0.000050937000000 +0.000020332500000,0.000109802000000,0.000025863500000,0.000013028333333,0.000026456000000,0.000188023000000,0.000059233000000,0.000026456000000,0.000272961000000,0.000065949000000,0.000095974000000,0.000311282000000,0.000050937000000 +0.000020332500000,0.000114542000000,0.000026653500000,0.000014345333333,0.000028234000000,0.000228320000000,0.000057258000000,0.000026258500000,0.000203826000000,0.000063974000000,0.000115332000000,0.000284814000000,0.000052123000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000026061500000,0.000182097000000,0.000058838000000,0.000065172500000,0.000188418000000,0.000062788000000,0.000095579000000,0.000291925000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013423333333,0.000027246000000,0.000187233000000,0.000058838000000,0.000032777000000,0.000182097000000,0.000062789000000,0.000117307000000,0.000274937000000,0.000051332000000 +0.000020135000000,0.000115727000000,0.000026851000000,0.000013423333333,0.000026653500000,0.000183677000000,0.000058838000000,0.000026653500000,0.000180518000000,0.000065554000000,0.000094788000000,0.000278098000000,0.000058443000000 +0.000020332500000,0.000096764000000,0.000034555000000,0.000012896666667,0.000043246000000,0.000181702000000,0.000127974000000,0.000026061000000,0.000225949000000,0.000065950000000,0.000117307000000,0.000282048000000,0.000051727000000 +0.000020333000000,0.000116122000000,0.000026061000000,0.000013028333333,0.000027444000000,0.000184862000000,0.000058838000000,0.000026259000000,0.000180912000000,0.000067135000000,0.000096369000000,0.000275332000000,0.000052122000000 +0.000020135000000,0.000115332000000,0.000026851000000,0.000013555000000,0.000027246500000,0.000186443000000,0.000059233000000,0.000026456500000,0.000219629000000,0.000068319000000,0.000117307000000,0.000274541000000,0.000052122000000 +0.000020135000000,0.000116517000000,0.000026851000000,0.000029357666667,0.000026061000000,0.000187628000000,0.000057258000000,0.000025271000000,0.000180912000000,0.000066740000000,0.000096369000000,0.000274542000000,0.000055677000000 +0.000020333000000,0.000115727000000,0.000028036500000,0.000012896666667,0.000027444000000,0.000182493000000,0.000057258000000,0.000026258500000,0.000184073000000,0.000065949000000,0.000097159000000,0.000276912000000,0.000051727000000 +0.000020332500000,0.000097159000000,0.000026258500000,0.000013555000000,0.000027641000000,0.000184863000000,0.000057258000000,0.000026061000000,0.000180517000000,0.000067135000000,0.000115332000000,0.000286393000000,0.000050937000000 +0.000020333000000,0.000119283000000,0.000025666000000,0.000013028333333,0.000028234000000,0.000181307000000,0.000057258000000,0.000025863500000,0.000213702000000,0.000063579000000,0.000096369000000,0.000381603000000,0.000051727000000 +0.000021320500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000215282000000,0.000057653000000,0.000025666000000,0.000185258000000,0.000068320000000,0.000096369000000,0.000280072000000,0.000051727000000 +0.000020530000000,0.000115727000000,0.000050752500000,0.000013028333333,0.000037122500000,0.000182492000000,0.000058048000000,0.000025863500000,0.000183678000000,0.000065554000000,0.000116912000000,0.000324715000000,0.000050937000000 +0.000020332500000,0.000094788000000,0.000030407000000,0.000013423333333,0.000026456000000,0.000184863000000,0.000058838000000,0.000027246500000,0.000182098000000,0.000096764000000,0.000119678000000,0.000277308000000,0.000051332000000 +0.000020332500000,0.000115727000000,0.000025863500000,0.000012896666667,0.000026654000000,0.000182097000000,0.000058838000000,0.000026653500000,0.000265060000000,0.000064369000000,0.000117702000000,0.000312072000000,0.000053702000000 +0.000020135000000,0.000094394000000,0.000026258500000,0.000013555000000,0.000027048500000,0.000229504000000,0.000057258000000,0.000025468500000,0.000184072000000,0.000064765000000,0.000117307000000,0.000304961000000,0.000051332000000 +0.000021123000000,0.000167085000000,0.000027049000000,0.000017769000000,0.000027246000000,0.000184072000000,0.000057258000000,0.000026258500000,0.000184468000000,0.000063184000000,0.000116122000000,0.000309307000000,0.000051727000000 +0.000020333000000,0.000116517000000,0.000026061000000,0.000012896666667,0.000027641500000,0.000184863000000,0.000058838000000,0.000042258500000,0.000180518000000,0.000063974000000,0.000117307000000,0.000273357000000,0.000050542000000 +0.000021123000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000183677000000,0.000058838000000,0.000028431500000,0.000214097000000,0.000064369000000,0.000116912000000,0.000316024000000,0.000051727000000 +0.000020135000000,0.000105455000000,0.000044036500000,0.000013028333333,0.000028036000000,0.000218443000000,0.000057653000000,0.000025073500000,0.000180517000000,0.000063579000000,0.000096764000000,0.000280863000000,0.000052122000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013028333333,0.000043049000000,0.000183678000000,0.000072666000000,0.000025863500000,0.000180517000000,0.000083332000000,0.000096369000000,0.000326295000000,0.000052122000000 +0.000020135500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027641000000,0.000182097000000,0.000057258000000,0.000025863500000,0.000183282000000,0.000064369000000,0.000117307000000,0.000274936000000,0.000053307000000 +0.000021320500000,0.000116913000000,0.000027246500000,0.000013028333333,0.000028234000000,0.000186048000000,0.000057653000000,0.000024678500000,0.000214492000000,0.000063579000000,0.000117307000000,0.000363431000000,0.000051332000000 +0.000021518000000,0.000114937000000,0.000027048500000,0.000012896666667,0.000026259000000,0.000222393000000,0.000058838000000,0.000026258500000,0.000184863000000,0.000065554000000,0.000118097000000,0.000274937000000,0.000053307000000 +0.000021518000000,0.000113751000000,0.000028036500000,0.000012896666667,0.000028036000000,0.000185653000000,0.000057653000000,0.000026653500000,0.000180912000000,0.000063184000000,0.000096368000000,0.000343677000000,0.000052912000000 +0.000021517500000,0.000096369000000,0.000026456000000,0.000013028333333,0.000027246000000,0.000184073000000,0.000058444000000,0.000035938000000,0.000184863000000,0.000065554000000,0.000117307000000,0.000277702000000,0.000051727000000 +0.000021518000000,0.000096369000000,0.000025863500000,0.000013028333333,0.000027444000000,0.000181702000000,0.000058838000000,0.000026258500000,0.000210542000000,0.000064369000000,0.000096369000000,0.000315233000000,0.000050937000000 +0.000021518000000,0.000095974000000,0.000073863500000,0.000013291666667,0.000026061000000,0.000257159000000,0.000057653000000,0.000024481000000,0.000184073000000,0.000063184000000,0.000117307000000,0.000275331000000,0.000053702000000 +0.000021518000000,0.000100714000000,0.000046999500000,0.000013028333333,0.000043444000000,0.000181702000000,0.000058838000000,0.000025863500000,0.000181307000000,0.000078197000000,0.000095974000000,0.000272962000000,0.000087283000000 +0.000021517500000,0.000117703000000,0.000049567000000,0.000013555000000,0.000026653500000,0.000183282000000,0.000058838000000,0.000026258500000,0.000217257000000,0.000067135000000,0.000150887000000,0.000271776000000,0.000053308000000 +0.000021518000000,0.000115332000000,0.000032579500000,0.000013028333333,0.000029419000000,0.000183282000000,0.000058838000000,0.000025863500000,0.000186048000000,0.000062788000000,0.000096369000000,0.000272566000000,0.000052517000000 +0.000033370000000,0.000149702000000,0.000025863500000,0.000013028333333,0.000026851500000,0.000186443000000,0.000058838000000,0.000024876000000,0.000183678000000,0.000063974000000,0.000117307000000,0.000365406000000,0.000051727000000 +0.000021715000000,0.000117702000000,0.000027246000000,0.000012896666667,0.000028431500000,0.000182887000000,0.000058839000000,0.000026061000000,0.000184073000000,0.000065949000000,0.000114542000000,0.000297060000000,0.000052518000000 +0.000021517500000,0.000096369000000,0.000026259000000,0.000013028333333,0.000026456500000,0.000184468000000,0.000058839000000,0.000026653500000,0.000220419000000,0.000098344000000,0.000117702000000,0.000273751000000,0.000050937000000 +0.000021518000000,0.000115332000000,0.000026851000000,0.000013028333333,0.000026653500000,0.000238591000000,0.000058443000000,0.000046604000000,0.000180912000000,0.000134689000000,0.000099134000000,0.000275332000000,0.000051727000000 +0.000021518000000,0.000096764000000,0.000026851000000,0.000028567333333,0.000026456500000,0.000197109000000,0.000091233000000,0.000027641500000,0.000181307000000,0.000067134000000,0.000114542000000,0.000275727000000,0.000052912000000 +0.000021518000000,0.000150887000000,0.000026851000000,0.000013555000000,0.000037517500000,0.000183677000000,0.000058838000000,0.000032974500000,0.000185258000000,0.000065949000000,0.000094394000000,0.000274147000000,0.000052122000000 +0.000021518000000,0.000116122000000,0.000026258500000,0.000012896666667,0.000026258500000,0.000183282000000,0.000057653000000,0.000026061500000,0.000250838000000,0.000065554000000,0.000117308000000,0.000281257000000,0.000109011000000 +0.000021518000000,0.000097159000000,0.000029024000000,0.000012896666667,0.000026456500000,0.000253209000000,0.000058838000000,0.000028431000000,0.000184073000000,0.000063184000000,0.000094789000000,0.000278097000000,0.000052122000000 +0.000022505500000,0.000096369000000,0.000044036500000,0.000013555000000,0.000027048500000,0.000181703000000,0.000058443000000,0.000025863500000,0.000183283000000,0.000067135000000,0.000118492000000,0.000279678000000,0.000050937000000 +0.000043641000000,0.000096369000000,0.000027838500000,0.000013555000000,0.000027246500000,0.000181702000000,0.000058838000000,0.000042653500000,0.000184073000000,0.000062393000000,0.000095184000000,0.000272567000000,0.000051727000000 +0.000021518000000,0.000149702000000,0.000026258500000,0.000012896666667,0.000027641500000,0.000188419000000,0.000057258000000,0.000026851500000,0.000213702000000,0.000131924000000,0.000116122000000,0.000272171000000,0.000054493000000 +0.000021518000000,0.000116122000000,0.000025666000000,0.000012896666667,0.000026061000000,0.000229109000000,0.000057258000000,0.000025863500000,0.000183678000000,0.000066739000000,0.000117703000000,0.000333406000000,0.000051332000000 +0.000021518000000,0.000117702000000,0.000027049000000,0.000013555000000,0.000027049000000,0.000182492000000,0.000133110000000,0.000026061000000,0.000180912000000,0.000063184000000,0.000095579000000,0.000274937000000,0.000051332000000 +0.000021517500000,0.000116122000000,0.000028826500000,0.000013423666667,0.000043838500000,0.000185258000000,0.000075430000000,0.000027049000000,0.000186048000000,0.000066740000000,0.000116517000000,0.000278098000000,0.000053307000000 +0.000021517500000,0.000096369000000,0.000030802000000,0.000013818333333,0.000055690500000,0.000185257000000,0.000059233000000,0.000026851000000,0.000419529000000,0.000065159000000,0.000096369000000,0.000276912000000,0.000052912000000 +0.000021518000000,0.000152073000000,0.000025863500000,0.000013028666667,0.000030011500000,0.000218048000000,0.000057653000000,0.000026259000000,0.000195529000000,0.000063184000000,0.000094789000000,0.000273356000000,0.000053702000000 +0.000021518000000,0.000094394000000,0.000033567500000,0.000013028666667,0.000028036500000,0.000183677000000,0.000058838000000,0.000028431500000,0.000184468000000,0.000069900000000,0.000135085000000,0.000272172000000,0.000096369000000 +0.000031197000000,0.000096369000000,0.000026653500000,0.000013028333333,0.000027246500000,0.000185258000000,0.000058838000000,0.000025666000000,0.000218048000000,0.000135876000000,0.000118492000000,0.000277702000000,0.000052122000000 +0.000021518000000,0.000118098000000,0.000026258500000,0.000012896666667,0.000026456000000,0.000182887000000,0.000058838000000,0.000026061000000,0.000184072000000,0.000063579000000,0.000117307000000,0.000278097000000,0.000051727000000 +0.000021320500000,0.000117308000000,0.000026851500000,0.000013555000000,0.000027641500000,0.000181308000000,0.000091233000000,0.000025666000000,0.000180517000000,0.000063578000000,0.000118887000000,0.000284023000000,0.000050936000000 +0.000021320000000,0.000129949000000,0.000026851000000,0.000012896666667,0.000050752500000,0.000181307000000,0.000058838000000,0.000025666000000,0.000180122000000,0.000062789000000,0.000118098000000,0.000279282000000,0.000053702000000 +0.000021320000000,0.000096764000000,0.000027049000000,0.000013028333333,0.000027246000000,0.000185257000000,0.000057258000000,0.000028431500000,0.000249258000000,0.000065554000000,0.000095973000000,0.000272566000000,0.000053702000000 +0.000021715500000,0.000096369000000,0.000026258500000,0.000012896666667,0.000027049000000,0.000182492000000,0.000058838000000,0.000026258500000,0.000180912000000,0.000063974000000,0.000117307000000,0.000576763000000,0.000053307000000 +0.000021518000000,0.000118493000000,0.000026851000000,0.000019349333333,0.000027246500000,0.000198690000000,0.000058838000000,0.000027246000000,0.000225159000000,0.000063183000000,0.000115727000000,0.000312467000000,0.000051727000000 +0.000021320000000,0.000096369000000,0.000027049000000,0.000013028333333,0.000027443500000,0.000185257000000,0.000058838000000,0.000027246500000,0.000214492000000,0.000097949000000,0.000117307000000,0.000279677000000,0.000054098000000 +0.000021517500000,0.000096369000000,0.000028036500000,0.000013028666667,0.000026456000000,0.000181702000000,0.000058048000000,0.000026061500000,0.000183282000000,0.000065159000000,0.000094394000000,0.000308122000000,0.000053308000000 +0.000028234000000,0.000096369000000,0.000026258500000,0.000013028666667,0.000027246000000,0.000214888000000,0.000058838000000,0.000026851500000,0.000184468000000,0.000063579000000,0.000118097000000,0.000278492000000,0.000053307000000 +0.000021517500000,0.000115332000000,0.000026061000000,0.000012896666667,0.000026258500000,0.000185653000000,0.000092418000000,0.000025073000000,0.000180912000000,0.000063184000000,0.000096369000000,0.000317208000000,0.000052913000000 +0.000021320500000,0.000105061000000,0.000027048500000,0.000013028333333,0.000053913000000,0.000181702000000,0.000057653000000,0.000025666000000,0.000220023000000,0.000065949000000,0.000124418000000,0.000281258000000,0.000052517000000 +0.000021715500000,0.000096369000000,0.000029024000000,0.000013028333333,0.000026653500000,0.000187628000000,0.000057653000000,0.000025863500000,0.000181308000000,0.000062394000000,0.000117703000000,0.000309307000000,0.000053702000000 +0.000021517500000,0.000118098000000,0.000030802000000,0.000013028333333,0.000027641500000,0.000219233000000,0.000058443000000,0.000026653500000,0.000180912000000,0.000065949000000,0.000096369000000,0.000273751000000,0.000052122000000 +0.000021517500000,0.000115727000000,0.000025666000000,0.000013028333333,0.000028036500000,0.000184467000000,0.000059233000000,0.000026259000000,0.000184072000000,0.000100714000000,0.000117307000000,0.000273752000000,0.000052912000000 +0.000021320000000,0.000096369000000,0.000026061000000,0.000025802000000,0.000026653500000,0.000186838000000,0.000058443000000,0.000026061000000,0.000233061000000,0.000063579000000,0.000096764000000,0.000274147000000,0.000051332000000 +0.000021517500000,0.000116517000000,0.000027246500000,0.000017374000000,0.000027246500000,0.000182492000000,0.000059233000000,0.000025863500000,0.000184073000000,0.000064369000000,0.000096369000000,0.000274936000000,0.000052122000000 +0.000021517500000,0.000119283000000,0.000026258500000,0.000013028333333,0.000027443500000,0.000310097000000,0.000057258000000,0.000059246500000,0.000184468000000,0.000063184000000,0.000096764000000,0.000277307000000,0.000054493000000 +0.000028234000000,0.000096369000000,0.000027048500000,0.000013028333333,0.000025863500000,0.000218443000000,0.000091233000000,0.000027246000000,0.000184468000000,0.000071085000000,0.000096369000000,0.000273751000000,0.000051727000000 +0.000021518000000,0.000129949000000,0.000026851000000,0.000012896666667,0.000043641000000,0.000184468000000,0.000057653000000,0.000026654000000,0.000249653000000,0.000066740000000,0.000096369000000,0.000278097000000,0.000089258000000 +0.000021320500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000026851500000,0.000216073000000,0.000058838000000,0.000026061000000,0.000180517000000,0.000065950000000,0.000096764000000,0.000271776000000,0.000051727000000 +0.000022505500000,0.000099134000000,0.000026061000000,0.000013028333333,0.000027641000000,0.000188419000000,0.000058838000000,0.000028431500000,0.000180912000000,0.000082542000000,0.000117307000000,0.000360270000000,0.000054888000000 +0.000021320000000,0.000116912000000,0.000044826500000,0.000013028333333,0.000026456000000,0.000182492000000,0.000058838000000,0.000027641500000,0.000184468000000,0.000066739000000,0.000121258000000,0.000278888000000,0.000061603000000 +0.000021320000000,0.000096368000000,0.000027049000000,0.000013028333333,0.000027049000000,0.000184467000000,0.000058838000000,0.000026258500000,0.000180912000000,0.000063579000000,0.000094789000000,0.000322739000000,0.000052912000000 +0.000021320000000,0.000129949000000,0.000027839000000,0.000013028333333,0.000027838500000,0.000304961000000,0.000058443000000,0.000025666000000,0.000183283000000,0.000065950000000,0.000117308000000,0.000276122000000,0.000051727000000 +0.000022505500000,0.000096369000000,0.000026258500000,0.000013028666667,0.000027049000000,0.000185258000000,0.000058443000000,0.000060233500000,0.000184073000000,0.000063184000000,0.000094789000000,0.000346048000000,0.000053308000000 +0.000021320500000,0.000096369000000,0.000026061000000,0.000013028333333,0.000027641500000,0.000182492000000,0.000104270000000,0.000025863500000,0.000210937000000,0.000063184000000,0.000116913000000,0.000271776000000,0.000074246000000 +0.000021518000000,0.000116123000000,0.000027048500000,0.000013555333333,0.000054307500000,0.000199875000000,0.000058838000000,0.000026653500000,0.000184862000000,0.000070295000000,0.000119282000000,0.000322739000000,0.000067529000000 +0.000021320500000,0.000096369000000,0.000029024000000,0.000013423666667,0.000027246500000,0.000181307000000,0.000057258000000,0.000026061000000,0.000218838000000,0.000065949000000,0.000117307000000,0.000273751000000,0.000052122000000 +0.000021517500000,0.000122048000000,0.000030407000000,0.000013423333333,0.000027641500000,0.000184072000000,0.000059234000000,0.000026061000000,0.000180518000000,0.000067529000000,0.000116912000000,0.000308122000000,0.000053307000000 +0.000021517500000,0.000116122000000,0.000025666000000,0.000013028333333,0.000027641000000,0.000182097000000,0.000058838000000,0.000028234000000,0.000184073000000,0.000063184000000,0.000117307000000,0.000276122000000,0.000050937000000 +0.000022505500000,0.000096369000000,0.000026456000000,0.000013028333333,0.000027048500000,0.000259530000000,0.000057653000000,0.000026456000000,0.000184073000000,0.000062788000000,0.000100715000000,0.000310492000000,0.000071480000000 +0.000021715500000,0.000114937000000,0.000027246500000,0.000013028333333,0.000027641500000,0.000184468000000,0.000058838000000,0.000025863500000,0.000252023000000,0.000062789000000,0.000109801000000,0.000273357000000,0.000051332000000 +0.000021518000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000187629000000,0.000058838000000,0.000026653500000,0.000179727000000,0.000067134000000,0.000120072000000,0.000291529000000,0.000051727000000 +0.000022505500000,0.000135085000000,0.000026654000000,0.000036468666667,0.000028234000000,0.000184468000000,0.000090838000000,0.000026061500000,0.000180122000000,0.000063579000000,0.000095974000000,0.000276912000000,0.000051727000000 +0.000021518000000,0.000098345000000,0.000027049000000,0.000013818333333,0.000065172000000,0.000217653000000,0.000058443000000,0.000027443500000,0.000180122000000,0.000067134000000,0.000094789000000,0.000276122000000,0.000052122000000 +0.000021518000000,0.000150888000000,0.000026653500000,0.000013687000000,0.000026653500000,0.000235431000000,0.000057653000000,0.000025468500000,0.000229900000000,0.000082147000000,0.000096369000000,0.000282048000000,0.000052122000000 +0.000021517500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000027444000000,0.000182097000000,0.000061999000000,0.000025666000000,0.000183677000000,0.000065159000000,0.000095183000000,0.000280073000000,0.000052123000000 +0.000021715000000,0.000096764000000,0.000026654000000,0.000013818333333,0.000026456000000,0.000183677000000,0.000057653000000,0.000025073500000,0.000183678000000,0.000065554000000,0.000097159000000,0.000274146000000,0.000084517000000 +0.000021518000000,0.000115727000000,0.000026851000000,0.000013423333333,0.000027641500000,0.000443233000000,0.000060023000000,0.000026851000000,0.000184468000000,0.000063184000000,0.000094394000000,0.000272171000000,0.000051332000000 +0.000022703000000,0.000096764000000,0.000028036500000,0.000013028333333,0.000027641500000,0.000236616000000,0.000057653000000,0.000025468500000,0.000229900000000,0.000063184000000,0.000095579000000,0.000287579000000,0.000052518000000 +0.000022505500000,0.000096369000000,0.000026456500000,0.000013423333333,0.000027444000000,0.000217653000000,0.000062394000000,0.000042456000000,0.000184863000000,0.000063579000000,0.000115727000000,0.000281653000000,0.000051332000000 +0.000021518000000,0.000115332000000,0.000026061000000,0.000024222000000,0.000028233500000,0.000181702000000,0.000057653000000,0.000026258500000,0.000181307000000,0.000062789000000,0.000116912000000,0.000315233000000,0.000050937000000 +0.000022505500000,0.000096369000000,0.000027246000000,0.000013028333333,0.000049172000000,0.000181702000000,0.000057653000000,0.000026061000000,0.000184072000000,0.000098345000000,0.000119282000000,0.000275332000000,0.000051727000000 +0.000031592000000,0.000117307000000,0.000029024000000,0.000013028333333,0.000028431500000,0.000182098000000,0.000059233000000,0.000027049000000,0.000180912000000,0.000063184000000,0.000094789000000,0.000346838000000,0.000053307000000 +0.000021518000000,0.000096369000000,0.000047592000000,0.000013555000000,0.000026061000000,0.000218048000000,0.000057653000000,0.000026653500000,0.000184073000000,0.000064369000000,0.000095579000000,0.000275727000000,0.000066344000000 +0.000021518000000,0.000115332000000,0.000025863500000,0.000013028333333,0.000026653500000,0.000185653000000,0.000057258000000,0.000025468500000,0.000184467000000,0.000066740000000,0.000094394000000,0.000480368000000,0.000051332000000 +0.000021517500000,0.000095974000000,0.000026456000000,0.000013028333333,0.000027641500000,0.000182097000000,0.000057653000000,0.000026061000000,0.000223183000000,0.000062393000000,0.000095579000000,0.000277702000000,0.000050937000000 +0.000021518000000,0.000094789000000,0.000026851000000,0.000013028333333,0.000038110500000,0.000181308000000,0.000057653000000,0.000026061000000,0.000180912000000,0.000063184000000,0.000117307000000,0.000293110000000,0.000051727000000 +0.000021320000000,0.000096369000000,0.000026258500000,0.000013423333333,0.000027443500000,0.000216467000000,0.000058838000000,0.000027246500000,0.000185257000000,0.000066344000000,0.000117308000000,0.000273751000000,0.000052123000000 +0.000022703000000,0.000203431000000,0.000027049000000,0.000013028333333,0.000045024000000,0.000181307000000,0.000072271000000,0.000028431500000,0.000180912000000,0.000085307000000,0.000095974000000,0.000314443000000,0.000054098000000 +0.000021518000000,0.000124418000000,0.000027048500000,0.000013818333333,0.000026259000000,0.000184862000000,0.000058048000000,0.000025863500000,0.000225159000000,0.000062393000000,0.000117307000000,0.000276122000000,0.000115332000000 +0.000021517500000,0.000096764000000,0.000026851500000,0.000017637666667,0.000027838500000,0.000183678000000,0.000057258000000,0.000024876000000,0.000188023000000,0.000065554000000,0.000100320000000,0.000341702000000,0.000051332000000 +0.000038703000000,0.000094394000000,0.000050554500000,0.000012897000000,0.000028431500000,0.000198295000000,0.000057653000000,0.000026456000000,0.000182097000000,0.000065554000000,0.000094789000000,0.000273356000000,0.000052122000000 +0.000046011500000,0.000149307000000,0.000027049000000,0.000013028333333,0.000026061000000,0.000182098000000,0.000058839000000,0.000026061000000,0.000180517000000,0.000067530000000,0.000116517000000,0.000334986000000,0.000052517000000 +0.000021518000000,0.000115727000000,0.000027246000000,0.000013028666667,0.000026653500000,0.000185258000000,0.000058048000000,0.000026456000000,0.000551085000000,0.000063974000000,0.000116912000000,0.000277702000000,0.000053307000000 +0.000021715500000,0.000116517000000,0.000027838500000,0.000013028333333,0.000026653500000,0.000185258000000,0.000058838000000,0.000025666000000,0.000218838000000,0.000065950000000,0.000117702000000,0.000314838000000,0.000050936000000 +0.000022703000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000026851500000,0.000198295000000,0.000058838000000,0.000035345000000,0.000215678000000,0.000082937000000,0.000094789000000,0.000276517000000,0.000086098000000 +0.000021517500000,0.000100714000000,0.000025666000000,0.000013028333333,0.000054505500000,0.000180912000000,0.000058838000000,0.000028431500000,0.000180517000000,0.000063579000000,0.000117307000000,0.000357899000000,0.000053307000000 +0.000022308000000,0.000148517000000,0.000026851000000,0.000013028333333,0.000059246000000,0.000181308000000,0.000057653000000,0.000026456500000,0.000181307000000,0.000063579000000,0.000119678000000,0.000272566000000,0.000053307000000 +0.000021320000000,0.000096369000000,0.000028826500000,0.000029489333333,0.000029221500000,0.000204221000000,0.000058839000000,0.000026653500000,0.000184863000000,0.000063184000000,0.000115332000000,0.000310097000000,0.000051332000000 +0.000021715500000,0.000115727000000,0.000030604500000,0.000013555000000,0.000027443500000,0.000182492000000,0.000058839000000,0.000026653500000,0.000327480000000,0.000063184000000,0.000095974000000,0.000273356000000,0.000052517000000 +0.000021518000000,0.000116122000000,0.000025863500000,0.000013555333333,0.000026851500000,0.000188023000000,0.000058839000000,0.000025271000000,0.000183678000000,0.000067134000000,0.000118887000000,0.000313258000000,0.000052122000000 +0.000021518000000,0.000116122000000,0.000026654000000,0.000012896666667,0.000027048500000,0.000183678000000,0.000058443000000,0.000026258500000,0.000184863000000,0.000065554000000,0.000116912000000,0.000280862000000,0.000051727000000 +0.000021517500000,0.000115727000000,0.000026654000000,0.000013028333333,0.000053913000000,0.000218443000000,0.000057258000000,0.000026456500000,0.000205406000000,0.000063184000000,0.000094789000000,0.000273356000000,0.000051332000000 +0.000021518000000,0.000096764000000,0.000026258500000,0.000013555333333,0.000028826500000,0.000185653000000,0.000077802000000,0.000026258500000,0.000180517000000,0.000069900000000,0.000138246000000,0.000277307000000,0.000053308000000 +0.000022703000000,0.000096764000000,0.000027048500000,0.000013160000000,0.000026654000000,0.000181702000000,0.000058838000000,0.000032184500000,0.000180517000000,0.000065949000000,0.000132715000000,0.000284023000000,0.000051332000000 +0.000021320500000,0.000096369000000,0.000027246500000,0.000013555000000,0.000026061000000,0.000181702000000,0.000058443000000,0.000026851500000,0.000183678000000,0.000063579000000,0.000131530000000,0.000277702000000,0.000053702000000 +0.000021518000000,0.000096369000000,0.000054703000000,0.000012896666667,0.000027049000000,0.000257159000000,0.000057652000000,0.000025863500000,0.000200270000000,0.000062789000000,0.000094394000000,0.000274147000000,0.000052912000000 +0.000021518000000,0.000116122000000,0.000026061000000,0.000019876000000,0.000026456000000,0.000182493000000,0.000058838000000,0.000026851500000,0.000181702000000,0.000063184000000,0.000115332000000,0.000273752000000,0.000054492000000 +0.000021715500000,0.000148912000000,0.000026851500000,0.000013028333333,0.000027444000000,0.000181702000000,0.000058839000000,0.000026456000000,0.000183283000000,0.000063184000000,0.000115727000000,0.000272566000000,0.000098739000000 +0.000021517500000,0.000095183000000,0.000026851000000,0.000013028333333,0.000026258500000,0.000180912000000,0.000058838000000,0.000025863500000,0.000183678000000,0.000065159000000,0.000114937000000,0.000492615000000,0.000051727000000 +0.000022505500000,0.000117307000000,0.000027839000000,0.000013028333333,0.000033764500000,0.000215282000000,0.000058838000000,0.000026061000000,0.000214097000000,0.000156813000000,0.000116912000000,0.000272962000000,0.000051332000000 +0.000021715500000,0.000096764000000,0.000026258500000,0.000012896666667,0.000027049000000,0.000181307000000,0.000077011000000,0.000026061000000,0.000184468000000,0.000067135000000,0.000095183000000,0.000274542000000,0.000052517000000 +0.000021518000000,0.000096369000000,0.000026258500000,0.000012896666667,0.000027443500000,0.000181308000000,0.000061209000000,0.000026851500000,0.000180122000000,0.000067135000000,0.000131925000000,0.000271776000000,0.000052912000000 +0.000021518000000,0.000096369000000,0.000026851000000,0.000012896666667,0.000026653500000,0.000180912000000,0.000057258000000,0.000025863500000,0.000182887000000,0.000067529000000,0.000116912000000,0.000272962000000,0.000051727000000 +0.000021320500000,0.000096369000000,0.000028826500000,0.000013028333333,0.000026851500000,0.000252023000000,0.000058443000000,0.000028431000000,0.000263480000000,0.000068320000000,0.000096369000000,0.000327085000000,0.000098345000000 +0.000021518000000,0.000096369000000,0.000030406500000,0.000013028333333,0.000028629000000,0.000184863000000,0.000058838000000,0.000026061000000,0.000183677000000,0.000063974000000,0.000117702000000,0.000272962000000,0.000051332000000 +0.000021518000000,0.000095974000000,0.000025666000000,0.000012896666667,0.000027049000000,0.000184862000000,0.000057258000000,0.000025666000000,0.000187629000000,0.000083727000000,0.000117308000000,0.000270986000000,0.000050937000000 +0.000021913000000,0.000096764000000,0.000026258500000,0.000012896666667,0.000028036500000,0.000187233000000,0.000058839000000,0.000026259000000,0.000186048000000,0.000102690000000,0.000117307000000,0.000279678000000,0.000051332000000 +0.000021518000000,0.000151677000000,0.000026851000000,0.000014345000000,0.000064777000000,0.000197900000000,0.000057258000000,0.000026061500000,0.000215282000000,0.000065949000000,0.000115331000000,0.000271381000000,0.000052517000000 +0.000021518000000,0.000116122000000,0.000026259000000,0.000012896666667,0.000028233500000,0.000184073000000,0.000092419000000,0.000026851000000,0.000180517000000,0.000065949000000,0.000097159000000,0.000273356000000,0.000050937000000 +0.000021320000000,0.000117307000000,0.000026851000000,0.000013555333333,0.000027246500000,0.000188023000000,0.000058838000000,0.000053715500000,0.000184073000000,0.000065554000000,0.000117702000000,0.000281258000000,0.000050937000000 +0.000021518000000,0.000116122000000,0.000026851000000,0.000013423333333,0.000027444000000,0.000183678000000,0.000058443000000,0.000068135500000,0.000185258000000,0.000063184000000,0.000115332000000,0.000273752000000,0.000059233000000 +0.000021518000000,0.000116122000000,0.000026653500000,0.000013028333333,0.000027048500000,0.000186443000000,0.000058443000000,0.000028431500000,0.000187233000000,0.000067925000000,0.000148517000000,0.000280072000000,0.000052517000000 +0.000021320500000,0.000141011000000,0.000026258500000,0.000013028333333,0.000027641000000,0.000184863000000,0.000058838000000,0.000026061000000,0.000180912000000,0.000131530000000,0.000095974000000,0.000288763000000,0.000051332000000 +0.000021320000000,0.000096369000000,0.000026851500000,0.000013423333333,0.000026851000000,0.000214097000000,0.000058838000000,0.000026258500000,0.000181307000000,0.000065950000000,0.000096369000000,0.000272962000000,0.000052122000000 +0.000021320000000,0.000096369000000,0.000026851000000,0.000012896666667,0.000028234000000,0.000224764000000,0.000057653000000,0.000026653500000,0.000180518000000,0.000064764000000,0.000094789000000,0.000343678000000,0.000056073000000 +0.000021913000000,0.000114936000000,0.000028036500000,0.000026460333333,0.000027443500000,0.000186048000000,0.000057258000000,0.000024678000000,0.000184863000000,0.000065950000000,0.000117703000000,0.000272962000000,0.000052517000000 +0.000021715000000,0.000096764000000,0.000026456500000,0.000040682666667,0.000026456500000,0.000184862000000,0.000091233000000,0.000025863500000,0.000183677000000,0.000064764000000,0.000158788000000,0.000348023000000,0.000084517000000 +0.000021517500000,0.000114937000000,0.000026258500000,0.000018164333333,0.000027443500000,0.000187233000000,0.000057258000000,0.000026061000000,0.000186838000000,0.000063579000000,0.000114146000000,0.000273357000000,0.000050936000000 +0.000022308000000,0.000096764000000,0.000036727500000,0.000013028333333,0.000027443500000,0.000215678000000,0.000057258000000,0.000025863500000,0.000200270000000,0.000063184000000,0.000116517000000,0.000345257000000,0.000051727000000 +0.000021518000000,0.000115332000000,0.000037320500000,0.000013028333333,0.000027839000000,0.000182097000000,0.000057653000000,0.000026654000000,0.000186442000000,0.000098739000000,0.000116912000000,0.000275332000000,0.000051332000000 +0.000021320500000,0.000116122000000,0.000030407000000,0.000013555000000,0.000026654000000,0.000184467000000,0.000059233000000,0.000026258500000,0.000181702000000,0.000063579000000,0.000096764000000,0.000357109000000,0.000051727000000 +0.000021320500000,0.000115727000000,0.000025666000000,0.000013028333333,0.000027048500000,0.000182097000000,0.000058838000000,0.000025073500000,0.000186838000000,0.000063974000000,0.000152468000000,0.000276912000000,0.000053703000000 +0.000021518000000,0.000149702000000,0.000026061000000,0.000018427666667,0.000027049000000,0.000217653000000,0.000057653000000,0.000026456000000,0.000214887000000,0.000067924000000,0.000100319000000,0.000345257000000,0.000051727000000 +0.000022506000000,0.000095974000000,0.000026851500000,0.000013028333333,0.000034160000000,0.000183282000000,0.000057258000000,0.000060036500000,0.000184468000000,0.000064369000000,0.000117702000000,0.000276517000000,0.000050937000000 +0.000021517500000,0.000117307000000,0.000026258500000,0.000012896666667,0.000027246000000,0.000188023000000,0.000093998000000,0.000026061000000,0.000184468000000,0.000063184000000,0.000096764000000,0.000346838000000,0.000051332000000 +0.000022505500000,0.000096368000000,0.000036135000000,0.000013028333333,0.000028629000000,0.000188023000000,0.000072270000000,0.000025468500000,0.000187628000000,0.000062394000000,0.000096764000000,0.000276122000000,0.000051728000000 +0.000021518000000,0.000117702000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000217653000000,0.000057653000000,0.000026851000000,0.000269011000000,0.000101900000000,0.000099134000000,0.000346048000000,0.000052122000000 +0.000021320500000,0.000094394000000,0.000026851500000,0.000012896666667,0.000027444000000,0.000184072000000,0.000058838000000,0.000027641500000,0.000185257000000,0.000063183000000,0.000114541000000,0.000273751000000,0.000051727000000 +0.000021320500000,0.000096369000000,0.000026061000000,0.000012896666667,0.000027246000000,0.000185257000000,0.000057258000000,0.000026061000000,0.000184072000000,0.000063184000000,0.000096369000000,0.000491035000000,0.000052913000000 +0.000021320500000,0.000117307000000,0.000026851000000,0.000012896666667,0.000027444000000,0.000183677000000,0.000057653000000,0.000026456500000,0.000184468000000,0.000068714000000,0.000094394000000,0.000280467000000,0.000051332000000 +0.000021518000000,0.000096764000000,0.000026851500000,0.000013028333333,0.000027048500000,0.000185652000000,0.000058838000000,0.000025271000000,0.000218443000000,0.000067135000000,0.000117307000000,0.000275332000000,0.000088863000000 +0.000021715500000,0.000165505000000,0.000028036000000,0.000012896666667,0.000061814000000,0.000182097000000,0.000057258000000,0.000048382000000,0.000224764000000,0.000062394000000,0.000096764000000,0.000274542000000,0.000067924000000 +0.000021518000000,0.000149307000000,0.000026456000000,0.000013028333333,0.000028036500000,0.000185258000000,0.000092813000000,0.000026851000000,0.000180122000000,0.000065555000000,0.000110591000000,0.000272171000000,0.000051728000000 +0.000021518000000,0.000096369000000,0.000043049000000,0.000013028333333,0.000027838500000,0.000181307000000,0.000058838000000,0.000027049000000,0.000180913000000,0.000082542000000,0.000096369000000,0.000280467000000,0.000052122000000 +0.000021518000000,0.000116122000000,0.000026851000000,0.000013292000000,0.000026851000000,0.000185653000000,0.000057258000000,0.000026061000000,0.000184467000000,0.000065949000000,0.000094394000000,0.000312468000000,0.000053702000000 +0.000021518000000,0.000115332000000,0.000029024000000,0.000013028333333,0.000027246500000,0.000182493000000,0.000058838000000,0.000026258500000,0.000187233000000,0.000065949000000,0.000096369000000,0.000277308000000,0.000119677000000 +0.000021518000000,0.000114937000000,0.000030604500000,0.000013555000000,0.000027443500000,0.000183282000000,0.000058838000000,0.000025863500000,0.000184468000000,0.000063184000000,0.000100714000000,0.000306937000000,0.000053702000000 +0.000021518000000,0.000160764000000,0.000026456000000,0.000013028333333,0.000027443500000,0.000181702000000,0.000058839000000,0.000026061000000,0.000253603000000,0.000063974000000,0.000117307000000,0.000280073000000,0.000051727000000 +0.000022505500000,0.000321949000000,0.000026061000000,0.000013028333333,0.000028431500000,0.000185258000000,0.000058838000000,0.000027049000000,0.000186838000000,0.000064369000000,0.000096369000000,0.000315233000000,0.000052122000000 +0.000021518000000,0.000125209000000,0.000027048500000,0.000012896666667,0.000042851000000,0.000185258000000,0.000058838000000,0.000053320500000,0.000186048000000,0.000064369000000,0.000117307000000,0.000282838000000,0.000051332000000 +0.000021518000000,0.000151282000000,0.000026061000000,0.000013028333333,0.000027048500000,0.000181702000000,0.000092418000000,0.000026851000000,0.000181307000000,0.000065159000000,0.000095974000000,0.000310887000000,0.000051332000000 +0.000031987000000,0.000096764000000,0.000033567500000,0.000024222000000,0.000027048500000,0.000201850000000,0.000058838000000,0.000026456500000,0.000218048000000,0.000201851000000,0.000096764000000,0.000276912000000,0.000050936000000 +0.000021518000000,0.000096369000000,0.000027246000000,0.000012896666667,0.000027839000000,0.000229505000000,0.000058048000000,0.000027048500000,0.000280072000000,0.000098739000000,0.000116122000000,0.000319183000000,0.000052912000000 +0.000021517500000,0.000094789000000,0.000026851000000,0.000013423333333,0.000028431500000,0.000186443000000,0.000058838000000,0.000026258500000,0.000181702000000,0.000063974000000,0.000096369000000,0.000278887000000,0.000051727000000 +0.000021517500000,0.000095974000000,0.000026061000000,0.000012896666667,0.000026851500000,0.000182887000000,0.000057653000000,0.000026061000000,0.000206196000000,0.000064369000000,0.000096369000000,0.000281653000000,0.000053307000000 +0.000021517500000,0.000183678000000,0.000026851000000,0.000013028333333,0.000026851000000,0.000214888000000,0.000058839000000,0.000025666000000,0.000183678000000,0.000082936000000,0.000096369000000,0.000272566000000,0.000051727000000 +0.000022505500000,0.000095974000000,0.000027049000000,0.000013555000000,0.000026654000000,0.000181703000000,0.000058443000000,0.000027443500000,0.000184468000000,0.000065949000000,0.000117702000000,0.000281652000000,0.000052122000000 +0.000021518000000,0.000095974000000,0.000028036500000,0.000013555333333,0.000044431000000,0.000182097000000,0.000058838000000,0.000042653500000,0.000181307000000,0.000067529000000,0.000096369000000,0.000349208000000,0.000051332000000 +0.000021517500000,0.000117702000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000185653000000,0.000091628000000,0.000025073500000,0.000262295000000,0.000065554000000,0.000129554000000,0.000303381000000,0.000069110000000 +0.000021518000000,0.000115727000000,0.000041863500000,0.000013028333333,0.000027443500000,0.000182098000000,0.000057258000000,0.000027444000000,0.000237801000000,0.000063579000000,0.000096369000000,0.000276122000000,0.000050542000000 +0.000021320000000,0.000163925000000,0.000026851000000,0.000013423333333,0.000026851500000,0.000184863000000,0.000058443000000,0.000028431500000,0.000186838000000,0.000064369000000,0.000094394000000,0.000314047000000,0.000051332000000 +0.000021518000000,0.000096764000000,0.000029024500000,0.000013423333333,0.000027246000000,0.000185258000000,0.000058838000000,0.000026258500000,0.000184467000000,0.000065554000000,0.000096764000000,0.000280072000000,0.000053307000000 +0.000021518000000,0.000096369000000,0.000030604000000,0.000013687000000,0.000028036500000,0.000185653000000,0.000058838000000,0.000028431500000,0.000197505000000,0.000065159000000,0.000117308000000,0.000306936000000,0.000052912000000 +0.000021715000000,0.000117703000000,0.000026258500000,0.000013028333333,0.000027838500000,0.000184862000000,0.000057652000000,0.000026456000000,0.000185257000000,0.000063579000000,0.000153258000000,0.000274542000000,0.000052912000000 +0.000021517500000,0.000116912000000,0.000025863500000,0.000013028333333,0.000025863500000,0.000183282000000,0.000058838000000,0.000026654000000,0.000184072000000,0.000067925000000,0.000117702000000,0.000306936000000,0.000131134000000 +0.000021715500000,0.000184863000000,0.000026851000000,0.000013028333333,0.000044036000000,0.000184467000000,0.000058839000000,0.000035937500000,0.000184467000000,0.000063974000000,0.000118097000000,0.000284023000000,0.000050937000000 +0.000021518000000,0.000096369000000,0.000070703000000,0.000013028333333,0.000028431500000,0.000202245000000,0.000092418000000,0.000034357500000,0.000184467000000,0.000067530000000,0.000117307000000,0.000308517000000,0.000051332000000 +0.000021320500000,0.000096764000000,0.000028431500000,0.000013555000000,0.000028036000000,0.000181307000000,0.000058048000000,0.000026456000000,0.000184073000000,0.000062789000000,0.000097160000000,0.000308122000000,0.000051332000000 +0.000021517500000,0.000096369000000,0.000027049000000,0.000013028333333,0.000026653500000,0.000185258000000,0.000058838000000,0.000026653500000,0.000183282000000,0.000064369000000,0.000097554000000,0.000308912000000,0.000054097000000 +0.000021518000000,0.000094789000000,0.000027048500000,0.000012896666667,0.000026653500000,0.000181702000000,0.000057258000000,0.000026851000000,0.000204221000000,0.000066739000000,0.000096369000000,0.000271777000000,0.000052912000000 +0.000021518000000,0.000149307000000,0.000026258500000,0.000017900666667,0.000027444000000,0.000216468000000,0.000059233000000,0.000026456500000,0.000181703000000,0.000096369000000,0.000094394000000,0.000322344000000,0.000053307000000 +0.000021715500000,0.000094394000000,0.000026851500000,0.000014740333333,0.000026851000000,0.000181702000000,0.000058443000000,0.000026456500000,0.000186838000000,0.000063184000000,0.000096369000000,0.000273751000000,0.000051332000000 +0.000021517500000,0.000115727000000,0.000026851000000,0.000013028333333,0.000026456000000,0.000181702000000,0.000058839000000,0.000026061000000,0.000186838000000,0.000063974000000,0.000096369000000,0.000311282000000,0.000053703000000 +0.000021320500000,0.000096369000000,0.000028036500000,0.000013028666667,0.000051345000000,0.000181307000000,0.000057653000000,0.000042456000000,0.000220023000000,0.000063579000000,0.000117703000000,0.000279283000000,0.000052913000000 +0.000021320000000,0.000114937000000,0.000026258500000,0.000012896666667,0.000027246000000,0.000246888000000,0.000075826000000,0.000025468500000,0.000186838000000,0.000063578000000,0.000256369000000,0.000272962000000,0.000053307000000 +0.000021518000000,0.000116122000000,0.000025666000000,0.000013028333333,0.000026654000000,0.000180517000000,0.000059233000000,0.000025073500000,0.000184862000000,0.000065555000000,0.000184468000000,0.000272566000000,0.000053308000000 +0.000021518000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000028234000000,0.000180912000000,0.000057653000000,0.000025863500000,0.000184072000000,0.000063184000000,0.000116913000000,0.000274147000000,0.000052912000000 +0.000021518000000,0.000096369000000,0.000028629000000,0.000012896666667,0.000027048500000,0.000183283000000,0.000057653000000,0.000025270500000,0.000220419000000,0.000084912000000,0.000118888000000,0.000272567000000,0.000067530000000 +0.000021518000000,0.000116518000000,0.000030407000000,0.000012896666667,0.000027246500000,0.000218443000000,0.000060023000000,0.000025468500000,0.000184072000000,0.000063579000000,0.000117307000000,0.000272961000000,0.000050937000000 +0.000021518000000,0.000096369000000,0.000025666000000,0.000019217666667,0.000027444000000,0.000184468000000,0.000059233000000,0.000027048500000,0.000186838000000,0.000063579000000,0.000117307000000,0.000475628000000,0.000052912000000 +0.000037518000000,0.000117702000000,0.000025863500000,0.000013028333333,0.000028036000000,0.000184863000000,0.000058443000000,0.000026061000000,0.000186048000000,0.000063184000000,0.000115727000000,0.000275332000000,0.000051332000000 +0.000021320500000,0.000114542000000,0.000026851500000,0.000012896666667,0.000043839000000,0.000185258000000,0.000059233000000,0.000026258500000,0.000216072000000,0.000063578000000,0.000095974000000,0.000275332000000,0.000052122000000 +0.000021518000000,0.000115332000000,0.000026456000000,0.000013028333333,0.000026653500000,0.000222394000000,0.000091628000000,0.000036332500000,0.000180517000000,0.000067135000000,0.000099135000000,0.000278097000000,0.000054887000000 +0.000021517500000,0.000105060000000,0.000027444000000,0.000013028333333,0.000026061000000,0.000184467000000,0.000057653000000,0.000025468500000,0.000184073000000,0.000063184000000,0.000114147000000,0.000273356000000,0.000050937000000 +0.000021320000000,0.000095974000000,0.000027048500000,0.000013028333333,0.000027444000000,0.000188023000000,0.000057258000000,0.000026061000000,0.000184863000000,0.000063184000000,0.000117307000000,0.000273751000000,0.000053702000000 +0.000021320500000,0.000094394000000,0.000026851500000,0.000012896666667,0.000025863500000,0.000181308000000,0.000058839000000,0.000025863500000,0.000218838000000,0.000063579000000,0.000094789000000,0.000280073000000,0.000051332000000 +0.000022505500000,0.000115727000000,0.000026259000000,0.000012896666667,0.000026456000000,0.000217653000000,0.000058838000000,0.000026851000000,0.000184073000000,0.000067135000000,0.000117307000000,0.000273752000000,0.000055283000000 +0.000021320000000,0.000096369000000,0.000026851000000,0.000012896666667,0.000026456000000,0.000185653000000,0.000058838000000,0.000026061000000,0.000180517000000,0.000065554000000,0.000094393000000,0.000342887000000,0.000061999000000 +0.000020333000000,0.000096764000000,0.000036332500000,0.000012896666667,0.000027443500000,0.000184468000000,0.000058838000000,0.000025863500000,0.000180517000000,0.000064764000000,0.000096369000000,0.000271776000000,0.000052122000000 +0.000020135000000,0.000105060000000,0.000028036500000,0.000013028333333,0.000026851500000,0.000182097000000,0.000097160000000,0.000025863500000,0.000218048000000,0.000062788000000,0.000096369000000,0.000349604000000,0.000051728000000 +0.000021320500000,0.000095974000000,0.000026456000000,0.000013028333333,0.000029024000000,0.000248863000000,0.000092023000000,0.000033369500000,0.000180912000000,0.000065554000000,0.000096369000000,0.000275332000000,0.000053307000000 +0.000020135000000,0.000126393000000,0.000025666000000,0.000013028666667,0.000027246500000,0.000182098000000,0.000070690000000,0.000026061000000,0.000230690000000,0.000063579000000,0.000096369000000,0.000309307000000,0.000052912000000 +0.000020332500000,0.000094789000000,0.000027049000000,0.000013555000000,0.000028628500000,0.000181702000000,0.000058443000000,0.000027246000000,0.000183677000000,0.000088863000000,0.000105060000000,0.000276122000000,0.000052517000000 +0.000020135000000,0.000096369000000,0.000029024000000,0.000013423333333,0.000026061500000,0.000214888000000,0.000057653000000,0.000028234000000,0.000186443000000,0.000063974000000,0.000096369000000,0.000312072000000,0.000050937000000 +0.000020135500000,0.000097159000000,0.000030801500000,0.000013423333333,0.000028233500000,0.000187628000000,0.000058443000000,0.000025863500000,0.000180517000000,0.000067135000000,0.000116912000000,0.000317998000000,0.000053308000000 +0.000020135500000,0.000114147000000,0.000025863500000,0.000013028333333,0.000026259000000,0.000182098000000,0.000058443000000,0.000025271000000,0.000184073000000,0.000063184000000,0.000114542000000,0.000306541000000,0.000051332000000 +0.000021122500000,0.000109801000000,0.000043048500000,0.000013028333333,0.000027048500000,0.000183283000000,0.000091233000000,0.000026061000000,0.000221999000000,0.000064764000000,0.000096764000000,0.000272566000000,0.000051332000000 +0.000020332500000,0.000100714000000,0.000027048500000,0.000013028333333,0.000044431500000,0.000217653000000,0.000058838000000,0.000026258500000,0.000184072000000,0.000062789000000,0.000096369000000,0.000311282000000,0.000050937000000 +0.000028233500000,0.000096369000000,0.000026258500000,0.000024221666667,0.000027246000000,0.000184073000000,0.000058838000000,0.000028629000000,0.000183677000000,0.000063184000000,0.000118887000000,0.000275332000000,0.000052122000000 +0.000021123000000,0.000115727000000,0.000026851500000,0.000013028333333,0.000028629000000,0.000184468000000,0.000057258000000,0.000025863500000,0.000184467000000,0.000097159000000,0.000094394000000,0.000325900000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000027048500000,0.000013028333333,0.000028431500000,0.000182097000000,0.000058839000000,0.000027246000000,0.000259134000000,0.000065555000000,0.000117307000000,0.000273751000000,0.000052517000000 +0.000020332500000,0.000199480000000,0.000027049000000,0.000013028333333,0.000027246000000,0.000217652000000,0.000057258000000,0.000029419000000,0.000185258000000,0.000062789000000,0.000094393000000,0.000279283000000,0.000051332000000 +0.000020135000000,0.000117308000000,0.000026456500000,0.000012896666667,0.000026061000000,0.000185653000000,0.000062394000000,0.000026061000000,0.000184073000000,0.000062789000000,0.000096369000000,0.000278492000000,0.000065159000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013818666667,0.000027246000000,0.000184863000000,0.000057258000000,0.000027443500000,0.000187233000000,0.000062788000000,0.000115727000000,0.000274541000000,0.000051332000000 +0.000020135000000,0.000096764000000,0.000034160000000,0.000013423333333,0.000026456500000,0.000181702000000,0.000098739000000,0.000026061000000,0.000217653000000,0.000063974000000,0.000096764000000,0.000276912000000,0.000051727000000 +0.000021320500000,0.000115727000000,0.000028036500000,0.000013028333333,0.000027048500000,0.000215677000000,0.000071085000000,0.000026258500000,0.000183677000000,0.000063184000000,0.000117703000000,0.000275331000000,0.000053307000000 +0.000021122500000,0.000142196000000,0.000026258500000,0.000013555000000,0.000027839000000,0.000183678000000,0.000058839000000,0.000026061500000,0.000180912000000,0.000064764000000,0.000094788000000,0.000276517000000,0.000050937000000 +0.000037715500000,0.000096369000000,0.000025666000000,0.000012896666667,0.000027444000000,0.000182097000000,0.000057653000000,0.000026653500000,0.000183677000000,0.000063184000000,0.000117307000000,0.000272962000000,0.000051727000000 +0.000021123000000,0.000097159000000,0.000026851500000,0.000013028333333,0.000027838500000,0.000181703000000,0.000057653000000,0.000026061000000,0.000199085000000,0.000070690000000,0.000096369000000,0.000273356000000,0.000120468000000 +0.000020332500000,0.000095973000000,0.000028826500000,0.000013028333333,0.000027641500000,0.000216863000000,0.000059233000000,0.000026456000000,0.000184467000000,0.000082542000000,0.000094789000000,0.000274147000000,0.000052517000000 +0.000020332500000,0.000114937000000,0.000030604000000,0.000013423666667,0.000027246000000,0.000183283000000,0.000057258000000,0.000026258500000,0.000186443000000,0.000078986000000,0.000094394000000,0.000306146000000,0.000052912000000 +0.000020135000000,0.000167875000000,0.000026259000000,0.000013028666667,0.000026653500000,0.000181703000000,0.000057258000000,0.000026061000000,0.000184073000000,0.000067924000000,0.000115332000000,0.000274147000000,0.000051332000000 +0.000020332500000,0.000114937000000,0.000032382000000,0.000012896666667,0.000027641000000,0.000182097000000,0.000070690000000,0.000026061000000,0.000236616000000,0.000065949000000,0.000117308000000,0.000308517000000,0.000051332000000 +0.000020135000000,0.000094393000000,0.000026851000000,0.000013028333333,0.000028431500000,0.000231480000000,0.000057653000000,0.000025666000000,0.000184862000000,0.000096764000000,0.000096369000000,0.000278097000000,0.000050937000000 +0.000020135000000,0.000115727000000,0.000026061000000,0.000013555000000,0.000060036500000,0.000181307000000,0.000058838000000,0.000060629000000,0.000184467000000,0.000065949000000,0.000097949000000,0.000317208000000,0.000071085000000 +0.000021320500000,0.000096764000000,0.000026653500000,0.000012896666667,0.000044629000000,0.000181703000000,0.000059233000000,0.000026653500000,0.000218443000000,0.000064764000000,0.000095974000000,0.000278887000000,0.000053307000000 +0.000029814500000,0.000130739000000,0.000026654000000,0.000013686666667,0.000040480500000,0.000181702000000,0.000057653000000,0.000026851000000,0.000184862000000,0.000063974000000,0.000115332000000,0.000368171000000,0.000052913000000 +0.000020333000000,0.000113752000000,0.000026851000000,0.000030806333333,0.000028234000000,0.000267036000000,0.000057258000000,0.000025863500000,0.000180912000000,0.000062789000000,0.000117308000000,0.000273356000000,0.000051332000000 +0.000020333000000,0.000116123000000,0.000026258500000,0.000012896666667,0.000026456000000,0.000184073000000,0.000057258000000,0.000025271000000,0.000184073000000,0.000062788000000,0.000096369000000,0.000348023000000,0.000051727000000 +0.000020332500000,0.000096764000000,0.000043839000000,0.000018296000000,0.000043839000000,0.000181702000000,0.000058838000000,0.000025863500000,0.000217653000000,0.000065554000000,0.000117307000000,0.000275331000000,0.000052122000000 +0.000020135000000,0.000094394000000,0.000026851500000,0.000013028333333,0.000026258500000,0.000215282000000,0.000071480000000,0.000026653500000,0.000187234000000,0.000063183000000,0.000096764000000,0.000400962000000,0.000053307000000 +0.000020332500000,0.000179727000000,0.000028036000000,0.000013028333333,0.000028629000000,0.000181703000000,0.000058838000000,0.000026851500000,0.000180517000000,0.000063184000000,0.000114542000000,0.000272962000000,0.000051332000000 +0.000021320500000,0.000285208000000,0.000026061000000,0.000013028333333,0.000027048500000,0.000185258000000,0.000058838000000,0.000024875500000,0.000184862000000,0.000062788000000,0.000096369000000,0.000323529000000,0.000052122000000 +0.000020332500000,0.000127579000000,0.000026061000000,0.000013028333333,0.000027443500000,0.000186048000000,0.000058838000000,0.000026851000000,0.000219628000000,0.000063579000000,0.000095974000000,0.000280862000000,0.000052518000000 +0.000021123000000,0.000116517000000,0.000026851500000,0.000013028333333,0.000027048500000,0.000218048000000,0.000057258000000,0.000026061500000,0.000183677000000,0.000063579000000,0.000117307000000,0.000358690000000,0.000052517000000 +0.000020333000000,0.000098344000000,0.000028826500000,0.000013028333333,0.000027049000000,0.000217258000000,0.000058838000000,0.000025863500000,0.000184073000000,0.000067530000000,0.000126394000000,0.000279282000000,0.000051727000000 +0.000020332500000,0.000116122000000,0.000030604000000,0.000013423333333,0.000028234000000,0.000182098000000,0.000058838000000,0.000026061000000,0.000186443000000,0.000065949000000,0.000096764000000,0.000310887000000,0.000051727000000 +0.000020530500000,0.000096369000000,0.000051542500000,0.000013555000000,0.000037320500000,0.000184468000000,0.000078196000000,0.000025271000000,0.000218838000000,0.000062789000000,0.000095974000000,0.000279282000000,0.000133504000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000026258500000,0.000325900000000,0.000058443000000,0.000027246500000,0.000184073000000,0.000062789000000,0.000117307000000,0.000362640000000,0.000067135000000 +0.000020332500000,0.000116517000000,0.000027246000000,0.000013028333333,0.000027444000000,0.000199480000000,0.000057257000000,0.000025863500000,0.000184468000000,0.000063578000000,0.000114146000000,0.000281653000000,0.000050937000000 +0.000020135000000,0.000117702000000,0.000033765000000,0.000013423333333,0.000027443500000,0.000181702000000,0.000059233000000,0.000067740000000,0.000184468000000,0.000066739000000,0.000098739000000,0.000307332000000,0.000053703000000 +0.000021320500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000026851000000,0.000250443000000,0.000058839000000,0.000075839000000,0.000218048000000,0.000065949000000,0.000105456000000,0.000274542000000,0.000051332000000 +0.000020333000000,0.000115727000000,0.000027048500000,0.000013423666667,0.000027246500000,0.000185653000000,0.000059233000000,0.000051147000000,0.000183677000000,0.000062789000000,0.000116122000000,0.000299826000000,0.000052912000000 +0.000020333000000,0.000116122000000,0.000027048500000,0.000012896666667,0.000026061000000,0.000186048000000,0.000057653000000,0.000026653500000,0.000184863000000,0.000067134000000,0.000096764000000,0.000293900000000,0.000053308000000 +0.000020333000000,0.000114937000000,0.000043246000000,0.000013160000000,0.000026851000000,0.000182097000000,0.000059233000000,0.000026653500000,0.000185653000000,0.000064764000000,0.000118887000000,0.000312863000000,0.000054888000000 +0.000033764500000,0.000095974000000,0.000026851500000,0.000024090333333,0.000037518000000,0.000267825000000,0.000097159000000,0.000049764500000,0.000329455000000,0.000065159000000,0.000186048000000,0.000273751000000,0.000052122000000 +0.000020332500000,0.000095974000000,0.000027048500000,0.000013028333333,0.000027443500000,0.000181702000000,0.000058838000000,0.000025073500000,0.000184468000000,0.000063579000000,0.000097159000000,0.000310888000000,0.000051727000000 +0.000021320500000,0.000116122000000,0.000028036500000,0.000013028333333,0.000026653500000,0.000182097000000,0.000058838000000,0.000026851000000,0.000184862000000,0.000067134000000,0.000118098000000,0.000274936000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000026456000000,0.000013028333333,0.000028036500000,0.000181702000000,0.000057653000000,0.000026061000000,0.000218838000000,0.000066344000000,0.000096369000000,0.000317999000000,0.000051727000000 +0.000020135500000,0.000116122000000,0.000026456000000,0.000012896666667,0.000026653500000,0.000222394000000,0.000060813000000,0.000026061000000,0.000184468000000,0.000063579000000,0.000117307000000,0.000277702000000,0.000088863000000 +0.000020135000000,0.000116912000000,0.000027246500000,0.000012896666667,0.000027246000000,0.000181702000000,0.000057258000000,0.000026456000000,0.000187233000000,0.000062789000000,0.000120863000000,0.000310097000000,0.000051728000000 +0.000020332500000,0.000096369000000,0.000028826500000,0.000013028333333,0.000026653500000,0.000184468000000,0.000058838000000,0.000028431500000,0.000231480000000,0.000062394000000,0.000117307000000,0.000278097000000,0.000051332000000 +0.000020135000000,0.000097554000000,0.000030604500000,0.000013028333333,0.000028234000000,0.000188024000000,0.000058443000000,0.000026061000000,0.000250443000000,0.000112566000000,0.000133900000000,0.000280862000000,0.000050937000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027246000000,0.000235431000000,0.000091233000000,0.000024875500000,0.000184468000000,0.000064369000000,0.000095974000000,0.000274937000000,0.000052122000000 +0.000037122500000,0.000097159000000,0.000026061000000,0.000012896666667,0.000027444000000,0.000184072000000,0.000058838000000,0.000025073500000,0.000184073000000,0.000065949000000,0.000095974000000,0.000274147000000,0.000052122000000 +0.000020333000000,0.000148122000000,0.000026851000000,0.000019481000000,0.000028629000000,0.000182887000000,0.000057258000000,0.000026061500000,0.000219628000000,0.000063974000000,0.000151677000000,0.000279678000000,0.000052122000000 +0.000020333000000,0.000115727000000,0.000026061500000,0.000013028333333,0.000026456000000,0.000181702000000,0.000058838000000,0.000024876000000,0.000180122000000,0.000062788000000,0.000094789000000,0.000273752000000,0.000051727000000 +0.000020332500000,0.000096368000000,0.000027048500000,0.000013423333333,0.000027049000000,0.000184468000000,0.000058838000000,0.000027641500000,0.000187233000000,0.000063184000000,0.000117307000000,0.000276912000000,0.000051332000000 +0.000020332500000,0.000114542000000,0.000026851000000,0.000013423333333,0.000027443500000,0.000188024000000,0.000058838000000,0.000025468500000,0.000184468000000,0.000065554000000,0.000094788000000,0.000273752000000,0.000058838000000 +0.000020135500000,0.000095974000000,0.000027049000000,0.000013028333333,0.000027246500000,0.000181307000000,0.000058838000000,0.000026456000000,0.000219233000000,0.000099530000000,0.000118097000000,0.000357900000000,0.000052122000000 +0.000020333000000,0.000149703000000,0.000026258500000,0.000013028333333,0.000027444000000,0.000237801000000,0.000058839000000,0.000025666000000,0.000181307000000,0.000067134000000,0.000098739000000,0.000274937000000,0.000050937000000 +0.000020332500000,0.000114937000000,0.000027048500000,0.000013423666667,0.000027443500000,0.000182097000000,0.000152468000000,0.000032777000000,0.000183283000000,0.000067925000000,0.000117307000000,0.000293900000000,0.000051727000000 +0.000020135000000,0.000116122000000,0.000026851500000,0.000013028333333,0.000034555000000,0.000188419000000,0.000178146000000,0.000026456000000,0.000180517000000,0.000066740000000,0.000096369000000,0.000280862000000,0.000092024000000 +0.000020332500000,0.000115727000000,0.000027838500000,0.000012896666667,0.000027444000000,0.000181307000000,0.000072666000000,0.000026456000000,0.000269406000000,0.000065950000000,0.000094394000000,0.000329061000000,0.000052122000000 +0.000020332500000,0.000096764000000,0.000026258500000,0.000018822666667,0.000029024000000,0.000218443000000,0.000057258000000,0.000026456000000,0.000180912000000,0.000066740000000,0.000114937000000,0.000276517000000,0.000051727000000 +0.000020332500000,0.000153258000000,0.000025863500000,0.000013160000000,0.000027048500000,0.000182098000000,0.000057653000000,0.000026061000000,0.000184468000000,0.000063578000000,0.000096764000000,0.000308912000000,0.000050937000000 +0.000021123000000,0.000096369000000,0.000027246000000,0.000013028333333,0.000026851500000,0.000182097000000,0.000091628000000,0.000026258500000,0.000185653000000,0.000088073000000,0.000096369000000,0.000279282000000,0.000050937000000 +0.000020333000000,0.000115727000000,0.000038900500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000057653000000,0.000026456000000,0.000259529000000,0.000065554000000,0.000117308000000,0.000316023000000,0.000050937000000 +0.000020333000000,0.000094393000000,0.000039691000000,0.000013555000000,0.000027444000000,0.000406492000000,0.000058838000000,0.000027444000000,0.000183282000000,0.000063184000000,0.000117307000000,0.000280072000000,0.000051332000000 +0.000020135000000,0.000115727000000,0.000034555000000,0.000013028333333,0.000026851000000,0.000215282000000,0.000058839000000,0.000042653500000,0.000184072000000,0.000064369000000,0.000117307000000,0.000314047000000,0.000067134000000 +0.000020333000000,0.000128764000000,0.000027443500000,0.000013555333333,0.000050160000000,0.000183282000000,0.000058049000000,0.000025468500000,0.000184072000000,0.000064764000000,0.000117702000000,0.000274937000000,0.000052122000000 +0.000021122500000,0.000115727000000,0.000026851500000,0.000013686666667,0.000026851000000,0.000184073000000,0.000057257000000,0.000025863500000,0.000198690000000,0.000063184000000,0.000116912000000,0.000318789000000,0.000051727000000 +0.000020332500000,0.000116122000000,0.000026061000000,0.000013028333333,0.000027444000000,0.000188023000000,0.000058838000000,0.000026259000000,0.000180912000000,0.000063973000000,0.000116913000000,0.000271776000000,0.000051727000000 +0.000028629000000,0.000096369000000,0.000044036500000,0.000024221666667,0.000026653500000,0.000184863000000,0.000058839000000,0.000028629000000,0.000184468000000,0.000064369000000,0.000115332000000,0.000274937000000,0.000051332000000 +0.000020332500000,0.000105851000000,0.000026653500000,0.000013028333333,0.000028826500000,0.000218838000000,0.000091629000000,0.000026851500000,0.000232271000000,0.000076616000000,0.000096764000000,0.000276912000000,0.000050937000000 +0.000020332500000,0.000150887000000,0.000026851000000,0.000013028333333,0.000026258500000,0.000186443000000,0.000058839000000,0.000026061000000,0.000187628000000,0.000063184000000,0.000096369000000,0.000276912000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000012896666667,0.000027049000000,0.000183283000000,0.000057258000000,0.000026061000000,0.000184468000000,0.000064369000000,0.000119283000000,0.000278098000000,0.000052913000000 +0.000020333000000,0.000117702000000,0.000026851000000,0.000013028666667,0.000028036000000,0.000184072000000,0.000057653000000,0.000024875500000,0.000187233000000,0.000063974000000,0.000117307000000,0.000277703000000,0.000050937000000 +0.000020333000000,0.000115332000000,0.000027246500000,0.000013028333333,0.000043443500000,0.000216072000000,0.000059233000000,0.000026258500000,0.000297850000000,0.000065554000000,0.000117307000000,0.000272566000000,0.000053307000000 +0.000020333000000,0.000116517000000,0.000028036500000,0.000013028666667,0.000027839000000,0.000186838000000,0.000057653000000,0.000024283500000,0.000197109000000,0.000062789000000,0.000096369000000,0.000278097000000,0.000052913000000 +0.000020135000000,0.000116122000000,0.000026259000000,0.000013028333333,0.000028826500000,0.000188418000000,0.000058839000000,0.000026258500000,0.000183677000000,0.000065949000000,0.000117307000000,0.000312862000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000051542500000,0.000013028333333,0.000025863500000,0.000185653000000,0.000058838000000,0.000025863500000,0.000215282000000,0.000064369000000,0.000100714000000,0.000275727000000,0.000050937000000 +0.000037123000000,0.000112567000000,0.000026851000000,0.000013291666667,0.000025863500000,0.000250443000000,0.000127578000000,0.000025863500000,0.000184863000000,0.000063184000000,0.000117307000000,0.000306146000000,0.000072665000000 +0.000050949500000,0.000100320000000,0.000029024000000,0.000013028333333,0.000026258500000,0.000181702000000,0.000058838000000,0.000025271000000,0.000187628000000,0.000063579000000,0.000096764000000,0.000276912000000,0.000051727000000 +0.000021518000000,0.000118097000000,0.000030604000000,0.000013423666667,0.000025666000000,0.000201061000000,0.000058443000000,0.000024875500000,0.000183677000000,0.000066740000000,0.000112566000000,0.000433751000000,0.000052517000000 +0.000020332500000,0.000148912000000,0.000025863500000,0.000013028333333,0.000027839000000,0.000182492000000,0.000058838000000,0.000026061000000,0.000217258000000,0.000062788000000,0.000096764000000,0.000275332000000,0.000051727000000 +0.000021320000000,0.000116122000000,0.000025666000000,0.000013028333333,0.000043641500000,0.000181702000000,0.000058838000000,0.000032184500000,0.000183678000000,0.000063579000000,0.000117307000000,0.000314838000000,0.000052122000000 +0.000020332500000,0.000117307000000,0.000026851000000,0.000012896666667,0.000027443500000,0.000182097000000,0.000058839000000,0.000025073500000,0.000184863000000,0.000065554000000,0.000242147000000,0.000293900000000,0.000051332000000 +0.000020135500000,0.000096764000000,0.000036332500000,0.000013028333333,0.000027049000000,0.000181307000000,0.000058838000000,0.000027049000000,0.000184072000000,0.000098739000000,0.000131529000000,0.000305356000000,0.000051332000000 +0.000020333000000,0.000116517000000,0.000026851500000,0.000013028333333,0.000027049000000,0.000181307000000,0.000058838000000,0.000028431500000,0.000218443000000,0.000065554000000,0.000095974000000,0.000272567000000,0.000081751000000 +0.000037320000000,0.000131925000000,0.000026851000000,0.000012896666667,0.000027839000000,0.000184862000000,0.000088467000000,0.000026653500000,0.000184863000000,0.000067530000000,0.000114937000000,0.000313258000000,0.000053308000000 +0.000020332500000,0.000117307000000,0.000026851500000,0.000013423333333,0.000027443500000,0.000183282000000,0.000058838000000,0.000026456000000,0.000180912000000,0.000065949000000,0.000094789000000,0.000280073000000,0.000051331000000 +0.000020135000000,0.000116517000000,0.000026061000000,0.000012896666667,0.000027444000000,0.000183678000000,0.000057258000000,0.000026061000000,0.000183678000000,0.000065554000000,0.000116912000000,0.000308517000000,0.000053307000000 +0.000020135000000,0.000096369000000,0.000026851000000,0.000012896666667,0.000027246000000,0.000202246000000,0.000062394000000,0.000028431500000,0.000233850000000,0.000063578000000,0.000094393000000,0.000276122000000,0.000052122000000 +0.000021320500000,0.000096764000000,0.000027049000000,0.000013555000000,0.000037123000000,0.000184863000000,0.000058838000000,0.000042061000000,0.000183678000000,0.000067135000000,0.000095974000000,0.000310098000000,0.000051727000000 +0.000020332500000,0.000116517000000,0.000027838500000,0.000013423333333,0.000026061000000,0.000182492000000,0.000058838000000,0.000025863500000,0.000180517000000,0.000096369000000,0.000094788000000,0.000272171000000,0.000085702000000 +0.000020332500000,0.000115727000000,0.000061221500000,0.000012896666667,0.000026851500000,0.000184862000000,0.000057653000000,0.000027049000000,0.000187233000000,0.000062789000000,0.000117307000000,0.000272961000000,0.000054493000000 +0.000020135000000,0.000116517000000,0.000026259000000,0.000012896666667,0.000028233500000,0.000251628000000,0.000091233000000,0.000026653500000,0.000184468000000,0.000067135000000,0.000117703000000,0.000272567000000,0.000051332000000 +0.000020135000000,0.000117703000000,0.000027049000000,0.000013555333333,0.000027444000000,0.000180912000000,0.000058839000000,0.000027839000000,0.000186838000000,0.000063184000000,0.000095578000000,0.000278493000000,0.000051727000000 +0.000020530500000,0.000116122000000,0.000028826500000,0.000013423333333,0.000026653500000,0.000183677000000,0.000058838000000,0.000026061000000,0.000184862000000,0.000067134000000,0.000114937000000,0.000274542000000,0.000053307000000 +0.000020332500000,0.000116517000000,0.000030604500000,0.000013818333333,0.000027246000000,0.000181307000000,0.000059233000000,0.000026061000000,0.000183282000000,0.000064764000000,0.000096369000000,0.000275727000000,0.000052517000000 +0.000020332500000,0.000096368000000,0.000025864000000,0.000013028333333,0.000028036500000,0.000219233000000,0.000058048000000,0.000026258500000,0.000229109000000,0.000063578000000,0.000094789000000,0.000274541000000,0.000052517000000 +0.000020332500000,0.000094789000000,0.000026258500000,0.000013028333333,0.000046802000000,0.000183282000000,0.000058838000000,0.000038110500000,0.000183677000000,0.000069900000000,0.000117308000000,0.000277702000000,0.000066740000000 +0.000020332500000,0.000096764000000,0.000027246500000,0.000013028333333,0.000027444000000,0.000184467000000,0.000058443000000,0.000031987000000,0.000186838000000,0.000102690000000,0.000118888000000,0.000293900000000,0.000051332000000 +0.000020333000000,0.000118493000000,0.000026258500000,0.000013028333333,0.000028036500000,0.000185653000000,0.000058838000000,0.000025863500000,0.000219628000000,0.000079381000000,0.000117703000000,0.000274937000000,0.000051332000000 +0.000020135000000,0.000116517000000,0.000027048500000,0.000013555000000,0.000035542500000,0.000257159000000,0.000091234000000,0.000026061000000,0.000184863000000,0.000063184000000,0.000097160000000,0.000361851000000,0.000051332000000 +0.000020135500000,0.000096369000000,0.000026851500000,0.000013028333333,0.000028036000000,0.000181703000000,0.000058838000000,0.000026061000000,0.000183678000000,0.000062789000000,0.000116912000000,0.000274937000000,0.000054493000000 +0.000020135500000,0.000096369000000,0.000027048500000,0.000013028333333,0.000026654000000,0.000185653000000,0.000057653000000,0.000028431500000,0.000184073000000,0.000065555000000,0.000095974000000,0.000314048000000,0.000052913000000 +0.000020333000000,0.000096369000000,0.000026456000000,0.000012896666667,0.000027839000000,0.000181307000000,0.000059233000000,0.000034357000000,0.000216073000000,0.000063973000000,0.000117307000000,0.000278097000000,0.000100320000000 +0.000020332500000,0.000116912000000,0.000026851500000,0.000014740333333,0.000027839000000,0.000182097000000,0.000058443000000,0.000026456000000,0.000184863000000,0.000076616000000,0.000114542000000,0.000314443000000,0.000051332000000 +0.000020135500000,0.000095974000000,0.000026851000000,0.000013028333333,0.000034752500000,0.000181702000000,0.000058838000000,0.000050357500000,0.000184863000000,0.000063579000000,0.000117308000000,0.000276912000000,0.000054098000000 +0.000020135000000,0.000131135000000,0.000047592000000,0.000036468666667,0.000026653500000,0.000182097000000,0.000058048000000,0.000026456000000,0.000186838000000,0.000065554000000,0.000094394000000,0.000309307000000,0.000054098000000 +0.000020135000000,0.000096369000000,0.000026456500000,0.000013028333333,0.000026259000000,0.000181307000000,0.000059233000000,0.000026258500000,0.000217653000000,0.000063974000000,0.000118097000000,0.000272171000000,0.000053703000000 +0.000020135500000,0.000116912000000,0.000026061000000,0.000013028333333,0.000026653500000,0.000196715000000,0.000072665000000,0.000026259000000,0.000187233000000,0.000063184000000,0.000096369000000,0.000308912000000,0.000052517000000 +0.000020135500000,0.000105060000000,0.000026851000000,0.000013028333333,0.000025666000000,0.000181702000000,0.000057258000000,0.000026061000000,0.000184467000000,0.000082937000000,0.000096764000000,0.000280863000000,0.000052913000000 +0.000020333000000,0.000096369000000,0.000029024000000,0.000013028333333,0.000026456000000,0.000183282000000,0.000057258000000,0.000026061000000,0.000184468000000,0.000062394000000,0.000118097000000,0.000338936000000,0.000053702000000 +0.000020135000000,0.000150492000000,0.000030802000000,0.000013028333333,0.000026653500000,0.000209751000000,0.000058838000000,0.000027049000000,0.000252814000000,0.000065949000000,0.000095974000000,0.000283628000000,0.000050937000000 +0.000020135500000,0.000116122000000,0.000025863500000,0.000013028333333,0.000028233500000,0.000187628000000,0.000058838000000,0.000026653500000,0.000183677000000,0.000066739000000,0.000119283000000,0.000321159000000,0.000053308000000 +0.000030209500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000035345000000,0.000184073000000,0.000058838000000,0.000035345000000,0.000183677000000,0.000063974000000,0.000095973000000,0.000279678000000,0.000051727000000 +0.000020332500000,0.000115332000000,0.000026851500000,0.000012896666667,0.000027246000000,0.000181702000000,0.000059233000000,0.000026653500000,0.000185653000000,0.000063974000000,0.000095974000000,0.000273752000000,0.000052122000000 +0.000020332500000,0.000118493000000,0.000026258500000,0.000019612666667,0.000027839000000,0.000215677000000,0.000057258000000,0.000024876000000,0.000180122000000,0.000063578000000,0.000096369000000,0.000274542000000,0.000054887000000 +0.000020135000000,0.000130344000000,0.000027049000000,0.000031991333333,0.000027246500000,0.000188024000000,0.000108616000000,0.000026456000000,0.000184468000000,0.000071085000000,0.000095974000000,0.000280073000000,0.000071875000000 +0.000020135000000,0.000114937000000,0.000026851500000,0.000013686666667,0.000026851000000,0.000184863000000,0.000057257000000,0.000025863500000,0.000184468000000,0.000066739000000,0.000096369000000,0.000277703000000,0.000053307000000 +0.000020135000000,0.000095974000000,0.000027048500000,0.000017505666667,0.000026456000000,0.000182097000000,0.000058838000000,0.000024876000000,0.000203430000000,0.000079382000000,0.000096369000000,0.000277703000000,0.000051332000000 +0.000021320000000,0.000099134000000,0.000026456500000,0.000013028333333,0.000026258500000,0.000268615000000,0.000058443000000,0.000028431500000,0.000185258000000,0.000063579000000,0.000117307000000,0.000275331000000,0.000054493000000 +0.000020135500000,0.000115727000000,0.000027048500000,0.000013028333333,0.000027246000000,0.000182887000000,0.000058838000000,0.000026456000000,0.000180122000000,0.000066740000000,0.000119283000000,0.000273751000000,0.000061999000000 +0.000020135500000,0.000116912000000,0.000027048500000,0.000013028333333,0.000033765000000,0.000188814000000,0.000058838000000,0.000035345000000,0.000183677000000,0.000063184000000,0.000094394000000,0.000508813000000,0.000052123000000 +0.000020135000000,0.000096369000000,0.000035345000000,0.000013028333333,0.000028036500000,0.000181702000000,0.000058838000000,0.000025468500000,0.000218047000000,0.000065949000000,0.000116913000000,0.000272962000000,0.000052517000000 +0.000021123000000,0.000096764000000,0.000026258500000,0.000013028333333,0.000027048500000,0.000383183000000,0.000058838000000,0.000026258500000,0.000180912000000,0.000063184000000,0.000097159000000,0.000274542000000,0.000053307000000 +0.000020135500000,0.000096764000000,0.000026061000000,0.000013028333333,0.000027838500000,0.000201850000000,0.000057653000000,0.000024678500000,0.000187628000000,0.000063184000000,0.000117307000000,0.000280073000000,0.000052912000000 +0.000020135000000,0.000115727000000,0.000027246500000,0.000013555000000,0.000026851500000,0.000186443000000,0.000058838000000,0.000025863500000,0.000181307000000,0.000104270000000,0.000117308000000,0.000291134000000,0.000052912000000 +0.000020135000000,0.000095974000000,0.000029024000000,0.000013555333333,0.000027246500000,0.000215678000000,0.000057258000000,0.000026851500000,0.000217257000000,0.000065554000000,0.000117307000000,0.000275331000000,0.000052122000000 +0.000020135000000,0.000189208000000,0.000030604000000,0.000013555333333,0.000027246000000,0.000183678000000,0.000058838000000,0.000026061000000,0.000180517000000,0.000067924000000,0.000117703000000,0.000280072000000,0.000053307000000 +0.000020135000000,0.000131134000000,0.000025863500000,0.000012896666667,0.000027049000000,0.000181702000000,0.000058443000000,0.000028431500000,0.000184468000000,0.000062789000000,0.000119678000000,0.000273357000000,0.000050937000000 +0.000021320500000,0.000096369000000,0.000035937500000,0.000013028333333,0.000043838500000,0.000218048000000,0.000057257000000,0.000026061500000,0.000181703000000,0.000062393000000,0.000099924000000,0.000326690000000,0.000051727000000 +0.000020332500000,0.000114146000000,0.000027246500000,0.000012896666667,0.000027641500000,0.000186838000000,0.000058838000000,0.000025073500000,0.000217258000000,0.000062789000000,0.000110196000000,0.000279282000000,0.000051332000000 +0.000020333000000,0.000129949000000,0.000026258500000,0.000013028333333,0.000026061500000,0.000184863000000,0.000058443000000,0.000025271000000,0.000181307000000,0.000066739000000,0.000117307000000,0.000279282000000,0.000052517000000 +0.000038110500000,0.000115727000000,0.000027246000000,0.000024222000000,0.000027641500000,0.000188023000000,0.000057653000000,0.000026653500000,0.000185258000000,0.000083727000000,0.000096369000000,0.000271381000000,0.000051727000000 +0.000020332500000,0.000097949000000,0.000026851500000,0.000013028333333,0.000027839000000,0.000220814000000,0.000058838000000,0.000026851500000,0.000183678000000,0.000067134000000,0.000095184000000,0.000351184000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000036530000000,0.000012896666667,0.000027246000000,0.000182887000000,0.000057653000000,0.000026653500000,0.000218048000000,0.000067135000000,0.000096369000000,0.000272171000000,0.000050542000000 +0.000020332500000,0.000095974000000,0.000026456000000,0.000013028333333,0.000027839000000,0.000181702000000,0.000062394000000,0.000025666000000,0.000184863000000,0.000065159000000,0.000094788000000,0.000357505000000,0.000051727000000 +0.000020332500000,0.000095973000000,0.000037123000000,0.000013818333333,0.000027246000000,0.000184073000000,0.000057257000000,0.000026061000000,0.000184468000000,0.000065554000000,0.000096369000000,0.000275332000000,0.000084912000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013423666667,0.000026851000000,0.000215678000000,0.000060024000000,0.000026061000000,0.000183678000000,0.000063579000000,0.000094788000000,0.000654196000000,0.000050937000000 +0.000021320500000,0.000096369000000,0.000028036500000,0.000013028333333,0.000028036500000,0.000181702000000,0.000057653000000,0.000042654000000,0.000214097000000,0.000063579000000,0.000095974000000,0.000307332000000,0.000053307000000 +0.000021320500000,0.000096369000000,0.000026259000000,0.000013423666667,0.000027246500000,0.000183282000000,0.000058838000000,0.000026258500000,0.000180518000000,0.000063578000000,0.000116912000000,0.000280863000000,0.000050937000000 +0.000020135500000,0.000115727000000,0.000025863500000,0.000012896666667,0.000026061000000,0.000181703000000,0.000057258000000,0.000024481000000,0.000180517000000,0.000062789000000,0.000117307000000,0.000324714000000,0.000051332000000 +0.000030999000000,0.000096369000000,0.000026851000000,0.000013555000000,0.000026851000000,0.000215282000000,0.000057653000000,0.000027839000000,0.000184073000000,0.000064369000000,0.000117307000000,0.000277307000000,0.000052122000000 +0.000020135500000,0.000131135000000,0.000029221500000,0.000013028333333,0.000027443500000,0.000181702000000,0.000059234000000,0.000025863500000,0.000252418000000,0.000063183000000,0.000094394000000,0.000357505000000,0.000052912000000 +0.000020332500000,0.000096369000000,0.000030604500000,0.000013423666667,0.000027246500000,0.000183678000000,0.000057258000000,0.000027048500000,0.000184073000000,0.000064369000000,0.000095579000000,0.000276912000000,0.000052517000000 +0.000020332500000,0.000115727000000,0.000026061000000,0.000012896666667,0.000026653500000,0.000181702000000,0.000057653000000,0.000026259000000,0.000184072000000,0.000066739000000,0.000097159000000,0.000308122000000,0.000051332000000 +0.000020332500000,0.000126393000000,0.000025863500000,0.000013028333333,0.000028036500000,0.000217258000000,0.000057653000000,0.000026061000000,0.000183677000000,0.000062789000000,0.000095974000000,0.000276517000000,0.000050937000000 +0.000020135500000,0.000095184000000,0.000026851500000,0.000023695000000,0.000028036500000,0.000181307000000,0.000057258000000,0.000035937500000,0.000187628000000,0.000063183000000,0.000116517000000,0.000275727000000,0.000051727000000 +0.000020135000000,0.000095974000000,0.000026061000000,0.000014345000000,0.000027048500000,0.000181307000000,0.000058838000000,0.000025270500000,0.000229900000000,0.000065950000000,0.000117308000000,0.000277307000000,0.000051332000000 +0.000021320000000,0.000094788000000,0.000026851000000,0.000013028333333,0.000027641500000,0.000182098000000,0.000073850000000,0.000025271000000,0.000184468000000,0.000066739000000,0.000096764000000,0.000272962000000,0.000053308000000 +0.000020332500000,0.000117307000000,0.000026851500000,0.000013818666667,0.000027444000000,0.000214887000000,0.000057653000000,0.000026258500000,0.000287579000000,0.000062394000000,0.000117702000000,0.000280073000000,0.000052912000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000028036500000,0.000183282000000,0.000057653000000,0.000026061000000,0.000200665000000,0.000065555000000,0.000100320000000,0.000274936000000,0.000050937000000 +0.000020135000000,0.000094788000000,0.000026061000000,0.000012896666667,0.000028826500000,0.000183283000000,0.000057653000000,0.000026654000000,0.000184073000000,0.000065555000000,0.000095579000000,0.000274937000000,0.000052122000000 +0.000020333000000,0.000161949000000,0.000033764500000,0.000012896666667,0.000028036500000,0.000186838000000,0.000058838000000,0.000027246000000,0.000184468000000,0.000067925000000,0.000115332000000,0.000278493000000,0.000051727000000 +0.000020135000000,0.000115727000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000215282000000,0.000057653000000,0.000027641500000,0.000184467000000,0.000064369000000,0.000117307000000,0.000279282000000,0.000052123000000 +0.000020332500000,0.000115332000000,0.000028036000000,0.000012896666667,0.000027444000000,0.000182097000000,0.000058838000000,0.000026653500000,0.000182888000000,0.000099530000000,0.000117307000000,0.000274937000000,0.000052122000000 +0.000021320500000,0.000096764000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000184468000000,0.000092814000000,0.000026259000000,0.000187628000000,0.000063184000000,0.000378048000000,0.000324319000000,0.000052517000000 +0.000020333000000,0.000100715000000,0.000026456000000,0.000013028333333,0.000026653500000,0.000186048000000,0.000058443000000,0.000028629000000,0.000205801000000,0.000063579000000,0.000180517000000,0.000272171000000,0.000086492000000 +0.000021320500000,0.000148517000000,0.000027246500000,0.000012896666667,0.000027049000000,0.000223974000000,0.000058048000000,0.000025863500000,0.000184072000000,0.000063578000000,0.000117307000000,0.000311678000000,0.000052517000000 +0.000020135000000,0.000095974000000,0.000028826500000,0.000013028333333,0.000028036000000,0.000184072000000,0.000058838000000,0.000026851500000,0.000184467000000,0.000063184000000,0.000118097000000,0.000274147000000,0.000051332000000 +0.000020135500000,0.000114937000000,0.000047591500000,0.000013423333333,0.000026654000000,0.000182097000000,0.000058838000000,0.000026851000000,0.000183677000000,0.000063184000000,0.000095974000000,0.000310887000000,0.000052517000000 +0.000020332500000,0.000116517000000,0.000026456000000,0.000018032333333,0.000026456000000,0.000184468000000,0.000058838000000,0.000025863500000,0.000220024000000,0.000067530000000,0.000118887000000,0.000271777000000,0.000050937000000 +0.000020135000000,0.000115331000000,0.000025666000000,0.000013028333333,0.000026851000000,0.000197110000000,0.000058443000000,0.000026061000000,0.000186048000000,0.000085307000000,0.000117308000000,0.000355924000000,0.000051332000000 +0.000020135500000,0.000165110000000,0.000027048500000,0.000013028333333,0.000027048500000,0.000185653000000,0.000057653000000,0.000026258500000,0.000183678000000,0.000063184000000,0.000094789000000,0.000287183000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000026456000000,0.000013555000000,0.000027444000000,0.000184073000000,0.000092813000000,0.000032184500000,0.000184468000000,0.000070294000000,0.000096369000000,0.000309307000000,0.000069505000000 +0.000021518000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000219628000000,0.000058838000000,0.000026456000000,0.000218443000000,0.000065949000000,0.000117308000000,0.000333011000000,0.000053307000000 +0.000020135000000,0.000096369000000,0.000026851000000,0.000013555000000,0.000027048500000,0.000180912000000,0.000058838000000,0.000027246000000,0.000183282000000,0.000063579000000,0.000096369000000,0.000312468000000,0.000052912000000 +0.000020332500000,0.000096764000000,0.000027048500000,0.000013028333333,0.000026654000000,0.000181702000000,0.000058048000000,0.000026259000000,0.000184863000000,0.000062789000000,0.000094789000000,0.000279678000000,0.000052122000000 +0.000020333000000,0.000149703000000,0.000076431500000,0.000013028333333,0.000027246500000,0.000182098000000,0.000058839000000,0.000026653500000,0.000183283000000,0.000063184000000,0.000115727000000,0.000348813000000,0.000054492000000 +0.000020135500000,0.000116122000000,0.000077616500000,0.000013028333333,0.000026851000000,0.000219233000000,0.000058838000000,0.000026259000000,0.000219233000000,0.000063184000000,0.000114147000000,0.000293505000000,0.000052518000000 +0.000049765000000,0.000094393000000,0.000035740000000,0.000019612666667,0.000026653500000,0.000181702000000,0.000058443000000,0.000027246000000,0.000184863000000,0.000080567000000,0.000114937000000,0.000312467000000,0.000051727000000 +0.000021320500000,0.000117703000000,0.000035542500000,0.000013028333333,0.000033172000000,0.000181307000000,0.000058838000000,0.000025468500000,0.000184072000000,0.000066739000000,0.000117307000000,0.000273751000000,0.000051332000000 +0.000020332500000,0.000097159000000,0.000043246000000,0.000013028333333,0.000028036500000,0.000182097000000,0.000071875000000,0.000042654000000,0.000184072000000,0.000063184000000,0.000094789000000,0.000312072000000,0.000052517000000 +0.000020333000000,0.000096764000000,0.000026258500000,0.000013028333333,0.000027246000000,0.000215283000000,0.000061209000000,0.000026061000000,0.000218047000000,0.000067135000000,0.000117307000000,0.000276122000000,0.000052912000000 +0.000020135500000,0.000097159000000,0.000027049000000,0.000013028333333,0.000025863500000,0.000181307000000,0.000057653000000,0.000026653500000,0.000184863000000,0.000067924000000,0.000117308000000,0.000316813000000,0.000050937000000 +0.000020332500000,0.000096764000000,0.000029024000000,0.000013028666667,0.000027049000000,0.000183282000000,0.000058838000000,0.000028629000000,0.000185257000000,0.000068319000000,0.000096369000000,0.000280468000000,0.000051332000000 +0.000020530000000,0.000096369000000,0.000030802000000,0.000012897000000,0.000027048500000,0.000185258000000,0.000058443000000,0.000026259000000,0.000184468000000,0.000097949000000,0.000116912000000,0.000276517000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000026456000000,0.000012896666667,0.000026061000000,0.000218443000000,0.000057258000000,0.000026851000000,0.000252023000000,0.000063579000000,0.000117308000000,0.000271381000000,0.000052517000000 +0.000020135000000,0.000096369000000,0.000025864000000,0.000013028333333,0.000027641000000,0.000185258000000,0.000058838000000,0.000026061000000,0.000183677000000,0.000067135000000,0.000117307000000,0.000274936000000,0.000051332000000 +0.000045221500000,0.000193554000000,0.000027049000000,0.000014213333333,0.000073271000000,0.000182097000000,0.000057653000000,0.000027049000000,0.000184072000000,0.000065555000000,0.000115727000000,0.000275727000000,0.000052122000000 +0.000020333000000,0.000116122000000,0.000033369500000,0.000013028333333,0.000035938000000,0.000185258000000,0.000150098000000,0.000026061000000,0.000180912000000,0.000065950000000,0.000098739000000,0.000278492000000,0.000051727000000 +0.000020332500000,0.000116517000000,0.000026851500000,0.000013423333333,0.000028826500000,0.000222788000000,0.000183283000000,0.000025468500000,0.000183678000000,0.000065949000000,0.000117307000000,0.000273357000000,0.000050937000000 +0.000020332500000,0.000116517000000,0.000027048500000,0.000013423333333,0.000027048500000,0.000188024000000,0.000076220000000,0.000024283500000,0.000184863000000,0.000063184000000,0.000114937000000,0.000275332000000,0.000107036000000 +0.000020332500000,0.000116123000000,0.000026654000000,0.000013028333333,0.000027839000000,0.000182097000000,0.000073850000000,0.000025271000000,0.000187233000000,0.000086887000000,0.000096764000000,0.000310493000000,0.000052122000000 +0.000020332500000,0.000105456000000,0.000026258500000,0.000013028333333,0.000027048500000,0.000184467000000,0.000078591000000,0.000024876000000,0.000203431000000,0.000062394000000,0.000096765000000,0.000280073000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000026851000000,0.000013423666667,0.000027049000000,0.000250443000000,0.000071875000000,0.000026456000000,0.000180912000000,0.000065950000000,0.000181308000000,0.000309307000000,0.000052122000000 +0.000020135000000,0.000096369000000,0.000027246500000,0.000013028333333,0.000044629000000,0.000184072000000,0.000057653000000,0.000026653500000,0.000180517000000,0.000065159000000,0.000116912000000,0.000275726000000,0.000056072000000 +0.000020332500000,0.000115727000000,0.000028036000000,0.000013028666667,0.000027049000000,0.000182097000000,0.000057653000000,0.000025468500000,0.000185258000000,0.000065554000000,0.000116912000000,0.000307727000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000026456500000,0.000013423666667,0.000026851000000,0.000188024000000,0.000057653000000,0.000026061000000,0.000237801000000,0.000065159000000,0.000117702000000,0.000272961000000,0.000050937000000 +0.000020332500000,0.000129949000000,0.000026061000000,0.000017900666667,0.000027641500000,0.000181703000000,0.000057653000000,0.000043048500000,0.000199875000000,0.000063974000000,0.000116912000000,0.000348418000000,0.000065159000000 +0.000021320000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000182097000000,0.000073060000000,0.000026258500000,0.000180912000000,0.000062788000000,0.000116517000000,0.000277307000000,0.000051332000000 +0.000020332500000,0.000114542000000,0.000028826500000,0.000013028333333,0.000028036500000,0.000181702000000,0.000057653000000,0.000026456500000,0.000184467000000,0.000078197000000,0.000116912000000,0.000309702000000,0.000050937000000 +0.000020332500000,0.000115727000000,0.000030604500000,0.000013555000000,0.000027443500000,0.000187233000000,0.000058838000000,0.000026061000000,0.000213702000000,0.000063579000000,0.000096369000000,0.000281258000000,0.000052122000000 +0.000020333000000,0.000115332000000,0.000026258500000,0.000012896666667,0.000027444000000,0.000186443000000,0.000058443000000,0.000024876000000,0.000184073000000,0.000064369000000,0.000117307000000,0.000312468000000,0.000053307000000 +0.000020333000000,0.000164714000000,0.000025863500000,0.000013555000000,0.000053913000000,0.000187628000000,0.000057258000000,0.000026653500000,0.000182098000000,0.000067924000000,0.000099925000000,0.000276122000000,0.000051332000000 +0.000021123000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000184863000000,0.000057653000000,0.000026258500000,0.000184467000000,0.000063974000000,0.000117702000000,0.000276122000000,0.000084912000000 +0.000020333000000,0.000117307000000,0.000026061000000,0.000013160333333,0.000026061000000,0.000217652000000,0.000058443000000,0.000025666000000,0.000272961000000,0.000063184000000,0.000096369000000,0.000272172000000,0.000052122000000 +0.000044431500000,0.000095973000000,0.000027048500000,0.000013028333333,0.000028431000000,0.000184862000000,0.000058443000000,0.000035345000000,0.000184468000000,0.000062789000000,0.000096369000000,0.000274936000000,0.000050937000000 +0.000020332500000,0.000115727000000,0.000026851000000,0.000013028333333,0.000028431500000,0.000182097000000,0.000057258000000,0.000028234000000,0.000183678000000,0.000062788000000,0.000095974000000,0.000272171000000,0.000050937000000 +0.000020135500000,0.000128764000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000186443000000,0.000058838000000,0.000026259000000,0.000218048000000,0.000063184000000,0.000116912000000,0.000275332000000,0.000052518000000 +0.000020135500000,0.000096369000000,0.000026258500000,0.000012896666667,0.000026851000000,0.000286788000000,0.000072665000000,0.000026456000000,0.000184072000000,0.000063184000000,0.000096369000000,0.000276517000000,0.000053307000000 +0.000021320000000,0.000116517000000,0.000026851000000,0.000012896666667,0.000028431500000,0.000227925000000,0.000057258000000,0.000026061000000,0.000186838000000,0.000068714000000,0.000094789000000,0.000279677000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000027048500000,0.000013028333333,0.000060431500000,0.000185653000000,0.000058838000000,0.000024283500000,0.000183677000000,0.000067134000000,0.000117307000000,0.000272961000000,0.000069900000000 +0.000020333000000,0.000115727000000,0.000037913000000,0.000013028333333,0.000027246000000,0.000182097000000,0.000057258000000,0.000025666000000,0.000249257000000,0.000062789000000,0.000096369000000,0.000273356000000,0.000053703000000 +0.000020332500000,0.000149703000000,0.000026258500000,0.000012896666667,0.000028036500000,0.000188024000000,0.000058838000000,0.000026061000000,0.000180517000000,0.000065555000000,0.000096369000000,0.000323924000000,0.000051332000000 +0.000020332500000,0.000097160000000,0.000025863500000,0.000012896666667,0.000026061000000,0.000181702000000,0.000058443000000,0.000026258500000,0.000182887000000,0.000139431000000,0.000132715000000,0.000274541000000,0.000050937000000 +0.000027641500000,0.000114542000000,0.000026851000000,0.000013291666667,0.000026851000000,0.000181308000000,0.000057258000000,0.000027246000000,0.000184072000000,0.000065554000000,0.000094789000000,0.000321159000000,0.000053307000000 +0.000020530000000,0.000115332000000,0.000028826500000,0.000013028333333,0.000028826500000,0.000266245000000,0.000058838000000,0.000026259000000,0.000234246000000,0.000065554000000,0.000096369000000,0.000276912000000,0.000051332000000 +0.000020135000000,0.000115332000000,0.000030604500000,0.000018296000000,0.000026851000000,0.000181307000000,0.000072270000000,0.000025863500000,0.000184468000000,0.000063184000000,0.000100320000000,0.000309307000000,0.000072666000000 +0.000020332500000,0.000136666000000,0.000025863500000,0.000013028333333,0.000027444000000,0.000181702000000,0.000058838000000,0.000026061000000,0.000184862000000,0.000063974000000,0.000115332000000,0.000272566000000,0.000051332000000 +0.000021320500000,0.000116913000000,0.000025666000000,0.000012896666667,0.000033370000000,0.000187233000000,0.000059233000000,0.000026653500000,0.000183677000000,0.000063974000000,0.000096369000000,0.000403726000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000043839000000,0.000012896666667,0.000026456000000,0.000267825000000,0.000058839000000,0.000026061000000,0.000253604000000,0.000063974000000,0.000117307000000,0.000380418000000,0.000050937000000 +0.000020135500000,0.000117307000000,0.000026258500000,0.000013028333333,0.000026456000000,0.000185652000000,0.000059234000000,0.000035345000000,0.000182888000000,0.000078591000000,0.000096369000000,0.000278493000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000027049000000,0.000012896666667,0.000027048500000,0.000185653000000,0.000058838000000,0.000026258500000,0.000184467000000,0.000067134000000,0.000096369000000,0.000276122000000,0.000052122000000 +0.000020332500000,0.000146937000000,0.000027246000000,0.000012897000000,0.000027839000000,0.000184073000000,0.000057653000000,0.000025468500000,0.000186838000000,0.000062789000000,0.000117702000000,0.000274937000000,0.000052517000000 +0.000030406500000,0.000094394000000,0.000027049000000,0.000013423666667,0.000027048500000,0.000183677000000,0.000078196000000,0.000026456000000,0.000181702000000,0.000063974000000,0.000096369000000,0.000272172000000,0.000084517000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000013028666667,0.000027048500000,0.000185257000000,0.000057258000000,0.000026258500000,0.000184072000000,0.000064369000000,0.000133505000000,0.000281258000000,0.000053307000000 +0.000020332500000,0.000115727000000,0.000026653500000,0.000013028333333,0.000036728000000,0.000181702000000,0.000058838000000,0.000026061000000,0.000187233000000,0.000063184000000,0.000096369000000,0.000275332000000,0.000051332000000 +0.000021320500000,0.000096369000000,0.000026654000000,0.000013555000000,0.000026653500000,0.000204615000000,0.000058838000000,0.000027246500000,0.000220418000000,0.000065949000000,0.000117308000000,0.000329850000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000044826500000,0.000013555333333,0.000027641500000,0.000184863000000,0.000058443000000,0.000025666000000,0.000180517000000,0.000080567000000,0.000096369000000,0.000278493000000,0.000051332000000 +0.000020332500000,0.000116912000000,0.000026456500000,0.000013028333333,0.000028431500000,0.000183678000000,0.000057258000000,0.000025073500000,0.000185258000000,0.000065555000000,0.000095974000000,0.000347628000000,0.000054888000000 +0.000020332500000,0.000116122000000,0.000026653500000,0.000012896666667,0.000027443500000,0.000182097000000,0.000057653000000,0.000026851000000,0.000185258000000,0.000063579000000,0.000118888000000,0.000286788000000,0.000071480000000 +0.000020135000000,0.000115727000000,0.000026851000000,0.000013555000000,0.000027839000000,0.000266245000000,0.000058838000000,0.000028234000000,0.000219628000000,0.000064369000000,0.000094394000000,0.000278887000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000029024000000,0.000013423333333,0.000027838500000,0.000183282000000,0.000077011000000,0.000026259000000,0.000186443000000,0.000065554000000,0.000096764000000,0.000272962000000,0.000053702000000 +0.000020135500000,0.000096369000000,0.000030802000000,0.000013818666667,0.000027839000000,0.000182493000000,0.000058838000000,0.000028628500000,0.000184468000000,0.000065159000000,0.000117307000000,0.000271777000000,0.000052912000000 +0.000020332500000,0.000117702000000,0.000025863500000,0.000013028333333,0.000027246000000,0.000183282000000,0.000057653000000,0.000026456500000,0.000184073000000,0.000063974000000,0.000117308000000,0.000276121000000,0.000053307000000 +0.000020332500000,0.000116122000000,0.000026259000000,0.000013028333333,0.000027444000000,0.000255578000000,0.000058838000000,0.000027246000000,0.000273356000000,0.000123233000000,0.000117307000000,0.000296665000000,0.000061999000000 +0.000020333000000,0.000114937000000,0.000026851000000,0.000037390666667,0.000027443500000,0.000187628000000,0.000058443000000,0.000025863500000,0.000184863000000,0.000063974000000,0.000358689000000,0.000276912000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026456000000,0.000018559333333,0.000027246500000,0.000188024000000,0.000059234000000,0.000025863500000,0.000187233000000,0.000067529000000,0.000117308000000,0.000287974000000,0.000051332000000 +0.000020135500000,0.000097159000000,0.000026851500000,0.000022641666667,0.000026653500000,0.000183678000000,0.000057653000000,0.000031987000000,0.000184468000000,0.000062789000000,0.000096764000000,0.000278492000000,0.000050542000000 +0.000020135000000,0.000183282000000,0.000027048500000,0.000012896666667,0.000025863500000,0.000199085000000,0.000058838000000,0.000026061500000,0.000197110000000,0.000064369000000,0.000095184000000,0.000295480000000,0.000054097000000 +0.000020135000000,0.000109406000000,0.000027049000000,0.000013028666667,0.000026456000000,0.000201455000000,0.000077406000000,0.000026456000000,0.000184862000000,0.000066739000000,0.000096764000000,0.000277702000000,0.000052912000000 +0.000020333000000,0.000115727000000,0.000026061000000,0.000013028333333,0.000027048500000,0.000182493000000,0.000059233000000,0.000026258500000,0.000184467000000,0.000062789000000,0.000094394000000,0.000280863000000,0.000053702000000 +0.000020333000000,0.000094394000000,0.000026851000000,0.000014740000000,0.000055098000000,0.000263875000000,0.000058838000000,0.000026653500000,0.000184863000000,0.000096764000000,0.000096369000000,0.000272566000000,0.000051727000000 +0.000040481000000,0.000148912000000,0.000027246500000,0.000013028333333,0.000027246000000,0.000200665000000,0.000058839000000,0.000025468500000,0.000197505000000,0.000063579000000,0.000095974000000,0.000442443000000,0.000054097000000 +0.000020332500000,0.000096369000000,0.000035542500000,0.000012896666667,0.000028036500000,0.000197109000000,0.000057653000000,0.000026851000000,0.000186838000000,0.000063579000000,0.000117703000000,0.000274542000000,0.000053307000000 +0.000020135000000,0.000115727000000,0.000026259000000,0.000013028333333,0.000026851000000,0.000236616000000,0.000058443000000,0.000026258500000,0.000184073000000,0.000063579000000,0.000114147000000,0.000275727000000,0.000053703000000 +0.000020135500000,0.000096369000000,0.000025666000000,0.000013028333333,0.000027246500000,0.000451134000000,0.000058443000000,0.000042259000000,0.000238196000000,0.000065950000000,0.000116912000000,0.000276912000000,0.000052517000000 +0.000020135000000,0.000096369000000,0.000027048500000,0.000013028333333,0.000027838500000,0.000210936000000,0.000057653000000,0.000026061000000,0.000184073000000,0.000063184000000,0.000117307000000,0.000290739000000,0.000053308000000 +0.000020332500000,0.000095974000000,0.000029024000000,0.000013028333333,0.000026654000000,0.000215678000000,0.000112962000000,0.000025863500000,0.000184863000000,0.000064764000000,0.000117307000000,0.000276912000000,0.000053307000000 +0.000020333000000,0.000114541000000,0.000030407000000,0.000013028333333,0.000027246000000,0.000186443000000,0.000058838000000,0.000025271000000,0.000184468000000,0.000063184000000,0.000117307000000,0.000308912000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000062604000000,0.000184467000000,0.000059233000000,0.000027641000000,0.000321949000000,0.000101110000000,0.000130740000000,0.000280468000000,0.000139825000000 +0.000020135000000,0.000118097000000,0.000061419000000,0.000012896666667,0.000026654000000,0.000184468000000,0.000058443000000,0.000026456000000,0.000184073000000,0.000078986000000,0.000114147000000,0.000320369000000,0.000052517000000 +0.000020135000000,0.000115727000000,0.000027048500000,0.000013028333333,0.000027443500000,0.000197900000000,0.000058838000000,0.000026061000000,0.000184467000000,0.000063579000000,0.000095974000000,0.000281653000000,0.000052122000000 +0.000020135000000,0.000136271000000,0.000026061000000,0.000012896666667,0.000026061000000,0.000181307000000,0.000057653000000,0.000027246500000,0.000180517000000,0.000067135000000,0.000096369000000,0.000310888000000,0.000055677000000 +0.000020333000000,0.000103876000000,0.000026851000000,0.000012896666667,0.000026851000000,0.000184073000000,0.000057258000000,0.000026061000000,0.000186443000000,0.000063578000000,0.000115727000000,0.000275332000000,0.000051332000000 +0.000020135500000,0.000096369000000,0.000027049000000,0.000012896666667,0.000026258500000,0.000183678000000,0.000057257000000,0.000031789500000,0.000187233000000,0.000063183000000,0.000117308000000,0.000316023000000,0.000054097000000 +0.000020332500000,0.000094789000000,0.000027048500000,0.000013028333333,0.000026653500000,0.000182492000000,0.000086493000000,0.000026456000000,0.000184863000000,0.000077801000000,0.000094789000000,0.000293900000000,0.000084517000000 +0.000021320500000,0.000115727000000,0.000026258500000,0.000012896666667,0.000027641000000,0.000184073000000,0.000058839000000,0.000027049000000,0.000220813000000,0.000067134000000,0.000117308000000,0.000316814000000,0.000054888000000 +0.000020333000000,0.000096369000000,0.000026851500000,0.000013028333333,0.000044036500000,0.000185653000000,0.000058443000000,0.000025271000000,0.000317998000000,0.000065949000000,0.000094394000000,0.000278492000000,0.000061998000000 +0.000020135500000,0.000125999000000,0.000029024000000,0.000013028333333,0.000027246500000,0.000218838000000,0.000058839000000,0.000027641500000,0.000180912000000,0.000064764000000,0.000096369000000,0.000277702000000,0.000051727000000 +0.000020135000000,0.000105456000000,0.000027839000000,0.000013028333333,0.000027443500000,0.000184862000000,0.000058838000000,0.000025468500000,0.000184863000000,0.000062789000000,0.000099530000000,0.000277702000000,0.000052122000000 +0.000021320000000,0.000095974000000,0.000026456500000,0.000013028333333,0.000027838500000,0.000188418000000,0.000058838000000,0.000027048500000,0.000181307000000,0.000065554000000,0.000133899000000,0.000357900000000,0.000053307000000 +0.000020332500000,0.000095974000000,0.000025863500000,0.000017900666667,0.000026061000000,0.000182493000000,0.000057653000000,0.000026061000000,0.000186838000000,0.000063183000000,0.000095974000000,0.000271776000000,0.000052912000000 +0.000020332500000,0.000094789000000,0.000027048500000,0.000013555333333,0.000028036500000,0.000251628000000,0.000058839000000,0.000058258500000,0.000183678000000,0.000135875000000,0.000095974000000,0.000359085000000,0.000066345000000 +0.000020135000000,0.000143381000000,0.000029024000000,0.000013423333333,0.000026654000000,0.000181307000000,0.000071875000000,0.000026851000000,0.000184073000000,0.000063579000000,0.000094789000000,0.000278887000000,0.000052122000000 +0.000020135500000,0.000102295000000,0.000030407000000,0.000013555000000,0.000027443500000,0.000188023000000,0.000058838000000,0.000044234000000,0.000183678000000,0.000067134000000,0.000152862000000,0.000313653000000,0.000053308000000 +0.000020333000000,0.000153653000000,0.000033370000000,0.000013028333333,0.000046209500000,0.000182098000000,0.000058838000000,0.000025073500000,0.000184073000000,0.000063184000000,0.000115332000000,0.000273356000000,0.000051332000000 +0.000021320500000,0.000109011000000,0.000026259000000,0.000012896666667,0.000026653500000,0.000217258000000,0.000057258000000,0.000027641500000,0.000221603000000,0.000065159000000,0.000096369000000,0.000315233000000,0.000051332000000 +0.000020332500000,0.000100714000000,0.000026851500000,0.000013028333333,0.000028036500000,0.000186838000000,0.000058838000000,0.000026259000000,0.000183677000000,0.000063184000000,0.000096369000000,0.000273357000000,0.000050937000000 +0.000020135000000,0.000273752000000,0.000026456000000,0.000013028333333,0.000026653500000,0.000184863000000,0.000058444000000,0.000025863500000,0.000181702000000,0.000063184000000,0.000117702000000,0.000306542000000,0.000052122000000 +0.000021320000000,0.000131530000000,0.000027048500000,0.000012896666667,0.000027246500000,0.000188814000000,0.000057653000000,0.000026061000000,0.000184863000000,0.000109011000000,0.000094393000000,0.000278493000000,0.000052517000000 +0.000036925500000,0.000096764000000,0.000027246500000,0.000013028333333,0.000026851000000,0.000267431000000,0.000058838000000,0.000027839000000,0.000232665000000,0.000065950000000,0.000117308000000,0.000309702000000,0.000051332000000 +0.000020332500000,0.000151282000000,0.000027048500000,0.000013028333333,0.000027444000000,0.000182887000000,0.000057258000000,0.000029419000000,0.000184468000000,0.000062789000000,0.000094394000000,0.000272962000000,0.000052122000000 +0.000020333000000,0.000118098000000,0.000035937500000,0.000012896666667,0.000027839000000,0.000183282000000,0.000062394000000,0.000026258500000,0.000184863000000,0.000062393000000,0.000096764000000,0.000275332000000,0.000050937000000 +0.000020332500000,0.000096764000000,0.000027246000000,0.000013818333333,0.000043641000000,0.000183283000000,0.000057653000000,0.000026851500000,0.000184468000000,0.000062789000000,0.000114541000000,0.000274542000000,0.000052122000000 +0.000020332500000,0.000097159000000,0.000027049000000,0.000013555333333,0.000026654000000,0.000185258000000,0.000060023000000,0.000025666000000,0.000218443000000,0.000063974000000,0.000096369000000,0.000274146000000,0.000090048000000 +0.000021320000000,0.000116122000000,0.000028036000000,0.000013028666667,0.000027246000000,0.000181702000000,0.000057653000000,0.000026654000000,0.000180912000000,0.000063184000000,0.000117307000000,0.000278097000000,0.000053307000000 +0.000021123000000,0.000116517000000,0.000026456000000,0.000013423666667,0.000026851500000,0.000182887000000,0.000058443000000,0.000027246000000,0.000180517000000,0.000064764000000,0.000094789000000,0.000274936000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026259000000,0.000013028333333,0.000027048500000,0.000224369000000,0.000057653000000,0.000025468000000,0.000180517000000,0.000063184000000,0.000117308000000,0.000288369000000,0.000051727000000 +0.000021122500000,0.000097160000000,0.000026851500000,0.000013818333333,0.000027641500000,0.000182097000000,0.000057258000000,0.000027048500000,0.000217653000000,0.000070295000000,0.000096369000000,0.000275727000000,0.000052122000000 +0.000020332500000,0.000095974000000,0.000028826500000,0.000023168333333,0.000028234000000,0.000182097000000,0.000058838000000,0.000028036500000,0.000184862000000,0.000063974000000,0.000095184000000,0.000290739000000,0.000052912000000 +0.000037913000000,0.000113356000000,0.000047789500000,0.000013423666667,0.000027444000000,0.000184863000000,0.000057258000000,0.000026653500000,0.000183677000000,0.000065555000000,0.000133504000000,0.000275727000000,0.000051727000000 +0.000021518000000,0.000096369000000,0.000026061000000,0.000012896666667,0.000045616500000,0.000215282000000,0.000057653000000,0.000026061000000,0.000184073000000,0.000067530000000,0.000115332000000,0.000311283000000,0.000051727000000 +0.000020332500000,0.000161554000000,0.000025864000000,0.000013028333333,0.000062209000000,0.000187233000000,0.000057258000000,0.000027048500000,0.000184073000000,0.000065949000000,0.000116912000000,0.000366196000000,0.000051332000000 +0.000020332500000,0.000093998000000,0.000026851500000,0.000013028333333,0.000055888000000,0.000183282000000,0.000057258000000,0.000026456000000,0.000184863000000,0.000063184000000,0.000096369000000,0.000526196000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026456000000,0.000013555000000,0.000035542500000,0.000181703000000,0.000058838000000,0.000027048500000,0.000181702000000,0.000065949000000,0.000095184000000,0.000282048000000,0.000051727000000 +0.000021320500000,0.000096369000000,0.000027246000000,0.000013028333333,0.000026851000000,0.000251233000000,0.000058443000000,0.000026061000000,0.000184863000000,0.000064369000000,0.000098345000000,0.000276122000000,0.000053307000000 +0.000020332500000,0.000096764000000,0.000026851500000,0.000013818333333,0.000026851500000,0.000187233000000,0.000076221000000,0.000025666000000,0.000199085000000,0.000063974000000,0.000114937000000,0.000276517000000,0.000053308000000 +0.000020135500000,0.000134690000000,0.000026653500000,0.000012896666667,0.000027839000000,0.000203430000000,0.000057653000000,0.000025073500000,0.000180517000000,0.000062789000000,0.000117308000000,0.000279283000000,0.000133110000000 +0.000020333000000,0.000129554000000,0.000046802000000,0.000033571666667,0.000027246000000,0.000195530000000,0.000057653000000,0.000025863500000,0.000185258000000,0.000063184000000,0.000097159000000,0.000276517000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000196714000000,0.000058443000000,0.000025863500000,0.000218443000000,0.000065160000000,0.000116912000000,0.000275727000000,0.000052122000000 +0.000020135000000,0.000102295000000,0.000026851000000,0.000012896666667,0.000027444000000,0.000182097000000,0.000057653000000,0.000025863500000,0.000186838000000,0.000063579000000,0.000096369000000,0.000277308000000,0.000052912000000 +0.000020332500000,0.000096369000000,0.000027839000000,0.000013555000000,0.000028826500000,0.000184467000000,0.000058838000000,0.000026061000000,0.000180912000000,0.000095578000000,0.000115332000000,0.000336171000000,0.000050937000000 +0.000021320500000,0.000094789000000,0.000026456500000,0.000013028333333,0.000027443500000,0.000183677000000,0.000058838000000,0.000025271000000,0.000187233000000,0.000062789000000,0.000096764000000,0.000276517000000,0.000052517000000 +0.000020332500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000026258500000,0.000182098000000,0.000058838000000,0.000025666000000,0.000218048000000,0.000063974000000,0.000095974000000,0.000313258000000,0.000052517000000 +0.000021320500000,0.000115727000000,0.000027048500000,0.000013028333333,0.000026456000000,0.000182098000000,0.000077406000000,0.000053715000000,0.000183282000000,0.000063579000000,0.000117702000000,0.000277702000000,0.000052912000000 +0.000020135500000,0.000097949000000,0.000028826500000,0.000013028333333,0.000028234000000,0.000186838000000,0.000058838000000,0.000026258500000,0.000183677000000,0.000067924000000,0.000096369000000,0.000310492000000,0.000052122000000 +0.000020135000000,0.000115727000000,0.000030604000000,0.000013555000000,0.000028234000000,0.000183678000000,0.000058838000000,0.000025863500000,0.000186443000000,0.000065949000000,0.000148122000000,0.000276122000000,0.000052122000000 +0.000045221500000,0.000129950000000,0.000026653500000,0.000018032666667,0.000027048500000,0.000183282000000,0.000058838000000,0.000026061000000,0.000287973000000,0.000062789000000,0.000095974000000,0.000306541000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000026456500000,0.000013028666667,0.000027246500000,0.000182098000000,0.000058838000000,0.000026061000000,0.000184073000000,0.000076221000000,0.000116122000000,0.000277307000000,0.000051332000000 +0.000020333000000,0.000115332000000,0.000026851500000,0.000013028333333,0.000026653500000,0.000184863000000,0.000057653000000,0.000025468500000,0.000187628000000,0.000063184000000,0.000115727000000,0.000344863000000,0.000051332000000 +0.000020135000000,0.000118097000000,0.000026456000000,0.000013423333333,0.000027839000000,0.000216863000000,0.000058838000000,0.000025863500000,0.000186838000000,0.000066344000000,0.000096369000000,0.000272171000000,0.000103480000000 +0.000021320500000,0.000096369000000,0.000027246000000,0.000013160000000,0.000026851500000,0.000186443000000,0.000058444000000,0.000025863500000,0.000197900000000,0.000065949000000,0.000107431000000,0.000305752000000,0.000052122000000 +0.000020135000000,0.000162739000000,0.000027049000000,0.000013555000000,0.000054308000000,0.000182492000000,0.000093209000000,0.000037123000000,0.000183678000000,0.000063184000000,0.000116122000000,0.000275332000000,0.000052912000000 +0.000020332500000,0.000116517000000,0.000027246500000,0.000013028333333,0.000028234000000,0.000187234000000,0.000057653000000,0.000026653500000,0.000184862000000,0.000067135000000,0.000096369000000,0.000274937000000,0.000052912000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000027641000000,0.000216072000000,0.000058838000000,0.000026258500000,0.000218048000000,0.000064764000000,0.000118887000000,0.000278492000000,0.000054492000000 +0.000020135000000,0.000096369000000,0.000027048500000,0.000013028333333,0.000029024000000,0.000181702000000,0.000058443000000,0.000026654000000,0.000186443000000,0.000158789000000,0.000116913000000,0.000278887000000,0.000052517000000 +0.000027246500000,0.000096369000000,0.000027048500000,0.000025802000000,0.000035147500000,0.000181702000000,0.000058443000000,0.000025863500000,0.000229109000000,0.000136666000000,0.000117703000000,0.000279677000000,0.000084912000000 +0.000021122500000,0.000162344000000,0.000028036500000,0.000012896666667,0.000027049000000,0.000181307000000,0.000058838000000,0.000026258500000,0.000184863000000,0.000071085000000,0.000116517000000,0.000273357000000,0.000051332000000 +0.000020333000000,0.000114936000000,0.000026456500000,0.000013028333333,0.000028826500000,0.000228714000000,0.000057258000000,0.000026851000000,0.000230690000000,0.000066344000000,0.000096369000000,0.000386344000000,0.000052517000000 +0.000020332500000,0.000115332000000,0.000026061000000,0.000013028333333,0.000027048500000,0.000182097000000,0.000060813000000,0.000027246000000,0.000184468000000,0.000063974000000,0.000117308000000,0.000356715000000,0.000053307000000 +0.000020135000000,0.000117307000000,0.000026851000000,0.000012896666667,0.000027246500000,0.000182097000000,0.000072665000000,0.000025863500000,0.000183678000000,0.000096369000000,0.000118887000000,0.000273751000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000038900500000,0.000013028333333,0.000026851000000,0.000181703000000,0.000058838000000,0.000028431500000,0.000184072000000,0.000062788000000,0.000138245000000,0.000346047000000,0.000051332000000 +0.000020135500000,0.000131134000000,0.000030604000000,0.000013028666667,0.000027444000000,0.000252418000000,0.000058443000000,0.000026258500000,0.000218048000000,0.000065554000000,0.000270591000000,0.000279678000000,0.000050937000000 +0.000020332500000,0.000096369000000,0.000025863500000,0.000012896666667,0.000026456000000,0.000184863000000,0.000057258000000,0.000026653500000,0.000183282000000,0.000064369000000,0.000114147000000,0.000308912000000,0.000082146000000 +0.000020135000000,0.000096764000000,0.000025666000000,0.000013028333333,0.000027246000000,0.000186838000000,0.000058443000000,0.000024876000000,0.000184072000000,0.000065949000000,0.000095974000000,0.000278097000000,0.000050542000000 +0.000030012000000,0.000115727000000,0.000027048500000,0.000014476666667,0.000027839000000,0.000182493000000,0.000057258000000,0.000026653500000,0.000181307000000,0.000063579000000,0.000152073000000,0.000272961000000,0.000052122000000 +0.000020332500000,0.000116517000000,0.000026061000000,0.000013028666667,0.000027443500000,0.000215283000000,0.000058838000000,0.000026851500000,0.000459036000000,0.000063184000000,0.000095184000000,0.000276517000000,0.000051332000000 +0.000020333000000,0.000166295000000,0.000027049000000,0.000013555000000,0.000044628500000,0.000186838000000,0.000058443000000,0.000026456000000,0.000204221000000,0.000109801000000,0.000117307000000,0.000276517000000,0.000052122000000 +0.000020332500000,0.000116122000000,0.000027246000000,0.000013555000000,0.000027838500000,0.000183282000000,0.000092419000000,0.000026061000000,0.000184468000000,0.000065554000000,0.000094788000000,0.000280467000000,0.000058443000000 +0.000020332500000,0.000096369000000,0.000044036000000,0.000013028333333,0.000026653500000,0.000182492000000,0.000058443000000,0.000070308000000,0.000198295000000,0.000065949000000,0.000117307000000,0.000273752000000,0.000106640000000 +0.000020135000000,0.000115727000000,0.000026258500000,0.000013028333333,0.000026258500000,0.000197900000000,0.000058838000000,0.000026851000000,0.000181307000000,0.000067529000000,0.000099134000000,0.000278098000000,0.000051332000000 +0.000020135500000,0.000115332000000,0.000027049000000,0.000013423666667,0.000027246500000,0.000182097000000,0.000058838000000,0.000026654000000,0.000181307000000,0.000068319000000,0.000116912000000,0.000274541000000,0.000051727000000 +0.000020332500000,0.000150492000000,0.000026851000000,0.000012896666667,0.000026258500000,0.000182492000000,0.000057258000000,0.000025468500000,0.000214492000000,0.000066740000000,0.000096369000000,0.000275332000000,0.000055282000000 +0.000020332500000,0.000115332000000,0.000028036500000,0.000012896666667,0.000026653500000,0.000186048000000,0.000057653000000,0.000025468500000,0.000184863000000,0.000065949000000,0.000094788000000,0.000275727000000,0.000052122000000 +0.000030209500000,0.000096764000000,0.000026456000000,0.000013423666667,0.000028431500000,0.000393060000000,0.000057653000000,0.000025468500000,0.000183678000000,0.000112172000000,0.000115727000000,0.000319974000000,0.000051332000000 +0.000021518000000,0.000118887000000,0.000026258500000,0.000017769333333,0.000027048500000,0.000197109000000,0.000057258000000,0.000025863500000,0.000184862000000,0.000063578000000,0.000096369000000,0.000273752000000,0.000050937000000 +0.000021122500000,0.000096369000000,0.000026851500000,0.000013028333333,0.000027048500000,0.000216072000000,0.000091233000000,0.000042258500000,0.000214492000000,0.000068320000000,0.000096369000000,0.000290345000000,0.000052122000000 +0.000020332500000,0.000150098000000,0.000064974500000,0.000013028666667,0.000026653500000,0.000181702000000,0.000057653000000,0.000026653500000,0.000186838000000,0.000065554000000,0.000117307000000,0.000277703000000,0.000050936000000 +0.000020332500000,0.000094393000000,0.000032382000000,0.000013555333333,0.000026258500000,0.000184468000000,0.000058839000000,0.000036332500000,0.000180912000000,0.000063579000000,0.000138245000000,0.000340122000000,0.000051727000000 +0.000020333000000,0.000115727000000,0.000025863500000,0.000013028666667,0.000026061000000,0.000186443000000,0.000058839000000,0.000026061500000,0.000184073000000,0.000064369000000,0.000117308000000,0.000277307000000,0.000052912000000 +0.000020332500000,0.000094788000000,0.000026258500000,0.000013423333333,0.000028036500000,0.000217258000000,0.000057653000000,0.000026061000000,0.000215678000000,0.000064764000000,0.000117307000000,0.000325504000000,0.000051332000000 +0.000022505500000,0.000117307000000,0.000026851000000,0.000012896666667,0.000026851000000,0.000186048000000,0.000057258000000,0.000026258500000,0.000184072000000,0.000097554000000,0.000115332000000,0.000272171000000,0.000050937000000 +0.000020332500000,0.000150097000000,0.000026061000000,0.000013028333333,0.000027839000000,0.000184467000000,0.000058838000000,0.000025073500000,0.000180122000000,0.000063974000000,0.000117307000000,0.000342888000000,0.000050937000000 +0.000048777000000,0.000096369000000,0.000026654000000,0.000013028333333,0.000027048500000,0.000188023000000,0.000058443000000,0.000028431500000,0.000184862000000,0.000064369000000,0.000115727000000,0.000278097000000,0.000051332000000 +0.000038505500000,0.000105456000000,0.000027048500000,0.000013686666667,0.000027838500000,0.000258344000000,0.000091233000000,0.000060431500000,0.000217652000000,0.000063579000000,0.000096764000000,0.000306937000000,0.000051727000000 +0.000042061000000,0.000117702000000,0.000027048500000,0.000013028333333,0.000027444000000,0.000183282000000,0.000058838000000,0.000027246000000,0.000186443000000,0.000063184000000,0.000095974000000,0.000274542000000,0.000051727000000 +0.000026654000000,0.000096369000000,0.000026061000000,0.000013028333333,0.000027443500000,0.000185652000000,0.000057258000000,0.000026258500000,0.000184467000000,0.000064369000000,0.000153258000000,0.000423085000000,0.000052912000000 +0.000020135000000,0.000159184000000,0.000027049000000,0.000012896666667,0.000027444000000,0.000220813000000,0.000057258000000,0.000025666000000,0.000184073000000,0.000063579000000,0.000117308000000,0.000289159000000,0.000051727000000 +0.000020332500000,0.000115332000000,0.000027048500000,0.000013028333333,0.000027641500000,0.000182097000000,0.000058838000000,0.000027049000000,0.000261505000000,0.000065554000000,0.000116913000000,0.000358295000000,0.000052912000000 +0.000020332500000,0.000116517000000,0.000028036500000,0.000013028333333,0.000027444000000,0.000182097000000,0.000057258000000,0.000026258500000,0.000181702000000,0.000062789000000,0.000095974000000,0.000275727000000,0.000053308000000 +0.000030407000000,0.000096764000000,0.000026258500000,0.000013028333333,0.000027838500000,0.000183283000000,0.000058838000000,0.000025863500000,0.000180913000000,0.000065950000000,0.000117307000000,0.000350393000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026258500000,0.000012896666667,0.000026456500000,0.000215677000000,0.000058839000000,0.000025073500000,0.000183282000000,0.000064369000000,0.000105060000000,0.000280862000000,0.000051332000000 +0.000020135500000,0.000095974000000,0.000026851500000,0.000013291666667,0.000027049000000,0.000181308000000,0.000146937000000,0.000041863500000,0.000197505000000,0.000062788000000,0.000117307000000,0.000313653000000,0.000053703000000 +0.000020135500000,0.000100319000000,0.000038308000000,0.000013028333333,0.000027246000000,0.000182098000000,0.000062789000000,0.000026456000000,0.000187233000000,0.000063184000000,0.000096369000000,0.000280073000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000038110500000,0.000013423333333,0.000027246500000,0.000185653000000,0.000058838000000,0.000025468500000,0.000184072000000,0.000067134000000,0.000115332000000,0.000313258000000,0.000052912000000 +0.000020333000000,0.000115727000000,0.000026061000000,0.000013028666667,0.000027839000000,0.000250047000000,0.000058443000000,0.000025666000000,0.000184073000000,0.000061999000000,0.000096369000000,0.000274937000000,0.000065159000000 +0.000021123000000,0.000115727000000,0.000026061000000,0.000013028333333,0.000027641500000,0.000183282000000,0.000058839000000,0.000025073000000,0.000183282000000,0.000113357000000,0.000119283000000,0.000330640000000,0.000051727000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013028333333,0.000028234000000,0.000182888000000,0.000058443000000,0.000025666000000,0.000185653000000,0.000065949000000,0.000114147000000,0.000274147000000,0.000051332000000 +0.000020135000000,0.000096764000000,0.000026061000000,0.000013028333333,0.000026851000000,0.000182492000000,0.000058838000000,0.000027049000000,0.000185258000000,0.000065554000000,0.000117307000000,0.000350393000000,0.000051332000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013028666667,0.000026258500000,0.000231480000000,0.000128369000000,0.000028431500000,0.000205011000000,0.000065949000000,0.000096369000000,0.000274147000000,0.000051332000000 +0.000020332500000,0.000097159000000,0.000027246000000,0.000013028333333,0.000043641000000,0.000186838000000,0.000057652000000,0.000035542500000,0.000184863000000,0.000067529000000,0.000113751000000,0.000305752000000,0.000052912000000 +0.000020332500000,0.000115727000000,0.000026851000000,0.000013423666667,0.000026654000000,0.000183282000000,0.000058838000000,0.000025666000000,0.000181307000000,0.000065554000000,0.000094394000000,0.000276517000000,0.000051332000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000026456000000,0.000185652000000,0.000057258000000,0.000025468500000,0.000183677000000,0.000065949000000,0.000117307000000,0.000278492000000,0.000242937000000 +0.000020333000000,0.000095974000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000216072000000,0.000058839000000,0.000028431500000,0.000227135000000,0.000063184000000,0.000094789000000,0.000278097000000,0.000135875000000 +0.000021320000000,0.000096369000000,0.000027049000000,0.000013423666667,0.000026653500000,0.000181307000000,0.000058838000000,0.000026061000000,0.000187628000000,0.000067134000000,0.000096764000000,0.000310492000000,0.000053703000000 +0.000020332500000,0.000147332000000,0.000027839000000,0.000013555000000,0.000027246500000,0.000186443000000,0.000058443000000,0.000026061000000,0.000180912000000,0.000062789000000,0.000094789000000,0.000276122000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000027246000000,0.000182887000000,0.000057653000000,0.000026851000000,0.000229109000000,0.000062789000000,0.000114936000000,0.000280073000000,0.000054888000000 +0.000020135000000,0.000116913000000,0.000026258500000,0.000013028333333,0.000027839000000,0.000266641000000,0.000072270000000,0.000026456000000,0.000218048000000,0.000067134000000,0.000118887000000,0.000276912000000,0.000051332000000 +0.000020333000000,0.000118492000000,0.000026851000000,0.000013555000000,0.000046209000000,0.000182492000000,0.000057258000000,0.000037715500000,0.000184468000000,0.000063579000000,0.000095974000000,0.000277307000000,0.000051332000000 +0.000027443500000,0.000116123000000,0.000029024000000,0.000013555333333,0.000027246000000,0.000184072000000,0.000057653000000,0.000026061000000,0.000183677000000,0.000066739000000,0.000114542000000,0.000280072000000,0.000053307000000 +0.000020135000000,0.000096764000000,0.000030604500000,0.000013687000000,0.000027048500000,0.000187628000000,0.000058048000000,0.000026456000000,0.000184072000000,0.000098740000000,0.000095974000000,0.000273752000000,0.000052912000000 +0.000020332500000,0.000097159000000,0.000025863500000,0.000013028333333,0.000028036500000,0.000184862000000,0.000058048000000,0.000025666000000,0.000267826000000,0.000063184000000,0.000094789000000,0.000281257000000,0.000086888000000 +0.000020332500000,0.000094394000000,0.000026061500000,0.000029357666667,0.000027641500000,0.000182097000000,0.000057258000000,0.000028431500000,0.000184073000000,0.000069900000000,0.000267431000000,0.000273356000000,0.000053308000000 +0.000020332500000,0.000110196000000,0.000027049000000,0.000012896666667,0.000026851000000,0.000185257000000,0.000057653000000,0.000026258500000,0.000184863000000,0.000065555000000,0.000117307000000,0.000281653000000,0.000050936000000 +0.000020332500000,0.000118493000000,0.000043443500000,0.000013028333333,0.000027246000000,0.000218047000000,0.000129159000000,0.000026258500000,0.000184468000000,0.000063579000000,0.000116912000000,0.000275727000000,0.000051727000000 +0.000020332500000,0.000117702000000,0.000026654000000,0.000013423333333,0.000027444000000,0.000182097000000,0.000057653000000,0.000026456500000,0.000184467000000,0.000063184000000,0.000096764000000,0.000277702000000,0.000052122000000 +0.000020333000000,0.000095974000000,0.000027048500000,0.000013028333333,0.000045221500000,0.000182887000000,0.000057258000000,0.000025271000000,0.000186838000000,0.000062789000000,0.000118098000000,0.000278097000000,0.000054492000000 +0.000020135000000,0.000097160000000,0.000027049000000,0.000012896666667,0.000027443500000,0.000186838000000,0.000058838000000,0.000028431500000,0.000184072000000,0.000065554000000,0.000095974000000,0.000329455000000,0.000052912000000 +0.000030209000000,0.000189209000000,0.000026061000000,0.000013028333333,0.000026654000000,0.000277307000000,0.000058048000000,0.000027246000000,0.000206196000000,0.000063974000000,0.000117307000000,0.000278492000000,0.000052912000000 +0.000020530000000,0.000131925000000,0.000026851000000,0.000014740333333,0.000027246500000,0.000336566000000,0.000057258000000,0.000026653500000,0.000185258000000,0.000063184000000,0.000116912000000,0.000310493000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000027048500000,0.000013028333333,0.000026258500000,0.000186048000000,0.000057258000000,0.000026258500000,0.000184862000000,0.000063579000000,0.000117308000000,0.000278888000000,0.000054097000000 +0.000020135000000,0.000096369000000,0.000028036000000,0.000022378000000,0.000027246000000,0.000266246000000,0.000057653000000,0.000026061000000,0.000186838000000,0.000065159000000,0.000094394000000,0.000308517000000,0.000053307000000 +0.000020332500000,0.000116122000000,0.000043246000000,0.000013028333333,0.000027049000000,0.000185653000000,0.000072665000000,0.000026061000000,0.000217257000000,0.000063974000000,0.000120467000000,0.000277702000000,0.000053308000000 +0.000020333000000,0.000117702000000,0.000026653500000,0.000013028333333,0.000027839000000,0.000181702000000,0.000057653000000,0.000025468500000,0.000184467000000,0.000063184000000,0.000096764000000,0.000310888000000,0.000052912000000 +0.000020135000000,0.000105060000000,0.000027246000000,0.000012896666667,0.000037912500000,0.000180912000000,0.000058839000000,0.000024678500000,0.000183677000000,0.000065949000000,0.000096369000000,0.000277307000000,0.000086492000000 +0.000020135000000,0.000096369000000,0.000029024000000,0.000013028333333,0.000026851500000,0.000211727000000,0.000057258000000,0.000026654000000,0.000184073000000,0.000062789000000,0.000117307000000,0.000314443000000,0.000053703000000 +0.000020332500000,0.000117702000000,0.000030406500000,0.000013028333333,0.000027246000000,0.000182887000000,0.000057258000000,0.000026653500000,0.000218047000000,0.000065949000000,0.000095974000000,0.000281258000000,0.000051727000000 +0.000020333000000,0.000136270000000,0.000026456000000,0.000013028666667,0.000028036500000,0.000184467000000,0.000058443000000,0.000026653500000,0.000183282000000,0.000067134000000,0.000119677000000,0.000355924000000,0.000052912000000 +0.000027049000000,0.000097159000000,0.000026258500000,0.000013028333333,0.000027443500000,0.000253999000000,0.000057258000000,0.000025468500000,0.000183678000000,0.000063579000000,0.000096369000000,0.000276517000000,0.000051332000000 +0.000019937500000,0.000115727000000,0.000026653500000,0.000012896666667,0.000027444000000,0.000185653000000,0.000121653000000,0.000027443500000,0.000184073000000,0.000063974000000,0.000096369000000,0.000349998000000,0.000052912000000 +0.000020332500000,0.000117702000000,0.000026061500000,0.000013028333333,0.000027048500000,0.000181307000000,0.000074246000000,0.000026061000000,0.000213702000000,0.000063184000000,0.000096369000000,0.000274937000000,0.000054493000000 +0.000020333000000,0.000096369000000,0.000026851000000,0.000039892666667,0.000026851000000,0.000183283000000,0.000058838000000,0.000026258500000,0.000183678000000,0.000070690000000,0.000095974000000,0.000312072000000,0.000744269000000 +0.000020135500000,0.000114542000000,0.000026653500000,0.000036073666667,0.000027246000000,0.000269406000000,0.000058443000000,0.000026061000000,0.000184467000000,0.000066739000000,0.000096369000000,0.000284418000000,0.000068319000000 +0.000020135000000,0.000095974000000,0.000027049000000,0.000018296000000,0.000027048500000,0.000181703000000,0.000057653000000,0.000050159500000,0.000186443000000,0.000066739000000,0.000099134000000,0.000307332000000,0.000051727000000 +0.000021320500000,0.000099134000000,0.000026061000000,0.000017769000000,0.000026851500000,0.000184072000000,0.000057653000000,0.000028431500000,0.000333406000000,0.000063973000000,0.000117702000000,0.000274147000000,0.000054887000000 +0.000020332500000,0.000115727000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000182492000000,0.000057257000000,0.000026654000000,0.000196714000000,0.000066739000000,0.000118888000000,0.000275332000000,0.000061603000000 +0.000020135000000,0.000096369000000,0.000027049000000,0.000013028333333,0.000028234000000,0.000283629000000,0.000058443000000,0.000026061000000,0.000180912000000,0.000063184000000,0.000094394000000,0.000274936000000,0.000051727000000 +0.000039295500000,0.000096369000000,0.000028036500000,0.000013028333333,0.000028431500000,0.000184468000000,0.000057652000000,0.000025863500000,0.000252813000000,0.000065949000000,0.000117702000000,0.000277307000000,0.000052517000000 +0.000021122500000,0.000110986000000,0.000026258500000,0.000013028333333,0.000027641500000,0.000184468000000,0.000057257000000,0.000026061500000,0.000180913000000,0.000063183000000,0.000097159000000,0.000273357000000,0.000053307000000 +0.000020135000000,0.000095973000000,0.000026456000000,0.000012896666667,0.000025863500000,0.000283628000000,0.000057258000000,0.000026259000000,0.000188024000000,0.000131924000000,0.000117307000000,0.000274542000000,0.000052912000000 +0.000020135500000,0.000116122000000,0.000026654000000,0.000013555000000,0.000027049000000,0.000185653000000,0.000057258000000,0.000027048500000,0.000183282000000,0.000070690000000,0.000118097000000,0.000274541000000,0.000052913000000 +0.000020135500000,0.000096369000000,0.000028826500000,0.000013555000000,0.000027444000000,0.000185258000000,0.000058443000000,0.000033567500000,0.000275727000000,0.000065554000000,0.000117307000000,0.000349208000000,0.000052122000000 +0.000020135000000,0.000102294000000,0.000030604000000,0.000013423333333,0.000026456000000,0.000186838000000,0.000057258000000,0.000027444000000,0.000183678000000,0.000067529000000,0.000116912000000,0.000276912000000,0.000052912000000 +0.000020332500000,0.000149307000000,0.000026456000000,0.000013028666667,0.000026654000000,0.000231085000000,0.000057258000000,0.000028431500000,0.000184073000000,0.000063184000000,0.000119678000000,0.000277307000000,0.000050936000000 +0.000021123000000,0.000095974000000,0.000026258500000,0.000013028333333,0.000026061000000,0.000183677000000,0.000078591000000,0.000025666000000,0.000183677000000,0.000062789000000,0.000100715000000,0.000279282000000,0.000050937000000 +0.000020332500000,0.000115332000000,0.000026851000000,0.000019612666667,0.000027049000000,0.000184072000000,0.000057258000000,0.000025666000000,0.000214492000000,0.000062789000000,0.000109801000000,0.000278887000000,0.000071085000000 +0.000030407000000,0.000096369000000,0.000026061000000,0.000024485000000,0.000026258500000,0.000204221000000,0.000057258000000,0.000026061000000,0.000180122000000,0.000146541000000,0.000117307000000,0.000280468000000,0.000051727000000 +0.000021320000000,0.000114937000000,0.000027246000000,0.000017901000000,0.000027049000000,0.000197504000000,0.000058443000000,0.000025271000000,0.000184863000000,0.000063579000000,0.000096764000000,0.000278493000000,0.000051727000000 +0.000020332500000,0.000131924000000,0.000026851500000,0.000013028333333,0.000027246000000,0.000186838000000,0.000057653000000,0.000025666000000,0.000224764000000,0.000067134000000,0.000108616000000,0.000312863000000,0.000051332000000 +0.000020332500000,0.000116912000000,0.000027246000000,0.000013028333333,0.000044036500000,0.000183677000000,0.000058443000000,0.000063196500000,0.000184468000000,0.000067135000000,0.000096764000000,0.000277307000000,0.000052123000000 +0.000020332500000,0.000095974000000,0.000026061000000,0.000013028333333,0.000026851000000,0.000250838000000,0.000060419000000,0.000025073500000,0.000185258000000,0.000080566000000,0.000094394000000,0.000312863000000,0.000050937000000 +0.000020332500000,0.000096764000000,0.000026851500000,0.000013818333333,0.000027444000000,0.000182888000000,0.000058838000000,0.000026654000000,0.000185653000000,0.000065554000000,0.000096369000000,0.000276912000000,0.000051727000000 +0.000020135000000,0.000095974000000,0.000027246000000,0.000013423333333,0.000028233500000,0.000181307000000,0.000096369000000,0.000025863500000,0.000299035000000,0.000082937000000,0.000094394000000,0.000312863000000,0.000051727000000 +0.000021320000000,0.000097159000000,0.000065765000000,0.000013028333333,0.000028036500000,0.000182098000000,0.000058443000000,0.000026653500000,0.000180912000000,0.000063974000000,0.000095579000000,0.000279282000000,0.000052517000000 +0.000021123000000,0.000111381000000,0.000026258500000,0.000033966666667,0.000026851000000,0.000252813000000,0.000078591000000,0.000024876000000,0.000184863000000,0.000063579000000,0.000157208000000,0.000310492000000,0.000051727000000 +0.000020333000000,0.000115727000000,0.000026456500000,0.000013028333333,0.000027246000000,0.000182888000000,0.000072270000000,0.000025666000000,0.000180517000000,0.000062789000000,0.000117703000000,0.000274937000000,0.000050937000000 +0.000021320000000,0.000193554000000,0.000027049000000,0.000013028333333,0.000027246000000,0.000185258000000,0.000059233000000,0.000026851000000,0.000184468000000,0.000064369000000,0.000116912000000,0.000425850000000,0.000052517000000 +0.000020530000000,0.000116912000000,0.000028826500000,0.000013028333333,0.000048777500000,0.000182098000000,0.000058443000000,0.000042258500000,0.000184468000000,0.000063184000000,0.000093998000000,0.000282443000000,0.000053307000000 +0.000020135000000,0.000152073000000,0.000030604500000,0.000013423333333,0.000027443500000,0.000266641000000,0.000058838000000,0.000026653500000,0.000183678000000,0.000064369000000,0.000096369000000,0.000345258000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026258500000,0.000013028333333,0.000026654000000,0.000181702000000,0.000058443000000,0.000026061000000,0.000259134000000,0.000067135000000,0.000097949000000,0.000278097000000,0.000050937000000 +0.000020135500000,0.000096369000000,0.000025863500000,0.000013028666667,0.000028036000000,0.000182887000000,0.000058839000000,0.000027049000000,0.000184468000000,0.000084517000000,0.000095184000000,0.000318789000000,0.000052122000000 +0.000020332500000,0.000094789000000,0.000026851000000,0.000012896666667,0.000028036000000,0.000182492000000,0.000058838000000,0.000026259000000,0.000187629000000,0.000099925000000,0.000117308000000,0.000277702000000,0.000050937000000 +0.000020135500000,0.000095974000000,0.000026258500000,0.000013423666667,0.000027246500000,0.000184862000000,0.000057653000000,0.000026851000000,0.000181702000000,0.000080962000000,0.000117307000000,0.000360270000000,0.000051332000000 +0.000021122500000,0.000094789000000,0.000026851500000,0.000024221666667,0.000028036000000,0.000186443000000,0.000057653000000,0.000025468500000,0.000254394000000,0.000066740000000,0.000096369000000,0.000279677000000,0.000053307000000 +0.000020332500000,0.000116912000000,0.000027246000000,0.000013818333333,0.000026654000000,0.000187233000000,0.000057653000000,0.000025271000000,0.000187233000000,0.000062394000000,0.000117307000000,0.000329060000000,0.000053308000000 +0.000037122500000,0.000096369000000,0.000026851500000,0.000013028333333,0.000052135000000,0.000222394000000,0.000058838000000,0.000025073500000,0.000181307000000,0.000065554000000,0.000216862000000,0.000274937000000,0.000051727000000 +0.000020332500000,0.000094393000000,0.000026061500000,0.000013028333333,0.000027246000000,0.000181307000000,0.000058443000000,0.000073468500000,0.000187233000000,0.000065554000000,0.000110986000000,0.000344072000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026851000000,0.000013028333333,0.000027049000000,0.000185652000000,0.000113357000000,0.000027641000000,0.000229505000000,0.000067925000000,0.000114937000000,0.000278492000000,0.000052912000000 +0.000020135000000,0.000116913000000,0.000036135000000,0.000012896666667,0.000027246000000,0.000184863000000,0.000107826000000,0.000026456000000,0.000185653000000,0.000064369000000,0.000116912000000,0.000346443000000,0.000052517000000 +0.000020333000000,0.000133505000000,0.000028036500000,0.000013028333333,0.000027246000000,0.000338937000000,0.000071480000000,0.000026061000000,0.000180517000000,0.000065950000000,0.000117702000000,0.000277307000000,0.000050937000000 +0.000021320500000,0.000096764000000,0.000026456000000,0.000013028333333,0.000027048500000,0.000201455000000,0.000057258000000,0.000026456000000,0.000238591000000,0.000063184000000,0.000094789000000,0.000344468000000,0.000051727000000 +0.000020332500000,0.000100715000000,0.000025863500000,0.000013028333333,0.000026653500000,0.000185652000000,0.000057653000000,0.000028431500000,0.000187233000000,0.000063974000000,0.000116913000000,0.000278492000000,0.000071875000000 +0.000021123000000,0.000149307000000,0.000026851000000,0.000013028333333,0.000026258500000,0.000217258000000,0.000059233000000,0.000025666000000,0.000184467000000,0.000063973000000,0.000116912000000,0.000314443000000,0.000053307000000 +0.000020135000000,0.000152468000000,0.000029024000000,0.000013028666667,0.000036925000000,0.000184073000000,0.000057258000000,0.000025073000000,0.000186443000000,0.000077406000000,0.000114937000000,0.000278098000000,0.000052517000000 +0.000030209000000,0.000114542000000,0.000030406500000,0.000013423666667,0.000033567500000,0.000184072000000,0.000071876000000,0.000026456500000,0.000216863000000,0.000062789000000,0.000096369000000,0.000273357000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026456000000,0.000013555000000,0.000028036500000,0.000183282000000,0.000057257000000,0.000024678500000,0.000184863000000,0.000067529000000,0.000119283000000,0.000276912000000,0.000051332000000 +0.000020332500000,0.000116122000000,0.000043443500000,0.000013028333333,0.000026851000000,0.000215677000000,0.000057653000000,0.000026456500000,0.000184468000000,0.000065159000000,0.000116517000000,0.000280467000000,0.000051728000000 +0.000020135000000,0.000095974000000,0.000027049000000,0.000012896666667,0.000026258500000,0.000184863000000,0.000058444000000,0.000026653500000,0.000184468000000,0.000063184000000,0.000094789000000,0.000278492000000,0.000051332000000 +0.000020332500000,0.000165505000000,0.000026061000000,0.000013555000000,0.000028431500000,0.000183283000000,0.000057258000000,0.000025666000000,0.000462986000000,0.000069900000000,0.000095974000000,0.000275727000000,0.000069900000000 +0.000021320500000,0.000109406000000,0.000026653500000,0.000013160000000,0.000027246000000,0.000183283000000,0.000057258000000,0.000026851000000,0.000252814000000,0.000065949000000,0.000117307000000,0.000276122000000,0.000051332000000 +0.000020333000000,0.000095974000000,0.000026851500000,0.000013423333333,0.000026061000000,0.000217258000000,0.000060023000000,0.000060431500000,0.000218443000000,0.000139035000000,0.000096369000000,0.000279677000000,0.000052913000000 +0.000020333000000,0.000096765000000,0.000027048500000,0.000013028333333,0.000026851000000,0.000186443000000,0.000057653000000,0.000026653500000,0.000186838000000,0.000062789000000,0.000094394000000,0.000274146000000,0.000113752000000 +0.000020332500000,0.000115727000000,0.000026061500000,0.000013950333333,0.000026653500000,0.000182097000000,0.000071085000000,0.000026653500000,0.000183678000000,0.000063579000000,0.000114542000000,0.000276122000000,0.000054887000000 +0.000020332500000,0.000150098000000,0.000027048500000,0.000013028333333,0.000027641500000,0.000181702000000,0.000057257000000,0.000025666000000,0.000184467000000,0.000063184000000,0.000113752000000,0.000581899000000,0.000052122000000 +0.000020332500000,0.000093998000000,0.000035937500000,0.000012896666667,0.000027246000000,0.000215282000000,0.000057653000000,0.000035147500000,0.000219233000000,0.000065555000000,0.000150492000000,0.000305751000000,0.000084912000000 +0.000021123000000,0.000116912000000,0.000028036500000,0.000013028333333,0.000027246500000,0.000185652000000,0.000057653000000,0.000026456000000,0.000184468000000,0.000067134000000,0.000117307000000,0.000275331000000,0.000050937000000 +0.000020135000000,0.000097159000000,0.000026258500000,0.000012896666667,0.000027838500000,0.000232271000000,0.000058443000000,0.000025271000000,0.000183282000000,0.000063184000000,0.000094394000000,0.000298246000000,0.000052122000000 +0.000020333000000,0.000096369000000,0.000026259000000,0.000013028333333,0.000027246500000,0.000181307000000,0.000060023000000,0.000026259000000,0.000184862000000,0.000101110000000,0.000117702000000,0.000272961000000,0.000053307000000 +0.000020333000000,0.000096369000000,0.000027049000000,0.000013028333333,0.000027048500000,0.000184863000000,0.000058838000000,0.000026653500000,0.000218443000000,0.000067925000000,0.000117308000000,0.000282443000000,0.000051728000000 +0.000020135000000,0.000095974000000,0.000029024000000,0.000013028333333,0.000069320500000,0.000182097000000,0.000057258000000,0.000028431500000,0.000184862000000,0.000068320000000,0.000098740000000,0.000281258000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000030406500000,0.000013028666667,0.000029024000000,0.000184468000000,0.000071875000000,0.000026061000000,0.000184073000000,0.000063974000000,0.000117308000000,0.000276912000000,0.000051727000000 +0.000020333000000,0.000095974000000,0.000026258500000,0.000019612666667,0.000033765000000,0.000206197000000,0.000058838000000,0.000025073500000,0.000186442000000,0.000063579000000,0.000117307000000,0.000279678000000,0.000051727000000 +0.000020135500000,0.000109011000000,0.000026456000000,0.000013028333333,0.000028036000000,0.000183677000000,0.000060023000000,0.000026456000000,0.000217653000000,0.000067135000000,0.000117308000000,0.000280072000000,0.000052122000000 +0.000045419000000,0.000117703000000,0.000027246000000,0.000014345333333,0.000027641000000,0.000186443000000,0.000058838000000,0.000025863500000,0.000182492000000,0.000065554000000,0.000115332000000,0.000276122000000,0.000052912000000 +0.000020333000000,0.000147727000000,0.000026061000000,0.000013028333333,0.000027443500000,0.000185653000000,0.000060023000000,0.000026456000000,0.000180517000000,0.000099924000000,0.000118493000000,0.000278493000000,0.000051332000000 +0.000020332500000,0.000117308000000,0.000027049000000,0.000013555000000,0.000043839000000,0.000223184000000,0.000057258000000,0.000026258500000,0.000184468000000,0.000065554000000,0.000117308000000,0.000312468000000,0.000051332000000 +0.000020333000000,0.000116122000000,0.000044629000000,0.000013555000000,0.000028036500000,0.000184073000000,0.000057653000000,0.000042851500000,0.000218838000000,0.000063578000000,0.000116518000000,0.000282443000000,0.000058443000000 +0.000020332500000,0.000116122000000,0.000026654000000,0.000013028333333,0.000028036500000,0.000185258000000,0.000057653000000,0.000026061000000,0.000187233000000,0.000067925000000,0.000096764000000,0.000275726000000,0.000071480000000 +0.000020332500000,0.000105455000000,0.000026061500000,0.000013028333333,0.000027048500000,0.000186838000000,0.000091233000000,0.000025863500000,0.000181703000000,0.000062789000000,0.000096369000000,0.000278492000000,0.000051332000000 +0.000020332500000,0.000109801000000,0.000043838500000,0.000013555000000,0.000027246000000,0.000216072000000,0.000057258000000,0.000026258500000,0.000180912000000,0.000065950000000,0.000096764000000,0.000308912000000,0.000051728000000 +0.000020135500000,0.000096369000000,0.000027049000000,0.000013028666667,0.000028036500000,0.000182097000000,0.000057653000000,0.000026654000000,0.000180518000000,0.000064765000000,0.000094789000000,0.000274541000000,0.000056073000000 +0.000020333000000,0.000114937000000,0.000028234000000,0.000013028333333,0.000026456000000,0.000184073000000,0.000058838000000,0.000026258500000,0.000184862000000,0.000065555000000,0.000117703000000,0.000308912000000,0.000052517000000 +0.000028233500000,0.000096764000000,0.000026258500000,0.000013555000000,0.000027246500000,0.000184468000000,0.000058838000000,0.000026653500000,0.000184073000000,0.000065159000000,0.000117307000000,0.000278887000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026061000000,0.000013160000000,0.000036530000000,0.000216073000000,0.000058838000000,0.000026061000000,0.000187233000000,0.000063974000000,0.000116122000000,0.000346443000000,0.000051727000000 +0.000021320500000,0.000165505000000,0.000026851000000,0.000013028333333,0.000027049000000,0.000182098000000,0.000058838000000,0.000035740000000,0.000182098000000,0.000063184000000,0.000116517000000,0.000279677000000,0.000065159000000 +0.000020332500000,0.000114937000000,0.000029024000000,0.000012896666667,0.000028629000000,0.000181702000000,0.000057653000000,0.000026061000000,0.000183678000000,0.000064764000000,0.000130740000000,0.000310492000000,0.000051331000000 +0.000020333000000,0.000115332000000,0.000030604500000,0.000013423333333,0.000027048500000,0.000185258000000,0.000101110000000,0.000026061000000,0.000180517000000,0.000063974000000,0.000096764000000,0.000274541000000,0.000051332000000 +0.000020135000000,0.000116122000000,0.000026061000000,0.000013028333333,0.000027049000000,0.000232270000000,0.000057653000000,0.000025864000000,0.000219233000000,0.000063974000000,0.000117307000000,0.000314048000000,0.000053308000000 +0.000020135000000,0.000114937000000,0.000026061000000,0.000013423333333,0.000026851000000,0.000183282000000,0.000058838000000,0.000025271000000,0.000181702000000,0.000068320000000,0.000195530000000,0.000280863000000,0.000051727000000 +0.000021320000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000186443000000,0.000058838000000,0.000026851000000,0.000184072000000,0.000064369000000,0.000119283000000,0.000277703000000,0.000051727000000 +0.000020925000000,0.000117307000000,0.000026258500000,0.000031069666667,0.000027246000000,0.000184468000000,0.000057653000000,0.000025666000000,0.000180913000000,0.000063184000000,0.000096369000000,0.000278887000000,0.000051727000000 +0.000028234000000,0.000096764000000,0.000026851000000,0.000013028333333,0.000026851000000,0.000215677000000,0.000057653000000,0.000025863500000,0.000218048000000,0.000062789000000,0.000096764000000,0.000281258000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026851000000,0.000013028333333,0.000035345000000,0.000182097000000,0.000058839000000,0.000035938000000,0.000183678000000,0.000063184000000,0.000095974000000,0.000276912000000,0.000050937000000 +0.000020332500000,0.000094394000000,0.000027049000000,0.000012896666667,0.000028234000000,0.000183678000000,0.000057258000000,0.000026653500000,0.000184467000000,0.000063183000000,0.000134295000000,0.000276912000000,0.000052123000000 +0.000020135000000,0.000130344000000,0.000026061000000,0.000012896666667,0.000027048500000,0.000185258000000,0.000072271000000,0.000025468500000,0.000184467000000,0.000063184000000,0.000096369000000,0.000276912000000,0.000052517000000 +0.000020135000000,0.000115727000000,0.000026653500000,0.000013028333333,0.000027246500000,0.000183678000000,0.000058839000000,0.000026061000000,0.000259530000000,0.000069505000000,0.000094393000000,0.000279282000000,0.000050937000000 +0.000020332500000,0.000096369000000,0.000026851500000,0.000013028333333,0.000027048500000,0.000181307000000,0.000057653000000,0.000026259000000,0.000183678000000,0.000100715000000,0.000117307000000,0.000315628000000,0.000052913000000 +0.000020332500000,0.000115727000000,0.000028036500000,0.000013028333333,0.000027443500000,0.000182097000000,0.000058838000000,0.000025863500000,0.000180912000000,0.000062788000000,0.000096369000000,0.000281653000000,0.000072666000000 +0.000020332500000,0.000115332000000,0.000026258500000,0.000013028333333,0.000028036500000,0.000201456000000,0.000057258000000,0.000026258500000,0.000180517000000,0.000065554000000,0.000095974000000,0.000312072000000,0.000051332000000 +0.000020135000000,0.000201455000000,0.000025666000000,0.000013028333333,0.000027246000000,0.000183678000000,0.000057653000000,0.000026258500000,0.000214097000000,0.000062789000000,0.000095974000000,0.000275332000000,0.000050937000000 +0.000039691000000,0.000122838000000,0.000027048500000,0.000017769000000,0.000027444000000,0.000182097000000,0.000058443000000,0.000025863500000,0.000184862000000,0.000065555000000,0.000094789000000,0.000312862000000,0.000053307000000 +0.000020333000000,0.000114936000000,0.000029024000000,0.000012896666667,0.000027444000000,0.000182492000000,0.000077011000000,0.000025863500000,0.000186838000000,0.000065554000000,0.000096764000000,0.000280468000000,0.000050937000000 +0.000020332500000,0.000115727000000,0.000039888500000,0.000013555000000,0.000026258500000,0.000234245000000,0.000057653000000,0.000026653500000,0.000184073000000,0.000063579000000,0.000100715000000,0.000311282000000,0.000053307000000 +0.000020333000000,0.000133505000000,0.000025863500000,0.000018296000000,0.000027246500000,0.000181307000000,0.000057258000000,0.000025271000000,0.000184862000000,0.000083727000000,0.000115332000000,0.000300615000000,0.000051331000000 +0.000021320500000,0.000116122000000,0.000026456000000,0.000012896666667,0.000027246500000,0.000183678000000,0.000057257000000,0.000026258500000,0.000183677000000,0.000064369000000,0.000096369000000,0.000403332000000,0.000086492000000 +0.000020332500000,0.000097159000000,0.000026851000000,0.000013028333333,0.000028036500000,0.000182887000000,0.000057653000000,0.000025073500000,0.000184862000000,0.000063974000000,0.000157998000000,0.000280072000000,0.000053702000000 +0.000020332500000,0.000118098000000,0.000026456000000,0.000013028333333,0.000025863500000,0.000231480000000,0.000057653000000,0.000025271000000,0.000184072000000,0.000065159000000,0.000151282000000,0.000310097000000,0.000051727000000 +0.000020135000000,0.000097159000000,0.000026851500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000057258000000,0.000026653500000,0.000184863000000,0.000067134000000,0.000096369000000,0.000272567000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000026851000000,0.000012896666667,0.000028233500000,0.000188023000000,0.000057652000000,0.000027049000000,0.000188024000000,0.000062789000000,0.000117307000000,0.000314838000000,0.000052517000000 +0.000030406500000,0.000094394000000,0.000026851500000,0.000013555000000,0.000028629000000,0.000186443000000,0.000093998000000,0.000033369500000,0.000181702000000,0.000063974000000,0.000125208000000,0.000280468000000,0.000070690000000 +0.000020333000000,0.000096369000000,0.000043246000000,0.000013028333333,0.000026851000000,0.000217653000000,0.000058443000000,0.000025468500000,0.000217652000000,0.000064764000000,0.000096764000000,0.000313257000000,0.000052912000000 +0.000020333000000,0.000115332000000,0.000070900500000,0.000013028333333,0.000028036500000,0.000186443000000,0.000057653000000,0.000026653500000,0.000187628000000,0.000063183000000,0.000096369000000,0.000276122000000,0.000052122000000 +0.000021320000000,0.000096369000000,0.000028629000000,0.000013423333333,0.000026851000000,0.000181307000000,0.000057653000000,0.000027246000000,0.000184468000000,0.000065950000000,0.000117702000000,0.000277307000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000028036000000,0.000013423333333,0.000027246500000,0.000187628000000,0.000057653000000,0.000026258500000,0.000180122000000,0.000067135000000,0.000095974000000,0.000276517000000,0.000050937000000 +0.000020333000000,0.000118492000000,0.000027246000000,0.000012896666667,0.000028431500000,0.000253604000000,0.000058838000000,0.000026258500000,0.000219628000000,0.000065950000000,0.000095579000000,0.000274542000000,0.000054097000000 +0.000020135000000,0.000116122000000,0.000026061000000,0.000012896666667,0.000026851000000,0.000181702000000,0.000058838000000,0.000026851000000,0.000184468000000,0.000063184000000,0.000096369000000,0.000278492000000,0.000051727000000 +0.000020333000000,0.000116517000000,0.000036727500000,0.000013555000000,0.000028234000000,0.000181307000000,0.000057258000000,0.000028431500000,0.000183283000000,0.000064369000000,0.000094394000000,0.000282048000000,0.000087677000000 +0.000020332500000,0.000096369000000,0.000029024000000,0.000030279333333,0.000027246000000,0.000252418000000,0.000097949000000,0.000043048500000,0.000184073000000,0.000065554000000,0.000097159000000,0.000278492000000,0.000053307000000 +0.000020332500000,0.000096369000000,0.000030604500000,0.000013687000000,0.000027839000000,0.000188418000000,0.000058048000000,0.000028036500000,0.000216863000000,0.000064764000000,0.000117307000000,0.000277307000000,0.000052517000000 +0.000020332500000,0.000173406000000,0.000025666000000,0.000012896666667,0.000026851000000,0.000182492000000,0.000057653000000,0.000025073500000,0.000184863000000,0.000063974000000,0.000117307000000,0.000317603000000,0.000053702000000 +0.000020332500000,0.000116122000000,0.000025666000000,0.000012896666667,0.000027246000000,0.000185653000000,0.000057258000000,0.000025863500000,0.000186443000000,0.000068320000000,0.000119283000000,0.000277307000000,0.000061998000000 +0.000020332500000,0.000115332000000,0.000026851500000,0.000013028333333,0.000027641500000,0.000221603000000,0.000057653000000,0.000026653500000,0.000187233000000,0.000063974000000,0.000117307000000,0.000310887000000,0.000051332000000 +0.000020333000000,0.000097159000000,0.000026061000000,0.000013028666667,0.000028431000000,0.000187233000000,0.000060024000000,0.000026456000000,0.000218048000000,0.000067529000000,0.000117308000000,0.000279282000000,0.000051727000000 +0.000020135000000,0.000097159000000,0.000026653500000,0.000013555000000,0.000027443500000,0.000183678000000,0.000057653000000,0.000026061000000,0.000184468000000,0.000062789000000,0.000097159000000,0.000311283000000,0.000051332000000 +0.000020135000000,0.000096764000000,0.000061616500000,0.000013028666667,0.000027048500000,0.000183283000000,0.000057258000000,0.000025863500000,0.000186838000000,0.000097555000000,0.000095184000000,0.000278097000000,0.000054493000000 +0.000020135000000,0.000094394000000,0.000027246000000,0.000012896666667,0.000026259000000,0.000287974000000,0.000126394000000,0.000026456000000,0.000184467000000,0.000082541000000,0.000098740000000,0.000381998000000,0.000052518000000 +0.000020333000000,0.000115332000000,0.000026258500000,0.000024617000000,0.000026061000000,0.000246097000000,0.000058443000000,0.000026061000000,0.000230690000000,0.000062394000000,0.000094789000000,0.000278097000000,0.000052912000000 +0.000020530500000,0.000094789000000,0.000026851500000,0.000014608666667,0.000027048500000,0.000181308000000,0.000057258000000,0.000026653500000,0.000187628000000,0.000063184000000,0.000096369000000,0.000309307000000,0.000051332000000 +0.000058456000000,0.000116122000000,0.000026851000000,0.000013028333333,0.000026456000000,0.000217258000000,0.000057653000000,0.000025073500000,0.000184468000000,0.000063579000000,0.000095974000000,0.000276912000000,0.000054097000000 +0.000038110500000,0.000126394000000,0.000028036500000,0.000013028333333,0.000027838500000,0.000182098000000,0.000057653000000,0.000025863500000,0.000186838000000,0.000063974000000,0.000117702000000,0.000346443000000,0.000088863000000 +0.000021517500000,0.000115727000000,0.000026259000000,0.000012896666667,0.000027838500000,0.000182097000000,0.000057257000000,0.000025468500000,0.000217653000000,0.000063974000000,0.000115332000000,0.000275331000000,0.000053702000000 +0.000020135500000,0.000096369000000,0.000025863500000,0.000012896666667,0.000026851000000,0.000181307000000,0.000057258000000,0.000025271000000,0.000184073000000,0.000065950000000,0.000117703000000,0.000346838000000,0.000052517000000 +0.000020135000000,0.000095974000000,0.000027048500000,0.000012896666667,0.000034752500000,0.000258344000000,0.000058443000000,0.000025468500000,0.000183677000000,0.000096764000000,0.000117308000000,0.000280072000000,0.000052517000000 +0.000020332500000,0.000096764000000,0.000029024000000,0.000012896666667,0.000027049000000,0.000182097000000,0.000057258000000,0.000026061500000,0.000187628000000,0.000064764000000,0.000117307000000,0.000295085000000,0.000053308000000 +0.000020332500000,0.000129554000000,0.000030604500000,0.000013028333333,0.000027246000000,0.000182888000000,0.000057653000000,0.000026653500000,0.000265455000000,0.000063579000000,0.000117703000000,0.000276122000000,0.000051332000000 +0.000030012000000,0.000096369000000,0.000025666000000,0.000020008000000,0.000027641500000,0.000188814000000,0.000058048000000,0.000026061000000,0.000229110000000,0.000063579000000,0.000117703000000,0.000278493000000,0.000052912000000 +0.000020135000000,0.000118098000000,0.000026061000000,0.000013028333333,0.000026258500000,0.000217652000000,0.000058048000000,0.000025073500000,0.000186048000000,0.000062394000000,0.000114146000000,0.000276517000000,0.000051332000000 +0.000020135000000,0.000115332000000,0.000026654000000,0.000013028333333,0.000026654000000,0.000183282000000,0.000078196000000,0.000026653500000,0.000232665000000,0.000063974000000,0.000096369000000,0.000272962000000,0.000052122000000 +0.000020135000000,0.000114936000000,0.000026653500000,0.000012896666667,0.000026851500000,0.000181702000000,0.000071875000000,0.000025666000000,0.000180517000000,0.000067134000000,0.000096369000000,0.000279282000000,0.000054888000000 +0.000020135000000,0.000195134000000,0.000036727500000,0.000013028333333,0.000027048500000,0.000184073000000,0.000059233000000,0.000025863500000,0.000186048000000,0.000082937000000,0.000112171000000,0.000277307000000,0.000052122000000 +0.000020332500000,0.000160764000000,0.000026851500000,0.000012896666667,0.000027246000000,0.000218838000000,0.000092814000000,0.000025666000000,0.000188023000000,0.000063184000000,0.000116912000000,0.000277703000000,0.000053307000000 +0.000020135500000,0.000109011000000,0.000026851500000,0.000013028333333,0.000026653500000,0.000182492000000,0.000057653000000,0.000026654000000,0.000186443000000,0.000063578000000,0.000131135000000,0.000278493000000,0.000051727000000 +0.000021320500000,0.000148517000000,0.000026061000000,0.000013028666667,0.000027246500000,0.000184468000000,0.000057258000000,0.000043641000000,0.000184468000000,0.000067134000000,0.000117307000000,0.000313258000000,0.000054887000000 +0.000020135000000,0.000096369000000,0.000027048500000,0.000012896666667,0.000027641500000,0.000182097000000,0.000057653000000,0.000024678500000,0.000180517000000,0.000065554000000,0.000095183000000,0.000278097000000,0.000061999000000 +0.000020135000000,0.000095974000000,0.000026851000000,0.000013028333333,0.000027641500000,0.000231084000000,0.000058049000000,0.000026851000000,0.000182888000000,0.000064764000000,0.000096369000000,0.000282442000000,0.000052122000000 +0.000020135000000,0.000105060000000,0.000028036500000,0.000032123000000,0.000026456000000,0.000183677000000,0.000057653000000,0.000026258500000,0.000198689000000,0.000062789000000,0.000096764000000,0.000272961000000,0.000052123000000 +0.000021320500000,0.000096369000000,0.000026456000000,0.000029489333333,0.000026456500000,0.000184862000000,0.000057653000000,0.000027048500000,0.000180913000000,0.000065555000000,0.000096764000000,0.000361455000000,0.000053307000000 +0.000020135500000,0.000116123000000,0.000040876000000,0.000018954333333,0.000026653500000,0.000201850000000,0.000057258000000,0.000025666000000,0.000184863000000,0.000063579000000,0.000096369000000,0.000276517000000,0.000052912000000 +0.000020332500000,0.000094789000000,0.000027246000000,0.000018427666667,0.000034357500000,0.000182887000000,0.000077011000000,0.000027048500000,0.000214888000000,0.000067135000000,0.000105061000000,0.000310097000000,0.000053307000000 +0.000020135000000,0.000096369000000,0.000028826500000,0.000013423333333,0.000028036500000,0.000181307000000,0.000058838000000,0.000026061000000,0.000183678000000,0.000063579000000,0.000094789000000,0.000277702000000,0.000054888000000 +0.000020135500000,0.000096369000000,0.000030604500000,0.000013423666667,0.000028431000000,0.000187628000000,0.000057258000000,0.000025863500000,0.000180517000000,0.000067135000000,0.000117307000000,0.000354344000000,0.000053307000000 +0.000020333000000,0.000114936000000,0.000025863500000,0.000013028333333,0.000026456000000,0.000218443000000,0.000057258000000,0.000026061000000,0.000184073000000,0.000063184000000,0.000115727000000,0.000275332000000,0.000050937000000 +0.000021320500000,0.000096369000000,0.000026061000000,0.000013160000000,0.000026851000000,0.000184863000000,0.000058443000000,0.000026456000000,0.000222394000000,0.000065159000000,0.000095974000000,0.000326689000000,0.000051332000000 +0.000020332500000,0.000100715000000,0.000026851000000,0.000013028333333,0.000028036500000,0.000184073000000,0.000057653000000,0.000025666000000,0.000186838000000,0.000063184000000,0.000095974000000,0.000278887000000,0.000051332000000 +0.000037122500000,0.000096369000000,0.000060826500000,0.000013028333333,0.000026851000000,0.000184073000000,0.000057653000000,0.000026456500000,0.000180912000000,0.000096764000000,0.000118097000000,0.000359875000000,0.000072270000000 +0.000021320500000,0.000115332000000,0.000026851500000,0.000013028333333,0.000028036500000,0.000218838000000,0.000058839000000,0.000026456000000,0.000185258000000,0.000063183000000,0.000094789000000,0.000278888000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000027048500000,0.000013028333333,0.000046801500000,0.000182492000000,0.000077406000000,0.000026851000000,0.000261505000000,0.000065554000000,0.000116912000000,0.000311282000000,0.000051332000000 +0.000020333000000,0.000118097000000,0.000026851500000,0.000013028333333,0.000026456000000,0.000183678000000,0.000058838000000,0.000029419000000,0.000184468000000,0.000062789000000,0.000133900000000,0.000278097000000,0.000051727000000 +0.000020333000000,0.000185258000000,0.000026258500000,0.000013028333333,0.000027444000000,0.000181307000000,0.000060813000000,0.000026654000000,0.000184468000000,0.000062789000000,0.000096764000000,0.000425060000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000026851000000,0.000013818333333,0.000027443500000,0.000218838000000,0.000058444000000,0.000025863500000,0.000184072000000,0.000062789000000,0.000114542000000,0.000279283000000,0.000050937000000 +0.000020332500000,0.000096369000000,0.000026653500000,0.000013555333333,0.000037715500000,0.000182492000000,0.000060814000000,0.000026061000000,0.000197109000000,0.000063973000000,0.000096368000000,0.000308122000000,0.000052122000000 +0.000021320500000,0.000115332000000,0.000027838500000,0.000024221666667,0.000033567000000,0.000185652000000,0.000058838000000,0.000025863500000,0.000180912000000,0.000082542000000,0.000116912000000,0.000280863000000,0.000052913000000 +0.000021320000000,0.000096369000000,0.000026456500000,0.000013423333333,0.000028036500000,0.000184072000000,0.000057653000000,0.000026258500000,0.000180122000000,0.000064764000000,0.000097159000000,0.000323135000000,0.000051727000000 +0.000029616500000,0.000130344000000,0.000026258500000,0.000013028333333,0.000026258500000,0.000250838000000,0.000058838000000,0.000025666000000,0.000180122000000,0.000063184000000,0.000117307000000,0.000274542000000,0.000051727000000 +0.000021123000000,0.000096764000000,0.000027246000000,0.000013160000000,0.000081962000000,0.000184467000000,0.000092814000000,0.000026258500000,0.000184467000000,0.000070690000000,0.000131134000000,0.000310887000000,0.000052912000000 +0.000020332500000,0.000095974000000,0.000029024000000,0.000013028333333,0.000046209000000,0.000182097000000,0.000058443000000,0.000026456000000,0.000186838000000,0.000063974000000,0.000107826000000,0.000276912000000,0.000052912000000 +0.000020332500000,0.000116122000000,0.000030802000000,0.000013555333333,0.000035147500000,0.000182098000000,0.000058838000000,0.000026061000000,0.000184072000000,0.000065554000000,0.000095184000000,0.000346838000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000025863500000,0.000013160000000,0.000027246000000,0.000281653000000,0.000058838000000,0.000043049000000,0.000205801000000,0.000067530000000,0.000117702000000,0.000277307000000,0.000051332000000 +0.000020332500000,0.000149702000000,0.000025666000000,0.000013160000000,0.000026653500000,0.000184468000000,0.000058838000000,0.000025666000000,0.000184072000000,0.000065555000000,0.000117702000000,0.000308122000000,0.000100320000000 +0.000020332500000,0.000094788000000,0.000026851500000,0.000013028333333,0.000037913000000,0.000186443000000,0.000058444000000,0.000025863500000,0.000185258000000,0.000063184000000,0.000096369000000,0.000279678000000,0.000052912000000 +0.000020135000000,0.000115727000000,0.000085320500000,0.000013555333333,0.000027444000000,0.000215678000000,0.000058048000000,0.000026061500000,0.000186048000000,0.000065554000000,0.000095184000000,0.000278493000000,0.000052122000000 +0.000021320500000,0.000096369000000,0.000028431500000,0.000013160000000,0.000027443500000,0.000182097000000,0.000057653000000,0.000025468500000,0.000219233000000,0.000064765000000,0.000095974000000,0.000275331000000,0.000053308000000 +0.000020333000000,0.000096764000000,0.000027048500000,0.000013818666667,0.000027839000000,0.000183678000000,0.000091233000000,0.000025468500000,0.000187233000000,0.000063974000000,0.000114937000000,0.000277308000000,0.000053702000000 +0.000027048500000,0.000114937000000,0.000026851000000,0.000013028333333,0.000027641500000,0.000186048000000,0.000059233000000,0.000025271000000,0.000182097000000,0.000062789000000,0.000117307000000,0.000275332000000,0.000051727000000 +0.000020333000000,0.000116122000000,0.000034950000000,0.000013028333333,0.000026456000000,0.000251233000000,0.000058838000000,0.000043246000000,0.000186048000000,0.000063183000000,0.000096369000000,0.000278492000000,0.000052122000000 +0.000020135500000,0.000096369000000,0.000026653500000,0.000013028333333,0.000027443500000,0.000181307000000,0.000060023000000,0.000049369500000,0.000218048000000,0.000085308000000,0.000117702000000,0.000357900000000,0.000053702000000 +0.000020332500000,0.000094393000000,0.000027048500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000057653000000,0.000026258500000,0.000184863000000,0.000063184000000,0.000096764000000,0.000279282000000,0.000051727000000 +0.000020530000000,0.000095974000000,0.000027838500000,0.000013028333333,0.000027444000000,0.000184468000000,0.000057258000000,0.000026456000000,0.000181307000000,0.000063184000000,0.000115727000000,0.000273357000000,0.000052517000000 +0.000021518000000,0.000094394000000,0.000026456000000,0.000013028333333,0.000033369500000,0.000217258000000,0.000057653000000,0.000026456000000,0.000184467000000,0.000062789000000,0.000098739000000,0.000288764000000,0.000052122000000 +0.000020135000000,0.000145357000000,0.000026456000000,0.000013028333333,0.000027246500000,0.000181702000000,0.000057258000000,0.000026258500000,0.000429406000000,0.000063974000000,0.000095974000000,0.000278887000000,0.000052913000000 +0.000021320500000,0.000116518000000,0.000027049000000,0.000013028333333,0.000027048500000,0.000181307000000,0.000092418000000,0.000026258500000,0.000217653000000,0.000063578000000,0.000117702000000,0.000359875000000,0.000082937000000 +0.000020333000000,0.000098345000000,0.000028826500000,0.000013028666667,0.000027838500000,0.000183678000000,0.000057258000000,0.000026258500000,0.000183282000000,0.000067925000000,0.000096764000000,0.000281258000000,0.000052122000000 +0.000036925000000,0.000114937000000,0.000047394500000,0.000013555333333,0.000028036500000,0.000217653000000,0.000057653000000,0.000025666000000,0.000247282000000,0.000084518000000,0.000096369000000,0.000348813000000,0.000052122000000 +0.000020333000000,0.000096764000000,0.000025863500000,0.000013555000000,0.000027049000000,0.000184072000000,0.000057653000000,0.000036135000000,0.000184073000000,0.000100714000000,0.000096764000000,0.000278492000000,0.000051727000000 +0.000020333000000,0.000129950000000,0.000025863500000,0.000013160000000,0.000026258500000,0.000185653000000,0.000057653000000,0.000025863500000,0.000184073000000,0.000062788000000,0.000117703000000,0.000367381000000,0.000052122000000 +0.000020332500000,0.000113752000000,0.000026851000000,0.000013028333333,0.000043444000000,0.000184863000000,0.000058838000000,0.000025863500000,0.000299036000000,0.000063184000000,0.000115332000000,0.000311678000000,0.000051332000000 +0.000020135500000,0.000130344000000,0.000025863500000,0.000013555000000,0.000028036000000,0.000199085000000,0.000057653000000,0.000026258500000,0.000184073000000,0.000066344000000,0.000096369000000,0.000312863000000,0.000089258000000 +0.000021517500000,0.000095974000000,0.000027048500000,0.000013160000000,0.000027641000000,0.000183282000000,0.000057653000000,0.000025863500000,0.000186838000000,0.000065950000000,0.000105455000000,0.000276517000000,0.000051727000000 +0.000020135000000,0.000116912000000,0.000026851000000,0.000013423333333,0.000026259000000,0.000183678000000,0.000106640000000,0.000026851000000,0.000186048000000,0.000063184000000,0.000114937000000,0.000311283000000,0.000053308000000 +0.000020333000000,0.000116122000000,0.000026851000000,0.000024222000000,0.000027246000000,0.000183282000000,0.000057653000000,0.000026653500000,0.000269011000000,0.000081356000000,0.000110986000000,0.000280073000000,0.000052122000000 +0.000020332500000,0.000116913000000,0.000043246000000,0.000013160000000,0.000027444000000,0.000195530000000,0.000057653000000,0.000026456500000,0.000181702000000,0.000065160000000,0.000119282000000,0.000562541000000,0.000054493000000 +0.000029419000000,0.000095974000000,0.000026654000000,0.000013028333333,0.000027641000000,0.000182097000000,0.000057653000000,0.000026258500000,0.000184863000000,0.000065159000000,0.000117702000000,0.000280073000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000027048500000,0.000013028333333,0.000027443500000,0.000181307000000,0.000057257000000,0.000026258500000,0.000187233000000,0.000063579000000,0.000096369000000,0.000281258000000,0.000051332000000 +0.000021123000000,0.000115727000000,0.000028036500000,0.000013028333333,0.000044036500000,0.000181702000000,0.000057258000000,0.000026258500000,0.000200270000000,0.000066739000000,0.000117308000000,0.000277307000000,0.000083728000000 +0.000020332500000,0.000114542000000,0.000026258500000,0.000013028333333,0.000028036500000,0.000185653000000,0.000058443000000,0.000026851000000,0.000184073000000,0.000066344000000,0.000148913000000,0.000275727000000,0.000052122000000 +0.000020333000000,0.000116517000000,0.000026456000000,0.000013028333333,0.000025863500000,0.000181307000000,0.000060023000000,0.000026654000000,0.000184863000000,0.000063974000000,0.000117307000000,0.000279677000000,0.000052912000000 +0.000020135000000,0.000117307000000,0.000026851000000,0.000013028333333,0.000026653500000,0.000181307000000,0.000073455000000,0.000025666000000,0.000252418000000,0.000105851000000,0.000118887000000,0.000281258000000,0.000052517000000 +0.000020332500000,0.000096764000000,0.000029024000000,0.000013028333333,0.000027246500000,0.000201455000000,0.000057653000000,0.000028431500000,0.000186838000000,0.000062789000000,0.000117703000000,0.000279283000000,0.000050937000000 +0.000020332500000,0.000096764000000,0.000038900500000,0.000013028333333,0.000026456000000,0.000183282000000,0.000057653000000,0.000027049000000,0.000184072000000,0.000065554000000,0.000117703000000,0.000312863000000,0.000052122000000 +0.000020530000000,0.000095974000000,0.000025863500000,0.000017637333333,0.000026851000000,0.000184863000000,0.000058838000000,0.000025271000000,0.000184073000000,0.000064369000000,0.000096369000000,0.000275332000000,0.000101900000000 +0.000020332500000,0.000096764000000,0.000026259000000,0.000013028333333,0.000027246000000,0.000184467000000,0.000060023000000,0.000043443500000,0.000216863000000,0.000065949000000,0.000095973000000,0.000325504000000,0.000050936000000 +0.000020333000000,0.000114542000000,0.000026851000000,0.000014345333333,0.000044234000000,0.000255974000000,0.000058443000000,0.000026456000000,0.000181702000000,0.000063579000000,0.000115332000000,0.000279677000000,0.000052122000000 +0.000020135500000,0.000115727000000,0.000026456000000,0.000013028333333,0.000027246000000,0.000299430000000,0.000060023000000,0.000025271000000,0.000180122000000,0.000062788000000,0.000094789000000,0.000311677000000,0.000051332000000 +0.000037122500000,0.000096369000000,0.000026851500000,0.000013423333333,0.000027443500000,0.000183678000000,0.000057653000000,0.000027641000000,0.000186838000000,0.000062789000000,0.000117308000000,0.000280863000000,0.000050937000000 +0.000020135000000,0.000114937000000,0.000027049000000,0.000013423666667,0.000026654000000,0.000233851000000,0.000146147000000,0.000025468500000,0.000268221000000,0.000065554000000,0.000131135000000,0.000308912000000,0.000058838000000 +0.000020135000000,0.000096369000000,0.000026851500000,0.000013028333333,0.000027444000000,0.000181702000000,0.000061208000000,0.000025073500000,0.000185653000000,0.000065950000000,0.000117702000000,0.000276517000000,0.000052123000000 +0.000020332500000,0.000116122000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000188023000000,0.000057257000000,0.000024876000000,0.000181307000000,0.000067134000000,0.000095973000000,0.000306936000000,0.000050937000000 +0.000020332500000,0.000115332000000,0.000026851000000,0.000013423333333,0.000027641500000,0.000181702000000,0.000057653000000,0.000026258500000,0.000180122000000,0.000068319000000,0.000117307000000,0.000277307000000,0.000051727000000 +0.000020135500000,0.000115727000000,0.000027049000000,0.000013160000000,0.000027049000000,0.000259134000000,0.000057653000000,0.000026061000000,0.000195135000000,0.000066345000000,0.000096369000000,0.000275331000000,0.000056073000000 +0.000020333000000,0.000116122000000,0.000028036500000,0.000013028333333,0.000026456000000,0.000184073000000,0.000058838000000,0.000050159500000,0.000184073000000,0.000065949000000,0.000116517000000,0.000278492000000,0.000052122000000 +0.000020135000000,0.000097159000000,0.000026456500000,0.000013423333333,0.000035937500000,0.000188023000000,0.000058838000000,0.000027641500000,0.000181702000000,0.000117702000000,0.000146147000000,0.000274937000000,0.000051332000000 +0.000020332500000,0.000118492000000,0.000026258500000,0.000013160000000,0.000026258500000,0.000182097000000,0.000126788000000,0.000025073500000,0.000253603000000,0.000063579000000,0.000096369000000,0.000278097000000,0.000051332000000 +0.000021123000000,0.000096369000000,0.000026851000000,0.000013160000000,0.000026851500000,0.000234641000000,0.000058838000000,0.000026258500000,0.000183678000000,0.000068320000000,0.000096369000000,0.000352368000000,0.000087678000000 +0.000020333000000,0.000115332000000,0.000038900500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000058048000000,0.000026258500000,0.000186838000000,0.000065950000000,0.000117702000000,0.000278493000000,0.000051727000000 +0.000020332500000,0.000108221000000,0.000030604000000,0.000013555000000,0.000027839000000,0.000187628000000,0.000057258000000,0.000027839000000,0.000180517000000,0.000062789000000,0.000119283000000,0.000274542000000,0.000050937000000 +0.000020135000000,0.000114146000000,0.000026259000000,0.000013028333333,0.000027246000000,0.000181307000000,0.000057258000000,0.000026258500000,0.000252813000000,0.000064369000000,0.000116912000000,0.000275332000000,0.000052913000000 +0.000020332500000,0.000094394000000,0.000026258500000,0.000013423333333,0.000027246500000,0.000227529000000,0.000058838000000,0.000025666000000,0.000181702000000,0.000064369000000,0.000117307000000,0.000274146000000,0.000051727000000 +0.000021123000000,0.000116122000000,0.000027048500000,0.000024353333333,0.000026456000000,0.000233851000000,0.000058838000000,0.000025863500000,0.000184468000000,0.000090443000000,0.000111776000000,0.000278492000000,0.000051727000000 +0.000020333000000,0.000116122000000,0.000026258500000,0.000013028666667,0.000027246500000,0.000184073000000,0.000057258000000,0.000025468500000,0.000180912000000,0.000098344000000,0.000117307000000,0.000277702000000,0.000051332000000 +0.000029024000000,0.000260715000000,0.000027048500000,0.000013028666667,0.000026456000000,0.000218443000000,0.000057258000000,0.000028629000000,0.000249652000000,0.000064369000000,0.000118493000000,0.000291529000000,0.000052122000000 +0.000020332500000,0.000152863000000,0.000027048500000,0.000013028333333,0.000027839000000,0.000182098000000,0.000058838000000,0.000026456000000,0.000186443000000,0.000063184000000,0.000096764000000,0.000278887000000,0.000050936000000 +0.000020332500000,0.000116912000000,0.000044036000000,0.000013028333333,0.000027443500000,0.000181307000000,0.000057653000000,0.000026653500000,0.000186838000000,0.000063184000000,0.000096369000000,0.000312467000000,0.000052122000000 +0.000020135000000,0.000095974000000,0.000026258500000,0.000013028333333,0.000027049000000,0.000185258000000,0.000058838000000,0.000025468500000,0.000255579000000,0.000064369000000,0.000117307000000,0.000272171000000,0.000052517000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000396616000000,0.000058838000000,0.000025468500000,0.000187233000000,0.000063579000000,0.000117703000000,0.000313652000000,0.000050937000000 +0.000020332500000,0.000115332000000,0.000027246000000,0.000012896666667,0.000027444000000,0.000251233000000,0.000057258000000,0.000044036500000,0.000183677000000,0.000080172000000,0.000120073000000,0.000277307000000,0.000053307000000 +0.000020332500000,0.000115727000000,0.000028036000000,0.000012896666667,0.000027048500000,0.000182492000000,0.000058838000000,0.000025863500000,0.000185258000000,0.000063184000000,0.000097159000000,0.000323530000000,0.000089258000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000034357500000,0.000187233000000,0.000057653000000,0.000025073500000,0.000249652000000,0.000065554000000,0.000117703000000,0.000277703000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000026061000000,0.000013028333333,0.000026456000000,0.000182887000000,0.000101900000000,0.000025073500000,0.000180517000000,0.000064369000000,0.000096764000000,0.000308122000000,0.000051727000000 +0.000020135000000,0.000109801000000,0.000026851000000,0.000013423333333,0.000027049000000,0.000182888000000,0.000058838000000,0.000025666000000,0.000184467000000,0.000063184000000,0.000117307000000,0.000279678000000,0.000053307000000 +0.000020332500000,0.000100714000000,0.000045814000000,0.000013160000000,0.000026258500000,0.000186048000000,0.000057257000000,0.000026061000000,0.000184467000000,0.000063183000000,0.000095974000000,0.000303776000000,0.000051332000000 +0.000020332500000,0.000118098000000,0.000030604500000,0.000013555333333,0.000026258500000,0.000181703000000,0.000057257000000,0.000026851000000,0.000233850000000,0.000067134000000,0.000116122000000,0.000282838000000,0.000052912000000 +0.000020332500000,0.000114542000000,0.000026653500000,0.000012896666667,0.000027839000000,0.000181702000000,0.000057653000000,0.000025073500000,0.000186443000000,0.000062788000000,0.000095974000000,0.000276122000000,0.000051728000000 +0.000021122500000,0.000115727000000,0.000026259000000,0.000012896666667,0.000027048500000,0.000183678000000,0.000057653000000,0.000035345000000,0.000183678000000,0.000063579000000,0.000116912000000,0.000327084000000,0.000124418000000 +0.000020135000000,0.000151283000000,0.000027048500000,0.000013028333333,0.000037320500000,0.000219628000000,0.000057653000000,0.000026061000000,0.000185653000000,0.000065554000000,0.000153258000000,0.000325900000000,0.000052517000000 +0.000020332500000,0.000096369000000,0.000026061000000,0.000012896666667,0.000027443500000,0.000182097000000,0.000058443000000,0.000026061000000,0.000540813000000,0.000065159000000,0.000119677000000,0.000272962000000,0.000051332000000 +0.000020333000000,0.000116517000000,0.000027048500000,0.000012896666667,0.000026851000000,0.000185258000000,0.000057653000000,0.000028431500000,0.000198690000000,0.000065949000000,0.000096369000000,0.000350789000000,0.000050937000000 +0.000020135000000,0.000095974000000,0.000027049000000,0.000019612666667,0.000027246500000,0.000184072000000,0.000057653000000,0.000026653500000,0.000252023000000,0.000067529000000,0.000116122000000,0.000278097000000,0.000053703000000 +0.000044233500000,0.000116912000000,0.000026851500000,0.000013423333333,0.000027641000000,0.000253998000000,0.000060418000000,0.000025073500000,0.000181307000000,0.000066344000000,0.000094788000000,0.000360270000000,0.000050937000000 +0.000020332500000,0.000149307000000,0.000026061500000,0.000013028333333,0.000027048500000,0.000181307000000,0.000058838000000,0.000026259000000,0.000183678000000,0.000115332000000,0.000117702000000,0.000277307000000,0.000053308000000 +0.000020135000000,0.000096369000000,0.000027048500000,0.000012896666667,0.000026851000000,0.000181702000000,0.000057653000000,0.000028234000000,0.000184863000000,0.000063183000000,0.000094789000000,0.000347233000000,0.000051332000000 +0.000021123000000,0.000096369000000,0.000026851500000,0.000013555000000,0.000027444000000,0.000181307000000,0.000057653000000,0.000026456000000,0.000184468000000,0.000067135000000,0.000096764000000,0.000279282000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000028036000000,0.000013423666667,0.000043246500000,0.000217653000000,0.000078591000000,0.000025666000000,0.000183283000000,0.000062789000000,0.000094393000000,0.000357109000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026456000000,0.000013028666667,0.000028234000000,0.000182888000000,0.000072665000000,0.000026851000000,0.000186838000000,0.000062394000000,0.000115332000000,0.000274936000000,0.000054887000000 +0.000020332500000,0.000149702000000,0.000025666000000,0.000013028333333,0.000026851000000,0.000182097000000,0.000058443000000,0.000026456000000,0.000184863000000,0.000067134000000,0.000117307000000,0.000345653000000,0.000052122000000 +0.000020333000000,0.000117702000000,0.000026851500000,0.000013423333333,0.000027444000000,0.000182492000000,0.000057653000000,0.000026654000000,0.000187628000000,0.000063184000000,0.000095974000000,0.000278097000000,0.000052122000000 +0.000020333000000,0.000116517000000,0.000036332500000,0.000020139333333,0.000026258500000,0.000224764000000,0.000057653000000,0.000026258500000,0.000183678000000,0.000081357000000,0.000115727000000,0.000341702000000,0.000053703000000 +0.000027048500000,0.000095974000000,0.000030604000000,0.000013687000000,0.000027246500000,0.000183282000000,0.000058048000000,0.000025666000000,0.000184073000000,0.000064764000000,0.000096369000000,0.000275727000000,0.000052912000000 +0.000020135000000,0.000095974000000,0.000026456000000,0.000013028333333,0.000028036000000,0.000183678000000,0.000057653000000,0.000025666000000,0.000220813000000,0.000063184000000,0.000094789000000,0.000345258000000,0.000053308000000 +0.000020135000000,0.000114542000000,0.000026456000000,0.000013028333333,0.000027048500000,0.000186048000000,0.000057653000000,0.000028431500000,0.000183677000000,0.000069900000000,0.000117307000000,0.000277702000000,0.000053308000000 +0.000020333000000,0.000096764000000,0.000027444000000,0.000013160000000,0.000044036500000,0.000232271000000,0.000057653000000,0.000031987000000,0.000187233000000,0.000065554000000,0.000117703000000,0.000335381000000,0.000051332000000 +0.000020333000000,0.000118097000000,0.000026061000000,0.000013028333333,0.000027443500000,0.000183677000000,0.000129159000000,0.000026258500000,0.000187628000000,0.000063974000000,0.000138641000000,0.000274542000000,0.000051332000000 +0.000020135500000,0.000117307000000,0.000026851000000,0.000013555333333,0.000027048500000,0.000183283000000,0.000058048000000,0.000026259000000,0.000219233000000,0.000063183000000,0.000096764000000,0.000299036000000,0.000051727000000 +0.000020332500000,0.000124023000000,0.000054505500000,0.000013028333333,0.000028431500000,0.000184073000000,0.000057653000000,0.000025863500000,0.000186838000000,0.000101505000000,0.000117702000000,0.000274937000000,0.000054098000000 +0.000020333000000,0.000130344000000,0.000026851000000,0.000013160000000,0.000027839000000,0.000198689000000,0.000058838000000,0.000028234000000,0.000184468000000,0.000065949000000,0.000095974000000,0.000294689000000,0.000053703000000 +0.000020135500000,0.000096369000000,0.000026061000000,0.000013291666667,0.000026061000000,0.000181702000000,0.000058048000000,0.000027641000000,0.000184072000000,0.000063579000000,0.000117308000000,0.000322739000000,0.000053308000000 +0.000030604500000,0.000116912000000,0.000026851000000,0.000014740333333,0.000027641500000,0.000181702000000,0.000057258000000,0.000026258500000,0.000219628000000,0.000063184000000,0.000115727000000,0.000328271000000,0.000051332000000 +0.000020333000000,0.000096764000000,0.000026851500000,0.000013028333333,0.000027444000000,0.000182097000000,0.000057258000000,0.000026456000000,0.000186443000000,0.000063579000000,0.000117702000000,0.000279283000000,0.000054097000000 +0.000020135500000,0.000096369000000,0.000027839000000,0.000013160000000,0.000046011500000,0.000194739000000,0.000057257000000,0.000048382000000,0.000184863000000,0.000065554000000,0.000094394000000,0.000312467000000,0.000053307000000 +0.000020135500000,0.000095974000000,0.000026258500000,0.000013160000000,0.000026258500000,0.000181703000000,0.000057257000000,0.000025666000000,0.000186443000000,0.000063974000000,0.000118097000000,0.000278887000000,0.000053702000000 +0.000020135000000,0.000115727000000,0.000025863500000,0.000013028333333,0.000027443500000,0.000181703000000,0.000057653000000,0.000026654000000,0.000231875000000,0.000097159000000,0.000096764000000,0.000309307000000,0.000053702000000 +0.000020135000000,0.000105456000000,0.000026851000000,0.000013028666667,0.000027444000000,0.000181703000000,0.000059233000000,0.000026456000000,0.000184467000000,0.000065950000000,0.000096369000000,0.000278098000000,0.000052912000000 +0.000020332500000,0.000096369000000,0.000028826500000,0.000013160333333,0.000026851500000,0.000245702000000,0.000057653000000,0.000024876000000,0.000186838000000,0.000063184000000,0.000117307000000,0.000313653000000,0.000053307000000 +0.000020135000000,0.000118098000000,0.000030406500000,0.000013028666667,0.000028036500000,0.000186838000000,0.000057258000000,0.000026851500000,0.000185653000000,0.000065949000000,0.000096369000000,0.000280072000000,0.000052122000000 +0.000020332500000,0.000117703000000,0.000026258500000,0.000013028333333,0.000027838500000,0.000184072000000,0.000058048000000,0.000026061000000,0.000224764000000,0.000067135000000,0.000117308000000,0.000299431000000,0.000052517000000 +0.000020135000000,0.000096764000000,0.000025863500000,0.000024221666667,0.000035542500000,0.000217653000000,0.000057258000000,0.000025468500000,0.000183282000000,0.000063974000000,0.000096369000000,0.000278492000000,0.000051332000000 +0.000035345000000,0.000114937000000,0.000026851000000,0.000013028333333,0.000034752500000,0.000181703000000,0.000058048000000,0.000043838500000,0.000181307000000,0.000064369000000,0.000095974000000,0.000274146000000,0.000052517000000 +0.000020332500000,0.000117702000000,0.000026258500000,0.000013028333333,0.000027641500000,0.000181307000000,0.000057257000000,0.000025468500000,0.000181702000000,0.000082937000000,0.000105456000000,0.000314442000000,0.000056072000000 +0.000020333000000,0.000095579000000,0.000027049000000,0.000013028333333,0.000027444000000,0.000221603000000,0.000058838000000,0.000026456000000,0.000197109000000,0.000169061000000,0.000096369000000,0.000276517000000,0.000052122000000 +0.000020332500000,0.000115332000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000218443000000,0.000058838000000,0.000025468500000,0.000185653000000,0.000103875000000,0.000096764000000,0.000277702000000,0.000053307000000 +0.000020332500000,0.000112171000000,0.000027048500000,0.000013028333333,0.000027048500000,0.000181702000000,0.000057653000000,0.000026061000000,0.000184072000000,0.000080171000000,0.000096369000000,0.000274541000000,0.000050937000000 +0.000021320500000,0.000099134000000,0.000026061000000,0.000013028333333,0.000026258500000,0.000184072000000,0.000057653000000,0.000028431500000,0.000181702000000,0.000063579000000,0.000117702000000,0.000273357000000,0.000054492000000 +0.000020333000000,0.000115727000000,0.000027048500000,0.000018296000000,0.000027443500000,0.000182493000000,0.000057258000000,0.000027246500000,0.000208171000000,0.000066740000000,0.000118888000000,0.000280863000000,0.000188024000000 +0.000020333000000,0.000095974000000,0.000026851500000,0.000013028333333,0.000026456000000,0.000229110000000,0.000057653000000,0.000025468500000,0.000181307000000,0.000063579000000,0.000270986000000,0.000318789000000,0.000154048000000 +0.000020333000000,0.000096369000000,0.000028036500000,0.000019744666667,0.000071691000000,0.000187628000000,0.000057653000000,0.000025863500000,0.000184468000000,0.000065949000000,0.000135085000000,0.000273357000000,0.000056072000000 +0.000028233500000,0.000096764000000,0.000026258500000,0.000013028333333,0.000078209000000,0.000184073000000,0.000071875000000,0.000026259000000,0.000195530000000,0.000063184000000,0.000094394000000,0.000359875000000,0.000066740000000 +0.000020135500000,0.000096369000000,0.000035345000000,0.000013028333333,0.000028431000000,0.000181703000000,0.000057258000000,0.000025863500000,0.000184467000000,0.000063184000000,0.000117307000000,0.000279282000000,0.000052913000000 +0.000020135000000,0.000115727000000,0.000043641000000,0.000013555000000,0.000026851000000,0.000216468000000,0.000057258000000,0.000026258500000,0.000180913000000,0.000069505000000,0.000118493000000,0.000372517000000,0.000052912000000 +0.000020135000000,0.000096369000000,0.000028826500000,0.000013555333333,0.000043443500000,0.000182097000000,0.000058443000000,0.000026653500000,0.000184073000000,0.000065949000000,0.000117308000000,0.000273357000000,0.000051332000000 +0.000020135000000,0.000102295000000,0.000030604000000,0.000013555000000,0.000025468500000,0.000188419000000,0.000057258000000,0.000026061000000,0.000180912000000,0.000114542000000,0.000117307000000,0.000371726000000,0.000053307000000 +0.000020135000000,0.000149703000000,0.000025666000000,0.000013160000000,0.000026653500000,0.000185258000000,0.000057653000000,0.000028234000000,0.000186838000000,0.000062789000000,0.000117307000000,0.000278887000000,0.000051332000000 +0.000021320500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027049000000,0.000183283000000,0.000058838000000,0.000026061000000,0.000182097000000,0.000062789000000,0.000100715000000,0.000309702000000,0.000052122000000 +0.000020530000000,0.000114937000000,0.000027048500000,0.000013028333333,0.000027443500000,0.000187233000000,0.000057258000000,0.000024875500000,0.000186838000000,0.000062789000000,0.000110196000000,0.000280863000000,0.000050937000000 +0.000020333000000,0.000095974000000,0.000035937500000,0.000013028333333,0.000027641000000,0.000184467000000,0.000072270000000,0.000034752500000,0.000180517000000,0.000067134000000,0.000117308000000,0.000313653000000,0.000052517000000 +0.000034752500000,0.000115727000000,0.000027048500000,0.000013028333333,0.000027641500000,0.000185257000000,0.000058838000000,0.000026061000000,0.000229505000000,0.000063579000000,0.000096369000000,0.000276912000000,0.000051332000000 +0.000020333000000,0.000144566000000,0.000027049000000,0.000013028333333,0.000028036500000,0.000182887000000,0.000057258000000,0.000025666000000,0.000186443000000,0.000067134000000,0.000094788000000,0.000322344000000,0.000051727000000 +0.000020333000000,0.000115727000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000183678000000,0.000058443000000,0.000025468500000,0.000218048000000,0.000101505000000,0.000096369000000,0.000279678000000,0.000050937000000 +0.000020333000000,0.000096764000000,0.000026654000000,0.000013160000000,0.000027641500000,0.000185653000000,0.000060813000000,0.000026258500000,0.000184468000000,0.000065160000000,0.000097159000000,0.000310493000000,0.000119283000000 +0.000020333000000,0.000096369000000,0.000026653500000,0.000013818666667,0.000027246000000,0.000216863000000,0.000058838000000,0.000026456500000,0.000184467000000,0.000065554000000,0.000096764000000,0.000278887000000,0.000050937000000 +0.000020135000000,0.000095974000000,0.000026851000000,0.000013555000000,0.000025863500000,0.000181307000000,0.000061209000000,0.000035345000000,0.000184072000000,0.000062789000000,0.000094789000000,0.000273357000000,0.000050937000000 +0.000021320500000,0.000096369000000,0.000028036500000,0.000013028333333,0.000027246000000,0.000185653000000,0.000058443000000,0.000031987000000,0.000213703000000,0.000063578000000,0.000095579000000,0.000274147000000,0.000052517000000 +0.000021320000000,0.000096369000000,0.000043246000000,0.000013423333333,0.000026654000000,0.000184072000000,0.000057653000000,0.000025468500000,0.000183283000000,0.000063579000000,0.000115332000000,0.000276517000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000025864000000,0.000013028333333,0.000027641000000,0.000251628000000,0.000058839000000,0.000025863500000,0.000183677000000,0.000062789000000,0.000139431000000,0.000277307000000,0.000051332000000 +0.000021123000000,0.000095974000000,0.000027049000000,0.000024353333333,0.000027641500000,0.000182097000000,0.000059234000000,0.000026258500000,0.000187629000000,0.000084517000000,0.000116913000000,0.000276516000000,0.000052123000000 +0.000020332500000,0.000116913000000,0.000029024000000,0.000013028333333,0.000028431500000,0.000181702000000,0.000058048000000,0.000026258500000,0.000218838000000,0.000063184000000,0.000095184000000,0.000279677000000,0.000053307000000 +0.000020332500000,0.000095974000000,0.000030604000000,0.000013423333333,0.000028234000000,0.000182097000000,0.000058838000000,0.000027839000000,0.000187233000000,0.000064369000000,0.000096369000000,0.000325110000000,0.000052122000000 +0.000020332500000,0.000129160000000,0.000026259000000,0.000013028333333,0.000026653500000,0.000215678000000,0.000058839000000,0.000024678500000,0.000183678000000,0.000067135000000,0.000095184000000,0.000481949000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000027641500000,0.000183677000000,0.000058838000000,0.000036135000000,0.000184468000000,0.000062788000000,0.000095183000000,0.000309702000000,0.000052122000000 +0.000020332500000,0.000095184000000,0.000026851000000,0.000013028333333,0.000027641000000,0.000186048000000,0.000058838000000,0.000026258500000,0.000231875000000,0.000063184000000,0.000117308000000,0.000275332000000,0.000051332000000 +0.000020135000000,0.000095974000000,0.000033567500000,0.000013555000000,0.000026258500000,0.000184467000000,0.000164715000000,0.000025863500000,0.000184468000000,0.000065949000000,0.000117307000000,0.000276912000000,0.000051727000000 +0.000021320500000,0.000094789000000,0.000026851000000,0.000013028333333,0.000028826500000,0.000395825000000,0.000074641000000,0.000025863500000,0.000185258000000,0.000067134000000,0.000096764000000,0.000278492000000,0.000053308000000 +0.000020333000000,0.000151282000000,0.000027049000000,0.000013818666667,0.000027246500000,0.000523036000000,0.000057653000000,0.000025863500000,0.000184468000000,0.000062789000000,0.000117307000000,0.000276912000000,0.000053307000000 +0.000020332500000,0.000095974000000,0.000027048500000,0.000013028333333,0.000027839000000,0.000282048000000,0.000058838000000,0.000026456000000,0.000212122000000,0.000065554000000,0.000100320000000,0.000274147000000,0.000051332000000 +0.000027444000000,0.000094789000000,0.000026258500000,0.000013160000000,0.000034752500000,0.000204615000000,0.000058839000000,0.000026851500000,0.000186443000000,0.000065554000000,0.000125999000000,0.000272171000000,0.000051332000000 +0.000020135000000,0.000116913000000,0.000027049000000,0.000013028333333,0.000027444000000,0.000234245000000,0.000128368000000,0.000026258500000,0.000186838000000,0.000068319000000,0.000115332000000,0.000276122000000,0.000052122000000 +0.000020135000000,0.000116517000000,0.000027048500000,0.000013028333333,0.000026851000000,0.000199085000000,0.000057653000000,0.000026258500000,0.000204221000000,0.000064369000000,0.000116517000000,0.000278887000000,0.000052517000000 +0.000020332500000,0.000185653000000,0.000028036500000,0.000013028333333,0.000026851000000,0.000204221000000,0.000057258000000,0.000024678000000,0.000183677000000,0.000065554000000,0.000117307000000,0.000277702000000,0.000071875000000 +0.000021320500000,0.000096764000000,0.000033567500000,0.000013028333333,0.000027246500000,0.000199875000000,0.000057258000000,0.000025271000000,0.000184468000000,0.000063184000000,0.000094789000000,0.000275332000000,0.000052122000000 +0.000020332500000,0.000100715000000,0.000025863500000,0.000013028333333,0.000027443500000,0.000234641000000,0.000057653000000,0.000028629000000,0.000184073000000,0.000112961000000,0.000119283000000,0.000345653000000,0.000053308000000 +0.000021122500000,0.000115727000000,0.000026851000000,0.000013160000000,0.000026456000000,0.000198295000000,0.000058838000000,0.000025863500000,0.000257554000000,0.000063974000000,0.000117702000000,0.000277702000000,0.000052517000000 +0.000020135500000,0.000096369000000,0.000029024000000,0.000013160000000,0.000028036000000,0.000200271000000,0.000057653000000,0.000025863500000,0.000205801000000,0.000063579000000,0.000114147000000,0.000322739000000,0.000050937000000 +0.000020135000000,0.000148517000000,0.000030407000000,0.000013555000000,0.000027641000000,0.000199480000000,0.000057258000000,0.000026061000000,0.000184073000000,0.000083727000000,0.000096369000000,0.000278887000000,0.000052122000000 +0.000039690500000,0.000114937000000,0.000025863500000,0.000013555333333,0.000027641500000,0.000198295000000,0.000088072000000,0.000025468500000,0.000184468000000,0.000067530000000,0.000118888000000,0.000307727000000,0.000050937000000 +0.000028431500000,0.000116122000000,0.000026259000000,0.000013028333333,0.000026456000000,0.000195530000000,0.000057653000000,0.000025468500000,0.000197110000000,0.000065554000000,0.000150492000000,0.000274937000000,0.000051727000000 +0.000021518000000,0.000096764000000,0.000036925500000,0.000013028333333,0.000027444000000,0.000183678000000,0.000058838000000,0.000042456000000,0.000187233000000,0.000063183000000,0.000095184000000,0.000364616000000,0.000051332000000 +0.000020333000000,0.000095974000000,0.000026258500000,0.000013555000000,0.000027641000000,0.000263085000000,0.000057258000000,0.000026259000000,0.000184468000000,0.000083727000000,0.000096369000000,0.000277702000000,0.000110196000000 +0.000021320000000,0.000115331000000,0.000027246500000,0.000013160000000,0.000026851500000,0.000186838000000,0.000057653000000,0.000026259000000,0.000187628000000,0.000065949000000,0.000117702000000,0.000308517000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013555000000,0.000027048500000,0.000183282000000,0.000060024000000,0.000027246000000,0.000186838000000,0.000063974000000,0.000096369000000,0.000276912000000,0.000053702000000 +0.000020332500000,0.000095974000000,0.000027246000000,0.000013028333333,0.000027641500000,0.000183283000000,0.000057653000000,0.000026258500000,0.000187628000000,0.000062789000000,0.000097554000000,0.000311283000000,0.000052912000000 +0.000020332500000,0.000115727000000,0.000026061000000,0.000013160000000,0.000032974500000,0.000263480000000,0.000057653000000,0.000026258500000,0.000180912000000,0.000063184000000,0.000115727000000,0.000280073000000,0.000054888000000 +0.000030209500000,0.000116122000000,0.000027048500000,0.000013028333333,0.000026654000000,0.000181307000000,0.000057258000000,0.000024678000000,0.000212122000000,0.000063184000000,0.000115332000000,0.000277702000000,0.000052518000000 +0.000020332500000,0.000113356000000,0.000027049000000,0.000019876000000,0.000026258500000,0.000182492000000,0.000057258000000,0.000026654000000,0.000185258000000,0.000065159000000,0.000113752000000,0.000314443000000,0.000051727000000 +0.000021320500000,0.000160764000000,0.000071888000000,0.000013028333333,0.000026258500000,0.000182097000000,0.000057257000000,0.000035740000000,0.000184468000000,0.000067134000000,0.000116913000000,0.000346048000000,0.000051332000000 +0.000020332500000,0.000096764000000,0.000027838500000,0.000013028333333,0.000028036500000,0.000181702000000,0.000058839000000,0.000025863500000,0.000186443000000,0.000063184000000,0.000094394000000,0.000279282000000,0.000052122000000 +0.000020333000000,0.000096764000000,0.000026258500000,0.000013028333333,0.000027246000000,0.000180912000000,0.000060419000000,0.000026061500000,0.000218048000000,0.000067134000000,0.000117307000000,0.000310492000000,0.000052912000000 +0.000030011500000,0.000095974000000,0.000027048500000,0.000013028333333,0.000027246500000,0.000185653000000,0.000058839000000,0.000026061500000,0.000184072000000,0.000067924000000,0.000117308000000,0.000275331000000,0.000051332000000 +0.000027246000000,0.000130740000000,0.000028826500000,0.000013028333333,0.000026851000000,0.000186048000000,0.000057258000000,0.000028431500000,0.000186839000000,0.000067924000000,0.000096764000000,0.000349603000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000030406500000,0.000013028333333,0.000026456000000,0.000187234000000,0.000096369000000,0.000026653500000,0.000187233000000,0.000063579000000,0.000117702000000,0.000277307000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000026061000000,0.000184072000000,0.000058838000000,0.000025863500000,0.000216863000000,0.000063579000000,0.000117307000000,0.000359480000000,0.000052123000000 +0.000045221500000,0.000096369000000,0.000042851000000,0.000013028333333,0.000028234000000,0.000187629000000,0.000060023000000,0.000026456000000,0.000183678000000,0.000082147000000,0.000117307000000,0.000276122000000,0.000050937000000 +0.000020332500000,0.000117308000000,0.000026851000000,0.000014345000000,0.000026653500000,0.000182887000000,0.000058838000000,0.000026456000000,0.000184468000000,0.000065554000000,0.000115727000000,0.000362246000000,0.000052122000000 +0.000020333000000,0.000116122000000,0.000026259000000,0.000042131000000,0.000026851000000,0.000182097000000,0.000060418000000,0.000032974500000,0.000180912000000,0.000065949000000,0.000096764000000,0.000276913000000,0.000051332000000 +0.000020135000000,0.000116912000000,0.000026851000000,0.000030147666667,0.000025863500000,0.000183678000000,0.000057653000000,0.000025863500000,0.000217653000000,0.000065554000000,0.000117703000000,0.000361850000000,0.000051332000000 +0.000020332500000,0.000115332000000,0.000026851000000,0.000014345333333,0.000026653500000,0.000184468000000,0.000057653000000,0.000026061000000,0.000188023000000,0.000063183000000,0.000116123000000,0.000275332000000,0.000058838000000 +0.000020332500000,0.000115727000000,0.000027048500000,0.000013028333333,0.000028036500000,0.000216073000000,0.000057258000000,0.000026851500000,0.000186443000000,0.000067925000000,0.000111381000000,0.000372122000000,0.000051727000000 +0.000020333000000,0.000105456000000,0.000026061000000,0.000013028333333,0.000033567500000,0.000187628000000,0.000139825000000,0.000025863500000,0.000226740000000,0.000062394000000,0.000096369000000,0.000276122000000,0.000051727000000 +0.000020333000000,0.000116122000000,0.000027048500000,0.000013555000000,0.000027443500000,0.000185653000000,0.000058048000000,0.000025666000000,0.000180517000000,0.000099530000000,0.000096369000000,0.000361456000000,0.000051727000000 +0.000020135000000,0.000096764000000,0.000034160000000,0.000013028333333,0.000028826500000,0.000182097000000,0.000057258000000,0.000025073500000,0.000184468000000,0.000064765000000,0.000094394000000,0.000280863000000,0.000056072000000 +0.000020332500000,0.000114937000000,0.000028036500000,0.000018296000000,0.000026654000000,0.000219628000000,0.000058443000000,0.000026258500000,0.000184862000000,0.000065555000000,0.000116912000000,0.000365010000000,0.000088468000000 +0.000020135500000,0.000095974000000,0.000026258500000,0.000013423333333,0.000026258500000,0.000185258000000,0.000058838000000,0.000041666000000,0.000184863000000,0.000064764000000,0.000119677000000,0.000279283000000,0.000050937000000 +0.000020135000000,0.000095974000000,0.000025863500000,0.000013291666667,0.000027443500000,0.000181703000000,0.000058839000000,0.000025863500000,0.000198294000000,0.000063579000000,0.000116122000000,0.000357505000000,0.000051727000000 +0.000021320000000,0.000096369000000,0.000026851000000,0.000013160000000,0.000027246500000,0.000183282000000,0.000058443000000,0.000025271000000,0.000180518000000,0.000063183000000,0.000116912000000,0.000274147000000,0.000051727000000 +0.000020332500000,0.000115331000000,0.000028826500000,0.000013160000000,0.000027444000000,0.000350394000000,0.000057653000000,0.000026258500000,0.000184073000000,0.000064369000000,0.000116912000000,0.000356319000000,0.000051332000000 +0.000020135000000,0.000115727000000,0.000030802000000,0.000013555333333,0.000043444000000,0.000220814000000,0.000077011000000,0.000026653500000,0.000250443000000,0.000063579000000,0.000096369000000,0.000276517000000,0.000052122000000 +0.000020135500000,0.000117307000000,0.000026258500000,0.000013028666667,0.000028234000000,0.000182097000000,0.000071085000000,0.000026258500000,0.000184468000000,0.000063974000000,0.000214492000000,0.000343282000000,0.000052912000000 +0.000020332500000,0.000116518000000,0.000026061000000,0.000013423333333,0.000027444000000,0.000233060000000,0.000058838000000,0.000026851000000,0.000182097000000,0.000067925000000,0.000281258000000,0.000278888000000,0.000101110000000 +0.000021123000000,0.000116122000000,0.000027049000000,0.000013028333333,0.000027246500000,0.000182888000000,0.000058838000000,0.000025468500000,0.000184072000000,0.000063974000000,0.000150493000000,0.000362641000000,0.000051332000000 +0.000037123000000,0.000117307000000,0.000026061000000,0.000024221666667,0.000027246500000,0.000184073000000,0.000057653000000,0.000025666000000,0.000278493000000,0.000063579000000,0.000099135000000,0.000276912000000,0.000051332000000 +0.000021122500000,0.000096765000000,0.000027048500000,0.000013028333333,0.000027839000000,0.000183677000000,0.000057653000000,0.000026061000000,0.000184467000000,0.000062789000000,0.000096369000000,0.000344467000000,0.000051332000000 +0.000020332500000,0.000115332000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000265060000000,0.000058838000000,0.000026653500000,0.000183282000000,0.000063184000000,0.000096764000000,0.000291530000000,0.000051332000000 +0.000020332500000,0.000094789000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000183678000000,0.000085702000000,0.000027246500000,0.000184467000000,0.000063184000000,0.000115332000000,0.000473653000000,0.000052123000000 +0.000020135000000,0.000116913000000,0.000026061000000,0.000013028333333,0.000074851500000,0.000185258000000,0.000058838000000,0.000026456000000,0.000184467000000,0.000109011000000,0.000095974000000,0.000318789000000,0.000072666000000 +0.000020135000000,0.000114937000000,0.000044036500000,0.000013028333333,0.000028036500000,0.000203430000000,0.000059233000000,0.000025863500000,0.000184073000000,0.000068715000000,0.000094394000000,0.000280073000000,0.000051332000000 +0.000020332500000,0.000096764000000,0.000026851000000,0.000013028333333,0.000025863500000,0.000182097000000,0.000057258000000,0.000025271000000,0.000184073000000,0.000067134000000,0.000117307000000,0.000276517000000,0.000053308000000 +0.000020332500000,0.000115727000000,0.000028036500000,0.000013028333333,0.000027246500000,0.000182492000000,0.000058443000000,0.000025666000000,0.000204221000000,0.000062789000000,0.000096369000000,0.000278097000000,0.000052913000000 +0.000020333000000,0.000115332000000,0.000026456500000,0.000013028333333,0.000027838500000,0.000187628000000,0.000057258000000,0.000025468500000,0.000184073000000,0.000065555000000,0.000096369000000,0.000280467000000,0.000051332000000 +0.000020333000000,0.000166295000000,0.000025863500000,0.000013160000000,0.000027246000000,0.000256369000000,0.000057653000000,0.000034357000000,0.000180517000000,0.000062789000000,0.000095974000000,0.000277702000000,0.000050937000000 +0.000020135500000,0.000113356000000,0.000027048500000,0.000023299666667,0.000027246500000,0.000182097000000,0.000094394000000,0.000027048500000,0.000184073000000,0.000065949000000,0.000094393000000,0.000280467000000,0.000053702000000 +0.000020333000000,0.000116517000000,0.000029024000000,0.000013028333333,0.000027443500000,0.000185258000000,0.000057257000000,0.000024481000000,0.000218048000000,0.000065949000000,0.000098739000000,0.000275727000000,0.000051727000000 +0.000020332500000,0.000116122000000,0.000030407000000,0.000013555000000,0.000027443500000,0.000185653000000,0.000057257000000,0.000026456000000,0.000184073000000,0.000063183000000,0.000100320000000,0.000274936000000,0.000052912000000 +0.000020333000000,0.000114937000000,0.000043246000000,0.000013028333333,0.000027641000000,0.000216862000000,0.000057653000000,0.000026061000000,0.000183677000000,0.000063974000000,0.000115332000000,0.000308517000000,0.000050937000000 +0.000021320000000,0.000187629000000,0.000025864000000,0.000013028333333,0.000027246000000,0.000183677000000,0.000057258000000,0.000026654000000,0.000186443000000,0.000064369000000,0.000096369000000,0.000278887000000,0.000052123000000 +0.000020332500000,0.000096369000000,0.000026851500000,0.000013028333333,0.000026851000000,0.000187233000000,0.000057653000000,0.000025271000000,0.000218838000000,0.000063974000000,0.000117307000000,0.000314048000000,0.000051727000000 +0.000020135000000,0.000117703000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000181702000000,0.000058048000000,0.000025666000000,0.000181307000000,0.000065159000000,0.000096369000000,0.000281258000000,0.000050937000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000026456500000,0.000251628000000,0.000057653000000,0.000042258500000,0.000185258000000,0.000067134000000,0.000096369000000,0.000317603000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000026851000000,0.000013028666667,0.000027246000000,0.000235430000000,0.000112566000000,0.000027246000000,0.000184863000000,0.000077011000000,0.000117307000000,0.000274937000000,0.000104270000000 +0.000027246000000,0.000164714000000,0.000026851000000,0.000034756666667,0.000027839000000,0.000183677000000,0.000060023000000,0.000026851500000,0.000215283000000,0.000063579000000,0.000096369000000,0.000320764000000,0.000153653000000 +0.000020332500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000061221500000,0.000200666000000,0.000058838000000,0.000026654000000,0.000184073000000,0.000064369000000,0.000096764000000,0.000275727000000,0.000055678000000 +0.000020135000000,0.000114936000000,0.000034160000000,0.000013028333333,0.000034950000000,0.000180912000000,0.000058048000000,0.000025271000000,0.000186838000000,0.000063184000000,0.000096369000000,0.000312467000000,0.000050936000000 +0.000021123000000,0.000096369000000,0.000027048500000,0.000013555000000,0.000027246000000,0.000182097000000,0.000057258000000,0.000027246000000,0.000184468000000,0.000065949000000,0.000119283000000,0.000277702000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000028036500000,0.000013555333333,0.000027246500000,0.000184073000000,0.000057258000000,0.000026258500000,0.000214097000000,0.000067135000000,0.000129554000000,0.000277703000000,0.000051727000000 +0.000020332500000,0.000237800000000,0.000026456000000,0.000013028333333,0.000027838500000,0.000236221000000,0.000058838000000,0.000025468500000,0.000184467000000,0.000065950000000,0.000216467000000,0.000274147000000,0.000054887000000 +0.000020332500000,0.000155628000000,0.000026258500000,0.000013028333333,0.000027444000000,0.000183282000000,0.000058838000000,0.000035740000000,0.000185258000000,0.000110196000000,0.000095974000000,0.000274541000000,0.000051728000000 +0.000020135000000,0.000115727000000,0.000027048500000,0.000013555333333,0.000028629000000,0.000186048000000,0.000091233000000,0.000073468500000,0.000183677000000,0.000064369000000,0.000191579000000,0.000277307000000,0.000051727000000 +0.000020333000000,0.000096764000000,0.000029024000000,0.000013555000000,0.000033962000000,0.000184072000000,0.000057257000000,0.000027049000000,0.000252813000000,0.000065555000000,0.000096764000000,0.000276517000000,0.000054097000000 +0.000028234000000,0.000096369000000,0.000030407000000,0.000018559333333,0.000028826500000,0.000233455000000,0.000058443000000,0.000028431500000,0.000183677000000,0.000065159000000,0.000117307000000,0.000277307000000,0.000052912000000 +0.000020332500000,0.000117307000000,0.000026061000000,0.000013028333333,0.000027246000000,0.000186838000000,0.000057653000000,0.000025271000000,0.000184863000000,0.000063974000000,0.000117702000000,0.000297060000000,0.000052517000000 +0.000020135000000,0.000116122000000,0.000026061500000,0.000013028333333,0.000026654000000,0.000182888000000,0.000057258000000,0.000027443500000,0.000183678000000,0.000068320000000,0.000117702000000,0.000278492000000,0.000063184000000 +0.000020333000000,0.000115332000000,0.000026654000000,0.000013160000000,0.000025863500000,0.000184468000000,0.000057653000000,0.000025666000000,0.000186838000000,0.000063974000000,0.000118492000000,0.000273751000000,0.000051728000000 +0.000020332500000,0.000096369000000,0.000036332500000,0.000013160000000,0.000028431000000,0.000265456000000,0.000060418000000,0.000026653500000,0.000187628000000,0.000086492000000,0.000117307000000,0.000275332000000,0.000051727000000 +0.000020333000000,0.000151678000000,0.000033369500000,0.000013555333333,0.000026653500000,0.000186838000000,0.000058048000000,0.000025271000000,0.000184467000000,0.000062788000000,0.000109011000000,0.000278493000000,0.000051727000000 +0.000020135000000,0.000095973000000,0.000026851500000,0.000013028333333,0.000027246500000,0.000183677000000,0.000071875000000,0.000026258500000,0.000204220000000,0.000064369000000,0.000094789000000,0.000363036000000,0.000090048000000 +0.000020332500000,0.000094789000000,0.000027048500000,0.000013028333333,0.000045024000000,0.000183677000000,0.000058838000000,0.000025271000000,0.000187233000000,0.000067135000000,0.000095974000000,0.000273752000000,0.000052517000000 +0.000020135500000,0.000115331000000,0.000043246500000,0.000013028333333,0.000027443500000,0.000195530000000,0.000058048000000,0.000026061000000,0.000184467000000,0.000062789000000,0.000094789000000,0.000324714000000,0.000053308000000 +0.000020530000000,0.000094789000000,0.000027048500000,0.000021324666667,0.000026851500000,0.000184863000000,0.000057258000000,0.000025073500000,0.000184468000000,0.000063579000000,0.000096369000000,0.000272961000000,0.000050937000000 +0.000020333000000,0.000129554000000,0.000027049000000,0.000013028333333,0.000027246500000,0.000184863000000,0.000057258000000,0.000025863500000,0.000364221000000,0.000063579000000,0.000096369000000,0.000308122000000,0.000054097000000 +0.000020135000000,0.000159973000000,0.000028036500000,0.000013028666667,0.000028036000000,0.000181702000000,0.000057653000000,0.000026061000000,0.000213702000000,0.000063974000000,0.000117307000000,0.000281257000000,0.000053307000000 +0.000020333000000,0.000116517000000,0.000026258500000,0.000013028666667,0.000027444000000,0.000197109000000,0.000057653000000,0.000060036000000,0.000186838000000,0.000063974000000,0.000114147000000,0.000313258000000,0.000053307000000 +0.000019937500000,0.000096369000000,0.000026061000000,0.000013028333333,0.000026851000000,0.000181307000000,0.000075826000000,0.000026456000000,0.000187234000000,0.000065949000000,0.000117308000000,0.000280072000000,0.000067530000000 +0.000020135500000,0.000096369000000,0.000027049000000,0.000013028333333,0.000028431500000,0.000181307000000,0.000058443000000,0.000025271000000,0.000187628000000,0.000063184000000,0.000150492000000,0.000351974000000,0.000053307000000 +0.000020333000000,0.000111381000000,0.000029024000000,0.000013160000000,0.000047789500000,0.000205406000000,0.000057653000000,0.000036135000000,0.000185258000000,0.000064765000000,0.000117307000000,0.000277703000000,0.000053308000000 +0.000020332500000,0.000114937000000,0.000037320500000,0.000013028333333,0.000026851000000,0.000182887000000,0.000057653000000,0.000025073500000,0.000186443000000,0.000063579000000,0.000117307000000,0.000369356000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000026061000000,0.000013028333333,0.000028826500000,0.000184468000000,0.000058444000000,0.000026653500000,0.000238591000000,0.000063974000000,0.000118492000000,0.000279283000000,0.000052912000000 +0.000047789500000,0.000118097000000,0.000026061000000,0.000025802000000,0.000027246500000,0.000187233000000,0.000057258000000,0.000025863500000,0.000187233000000,0.000063184000000,0.000136270000000,0.000310492000000,0.000051332000000 +0.000036135500000,0.000116912000000,0.000027641000000,0.000013818333333,0.000027246000000,0.000235826000000,0.000057653000000,0.000026258500000,0.000183282000000,0.000176961000000,0.000096369000000,0.000278492000000,0.000088468000000 +0.000044628500000,0.000130739000000,0.000025863500000,0.000013160000000,0.000026851000000,0.000181307000000,0.000057258000000,0.000032777000000,0.000180912000000,0.000084912000000,0.000096764000000,0.000318393000000,0.000054492000000 +0.000020332500000,0.000105061000000,0.000026851500000,0.000013028333333,0.000026061000000,0.000182888000000,0.000127578000000,0.000027444000000,0.000267826000000,0.000063184000000,0.000115332000000,0.000276517000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026654000000,0.000013028333333,0.000026653500000,0.000188023000000,0.000058838000000,0.000040678500000,0.000184863000000,0.000063184000000,0.000116912000000,0.000300616000000,0.000052912000000 +0.000020135500000,0.000094788000000,0.000026653500000,0.000013028333333,0.000043839000000,0.000217653000000,0.000057653000000,0.000026061000000,0.000184863000000,0.000063973000000,0.000094788000000,0.000278887000000,0.000052122000000 +0.000021517500000,0.000116517000000,0.000060233500000,0.000013028333333,0.000027049000000,0.000184468000000,0.000057258000000,0.000025863500000,0.000181703000000,0.000067134000000,0.000116912000000,0.000279282000000,0.000054888000000 +0.000020135000000,0.000095974000000,0.000028629000000,0.000013028333333,0.000028036500000,0.000182097000000,0.000057653000000,0.000025666000000,0.000242147000000,0.000099529000000,0.000094394000000,0.000281257000000,0.000098345000000 +0.000020135000000,0.000095579000000,0.000026653500000,0.000013028333333,0.000027641000000,0.000182098000000,0.000058048000000,0.000025863500000,0.000180912000000,0.000064369000000,0.000096764000000,0.000276122000000,0.000052123000000 +0.000020135000000,0.000105060000000,0.000028036500000,0.000019612666667,0.000027246500000,0.000444023000000,0.000057258000000,0.000026258500000,0.000184468000000,0.000062789000000,0.000096369000000,0.000278098000000,0.000052517000000 +0.000021123000000,0.000096369000000,0.000026456000000,0.000013160000000,0.000027246000000,0.000296271000000,0.000057258000000,0.000026456000000,0.000203035000000,0.000065554000000,0.000096764000000,0.000312468000000,0.000053307000000 +0.000020135500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000026851500000,0.000216073000000,0.000139431000000,0.000025863500000,0.000184863000000,0.000063579000000,0.000098739000000,0.000275727000000,0.000053702000000 +0.000020333000000,0.000128369000000,0.000026851000000,0.000013555333333,0.000028431500000,0.000184072000000,0.000057653000000,0.000027641000000,0.000180912000000,0.000066740000000,0.000105455000000,0.000276122000000,0.000052912000000 +0.000020332500000,0.000095974000000,0.000029024000000,0.000013555333333,0.000037320000000,0.000181702000000,0.000058443000000,0.000025468500000,0.000184073000000,0.000067529000000,0.000094394000000,0.000272567000000,0.000070295000000 +0.000020135500000,0.000096369000000,0.000030604500000,0.000013555000000,0.000028234000000,0.000184468000000,0.000057257000000,0.000026259000000,0.000255579000000,0.000080962000000,0.000116913000000,0.000276912000000,0.000053307000000 +0.000020135500000,0.000115331000000,0.000026061000000,0.000013028333333,0.000027444000000,0.000215678000000,0.000057652000000,0.000025270500000,0.000184863000000,0.000063184000000,0.000114542000000,0.000291924000000,0.000050937000000 +0.000021320000000,0.000096369000000,0.000026456000000,0.000013028333333,0.000027641500000,0.000187233000000,0.000058838000000,0.000026654000000,0.000181702000000,0.000065159000000,0.000098739000000,0.000276517000000,0.000050937000000 +0.000020332500000,0.000100319000000,0.000027048500000,0.000013028333333,0.000027838500000,0.000182493000000,0.000057257000000,0.000026653500000,0.000184468000000,0.000063184000000,0.000096369000000,0.000309307000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000026061000000,0.000013160000000,0.000027444000000,0.000184863000000,0.000057653000000,0.000026654000000,0.000214098000000,0.000063183000000,0.000117703000000,0.000274937000000,0.000052517000000 +0.000021122500000,0.000116912000000,0.000027049000000,0.000013028333333,0.000028036500000,0.000248863000000,0.000164319000000,0.000025666000000,0.000184863000000,0.000063184000000,0.000093999000000,0.000323924000000,0.000051332000000 +0.000020333000000,0.000096764000000,0.000027049000000,0.000013028333333,0.000027444000000,0.000186047000000,0.000094394000000,0.000026851500000,0.000184468000000,0.000065949000000,0.000117307000000,0.000280863000000,0.000087282000000 +0.000020332500000,0.000117702000000,0.000027049000000,0.000013028333333,0.000027048500000,0.000233060000000,0.000062394000000,0.000029419000000,0.000184862000000,0.000082937000000,0.000094393000000,0.000331035000000,0.000051727000000 +0.000020332500000,0.000118097000000,0.000026258500000,0.000013028333333,0.000070505500000,0.000216468000000,0.000060418000000,0.000025271000000,0.000503677000000,0.000062789000000,0.000096764000000,0.000276122000000,0.000051727000000 +0.000020135000000,0.000124418000000,0.000027246000000,0.000013818333333,0.000028036500000,0.000183283000000,0.000058839000000,0.000026851000000,0.000202641000000,0.000062789000000,0.000115332000000,0.000311282000000,0.000051332000000 +0.000020135500000,0.000096764000000,0.000026851500000,0.000013423666667,0.000026061000000,0.000183282000000,0.000060814000000,0.000025666000000,0.000217258000000,0.000063974000000,0.000095974000000,0.000280072000000,0.000051332000000 +0.000052332500000,0.000116122000000,0.000027838500000,0.000013028666667,0.000026851000000,0.000181307000000,0.000072666000000,0.000025863500000,0.000181308000000,0.000063184000000,0.000117307000000,0.000307332000000,0.000053307000000 +0.000021320000000,0.000096369000000,0.000026258500000,0.000013555333333,0.000027048500000,0.000218838000000,0.000057653000000,0.000040283500000,0.000180517000000,0.000065160000000,0.000095184000000,0.000273752000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000044036000000,0.000013160333333,0.000026653500000,0.000182492000000,0.000058838000000,0.000025270500000,0.000180517000000,0.000063184000000,0.000198295000000,0.000275727000000,0.000051332000000 +0.000021320500000,0.000110196000000,0.000026851500000,0.000017900666667,0.000035740000000,0.000181702000000,0.000059233000000,0.000026061000000,0.000216863000000,0.000109406000000,0.000096764000000,0.000276912000000,0.000052122000000 +0.000020333000000,0.000096369000000,0.000028826500000,0.000013160000000,0.000027443500000,0.000184862000000,0.000058048000000,0.000026851000000,0.000184468000000,0.000063974000000,0.000094394000000,0.000274146000000,0.000052912000000 +0.000020332500000,0.000114937000000,0.000030604500000,0.000013423333333,0.000025863500000,0.000270986000000,0.000058838000000,0.000026456000000,0.000183283000000,0.000065554000000,0.000094788000000,0.000278097000000,0.000052122000000 +0.000020332500000,0.000095974000000,0.000025666000000,0.000013028333333,0.000026654000000,0.000181702000000,0.000058443000000,0.000026061000000,0.000184468000000,0.000067529000000,0.000116122000000,0.000280468000000,0.000050937000000 +0.000020332500000,0.000114542000000,0.000026061000000,0.000013028333333,0.000026851000000,0.000183678000000,0.000058838000000,0.000026653500000,0.000217258000000,0.000065949000000,0.000119677000000,0.000277307000000,0.000051332000000 +0.000020332500000,0.000145356000000,0.000026851500000,0.000013028333333,0.000027839000000,0.000182888000000,0.000058838000000,0.000024480500000,0.000185258000000,0.000063579000000,0.000096369000000,0.000277702000000,0.000071480000000 +0.000037122500000,0.000115727000000,0.000026061000000,0.000013423666667,0.000027443500000,0.000182492000000,0.000057258000000,0.000033567500000,0.000181307000000,0.000065554000000,0.000095184000000,0.000280073000000,0.000051727000000 +0.000021123000000,0.000095974000000,0.000027048500000,0.000013028333333,0.000027444000000,0.000185258000000,0.000057653000000,0.000026258500000,0.000185653000000,0.000098344000000,0.000095974000000,0.000278888000000,0.000053307000000 +0.000020332500000,0.000096764000000,0.000027048500000,0.000013687000000,0.000034555000000,0.000184467000000,0.000057653000000,0.000026258500000,0.000218443000000,0.000063579000000,0.000114542000000,0.000313258000000,0.000053308000000 +0.000020333000000,0.000115727000000,0.000026851000000,0.000018032666667,0.000028036500000,0.000186443000000,0.000058444000000,0.000025863500000,0.000181307000000,0.000062788000000,0.000119677000000,0.000277702000000,0.000050937000000 +0.000020333000000,0.000149703000000,0.000026061000000,0.000013160333333,0.000025863500000,0.000186443000000,0.000059234000000,0.000026061500000,0.000184073000000,0.000063184000000,0.000096369000000,0.000345653000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000027048500000,0.000013028666667,0.000027246000000,0.000182098000000,0.000060023000000,0.000025271000000,0.000184863000000,0.000065554000000,0.000117703000000,0.000276121000000,0.000052122000000 +0.000020332500000,0.000094394000000,0.000027641500000,0.000013160333333,0.000026653500000,0.000181308000000,0.000077406000000,0.000026653500000,0.000184863000000,0.000063184000000,0.000095973000000,0.000448764000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000028036500000,0.000013028333333,0.000027838500000,0.000223578000000,0.000057258000000,0.000025666000000,0.000225949000000,0.000062789000000,0.000116122000000,0.000279283000000,0.000051332000000 +0.000021320500000,0.000094789000000,0.000054110500000,0.000013028333333,0.000026456500000,0.000183282000000,0.000058048000000,0.000071493500000,0.000185653000000,0.000082937000000,0.000095974000000,0.000276122000000,0.000052122000000 +0.000020332500000,0.000130344000000,0.000026258500000,0.000013028333333,0.000026851000000,0.000184863000000,0.000057257000000,0.000084530000000,0.000217652000000,0.000063974000000,0.000095974000000,0.000280073000000,0.000053307000000 +0.000021320500000,0.000114542000000,0.000027048500000,0.000013028333333,0.000043049000000,0.000181307000000,0.000058838000000,0.000032777000000,0.000184072000000,0.000063578000000,0.000117307000000,0.000359480000000,0.000052517000000 +0.000020135000000,0.000097949000000,0.000028826500000,0.000013160000000,0.000028036500000,0.000218048000000,0.000057258000000,0.000025863500000,0.000183677000000,0.000067925000000,0.000096764000000,0.000278098000000,0.000052122000000 +0.000020135000000,0.000114937000000,0.000030407000000,0.000039102333333,0.000029221500000,0.000182888000000,0.000057258000000,0.000026851000000,0.000186443000000,0.000065554000000,0.000137851000000,0.000312468000000,0.000072665000000 +0.000020333000000,0.000096369000000,0.000025666000000,0.000042394666667,0.000027049000000,0.000183282000000,0.000057258000000,0.000025271000000,0.000218048000000,0.000062393000000,0.000102690000000,0.000280072000000,0.000050937000000 +0.000020135000000,0.000135876000000,0.000025863500000,0.000024353333333,0.000026851000000,0.000181702000000,0.000077011000000,0.000025271000000,0.000183282000000,0.000062789000000,0.000203431000000,0.000359875000000,0.000050937000000 +0.000020135000000,0.000114937000000,0.000026851500000,0.000013818666667,0.000026654000000,0.000218048000000,0.000058838000000,0.000026061000000,0.000184468000000,0.000063184000000,0.000133505000000,0.000275332000000,0.000052122000000 +0.000020333000000,0.000118097000000,0.000026259000000,0.000013555000000,0.000026851000000,0.000186839000000,0.000057258000000,0.000024876000000,0.000185258000000,0.000066740000000,0.000096369000000,0.000310492000000,0.000053307000000 +0.000021320000000,0.000096369000000,0.000026653500000,0.000026592000000,0.000027049000000,0.000183283000000,0.000057258000000,0.000026061000000,0.000217653000000,0.000065950000000,0.000164714000000,0.000277702000000,0.000050937000000 +0.000027444000000,0.000116122000000,0.000026653500000,0.000013555000000,0.000061221500000,0.000186048000000,0.000081751000000,0.000026456500000,0.000184468000000,0.000063184000000,0.000121653000000,0.000485504000000,0.000053307000000 +0.000027246000000,0.000135875000000,0.000026851500000,0.000013160000000,0.000027246000000,0.000252023000000,0.000070690000000,0.000025863500000,0.000186838000000,0.000067134000000,0.000096369000000,0.000326295000000,0.000069505000000 +0.000020332500000,0.000115727000000,0.000026456000000,0.000013291666667,0.000028036500000,0.000182097000000,0.000057258000000,0.000026258500000,0.000181702000000,0.000064764000000,0.000118492000000,0.000279283000000,0.000054887000000 +0.000020332500000,0.000095974000000,0.000027048500000,0.000013028333333,0.000028431500000,0.000185258000000,0.000057653000000,0.000042654000000,0.000218838000000,0.000065159000000,0.000117308000000,0.000277702000000,0.000052122000000 +0.000020530500000,0.000097159000000,0.000026851500000,0.000013028666667,0.000027246500000,0.000181702000000,0.000091233000000,0.000026258500000,0.000184863000000,0.000063579000000,0.000110591000000,0.000277307000000,0.000051727000000 +0.000021123000000,0.000116122000000,0.000044826500000,0.000013028333333,0.000027641000000,0.000195925000000,0.000057258000000,0.000026258500000,0.000184863000000,0.000116122000000,0.000117702000000,0.000274541000000,0.000051332000000 +0.000020332500000,0.000116517000000,0.000026456000000,0.000013028333333,0.000028036500000,0.000182097000000,0.000058838000000,0.000027641500000,0.000183678000000,0.000066345000000,0.000096369000000,0.000279677000000,0.000052122000000 +0.000020332500000,0.000116122000000,0.000025863500000,0.000013028333333,0.000027246000000,0.000181307000000,0.000060023000000,0.000026851000000,0.000253208000000,0.000063579000000,0.000118097000000,0.000280862000000,0.000052517000000 +0.000020332500000,0.000117702000000,0.000027048500000,0.000013028666667,0.000039888500000,0.000185258000000,0.000058838000000,0.000025073500000,0.000183282000000,0.000062789000000,0.000118888000000,0.000276912000000,0.000051332000000 +0.000037320500000,0.000131924000000,0.000028826500000,0.000013028333333,0.000026258500000,0.000195529000000,0.000057258000000,0.000028431500000,0.000187628000000,0.000062789000000,0.000117702000000,0.000275332000000,0.000051332000000 +0.000020332500000,0.000097555000000,0.000030406500000,0.000013028333333,0.000026456000000,0.000188418000000,0.000057258000000,0.000026456000000,0.000184073000000,0.000065555000000,0.000117702000000,0.000310888000000,0.000051332000000 +0.000020333000000,0.000116122000000,0.000025666000000,0.000013028333333,0.000026061000000,0.000184072000000,0.000058443000000,0.000026061000000,0.000186048000000,0.000064369000000,0.000096764000000,0.000276517000000,0.000050936000000 +0.000020333000000,0.000096764000000,0.000025863500000,0.000013028333333,0.000027641500000,0.000187628000000,0.000095579000000,0.000026653500000,0.000183678000000,0.000079777000000,0.000096369000000,0.000379233000000,0.000051332000000 +0.000020332500000,0.000114937000000,0.000052727500000,0.000014345333333,0.000028629000000,0.000419529000000,0.000058443000000,0.000026061500000,0.000181307000000,0.000063579000000,0.000115727000000,0.000289949000000,0.000052122000000 +0.000020332500000,0.000117703000000,0.000026258500000,0.000013028333333,0.000027049000000,0.000195530000000,0.000060023000000,0.000026654000000,0.000201455000000,0.000062789000000,0.000131134000000,0.000275726000000,0.000087283000000 +0.000020332500000,0.000095974000000,0.000026851500000,0.000013423333333,0.000027444000000,0.000220023000000,0.000057653000000,0.000026851000000,0.000183678000000,0.000062789000000,0.000116912000000,0.000275332000000,0.000051727000000 +0.000020135500000,0.000116122000000,0.000027049000000,0.000013555333333,0.000043838500000,0.000183677000000,0.000057653000000,0.000026653500000,0.000187233000000,0.000065159000000,0.000095579000000,0.000292320000000,0.000058443000000 +0.000020333000000,0.000095974000000,0.000026851500000,0.000013028333333,0.000026654000000,0.000182097000000,0.000057258000000,0.000025468500000,0.000187234000000,0.000065949000000,0.000117307000000,0.000276122000000,0.000051727000000 +0.000020135000000,0.000115727000000,0.000026456500000,0.000024353333333,0.000026258500000,0.000184468000000,0.000057653000000,0.000025468500000,0.000216467000000,0.000067135000000,0.000096369000000,0.000309702000000,0.000051727000000 +0.000020332500000,0.000114937000000,0.000027048500000,0.000013423333333,0.000027049000000,0.000215677000000,0.000057258000000,0.000025468500000,0.000183282000000,0.000101900000000,0.000119282000000,0.000277702000000,0.000051727000000 +0.000020333000000,0.000116122000000,0.000036925500000,0.000013028333333,0.000026061000000,0.000186048000000,0.000099925000000,0.000062012000000,0.000180912000000,0.000066740000000,0.000096369000000,0.000308912000000,0.000056073000000 +0.000020135500000,0.000115727000000,0.000028036500000,0.000013028333333,0.000027049000000,0.000187233000000,0.000058838000000,0.000026258500000,0.000187233000000,0.000065949000000,0.000094789000000,0.000280467000000,0.000052122000000 +0.000020332500000,0.000097159000000,0.000026456500000,0.000013423333333,0.000027443500000,0.000184863000000,0.000060023000000,0.000026456500000,0.000215282000000,0.000066739000000,0.000116122000000,0.000328270000000,0.000051332000000 +0.000020332500000,0.000119678000000,0.000025863500000,0.000013160333333,0.000027641500000,0.000222393000000,0.000059234000000,0.000025863500000,0.000185653000000,0.000063579000000,0.000096764000000,0.000274542000000,0.000052122000000 +0.000021123000000,0.000096369000000,0.000027246000000,0.000013028333333,0.000027641500000,0.000182887000000,0.000058838000000,0.000026258500000,0.000180517000000,0.000068320000000,0.000095974000000,0.000363826000000,0.000051332000000 +0.000020332500000,0.000116122000000,0.000029024000000,0.000013028333333,0.000026851000000,0.000182098000000,0.000058048000000,0.000026851000000,0.000183678000000,0.000065554000000,0.000116912000000,0.000274542000000,0.000050937000000 +0.000020333000000,0.000094788000000,0.000030407000000,0.000013555000000,0.000026654000000,0.000184468000000,0.000057653000000,0.000027246500000,0.000213702000000,0.000083728000000,0.000116912000000,0.000314838000000,0.000052122000000 +0.000020333000000,0.000199085000000,0.000025863500000,0.000013028333333,0.000026653500000,0.000185258000000,0.000057653000000,0.000027246000000,0.000186838000000,0.000064369000000,0.000116912000000,0.000278493000000,0.000073061000000 +0.000054900500000,0.000109011000000,0.000054110500000,0.000013423333333,0.000048184500000,0.000184073000000,0.000058838000000,0.000032579500000,0.000184468000000,0.000064764000000,0.000117308000000,0.000279283000000,0.000052122000000 +0.000021122500000,0.000115727000000,0.000027048500000,0.000013028333333,0.000027839000000,0.000183283000000,0.000058838000000,0.000024678000000,0.000187628000000,0.000063184000000,0.000115727000000,0.000279677000000,0.000051727000000 +0.000020332500000,0.000116517000000,0.000026258500000,0.000013028333333,0.000027246000000,0.000184073000000,0.000057258000000,0.000024875500000,0.000214888000000,0.000063974000000,0.000119282000000,0.000280468000000,0.000052122000000 +0.000021122500000,0.000130344000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000184863000000,0.000057258000000,0.000028629000000,0.000184468000000,0.000064764000000,0.000115727000000,0.000277702000000,0.000051727000000 +0.000020333000000,0.000105455000000,0.000027048500000,0.000013028333333,0.000044826500000,0.000182097000000,0.000058443000000,0.000026061000000,0.000183283000000,0.000062789000000,0.000096765000000,0.000279677000000,0.000051727000000 +0.000020333000000,0.000117702000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000182887000000,0.000057653000000,0.000026258500000,0.000184467000000,0.000063579000000,0.000095974000000,0.000276122000000,0.000052123000000 +0.000020332500000,0.000096764000000,0.000042061000000,0.000013028333333,0.000027246500000,0.000218048000000,0.000058838000000,0.000025073500000,0.000199085000000,0.000199875000000,0.000117307000000,0.000277307000000,0.000066740000000 +0.000020135500000,0.000117702000000,0.000037320500000,0.000013028333333,0.000028036500000,0.000184072000000,0.000058838000000,0.000026258500000,0.000184468000000,0.000079382000000,0.000153653000000,0.000315233000000,0.000052122000000 +0.000020333000000,0.000149703000000,0.000026653500000,0.000013028333333,0.000027641000000,0.000182493000000,0.000057653000000,0.000042653500000,0.000184072000000,0.000065554000000,0.000117702000000,0.000279677000000,0.000052517000000 +0.000027444000000,0.000116517000000,0.000028036000000,0.000019612666667,0.000027246000000,0.000181702000000,0.000058838000000,0.000025666000000,0.000185258000000,0.000063184000000,0.000095974000000,0.000534097000000,0.000052912000000 +0.000020530000000,0.000096369000000,0.000026456000000,0.000013028333333,0.000028826500000,0.000218442000000,0.000057258000000,0.000024480500000,0.000181307000000,0.000065950000000,0.000117703000000,0.000276912000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000026259000000,0.000013028333333,0.000026258500000,0.000183282000000,0.000057258000000,0.000026456000000,0.000179727000000,0.000108221000000,0.000096369000000,0.000274936000000,0.000051332000000 +0.000020135500000,0.000095973000000,0.000027246500000,0.000013423666667,0.000044036000000,0.000182098000000,0.000058443000000,0.000025666000000,0.000229900000000,0.000063184000000,0.000119677000000,0.000326690000000,0.000052912000000 +0.000020332500000,0.000100320000000,0.000029024000000,0.000013028333333,0.000026851500000,0.000181702000000,0.000057653000000,0.000025863500000,0.000233060000000,0.000063184000000,0.000096369000000,0.000279678000000,0.000051332000000 +0.000020332500000,0.000118098000000,0.000030406500000,0.000013555000000,0.000027048500000,0.000251234000000,0.000057653000000,0.000026061000000,0.000183283000000,0.000066740000000,0.000115727000000,0.000278493000000,0.000052913000000 +0.000020333000000,0.000115332000000,0.000077221500000,0.000013028333333,0.000026654000000,0.000182098000000,0.000057653000000,0.000025863500000,0.000183677000000,0.000062788000000,0.000096369000000,0.000276122000000,0.000051332000000 +0.000021320000000,0.000115727000000,0.000026259000000,0.000013028333333,0.000027443500000,0.000182887000000,0.000112171000000,0.000026654000000,0.000183678000000,0.000063974000000,0.000118097000000,0.000276122000000,0.000052122000000 +0.000020332500000,0.000117308000000,0.000027246500000,0.000012896666667,0.000028234000000,0.000182492000000,0.000057258000000,0.000026653500000,0.000316814000000,0.000065949000000,0.000117702000000,0.000273752000000,0.000051727000000 +0.000039493000000,0.000137851000000,0.000026061000000,0.000013028333333,0.000026456000000,0.000228319000000,0.000058443000000,0.000026654000000,0.000197504000000,0.000103480000000,0.000118097000000,0.000276517000000,0.000052122000000 +0.000020333000000,0.000116912000000,0.000027048500000,0.000013028333333,0.000026653500000,0.000182098000000,0.000057258000000,0.000028234000000,0.000187234000000,0.000065950000000,0.000096369000000,0.000312468000000,0.000072665000000 +0.000020135000000,0.000096764000000,0.000026851500000,0.000013028333333,0.000027048500000,0.000183283000000,0.000057653000000,0.000026258500000,0.000184863000000,0.000067135000000,0.000113751000000,0.000282047000000,0.000054493000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013423333333,0.000029419000000,0.000182888000000,0.000060023000000,0.000026653500000,0.000181702000000,0.000065949000000,0.000095184000000,0.000312863000000,0.000051332000000 +0.000020135000000,0.000116122000000,0.000042851000000,0.000013028333333,0.000027641000000,0.000251233000000,0.000058838000000,0.000033962500000,0.000185653000000,0.000065555000000,0.000117308000000,0.000277307000000,0.000053308000000 +0.000020135000000,0.000130344000000,0.000027048500000,0.000013160000000,0.000026456000000,0.000185653000000,0.000057258000000,0.000035542500000,0.000184863000000,0.000063184000000,0.000094394000000,0.000308912000000,0.000051332000000 +0.000021122500000,0.000095974000000,0.000027246500000,0.000013423333333,0.000027444000000,0.000181702000000,0.000057653000000,0.000041863500000,0.000218048000000,0.000067134000000,0.000095974000000,0.000279283000000,0.000071480000000 +0.000020333000000,0.000096369000000,0.000028036000000,0.000013423333333,0.000026259000000,0.000183678000000,0.000057653000000,0.000025666000000,0.000180517000000,0.000096764000000,0.000093999000000,0.000311283000000,0.000051727000000 +0.000020332500000,0.000115332000000,0.000026456000000,0.000013160000000,0.000026061000000,0.000183283000000,0.000058838000000,0.000026456000000,0.000185258000000,0.000079381000000,0.000115332000000,0.000273752000000,0.000054493000000 +0.000054901000000,0.000115727000000,0.000026456500000,0.000013028333333,0.000027444000000,0.000185653000000,0.000058838000000,0.000026061000000,0.000184863000000,0.000067134000000,0.000117307000000,0.000298245000000,0.000051727000000 +0.000020135000000,0.000139430000000,0.000026851500000,0.000020139333333,0.000053913000000,0.000181703000000,0.000057258000000,0.000026654000000,0.000232665000000,0.000063184000000,0.000095579000000,0.000275331000000,0.000050937000000 +0.000020333000000,0.000116122000000,0.000029024000000,0.000013555333333,0.000027443500000,0.000206986000000,0.000057258000000,0.000026851000000,0.000183677000000,0.000066739000000,0.000115727000000,0.000308122000000,0.000053307000000 +0.000020135500000,0.000095974000000,0.000064579500000,0.000013818333333,0.000026851000000,0.000184073000000,0.000058048000000,0.000026851500000,0.000184072000000,0.000064764000000,0.000096369000000,0.000277702000000,0.000052912000000 +0.000020333000000,0.000095974000000,0.000025863500000,0.000013160000000,0.000027839000000,0.000183283000000,0.000057653000000,0.000025863500000,0.000187234000000,0.000063183000000,0.000095184000000,0.000288368000000,0.000066344000000 +0.000020333000000,0.000094394000000,0.000025666000000,0.000013028333333,0.000028826500000,0.000181702000000,0.000057258000000,0.000036727500000,0.000216862000000,0.000137851000000,0.000170640000000,0.000276517000000,0.000052912000000 +0.000020135000000,0.000095974000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000255973000000,0.000057258000000,0.000026061500000,0.000186443000000,0.000065554000000,0.000133900000000,0.000314443000000,0.000052122000000 +0.000020332500000,0.000118098000000,0.000026061000000,0.000013028333333,0.000027641000000,0.000183282000000,0.000060024000000,0.000025468500000,0.000186838000000,0.000063579000000,0.000117307000000,0.000281653000000,0.000051332000000 +0.000020332500000,0.000117702000000,0.000026851000000,0.000013555333333,0.000027049000000,0.000183678000000,0.000057653000000,0.000025271000000,0.000184467000000,0.000063184000000,0.000096369000000,0.000306147000000,0.000051727000000 +0.000037122500000,0.000097159000000,0.000026851500000,0.000013028666667,0.000047592000000,0.000184073000000,0.000057653000000,0.000025666000000,0.000218443000000,0.000062788000000,0.000118098000000,0.000276912000000,0.000054098000000 +0.000020332500000,0.000096764000000,0.000026653500000,0.000013028666667,0.000027246500000,0.000219233000000,0.000058838000000,0.000028431000000,0.000184863000000,0.000065554000000,0.000095579000000,0.000327875000000,0.000066344000000 +0.000020530000000,0.000095974000000,0.000033172000000,0.000013028333333,0.000027641000000,0.000186838000000,0.000058444000000,0.000026851000000,0.000181703000000,0.000063974000000,0.000117307000000,0.000280072000000,0.000053307000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000014740333333,0.000028036500000,0.000181703000000,0.000057653000000,0.000026259000000,0.000184863000000,0.000097554000000,0.000115332000000,0.000349604000000,0.000051332000000 +0.000020332500000,0.000097160000000,0.000026851500000,0.000019481000000,0.000027838500000,0.000185653000000,0.000057258000000,0.000046802000000,0.000564911000000,0.000063579000000,0.000118887000000,0.000276517000000,0.000054098000000 +0.000020332500000,0.000096369000000,0.000028036500000,0.000013028666667,0.000026851500000,0.000215283000000,0.000057653000000,0.000026456500000,0.000187629000000,0.000065159000000,0.000095184000000,0.000310887000000,0.000053308000000 +0.000020135000000,0.000096764000000,0.000026456000000,0.000013028666667,0.000027246000000,0.000212122000000,0.000057258000000,0.000026061000000,0.000217258000000,0.000063579000000,0.000117307000000,0.000279282000000,0.000053308000000 +0.000020135500000,0.000115727000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000181702000000,0.000057653000000,0.000026061000000,0.000185258000000,0.000063184000000,0.000097159000000,0.000314838000000,0.000052912000000 +0.000020135000000,0.000174197000000,0.000026851000000,0.000013160000000,0.000054703000000,0.000181702000000,0.000058838000000,0.000025863500000,0.000183283000000,0.000065949000000,0.000096369000000,0.000279678000000,0.000052517000000 +0.000020332500000,0.000095974000000,0.000044629000000,0.000013028333333,0.000026653500000,0.000215678000000,0.000057653000000,0.000025863500000,0.000184468000000,0.000062789000000,0.000117307000000,0.000276912000000,0.000053703000000 +0.000020135500000,0.000116912000000,0.000030604500000,0.000013028333333,0.000028826500000,0.000183678000000,0.000057653000000,0.000027048500000,0.000217258000000,0.000085307000000,0.000096369000000,0.000278887000000,0.000050937000000 +0.000020332500000,0.000115727000000,0.000026456000000,0.000013028666667,0.000028036500000,0.000185653000000,0.000058048000000,0.000025666000000,0.000183677000000,0.000067135000000,0.000117703000000,0.000279283000000,0.000052912000000 +0.000020135000000,0.000131925000000,0.000026259000000,0.000013028333333,0.000027444000000,0.000184072000000,0.000057258000000,0.000035938000000,0.000184073000000,0.000063974000000,0.000098345000000,0.000274542000000,0.000051332000000 +0.000020135000000,0.000210937000000,0.000026851500000,0.000013028333333,0.000026258500000,0.000208961000000,0.000058048000000,0.000025863500000,0.000183282000000,0.000063974000000,0.000096369000000,0.000277702000000,0.000052517000000 +0.000020135000000,0.000117308000000,0.000026258500000,0.000013028666667,0.000026061000000,0.000181702000000,0.000057653000000,0.000025468500000,0.000213702000000,0.000063184000000,0.000095974000000,0.000381604000000,0.000109802000000 +0.000020135000000,0.000095974000000,0.000027443500000,0.000013028333333,0.000027246500000,0.000183678000000,0.000058444000000,0.000026653500000,0.000184073000000,0.000070690000000,0.000095974000000,0.000274147000000,0.000051332000000 +0.000020135000000,0.000115332000000,0.000026851000000,0.000013028333333,0.000043048500000,0.000184073000000,0.000058443000000,0.000026258500000,0.000184073000000,0.000066740000000,0.000096369000000,0.000274147000000,0.000053308000000 +0.000020135000000,0.000131924000000,0.000043443500000,0.000013028333333,0.000026456500000,0.000182097000000,0.000057258000000,0.000026456000000,0.000184468000000,0.000100320000000,0.000096764000000,0.000276912000000,0.000050937000000 +0.000021320000000,0.000099529000000,0.000037913000000,0.000012896666667,0.000027048500000,0.000184468000000,0.000057258000000,0.000028431500000,0.000307332000000,0.000063579000000,0.000117307000000,0.000287579000000,0.000054493000000 +0.000047197000000,0.000115727000000,0.000034357500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000057653000000,0.000026258500000,0.000195925000000,0.000066739000000,0.000118887000000,0.000274542000000,0.000061999000000 +0.000028234000000,0.000096369000000,0.000027048500000,0.000025802000000,0.000026061000000,0.000201850000000,0.000058443000000,0.000026653500000,0.000180122000000,0.000063184000000,0.000095184000000,0.000306542000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000027839000000,0.000013028333333,0.000027049000000,0.000182888000000,0.000057652000000,0.000026456500000,0.000206591000000,0.000065949000000,0.000117702000000,0.000277307000000,0.000052517000000 +0.000021320500000,0.000114937000000,0.000026456000000,0.000013028333333,0.000027641000000,0.000184468000000,0.000057258000000,0.000027048500000,0.000180517000000,0.000063184000000,0.000095579000000,0.000359875000000,0.000053307000000 +0.000020135000000,0.000197900000000,0.000033567500000,0.000013028666667,0.000027049000000,0.000185258000000,0.000057653000000,0.000026258500000,0.000184863000000,0.000063183000000,0.000120073000000,0.000276517000000,0.000052912000000 +0.000020332500000,0.000131134000000,0.000027049000000,0.000013555000000,0.000043641000000,0.000272567000000,0.000057258000000,0.000025666000000,0.000180517000000,0.000070295000000,0.000116913000000,0.000313258000000,0.000052912000000 +0.000020135000000,0.000096369000000,0.000028826500000,0.000013555000000,0.000027246000000,0.000213702000000,0.000058838000000,0.000025863500000,0.000297455000000,0.000095579000000,0.000117307000000,0.000278887000000,0.000051332000000 +0.000020135000000,0.000138640000000,0.000030604000000,0.000013423333333,0.000027443500000,0.000185258000000,0.000057653000000,0.000026851000000,0.000180912000000,0.000067530000000,0.000117703000000,0.000349603000000,0.000053307000000 +0.000027839000000,0.000116517000000,0.000026456000000,0.000013028333333,0.000027443500000,0.000181702000000,0.000057258000000,0.000030012000000,0.000184073000000,0.000063184000000,0.000117703000000,0.000276517000000,0.000119677000000 +0.000021123000000,0.000095974000000,0.000026258500000,0.000013028333333,0.000026456500000,0.000186838000000,0.000058839000000,0.000043641500000,0.000182493000000,0.000062789000000,0.000103085000000,0.000311282000000,0.000051332000000 +0.000020332500000,0.000115727000000,0.000027049000000,0.000019349333333,0.000028036500000,0.000183283000000,0.000057653000000,0.000028234000000,0.000230690000000,0.000062788000000,0.000109801000000,0.000274147000000,0.000050937000000 +0.000020333000000,0.000096369000000,0.000026258500000,0.000013028666667,0.000027641000000,0.000183678000000,0.000057258000000,0.000027641500000,0.000181307000000,0.000067135000000,0.000117307000000,0.000346838000000,0.000052122000000 +0.000021320500000,0.000152073000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000184467000000,0.000058839000000,0.000027048500000,0.000184468000000,0.000063974000000,0.000096764000000,0.000328665000000,0.000051332000000 +0.000020135000000,0.000097554000000,0.000027049000000,0.000013028333333,0.000028233500000,0.000196319000000,0.000057653000000,0.000027246000000,0.000183678000000,0.000067135000000,0.000094789000000,0.000311283000000,0.000051332000000 +0.000020332500000,0.000116517000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000182888000000,0.000058838000000,0.000026851000000,0.000199480000000,0.000067529000000,0.000095974000000,0.000276912000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027049000000,0.000182492000000,0.000060813000000,0.000026851000000,0.000184862000000,0.000065159000000,0.000094393000000,0.000372122000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000027048500000,0.000013818666667,0.000027443500000,0.000217653000000,0.000058443000000,0.000026653500000,0.000184863000000,0.000065554000000,0.000096369000000,0.000321949000000,0.000050937000000 +0.000030011500000,0.000115727000000,0.000027048500000,0.000013555000000,0.000027443500000,0.000181702000000,0.000061209000000,0.000041863500000,0.000237406000000,0.000063183000000,0.000094788000000,0.000275727000000,0.000050936000000 +0.000021320500000,0.000096369000000,0.000028036000000,0.000013028333333,0.000027839000000,0.000181308000000,0.000058443000000,0.000025863500000,0.000180517000000,0.000063579000000,0.000095974000000,0.000277702000000,0.000053307000000 +0.000021123000000,0.000096369000000,0.000026456000000,0.000013555000000,0.000026851000000,0.000184072000000,0.000057653000000,0.000026061000000,0.000180912000000,0.000063579000000,0.000113752000000,0.000280073000000,0.000050937000000 +0.000020333000000,0.000115332000000,0.000026258500000,0.000013028333333,0.000026258500000,0.000252024000000,0.000058838000000,0.000026061000000,0.000182888000000,0.000063184000000,0.000157604000000,0.000274541000000,0.000051332000000 +0.000021320000000,0.000096369000000,0.000026653500000,0.000013028333333,0.000026654000000,0.000185258000000,0.000058838000000,0.000026653500000,0.000252418000000,0.000064369000000,0.000175776000000,0.000293504000000,0.000123233000000 +0.000020332500000,0.000116912000000,0.000029024000000,0.000013028666667,0.000027246000000,0.000184468000000,0.000058048000000,0.000026851000000,0.000188024000000,0.000063184000000,0.000135085000000,0.000275727000000,0.000053307000000 +0.000020135000000,0.000096369000000,0.000030604500000,0.000013555000000,0.000026456000000,0.000182492000000,0.000075826000000,0.000026456000000,0.000184073000000,0.000064369000000,0.000105060000000,0.000281258000000,0.000052517000000 +0.000020135000000,0.000116122000000,0.000026061000000,0.000013028333333,0.000026258500000,0.000216863000000,0.000075431000000,0.000026061000000,0.000184073000000,0.000067134000000,0.000106640000000,0.000274146000000,0.000051332000000 +0.000020135000000,0.000096764000000,0.000026654000000,0.000013160000000,0.000028826500000,0.000183678000000,0.000058443000000,0.000026654000000,0.000232666000000,0.000062789000000,0.000105061000000,0.000280862000000,0.000051332000000 +0.000020332500000,0.000094789000000,0.000026851000000,0.000013028333333,0.000028036500000,0.000182492000000,0.000058839000000,0.000026653500000,0.000188023000000,0.000063184000000,0.000128369000000,0.000284023000000,0.000051332000000 +0.000020135000000,0.000095974000000,0.000036332500000,0.000013555000000,0.000028036500000,0.000182098000000,0.000057653000000,0.000026061000000,0.000182098000000,0.000066345000000,0.000127974000000,0.000343678000000,0.000050937000000 +0.000021122500000,0.000122838000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000251233000000,0.000057257000000,0.000025863500000,0.000184467000000,0.000066739000000,0.000118097000000,0.000272962000000,0.000053703000000 +0.000020333000000,0.000117308000000,0.000027049000000,0.000020534666667,0.000027444000000,0.000183283000000,0.000058049000000,0.000026258500000,0.000253999000000,0.000062788000000,0.000139431000000,0.000321949000000,0.000052912000000 +0.000020332500000,0.000095974000000,0.000026851000000,0.000013028333333,0.000034950000000,0.000183678000000,0.000058838000000,0.000026653500000,0.000186048000000,0.000065950000000,0.000106641000000,0.000274542000000,0.000052123000000 +0.000020332500000,0.000094789000000,0.000026061000000,0.000013028333333,0.000027641000000,0.000182492000000,0.000058838000000,0.000026456000000,0.000184467000000,0.000065555000000,0.000101900000000,0.000309702000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000026654000000,0.000013028333333,0.000026653500000,0.000182492000000,0.000079382000000,0.000026654000000,0.000205406000000,0.000068320000000,0.000122048000000,0.000277307000000,0.000052122000000 +0.000020135500000,0.000129554000000,0.000026851000000,0.000012896666667,0.000026654000000,0.000181307000000,0.000058048000000,0.000027048500000,0.000186838000000,0.000063974000000,0.000124814000000,0.000343678000000,0.000051727000000 +0.000020333000000,0.000115726000000,0.000028036500000,0.000013028333333,0.000026061500000,0.000183678000000,0.000057258000000,0.000071493000000,0.000181702000000,0.000111382000000,0.000124418000000,0.000280468000000,0.000122048000000 +0.000021122500000,0.000096369000000,0.000033172000000,0.000013028333333,0.000027443500000,0.000183282000000,0.000057257000000,0.000049567000000,0.000184863000000,0.000063579000000,0.000100715000000,0.000310492000000,0.000052123000000 +0.000028233500000,0.000100715000000,0.000026456000000,0.000013028333333,0.000027246500000,0.000181702000000,0.000057258000000,0.000043641500000,0.000239382000000,0.000063974000000,0.000124418000000,0.000274542000000,0.000053308000000 +0.000021320500000,0.000115332000000,0.000027246000000,0.000013160000000,0.000027246000000,0.000218838000000,0.000058838000000,0.000026258500000,0.000184073000000,0.000063579000000,0.000124419000000,0.000308912000000,0.000052912000000 +0.000020135000000,0.000096369000000,0.000029024000000,0.000013160000000,0.000044628500000,0.000183677000000,0.000057258000000,0.000026654000000,0.000184468000000,0.000063184000000,0.000141801000000,0.000276912000000,0.000052122000000 +0.000020135000000,0.000114937000000,0.000030604500000,0.000014345333333,0.000026456000000,0.000217653000000,0.000057258000000,0.000043246000000,0.000184073000000,0.000063184000000,0.000102690000000,0.000344863000000,0.000052912000000 +0.000020332500000,0.000115727000000,0.000026061000000,0.000014345333333,0.000026258500000,0.000186838000000,0.000095974000000,0.000026258500000,0.000218048000000,0.000067135000000,0.000125999000000,0.000277307000000,0.000051332000000 +0.000020332500000,0.000115727000000,0.000026061000000,0.000013818666667,0.000027444000000,0.000184468000000,0.000075035000000,0.000026654000000,0.000184468000000,0.000095578000000,0.000124418000000,0.000300221000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000027246500000,0.000013818333333,0.000026061000000,0.000184468000000,0.000073455000000,0.000026061000000,0.000184863000000,0.000063184000000,0.000100319000000,0.000278887000000,0.000107036000000 +0.000036925500000,0.000096369000000,0.000026061000000,0.000014213333333,0.000028234000000,0.000278097000000,0.000057653000000,0.000026258500000,0.000188023000000,0.000069505000000,0.000107826000000,0.000278887000000,0.000053308000000 +0.000021320000000,0.000096764000000,0.000026851000000,0.000013950000000,0.000027246500000,0.000182887000000,0.000057258000000,0.000026061000000,0.000267035000000,0.000065950000000,0.000159974000000,0.000278493000000,0.000051332000000 +0.000020135000000,0.000095974000000,0.000027246000000,0.000014345333333,0.000027444000000,0.000182887000000,0.000060023000000,0.000025666000000,0.000183283000000,0.000063974000000,0.000102294000000,0.000276912000000,0.000052912000000 +0.000020333000000,0.000096764000000,0.000027048500000,0.000027514000000,0.000054308000000,0.000186838000000,0.000057653000000,0.000026258500000,0.000187233000000,0.000062789000000,0.000100715000000,0.000454689000000,0.000052122000000 +0.000020332500000,0.000115727000000,0.000026061000000,0.000015135333333,0.000060629000000,0.000182492000000,0.000091233000000,0.000027049000000,0.000183677000000,0.000063183000000,0.000121653000000,0.000310492000000,0.000143381000000 +0.000020135000000,0.000130344000000,0.000026851500000,0.000013818333333,0.000077221500000,0.000182493000000,0.000057258000000,0.000026851500000,0.000197505000000,0.000108221000000,0.000199085000000,0.000277307000000,0.000086492000000 +0.000020332500000,0.000094393000000,0.000026851000000,0.000013818333333,0.000059641000000,0.000181703000000,0.000057258000000,0.000026061000000,0.000184862000000,0.000065159000000,0.000141011000000,0.000306936000000,0.000065554000000 +0.000021320000000,0.000117702000000,0.000044826500000,0.000013686666667,0.000073863500000,0.000184863000000,0.000057653000000,0.000025863500000,0.000185258000000,0.000067135000000,0.000124813000000,0.000274937000000,0.000051332000000 +0.000020333000000,0.000096764000000,0.000026258500000,0.000013686666667,0.000061419000000,0.000476813000000,0.000058838000000,0.000026456000000,0.000184073000000,0.000063184000000,0.000100714000000,0.000314838000000,0.000052123000000 +0.000020332500000,0.000096764000000,0.000026061000000,0.000013818666667,0.000035542500000,0.000211332000000,0.000060023000000,0.000026259000000,0.000204221000000,0.000067134000000,0.000127184000000,0.000282048000000,0.000052518000000 +0.000020135500000,0.000110196000000,0.000027246000000,0.000026855666667,0.000028036500000,0.000222393000000,0.000058443000000,0.000025270500000,0.000184073000000,0.000067530000000,0.000124023000000,0.000278887000000,0.000052123000000 +0.000020135000000,0.000095974000000,0.000028826500000,0.000014477000000,0.000027838500000,0.000182492000000,0.000057653000000,0.000028629000000,0.000187628000000,0.000068320000000,0.000102295000000,0.000279282000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000030407000000,0.000013818666667,0.000051937500000,0.000183678000000,0.000097554000000,0.000026061000000,0.000253999000000,0.000063578000000,0.000124813000000,0.000275727000000,0.000052122000000 +0.000020135500000,0.000095974000000,0.000026061000000,0.000013818666667,0.000027839000000,0.000184468000000,0.000058838000000,0.000042061000000,0.000241357000000,0.000063974000000,0.000124813000000,0.000282048000000,0.000050937000000 +0.000020135500000,0.000096369000000,0.000025863500000,0.000012896666667,0.000029617000000,0.000197110000000,0.000060023000000,0.000026061000000,0.000183282000000,0.000067134000000,0.000124023000000,0.000278888000000,0.000051332000000 +0.000020332500000,0.000205011000000,0.000026851000000,0.000014213333333,0.000029814500000,0.000182887000000,0.000058839000000,0.000026061000000,0.000184468000000,0.000065554000000,0.000122443000000,0.000277702000000,0.000051727000000 +0.000020135500000,0.000129949000000,0.000026061000000,0.000012896666667,0.000030209000000,0.000186048000000,0.000060024000000,0.000025863500000,0.000541998000000,0.000065949000000,0.000102295000000,0.000276517000000,0.000051332000000 +0.000020135000000,0.000118097000000,0.000026851000000,0.000013423333333,0.000029024000000,0.000187628000000,0.000057653000000,0.000026258500000,0.000205011000000,0.000065949000000,0.000124813000000,0.000278098000000,0.000051727000000 +0.000020332500000,0.000116517000000,0.000027048500000,0.000013292000000,0.000027838500000,0.000183677000000,0.000057653000000,0.000026258500000,0.000218048000000,0.000063184000000,0.000124023000000,0.000272171000000,0.000058443000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013028333333,0.000029814000000,0.000181702000000,0.000057258000000,0.000026653500000,0.000184863000000,0.000142591000000,0.000102295000000,0.000311677000000,0.000052123000000 +0.000020332500000,0.000105455000000,0.000026258500000,0.000012896666667,0.000035542500000,0.000183678000000,0.000077802000000,0.000026061500000,0.000184468000000,0.000066740000000,0.000101900000000,0.000276517000000,0.000085703000000 +0.000020135000000,0.000096369000000,0.000027246500000,0.000020007666667,0.000028036500000,0.000201455000000,0.000057653000000,0.000036332500000,0.000181702000000,0.000083332000000,0.000101900000000,0.000315233000000,0.000051728000000 +0.000020135000000,0.000096369000000,0.000044036000000,0.000013028333333,0.000029814500000,0.000182887000000,0.000057258000000,0.000026258500000,0.000251233000000,0.000064369000000,0.000100319000000,0.000278493000000,0.000054888000000 +0.000020332500000,0.000115332000000,0.000028036000000,0.000013028333333,0.000029221500000,0.000183282000000,0.000058838000000,0.000026061000000,0.000185258000000,0.000065554000000,0.000125208000000,0.000399381000000,0.000052122000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000013555000000,0.000027839000000,0.000188814000000,0.000058838000000,0.000026851500000,0.000183677000000,0.000064369000000,0.000127579000000,0.000274146000000,0.000051332000000 +0.000020332500000,0.000111777000000,0.000026258500000,0.000013160333333,0.000029024000000,0.000216468000000,0.000058838000000,0.000027048500000,0.000184863000000,0.000078196000000,0.000122838000000,0.000307726000000,0.000051332000000 +0.000021123000000,0.000096369000000,0.000027246500000,0.000013028333333,0.000028826500000,0.000186838000000,0.000058444000000,0.000025468500000,0.000197900000000,0.000063184000000,0.000124023000000,0.000280073000000,0.000051727000000 +0.000020332500000,0.000116517000000,0.000028826500000,0.000013028666667,0.000052728000000,0.000181703000000,0.000057653000000,0.000026061000000,0.000184073000000,0.000064369000000,0.000124419000000,0.000327875000000,0.000051332000000 +0.000037518000000,0.000116122000000,0.000030407000000,0.000013555333333,0.000028036500000,0.000184072000000,0.000096369000000,0.000026061500000,0.000181307000000,0.000063579000000,0.000101900000000,0.000275332000000,0.000052122000000 +0.000020135000000,0.000117307000000,0.000026061000000,0.000013028666667,0.000029814500000,0.000217653000000,0.000057653000000,0.000025468500000,0.000218047000000,0.000064369000000,0.000124418000000,0.000314443000000,0.000052912000000 +0.000020332500000,0.000128369000000,0.000033567000000,0.000013555333333,0.000029024000000,0.000181702000000,0.000058838000000,0.000035147500000,0.000181702000000,0.000067925000000,0.000187628000000,0.000276122000000,0.000051727000000 +0.000021123000000,0.000095974000000,0.000027049000000,0.000013028333333,0.000029024000000,0.000183282000000,0.000058838000000,0.000026653500000,0.000184863000000,0.000064369000000,0.000123628000000,0.000310493000000,0.000052122000000 +0.000020332500000,0.000117702000000,0.000025863500000,0.000013028666667,0.000029024000000,0.000184467000000,0.000057653000000,0.000026653500000,0.000183678000000,0.000096764000000,0.000102294000000,0.000283233000000,0.000052517000000 +0.000021123000000,0.000096369000000,0.000027246000000,0.000013028333333,0.000036332500000,0.000218442000000,0.000057653000000,0.000026258500000,0.000219628000000,0.000062789000000,0.000139036000000,0.000276517000000,0.000087282000000 +0.000020333000000,0.000115727000000,0.000026851000000,0.000013028333333,0.000028036000000,0.000186838000000,0.000058838000000,0.000025271000000,0.000183282000000,0.000063183000000,0.000101899000000,0.000278493000000,0.000051332000000 +0.000020332500000,0.000267035000000,0.000027048500000,0.000013028666667,0.000026653500000,0.000185653000000,0.000057653000000,0.000027048500000,0.000184863000000,0.000063184000000,0.000122838000000,0.000279678000000,0.000052517000000 +0.000020135000000,0.000116912000000,0.000026061000000,0.000013028333333,0.000027443500000,0.000182098000000,0.000072270000000,0.000025073500000,0.000185258000000,0.000063579000000,0.000101899000000,0.000276912000000,0.000052912000000 +0.000020135000000,0.000115332000000,0.000027246500000,0.000013028333333,0.000026456000000,0.000217653000000,0.000058838000000,0.000035740000000,0.000252813000000,0.000068715000000,0.000100715000000,0.000279677000000,0.000051332000000 +0.000020333000000,0.000130739000000,0.000026851500000,0.000013160000000,0.000027641500000,0.000185258000000,0.000057258000000,0.000026456500000,0.000184073000000,0.000066739000000,0.000127184000000,0.000272566000000,0.000052912000000 +0.000020135000000,0.000116122000000,0.000028036500000,0.000013818333333,0.000025863500000,0.000181308000000,0.000058838000000,0.000025073500000,0.000183283000000,0.000062394000000,0.000102690000000,0.000280467000000,0.000053307000000 +0.000020332500000,0.000115332000000,0.000026456000000,0.000019744333333,0.000027641500000,0.000183677000000,0.000057653000000,0.000026061500000,0.000181307000000,0.000065949000000,0.000102295000000,0.000319974000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026061000000,0.000013028333333,0.000027048500000,0.000251628000000,0.000057257000000,0.000026456000000,0.000214493000000,0.000062788000000,0.000102294000000,0.000280073000000,0.000052517000000 +0.000020333000000,0.000115727000000,0.000027048500000,0.000013291666667,0.000026258500000,0.000181307000000,0.000058838000000,0.000027048500000,0.000184468000000,0.000065554000000,0.000100714000000,0.000311678000000,0.000052913000000 +0.000020332500000,0.000150098000000,0.000029024000000,0.000013028333333,0.000034752500000,0.000181307000000,0.000057258000000,0.000025666000000,0.000184467000000,0.000065554000000,0.000102295000000,0.000273751000000,0.000052122000000 +0.000020332500000,0.000115332000000,0.000030407000000,0.000013555333333,0.000026851500000,0.000271381000000,0.000075035000000,0.000026258500000,0.000183677000000,0.000063184000000,0.000106641000000,0.000507233000000,0.000052912000000 +0.000020332500000,0.000114937000000,0.000026061000000,0.000013028333333,0.000026258500000,0.000181702000000,0.000057653000000,0.000026851500000,0.000184073000000,0.000063974000000,0.000122048000000,0.000280072000000,0.000051727000000 +0.000021122500000,0.000116517000000,0.000032777500000,0.000013028333333,0.000027246000000,0.000184073000000,0.000057653000000,0.000026653500000,0.000184862000000,0.000064369000000,0.000102295000000,0.000274541000000,0.000052122000000 +0.000044629000000,0.000095974000000,0.000026851000000,0.000013028333333,0.000027839000000,0.000182887000000,0.000057653000000,0.000026258500000,0.000185258000000,0.000077406000000,0.000124814000000,0.000282443000000,0.000050937000000 +0.000020135000000,0.000163924000000,0.000026258500000,0.000013028333333,0.000026456000000,0.000216863000000,0.000058048000000,0.000025666000000,0.000217653000000,0.000065159000000,0.000101900000000,0.000345258000000,0.000051332000000 +0.000020332500000,0.000096764000000,0.000027246500000,0.000012896666667,0.000027048500000,0.000251628000000,0.000057258000000,0.000025666000000,0.000201060000000,0.000067135000000,0.000101899000000,0.000277308000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000027246000000,0.000042262666667,0.000028234000000,0.000186048000000,0.000057653000000,0.000025863500000,0.000187628000000,0.000062788000000,0.000124418000000,0.000344073000000,0.000053307000000 +0.000020332500000,0.000094393000000,0.000027049000000,0.000042921333333,0.000062801500000,0.000183678000000,0.000060024000000,0.000026456000000,0.000180912000000,0.000063579000000,0.000102295000000,0.000278887000000,0.000051332000000 +0.000020135000000,0.000096764000000,0.000026456000000,0.000018295666667,0.000027049000000,0.000195529000000,0.000092418000000,0.000026258500000,0.000252024000000,0.000064764000000,0.000102295000000,0.000342887000000,0.000053307000000 +0.000020332500000,0.000116912000000,0.000033765000000,0.000036337000000,0.000026061000000,0.000181703000000,0.000057653000000,0.000026456000000,0.000184863000000,0.000063184000000,0.000102295000000,0.000276912000000,0.000084912000000 +0.000021320500000,0.000096369000000,0.000026851000000,0.000021324666667,0.000026654000000,0.000181703000000,0.000057653000000,0.000044431500000,0.000184863000000,0.000223974000000,0.000124023000000,0.000308517000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000028036500000,0.000014213666667,0.000027838500000,0.000184073000000,0.000057653000000,0.000026258500000,0.000184073000000,0.000067134000000,0.000101505000000,0.000280073000000,0.000051332000000 +0.000027246000000,0.000117702000000,0.000026258500000,0.000014345000000,0.000028036500000,0.000182887000000,0.000058838000000,0.000025271000000,0.000231875000000,0.000065949000000,0.000101110000000,0.000364615000000,0.000054888000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000029489333333,0.000026258500000,0.000182097000000,0.000059233000000,0.000025666000000,0.000184863000000,0.000063184000000,0.000101900000000,0.000276122000000,0.000051332000000 +0.000020135500000,0.000115727000000,0.000027246000000,0.000015135333333,0.000027641500000,0.000182097000000,0.000057653000000,0.000028234000000,0.000183282000000,0.000064369000000,0.000100320000000,0.000310097000000,0.000051332000000 +0.000020332500000,0.000110197000000,0.000029024000000,0.000014345333333,0.000027048500000,0.000183678000000,0.000057258000000,0.000025468500000,0.000186443000000,0.000065949000000,0.000102295000000,0.000278492000000,0.000053307000000 +0.000020135000000,0.000095974000000,0.000030604000000,0.000014608666667,0.000028234000000,0.000182493000000,0.000071480000000,0.000028431500000,0.000252023000000,0.000083331000000,0.000124419000000,0.000344862000000,0.000052517000000 +0.000020332500000,0.000118493000000,0.000033764500000,0.000013818333333,0.000027246500000,0.000183283000000,0.000057653000000,0.000026653500000,0.000184072000000,0.000063579000000,0.000124814000000,0.000277702000000,0.000053308000000 +0.000020135000000,0.000116122000000,0.000026258500000,0.000013950000000,0.000027641000000,0.000182492000000,0.000057653000000,0.000046407000000,0.000184072000000,0.000068320000000,0.000160369000000,0.000328665000000,0.000062789000000 +0.000020135000000,0.000135480000000,0.000027246000000,0.000013950333333,0.000027838500000,0.000221603000000,0.000058048000000,0.000026653500000,0.000220418000000,0.000063974000000,0.000131134000000,0.000278887000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000026456000000,0.000031201333333,0.000027444000000,0.000183283000000,0.000060024000000,0.000025666000000,0.000184468000000,0.000067530000000,0.000127579000000,0.000348813000000,0.000051332000000 +0.000030407000000,0.000096764000000,0.000027048500000,0.000026460333333,0.000027246000000,0.000182492000000,0.000057653000000,0.000025271000000,0.000187233000000,0.000062393000000,0.000120863000000,0.000275332000000,0.000051727000000 +0.000021518000000,0.000095579000000,0.000026851000000,0.000018559333333,0.000027049000000,0.000183678000000,0.000058048000000,0.000025863500000,0.000183283000000,0.000064369000000,0.000118493000000,0.000314048000000,0.000054492000000 +0.000021320000000,0.000094788000000,0.000027246000000,0.000013028333333,0.000087493000000,0.000223184000000,0.000078592000000,0.000025666000000,0.000217652000000,0.000066740000000,0.000103085000000,0.000281652000000,0.000067134000000 +0.000020332500000,0.000116517000000,0.000043048500000,0.000013028333333,0.000077419000000,0.000187233000000,0.000058443000000,0.000026061000000,0.000182097000000,0.000062394000000,0.000101899000000,0.000276912000000,0.000053307000000 +0.000020530000000,0.000094788000000,0.000027246000000,0.000014740333333,0.000078999000000,0.000181702000000,0.000057653000000,0.000026061000000,0.000187233000000,0.000063184000000,0.000102295000000,0.000427431000000,0.000051727000000 +0.000020333000000,0.000115727000000,0.000026851000000,0.000013028333333,0.000034950000000,0.000182097000000,0.000057258000000,0.000035937500000,0.000187628000000,0.000063579000000,0.000103480000000,0.000275332000000,0.000053702000000 +0.000030407000000,0.000096369000000,0.000028036500000,0.000013028333333,0.000029024000000,0.000250443000000,0.000058048000000,0.000026061000000,0.000315629000000,0.000062394000000,0.000125998000000,0.000277307000000,0.000053702000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000026654000000,0.000181703000000,0.000057653000000,0.000026851000000,0.000255578000000,0.000062789000000,0.000122838000000,0.000289949000000,0.000053307000000 +0.000020135500000,0.000096764000000,0.000025666000000,0.000013028333333,0.000027246000000,0.000181702000000,0.000057652000000,0.000026456000000,0.000184467000000,0.000067135000000,0.000146936000000,0.000280073000000,0.000053308000000 +0.000020135000000,0.000096369000000,0.000026851000000,0.000032386333333,0.000027444000000,0.000181702000000,0.000058838000000,0.000026258500000,0.000217653000000,0.000063578000000,0.000118492000000,0.000307727000000,0.000053307000000 +0.000020332500000,0.000096369000000,0.000029024000000,0.000013028333333,0.000027443500000,0.000228715000000,0.000091234000000,0.000026061000000,0.000186838000000,0.000098740000000,0.000117307000000,0.000273752000000,0.000053702000000 +0.000020135500000,0.000114542000000,0.000086307500000,0.000013028333333,0.000027246000000,0.000183678000000,0.000057258000000,0.000026258500000,0.000184468000000,0.000063184000000,0.000116912000000,0.000313257000000,0.000050937000000 +0.000020333000000,0.000096369000000,0.000027641500000,0.000013028333333,0.000062011500000,0.000184863000000,0.000058048000000,0.000026258500000,0.000186048000000,0.000063579000000,0.000116912000000,0.000326295000000,0.000054098000000 +0.000020333000000,0.000118097000000,0.000025863500000,0.000013028666667,0.000026653500000,0.000183282000000,0.000057258000000,0.000025073500000,0.000218048000000,0.000063184000000,0.000117702000000,0.000312468000000,0.000052122000000 +0.000020135000000,0.000114542000000,0.000026851000000,0.000013028666667,0.000026061000000,0.000216468000000,0.000058048000000,0.000025468500000,0.000185652000000,0.000063579000000,0.000096369000000,0.000277307000000,0.000088468000000 +0.000020333000000,0.000115727000000,0.000026259000000,0.000013028333333,0.000026654000000,0.000181702000000,0.000057258000000,0.000025666000000,0.000180517000000,0.000065554000000,0.000096764000000,0.000311678000000,0.000057653000000 +0.000020332500000,0.000120468000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000183283000000,0.000058838000000,0.000025863500000,0.000184468000000,0.000063184000000,0.000117307000000,0.000275332000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000027048500000,0.000013028333333,0.000027246000000,0.000188023000000,0.000058838000000,0.000026061500000,0.000225159000000,0.000097159000000,0.000117308000000,0.000351578000000,0.000053308000000 +0.000020333000000,0.000094394000000,0.000026851500000,0.000018032666667,0.000026456000000,0.000309702000000,0.000096369000000,0.000026061000000,0.000185653000000,0.000063579000000,0.000097159000000,0.000272962000000,0.000108221000000 +0.000021320000000,0.000113752000000,0.000026258500000,0.000013028333333,0.000026653500000,0.000183678000000,0.000072270000000,0.000026653500000,0.000185258000000,0.000067135000000,0.000116912000000,0.000311677000000,0.000054493000000 +0.000020135500000,0.000095974000000,0.000026851000000,0.000013028333333,0.000044431500000,0.000181702000000,0.000057258000000,0.000025468500000,0.000180517000000,0.000066345000000,0.000094393000000,0.000277702000000,0.000081357000000 +0.000020135500000,0.000095974000000,0.000026851500000,0.000013028333333,0.000026456000000,0.000216467000000,0.000058443000000,0.000026851000000,0.000195925000000,0.000064369000000,0.000095974000000,0.000278887000000,0.000052122000000 +0.000020135500000,0.000105060000000,0.000028036000000,0.000013028333333,0.000027246000000,0.000184072000000,0.000057258000000,0.000033370000000,0.000184468000000,0.000063974000000,0.000096764000000,0.000276912000000,0.000052122000000 +0.000021122500000,0.000095974000000,0.000026258500000,0.000013160000000,0.000027246000000,0.000185257000000,0.000057653000000,0.000026456000000,0.000180517000000,0.000065554000000,0.000096764000000,0.000273357000000,0.000053307000000 +0.000020135000000,0.000110591000000,0.000026061000000,0.000013028333333,0.000027246500000,0.000182887000000,0.000057258000000,0.000026653500000,0.000185258000000,0.000064369000000,0.000095973000000,0.000275332000000,0.000053307000000 +0.000037122500000,0.000094788000000,0.000043839000000,0.000013555000000,0.000028628500000,0.000216467000000,0.000057258000000,0.000026653500000,0.000180912000000,0.000065949000000,0.000105060000000,0.000275727000000,0.000052517000000 +0.000020135500000,0.000095974000000,0.000029024000000,0.000013423333333,0.000026654000000,0.000180912000000,0.000144171000000,0.000025863500000,0.000184072000000,0.000063579000000,0.000094789000000,0.000274937000000,0.000052123000000 +0.000020135000000,0.000096369000000,0.000030407000000,0.000013423666667,0.000028036500000,0.000184467000000,0.000074245000000,0.000025863500000,0.000180913000000,0.000066740000000,0.000117307000000,0.000280468000000,0.000069505000000 +0.000020332500000,0.000113752000000,0.000026258500000,0.000013028333333,0.000043641000000,0.000181703000000,0.000057653000000,0.000025864000000,0.000203035000000,0.000063184000000,0.000116122000000,0.000342492000000,0.000051332000000 +0.000021123000000,0.000165110000000,0.000026061500000,0.000013028333333,0.000027246500000,0.000289159000000,0.000058443000000,0.000026258500000,0.000182097000000,0.000065159000000,0.000189999000000,0.000273752000000,0.000051727000000 +0.000020332500000,0.000099925000000,0.000026851500000,0.000013160000000,0.000027839000000,0.000198690000000,0.000057653000000,0.000042653500000,0.000184467000000,0.000062789000000,0.000113357000000,0.000278887000000,0.000050937000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000026456500000,0.000187628000000,0.000057258000000,0.000026258500000,0.000180518000000,0.000063184000000,0.000117308000000,0.000276912000000,0.000052517000000 +0.000021320500000,0.000115727000000,0.000026653500000,0.000013028333333,0.000027838500000,0.000185258000000,0.000078591000000,0.000025468500000,0.000218443000000,0.000063184000000,0.000094789000000,0.000274937000000,0.000052122000000 +0.000020332500000,0.000095974000000,0.000034160000000,0.000013028333333,0.000028036500000,0.000196319000000,0.000057258000000,0.000026653500000,0.000186838000000,0.000065949000000,0.000116912000000,0.000278097000000,0.000051332000000 +0.000020332500000,0.000150887000000,0.000026851500000,0.000013160000000,0.000027048500000,0.000183677000000,0.000058838000000,0.000029419500000,0.000187628000000,0.000062788000000,0.000094789000000,0.000326689000000,0.000050937000000 +0.000020332500000,0.000116912000000,0.000026061500000,0.000013160000000,0.000026456000000,0.000181703000000,0.000060814000000,0.000025073000000,0.000187628000000,0.000062789000000,0.000096764000000,0.000274937000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013818333333,0.000035740000000,0.000220023000000,0.000058839000000,0.000026851500000,0.000218048000000,0.000063579000000,0.000114146000000,0.000318394000000,0.000051727000000 +0.000020135000000,0.000096764000000,0.000026851000000,0.000013555000000,0.000034950000000,0.000181702000000,0.000060814000000,0.000025073000000,0.000183678000000,0.000062789000000,0.000096369000000,0.000278887000000,0.000051332000000 +0.000021123000000,0.000115727000000,0.000027838500000,0.000012896666667,0.000027443500000,0.000182492000000,0.000058838000000,0.000025863500000,0.000180912000000,0.000063184000000,0.000117307000000,0.000309307000000,0.000052913000000 +0.000021320000000,0.000116517000000,0.000026061000000,0.000013555000000,0.000028431500000,0.000183282000000,0.000057258000000,0.000026258500000,0.000180122000000,0.000078196000000,0.000097159000000,0.000279282000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026456500000,0.000013028333333,0.000026456500000,0.000261505000000,0.000078591000000,0.000025863500000,0.000213702000000,0.000063184000000,0.000117307000000,0.000360270000000,0.000050936000000 +0.000021123000000,0.000096369000000,0.000027246000000,0.000012896666667,0.000028234000000,0.000180912000000,0.000059233000000,0.000026456000000,0.000184073000000,0.000069110000000,0.000096369000000,0.000282048000000,0.000052913000000 +0.000020135000000,0.000096369000000,0.000029024000000,0.000013028333333,0.000027246000000,0.000182097000000,0.000058048000000,0.000027048500000,0.000187233000000,0.000063974000000,0.000094789000000,0.000311283000000,0.000053308000000 +0.000020332500000,0.000116123000000,0.000040283500000,0.000013555000000,0.000028431500000,0.000186048000000,0.000058838000000,0.000026258500000,0.000183678000000,0.000065555000000,0.000094394000000,0.000279282000000,0.000052517000000 +0.000027444000000,0.000096369000000,0.000026061000000,0.000013028333333,0.000029616500000,0.000216468000000,0.000058839000000,0.000026654000000,0.000252419000000,0.000067530000000,0.000115332000000,0.000344073000000,0.000051727000000 +0.000020135000000,0.000128369000000,0.000026258500000,0.000013028333333,0.000029024000000,0.000183283000000,0.000058838000000,0.000025468500000,0.000186838000000,0.000065949000000,0.000116913000000,0.000288369000000,0.000051332000000 +0.000020332500000,0.000094789000000,0.000026851500000,0.000029621000000,0.000028431500000,0.000186443000000,0.000058443000000,0.000025864000000,0.000185653000000,0.000131925000000,0.000096369000000,0.000306937000000,0.000051332000000 +0.000020332500000,0.000116123000000,0.000026061000000,0.000013423666667,0.000029024000000,0.000182097000000,0.000057258000000,0.000033765000000,0.000225950000000,0.000064369000000,0.000095579000000,0.000277703000000,0.000051727000000 +0.000031197000000,0.000096764000000,0.000043838500000,0.000013028333333,0.000027443500000,0.000231480000000,0.000091628000000,0.000026061000000,0.000184863000000,0.000065555000000,0.000095579000000,0.000362246000000,0.000052912000000 +0.000021518000000,0.000097159000000,0.000027246500000,0.000013818333333,0.000027641500000,0.000183677000000,0.000057653000000,0.000026061000000,0.000184863000000,0.000063579000000,0.000115332000000,0.000272962000000,0.000052912000000 +0.000020332500000,0.000165900000000,0.000026851000000,0.000013028333333,0.000028629000000,0.000186839000000,0.000058838000000,0.000026061000000,0.000180912000000,0.000063579000000,0.000117307000000,0.000351183000000,0.000051332000000 +0.000020332500000,0.000116517000000,0.000026259000000,0.000013028333333,0.000029024000000,0.000182492000000,0.000058443000000,0.000026654000000,0.000203826000000,0.000080172000000,0.000096369000000,0.000278097000000,0.000051332000000 +0.000051147500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000028629000000,0.000182097000000,0.000060024000000,0.000025666000000,0.000184863000000,0.000065159000000,0.000117702000000,0.000334986000000,0.000052122000000 +0.000020135500000,0.000095184000000,0.000026851000000,0.000013028333333,0.000029024000000,0.000181703000000,0.000057653000000,0.000026851000000,0.000184468000000,0.000063184000000,0.000096369000000,0.000275727000000,0.000088863000000 +0.000020333000000,0.000096369000000,0.000027839000000,0.000013028333333,0.000030604000000,0.000186838000000,0.000057652000000,0.000027049000000,0.000180517000000,0.000063184000000,0.000114542000000,0.000313652000000,0.000052122000000 +0.000021320000000,0.000128764000000,0.000026456000000,0.000017505666667,0.000028234000000,0.000186048000000,0.000057258000000,0.000042851500000,0.000220418000000,0.000063974000000,0.000098740000000,0.000280468000000,0.000052517000000 +0.000020333000000,0.000096369000000,0.000033370000000,0.000013028333333,0.000028826500000,0.000186048000000,0.000128369000000,0.000025863500000,0.000184072000000,0.000063974000000,0.000095579000000,0.000274146000000,0.000052913000000 +0.000021320000000,0.000116517000000,0.000026851500000,0.000013160000000,0.000027839000000,0.000181307000000,0.000058838000000,0.000026061000000,0.000183678000000,0.000063579000000,0.000116912000000,0.000273752000000,0.000052912000000 +0.000020135000000,0.000098344000000,0.000028826500000,0.000013160000000,0.000030406500000,0.000186838000000,0.000057653000000,0.000025666000000,0.000186443000000,0.000067529000000,0.000096369000000,0.000280468000000,0.000052122000000 +0.000020135500000,0.000114937000000,0.000030406500000,0.000013555000000,0.000030604500000,0.000223974000000,0.000057258000000,0.000025863500000,0.000216862000000,0.000065554000000,0.000096764000000,0.000277307000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026456500000,0.000013423666667,0.000029814500000,0.000183677000000,0.000057258000000,0.000026258500000,0.000185257000000,0.000084517000000,0.000096369000000,0.000274147000000,0.000052912000000 +0.000027246000000,0.000185653000000,0.000025863500000,0.000013028333333,0.000027443500000,0.000186048000000,0.000057653000000,0.000025666000000,0.000183677000000,0.000063974000000,0.000117307000000,0.000278888000000,0.000051727000000 +0.000020135500000,0.000130344000000,0.000026851000000,0.000013028333333,0.000028826500000,0.000185653000000,0.000058838000000,0.000025666000000,0.000184862000000,0.000063184000000,0.000115332000000,0.000280468000000,0.000051727000000 +0.000020135000000,0.000117702000000,0.000026456500000,0.000013555000000,0.000029814500000,0.000278887000000,0.000097554000000,0.000025073500000,0.000218048000000,0.000065949000000,0.000096369000000,0.000278492000000,0.000053307000000 +0.000021320500000,0.000115727000000,0.000026851000000,0.000028699000000,0.000028826500000,0.000201455000000,0.000057258000000,0.000026653500000,0.000184863000000,0.000065949000000,0.000105456000000,0.000277702000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000027049000000,0.000013555333333,0.000028036500000,0.000187233000000,0.000060023000000,0.000027839000000,0.000187233000000,0.000063184000000,0.000117703000000,0.000312468000000,0.000053308000000 +0.000020332500000,0.000116122000000,0.000026851000000,0.000013028333333,0.000028036000000,0.000182887000000,0.000058048000000,0.000026061000000,0.000184467000000,0.000067134000000,0.000174196000000,0.000277702000000,0.000104665000000 +0.000020332500000,0.000115727000000,0.000026061000000,0.000013160000000,0.000028036500000,0.000215678000000,0.000057653000000,0.000027048500000,0.000216072000000,0.000098739000000,0.000118888000000,0.000385159000000,0.000073850000000 +0.000020333000000,0.000095974000000,0.000027049000000,0.000013028333333,0.000030209500000,0.000181307000000,0.000057258000000,0.000026654000000,0.000187233000000,0.000065159000000,0.000117307000000,0.000277307000000,0.000065159000000 +0.000020333000000,0.000095974000000,0.000027048500000,0.000013028333333,0.000028629000000,0.000182097000000,0.000057258000000,0.000027048500000,0.000188813000000,0.000063974000000,0.000115727000000,0.000666442000000,0.000051727000000 +0.000048777000000,0.000116122000000,0.000027839000000,0.000013028333333,0.000028036500000,0.000185258000000,0.000057258000000,0.000026456000000,0.000185258000000,0.000066739000000,0.000133110000000,0.000321554000000,0.000051332000000 +0.000028431500000,0.000115332000000,0.000035937500000,0.000013160000000,0.000029616500000,0.000265060000000,0.000127974000000,0.000025863500000,0.000216863000000,0.000066344000000,0.000096764000000,0.000279677000000,0.000052123000000 +0.000027839000000,0.000115332000000,0.000025863500000,0.000013028333333,0.000029024000000,0.000181307000000,0.000060023000000,0.000033962500000,0.000183678000000,0.000062789000000,0.000117307000000,0.000344862000000,0.000052912000000 +0.000020135500000,0.000117307000000,0.000026851000000,0.000013028666667,0.000028826500000,0.000181307000000,0.000058838000000,0.000026851500000,0.000184468000000,0.000063579000000,0.000119283000000,0.000280073000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000029024000000,0.000025933666667,0.000028431500000,0.000181702000000,0.000057258000000,0.000038110500000,0.000184863000000,0.000082542000000,0.000116913000000,0.000313653000000,0.000050937000000 +0.000020135000000,0.000097159000000,0.000030604500000,0.000013160000000,0.000029024000000,0.000187628000000,0.000057653000000,0.000026061000000,0.000225159000000,0.000064369000000,0.000117307000000,0.000276517000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000029221500000,0.000184467000000,0.000058443000000,0.000026258500000,0.000183677000000,0.000064765000000,0.000096369000000,0.000278888000000,0.000052122000000 +0.000020332500000,0.000096764000000,0.000025666000000,0.000013028333333,0.000035740000000,0.000183678000000,0.000060024000000,0.000026456000000,0.000184072000000,0.000065555000000,0.000096369000000,0.000280468000000,0.000050937000000 +0.000020332500000,0.000114936000000,0.000026851500000,0.000014345333333,0.000030011500000,0.000223184000000,0.000058838000000,0.000025666000000,0.000186048000000,0.000062788000000,0.000116122000000,0.000274937000000,0.000052122000000 +0.000020135000000,0.000116517000000,0.000046406500000,0.000013028333333,0.000028826500000,0.000182098000000,0.000059628000000,0.000026258500000,0.000180122000000,0.000062789000000,0.000095184000000,0.000279677000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013555000000,0.000029616500000,0.000214492000000,0.000057653000000,0.000027641500000,0.000184862000000,0.000063974000000,0.000117308000000,0.000280467000000,0.000051727000000 +0.000020135500000,0.000116517000000,0.000027246000000,0.000013555333333,0.000028629000000,0.000188024000000,0.000057258000000,0.000026653500000,0.000184862000000,0.000065159000000,0.000124813000000,0.000274937000000,0.000058838000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000040946000000,0.000028234000000,0.000215677000000,0.000057258000000,0.000025271000000,0.000184863000000,0.000065950000000,0.000116912000000,0.000276912000000,0.000052122000000 +0.000020135000000,0.000135875000000,0.000026061000000,0.000013818666667,0.000028431500000,0.000184072000000,0.000057653000000,0.000026061000000,0.000253999000000,0.000067529000000,0.000096369000000,0.000287184000000,0.000051727000000 +0.000020135000000,0.000147727000000,0.000027049000000,0.000013423333333,0.000027641500000,0.000181703000000,0.000057653000000,0.000026258500000,0.000182492000000,0.000068319000000,0.000117308000000,0.000281257000000,0.000051727000000 +0.000020135000000,0.000115727000000,0.000027048500000,0.000013160000000,0.000028629000000,0.000182887000000,0.000057258000000,0.000026061000000,0.000184072000000,0.000066740000000,0.000096369000000,0.000293110000000,0.000091233000000 +0.000020333000000,0.000114542000000,0.000028036500000,0.000013028333333,0.000028826500000,0.000253208000000,0.000058443000000,0.000026258500000,0.000219628000000,0.000065950000000,0.000138640000000,0.000278888000000,0.000052518000000 +0.000020135000000,0.000096764000000,0.000050752500000,0.000013423666667,0.000030012000000,0.000184073000000,0.000109801000000,0.000026456500000,0.000180913000000,0.000067135000000,0.000114936000000,0.000276517000000,0.000050937000000 +0.000020332500000,0.000118492000000,0.000026258500000,0.000013160000000,0.000028036500000,0.000181702000000,0.000058838000000,0.000036135000000,0.000184467000000,0.000062789000000,0.000096369000000,0.000277307000000,0.000051332000000 +0.000021320500000,0.000095974000000,0.000026851000000,0.000013028333333,0.000029024000000,0.000182492000000,0.000058443000000,0.000060234000000,0.000183282000000,0.000068319000000,0.000096369000000,0.000348813000000,0.000051332000000 +0.000020333000000,0.000115332000000,0.000029024000000,0.000013160000000,0.000028234000000,0.000181703000000,0.000057653000000,0.000027246500000,0.000252814000000,0.000065554000000,0.000117307000000,0.000276516000000,0.000051727000000 +0.000020135000000,0.000094394000000,0.000030604000000,0.000013555000000,0.000033172000000,0.000184468000000,0.000057258000000,0.000027444000000,0.000181307000000,0.000062393000000,0.000118888000000,0.000328665000000,0.000050937000000 +0.000020135000000,0.000115726000000,0.000025666000000,0.000013028333333,0.000028826500000,0.000185653000000,0.000057258000000,0.000025468000000,0.000185257000000,0.000065159000000,0.000116913000000,0.000278097000000,0.000053308000000 +0.000020332500000,0.000094789000000,0.000025666000000,0.000013555000000,0.000028234000000,0.000203036000000,0.000058443000000,0.000025666000000,0.000181702000000,0.000065949000000,0.000117703000000,0.000328665000000,0.000051332000000 +0.000021320500000,0.000115727000000,0.000036332500000,0.000013160000000,0.000028234000000,0.000184072000000,0.000058838000000,0.000026456000000,0.000186838000000,0.000063184000000,0.000116122000000,0.000308122000000,0.000051332000000 +0.000020332500000,0.000116517000000,0.000026456000000,0.000013028333333,0.000029024000000,0.000184072000000,0.000057653000000,0.000050752500000,0.000180912000000,0.000062788000000,0.000117703000000,0.000309702000000,0.000050937000000 +0.000030604500000,0.000096369000000,0.000027048500000,0.000013028333333,0.000028036500000,0.000184073000000,0.000057258000000,0.000028431500000,0.000185258000000,0.000141011000000,0.000116912000000,0.000278097000000,0.000051332000000 +0.000020332500000,0.000105060000000,0.000027049000000,0.000013028333333,0.000029419000000,0.000218048000000,0.000058443000000,0.000025863500000,0.000237801000000,0.000118098000000,0.000097159000000,0.000632862000000,0.000051332000000 +0.000020135000000,0.000116912000000,0.000026851000000,0.000029621000000,0.000029024000000,0.000184072000000,0.000057653000000,0.000025271000000,0.000184862000000,0.000067134000000,0.000096369000000,0.000321949000000,0.000088468000000 +0.000020135000000,0.000095974000000,0.000026061000000,0.000013028333333,0.000029024000000,0.000184863000000,0.000058838000000,0.000025073000000,0.000184862000000,0.000068715000000,0.000117308000000,0.000273751000000,0.000054097000000 +0.000020135000000,0.000131135000000,0.000026851500000,0.000013160000000,0.000029024000000,0.000186838000000,0.000058443000000,0.000025863500000,0.000186838000000,0.000067530000000,0.000117702000000,0.000309702000000,0.000051727000000 +0.000020332500000,0.000114542000000,0.000026851000000,0.000013028333333,0.000028826500000,0.000265850000000,0.000057258000000,0.000026654000000,0.000217258000000,0.000069505000000,0.000118097000000,0.000275727000000,0.000053703000000 +0.000020332500000,0.000114542000000,0.000045221500000,0.000013028333333,0.000027641500000,0.000181703000000,0.000058838000000,0.000026061000000,0.000183678000000,0.000081752000000,0.000096369000000,0.000275332000000,0.000053308000000 +0.000020333000000,0.000096369000000,0.000026259000000,0.000013160000000,0.000029616500000,0.000182097000000,0.000057653000000,0.000046802000000,0.000183282000000,0.000070295000000,0.000117307000000,0.000277307000000,0.000051332000000 +0.000020333000000,0.000095579000000,0.000026258500000,0.000013028333333,0.000028036000000,0.000182493000000,0.000057653000000,0.000025863500000,0.000180122000000,0.000118493000000,0.000096369000000,0.000280072000000,0.000109011000000 +0.000020135000000,0.000129949000000,0.000027048500000,0.000013423333333,0.000028826500000,0.000215677000000,0.000058838000000,0.000026061000000,0.000252813000000,0.000067134000000,0.000117307000000,0.000275332000000,0.000067135000000 +0.000027839000000,0.000100715000000,0.000028826500000,0.000019612666667,0.000028431500000,0.000182097000000,0.000057653000000,0.000026258500000,0.000187233000000,0.000067529000000,0.000095974000000,0.000273752000000,0.000050937000000 +0.000020332500000,0.000118098000000,0.000030604500000,0.000031728000000,0.000028629000000,0.000185258000000,0.000057258000000,0.000027048500000,0.000183677000000,0.000152072000000,0.000114542000000,0.000274147000000,0.000053307000000 +0.000020332500000,0.000114937000000,0.000025863500000,0.000017505666667,0.000029419000000,0.000181307000000,0.000057653000000,0.000025666000000,0.000184073000000,0.000114147000000,0.000096764000000,0.000272961000000,0.000050937000000 +0.000021122500000,0.000115332000000,0.000026259000000,0.000013028333333,0.000028431000000,0.000248863000000,0.000057258000000,0.000026258500000,0.000184468000000,0.000063579000000,0.000117307000000,0.000307727000000,0.000052122000000 +0.000020332500000,0.000186048000000,0.000033962500000,0.000013028333333,0.000029419000000,0.000186048000000,0.000077406000000,0.000025666000000,0.000185258000000,0.000065950000000,0.000115332000000,0.000277307000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026061000000,0.000031201000000,0.000029024000000,0.000186048000000,0.000058048000000,0.000040678000000,0.000185653000000,0.000064764000000,0.000117702000000,0.000310887000000,0.000065159000000 +0.000020333000000,0.000115727000000,0.000027049000000,0.000013028333333,0.000028826500000,0.000201060000000,0.000057258000000,0.000028431000000,0.000206196000000,0.000065554000000,0.000098739000000,0.000274937000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000026851000000,0.000013028333333,0.000028629000000,0.000183283000000,0.000057653000000,0.000026061500000,0.000185258000000,0.000101899000000,0.000114542000000,0.000328270000000,0.000052912000000 +0.000020332500000,0.000116122000000,0.000026851500000,0.000029884333333,0.000028036500000,0.000182887000000,0.000060024000000,0.000026061000000,0.000180517000000,0.000066740000000,0.000094394000000,0.000278097000000,0.000051727000000 +0.000027443500000,0.000162740000000,0.000026061000000,0.000013160000000,0.000027838500000,0.000182098000000,0.000058838000000,0.000026456000000,0.000183678000000,0.000065555000000,0.000117307000000,0.000314047000000,0.000052912000000 +0.000020135000000,0.000096369000000,0.000026653500000,0.000013028333333,0.000028036500000,0.000281258000000,0.000057653000000,0.000028431000000,0.000217653000000,0.000063578000000,0.000094789000000,0.000276912000000,0.000051332000000 +0.000021123000000,0.000095974000000,0.000027049000000,0.000013555000000,0.000028234000000,0.000250838000000,0.000057258000000,0.000026061500000,0.000184467000000,0.000067135000000,0.000098740000000,0.000297455000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000028036500000,0.000013555000000,0.000028431500000,0.000183678000000,0.000095974000000,0.000025863500000,0.000184073000000,0.000063579000000,0.000094788000000,0.000274541000000,0.000053307000000 +0.000020332500000,0.000115727000000,0.000026456000000,0.000013028333333,0.000030011500000,0.000216863000000,0.000058838000000,0.000032579500000,0.000184862000000,0.000063579000000,0.000115727000000,0.000293504000000,0.000054887000000 +0.000020332500000,0.000149702000000,0.000025666000000,0.000013028333333,0.000028826500000,0.000186048000000,0.000058839000000,0.000026456000000,0.000253998000000,0.000099924000000,0.000116912000000,0.000273751000000,0.000051727000000 +0.000020332500000,0.000117702000000,0.000026851000000,0.000013423333333,0.000028826500000,0.000181703000000,0.000086492000000,0.000025863500000,0.000183282000000,0.000063184000000,0.000095974000000,0.000481949000000,0.000052517000000 +0.000020332500000,0.000116122000000,0.000028826500000,0.000013423333333,0.000026653500000,0.000184072000000,0.000057653000000,0.000025666000000,0.000184467000000,0.000066740000000,0.000115332000000,0.000279678000000,0.000053307000000 +0.000020333000000,0.000096369000000,0.000030604500000,0.000018954000000,0.000050160000000,0.000217257000000,0.000058048000000,0.000026653500000,0.000183677000000,0.000064765000000,0.000095974000000,0.000311677000000,0.000052912000000 +0.000039690500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000028629000000,0.000183677000000,0.000057653000000,0.000026653500000,0.000230690000000,0.000063184000000,0.000094789000000,0.000283628000000,0.000086888000000 +0.000020332500000,0.000128764000000,0.000026258500000,0.000013028333333,0.000028431500000,0.000182493000000,0.000077011000000,0.000028431500000,0.000184467000000,0.000069900000000,0.000117307000000,0.000308912000000,0.000053307000000 +0.000020332500000,0.000095974000000,0.000026851000000,0.000013028333333,0.000026456000000,0.000188419000000,0.000057257000000,0.000036530000000,0.000184863000000,0.000065555000000,0.000116913000000,0.000281653000000,0.000051332000000 +0.000020332500000,0.000118493000000,0.000026061500000,0.000013028333333,0.000027246000000,0.000219233000000,0.000060024000000,0.000033369500000,0.000184072000000,0.000062394000000,0.000117307000000,0.000276913000000,0.000051727000000 +0.000020332500000,0.000117703000000,0.000027048500000,0.000013555000000,0.000028234000000,0.000183282000000,0.000057653000000,0.000024876000000,0.000413603000000,0.000063184000000,0.000096369000000,0.000278887000000,0.000051727000000 +0.000020135000000,0.000095974000000,0.000027048500000,0.000013028333333,0.000029024000000,0.000182888000000,0.000057653000000,0.000026258500000,0.000221999000000,0.000063578000000,0.000118888000000,0.000277307000000,0.000054097000000 +0.000020135000000,0.000096764000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000216072000000,0.000058443000000,0.000028234000000,0.000261504000000,0.000065554000000,0.000095973000000,0.000277702000000,0.000052912000000 +0.000020332500000,0.000095973000000,0.000026258500000,0.000013160000000,0.000043838500000,0.000217653000000,0.000058443000000,0.000026653500000,0.000184073000000,0.000062789000000,0.000117702000000,0.000280072000000,0.000053307000000 +0.000020332500000,0.000118098000000,0.000026851000000,0.000021061333333,0.000026456000000,0.000180912000000,0.000057652000000,0.000032975000000,0.000184862000000,0.000063184000000,0.000115727000000,0.000274937000000,0.000051332000000 +0.000037123000000,0.000096369000000,0.000036925500000,0.000013160000000,0.000027246000000,0.000181307000000,0.000077011000000,0.000026259000000,0.000184862000000,0.000063974000000,0.000222393000000,0.000276122000000,0.000054097000000 +0.000020332500000,0.000096369000000,0.000028036500000,0.000013028666667,0.000026851500000,0.000181308000000,0.000159578000000,0.000026258500000,0.000252419000000,0.000065159000000,0.000108616000000,0.000290739000000,0.000053702000000 +0.000020135000000,0.000096369000000,0.000026456000000,0.000013028333333,0.000027443500000,0.000214887000000,0.000075431000000,0.000026258500000,0.000186838000000,0.000063974000000,0.000117702000000,0.000278492000000,0.000053703000000 +0.000020135500000,0.000148517000000,0.000025863500000,0.000013160333333,0.000027444000000,0.000181702000000,0.000057653000000,0.000026654000000,0.000187233000000,0.000063184000000,0.000097159000000,0.000325900000000,0.000052912000000 +0.000020135000000,0.000104665000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000180912000000,0.000058838000000,0.000025073500000,0.000185257000000,0.000065949000000,0.000096369000000,0.000274936000000,0.000088863000000 +0.000020332500000,0.000095974000000,0.000028826500000,0.000013028333333,0.000027246500000,0.000182493000000,0.000057653000000,0.000025863500000,0.000199480000000,0.000063974000000,0.000153258000000,0.000422690000000,0.000053307000000 +0.000020135500000,0.000116912000000,0.000030604500000,0.000013028333333,0.000036727500000,0.000198295000000,0.000057653000000,0.000026061000000,0.000184468000000,0.000065949000000,0.000095974000000,0.000277702000000,0.000050937000000 +0.000020333000000,0.000115727000000,0.000026061000000,0.000013028333333,0.000027839000000,0.000185258000000,0.000058443000000,0.000039690500000,0.000186443000000,0.000067134000000,0.000117308000000,0.000325900000000,0.000052912000000 +0.000020135500000,0.000130344000000,0.000049567000000,0.000019613000000,0.000027246500000,0.000184073000000,0.000057258000000,0.000026259000000,0.000186838000000,0.000062789000000,0.000096369000000,0.000275332000000,0.000050937000000 +0.000020135500000,0.000116912000000,0.000026851000000,0.000013818666667,0.000028826500000,0.000182097000000,0.000058443000000,0.000025863500000,0.000182097000000,0.000092814000000,0.000096369000000,0.000324319000000,0.000051727000000 +0.000027246000000,0.000117307000000,0.000026258500000,0.000013818333333,0.000027246500000,0.000182097000000,0.000057653000000,0.000025863500000,0.000180517000000,0.000063184000000,0.000144566000000,0.000278887000000,0.000054888000000 +0.000020135000000,0.000095974000000,0.000027049000000,0.000013818666667,0.000028036500000,0.000184072000000,0.000058839000000,0.000027048500000,0.000183282000000,0.000069110000000,0.000096764000000,0.000313652000000,0.000082542000000 +0.000020135000000,0.000115727000000,0.000026851000000,0.000013818666667,0.000025863500000,0.000184073000000,0.000058838000000,0.000026061000000,0.000206591000000,0.000066739000000,0.000095974000000,0.000274936000000,0.000068319000000 +0.000020135000000,0.000129949000000,0.000044629000000,0.000013818666667,0.000026456500000,0.000181703000000,0.000057258000000,0.000024678500000,0.000184073000000,0.000066344000000,0.000096369000000,0.000311677000000,0.000051332000000 +0.000021320500000,0.000098739000000,0.000026258500000,0.000013950333333,0.000043049000000,0.000183678000000,0.000057653000000,0.000028431500000,0.000225950000000,0.000063183000000,0.000117702000000,0.000276517000000,0.000054492000000 +0.000020135000000,0.000113752000000,0.000026851000000,0.000013818666667,0.000026258500000,0.000186443000000,0.000057653000000,0.000027838500000,0.000180912000000,0.000065950000000,0.000120863000000,0.000357110000000,0.000061998000000 +0.000020135000000,0.000096369000000,0.000027246000000,0.000013818333333,0.000027443500000,0.000182097000000,0.000058048000000,0.000024876000000,0.000249652000000,0.000063579000000,0.000094394000000,0.000276517000000,0.000088073000000 +0.000020135000000,0.000096369000000,0.000028036500000,0.000013818666667,0.000028826500000,0.000217652000000,0.000057258000000,0.000026061000000,0.000184862000000,0.000065949000000,0.000116912000000,0.000308121000000,0.000052123000000 +0.000021122500000,0.000096369000000,0.000026456000000,0.000013818666667,0.000027246500000,0.000188023000000,0.000057653000000,0.000026061000000,0.000180517000000,0.000063184000000,0.000094789000000,0.000279678000000,0.000053307000000 +0.000020135500000,0.000114147000000,0.000026258500000,0.000013818333333,0.000027444000000,0.000182098000000,0.000057258000000,0.000026061000000,0.000184468000000,0.000063579000000,0.000118098000000,0.000279678000000,0.000052517000000 +0.000020332500000,0.000115332000000,0.000027048500000,0.000014477000000,0.000028036000000,0.000182492000000,0.000057258000000,0.000025468500000,0.000214098000000,0.000070295000000,0.000140221000000,0.000277702000000,0.000052913000000 +0.000020135000000,0.000096764000000,0.000028826500000,0.000014345333333,0.000027246000000,0.000253604000000,0.000058838000000,0.000026851500000,0.000188023000000,0.000065554000000,0.000118098000000,0.000280468000000,0.000051332000000 +0.000020135500000,0.000101900000000,0.000030604000000,0.000014213666667,0.000045419000000,0.000184468000000,0.000071085000000,0.000027444000000,0.000180517000000,0.000067529000000,0.000116122000000,0.000278097000000,0.000053307000000 +0.000020135000000,0.000156023000000,0.000043049000000,0.000013818333333,0.000085715000000,0.000181702000000,0.000057653000000,0.000035542500000,0.000184468000000,0.000078196000000,0.000117702000000,0.000278097000000,0.000051727000000 +0.000021320500000,0.000096369000000,0.000026061000000,0.000013818333333,0.000034752500000,0.000184073000000,0.000058838000000,0.000027246000000,0.000184073000000,0.000062789000000,0.000100714000000,0.000274937000000,0.000051332000000 +0.000020332500000,0.000116122000000,0.000027049000000,0.000013818333333,0.000034752500000,0.000578344000000,0.000057653000000,0.000025468500000,0.000187628000000,0.000063974000000,0.000118887000000,0.000279677000000,0.000052122000000 +0.000020333000000,0.000096764000000,0.000026061000000,0.000013818333333,0.000026653500000,0.000185257000000,0.000057653000000,0.000025073000000,0.000182098000000,0.000065950000000,0.000117307000000,0.000277308000000,0.000052123000000 +0.000021320500000,0.000116122000000,0.000026851000000,0.000013818666667,0.000026851000000,0.000203825000000,0.000058838000000,0.000026851500000,0.000184863000000,0.000063578000000,0.000096369000000,0.000278097000000,0.000052122000000 +0.000047789500000,0.000097554000000,0.000027641000000,0.000013950333333,0.000044234000000,0.000187233000000,0.000057653000000,0.000026456000000,0.000183678000000,0.000067135000000,0.000094789000000,0.000287973000000,0.000052122000000 +0.000020333000000,0.000156814000000,0.000027246000000,0.000013818333333,0.000026258500000,0.000183282000000,0.000058838000000,0.000026456500000,0.000184467000000,0.000065949000000,0.000096764000000,0.000278098000000,0.000084517000000 +0.000020333000000,0.000096369000000,0.000026061000000,0.000013818333333,0.000027838500000,0.000181702000000,0.000094394000000,0.000034752000000,0.000185653000000,0.000142591000000,0.000094789000000,0.000331825000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000071295500000,0.000014740000000,0.000027049000000,0.000253999000000,0.000058838000000,0.000076431500000,0.000218047000000,0.000064369000000,0.000116122000000,0.000277702000000,0.000052122000000 +0.000020333000000,0.000095974000000,0.000028431500000,0.000014345333333,0.000027049000000,0.000181307000000,0.000060813000000,0.000027048500000,0.000187233000000,0.000063184000000,0.000094789000000,0.000313653000000,0.000051727000000 +0.000021320000000,0.000130739000000,0.000028036500000,0.000013818666667,0.000028233500000,0.000185652000000,0.000058444000000,0.000033172000000,0.000180912000000,0.000062789000000,0.000095974000000,0.000277702000000,0.000052912000000 +0.000021320500000,0.000096764000000,0.000026456000000,0.000014345333333,0.000028036500000,0.000186443000000,0.000057258000000,0.000026258500000,0.000180122000000,0.000063974000000,0.000114937000000,0.000308122000000,0.000051727000000 +0.000021517500000,0.000116122000000,0.000025863500000,0.000013818666667,0.000027444000000,0.000216467000000,0.000058838000000,0.000025863500000,0.000214097000000,0.000062393000000,0.000116913000000,0.000280468000000,0.000051727000000 +0.000021123000000,0.000095974000000,0.000027049000000,0.000013818333333,0.000037122500000,0.000182098000000,0.000059234000000,0.000026456000000,0.000184468000000,0.000064369000000,0.000118887000000,0.000331035000000,0.000053702000000 +0.000021517500000,0.000116517000000,0.000029024000000,0.000013818333333,0.000027049000000,0.000182493000000,0.000058048000000,0.000027048500000,0.000187233000000,0.000126394000000,0.000094789000000,0.000278887000000,0.000053307000000 +0.000020332500000,0.000095974000000,0.000037320000000,0.000014213666667,0.000027443500000,0.000182097000000,0.000092418000000,0.000027838500000,0.000184073000000,0.000065159000000,0.000095974000000,0.000311678000000,0.000051727000000 +0.000020135000000,0.000115332000000,0.000025666000000,0.000013686666667,0.000027246500000,0.000223974000000,0.000058838000000,0.000026258500000,0.000252023000000,0.000065554000000,0.000095184000000,0.000272567000000,0.000052122000000 +0.000020333000000,0.000096764000000,0.000025863500000,0.000013687000000,0.000028036000000,0.000184073000000,0.000058838000000,0.000026259000000,0.000184467000000,0.000062789000000,0.000095974000000,0.000308517000000,0.000051727000000 +0.000020333000000,0.000093998000000,0.000026851000000,0.000013818666667,0.000027443500000,0.000187628000000,0.000058443000000,0.000035740500000,0.000186048000000,0.000063184000000,0.000138641000000,0.000274146000000,0.000051332000000 +0.000020333000000,0.000097159000000,0.000026061000000,0.000014345333333,0.000027246000000,0.000186443000000,0.000057258000000,0.000033567000000,0.000181703000000,0.000066344000000,0.000117307000000,0.000278887000000,0.000084517000000 +0.000021320000000,0.000094394000000,0.000026851500000,0.000013818666667,0.000028036500000,0.000215678000000,0.000057258000000,0.000026653500000,0.000218443000000,0.000067134000000,0.000096764000000,0.000331036000000,0.000053307000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000014872000000,0.000028036500000,0.000184467000000,0.000058048000000,0.000042061000000,0.000186838000000,0.000063579000000,0.000117703000000,0.000274146000000,0.000052913000000 +0.000020135000000,0.000096369000000,0.000026851500000,0.000013818666667,0.000027444000000,0.000183282000000,0.000058838000000,0.000026061000000,0.000181307000000,0.000064369000000,0.000100320000000,0.000277703000000,0.000052122000000 +0.000058456000000,0.000094789000000,0.000033765000000,0.000013950333333,0.000029024000000,0.000184863000000,0.000080566000000,0.000025863500000,0.000183677000000,0.000064369000000,0.000094788000000,0.000274542000000,0.000051727000000 +0.000062209000000,0.000115727000000,0.000026851000000,0.000013818666667,0.000026851000000,0.000231480000000,0.000060023000000,0.000026061000000,0.000218443000000,0.000067925000000,0.000115727000000,0.000865159000000,0.000052518000000 +0.000029024000000,0.000115332000000,0.000026851000000,0.000013950333333,0.000027048500000,0.000181702000000,0.000057653000000,0.000026456500000,0.000183678000000,0.000063184000000,0.000116913000000,0.000329060000000,0.000051727000000 +0.000021518000000,0.000159974000000,0.000028036000000,0.000013818666667,0.000027838500000,0.000184468000000,0.000057653000000,0.000026061500000,0.000181307000000,0.000065949000000,0.000116912000000,0.000303381000000,0.000065554000000 +0.000021320500000,0.000096369000000,0.000026653500000,0.000013950333333,0.000026653500000,0.000203431000000,0.000057653000000,0.000026456000000,0.000185258000000,0.000063183000000,0.000094789000000,0.000302196000000,0.000051727000000 +0.000020135000000,0.000100320000000,0.000026061000000,0.000013818333333,0.000026061000000,0.000182492000000,0.000057258000000,0.000028629000000,0.000218048000000,0.000097159000000,0.000117308000000,0.000304962000000,0.000052913000000 +0.000021122500000,0.000115332000000,0.000026851000000,0.000013950333333,0.000026851500000,0.000185653000000,0.000058443000000,0.000036530500000,0.000183678000000,0.000063974000000,0.000296270000000,0.000314048000000,0.000052517000000 +0.000020135500000,0.000096369000000,0.000038703000000,0.000013818333333,0.000027839000000,0.000183282000000,0.000057258000000,0.000026061000000,0.000186443000000,0.000063183000000,0.000129554000000,0.000274147000000,0.000050937000000 +0.000020332500000,0.000115727000000,0.000030604000000,0.000014345333333,0.000026061000000,0.000217652000000,0.000070690000000,0.000026654000000,0.000186838000000,0.000063183000000,0.000096764000000,0.000273752000000,0.000052517000000 +0.000020332500000,0.000117307000000,0.000025863500000,0.000014345333333,0.000026258500000,0.000183282000000,0.000057258000000,0.000025863500000,0.000184863000000,0.000065554000000,0.000118493000000,0.000278492000000,0.000067529000000 +0.000020332500000,0.000117308000000,0.000026061000000,0.000013818666667,0.000027246000000,0.000182492000000,0.000057653000000,0.000025468500000,0.000184468000000,0.000065160000000,0.000117307000000,0.000275727000000,0.000107431000000 +0.000020135500000,0.000096764000000,0.000027048500000,0.000013818666667,0.000026061000000,0.000184863000000,0.000058838000000,0.000025863500000,0.000184863000000,0.000063184000000,0.000094394000000,0.000278493000000,0.000051332000000 +0.000020135000000,0.000095974000000,0.000026259000000,0.000014345333333,0.000027839000000,0.000272567000000,0.000057258000000,0.000026456000000,0.000205406000000,0.000103480000000,0.000096764000000,0.000276121000000,0.000053308000000 +0.000021320500000,0.000161159000000,0.000026851000000,0.000013950000000,0.000028629000000,0.000237406000000,0.000057653000000,0.000026061000000,0.000184467000000,0.000065949000000,0.000117307000000,0.000790887000000,0.000051332000000 +0.000020135000000,0.000095974000000,0.000027048500000,0.000014345000000,0.000026258500000,0.000182887000000,0.000060024000000,0.000027246500000,0.000184072000000,0.000063579000000,0.000096764000000,0.000272566000000,0.000053307000000 +0.000027443500000,0.000096369000000,0.000048777000000,0.000013818333333,0.000032974500000,0.000217653000000,0.000057653000000,0.000026456000000,0.000184863000000,0.000062789000000,0.000097159000000,0.000291925000000,0.000107036000000 +0.000020333000000,0.000115727000000,0.000026258500000,0.000014213333333,0.000027246500000,0.000185653000000,0.000057258000000,0.000026259000000,0.000259925000000,0.000063184000000,0.000116123000000,0.000275332000000,0.000054492000000 +0.000020333000000,0.000116912000000,0.000026851500000,0.000013818333333,0.000027246000000,0.000182098000000,0.000057653000000,0.000026653500000,0.000256764000000,0.000064369000000,0.000116122000000,0.000278492000000,0.000052122000000 +0.000020135500000,0.000107826000000,0.000027048500000,0.000013818333333,0.000026259000000,0.000181703000000,0.000057258000000,0.000026653500000,0.000228715000000,0.000064369000000,0.000115332000000,0.000281257000000,0.000051332000000 +0.000021122500000,0.000118097000000,0.000027839000000,0.000013818333333,0.000027443500000,0.000215283000000,0.000057653000000,0.000026061500000,0.000220023000000,0.000065949000000,0.000116912000000,0.000281653000000,0.000050937000000 +0.000020333000000,0.000096764000000,0.000026456000000,0.000013818333333,0.000027839000000,0.000185258000000,0.000058838000000,0.000025666000000,0.000186048000000,0.000063184000000,0.000097554000000,0.000291925000000,0.000052123000000 +0.000020332500000,0.000096369000000,0.000025863500000,0.000013818333333,0.000027838500000,0.000181308000000,0.000060023000000,0.000026258500000,0.000184468000000,0.000067134000000,0.000117702000000,0.000396615000000,0.000052517000000 +0.000020135000000,0.000096369000000,0.000026851000000,0.000013818666667,0.000028234000000,0.000182098000000,0.000058838000000,0.000027049000000,0.000184468000000,0.000067924000000,0.000117702000000,0.000278887000000,0.000051332000000 +0.000020135500000,0.000205801000000,0.000059048500000,0.000013818333333,0.000043641500000,0.000229109000000,0.000057258000000,0.000045221500000,0.000264270000000,0.000068319000000,0.000097159000000,0.000297061000000,0.000050936000000 +0.000043641500000,0.000213307000000,0.000030604500000,0.000013950000000,0.000026061000000,0.000183282000000,0.000071085000000,0.000025468500000,0.000184863000000,0.000063579000000,0.000116912000000,0.000295875000000,0.000051727000000 +0.000020333000000,0.000095974000000,0.000026456000000,0.000013818333333,0.000027444000000,0.000185257000000,0.000058838000000,0.000026851500000,0.000183282000000,0.000062789000000,0.000118887000000,0.000292715000000,0.000051727000000 +0.000020333000000,0.000109011000000,0.000026061000000,0.000037259000000,0.000027443500000,0.000183678000000,0.000060024000000,0.000026258500000,0.000186443000000,0.000067529000000,0.000117307000000,0.000296665000000,0.000051727000000 +0.000020135000000,0.000150887000000,0.000061419000000,0.000026197333333,0.000026851500000,0.000215677000000,0.000058838000000,0.000026061000000,0.000231085000000,0.000089653000000,0.000152468000000,0.000292319000000,0.000052913000000 +0.000020332500000,0.000116122000000,0.000026061000000,0.000013818666667,0.000026851500000,0.000181307000000,0.000060023000000,0.000026653500000,0.000180912000000,0.000069900000000,0.000096369000000,0.000292320000000,0.000106246000000 +0.000020135000000,0.000118887000000,0.000027246500000,0.000014213333333,0.000027444000000,0.000183282000000,0.000057258000000,0.000025468500000,0.000184467000000,0.000069900000000,0.000116912000000,0.000293504000000,0.000051727000000 +0.000020135500000,0.000116122000000,0.000027048500000,0.000014345000000,0.000026654000000,0.000184073000000,0.000057653000000,0.000025468500000,0.000187628000000,0.000067134000000,0.000117307000000,0.000299825000000,0.000058443000000 +0.000020333000000,0.000116912000000,0.000027049000000,0.000013818666667,0.000047987000000,0.000215678000000,0.000057653000000,0.000026061000000,0.000187233000000,0.000071875000000,0.000096764000000,0.000299035000000,0.000052122000000 +0.000020332500000,0.000139035000000,0.000026456000000,0.000013818333333,0.000027839000000,0.000184468000000,0.000122048000000,0.000025271000000,0.000182097000000,0.000086097000000,0.000096764000000,0.000331825000000,0.000051332000000 +0.000020135000000,0.000095974000000,0.000026851000000,0.000014345333333,0.000027246000000,0.000181702000000,0.000057258000000,0.000026259000000,0.000181307000000,0.000105061000000,0.000096764000000,0.000295875000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000027049000000,0.000013818666667,0.000027839000000,0.000182888000000,0.000057258000000,0.000026258500000,0.000216073000000,0.000106641000000,0.000095184000000,0.000292714000000,0.000055678000000 +0.000020333000000,0.000115727000000,0.000034752500000,0.000013687000000,0.000027641500000,0.000217258000000,0.000058838000000,0.000026258500000,0.000184072000000,0.000073061000000,0.000116912000000,0.000294690000000,0.000052122000000 +0.000020332500000,0.000095974000000,0.000026259000000,0.000014345333333,0.000027444000000,0.000187628000000,0.000058443000000,0.000026258500000,0.000184863000000,0.000064369000000,0.000117703000000,0.000301800000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000025666000000,0.000013950000000,0.000026456000000,0.000182097000000,0.000059233000000,0.000026654000000,0.000184863000000,0.000062789000000,0.000115332000000,0.000298246000000,0.000050937000000 +0.000021123000000,0.000095974000000,0.000027246000000,0.000013818666667,0.000026851000000,0.000182493000000,0.000058443000000,0.000025468500000,0.000214097000000,0.000097159000000,0.000116912000000,0.000291529000000,0.000051332000000 +0.000020332500000,0.000151282000000,0.000029024000000,0.000013818666667,0.000037913000000,0.000250838000000,0.000058049000000,0.000024876000000,0.000187234000000,0.000064764000000,0.000117307000000,0.000293110000000,0.000050937000000 +0.000020333000000,0.000116912000000,0.000030604500000,0.000014213666667,0.000026456000000,0.000188813000000,0.000057653000000,0.000025666000000,0.000181702000000,0.000063579000000,0.000096369000000,0.000325900000000,0.000052122000000 +0.000020135500000,0.000115332000000,0.000026061000000,0.000013818666667,0.000026851500000,0.000182097000000,0.000057653000000,0.000025468500000,0.000184073000000,0.000062789000000,0.000117307000000,0.000299430000000,0.000107825000000 +0.000020333000000,0.000161554000000,0.000045222000000,0.000014345333333,0.000027048500000,0.000183283000000,0.000058838000000,0.000025666000000,0.000215678000000,0.000067924000000,0.000100319000000,0.000297060000000,0.000051727000000 +0.000028431500000,0.000095974000000,0.000026851000000,0.000013818666667,0.000026456000000,0.000182888000000,0.000058444000000,0.000026061000000,0.000186443000000,0.000065159000000,0.000117702000000,0.000293110000000,0.000051332000000 +0.000020332500000,0.000118097000000,0.000026061000000,0.000026460333333,0.000027443500000,0.000184468000000,0.000057258000000,0.000026851500000,0.000180912000000,0.000063184000000,0.000096369000000,0.000312467000000,0.000050937000000 +0.000021320500000,0.000095974000000,0.000026851500000,0.000013950333333,0.000028036500000,0.000185258000000,0.000073851000000,0.000026258500000,0.000184863000000,0.000096369000000,0.000095579000000,0.000276912000000,0.000051332000000 +0.000020333000000,0.000116518000000,0.000026851500000,0.000013950333333,0.000027838500000,0.000208962000000,0.000058838000000,0.000026258500000,0.000252023000000,0.000063184000000,0.000133109000000,0.000346838000000,0.000051727000000 +0.000020332500000,0.000114147000000,0.000027048500000,0.000013950333333,0.000026851000000,0.000187628000000,0.000091628000000,0.000025863500000,0.000184467000000,0.000063184000000,0.000128764000000,0.000277702000000,0.000052517000000 +0.000020332500000,0.000096369000000,0.000025863500000,0.000026724000000,0.000027246500000,0.000186048000000,0.000058839000000,0.000066555000000,0.000184863000000,0.000063184000000,0.000096369000000,0.000334196000000,0.000052912000000 +0.000020135500000,0.000116122000000,0.000027049000000,0.000020402666667,0.000026653500000,0.000187233000000,0.000058839000000,0.000026061000000,0.000184467000000,0.000069505000000,0.000094788000000,0.000280467000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000045419000000,0.000013818666667,0.000026851000000,0.000270986000000,0.000057653000000,0.000026061500000,0.000197504000000,0.000067135000000,0.000116122000000,0.000313653000000,0.000052518000000 +0.000020333000000,0.000118492000000,0.000046209500000,0.000013818333333,0.000027444000000,0.000245702000000,0.000058838000000,0.000026851500000,0.000181702000000,0.000062394000000,0.000098739000000,0.000281652000000,0.000053308000000 +0.000036925000000,0.000116517000000,0.000041863500000,0.000013686666667,0.000028234000000,0.000183678000000,0.000057258000000,0.000025863500000,0.000180912000000,0.000065554000000,0.000096369000000,0.000274937000000,0.000051727000000 +0.000020333000000,0.000096764000000,0.000026258500000,0.000013818666667,0.000027049000000,0.000182888000000,0.000057653000000,0.000026258500000,0.000182887000000,0.000140221000000,0.000096764000000,0.000311677000000,0.000052122000000 +0.000020135000000,0.000114542000000,0.000036925500000,0.000014082000000,0.000026456000000,0.000195134000000,0.000058839000000,0.000026259000000,0.000184073000000,0.000070295000000,0.000094393000000,0.000310492000000,0.000091233000000 +0.000020332500000,0.000116122000000,0.000029024000000,0.000013950333333,0.000026851500000,0.000182097000000,0.000091628000000,0.000026061000000,0.000186838000000,0.000065554000000,0.000095974000000,0.000279677000000,0.000156023000000 +0.000020135000000,0.000115727000000,0.000030406500000,0.000014213666667,0.000026456500000,0.000181702000000,0.000057258000000,0.000046999000000,0.000184072000000,0.000063579000000,0.000100715000000,0.000308122000000,0.000054492000000 +0.000020333000000,0.000115727000000,0.000026456500000,0.000013818333333,0.000027246500000,0.000182098000000,0.000057258000000,0.000025271000000,0.000205406000000,0.000063974000000,0.000157604000000,0.000279282000000,0.000051727000000 +0.000021122500000,0.000116122000000,0.000026456000000,0.000013687000000,0.000026851000000,0.000183678000000,0.000057653000000,0.000027048500000,0.000183678000000,0.000101900000000,0.000096369000000,0.000300221000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000027049000000,0.000013687000000,0.000026456000000,0.000183678000000,0.000057653000000,0.000026259000000,0.000187233000000,0.000064369000000,0.000117702000000,0.000278097000000,0.000051727000000 +0.000020135000000,0.000117307000000,0.000026456000000,0.000013686666667,0.000027246500000,0.000181702000000,0.000058048000000,0.000026061000000,0.000181702000000,0.000065159000000,0.000095974000000,0.000277308000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013818333333,0.000026258500000,0.000181308000000,0.000057653000000,0.000026456000000,0.000238987000000,0.000065949000000,0.000096369000000,0.000276122000000,0.000051332000000 +0.000020530000000,0.000096369000000,0.000035542500000,0.000013818333333,0.000027838500000,0.000183678000000,0.000057653000000,0.000027049000000,0.000184863000000,0.000062789000000,0.000119678000000,0.000281652000000,0.000052517000000 +0.000020332500000,0.000094789000000,0.000027049000000,0.000014345000000,0.000027048500000,0.000182887000000,0.000115332000000,0.000026653500000,0.000181703000000,0.000063578000000,0.000096369000000,0.000277702000000,0.000051727000000 +0.000020332500000,0.000095974000000,0.000026061500000,0.000013818333333,0.000027444000000,0.000182492000000,0.000058838000000,0.000053715500000,0.000184073000000,0.000065949000000,0.000096369000000,0.000274937000000,0.000052912000000 +0.000020332500000,0.000115332000000,0.000027246000000,0.000013687000000,0.000027641500000,0.000201455000000,0.000057257000000,0.000025468500000,0.000225949000000,0.000102295000000,0.000096369000000,0.000289554000000,0.000087282000000 +0.000021320500000,0.000095974000000,0.000026851500000,0.000014213666667,0.000028036500000,0.000181307000000,0.000057257000000,0.000027246000000,0.000186838000000,0.000067135000000,0.000117307000000,0.000274937000000,0.000050936000000 +0.000020530500000,0.000096369000000,0.000027838500000,0.000014608666667,0.000026653500000,0.000187233000000,0.000057653000000,0.000026061000000,0.000180912000000,0.000068320000000,0.000095579000000,0.000318393000000,0.000051332000000 +0.000020135000000,0.000184863000000,0.000026258500000,0.000013818666667,0.000038308000000,0.000184468000000,0.000058443000000,0.000025468500000,0.000184468000000,0.000065949000000,0.000110986000000,0.000275332000000,0.000054888000000 +0.000020332500000,0.000115332000000,0.000025864000000,0.000013818333333,0.000034949500000,0.000253999000000,0.000058838000000,0.000026653500000,0.000260714000000,0.000063184000000,0.000096369000000,0.000310493000000,0.000051727000000 +0.000020332500000,0.000115727000000,0.000026851500000,0.000014213666667,0.000027246500000,0.000181307000000,0.000057258000000,0.000028431500000,0.000184073000000,0.000064369000000,0.000094394000000,0.000274542000000,0.000052122000000 +0.000020333000000,0.000096369000000,0.000029024000000,0.000014213333333,0.000036332500000,0.000182887000000,0.000075431000000,0.000025468500000,0.000186838000000,0.000065949000000,0.000096764000000,0.000310097000000,0.000053703000000 +0.000020333000000,0.000096369000000,0.000030406500000,0.000014477000000,0.000027641500000,0.000183283000000,0.000057653000000,0.000062801500000,0.000183677000000,0.000103875000000,0.000117703000000,0.000279283000000,0.000052912000000 +0.000020135000000,0.000179727000000,0.000025863500000,0.000013818666667,0.000027641000000,0.000216863000000,0.000058048000000,0.000026654000000,0.000184863000000,0.000069900000000,0.000117307000000,0.000358689000000,0.000052912000000 +0.000020333000000,0.000115727000000,0.000025666000000,0.000013818666667,0.000027641000000,0.000182097000000,0.000057258000000,0.000026653500000,0.000183678000000,0.000068320000000,0.000116912000000,0.000280468000000,0.000063184000000 +0.000020332500000,0.000115332000000,0.000027048500000,0.000013818666667,0.000027246500000,0.000188813000000,0.000057257000000,0.000024678500000,0.000184863000000,0.000062789000000,0.000117307000000,0.000383579000000,0.000051332000000 +0.000020332500000,0.000095973000000,0.000026258500000,0.000013818666667,0.000028629000000,0.000183283000000,0.000060024000000,0.000026653500000,0.000187234000000,0.000067925000000,0.000117702000000,0.000274146000000,0.000051332000000 +0.000020135000000,0.000097159000000,0.000044234000000,0.000014213333333,0.000028431500000,0.000216468000000,0.000057653000000,0.000025863500000,0.000320764000000,0.000063974000000,0.000096764000000,0.000351579000000,0.000050937000000 +0.000020135000000,0.000110196000000,0.000026851500000,0.000013686666667,0.000027246000000,0.000183283000000,0.000057653000000,0.000025468500000,0.000196715000000,0.000064369000000,0.000097159000000,0.000273357000000,0.000073850000000 +0.000020135000000,0.000094394000000,0.000026851000000,0.000013818666667,0.000026258500000,0.000182887000000,0.000058838000000,0.000026061000000,0.000204616000000,0.000082147000000,0.000096764000000,0.000309702000000,0.000053308000000 +0.000030209000000,0.000115332000000,0.000026061000000,0.000013818666667,0.000027443500000,0.000182098000000,0.000058048000000,0.000033370000000,0.000184862000000,0.000063184000000,0.000094789000000,0.000276517000000,0.000053703000000 +0.000020135000000,0.000094789000000,0.000026851500000,0.000015662333333,0.000028234000000,0.000251233000000,0.000057258000000,0.000026061000000,0.000184863000000,0.000063183000000,0.000096369000000,0.000357900000000,0.000051727000000 +0.000020135000000,0.000115727000000,0.000026851000000,0.000013818666667,0.000026259000000,0.000182097000000,0.000057258000000,0.000025666000000,0.000187233000000,0.000063579000000,0.000096369000000,0.000278888000000,0.000054097000000 +0.000020135000000,0.000096369000000,0.000028036500000,0.000013818666667,0.000027838500000,0.000181307000000,0.000058048000000,0.000025073500000,0.000253208000000,0.000062789000000,0.000117307000000,0.000315233000000,0.000053307000000 +0.000020135500000,0.000115727000000,0.000026654000000,0.000013818666667,0.000027641500000,0.000185653000000,0.000057653000000,0.000026259000000,0.000183677000000,0.000062789000000,0.000115332000000,0.000274542000000,0.000053307000000 +0.000020135000000,0.000096369000000,0.000043641500000,0.000013818666667,0.000027246000000,0.000185653000000,0.000057258000000,0.000025073500000,0.000184863000000,0.000067134000000,0.000117308000000,0.000333801000000,0.000053702000000 +0.000020135000000,0.000096369000000,0.000026851000000,0.000013818666667,0.000027641500000,0.000181702000000,0.000058838000000,0.000026653500000,0.000184073000000,0.000063184000000,0.000117703000000,0.000275726000000,0.000052912000000 +0.000020332500000,0.000096369000000,0.000029024000000,0.000013818333333,0.000027246000000,0.000181702000000,0.000057653000000,0.000026061000000,0.000218838000000,0.000064764000000,0.000117307000000,0.000295480000000,0.000052912000000 +0.000020135000000,0.000148913000000,0.000030604500000,0.000013818333333,0.000027444000000,0.000187628000000,0.000057653000000,0.000026061500000,0.000187628000000,0.000063579000000,0.000117703000000,0.000278492000000,0.000052122000000 +0.000020135000000,0.000096369000000,0.000026061000000,0.000013818333333,0.000028036500000,0.000254394000000,0.000058443000000,0.000025666000000,0.000184073000000,0.000063974000000,0.000258740000000,0.000279677000000,0.000054097000000 +0.000044629000000,0.000118097000000,0.000025666000000,0.000013686666667,0.000026653500000,0.000183282000000,0.000057653000000,0.000025666000000,0.000183678000000,0.000063183000000,0.000131925000000,0.000273751000000,0.000051332000000 +0.000020135000000,0.000113356000000,0.000026851000000,0.000013686666667,0.000027839000000,0.000182493000000,0.000058048000000,0.000026258500000,0.000261110000000,0.000063579000000,0.000095974000000,0.000279282000000,0.000051727000000 +0.000020332500000,0.000116912000000,0.000026061000000,0.000013818666667,0.000027444000000,0.000215283000000,0.000057258000000,0.000026654000000,0.000180912000000,0.000065949000000,0.000096764000000,0.000278492000000,0.000057653000000 +0.000020333000000,0.000139035000000,0.000026851500000,0.000013818333333,0.000027246500000,0.000186443000000,0.000058838000000,0.000026653500000,0.000187233000000,0.000063184000000,0.000115332000000,0.000276912000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000026851000000,0.000013818333333,0.000027641000000,0.000188023000000,0.000058838000000,0.000025863500000,0.000184863000000,0.000063184000000,0.000117308000000,0.000277307000000,0.000109406000000 +0.000020135000000,0.000094394000000,0.000026851000000,0.000013818666667,0.000026456000000,0.000181703000000,0.000057653000000,0.000026258500000,0.000184468000000,0.000063579000000,0.000094789000000,0.000276912000000,0.000051727000000 +0.000021320500000,0.000115332000000,0.000026061000000,0.000013818333333,0.000025863500000,0.000252418000000,0.000057258000000,0.000026654000000,0.000180912000000,0.000066740000000,0.000152467000000,0.000275331000000,0.000055282000000 +0.000020333000000,0.000096764000000,0.000027048500000,0.000013818333333,0.000026061000000,0.000181702000000,0.000057258000000,0.000033369500000,0.000180122000000,0.000066345000000,0.000094789000000,0.000275332000000,0.000097949000000 +0.000020135500000,0.000095974000000,0.000026851500000,0.000013818666667,0.000027641000000,0.000187233000000,0.000058048000000,0.000026653500000,0.000198690000000,0.000064764000000,0.000096764000000,0.000293109000000,0.000051727000000 +0.000027443500000,0.000104665000000,0.000027839000000,0.000013687000000,0.000026653500000,0.000186048000000,0.000057258000000,0.000025863500000,0.000187628000000,0.000063974000000,0.000096369000000,0.000276912000000,0.000052517000000 +0.000021320500000,0.000095974000000,0.000026258500000,0.000013818666667,0.000027246000000,0.000184862000000,0.000057258000000,0.000026456500000,0.000183283000000,0.000171430000000,0.000096764000000,0.000278492000000,0.000053307000000 +0.000020333000000,0.000096369000000,0.000026653500000,0.000013686666667,0.000026654000000,0.000182097000000,0.000057653000000,0.000025665500000,0.000184467000000,0.000135480000000,0.000096369000000,0.000275332000000,0.000052912000000 +0.000020333000000,0.000094789000000,0.000027048500000,0.000014345000000,0.000028234000000,0.000212517000000,0.000057258000000,0.000025666000000,0.000214097000000,0.000080171000000,0.000096369000000,0.000361850000000,0.000052913000000 +0.000020135000000,0.000096369000000,0.000029024000000,0.000014345000000,0.000027049000000,0.000258739000000,0.000075036000000,0.000026456000000,0.000184468000000,0.000063579000000,0.000096764000000,0.000329455000000,0.000051727000000 +0.000020333000000,0.000180517000000,0.000030604500000,0.000014477000000,0.000033764500000,0.000184073000000,0.000057258000000,0.000025666000000,0.000183283000000,0.000066740000000,0.000117703000000,0.000293900000000,0.000053307000000 +0.000020135500000,0.000114542000000,0.000026456000000,0.000013818666667,0.000026061500000,0.000182097000000,0.000057258000000,0.000033962000000,0.000184073000000,0.000067924000000,0.000114541000000,0.000280073000000,0.000052122000000 +0.000021123000000,0.000096369000000,0.000026258500000,0.000013818666667,0.000027443500000,0.000184072000000,0.000058838000000,0.000026259000000,0.000250048000000,0.000068715000000,0.000096369000000,0.000629701000000,0.000051727000000 +0.000020332500000,0.000136271000000,0.000026851000000,0.000013687000000,0.000027839000000,0.000217653000000,0.000057258000000,0.000026259000000,0.000184468000000,0.000066739000000,0.000096369000000,0.000315233000000,0.000050937000000 +0.000030209000000,0.000095974000000,0.000035937500000,0.000013818666667,0.000027443500000,0.000187628000000,0.000057653000000,0.000026258500000,0.000180912000000,0.000067135000000,0.000118097000000,0.000275332000000,0.000051727000000 +0.000022505500000,0.000129554000000,0.000027246000000,0.000013818333333,0.000027444000000,0.000184072000000,0.000058838000000,0.000025863500000,0.000186443000000,0.000066740000000,0.000095184000000,0.000310097000000,0.000052123000000 +0.000020333000000,0.000096369000000,0.000027048500000,0.000013818666667,0.000027048500000,0.000186443000000,0.000057258000000,0.000025863500000,0.000217258000000,0.000069505000000,0.000117702000000,0.000277308000000,0.000052122000000 +0.000020332500000,0.000118098000000,0.000027048500000,0.000013686666667,0.000027246000000,0.000473652000000,0.000144171000000,0.000029616500000,0.000186838000000,0.000066739000000,0.000094393000000,0.000314048000000,0.000050937000000 +0.000020332500000,0.000117703000000,0.000026258500000,0.000013818333333,0.000043246000000,0.000199875000000,0.000064369000000,0.000024678500000,0.000186838000000,0.000067134000000,0.000097159000000,0.000275727000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000026654000000,0.000014608666667,0.000028036500000,0.000203431000000,0.000058443000000,0.000058653500000,0.000186443000000,0.000067925000000,0.000116122000000,0.000300221000000,0.000051727000000 +0.000020333000000,0.000129949000000,0.000027048500000,0.000014345000000,0.000027246000000,0.000182492000000,0.000061209000000,0.000025468500000,0.000200270000000,0.000066740000000,0.000098739000000,0.000278888000000,0.000051727000000 +0.000021320000000,0.000115727000000,0.000028036500000,0.000013818333333,0.000027444000000,0.000182097000000,0.000058443000000,0.000026258500000,0.000180517000000,0.000067134000000,0.000117307000000,0.000277702000000,0.000052912000000 +0.000021123000000,0.000096369000000,0.000043641000000,0.000014345333333,0.000028234000000,0.000182887000000,0.000057653000000,0.000026851500000,0.000180517000000,0.000069110000000,0.000094394000000,0.000276912000000,0.000051727000000 +0.000037122500000,0.000095974000000,0.000026061000000,0.000013950000000,0.000027246000000,0.000216862000000,0.000058443000000,0.000025863500000,0.000180517000000,0.000067135000000,0.000117703000000,0.000276912000000,0.000107035000000 +0.000021320500000,0.000096764000000,0.000027048500000,0.000013950000000,0.000027641500000,0.000181702000000,0.000072270000000,0.000025073500000,0.000183283000000,0.000073456000000,0.000096764000000,0.000275332000000,0.000052122000000 +0.000020333000000,0.000130345000000,0.000029024000000,0.000013818333333,0.000027443500000,0.000181703000000,0.000058443000000,0.000026851000000,0.000184863000000,0.000068320000000,0.000094789000000,0.000276517000000,0.000052912000000 +0.000020332500000,0.000115727000000,0.000030407000000,0.000014345333333,0.000043839000000,0.000181702000000,0.000058443000000,0.000024481000000,0.000186838000000,0.000069900000000,0.000094393000000,0.000276122000000,0.000052123000000 +0.000020135000000,0.000095974000000,0.000025666000000,0.000013818666667,0.000026851000000,0.000216073000000,0.000058443000000,0.000043443500000,0.000346443000000,0.000071875000000,0.000114937000000,0.000277702000000,0.000051727000000 +0.000020333000000,0.000114936000000,0.000025863500000,0.000014081666667,0.000027444000000,0.000183282000000,0.000058444000000,0.000026654000000,0.000310492000000,0.000070295000000,0.000117307000000,0.000337356000000,0.000051332000000 +0.000020333000000,0.000094789000000,0.000027246500000,0.000013950000000,0.000028628500000,0.000183282000000,0.000058838000000,0.000026653500000,0.000203825000000,0.000067134000000,0.000096369000000,0.000279283000000,0.000051332000000 +0.000020333000000,0.000135875000000,0.000039888500000,0.000014345333333,0.000028036000000,0.000181307000000,0.000057653000000,0.000027838500000,0.000181702000000,0.000068319000000,0.000095579000000,0.000314048000000,0.000051332000000 +0.000021320000000,0.000116122000000,0.000026851000000,0.000013818333333,0.000027444000000,0.000217653000000,0.000057258000000,0.000026061000000,0.000184468000000,0.000069899000000,0.000097949000000,0.000272961000000,0.000053702000000 +0.000020332500000,0.000097159000000,0.000026653500000,0.000014608666667,0.000027641500000,0.000184072000000,0.000057653000000,0.000025468500000,0.000187234000000,0.000068320000000,0.000115332000000,0.000312863000000,0.000053307000000 +0.000027443500000,0.000116517000000,0.000026851000000,0.000013818666667,0.000028826500000,0.000183282000000,0.000058838000000,0.000026456000000,0.000217258000000,0.000067530000000,0.000116913000000,0.000280468000000,0.000051727000000 +0.000020135500000,0.000115727000000,0.000026258500000,0.000013818666667,0.000036135000000,0.000185257000000,0.000058838000000,0.000026456000000,0.000184073000000,0.000067135000000,0.000096765000000,0.000332616000000,0.000050937000000 +0.000020333000000,0.000131924000000,0.000027246500000,0.000013818666667,0.000027048500000,0.000229109000000,0.000060024000000,0.000025863500000,0.000187233000000,0.000069110000000,0.000117307000000,0.000275332000000,0.000052122000000 +0.000020135000000,0.000094394000000,0.000026653500000,0.000013818666667,0.000026456000000,0.000186048000000,0.000057653000000,0.000026258500000,0.000186838000000,0.000067134000000,0.000098739000000,0.000425060000000,0.000088467000000 +0.000020332500000,0.000096369000000,0.000044826500000,0.000013818666667,0.000028234000000,0.000183677000000,0.000057652000000,0.000026258500000,0.000214493000000,0.000066344000000,0.000114937000000,0.000291530000000,0.000051332000000 +0.000021320500000,0.000094394000000,0.000026456000000,0.000013818333333,0.000027048500000,0.000183282000000,0.000057653000000,0.000025666000000,0.000184467000000,0.000067924000000,0.000096369000000,0.000277307000000,0.000053307000000 +0.000020333000000,0.000095579000000,0.000026061000000,0.000013818333333,0.000026653500000,0.000216863000000,0.000057258000000,0.000025863500000,0.000187628000000,0.000067529000000,0.000095579000000,0.000277702000000,0.000052912000000 +0.000021320000000,0.000152468000000,0.000026851500000,0.000013818333333,0.000027246500000,0.000184863000000,0.000058838000000,0.000025468500000,0.000184468000000,0.000067530000000,0.000117702000000,0.000278098000000,0.000052912000000 +0.000020135000000,0.000098344000000,0.000029024000000,0.000013818333333,0.000027246500000,0.000182887000000,0.000057653000000,0.000026061000000,0.000217653000000,0.000071875000000,0.000096764000000,0.000278888000000,0.000051332000000 +0.000044431500000,0.000115332000000,0.000030604000000,0.000014213666667,0.000027839000000,0.000187234000000,0.000057653000000,0.000025863500000,0.000184072000000,0.000069900000000,0.000096369000000,0.000310097000000,0.000052122000000 +0.000021517500000,0.000096369000000,0.000026258500000,0.000014345333333,0.000044629000000,0.000218048000000,0.000057653000000,0.000026061000000,0.000185258000000,0.000067925000000,0.000095974000000,0.000280468000000,0.000051332000000 +0.000021518000000,0.000117702000000,0.000026061000000,0.000013818666667,0.000033567000000,0.000181702000000,0.000057258000000,0.000032974500000,0.000184073000000,0.000067530000000,0.000117307000000,0.000308517000000,0.000051727000000 +0.000028431500000,0.000150097000000,0.000043839000000,0.000013818666667,0.000027049000000,0.000184467000000,0.000058838000000,0.000026258500000,0.000218048000000,0.000067530000000,0.000116912000000,0.000279678000000,0.000052122000000 +0.000020135000000,0.000117307000000,0.000026456000000,0.000024748666667,0.000027443500000,0.000183677000000,0.000057258000000,0.000025468500000,0.000187628000000,0.000070690000000,0.000096369000000,0.000510394000000,0.000053307000000 +0.000021123000000,0.000096369000000,0.000026851000000,0.000013160000000,0.000026258500000,0.000198295000000,0.000057653000000,0.000026061000000,0.000186838000000,0.000070294000000,0.000105455000000,0.000293900000000,0.000051727000000 +0.000020135000000,0.000115727000000,0.000026653500000,0.000013423333333,0.000026653500000,0.000182493000000,0.000060024000000,0.000026851000000,0.000186443000000,0.000067135000000,0.000115332000000,0.000289159000000,0.000053307000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027839000000,0.000184073000000,0.000057652000000,0.000024876000000,0.000252814000000,0.000071085000000,0.000096369000000,0.000277702000000,0.000071086000000 +0.000027049000000,0.000116122000000,0.000026258500000,0.000013160333333,0.000026258500000,0.000185653000000,0.000057258000000,0.000026456000000,0.000184073000000,0.000068715000000,0.000118888000000,0.000293505000000,0.000054493000000 +0.000020332500000,0.000115332000000,0.000027049000000,0.000013028333333,0.000027839000000,0.000182097000000,0.000057653000000,0.000027048500000,0.000184467000000,0.000069110000000,0.000116517000000,0.000280468000000,0.000051727000000 +0.000020332500000,0.000117307000000,0.000026851000000,0.000013028666667,0.000027246500000,0.000182098000000,0.000057258000000,0.000044629000000,0.000184467000000,0.000067924000000,0.000110196000000,0.000308122000000,0.000050937000000 +0.000021123000000,0.000095578000000,0.000034950000000,0.000013028333333,0.000027641000000,0.000182097000000,0.000057258000000,0.000060234000000,0.000184467000000,0.000071085000000,0.000118098000000,0.000274542000000,0.000052123000000 +0.000020332500000,0.000117307000000,0.000026258500000,0.000013160333333,0.000028826500000,0.000180912000000,0.000058838000000,0.000027641500000,0.000184073000000,0.000070294000000,0.000095974000000,0.000311677000000,0.000051727000000 +0.000020135500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027641500000,0.000250838000000,0.000079381000000,0.000027246000000,0.000184863000000,0.000066739000000,0.000116912000000,0.000278492000000,0.000053702000000 +0.000020135500000,0.000094394000000,0.000027049000000,0.000013028333333,0.000027839000000,0.000181308000000,0.000073455000000,0.000026061000000,0.000184073000000,0.000067924000000,0.000118888000000,0.000309307000000,0.000051332000000 +0.000020332500000,0.000117703000000,0.000028826000000,0.000013028333333,0.000026456000000,0.000186048000000,0.000057258000000,0.000028431500000,0.000184468000000,0.000066739000000,0.000118097000000,0.000280468000000,0.000051332000000 +0.000020332500000,0.000118888000000,0.000030604500000,0.000013028333333,0.000034554500000,0.000225554000000,0.000057653000000,0.000027246500000,0.000184468000000,0.000068319000000,0.000117307000000,0.000320369000000,0.000051727000000 +0.000030406500000,0.000117308000000,0.000025863500000,0.000013028333333,0.000026258500000,0.000184072000000,0.000058838000000,0.000031987000000,0.000183283000000,0.000068319000000,0.000095974000000,0.000274146000000,0.000051727000000 +0.000020135000000,0.000096764000000,0.000025863500000,0.000013028333333,0.000026653500000,0.000183678000000,0.000060024000000,0.000026258500000,0.000225159000000,0.000069900000000,0.000096369000000,0.000297060000000,0.000051727000000 +0.000020135000000,0.000116912000000,0.000026851000000,0.000014213333333,0.000028629000000,0.000182887000000,0.000058838000000,0.000026259000000,0.000195134000000,0.000066740000000,0.000115331000000,0.000277308000000,0.000052122000000 +0.000020135000000,0.000094788000000,0.000026061000000,0.000013160000000,0.000026851000000,0.000218838000000,0.000060023000000,0.000026259000000,0.000180122000000,0.000066740000000,0.000131530000000,0.000276517000000,0.000051332000000 +0.000020135000000,0.000118097000000,0.000027246500000,0.000013423666667,0.000026654000000,0.000183282000000,0.000057258000000,0.000027443500000,0.000187233000000,0.000067925000000,0.000117307000000,0.000306146000000,0.000052122000000 +0.000020135000000,0.000115727000000,0.000026851000000,0.000013423333333,0.000027246000000,0.000188024000000,0.000057258000000,0.000025863500000,0.000252814000000,0.000069505000000,0.000093998000000,0.000315628000000,0.000058443000000 +0.000020332500000,0.000117702000000,0.000027049000000,0.000019481000000,0.000027443500000,0.000182492000000,0.000057258000000,0.000025666000000,0.000185653000000,0.000069900000000,0.000118097000000,0.000281653000000,0.000052123000000 +0.000020332500000,0.000094394000000,0.000026061000000,0.000013028333333,0.000026456500000,0.000224369000000,0.000057258000000,0.000026061000000,0.000184468000000,0.000071085000000,0.000096369000000,0.000340122000000,0.000052122000000 +0.000020135500000,0.000117703000000,0.000027048500000,0.000013423333333,0.000027048500000,0.000182492000000,0.000056863000000,0.000035345000000,0.000183678000000,0.000072270000000,0.000119283000000,0.000276122000000,0.000051727000000 +0.000020135000000,0.000096764000000,0.000027049000000,0.000013160333333,0.000027246500000,0.000182492000000,0.000057258000000,0.000027048500000,0.000214097000000,0.000070690000000,0.000095974000000,0.000310887000000,0.000055677000000 +0.000020332500000,0.000095973000000,0.000028036500000,0.000013028333333,0.000027246000000,0.000186443000000,0.000058838000000,0.000026061000000,0.000184468000000,0.000069900000000,0.000094789000000,0.000272961000000,0.000052122000000 +0.000020135500000,0.000116912000000,0.000036530500000,0.000021719666667,0.000028036500000,0.000218442000000,0.000058838000000,0.000026061000000,0.000344863000000,0.000071085000000,0.000115727000000,0.000312862000000,0.000050937000000 +0.000020332500000,0.000095974000000,0.000032579500000,0.000018559333333,0.000026851000000,0.000186048000000,0.000058838000000,0.000025271000000,0.000231875000000,0.000066740000000,0.000096764000000,0.000281653000000,0.000050937000000 +0.000021122500000,0.000117307000000,0.000026851000000,0.000013028333333,0.000027641000000,0.000186048000000,0.000058838000000,0.000026653500000,0.000224764000000,0.000072270000000,0.000095974000000,0.000315233000000,0.000051332000000 +0.000020332500000,0.000097159000000,0.000028826500000,0.000013028333333,0.000027246500000,0.000182097000000,0.000057653000000,0.000026061000000,0.000184468000000,0.000069505000000,0.000124023000000,0.000278097000000,0.000051332000000 +0.000020333000000,0.000096369000000,0.000030407000000,0.000013555333333,0.000047789500000,0.000198690000000,0.000057258000000,0.000027641500000,0.000181702000000,0.000067135000000,0.000124814000000,0.000311677000000,0.000051332000000 +0.000020135500000,0.000096369000000,0.000026061000000,0.000013028333333,0.000027443500000,0.000181307000000,0.000057258000000,0.000025863500000,0.000184468000000,0.000069109000000,0.000124814000000,0.000274542000000,0.000052912000000 +0.000020135500000,0.000130345000000,0.000025863500000,0.000013686666667,0.000027246500000,0.000181308000000,0.000058838000000,0.000033172000000,0.000181702000000,0.000069504000000,0.000124023000000,0.000313653000000,0.000052122000000 +0.000021123000000,0.000095974000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000182887000000,0.000058838000000,0.000025666000000,0.000186443000000,0.000067134000000,0.000125208000000,0.000279282000000,0.000051332000000 +0.000033962000000,0.000097159000000,0.000026061000000,0.000013028333333,0.000027641500000,0.000201850000000,0.000057653000000,0.000025863500000,0.000183677000000,0.000066739000000,0.000117702000000,0.000276517000000,0.000051727000000 +0.000021320000000,0.000117703000000,0.000027049000000,0.000013028333333,0.000027443500000,0.000184072000000,0.000057258000000,0.000028629000000,0.000187628000000,0.000068319000000,0.000116122000000,0.000281653000000,0.000052122000000 +0.000020333000000,0.000119282000000,0.000027246500000,0.000013160000000,0.000027641000000,0.000187629000000,0.000058838000000,0.000025863500000,0.000183282000000,0.000067134000000,0.000096369000000,0.000276517000000,0.000051727000000 +0.000020333000000,0.000201060000000,0.000026851000000,0.000013028333333,0.000028431500000,0.000237801000000,0.000057653000000,0.000026653500000,0.000187233000000,0.000097159000000,0.000096764000000,0.000275727000000,0.000052122000000 +0.000020135500000,0.000117307000000,0.000026258500000,0.000013028333333,0.000026653500000,0.000185653000000,0.000058443000000,0.000024876000000,0.000225159000000,0.000064369000000,0.000117308000000,0.000278887000000,0.000088467000000 +0.000020135000000,0.000094394000000,0.000026851500000,0.000021324666667,0.000028234000000,0.000183283000000,0.000058838000000,0.000026258500000,0.000186838000000,0.000063974000000,0.000117308000000,0.000279677000000,0.000051727000000 +0.000020332500000,0.000117702000000,0.000027246500000,0.000022905000000,0.000027246500000,0.000186838000000,0.000057653000000,0.000027049000000,0.000187233000000,0.000065159000000,0.000118098000000,0.000274937000000,0.000052913000000 +0.000020333000000,0.000116517000000,0.000028036500000,0.000018427333333,0.000027048500000,0.000215282000000,0.000058838000000,0.000025271000000,0.000181702000000,0.000063974000000,0.000096369000000,0.000274937000000,0.000052912000000 +0.000020332500000,0.000150887000000,0.000026258500000,0.000013818333333,0.000028233500000,0.000183678000000,0.000057258000000,0.000025666000000,0.000215678000000,0.000065950000000,0.000117307000000,0.000277307000000,0.000051332000000 +0.000047789500000,0.000117307000000,0.000026061000000,0.000013818333333,0.000027246500000,0.000187628000000,0.000075826000000,0.000026456000000,0.000183282000000,0.000064369000000,0.000095974000000,0.000527776000000,0.000051727000000 +0.000063197000000,0.000116912000000,0.000027246000000,0.000018691000000,0.000026258500000,0.000182098000000,0.000058838000000,0.000026258500000,0.000184073000000,0.000063579000000,0.000117307000000,0.000273356000000,0.000053307000000 +0.000028431500000,0.000100714000000,0.000029024000000,0.000024090000000,0.000026259000000,0.000215282000000,0.000057653000000,0.000025073500000,0.000184468000000,0.000063579000000,0.000096369000000,0.000391085000000,0.000073060000000 +0.000027641500000,0.000109406000000,0.000030407000000,0.000035810333333,0.000086308000000,0.000181702000000,0.000057258000000,0.000026456000000,0.000232271000000,0.000066739000000,0.000115727000000,0.000380813000000,0.000055677000000 +0.000020135000000,0.000185653000000,0.000035937500000,0.000018954333333,0.000051542500000,0.000182492000000,0.000057257000000,0.000025666000000,0.000186048000000,0.000062789000000,0.000096369000000,0.000281653000000,0.000051332000000 +0.000021320500000,0.000096369000000,0.000026258500000,0.000024880000000,0.000028234000000,0.000183282000000,0.000057653000000,0.000041863500000,0.000186048000000,0.000063578000000,0.000117307000000,0.000359085000000,0.000052517000000 +0.000020332500000,0.000094394000000,0.000026851000000,0.000018822333333,0.000028036000000,0.000411628000000,0.000057653000000,0.000025666000000,0.000188418000000,0.000065950000000,0.000117307000000,0.000276122000000,0.000050937000000 +0.000044233500000,0.000095974000000,0.000026258500000,0.000024485333333,0.000044036500000,0.000200665000000,0.000058443000000,0.000027246500000,0.000214888000000,0.000064764000000,0.000117307000000,0.000364220000000,0.000069899000000 +0.000020135500000,0.000094394000000,0.000026851500000,0.000013818666667,0.000027048500000,0.000182097000000,0.000057653000000,0.000028431500000,0.000184468000000,0.000065555000000,0.000096369000000,0.000280073000000,0.000050937000000 +0.000020332500000,0.000143777000000,0.000026851500000,0.000013950333333,0.000026654000000,0.000218838000000,0.000073851000000,0.000026851000000,0.000184468000000,0.000108616000000,0.000114937000000,0.000361850000000,0.000053703000000 +0.000020135000000,0.000094394000000,0.000026851000000,0.000014345333333,0.000027048500000,0.000187629000000,0.000060023000000,0.000025666000000,0.000182097000000,0.000067135000000,0.000094394000000,0.000273357000000,0.000052122000000 +0.000020135000000,0.000095974000000,0.000026851500000,0.000013818333333,0.000027444000000,0.000182097000000,0.000058838000000,0.000025863500000,0.000184467000000,0.000065554000000,0.000119283000000,0.000357900000000,0.000053308000000 +0.000020332500000,0.000114937000000,0.000043838500000,0.000013950333333,0.000027443500000,0.000185652000000,0.000057653000000,0.000028629000000,0.000184862000000,0.000063184000000,0.000095184000000,0.000278492000000,0.000050937000000 +0.000021122500000,0.000117308000000,0.000026653500000,0.000031596333333,0.000027049000000,0.000216073000000,0.000057653000000,0.000052727500000,0.000187233000000,0.000067134000000,0.000096764000000,0.000347233000000,0.000051332000000 +0.000020333000000,0.000150887000000,0.000027838500000,0.000013555000000,0.000027444000000,0.000186838000000,0.000057653000000,0.000025073500000,0.000183678000000,0.000063974000000,0.000094789000000,0.000280073000000,0.000067529000000 +0.000020333000000,0.000094394000000,0.000026258500000,0.000013028333333,0.000054110500000,0.000183283000000,0.000058838000000,0.000026456000000,0.000242146000000,0.000063579000000,0.000116912000000,0.000349998000000,0.000054492000000 +0.000027246500000,0.000095974000000,0.000026259000000,0.000020008000000,0.000026851000000,0.000181702000000,0.000127578000000,0.000024876000000,0.000184072000000,0.000099530000000,0.000116913000000,0.000275332000000,0.000051332000000 +0.000020332500000,0.000094789000000,0.000027246500000,0.000014345000000,0.000027641500000,0.000195530000000,0.000057257000000,0.000026653500000,0.000184467000000,0.000063183000000,0.000095974000000,0.000311678000000,0.000051727000000 +0.000020333000000,0.000095974000000,0.000028629000000,0.000013423333333,0.000026456000000,0.000182888000000,0.000057653000000,0.000026259000000,0.000234245000000,0.000067134000000,0.000115727000000,0.000281258000000,0.000053703000000 +0.000020333000000,0.000117307000000,0.000030604000000,0.000013818333333,0.000027049000000,0.000187233000000,0.000058048000000,0.000025666000000,0.000186443000000,0.000064764000000,0.000096369000000,0.000293899000000,0.000052912000000 +0.000020135000000,0.000117308000000,0.000043838500000,0.000013028333333,0.000027444000000,0.000183678000000,0.000058049000000,0.000026061000000,0.000187233000000,0.000063184000000,0.000094789000000,0.000346443000000,0.000052913000000 +0.000020333000000,0.000096369000000,0.000027443500000,0.000013028333333,0.000028234000000,0.000219234000000,0.000057653000000,0.000045221500000,0.000186838000000,0.000070295000000,0.000117307000000,0.000279677000000,0.000063184000000 +0.000020332500000,0.000117307000000,0.000027048500000,0.000013028333333,0.000027443500000,0.000184863000000,0.000057258000000,0.000025666000000,0.000214887000000,0.000065554000000,0.000227925000000,0.000276122000000,0.000051332000000 +0.000020135000000,0.000100714000000,0.000026456500000,0.000013028333333,0.000043641000000,0.000184863000000,0.000060023000000,0.000026258500000,0.000184073000000,0.000082147000000,0.000111777000000,0.000273356000000,0.000051332000000 +0.000020135000000,0.000095184000000,0.000026851000000,0.000013555333333,0.000028629000000,0.000216862000000,0.000057653000000,0.000026653500000,0.000184862000000,0.000063184000000,0.000097554000000,0.000307332000000,0.000050937000000 +0.000020135500000,0.000115727000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000183677000000,0.000057258000000,0.000025468500000,0.000183282000000,0.000063579000000,0.000116123000000,0.000293899000000,0.000054098000000 +0.000020332500000,0.000117307000000,0.000027048500000,0.000013028333333,0.000027246000000,0.000182887000000,0.000058838000000,0.000028431500000,0.000184468000000,0.000065554000000,0.000095974000000,0.000292320000000,0.000052912000000 +0.000020332500000,0.000117307000000,0.000043246000000,0.000013028333333,0.000027246500000,0.000182493000000,0.000058443000000,0.000026456000000,0.000182097000000,0.000062788000000,0.000096369000000,0.000293109000000,0.000089258000000 +0.000020530000000,0.000094789000000,0.000026851500000,0.000014740333333,0.000026456500000,0.000217652000000,0.000057257000000,0.000026061000000,0.000187628000000,0.000063184000000,0.000094789000000,0.000295875000000,0.000051332000000 +0.000020332500000,0.000117308000000,0.000027048500000,0.000013028333333,0.000027246500000,0.000181702000000,0.000057653000000,0.000027048500000,0.000203826000000,0.000063974000000,0.000095974000000,0.000292319000000,0.000053702000000 +0.000020332500000,0.000130739000000,0.000027839000000,0.000013028333333,0.000027246000000,0.000182887000000,0.000057652000000,0.000026061000000,0.000184863000000,0.000065159000000,0.000094788000000,0.000291529000000,0.000052912000000 +0.000020135000000,0.000117702000000,0.000026258500000,0.000013028333333,0.000037320000000,0.000182493000000,0.000057258000000,0.000043246500000,0.000184072000000,0.000063974000000,0.000115332000000,0.000297060000000,0.000053702000000 +0.000020135000000,0.000096369000000,0.000025666000000,0.000013028333333,0.000026851000000,0.000215677000000,0.000058048000000,0.000026851000000,0.000184467000000,0.000063184000000,0.000192764000000,0.000293110000000,0.000053307000000 +0.000020332500000,0.000119283000000,0.000026851000000,0.000017900666667,0.000027444000000,0.000181307000000,0.000058838000000,0.000026653500000,0.000217258000000,0.000065949000000,0.000116122000000,0.000290739000000,0.000052912000000 +0.000020332500000,0.000117307000000,0.000028826500000,0.000013028333333,0.000027443500000,0.000186838000000,0.000057258000000,0.000026061000000,0.000184862000000,0.000063974000000,0.000096369000000,0.000295085000000,0.000053307000000 +0.000036333000000,0.000129554000000,0.000038900500000,0.000013028333333,0.000029024000000,0.000182887000000,0.000057258000000,0.000026654000000,0.000184468000000,0.000065949000000,0.000119283000000,0.000290344000000,0.000051332000000 +0.000020332500000,0.000102295000000,0.000026061000000,0.000013028333333,0.000027641500000,0.000225159000000,0.000058443000000,0.000026061000000,0.000184863000000,0.000067135000000,0.000096369000000,0.000293900000000,0.000052912000000 +0.000020333000000,0.000124418000000,0.000026061000000,0.000013028333333,0.000027444000000,0.000184467000000,0.000057653000000,0.000035937500000,0.000261900000000,0.000062393000000,0.000130739000000,0.000302196000000,0.000051332000000 +0.000020135000000,0.000102295000000,0.000027246500000,0.000013028333333,0.000027246000000,0.000181702000000,0.000058048000000,0.000032974500000,0.000181703000000,0.000076616000000,0.000114937000000,0.000294295000000,0.000052122000000 +0.000020135500000,0.000100714000000,0.000026258500000,0.000013160000000,0.000054505500000,0.000184863000000,0.000056863000000,0.000025073500000,0.000180517000000,0.000063184000000,0.000116122000000,0.000329060000000,0.000054097000000 +0.000020135000000,0.000116122000000,0.000027246000000,0.000013028666667,0.000025864000000,0.000217653000000,0.000059233000000,0.000026653500000,0.000184467000000,0.000069110000000,0.000115727000000,0.000292714000000,0.000051332000000 +0.000020135000000,0.000114542000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000184862000000,0.000058838000000,0.000026258500000,0.000217652000000,0.000066740000000,0.000116122000000,0.000298640000000,0.000053308000000 +0.000020135500000,0.000114937000000,0.000027048500000,0.000013028333333,0.000026258500000,0.000186048000000,0.000057258000000,0.000024678500000,0.000184863000000,0.000065950000000,0.000116517000000,0.000291529000000,0.000051332000000 +0.000021320000000,0.000117702000000,0.000026258500000,0.000012896666667,0.000027246500000,0.000184072000000,0.000057653000000,0.000028431500000,0.000184863000000,0.000063184000000,0.000096369000000,0.000295480000000,0.000054888000000 +0.000027246500000,0.000114542000000,0.000027048500000,0.000013028333333,0.000026851500000,0.000252813000000,0.000058048000000,0.000026456000000,0.000180517000000,0.000065554000000,0.000103875000000,0.000310493000000,0.000061999000000 +0.000020332500000,0.000216468000000,0.000026851000000,0.000013028333333,0.000026061500000,0.000187233000000,0.000058048000000,0.000026258500000,0.000214492000000,0.000098740000000,0.000116517000000,0.000276912000000,0.000051727000000 +0.000020135000000,0.000117703000000,0.000028036500000,0.000013028333333,0.000028431500000,0.000183677000000,0.000057653000000,0.000026061000000,0.000184467000000,0.000065554000000,0.000096369000000,0.000275727000000,0.000052122000000 +0.000031592000000,0.000096369000000,0.000026456500000,0.000012896666667,0.000043048500000,0.000185258000000,0.000057653000000,0.000026061000000,0.000183677000000,0.000063184000000,0.000151677000000,0.000277702000000,0.000088862000000 +0.000027049000000,0.000150492000000,0.000026456000000,0.000013028333333,0.000026061000000,0.000180517000000,0.000057653000000,0.000026061000000,0.000187628000000,0.000063184000000,0.000116517000000,0.000275332000000,0.000053307000000 +0.000020333000000,0.000096764000000,0.000027048500000,0.000013555333333,0.000026851500000,0.000182492000000,0.000057258000000,0.000026258500000,0.000194739000000,0.000070690000000,0.000113752000000,0.000275332000000,0.000052912000000 +0.000020135000000,0.000117307000000,0.000045814000000,0.000013423666667,0.000027048500000,0.000181307000000,0.000058443000000,0.000025468500000,0.000187233000000,0.000065555000000,0.000096369000000,0.000273356000000,0.000051727000000 +0.000020332500000,0.000105455000000,0.000030604000000,0.000013423333333,0.000026654000000,0.000218838000000,0.000057653000000,0.000026061000000,0.000180517000000,0.000067925000000,0.000096369000000,0.000276517000000,0.000052912000000 +0.000020135000000,0.000095974000000,0.000026456000000,0.000024353333333,0.000026456000000,0.000182097000000,0.000057258000000,0.000028431500000,0.000186443000000,0.000083332000000,0.000132320000000,0.000287184000000,0.000051332000000 +0.000021320500000,0.000116912000000,0.000025863500000,0.000013028333333,0.000026061000000,0.000184072000000,0.000058838000000,0.000025863500000,0.000202641000000,0.000062788000000,0.000135480000000,0.000278888000000,0.000051332000000 +0.000020135000000,0.000114937000000,0.000026851000000,0.000013028666667,0.000026654000000,0.000184467000000,0.000057653000000,0.000033370000000,0.000184467000000,0.000063974000000,0.000131134000000,0.000308122000000,0.000050937000000 +0.000020332500000,0.000116122000000,0.000026258500000,0.000013028333333,0.000027049000000,0.000217653000000,0.000057653000000,0.000026258500000,0.000230690000000,0.000065949000000,0.000114542000000,0.000275332000000,0.000052122000000 +0.000021320000000,0.000096369000000,0.000027048500000,0.000013028333333,0.000026456000000,0.000184863000000,0.000112962000000,0.000026456000000,0.000184862000000,0.000063579000000,0.000115727000000,0.000399381000000,0.000052122000000 +0.000020332500000,0.000099134000000,0.000027048500000,0.000013028333333,0.000027641500000,0.000185653000000,0.000057258000000,0.000026851500000,0.000187233000000,0.000067134000000,0.000150493000000,0.000275727000000,0.000051727000000 +0.000020332500000,0.000094789000000,0.000026851000000,0.000013028333333,0.000026456000000,0.000183282000000,0.000058838000000,0.000025073500000,0.000204221000000,0.000065554000000,0.000095579000000,0.000306542000000,0.000051727000000 +0.000020332500000,0.000136270000000,0.000026259000000,0.000013028333333,0.000028036500000,0.000259530000000,0.000060418000000,0.000027048500000,0.000184863000000,0.000123628000000,0.000116122000000,0.000277702000000,0.000051332000000 +0.000020135000000,0.000130344000000,0.000026653500000,0.000013818666667,0.000027443500000,0.000184468000000,0.000058444000000,0.000026061000000,0.000184862000000,0.000082541000000,0.000096369000000,0.000417554000000,0.000101505000000 +0.000020333000000,0.000114937000000,0.000026851500000,0.000013423333333,0.000027444000000,0.000185258000000,0.000061209000000,0.000026456000000,0.000184467000000,0.000067134000000,0.000116912000000,0.000275727000000,0.000052122000000 +0.000038308000000,0.000116912000000,0.000028036500000,0.000013028333333,0.000029024000000,0.000182098000000,0.000058443000000,0.000045024000000,0.000218443000000,0.000066344000000,0.000235036000000,0.000346048000000,0.000052912000000 +0.000021122500000,0.000204616000000,0.000026258500000,0.000013423333333,0.000026456000000,0.000216862000000,0.000057653000000,0.000075641000000,0.000180517000000,0.000110196000000,0.000130739000000,0.000276517000000,0.000051727000000 +0.000020332500000,0.000096764000000,0.000025863500000,0.000013028333333,0.000033567500000,0.000186048000000,0.000058839000000,0.000034357500000,0.000180122000000,0.000062788000000,0.000096764000000,0.000325899000000,0.000051727000000 +0.000021123000000,0.000117702000000,0.000027246000000,0.000013028333333,0.000027246000000,0.000185258000000,0.000059234000000,0.000034752500000,0.000186838000000,0.000098345000000,0.000096369000000,0.000277307000000,0.000052122000000 +0.000020333000000,0.000099925000000,0.000029024000000,0.000013160333333,0.000028036500000,0.000181702000000,0.000058443000000,0.000026258500000,0.000217653000000,0.000063579000000,0.000116122000000,0.000348418000000,0.000052912000000 +0.000020332500000,0.000117308000000,0.000030604000000,0.000013555000000,0.000027246000000,0.000197110000000,0.000058838000000,0.000026258500000,0.000186838000000,0.000065159000000,0.000206986000000,0.000280467000000,0.000080566000000 +0.000020332500000,0.000130344000000,0.000025666000000,0.000013028333333,0.000026851000000,0.000181307000000,0.000058839000000,0.000050752500000,0.000184073000000,0.000065949000000,0.000156418000000,0.000333011000000,0.000051332000000 +0.000020135500000,0.000096369000000,0.000025863500000,0.000013028333333,0.000028629000000,0.000186048000000,0.000058443000000,0.000026061000000,0.000184073000000,0.000062789000000,0.000243332000000,0.000276121000000,0.000051727000000 +0.000020333000000,0.000095974000000,0.000027048500000,0.000013160000000,0.000027443500000,0.000183678000000,0.000058838000000,0.000026456000000,0.000218048000000,0.000063579000000,0.000221999000000,0.000325900000000,0.000052122000000 +0.000020135000000,0.000114147000000,0.000026456000000,0.000018296000000,0.000026061000000,0.000181307000000,0.000057258000000,0.000026258500000,0.000184468000000,0.000066344000000,0.000176962000000,0.000280468000000,0.000051332000000 +0.000021320000000,0.000096369000000,0.000027048500000,0.000013028333333,0.000026654000000,0.000200665000000,0.000057258000000,0.000026061000000,0.000186838000000,0.000067135000000,0.000147332000000,0.000348813000000,0.000053307000000 +0.000020135000000,0.000133505000000,0.000043641500000,0.000013818333333,0.000026061000000,0.000198689000000,0.000057653000000,0.000025863500000,0.000186443000000,0.000063579000000,0.000257159000000,0.000279282000000,0.000086492000000 +0.000020135000000,0.000116912000000,0.000026851500000,0.000013028333333,0.000028036500000,0.000233850000000,0.000075035000000,0.000025863500000,0.000215678000000,0.000064764000000,0.000168665000000,0.000293900000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000026061500000,0.000013028333333,0.000028234000000,0.000181703000000,0.000058838000000,0.000026851000000,0.000184073000000,0.000064764000000,0.000147727000000,0.000273751000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027049000000,0.000181702000000,0.000060023000000,0.000056678000000,0.000184468000000,0.000067530000000,0.000167480000000,0.000277702000000,0.000052518000000 +0.000020135000000,0.000096369000000,0.000027049000000,0.000012896666667,0.000026259000000,0.000181702000000,0.000057653000000,0.000027839000000,0.000184468000000,0.000063184000000,0.000132715000000,0.000275727000000,0.000052913000000 +0.000020332500000,0.000114542000000,0.000028036500000,0.000013028333333,0.000026851500000,0.000217258000000,0.000057258000000,0.000025666000000,0.000227135000000,0.000065950000000,0.000119282000000,0.000278887000000,0.000051727000000 +0.000021320500000,0.000096764000000,0.000026456000000,0.000013028333333,0.000026653500000,0.000182888000000,0.000091233000000,0.000025468500000,0.000184863000000,0.000063184000000,0.000141406000000,0.000277703000000,0.000051727000000 +0.000020135000000,0.000100714000000,0.000026258500000,0.000019612666667,0.000033962000000,0.000182887000000,0.000057653000000,0.000028629000000,0.000185257000000,0.000063579000000,0.000106641000000,0.000276912000000,0.000052912000000 +0.000021320500000,0.000116122000000,0.000034159500000,0.000013028333333,0.000027246000000,0.000184863000000,0.000058838000000,0.000026258500000,0.000184862000000,0.000063974000000,0.000105850000000,0.000457850000000,0.000052913000000 +0.000020135000000,0.000096369000000,0.000029024000000,0.000013028333333,0.000028036500000,0.000314838000000,0.000057653000000,0.000026456000000,0.000186838000000,0.000063184000000,0.000126394000000,0.000360665000000,0.000051332000000 +0.000020135000000,0.000117308000000,0.000030406500000,0.000013555000000,0.000027246000000,0.000206591000000,0.000057257000000,0.000026851500000,0.000183678000000,0.000063184000000,0.000128369000000,0.000299036000000,0.000052122000000 +0.000020333000000,0.000229900000000,0.000026061000000,0.000013423333333,0.000027048500000,0.000183283000000,0.000057653000000,0.000039888500000,0.000184863000000,0.000065554000000,0.000113751000000,0.000299431000000,0.000051332000000 +0.000020332500000,0.000147727000000,0.000044036500000,0.000013028333333,0.000027641500000,0.000215678000000,0.000057258000000,0.000026061000000,0.000184073000000,0.000065159000000,0.000105061000000,0.000299430000000,0.000051332000000 +0.000020332500000,0.000116912000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000185258000000,0.000058838000000,0.000026258500000,0.000230295000000,0.000063183000000,0.000126393000000,0.000385949000000,0.000051727000000 +0.000020135500000,0.000110196000000,0.000026258500000,0.000013555333333,0.000028234000000,0.000184073000000,0.000111776000000,0.000025666000000,0.000184863000000,0.000084913000000,0.000126789000000,0.000291134000000,0.000053307000000 +0.000021320000000,0.000096369000000,0.000046604000000,0.000013160333333,0.000042456000000,0.000182493000000,0.000074640000000,0.000025666000000,0.000184863000000,0.000065950000000,0.000105456000000,0.000332220000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000026851500000,0.000013423333333,0.000026456500000,0.000252418000000,0.000060023000000,0.000026258500000,0.000304567000000,0.000063578000000,0.000126789000000,0.000290344000000,0.000053307000000 +0.000020135500000,0.000117307000000,0.000026653500000,0.000013028333333,0.000027443500000,0.000183677000000,0.000057653000000,0.000026456000000,0.000516714000000,0.000062789000000,0.000123233000000,0.000336171000000,0.000052122000000 +0.000020333000000,0.000095973000000,0.000026258500000,0.000013160333333,0.000027246000000,0.000182493000000,0.000057653000000,0.000025863500000,0.000365801000000,0.000063184000000,0.000122443000000,0.000296270000000,0.000054887000000 +0.000020135000000,0.000167875000000,0.000026851500000,0.000013028333333,0.000027444000000,0.000181307000000,0.000057653000000,0.000034159500000,0.000184468000000,0.000064369000000,0.000140221000000,0.000330245000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000027246000000,0.000013028333333,0.000026456000000,0.000221603000000,0.000057257000000,0.000026851500000,0.000184863000000,0.000064369000000,0.000124813000000,0.000290740000000,0.000050937000000 +0.000021122500000,0.000094394000000,0.000028036500000,0.000013028333333,0.000027444000000,0.000185653000000,0.000091234000000,0.000025863500000,0.000198690000000,0.000099134000000,0.000116912000000,0.000353554000000,0.000051728000000 +0.000020333000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000029024000000,0.000182492000000,0.000058443000000,0.000026061000000,0.000183678000000,0.000063184000000,0.000095184000000,0.000291924000000,0.000051727000000 +0.000020332500000,0.000117307000000,0.000026061000000,0.000013028666667,0.000027048500000,0.000182098000000,0.000060023000000,0.000026061000000,0.000186838000000,0.000066739000000,0.000095974000000,0.000364221000000,0.000052517000000 +0.000020135000000,0.000195924000000,0.000027048500000,0.000025538666667,0.000041468500000,0.000232271000000,0.000058838000000,0.000026258500000,0.000231875000000,0.000067529000000,0.000096369000000,0.000298245000000,0.000051727000000 +0.000020333000000,0.000117308000000,0.000029024500000,0.000017769000000,0.000026061500000,0.000182492000000,0.000057653000000,0.000028628500000,0.000184863000000,0.000068319000000,0.000096764000000,0.000292714000000,0.000051332000000 +0.000047394500000,0.000116913000000,0.000030604000000,0.000013028333333,0.000026653500000,0.000183283000000,0.000057258000000,0.000025468500000,0.000185258000000,0.000063974000000,0.000096369000000,0.000296270000000,0.000088072000000 +0.000020332500000,0.000117307000000,0.000026258500000,0.000013028333333,0.000026654000000,0.000185653000000,0.000058443000000,0.000025073500000,0.000184468000000,0.000062789000000,0.000096369000000,0.000322344000000,0.000051727000000 +0.000020135000000,0.000096369000000,0.000026061000000,0.000031332666667,0.000029222000000,0.000184073000000,0.000060023000000,0.000025863500000,0.000254789000000,0.000086887000000,0.000095974000000,0.000295085000000,0.000051332000000 +0.000020332500000,0.000129159000000,0.000027246000000,0.000014345000000,0.000028233500000,0.000181307000000,0.000113357000000,0.000025666000000,0.000181703000000,0.000064765000000,0.000115727000000,0.000296665000000,0.000052122000000 +0.000020135500000,0.000096369000000,0.000026061000000,0.000013028666667,0.000044234000000,0.000181307000000,0.000060023000000,0.000026061000000,0.000180122000000,0.000065950000000,0.000116122000000,0.000289554000000,0.000052122000000 +0.000020135000000,0.000094394000000,0.000033370000000,0.000013423666667,0.000027641500000,0.000184073000000,0.000057653000000,0.000025271000000,0.000184467000000,0.000065554000000,0.000133505000000,0.000299826000000,0.000051727000000 +0.000020332500000,0.000096764000000,0.000027049000000,0.000013555000000,0.000026456000000,0.000200270000000,0.000057653000000,0.000026258500000,0.000187233000000,0.000063184000000,0.000094789000000,0.000294294000000,0.000058443000000 +0.000020333000000,0.000095974000000,0.000026851000000,0.000038839000000,0.000028234000000,0.000181702000000,0.000057653000000,0.000026258500000,0.000184468000000,0.000067924000000,0.000153258000000,0.000325504000000,0.000052122000000 +0.000020333000000,0.000118888000000,0.000026061000000,0.000013028333333,0.000026258500000,0.000184072000000,0.000057258000000,0.000025468500000,0.000181703000000,0.000062789000000,0.000115727000000,0.000294689000000,0.000050936000000 +0.000039690500000,0.000115727000000,0.000026654000000,0.000013555000000,0.000027444000000,0.000215283000000,0.000057257000000,0.000060036500000,0.000180122000000,0.000086493000000,0.000096764000000,0.000295480000000,0.000051727000000 +0.000062604000000,0.000117307000000,0.000026851000000,0.000013028333333,0.000028826500000,0.000182493000000,0.000057653000000,0.000026258500000,0.000180122000000,0.000064764000000,0.000094789000000,0.000346048000000,0.000056468000000 +0.000037320000000,0.000118097000000,0.000027839000000,0.000013028333333,0.000027641500000,0.000182887000000,0.000106246000000,0.000025271000000,0.000184468000000,0.000066740000000,0.000168270000000,0.000293109000000,0.000052122000000 +0.000021518000000,0.000117307000000,0.000053912500000,0.000013555000000,0.000043838500000,0.000184467000000,0.000058838000000,0.000026258500000,0.000180517000000,0.000064369000000,0.000101900000000,0.000291529000000,0.000052122000000 +0.000020333000000,0.000169850000000,0.000068332500000,0.000013160333333,0.000027048500000,0.000362640000000,0.000058838000000,0.000026653500000,0.000231085000000,0.000062789000000,0.000115332000000,0.000300220000000,0.000051727000000 +0.000021123000000,0.000125209000000,0.000035345000000,0.000013028333333,0.000027246000000,0.000280863000000,0.000058443000000,0.000024876000000,0.000180517000000,0.000063184000000,0.000097159000000,0.000295480000000,0.000051332000000 +0.000027444000000,0.000122838000000,0.000028826500000,0.000013028333333,0.000028036500000,0.000181307000000,0.000057653000000,0.000026653500000,0.000187233000000,0.000064764000000,0.000096369000000,0.000550689000000,0.000051332000000 +0.000020135000000,0.000135875000000,0.000030604000000,0.000018427333333,0.000026259000000,0.000184862000000,0.000057653000000,0.000026653500000,0.000180912000000,0.000063974000000,0.000116122000000,0.000291529000000,0.000051727000000 +0.000020135500000,0.000096369000000,0.000035147000000,0.000013028333333,0.000028233500000,0.000181307000000,0.000057653000000,0.000063591500000,0.000371332000000,0.000063184000000,0.000095974000000,0.000297060000000,0.000053307000000 +0.000020333000000,0.000114147000000,0.000033567500000,0.000013423333333,0.000027246000000,0.000184073000000,0.000058838000000,0.000026851000000,0.000476418000000,0.000068320000000,0.000134689000000,0.000295875000000,0.000051727000000 +0.000021320500000,0.000117703000000,0.000026851500000,0.000013028333333,0.000027443500000,0.000217653000000,0.000107826000000,0.000025271000000,0.000215283000000,0.000065554000000,0.000101899000000,0.000295085000000,0.000050937000000 +0.000020332500000,0.000094789000000,0.000026061000000,0.000013028333333,0.000061221500000,0.000185653000000,0.000057653000000,0.000025271000000,0.000180122000000,0.000063184000000,0.000123628000000,0.000293900000000,0.000090443000000 +0.000021122500000,0.000116912000000,0.000027048500000,0.000013028333333,0.000027839000000,0.000187628000000,0.000057653000000,0.000025271000000,0.000187628000000,0.000062788000000,0.000102295000000,0.000295085000000,0.000052122000000 +0.000020332500000,0.000094789000000,0.000026654000000,0.000013028333333,0.000028233500000,0.000220419000000,0.000058838000000,0.000025666000000,0.000203430000000,0.000063184000000,0.000122443000000,0.000293505000000,0.000051727000000 +0.000020135000000,0.000133110000000,0.000026851000000,0.000012896666667,0.000027246000000,0.000217653000000,0.000057258000000,0.000026851000000,0.000185258000000,0.000062789000000,0.000123233000000,0.000295875000000,0.000052122000000 +0.000030011500000,0.000095973000000,0.000026061000000,0.000013028666667,0.000026851000000,0.000182888000000,0.000058838000000,0.000025666000000,0.000185653000000,0.000077011000000,0.000123233000000,0.000294690000000,0.000053307000000 +0.000027048500000,0.000096764000000,0.000036925500000,0.000024221666667,0.000026851000000,0.000184073000000,0.000058838000000,0.000059641000000,0.000184468000000,0.000069110000000,0.000123234000000,0.000288369000000,0.000051332000000 +0.000020332500000,0.000110986000000,0.000027049000000,0.000012896666667,0.000027839000000,0.000181702000000,0.000057653000000,0.000026258500000,0.000216863000000,0.000067134000000,0.000102295000000,0.000289554000000,0.000052912000000 +0.000020135500000,0.000105455000000,0.000028036500000,0.000012896666667,0.000026851500000,0.000267826000000,0.000058838000000,0.000026851000000,0.000181307000000,0.000062789000000,0.000124023000000,0.000292319000000,0.000052913000000 +0.000020332500000,0.000166295000000,0.000026456500000,0.000013028333333,0.000081962000000,0.000186048000000,0.000057258000000,0.000025468000000,0.000182887000000,0.000065554000000,0.000122838000000,0.000295480000000,0.000050937000000 +0.000020135000000,0.000116913000000,0.000026258500000,0.000013028333333,0.000059246000000,0.000183283000000,0.000057653000000,0.000026061000000,0.000180517000000,0.000062789000000,0.000121258000000,0.000304961000000,0.000050937000000 +0.000020333000000,0.000115332000000,0.000026851000000,0.000013423666667,0.000028036000000,0.000181702000000,0.000058443000000,0.000026851000000,0.000217653000000,0.000085307000000,0.000100715000000,0.000293109000000,0.000053307000000 +0.000020333000000,0.000096369000000,0.000028826500000,0.000013160333333,0.000026851000000,0.000195925000000,0.000057653000000,0.000026061000000,0.000184468000000,0.000065554000000,0.000102294000000,0.000292320000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000049962500000,0.000013555000000,0.000027049000000,0.000182097000000,0.000057653000000,0.000026654000000,0.000229109000000,0.000063183000000,0.000107036000000,0.000291134000000,0.000052912000000 +0.000030407000000,0.000154048000000,0.000026258500000,0.000013028333333,0.000037123000000,0.000182493000000,0.000058048000000,0.000051345000000,0.000186443000000,0.000063974000000,0.000100319000000,0.000291925000000,0.000071085000000 +0.000021122500000,0.000094788000000,0.000026456500000,0.000013028666667,0.000027246500000,0.000203825000000,0.000057653000000,0.000027443500000,0.000216863000000,0.000063184000000,0.000101899000000,0.000290739000000,0.000124813000000 +0.000020332500000,0.000116912000000,0.000026851500000,0.000013028333333,0.000027246000000,0.000182492000000,0.000090443000000,0.000026258500000,0.000185653000000,0.000063974000000,0.000122443000000,0.000302196000000,0.000114147000000 +0.000020332500000,0.000094789000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000181307000000,0.000058048000000,0.000025863500000,0.000195529000000,0.000065159000000,0.000123628000000,0.000296270000000,0.000053308000000 +0.000020332500000,0.000096764000000,0.000026851000000,0.000013028666667,0.000027246500000,0.000181702000000,0.000057258000000,0.000027246500000,0.000198690000000,0.000065949000000,0.000122838000000,0.000357109000000,0.000050937000000 +0.000020333000000,0.000168665000000,0.000026851500000,0.000013028333333,0.000027443500000,0.000216468000000,0.000057653000000,0.000026456500000,0.000196319000000,0.000062789000000,0.000101900000000,0.000290344000000,0.000052912000000 +0.000020135500000,0.000096369000000,0.000027048500000,0.000013423666667,0.000027246000000,0.000183283000000,0.000060024000000,0.000027246000000,0.000195529000000,0.000063578000000,0.000101900000000,0.000295085000000,0.000051727000000 +0.000020135000000,0.000116913000000,0.000043048500000,0.000013028333333,0.000026258500000,0.000182097000000,0.000058838000000,0.000036332500000,0.000195530000000,0.000065554000000,0.000103085000000,0.000292715000000,0.000052912000000 +0.000020135500000,0.000094394000000,0.000026851000000,0.000013160000000,0.000025863500000,0.000182097000000,0.000057258000000,0.000027048500000,0.000196319000000,0.000063184000000,0.000102295000000,0.000288764000000,0.000050936000000 +0.000021320000000,0.000116913000000,0.000026654000000,0.000013423333333,0.000026456000000,0.000251233000000,0.000057653000000,0.000027049000000,0.000198690000000,0.000067135000000,0.000102690000000,0.000291924000000,0.000051332000000 +0.000027246000000,0.000172616000000,0.000028234000000,0.000013423333333,0.000027839000000,0.000184073000000,0.000057653000000,0.000027246500000,0.000194739000000,0.000068320000000,0.000123233000000,0.000299430000000,0.000050937000000 +0.000020333000000,0.000094788000000,0.000026456500000,0.000019876000000,0.000028431500000,0.000183678000000,0.000059234000000,0.000025863500000,0.000196319000000,0.000065949000000,0.000123233000000,0.000293109000000,0.000074246000000 +0.000020333000000,0.000094394000000,0.000026258500000,0.000013028333333,0.000026851000000,0.000185257000000,0.000058839000000,0.000026258500000,0.000233060000000,0.000134689000000,0.000124023000000,0.000289159000000,0.000051727000000 +0.000020135000000,0.000115332000000,0.000027246000000,0.000013555000000,0.000028431500000,0.000228319000000,0.000057257000000,0.000028431500000,0.000197900000000,0.000084122000000,0.000123628000000,0.000293109000000,0.000052517000000 +0.000020332500000,0.000117703000000,0.000038308000000,0.000013423666667,0.000027048500000,0.000183677000000,0.000057258000000,0.000026061000000,0.000195529000000,0.000065554000000,0.000102295000000,0.000288763000000,0.000053307000000 +0.000020530000000,0.000168666000000,0.000030801500000,0.000013686666667,0.000027641500000,0.000182888000000,0.000058048000000,0.000046011500000,0.000195135000000,0.000064764000000,0.000102690000000,0.000293504000000,0.000052517000000 +0.000020530500000,0.000095184000000,0.000025863500000,0.000013160000000,0.000027444000000,0.000186838000000,0.000057653000000,0.000026851500000,0.000196320000000,0.000063579000000,0.000101900000000,0.000291134000000,0.000052912000000 +0.000020333000000,0.000095579000000,0.000026061000000,0.000013028333333,0.000026851500000,0.000240172000000,0.000057653000000,0.000026258500000,0.000194739000000,0.000068320000000,0.000105850000000,0.000297455000000,0.000063184000000 +0.000029616500000,0.000114937000000,0.000026851000000,0.000013028333333,0.000027246000000,0.000187628000000,0.000156814000000,0.000026061000000,0.000196320000000,0.000076221000000,0.000102295000000,0.000291134000000,0.000052122000000 +0.000027048500000,0.000119283000000,0.000026061500000,0.000013160000000,0.000027641500000,0.000186048000000,0.000133110000000,0.000026456000000,0.000196319000000,0.000084912000000,0.000101900000000,0.000477604000000,0.000051332000000 +0.000020332500000,0.000132715000000,0.000027048500000,0.000013423666667,0.000027048500000,0.000187628000000,0.000070690000000,0.000025271000000,0.000196715000000,0.000063973000000,0.000115332000000,0.000293504000000,0.000051332000000 +0.000020135000000,0.000117702000000,0.000026851000000,0.000013160000000,0.000027246000000,0.000196715000000,0.000057653000000,0.000024876000000,0.000194344000000,0.000064369000000,0.000124419000000,0.000299036000000,0.000054493000000 +0.000020135000000,0.000097159000000,0.000051542500000,0.000013028333333,0.000026456000000,0.000183678000000,0.000105851000000,0.000026258500000,0.000195530000000,0.000066739000000,0.000161554000000,0.000293110000000,0.000053308000000 +0.000020332500000,0.000115332000000,0.000026654000000,0.000013028333333,0.000027641500000,0.000182097000000,0.000058049000000,0.000035937500000,0.000249258000000,0.000062788000000,0.000123628000000,0.000295480000000,0.000053307000000 +0.000020332500000,0.000095974000000,0.000026851000000,0.000014872000000,0.000027444000000,0.000185258000000,0.000057653000000,0.000024678000000,0.000195924000000,0.000063579000000,0.000124023000000,0.000294689000000,0.000119282000000 +0.000020530000000,0.000116912000000,0.000026851500000,0.000013028333333,0.000026061000000,0.000196319000000,0.000057258000000,0.000025666000000,0.000196320000000,0.000107036000000,0.000124023000000,0.000290344000000,0.000054098000000 +0.000020332500000,0.000271381000000,0.000028036000000,0.000013028333333,0.000028036500000,0.000181702000000,0.000057653000000,0.000025468500000,0.000195925000000,0.000062789000000,0.000102295000000,0.000294689000000,0.000053307000000 +0.000030011500000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000181703000000,0.000057653000000,0.000026653500000,0.000202641000000,0.000062394000000,0.000123233000000,0.000290344000000,0.000053702000000 +0.000020135000000,0.000096764000000,0.000026061000000,0.000013160333333,0.000026258500000,0.000215283000000,0.000057653000000,0.000026258500000,0.000196319000000,0.000067134000000,0.000102294000000,0.000299430000000,0.000052517000000 +0.000020135000000,0.000132319000000,0.000026851000000,0.000013028333333,0.000027838500000,0.000181307000000,0.000058838000000,0.000026653500000,0.000195135000000,0.000063579000000,0.000121653000000,0.000293504000000,0.000052912000000 +0.000020135000000,0.000117307000000,0.000036332500000,0.000024221666667,0.000026851000000,0.000181702000000,0.000091233000000,0.000026258500000,0.000198295000000,0.000065159000000,0.000102295000000,0.000292715000000,0.000053307000000 +0.000020332500000,0.000115332000000,0.000030406500000,0.000013028666667,0.000026653500000,0.000182887000000,0.000057653000000,0.000025073000000,0.000195530000000,0.000063579000000,0.000105456000000,0.000353159000000,0.000052122000000 +0.000020332500000,0.000096369000000,0.000026258500000,0.000013160000000,0.000027838500000,0.000218048000000,0.000058443000000,0.000033369500000,0.000194740000000,0.000063974000000,0.000101900000000,0.000299430000000,0.000052912000000 +0.000020135000000,0.000095974000000,0.000025863500000,0.000013160000000,0.000034160000000,0.000184073000000,0.000057258000000,0.000026258500000,0.000195134000000,0.000063184000000,0.000100320000000,0.000297850000000,0.000051332000000 +0.000027444000000,0.000152072000000,0.000027048500000,0.000013028333333,0.000027839000000,0.000186443000000,0.000058443000000,0.000027048500000,0.000196319000000,0.000063579000000,0.000124419000000,0.000293899000000,0.000051727000000 +0.000020333000000,0.000095974000000,0.000026258500000,0.000013160333333,0.000028234000000,0.000185652000000,0.000057652000000,0.000026258500000,0.000191579000000,0.000065554000000,0.000115727000000,0.000293900000000,0.000148517000000 +0.000020135000000,0.000119283000000,0.000026851500000,0.000013028333333,0.000027443500000,0.000230690000000,0.000058838000000,0.000026851000000,0.000196320000000,0.000063183000000,0.000094393000000,0.000291134000000,0.000071086000000 +0.000021320500000,0.000117307000000,0.000034160000000,0.000013028333333,0.000026851000000,0.000183677000000,0.000058443000000,0.000025468500000,0.000195924000000,0.000063579000000,0.000096369000000,0.000290739000000,0.000071875000000 +0.000021320000000,0.000096369000000,0.000027048500000,0.000013160000000,0.000026654000000,0.000182492000000,0.000134295000000,0.000026851000000,0.000200270000000,0.000063974000000,0.000115727000000,0.000295085000000,0.000051332000000 +0.000022703000000,0.000188813000000,0.000026259000000,0.000013160000000,0.000027246000000,0.000184863000000,0.000057258000000,0.000027049000000,0.000195924000000,0.000137456000000,0.000096369000000,0.000295480000000,0.000054888000000 +0.000021518000000,0.000097159000000,0.000027048500000,0.000013028333333,0.000026653500000,0.000395826000000,0.000057652000000,0.000068925000000,0.000193949000000,0.000066739000000,0.000094788000000,0.000290344000000,0.000062394000000 +0.000021320500000,0.000117307000000,0.000027246500000,0.000013028333333,0.000054703000000,0.000293110000000,0.000058048000000,0.000076629000000,0.000180517000000,0.000064369000000,0.000111777000000,0.000297851000000,0.000159579000000 +0.000021320500000,0.000118887000000,0.000028036000000,0.000013028333333,0.000026851500000,0.000232270000000,0.000088863000000,0.000027246000000,0.000218443000000,0.000063579000000,0.000107431000000,0.000293900000000,0.000154838000000 +0.000022505500000,0.000117307000000,0.000026258500000,0.000013028333333,0.000028431500000,0.000184863000000,0.000057653000000,0.000026258500000,0.000180517000000,0.000065554000000,0.000115727000000,0.000294295000000,0.000054887000000 +0.000021320500000,0.000154048000000,0.000035740500000,0.000013028333333,0.000026456000000,0.000181703000000,0.000057653000000,0.000048974500000,0.000184467000000,0.000064369000000,0.000096369000000,0.000294690000000,0.000053308000000 +0.000020332500000,0.000096764000000,0.000026851000000,0.000013686666667,0.000027641500000,0.000182492000000,0.000091628000000,0.000027839000000,0.000183678000000,0.000065949000000,0.000118492000000,0.000296270000000,0.000052912000000 +0.000020135000000,0.000115727000000,0.000029024000000,0.000013555000000,0.000026456000000,0.000218048000000,0.000058838000000,0.000027048500000,0.000217258000000,0.000077406000000,0.000114937000000,0.000292714000000,0.000051332000000 +0.000020332500000,0.000114542000000,0.000030604500000,0.000013423666667,0.000028431500000,0.000184467000000,0.000057258000000,0.000025864000000,0.000180122000000,0.000066740000000,0.000114147000000,0.000297850000000,0.000053307000000 +0.000020135000000,0.000115332000000,0.000026851000000,0.000013160000000,0.000027246500000,0.000181702000000,0.000057258000000,0.000026258500000,0.000184073000000,0.000063183000000,0.000094393000000,0.000295085000000,0.000051332000000 +0.000021122500000,0.000153653000000,0.000026258500000,0.000019744333333,0.000043246000000,0.000182098000000,0.000058838000000,0.000026258500000,0.000226344000000,0.000065554000000,0.000115727000000,0.000292319000000,0.000050937000000 +0.000020135500000,0.000099925000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000252418000000,0.000057653000000,0.000025666000000,0.000183677000000,0.000062789000000,0.000116912000000,0.000293504000000,0.000050937000000 +0.000020332500000,0.000117308000000,0.000043246000000,0.000013028333333,0.000027048500000,0.000184467000000,0.000057257000000,0.000025468500000,0.000182887000000,0.000063184000000,0.000115332000000,0.000293109000000,0.000052122000000 +0.000021122500000,0.000095974000000,0.000026654000000,0.000013028666667,0.000027444000000,0.000184467000000,0.000058838000000,0.000036530000000,0.000184863000000,0.000063184000000,0.000152073000000,0.000295875000000,0.000051727000000 +0.000020333000000,0.000116912000000,0.000027246500000,0.000013028333333,0.000027443500000,0.000181702000000,0.000077011000000,0.000026061000000,0.000203826000000,0.000121258000000,0.000097159000000,0.000296270000000,0.000052122000000 +0.000027838500000,0.000172221000000,0.000027049000000,0.000013160000000,0.000027246500000,0.000217258000000,0.000058838000000,0.000029419000000,0.000187628000000,0.000062789000000,0.000115332000000,0.000291924000000,0.000051727000000 +0.000020332500000,0.000094394000000,0.000026258500000,0.000013028333333,0.000027443500000,0.000185258000000,0.000060813000000,0.000026061000000,0.000185257000000,0.000062789000000,0.000096369000000,0.000295875000000,0.000051332000000 +0.000020332500000,0.000114937000000,0.000026851000000,0.000013818333333,0.000026654000000,0.000183282000000,0.000058839000000,0.000025863500000,0.000184468000000,0.000063974000000,0.000116913000000,0.000292714000000,0.000050936000000 +0.000020333000000,0.000096369000000,0.000027049000000,0.000013423666667,0.000037320000000,0.000181703000000,0.000061209000000,0.000026258500000,0.000274937000000,0.000062788000000,0.000117703000000,0.000302591000000,0.000084912000000 +0.000021320000000,0.000130739000000,0.000028036500000,0.000013028333333,0.000026654000000,0.000195530000000,0.000058838000000,0.000027246000000,0.000201060000000,0.000063184000000,0.000095973000000,0.000311282000000,0.000052912000000 +0.000021320500000,0.000152073000000,0.000050950000000,0.000018164333333,0.000026851000000,0.000183677000000,0.000057653000000,0.000026258500000,0.000180912000000,0.000064764000000,0.000116912000000,0.000351183000000,0.000051332000000 +0.000020332500000,0.000116517000000,0.000026456500000,0.000013028666667,0.000027641500000,0.000186047000000,0.000058443000000,0.000025666000000,0.000183283000000,0.000097159000000,0.000096369000000,0.000897554000000,0.000051332000000 +0.000021122500000,0.000117307000000,0.000026654000000,0.000013028666667,0.000028036500000,0.000182097000000,0.000078986000000,0.000026061000000,0.000184072000000,0.000069110000000,0.000096369000000,0.000500122000000,0.000052122000000 +0.000020332500000,0.000116518000000,0.000028826500000,0.000013028333333,0.000025468000000,0.000182097000000,0.000058443000000,0.000027048500000,0.000184468000000,0.000063974000000,0.000117702000000,0.000293110000000,0.000052912000000 +0.000020332500000,0.000114147000000,0.000030406500000,0.000013555000000,0.000027444000000,0.000185258000000,0.000058839000000,0.000025863500000,0.000184073000000,0.000065554000000,0.000094789000000,0.000376862000000,0.000051727000000 +0.000020332500000,0.000152468000000,0.000025863500000,0.000013028333333,0.000026456000000,0.000181307000000,0.000058443000000,0.000026654000000,0.000186048000000,0.000067530000000,0.000094789000000,0.000280073000000,0.000051332000000 +0.000020135500000,0.000114937000000,0.000025863500000,0.000013160333333,0.000026258500000,0.000183283000000,0.000058443000000,0.000026061000000,0.000183678000000,0.000065949000000,0.000096369000000,0.000279678000000,0.000052122000000 +0.000020135500000,0.000096369000000,0.000027048500000,0.000013160333333,0.000026851500000,0.000195925000000,0.000058838000000,0.000025863500000,0.000188419000000,0.000063184000000,0.000095974000000,0.000276517000000,0.000050937000000 +0.000020135000000,0.000096764000000,0.000026258500000,0.000013555333333,0.000028431500000,0.000185653000000,0.000057653000000,0.000026851500000,0.000184863000000,0.000083332000000,0.000116517000000,0.000282442000000,0.000051332000000 +0.000021320000000,0.000117307000000,0.000026851500000,0.000030411000000,0.000027444000000,0.000181308000000,0.000057653000000,0.000026259000000,0.000218443000000,0.000065554000000,0.000151677000000,0.000281653000000,0.000053703000000 +0.000020332500000,0.000153257000000,0.000026851000000,0.000014608333333,0.000036135000000,0.000217653000000,0.000071480000000,0.000043246000000,0.000184862000000,0.000063579000000,0.000102295000000,0.000308122000000,0.000053307000000 +0.000020332500000,0.000118097000000,0.000027049000000,0.000013028333333,0.000034950000000,0.000183282000000,0.000058838000000,0.000025073500000,0.000184072000000,0.000063579000000,0.000095974000000,0.000280863000000,0.000050937000000 +0.000020135000000,0.000095974000000,0.000026258500000,0.000013028333333,0.000027048500000,0.000182098000000,0.000058443000000,0.000024678000000,0.000184468000000,0.000063184000000,0.000096764000000,0.000326689000000,0.000051727000000 +0.000038110500000,0.000117307000000,0.000026851000000,0.000013028333333,0.000027444000000,0.000181702000000,0.000060023000000,0.000026061000000,0.000218048000000,0.000065159000000,0.000096369000000,0.000282443000000,0.000052517000000 +0.000020135000000,0.000096369000000,0.000027049000000,0.000013028333333,0.000053320000000,0.000222393000000,0.000057652000000,0.000025468500000,0.000184863000000,0.000063184000000,0.000118493000000,0.000602048000000,0.000052122000000 +0.000020332500000,0.000162739000000,0.000046209000000,0.000013028333333,0.000027443500000,0.000187233000000,0.000057258000000,0.000026061000000,0.000184073000000,0.000081356000000,0.000093999000000,0.000278097000000,0.000051332000000 +0.000021320500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000027246000000,0.000186443000000,0.000057653000000,0.000026653500000,0.000185258000000,0.000063974000000,0.000114937000000,0.000276517000000,0.000051727000000 +0.000020332500000,0.000115332000000,0.000025863500000,0.000024221666667,0.000027839000000,0.000182493000000,0.000057653000000,0.000025666000000,0.000219628000000,0.000063974000000,0.000116122000000,0.000274541000000,0.000052913000000 +0.000021320500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027443500000,0.000252814000000,0.000071875000000,0.000036135000000,0.000187233000000,0.000063579000000,0.000095974000000,0.000278493000000,0.000102295000000 +0.000020135500000,0.000117307000000,0.000029024000000,0.000013028333333,0.000027838500000,0.000183282000000,0.000057653000000,0.000025666000000,0.000186442000000,0.000067925000000,0.000116122000000,0.000282048000000,0.000050937000000 +0.000020135000000,0.000150493000000,0.000030604000000,0.000013423333333,0.000029616500000,0.000186838000000,0.000057653000000,0.000025666000000,0.000186838000000,0.000065949000000,0.000096369000000,0.000279677000000,0.000052912000000 +0.000020332500000,0.000117703000000,0.000026456000000,0.000013555000000,0.000027049000000,0.000183678000000,0.000057258000000,0.000026061000000,0.000254788000000,0.000063974000000,0.000096369000000,0.000280468000000,0.000051727000000 +0.000043839000000,0.000098344000000,0.000026456000000,0.000013028333333,0.000043641000000,0.000229900000000,0.000057653000000,0.000025073500000,0.000183282000000,0.000063579000000,0.000095974000000,0.000274146000000,0.000051332000000 +0.000054110000000,0.000114541000000,0.000027048500000,0.000013028333333,0.000027641000000,0.000185653000000,0.000058838000000,0.000026061000000,0.000184072000000,0.000067134000000,0.000094789000000,0.000278887000000,0.000052517000000 +0.000020135000000,0.000094394000000,0.000026061000000,0.000013555000000,0.000027246500000,0.000187628000000,0.000057653000000,0.000025073500000,0.000184468000000,0.000066344000000,0.000096369000000,0.000437702000000,0.000073456000000 +0.000021320500000,0.000186443000000,0.000026851500000,0.000013160000000,0.000027444000000,0.000183283000000,0.000057653000000,0.000025863500000,0.000225554000000,0.000065950000000,0.000230690000000,0.000293110000000,0.000052122000000 +0.000020135000000,0.000094394000000,0.000026851000000,0.000013555333333,0.000026061000000,0.000197505000000,0.000074246000000,0.000025864000000,0.000184073000000,0.000063184000000,0.000109406000000,0.000278097000000,0.000053308000000 +0.000020332500000,0.000096369000000,0.000026851500000,0.000021061000000,0.000027048500000,0.000184073000000,0.000057653000000,0.000032184500000,0.000184863000000,0.000066740000000,0.000115727000000,0.000273751000000,0.000051727000000 +0.000020135000000,0.000094789000000,0.000026061000000,0.000014081666667,0.000026456500000,0.000185652000000,0.000057258000000,0.000026654000000,0.000182097000000,0.000065159000000,0.000104270000000,0.000285603000000,0.000054888000000 +0.000020135000000,0.000115332000000,0.000027048500000,0.000013818333333,0.000028233500000,0.000182097000000,0.000057258000000,0.000026258500000,0.000186838000000,0.000065159000000,0.000138246000000,0.000276122000000,0.000052517000000 +0.000052728000000,0.000153258000000,0.000065172000000,0.000020139666667,0.000046406500000,0.000180912000000,0.000057258000000,0.000025271000000,0.000184467000000,0.000080566000000,0.000115727000000,0.000279678000000,0.000050937000000 +0.000021122500000,0.000095974000000,0.000086505000000,0.000024880333333,0.000026654000000,0.000220419000000,0.000057653000000,0.000027048500000,0.000184468000000,0.000066739000000,0.000114542000000,0.000277307000000,0.000082542000000 +0.000020333000000,0.000116517000000,0.000035740000000,0.000022246333333,0.000027246000000,0.000181702000000,0.000058838000000,0.000028036500000,0.000183678000000,0.000066344000000,0.000096764000000,0.000282048000000,0.000051728000000 +0.000020332500000,0.000096369000000,0.000026456000000,0.000013028333333,0.000026456000000,0.000201851000000,0.000079381000000,0.000026061000000,0.000184863000000,0.000062789000000,0.000103875000000,0.000275332000000,0.000052517000000 +0.000020332500000,0.000094394000000,0.000026851000000,0.000013028666667,0.000027444000000,0.000181307000000,0.000058838000000,0.000026456500000,0.000184467000000,0.000063579000000,0.000125603000000,0.000274147000000,0.000051727000000 +0.000020333000000,0.000152863000000,0.000028826500000,0.000013028333333,0.000027444000000,0.000182492000000,0.000057258000000,0.000045419000000,0.000185258000000,0.000062789000000,0.000095974000000,0.000281258000000,0.000052122000000 +0.000020333000000,0.000118097000000,0.000030604000000,0.000018295666667,0.000027246000000,0.000186838000000,0.000057653000000,0.000025271000000,0.000206591000000,0.000085307000000,0.000096369000000,0.000281258000000,0.000051332000000 +0.000020135000000,0.000117307000000,0.000026061500000,0.000013028333333,0.000027443500000,0.000218838000000,0.000058838000000,0.000025863500000,0.000187233000000,0.000079381000000,0.000115332000000,0.000274146000000,0.000090048000000 +0.000020135000000,0.000096764000000,0.000026456000000,0.000013028333333,0.000044234000000,0.000183678000000,0.000060024000000,0.000025073500000,0.000184468000000,0.000065949000000,0.000096369000000,0.000276122000000,0.000051727000000 +0.000040678500000,0.000118097000000,0.000027048500000,0.000014345333333,0.000027444000000,0.000182097000000,0.000058838000000,0.000026653500000,0.000181703000000,0.000061999000000,0.000116912000000,0.000278097000000,0.000052122000000 +0.000020332500000,0.000114542000000,0.000026456500000,0.000013028333333,0.000027641000000,0.000181702000000,0.000060023000000,0.000024876000000,0.000213702000000,0.000062788000000,0.000094789000000,0.000272961000000,0.000052122000000 +0.000020135500000,0.000117702000000,0.000026851000000,0.000024090000000,0.000027246500000,0.000216863000000,0.000075825000000,0.000027246000000,0.000183677000000,0.000064369000000,0.000096369000000,0.000276517000000,0.000050937000000 +0.000020332500000,0.000114147000000,0.000037122500000,0.000013423333333,0.000026258500000,0.000187628000000,0.000057258000000,0.000025666000000,0.000184863000000,0.000065554000000,0.000115727000000,0.000278097000000,0.000058838000000 +0.000020333000000,0.000117308000000,0.000027246000000,0.000013160000000,0.000026851000000,0.000182492000000,0.000057653000000,0.000025666000000,0.000184467000000,0.000121653000000,0.000096764000000,0.000317604000000,0.000051728000000 +0.000020135500000,0.000094394000000,0.000026258500000,0.000013028333333,0.000027246500000,0.000188023000000,0.000057653000000,0.000025863500000,0.000398591000000,0.000067134000000,0.000116122000000,0.000277307000000,0.000051332000000 +0.000020135000000,0.000136270000000,0.000027049000000,0.000013423666667,0.000027443500000,0.000265851000000,0.000058443000000,0.000025666000000,0.000197505000000,0.000068319000000,0.000110986000000,0.000277307000000,0.000051727000000 +0.000020135000000,0.000096764000000,0.000026851000000,0.000013028333333,0.000036135000000,0.000182888000000,0.000057258000000,0.000026258500000,0.000180517000000,0.000066740000000,0.000116517000000,0.000281257000000,0.000055678000000 +0.000020332500000,0.000096369000000,0.000028233500000,0.000013028666667,0.000026654000000,0.000225554000000,0.000059234000000,0.000025073500000,0.000218048000000,0.000065555000000,0.000116122000000,0.000274937000000,0.000052122000000 +0.000039493000000,0.000117307000000,0.000026258500000,0.000013423333333,0.000028234000000,0.000195134000000,0.000058838000000,0.000025073000000,0.000180517000000,0.000067135000000,0.000116123000000,0.000279677000000,0.000051332000000 +0.000049172000000,0.000096764000000,0.000026259000000,0.000013160000000,0.000027839000000,0.000240171000000,0.000058838000000,0.000025666000000,0.000185257000000,0.000062789000000,0.000096764000000,0.000278887000000,0.000050937000000 +0.000062209500000,0.000117307000000,0.000043838500000,0.000013818333333,0.000026653500000,0.000182492000000,0.000058838000000,0.000035147500000,0.000180518000000,0.000161950000000,0.000151283000000,0.000380814000000,0.000084912000000 +0.000021518000000,0.000095973000000,0.000029024000000,0.000013160000000,0.000027246000000,0.000181308000000,0.000058048000000,0.000032382000000,0.000252023000000,0.000103480000000,0.000096369000000,0.000278887000000,0.000051332000000 +0.000027246500000,0.000096369000000,0.000030604500000,0.000013555000000,0.000027641500000,0.000218048000000,0.000057653000000,0.000027049000000,0.000180913000000,0.000067134000000,0.000096369000000,0.000436122000000,0.000050937000000 +0.000020135000000,0.000096369000000,0.000026456000000,0.000013160000000,0.000027444000000,0.000182097000000,0.000057257000000,0.000026653500000,0.000186443000000,0.000065159000000,0.000096369000000,0.000395825000000,0.000053703000000 +0.000027048500000,0.000096764000000,0.000026456000000,0.000013555333333,0.000027048500000,0.000184863000000,0.000058838000000,0.000026061000000,0.000182098000000,0.000065949000000,0.000095974000000,0.000293505000000,0.000051727000000 +0.000021320500000,0.000095973000000,0.000026851000000,0.000013028333333,0.000033962000000,0.000183677000000,0.000058838000000,0.000026456000000,0.000184073000000,0.000063184000000,0.000116912000000,0.000404122000000,0.000051332000000 +0.000020333000000,0.000233456000000,0.000026061000000,0.000013028333333,0.000027246500000,0.000332220000000,0.000057653000000,0.000025666000000,0.000180517000000,0.000062394000000,0.000116122000000,0.000272566000000,0.000051727000000 +0.000021123000000,0.000148912000000,0.000026851000000,0.000013028333333,0.000027048500000,0.000197110000000,0.000104270000000,0.000028629000000,0.000185258000000,0.000064369000000,0.000094789000000,0.000292714000000,0.000077801000000 +0.000020135000000,0.000119282000000,0.000033765000000,0.000013028333333,0.000028234000000,0.000182493000000,0.000058838000000,0.000026061000000,0.000182888000000,0.000063184000000,0.000116122000000,0.000277307000000,0.000050937000000 +0.000020332500000,0.000094789000000,0.000026851000000,0.000031201333333,0.000026456000000,0.000271381000000,0.000057653000000,0.000026456000000,0.000184467000000,0.000063184000000,0.000116122000000,0.000280468000000,0.000052517000000 +0.000020332500000,0.000116912000000,0.000026258500000,0.000023563333333,0.000027246500000,0.000181703000000,0.000058838000000,0.000040678500000,0.000185258000000,0.000064369000000,0.000160764000000,0.000275332000000,0.000052913000000 +0.000020135000000,0.000094789000000,0.000026851500000,0.000013028333333,0.000028036000000,0.000184073000000,0.000058839000000,0.000025666000000,0.000187233000000,0.000063974000000,0.000096764000000,0.000278887000000,0.000177357000000 +0.000020332500000,0.000118492000000,0.000026653500000,0.000013028333333,0.000026258500000,0.000182097000000,0.000057258000000,0.000026653500000,0.000216862000000,0.000065554000000,0.000114937000000,0.000280468000000,0.000092023000000 +0.000037123000000,0.000116913000000,0.000028036500000,0.000013028333333,0.000027246500000,0.000250443000000,0.000058838000000,0.000026258500000,0.000183677000000,0.000097555000000,0.000117307000000,0.000275727000000,0.000055282000000 +0.000020332500000,0.000117307000000,0.000026258500000,0.000013028333333,0.000028036500000,0.000184467000000,0.000057258000000,0.000025666000000,0.000180517000000,0.000065950000000,0.000095974000000,0.000279282000000,0.000054887000000 +0.000020332500000,0.000203431000000,0.000025863500000,0.000019612666667,0.000027246000000,0.000182492000000,0.000090838000000,0.000026258500000,0.000184072000000,0.000064369000000,0.000150888000000,0.000275332000000,0.000055283000000 +0.000020333000000,0.000117308000000,0.000027048500000,0.000013423666667,0.000026456000000,0.000181307000000,0.000058838000000,0.000025863500000,0.000253999000000,0.000063579000000,0.000096369000000,0.000278097000000,0.000053307000000 +0.000020332500000,0.000100715000000,0.000029024000000,0.000013028333333,0.000027444000000,0.000284418000000,0.000057652000000,0.000026258500000,0.000184073000000,0.000063184000000,0.000115332000000,0.000272961000000,0.000051332000000 +0.000020332500000,0.000109802000000,0.000030604500000,0.000013423333333,0.000027246500000,0.000181703000000,0.000057653000000,0.000032579500000,0.000184468000000,0.000066740000000,0.000115332000000,0.000280862000000,0.000118492000000 +0.000020333000000,0.000137060000000,0.000025863500000,0.000013028333333,0.000027839000000,0.000185257000000,0.000057653000000,0.000026061000000,0.000184862000000,0.000062393000000,0.000115727000000,0.000282443000000,0.000051332000000 +0.000021320000000,0.000096764000000,0.000026259000000,0.000013160000000,0.000028036000000,0.000262295000000,0.000057258000000,0.000026456000000,0.000216863000000,0.000063974000000,0.000131924000000,0.000281652000000,0.000052913000000 +0.000020332500000,0.000094394000000,0.000026851500000,0.000013028333333,0.000028234000000,0.000188023000000,0.000057258000000,0.000025863500000,0.000185257000000,0.000065554000000,0.000094393000000,0.000280468000000,0.000050937000000 +0.000020332500000,0.000096369000000,0.000026061000000,0.000013160000000,0.000026654000000,0.000181307000000,0.000058443000000,0.000027048500000,0.000181702000000,0.000065159000000,0.000095974000000,0.000311678000000,0.000051727000000 +0.000020332500000,0.000094789000000,0.000036925000000,0.000013028333333,0.000027049000000,0.000184863000000,0.000077801000000,0.000028431500000,0.000185653000000,0.000065949000000,0.000116122000000,0.000278887000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000026851500000,0.000013028333333,0.000026653500000,0.000270986000000,0.000159579000000,0.000027246500000,0.000253999000000,0.000067530000000,0.000094789000000,0.000280073000000,0.000052517000000 +0.000020332500000,0.000159183000000,0.000027048500000,0.000013555000000,0.000027246000000,0.000275332000000,0.000063974000000,0.000024876000000,0.000184468000000,0.000067135000000,0.000117702000000,0.000276517000000,0.000050937000000 +0.000020332500000,0.000095974000000,0.000026258500000,0.000013028333333,0.000027443500000,0.000185258000000,0.000058838000000,0.000053122500000,0.000184073000000,0.000065554000000,0.000096764000000,0.000277307000000,0.000053307000000 +0.000020332500000,0.000114937000000,0.000026851500000,0.000013028333333,0.000026851500000,0.000236616000000,0.000057258000000,0.000028431500000,0.000184863000000,0.000063184000000,0.000116517000000,0.000274541000000,0.000051727000000 +0.000021123000000,0.000117702000000,0.000027246000000,0.000013555000000,0.000027443500000,0.000181307000000,0.000057257000000,0.000025073500000,0.000186838000000,0.000083332000000,0.000116912000000,0.000276517000000,0.000051332000000 +0.000020135000000,0.000117307000000,0.000028036500000,0.000013423333333,0.000063987000000,0.000198295000000,0.000126394000000,0.000025863500000,0.000180517000000,0.000063974000000,0.000116912000000,0.000309307000000,0.000051332000000 +0.000020135000000,0.000094393000000,0.000026258500000,0.000013028333333,0.000029024000000,0.000187628000000,0.000058838000000,0.000025468500000,0.000185258000000,0.000063974000000,0.000116122000000,0.000282048000000,0.000054887000000 +0.000020135000000,0.000095974000000,0.000033172500000,0.000013291666667,0.000033369500000,0.000232665000000,0.000058838000000,0.000026258500000,0.000202641000000,0.000065949000000,0.000096369000000,0.000350394000000,0.000087283000000 +0.000037123000000,0.000094788000000,0.000026851000000,0.000013423333333,0.000026653500000,0.000181308000000,0.000057653000000,0.000026653500000,0.000184072000000,0.000063184000000,0.000116517000000,0.000342097000000,0.000051727000000 +0.000020332500000,0.000095579000000,0.000029024000000,0.000013423333333,0.000027049000000,0.000183282000000,0.000057653000000,0.000025863500000,0.000184072000000,0.000066739000000,0.000094789000000,0.000276912000000,0.000053307000000 +0.000020135000000,0.000116913000000,0.000030604500000,0.000036468666667,0.000027246500000,0.000186443000000,0.000058443000000,0.000042851000000,0.000184072000000,0.000098739000000,0.000116122000000,0.000276517000000,0.000052517000000 +0.000020332500000,0.000188418000000,0.000025863500000,0.000019086000000,0.000028629000000,0.000232270000000,0.000057653000000,0.000025666000000,0.000232270000000,0.000063184000000,0.000116123000000,0.000281257000000,0.000053307000000 +0.000020332500000,0.000096369000000,0.000025863500000,0.000013028333333,0.000062407000000,0.000181702000000,0.000075035000000,0.000028629000000,0.000183678000000,0.000069899000000,0.000096764000000,0.000278493000000,0.000063184000000 +0.000020332500000,0.000116912000000,0.000027443500000,0.000013028333333,0.000026653500000,0.000188814000000,0.000057257000000,0.000026456000000,0.000187628000000,0.000065949000000,0.000117702000000,0.000276913000000,0.000051332000000 +0.000020332500000,0.000100715000000,0.000026258500000,0.000013028333333,0.000026258500000,0.000221208000000,0.000060024000000,0.000025666000000,0.000186443000000,0.000062789000000,0.000095974000000,0.000277307000000,0.000050937000000 +0.000020333000000,0.000094789000000,0.000043839000000,0.000013423333333,0.000028628500000,0.000183677000000,0.000057653000000,0.000025863500000,0.000270591000000,0.000063184000000,0.000097554000000,0.000293110000000,0.000052123000000 +0.000020135000000,0.000150097000000,0.000027048500000,0.000013160000000,0.000028431500000,0.000188023000000,0.000057257000000,0.000025271000000,0.000230295000000,0.000063974000000,0.000114542000000,0.000282443000000,0.000054098000000 +0.000027443500000,0.000116912000000,0.000027246500000,0.000013028333333,0.000026456500000,0.000186838000000,0.000058838000000,0.000028431500000,0.000184468000000,0.000065159000000,0.000109011000000,0.000277702000000,0.000054493000000 +0.000020135000000,0.000116912000000,0.000026258500000,0.000013028333333,0.000026653500000,0.000279678000000,0.000058048000000,0.000037320000000,0.000181702000000,0.000078591000000,0.000096764000000,0.000280073000000,0.000053308000000 +0.000020530500000,0.000095184000000,0.000026851000000,0.000014740333333,0.000027443500000,0.000338147000000,0.000057653000000,0.000025863500000,0.000187233000000,0.000063184000000,0.000094394000000,0.000274937000000,0.000051332000000 +0.000020332500000,0.000118097000000,0.000027049000000,0.000013028333333,0.000041270500000,0.000195530000000,0.000057258000000,0.000027839000000,0.000187233000000,0.000063579000000,0.000095974000000,0.000275332000000,0.000092418000000 +0.000020332500000,0.000187233000000,0.000028036500000,0.000013028666667,0.000026653500000,0.000181703000000,0.000057653000000,0.000026456000000,0.000184468000000,0.000065159000000,0.000094789000000,0.000274146000000,0.000089258000000 +0.000020135000000,0.000114147000000,0.000026258500000,0.000013028666667,0.000026653500000,0.000184862000000,0.000057653000000,0.000026061000000,0.000203035000000,0.000063974000000,0.000153258000000,0.000275332000000,0.000067529000000 +0.000020135000000,0.000095974000000,0.000025863500000,0.000013028666667,0.000026851000000,0.000181308000000,0.000057653000000,0.000026851000000,0.000446788000000,0.000063184000000,0.000115727000000,0.000278493000000,0.000052518000000 +0.000020332500000,0.000118888000000,0.000027049000000,0.000013028333333,0.000027444000000,0.000182097000000,0.000058443000000,0.000025666000000,0.000199085000000,0.000099530000000,0.000115332000000,0.000316023000000,0.000053702000000 +0.000020332500000,0.000118097000000,0.000029024000000,0.000013028333333,0.000027246000000,0.000182493000000,0.000057258000000,0.000026258500000,0.000218443000000,0.000063579000000,0.000096369000000,0.000276122000000,0.000053307000000 +0.000027443500000,0.000111381000000,0.000030407000000,0.000013028333333,0.000028234000000,0.000183282000000,0.000057653000000,0.000027443500000,0.000184862000000,0.000065949000000,0.000120073000000,0.000280468000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000025666000000,0.000013160000000,0.000028234000000,0.000185258000000,0.000058048000000,0.000044431500000,0.000183678000000,0.000067134000000,0.000201851000000,0.000278097000000,0.000053307000000 +0.000020332500000,0.000116912000000,0.000026258500000,0.000018295666667,0.000033567000000,0.000184468000000,0.000077406000000,0.000025666000000,0.000186048000000,0.000062394000000,0.000238986000000,0.000279282000000,0.000051727000000 +0.000020135500000,0.000096369000000,0.000044234000000,0.000017505666667,0.000026851500000,0.000181702000000,0.000058048000000,0.000026061000000,0.000181702000000,0.000062788000000,0.000131530000000,0.000278887000000,0.000052122000000 +0.000020333000000,0.000094393000000,0.000026456000000,0.000013160000000,0.000027443500000,0.000182097000000,0.000057258000000,0.000026851000000,0.000180122000000,0.000063184000000,0.000117702000000,0.000278888000000,0.000054493000000 +0.000020332500000,0.000187233000000,0.000026851500000,0.000013028666667,0.000027443500000,0.000183677000000,0.000058838000000,0.000026456000000,0.000184072000000,0.000068715000000,0.000114937000000,0.000279282000000,0.000051727000000 +0.000020135500000,0.000114937000000,0.000026851000000,0.000013028666667,0.000027246500000,0.000218443000000,0.000058443000000,0.000026061000000,0.000185257000000,0.000067135000000,0.000116122000000,0.000337357000000,0.000073456000000 +0.000020135000000,0.000114147000000,0.000027246500000,0.000013028333333,0.000026456000000,0.000182097000000,0.000057258000000,0.000026061000000,0.000184467000000,0.000066345000000,0.000116517000000,0.000297851000000,0.000051332000000 +0.000021320500000,0.000117307000000,0.000026061000000,0.000013028333333,0.000028234000000,0.000183678000000,0.000057653000000,0.000028431000000,0.000181307000000,0.000063184000000,0.000097554000000,0.000333801000000,0.000054493000000 +0.000020332500000,0.000094789000000,0.000026653500000,0.000013028333333,0.000036530500000,0.000181702000000,0.000057258000000,0.000027048500000,0.000182888000000,0.000065554000000,0.000106245000000,0.000279282000000,0.000061999000000 +0.000020332500000,0.000153653000000,0.000027049000000,0.000013028333333,0.000028234000000,0.000231875000000,0.000058443000000,0.000026456500000,0.000200270000000,0.000063184000000,0.000116122000000,0.000312072000000,0.000052122000000 +0.000020135000000,0.000117307000000,0.000034950000000,0.000017637333333,0.000027049000000,0.000182097000000,0.000057258000000,0.000024876000000,0.000184863000000,0.000065554000000,0.000096369000000,0.000278097000000,0.000051727000000 +0.000021320500000,0.000097159000000,0.000026258500000,0.000013028333333,0.000025666000000,0.000184072000000,0.000057653000000,0.000026653500000,0.000180912000000,0.000063184000000,0.000115332000000,0.000281257000000,0.000052913000000 +0.000020135000000,0.000116912000000,0.000034357000000,0.000013028333333,0.000026851500000,0.000182097000000,0.000057258000000,0.000026259000000,0.000185257000000,0.000063184000000,0.000116122000000,0.000278493000000,0.000052912000000 +0.000020332500000,0.000096764000000,0.000029221500000,0.000013687000000,0.000027641000000,0.000216863000000,0.000057653000000,0.000026456000000,0.000213702000000,0.000070295000000,0.000115332000000,0.000318394000000,0.000054097000000 +0.000020135000000,0.000188023000000,0.000030802000000,0.000013555000000,0.000035937500000,0.000182097000000,0.000058838000000,0.000027443500000,0.000186443000000,0.000065159000000,0.000096369000000,0.000275332000000,0.000051727000000 +0.000020332500000,0.000105455000000,0.000032579500000,0.000013555000000,0.000035740000000,0.000185257000000,0.000057258000000,0.000026258500000,0.000183677000000,0.000067924000000,0.000096369000000,0.000329455000000,0.000053307000000 +0.000020135000000,0.000096369000000,0.000027641500000,0.000013160000000,0.000047394500000,0.000181702000000,0.000057653000000,0.000035542500000,0.000184862000000,0.000063184000000,0.000095974000000,0.000299036000000,0.000052122000000 +0.000021320000000,0.000116913000000,0.000045024000000,0.000013028333333,0.000027443500000,0.000216863000000,0.000058838000000,0.000024481000000,0.000215282000000,0.000062788000000,0.000100714000000,0.000569653000000,0.000051727000000 +0.000020332500000,0.000115331000000,0.000044036500000,0.000013028333333,0.000027839000000,0.000183283000000,0.000057257000000,0.000025468500000,0.000184863000000,0.000063579000000,0.000118493000000,0.000601257000000,0.000050936000000 +0.000020333000000,0.000188813000000,0.000026258500000,0.000019612666667,0.000027444000000,0.000189209000000,0.000057653000000,0.000026456500000,0.000180517000000,0.000065949000000,0.000118098000000,0.000317208000000,0.000052517000000 +0.000021123000000,0.000096369000000,0.000026851500000,0.000013028333333,0.000026653500000,0.000184072000000,0.000058838000000,0.000025468500000,0.000185258000000,0.000063974000000,0.000116122000000,0.000295480000000,0.000051332000000 +0.000020332500000,0.000099134000000,0.000027048500000,0.000013028333333,0.000028036500000,0.000216072000000,0.000057653000000,0.000027048500000,0.000218048000000,0.000067135000000,0.000151677000000,0.000297060000000,0.000051332000000 +0.000020135000000,0.000094393000000,0.000027049000000,0.000013028333333,0.000027838500000,0.000183282000000,0.000058838000000,0.000025468500000,0.000184468000000,0.000065950000000,0.000096369000000,0.000295875000000,0.000051727000000 +0.000020332500000,0.000116912000000,0.000026258500000,0.000013028666667,0.000028036500000,0.000182098000000,0.000060814000000,0.000026851500000,0.000184468000000,0.000065160000000,0.000116122000000,0.000295084000000,0.000051332000000 +0.000020332500000,0.000296270000000,0.000026851000000,0.000013818333333,0.000035147500000,0.000184073000000,0.000058839000000,0.000035740000000,0.000186838000000,0.000064764000000,0.000098739000000,0.000293899000000,0.000051332000000 +0.000020332500000,0.000238196000000,0.000027049000000,0.000013423333333,0.000028036500000,0.000248862000000,0.000060814000000,0.000027049000000,0.000252813000000,0.000063184000000,0.000115332000000,0.000279283000000,0.000087282000000 +0.000021123000000,0.000116912000000,0.000028234000000,0.000013028333333,0.000027641500000,0.000181702000000,0.000058838000000,0.000026061000000,0.000180912000000,0.000121258000000,0.000115727000000,0.000277308000000,0.000052912000000 +0.000038308000000,0.000117702000000,0.000026259000000,0.000013555000000,0.000026851000000,0.000183678000000,0.000057258000000,0.000026851000000,0.000181702000000,0.000063579000000,0.000115331000000,0.000304567000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000026061000000,0.000013028333333,0.000026851500000,0.000221604000000,0.000058838000000,0.000026258500000,0.000183678000000,0.000062789000000,0.000096369000000,0.000280863000000,0.000051332000000 +0.000021123000000,0.000148518000000,0.000026851000000,0.000013028333333,0.000027246500000,0.000185258000000,0.000059234000000,0.000027443500000,0.000183678000000,0.000064369000000,0.000098740000000,0.000275727000000,0.000052122000000 +0.000020333000000,0.000099925000000,0.000029024000000,0.000013028333333,0.000027839000000,0.000181307000000,0.000058048000000,0.000026258500000,0.000184468000000,0.000063579000000,0.000117307000000,0.000308912000000,0.000052912000000 +0.000020332500000,0.000117307000000,0.000030604500000,0.000013555000000,0.000036530500000,0.000182097000000,0.000058838000000,0.000026851000000,0.000183283000000,0.000065554000000,0.000116122000000,0.000281653000000,0.000052122000000 +0.000020332500000,0.000095974000000,0.000042851000000,0.000013028333333,0.000033765000000,0.000205406000000,0.000058443000000,0.000026258500000,0.000216467000000,0.000065949000000,0.000116912000000,0.000453110000000,0.000050937000000 +0.000020333000000,0.000096369000000,0.000026258500000,0.000013028333333,0.000027641000000,0.000183283000000,0.000058839000000,0.000027444000000,0.000184073000000,0.000066344000000,0.000116518000000,0.000398590000000,0.000051727000000 +0.000020333000000,0.000096369000000,0.000026851000000,0.000013028333333,0.000028233500000,0.000186838000000,0.000058838000000,0.000025468500000,0.000185258000000,0.000063184000000,0.000095974000000,0.000276122000000,0.000051727000000 +0.000020135500000,0.000114936000000,0.000026259000000,0.000013555000000,0.000027839000000,0.000181702000000,0.000057653000000,0.000026653500000,0.000185258000000,0.000066344000000,0.000095974000000,0.000281652000000,0.000050937000000 +0.000030604000000,0.000095974000000,0.000027443500000,0.000013028333333,0.000028036500000,0.000250838000000,0.000057653000000,0.000026061000000,0.000227530000000,0.000066739000000,0.000116122000000,0.000317999000000,0.000052912000000 +0.000027641000000,0.000110591000000,0.000026851000000,0.000013818333333,0.000027839000000,0.000183677000000,0.000057653000000,0.000026258500000,0.000188418000000,0.000063974000000,0.000096369000000,0.000278492000000,0.000053308000000 +0.000020135000000,0.000117702000000,0.000026851000000,0.000028567333333,0.000028036000000,0.000183282000000,0.000058838000000,0.000026258500000,0.000180912000000,0.000064764000000,0.000119282000000,0.000284023000000,0.000050937000000 +0.000020332500000,0.000095974000000,0.000026061000000,0.000013028333333,0.000035740000000,0.000185653000000,0.000058443000000,0.000025666000000,0.000229110000000,0.000065159000000,0.000115332000000,0.000280863000000,0.000051728000000 +0.000020135000000,0.000095974000000,0.000044036500000,0.000013028333333,0.000026653500000,0.000181307000000,0.000060024000000,0.000026259000000,0.000270196000000,0.000067924000000,0.000115332000000,0.000282048000000,0.000051727000000 +0.000020135000000,0.000095974000000,0.000026851500000,0.000013028333333,0.000028234000000,0.000182098000000,0.000057653000000,0.000068530000000,0.000187233000000,0.000063184000000,0.000095974000000,0.000273357000000,0.000051727000000 +0.000020332500000,0.000130739000000,0.000028036000000,0.000025538666667,0.000027443500000,0.000186838000000,0.000057653000000,0.000027443500000,0.000180912000000,0.000065949000000,0.000096369000000,0.000321554000000,0.000051332000000 +0.000021320000000,0.000096764000000,0.000026258500000,0.000022773333333,0.000027246500000,0.000220418000000,0.000057653000000,0.000026258500000,0.000188023000000,0.000063184000000,0.000116122000000,0.000296271000000,0.000052913000000 +0.000020135000000,0.000100320000000,0.000026061500000,0.000013028333333,0.000026851000000,0.000181702000000,0.000057653000000,0.000028629000000,0.000186838000000,0.000063974000000,0.000096369000000,0.000277703000000,0.000052517000000 +0.000038110500000,0.000114936000000,0.000027246500000,0.000013160000000,0.000027246500000,0.000181703000000,0.000058838000000,0.000025863500000,0.000183677000000,0.000098740000000,0.000098739000000,0.000276122000000,0.000084912000000 +0.000020135000000,0.000096369000000,0.000028826500000,0.000026065333333,0.000028629000000,0.000183677000000,0.000057258000000,0.000026653500000,0.000184467000000,0.000082147000000,0.000116517000000,0.000280467000000,0.000065159000000 +0.000020135000000,0.000137060000000,0.000030802000000,0.000018427333333,0.000061024000000,0.000233061000000,0.000057653000000,0.000027839000000,0.000217258000000,0.000063184000000,0.000115727000000,0.000278888000000,0.000052122000000 +0.000020135000000,0.000096764000000,0.000026258500000,0.000013555333333,0.000027444000000,0.000183677000000,0.000057258000000,0.000034160000000,0.000184862000000,0.000065949000000,0.000103875000000,0.000328665000000,0.000051332000000 +0.000020332500000,0.000096369000000,0.000026061500000,0.000013028666667,0.000026653500000,0.000182492000000,0.000057258000000,0.000024678500000,0.000183677000000,0.000065159000000,0.000095974000000,0.000276912000000,0.000051727000000 +0.000020333000000,0.000116912000000,0.000026851500000,0.000013028666667,0.000027048500000,0.000185257000000,0.000074640000000,0.000026851000000,0.000186443000000,0.000063184000000,0.000137455000000,0.000275727000000,0.000051332000000 +0.000020135000000,0.000096369000000,0.000026258500000,0.000013555333333,0.000026851000000,0.000217257000000,0.000057653000000,0.000025073500000,0.000253998000000,0.000069900000000,0.000116517000000,0.000282838000000,0.000052912000000 +0.000021320500000,0.000096369000000,0.000026851000000,0.000013028333333,0.000027049000000,0.000183283000000,0.000057257000000,0.000025863500000,0.000184467000000,0.000065950000000,0.000095579000000,0.000276122000000,0.000050937000000 +0.000020332500000,0.000095974000000,0.000026851500000,0.000013423333333,0.000027444000000,0.000183677000000,0.000060024000000,0.000027839000000,0.000184467000000,0.000063579000000,0.000117308000000,0.000278492000000,0.000052912000000 +0.000020135000000,0.000117308000000,0.000027048500000,0.000013028333333,0.000027641000000,0.000184072000000,0.000057653000000,0.000026456000000,0.000187233000000,0.000062788000000,0.000116912000000,0.000278097000000,0.000052912000000 +0.000020135000000,0.000095579000000,0.000026258500000,0.000024353666667,0.000051147500000,0.000215678000000,0.000057258000000,0.000026654000000,0.000352764000000,0.000063184000000,0.000116912000000,0.000290344000000,0.000054493000000 +0.000020135000000,0.000095973000000,0.000027246000000,0.000013160333333,0.000025863500000,0.000182098000000,0.000057258000000,0.000042851000000,0.000212912000000,0.000064369000000,0.000094789000000,0.000283629000000,0.000052912000000 +0.000020332500000,0.000095974000000,0.000027049000000,0.000013160000000,0.000026258500000,0.000182098000000,0.000091233000000,0.000034950000000,0.000184862000000,0.000064369000000,0.000114542000000,0.000282443000000,0.000120073000000 +0.000021320500000,0.000141801000000,0.000028036000000,0.000013028333333,0.000027444000000,0.000182097000000,0.000057653000000,0.000026061500000,0.000230690000000,0.000065949000000,0.000099925000000,0.000274936000000,0.000051332000000 +0.000020332500000,0.000096764000000,0.000026456000000,0.000013028333333,0.000028629000000,0.000214888000000,0.000058838000000,0.000025271000000,0.000183282000000,0.000063184000000,0.000094788000000,0.000277307000000,0.000052517000000 +0.000020332500000,0.000117307000000,0.000026259000000,0.000013028333333,0.000026654000000,0.000181307000000,0.000059628000000,0.000025468500000,0.000184863000000,0.000066740000000,0.000096369000000,0.000325505000000,0.000052912000000 +0.000020135000000,0.000116913000000,0.000026654000000,0.000013028333333,0.000027443500000,0.000181307000000,0.000058838000000,0.000026258500000,0.000184072000000,0.000158788000000,0.000095974000000,0.000334986000000,0.000052518000000 +0.000020332500000,0.000117307000000,0.000029024000000,0.000013028333333,0.000026851500000,0.000185653000000,0.000057258000000,0.000028431500000,0.000199875000000,0.000072271000000,0.000096764000000,0.000279678000000,0.000051727000000 +0.000020332500000,0.000153653000000,0.000030406500000,0.000013028333333,0.000042061000000,0.000254394000000,0.000057258000000,0.000026061000000,0.000184468000000,0.000063974000000,0.000095974000000,0.000275727000000,0.000051332000000 +0.000020332500000,0.000116912000000,0.000054505500000,0.000013028333333,0.000027246000000,0.000183678000000,0.000058838000000,0.000046802000000,0.000183677000000,0.000062394000000,0.000096369000000,0.000277307000000,0.000051332000000 +0.000020135000000,0.000096765000000,0.000027246000000,0.000013028333333,0.000028234000000,0.000184072000000,0.000093999000000,0.000026259000000,0.000183283000000,0.000067135000000,0.000095974000000,0.000278493000000,0.000052122000000 +0.000020135000000,0.000095184000000,0.000026851500000,0.000014345333333,0.000027049000000,0.000182098000000,0.000058443000000,0.000026653500000,0.000182098000000,0.000064764000000,0.000115332000000,0.000279678000000,0.000051727000000 +0.000020332500000,0.000096369000000,0.000026061000000,0.000013028333333,0.000027641500000,0.000427036000000,0.000060418000000,0.000026061000000,0.000179727000000,0.000100319000000,0.000116122000000,0.000312073000000,0.000051727000000 +0.000020333000000,0.000094789000000,0.000027048500000,0.000013555000000,0.000026653500000,0.000546739000000,0.000057653000000,0.000026456500000,0.000186838000000,0.000065950000000,0.000096369000000,0.000278492000000,0.000051332000000 +0.000020332500000,0.000095974000000,0.000036332500000,0.000013555000000,0.000027641500000,0.000248073000000,0.000057258000000,0.000025863500000,0.000185257000000,0.000063184000000,0.000094394000000,0.000276122000000,0.000058443000000 +0.000020332500000,0.000096369000000,0.000027049000000,0.000013028333333,0.000028036500000,0.000192764000000,0.000057258000000,0.000026258500000,0.000184073000000,0.000067925000000,0.000115332000000,0.000282048000000,0.000088072000000 +0.000020333000000,0.000118887000000,0.000026259000000,0.000013028333333,0.000034752000000,0.000231085000000,0.000057653000000,0.000026061000000,0.000182493000000,0.000062789000000,0.000116122000000,0.000275727000000,0.000050937000000 +0.000020135000000,0.000115332000000,0.000026851000000,0.000013555333333,0.000026654000000,0.000196319000000,0.000057258000000,0.000025468500000,0.000180912000000,0.000065949000000,0.000096369000000,0.000273357000000,0.000051727000000 +0.000040678500000,0.000117308000000,0.000026851000000,0.000013028333333,0.000028036000000,0.000193554000000,0.000077406000000,0.000032974500000,0.000214097000000,0.000064369000000,0.000094789000000,0.000278097000000,0.000055677000000 +0.000020332500000,0.000117703000000,0.000027838500000,0.000027250333333,0.000026653500000,0.000195925000000,0.000058838000000,0.000026654000000,0.000184862000000,0.000100714000000,0.000095974000000,0.000275727000000,0.000051727000000 +0.000020333000000,0.000117702000000,0.000026258500000,0.000013555000000,0.000027246000000,0.000221208000000,0.000058838000000,0.000026061000000,0.000180517000000,0.000065159000000,0.000096369000000,0.000281258000000,0.000052122000000 diff --git a/docs/source/media/bench/lua bench tests plain C.csv b/docs/source/media/bench/lua bench tests plain C.csv new file mode 100644 index 00000000..f325994a --- /dev/null +++ b/docs/source/media/bench/lua bench tests plain C.csv @@ -0,0 +1,2001 @@ +"plain_c - global get","plain_c - many userdata variables access","plain_c - c function","plain_c - global set","plain_c - table chained get","plain_c - table get","plain_c - c function through lua","plain_c - get optional","plain_c - table chained set","plain_c - table set","plain_c - lua function","plain_c - member function calls","plain_c - member function calls (simple)","plain_c - return userdata","plain_c - userdata variable access","plain_c - userdata variable access (simple)","plain_c - many userdata variable access (simple)","plain_c - many userdata variables access last registered","plain_c - many userdata variables access last registered (simple)","plain_c - multi return","plain_c - stateful c function","plain_c - base from derived","plain_c - base call on derived" +0.000015789000000,0.006943967000000,0.000027246000000,0.000014344666667,0.000075825000000,0.000016974000000,0.000049356000000,0.000018554000000,0.000041060000000,0.000013159666667,0.000073059000000,0.000082936000000,0.000088072000000,0.000191973000000,0.000105060000000,0.000099924000000,0.006904857000000,0.000124418000000,0.000161553000000,0.000058047000000,0.000054887000000,0.000019739500000,0.000069504000000 +0.000015986500000,0.006815572000000,0.000027048000000,0.000013159666667,0.000054492000000,0.000017961500000,0.000050541000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000053307000000,0.000083726000000,0.000088072000000,0.000136269000000,0.000102294000000,0.000098343000000,0.007026535000000,0.000121652000000,0.000121652000000,0.000057652000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000015986500000,0.006889054000000,0.000026653000000,0.000013554666667,0.000041849000000,0.000017567000000,0.000121652000000,0.000019345000000,0.000039479000000,0.000019744000000,0.000054492000000,0.000080566000000,0.000084516000000,0.000240960000000,0.000103479000000,0.000100318000000,0.006731819000000,0.000121652000000,0.000121652000000,0.000103874000000,0.000086886000000,0.000019147000000,0.000068714000000 +0.000015591500000,0.006686387000000,0.000028826000000,0.000013159666667,0.000039874000000,0.000017171500000,0.000083331000000,0.000018357000000,0.000039479000000,0.000018690666667,0.000054887000000,0.000083331000000,0.000086491000000,0.000169060000000,0.000101109000000,0.000095578000000,0.007208264000000,0.000158392000000,0.000123232000000,0.000056862000000,0.000092417000000,0.000019147000000,0.000067529000000 +0.000024085000000,0.006928560000000,0.000028233000000,0.000013028000000,0.000041454000000,0.000017171500000,0.000067528000000,0.000018159500000,0.000040269000000,0.000013423333333,0.000054491000000,0.000079776000000,0.000087281000000,0.000131529000000,0.000102294000000,0.000116516000000,0.006850733000000,0.000122442000000,0.000122047000000,0.000057257000000,0.000112171000000,0.000019147000000,0.000067529000000 +0.000015394000000,0.006914733000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016579000000,0.000081356000000,0.000018159000000,0.000039874000000,0.000013423333333,0.000052911000000,0.000081750000000,0.000084517000000,0.000171034000000,0.000102689000000,0.000097553000000,0.006899325000000,0.000122442000000,0.000122837000000,0.000056862000000,0.000072664000000,0.000019937000000,0.000067133000000 +0.000015986500000,0.006823869000000,0.000026455500000,0.000013686666667,0.000040270000000,0.000017171500000,0.000051331000000,0.000018159500000,0.000041059000000,0.000013423333333,0.000053306000000,0.000082146000000,0.000084912000000,0.000135479000000,0.000101899000000,0.000097159000000,0.006817548000000,0.000122837000000,0.000121652000000,0.000056862000000,0.000069108000000,0.000021122000000,0.000068319000000 +0.000015789000000,0.006775276000000,0.000035937000000,0.000013159666667,0.000041850000000,0.000017566500000,0.000069899000000,0.000018357000000,0.000076615000000,0.000013555000000,0.000055282000000,0.000081750000000,0.000086097000000,0.000168664000000,0.000102689000000,0.000097553000000,0.006961350000000,0.000121651000000,0.000157602000000,0.000056862000000,0.000053702000000,0.000021122000000,0.000139430000000 +0.000015986500000,0.007226041000000,0.000032777000000,0.000013159666667,0.000040269000000,0.000016776500000,0.000067133000000,0.000018356500000,0.000039084000000,0.000013555000000,0.000052911000000,0.000079380000000,0.000087676000000,0.000215677000000,0.000104269000000,0.000097158000000,0.006690339000000,0.000122837000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000067134000000 +0.000015986500000,0.006876413000000,0.000028233500000,0.000013159666667,0.000040269000000,0.000016974000000,0.000063973000000,0.000018357000000,0.000039479000000,0.000013555000000,0.000054491000000,0.000087282000000,0.000084911000000,0.000165109000000,0.000102689000000,0.000097948000000,0.006737745000000,0.000122442000000,0.000122443000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000068319000000 +0.000015986500000,0.006867326000000,0.000026456000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053702000000,0.000079381000000,0.000086096000000,0.000164714000000,0.000101899000000,0.000097158000000,0.007024165000000,0.000158788000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000086887000000 +0.000015591500000,0.007280955000000,0.000026653000000,0.000013160000000,0.000040269000000,0.000017369000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054096000000,0.000080961000000,0.000085307000000,0.000129948000000,0.000103084000000,0.000097158000000,0.007453597000000,0.000121257000000,0.000123232000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000085702000000 +0.000015789000000,0.006819918000000,0.000027048000000,0.000013028000000,0.000041849000000,0.000017369000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000052911000000,0.000139825000000,0.000086491000000,0.000161553000000,0.000101899000000,0.000116516000000,0.006662684000000,0.000121652000000,0.000172615000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000080566000000 +0.000015986500000,0.006844017000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000017369500000,0.000049356000000,0.000017961500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000116121000000,0.000084911000000,0.000133108000000,0.000103084000000,0.000110195000000,0.007013103000000,0.000123233000000,0.000120862000000,0.000057257000000,0.000055282000000,0.000018752000000,0.000068318000000 +0.000015986500000,0.007065646000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017567000000,0.000048565000000,0.000036332000000,0.000039479000000,0.000013423000000,0.000056071000000,0.000097553000000,0.000084911000000,0.000255973000000,0.000131134000000,0.000095578000000,0.006859029000000,0.000122442000000,0.000173800000000,0.000057257000000,0.000054097000000,0.000018949000000,0.000067923000000 +0.000015591500000,0.006767770000000,0.000026060500000,0.000013423333333,0.000041850000000,0.000016579000000,0.000047775000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053701000000,0.000081356000000,0.000086491000000,0.000135084000000,0.000198294000000,0.000095973000000,0.006985054000000,0.000123232000000,0.000122837000000,0.000058442000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006910387000000,0.000027048500000,0.000013159666667,0.000039875000000,0.000017369000000,0.000068714000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000088467000000,0.000081751000000,0.000088071000000,0.000167084000000,0.000104269000000,0.000096763000000,0.007147820000000,0.000122047000000,0.000123232000000,0.000057256000000,0.000090047000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006976758000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000017172000000,0.000085307000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000067924000000,0.000082146000000,0.000084516000000,0.000172220000000,0.000102293000000,0.000096367000000,0.007093300000000,0.000158393000000,0.000122047000000,0.000092418000000,0.000053701000000,0.000029023500000,0.000103479000000 +0.000016184000000,0.007249745000000,0.000029221500000,0.000013159666667,0.000041060000000,0.000017369500000,0.000048566000000,0.000018159000000,0.000041455000000,0.000013554666667,0.000052911000000,0.000081750000000,0.000123627000000,0.000130738000000,0.000101899000000,0.000097948000000,0.007710387000000,0.000122442000000,0.000124023000000,0.000157998000000,0.000052911000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006809251000000,0.000028431000000,0.000013291333333,0.000040270000000,0.000016777000000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053701000000,0.000082541000000,0.000086492000000,0.000203429000000,0.000101899000000,0.000095973000000,0.006813597000000,0.000122442000000,0.000121257000000,0.000178936000000,0.000054096000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.006835325000000,0.000028431000000,0.000013291333333,0.000058838000000,0.000017567000000,0.000049750000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000079776000000,0.000084516000000,0.000134689000000,0.000102689000000,0.000097158000000,0.006906831000000,0.000121652000000,0.000124022000000,0.000142195000000,0.000053306000000,0.000018949500000,0.000067924000000 +0.000015986500000,0.007053400000000,0.000026653500000,0.000013159666667,0.000056862000000,0.000017567000000,0.000049751000000,0.000018159500000,0.000041060000000,0.000013423000000,0.000053306000000,0.000081356000000,0.000092418000000,0.000163924000000,0.000101899000000,0.000133109000000,0.007090536000000,0.000121257000000,0.000139035000000,0.000072269000000,0.000053702000000,0.000019146500000,0.000067529000000 +0.000015591500000,0.007131226000000,0.000044431000000,0.000013160000000,0.000040269000000,0.000017171500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013686333333,0.000053306000000,0.000081750000000,0.000086492000000,0.000131529000000,0.000103479000000,0.000154047000000,0.007059720000000,0.000121257000000,0.000122837000000,0.000058047000000,0.000054097000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.007142683000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000017566500000,0.000047775000000,0.000018356500000,0.000039479000000,0.000019875666667,0.000055677000000,0.000079380000000,0.000084517000000,0.000163923000000,0.000102689000000,0.000113356000000,0.006880363000000,0.000121257000000,0.000121257000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015393500000,0.006866535000000,0.000026258000000,0.000014740000000,0.000040269000000,0.000017369000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000080565000000,0.000086097000000,0.000165899000000,0.000102689000000,0.000097553000000,0.006885894000000,0.000123232000000,0.000120466000000,0.000057257000000,0.000053702000000,0.000020332500000,0.000067528000000 +0.000016184000000,0.007087375000000,0.000026455500000,0.000014213333333,0.000043035000000,0.000017566500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000054096000000,0.000082146000000,0.000087677000000,0.000240961000000,0.000103084000000,0.000096368000000,0.007263177000000,0.000139034000000,0.000121652000000,0.000056467000000,0.000053307000000,0.000018949500000,0.000066738000000 +0.000015393500000,0.006877597000000,0.000026060500000,0.000013160000000,0.000039875000000,0.000017369000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000079381000000,0.000088072000000,0.000480763000000,0.000101899000000,0.000097158000000,0.006862190000000,0.000121257000000,0.000122838000000,0.000056467000000,0.000053702000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006938436000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000017369500000,0.000065554000000,0.000018159000000,0.000039874000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000084121000000,0.000168664000000,0.000103084000000,0.000096368000000,0.006859030000000,0.000122442000000,0.000122837000000,0.000092813000000,0.000054097000000,0.000018752000000,0.000067134000000 +0.000016184000000,0.006786338000000,0.000026060500000,0.000013818000000,0.000040270000000,0.000016579500000,0.000048171000000,0.000018752000000,0.000039479000000,0.000013291333333,0.000053306000000,0.000081356000000,0.000122047000000,0.000186837000000,0.000101899000000,0.000097159000000,0.007107522000000,0.000122442000000,0.000158392000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.006793449000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000017369500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000054096000000,0.000079775000000,0.000085307000000,0.000163529000000,0.000103479000000,0.000134294000000,0.006959770000000,0.000120861000000,0.000122837000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000067134000000 +0.000025468000000,0.006889449000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017172000000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000080565000000,0.000084516000000,0.000133898000000,0.000101899000000,0.000112961000000,0.006956610000000,0.000122442000000,0.000122442000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000084121000000 +0.000041468000000,0.007225251000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000017369500000,0.000048565000000,0.000018356500000,0.000039479000000,0.000013423000000,0.000089652000000,0.000084516000000,0.000088862000000,0.000163924000000,0.000103084000000,0.000095973000000,0.007363523000000,0.000122046000000,0.000169455000000,0.000056862000000,0.000053702000000,0.000019147000000,0.000067923000000 +0.000026653000000,0.006758684000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000016579000000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000082541000000,0.000084121000000,0.000133899000000,0.000102689000000,0.000096368000000,0.006851918000000,0.000193553000000,0.000122837000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000066738000000 +0.000025270500000,0.006806881000000,0.000026060500000,0.000013160000000,0.000040269000000,0.000017567000000,0.000086887000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000079775000000,0.000084516000000,0.000167084000000,0.000102294000000,0.000097158000000,0.007156905000000,0.000122442000000,0.000122047000000,0.000057651000000,0.000089652000000,0.000019147000000,0.000067924000000 +0.000016381500000,0.006731820000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000017171500000,0.000092023000000,0.000018159500000,0.000039480000000,0.000013554666667,0.000053306000000,0.000080565000000,0.000085306000000,0.000220813000000,0.000101899000000,0.000096368000000,0.006732215000000,0.000122838000000,0.000233850000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000066344000000 +0.000016381500000,0.007165597000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000017566500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000053306000000,0.000083726000000,0.000088862000000,0.000163924000000,0.000102294000000,0.000095973000000,0.006892214000000,0.000122442000000,0.000312071000000,0.000056861000000,0.000053702000000,0.000018949500000,0.000067924000000 +0.000022702500000,0.006929745000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000080565000000,0.000087282000000,0.000165108000000,0.000103084000000,0.000097554000000,0.007243424000000,0.000122837000000,0.000130738000000,0.000056467000000,0.000053702000000,0.000019147000000,0.000067923000000 +0.000015986500000,0.007050239000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000017171500000,0.000048565000000,0.000037320000000,0.000039084000000,0.000013423000000,0.000056862000000,0.000082146000000,0.000087281000000,0.000138244000000,0.000101898000000,0.000095973000000,0.007151770000000,0.000122047000000,0.000123233000000,0.000056861000000,0.000053701000000,0.000020135000000,0.000067528000000 +0.000016776500000,0.007316511000000,0.000034554000000,0.000013159666667,0.000040269000000,0.000016776500000,0.000048960000000,0.000034356500000,0.000040664000000,0.000013686666667,0.000055677000000,0.000082146000000,0.000084911000000,0.000165109000000,0.000103084000000,0.000131923000000,0.007068412000000,0.000140615000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000019937000000,0.000067528000000 +0.000016184000000,0.006789498000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000050541000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082540000000,0.000086491000000,0.000131133000000,0.000103084000000,0.000098738000000,0.007320461000000,0.000121257000000,0.000169454000000,0.000056861000000,0.000054097000000,0.000028826000000,0.000067529000000 +0.000015394000000,0.007170733000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000055677000000,0.000079380000000,0.000091627000000,0.000221207000000,0.000101899000000,0.000097158000000,0.006683227000000,0.000121652000000,0.000123627000000,0.000057652000000,0.000053702000000,0.000027443000000,0.000067529000000 +0.000016184000000,0.006695869000000,0.000026455500000,0.000013028000000,0.000059627000000,0.000017567000000,0.000050541000000,0.000018357000000,0.000039875000000,0.000013555000000,0.000052911000000,0.000079775000000,0.000085306000000,0.000132714000000,0.000137455000000,0.000096368000000,0.007015868000000,0.000122837000000,0.000121257000000,0.000056861000000,0.000054097000000,0.000020134500000,0.000068319000000 +0.000015394000000,0.006754338000000,0.000026456000000,0.000013028000000,0.000090047000000,0.000017172000000,0.000049751000000,0.000018159500000,0.000039479000000,0.000014740000000,0.000053701000000,0.000103874000000,0.000086887000000,0.000161553000000,0.000104665000000,0.000096368000000,0.006884314000000,0.000122047000000,0.000122442000000,0.000093208000000,0.000053702000000,0.000018949500000,0.000103875000000 +0.000016184000000,0.006849943000000,0.000026258000000,0.000013159666667,0.000054491000000,0.000016974000000,0.000049355000000,0.000018554000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000095973000000,0.000087282000000,0.000164319000000,0.000101504000000,0.000096368000000,0.006991375000000,0.000122442000000,0.000122442000000,0.000056467000000,0.000054097000000,0.000018751500000,0.000080171000000 +0.000015394000000,0.006887474000000,0.000026061000000,0.000013028000000,0.000039874000000,0.000017566500000,0.000048170000000,0.000018357000000,0.000039479000000,0.000025406666667,0.000053306000000,0.000080171000000,0.000084911000000,0.000130739000000,0.000101898000000,0.000097554000000,0.007333103000000,0.000122047000000,0.000121256000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000015591000000,0.007057745000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000017566500000,0.000050936000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053701000000,0.000079380000000,0.000088072000000,0.000164319000000,0.000102294000000,0.000096368000000,0.006887473000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000015986500000,0.006790683000000,0.000026455500000,0.000013555000000,0.000040269000000,0.000016776500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000073059000000,0.000081751000000,0.000086096000000,0.000169454000000,0.000101504000000,0.000142590000000,0.006706930000000,0.000157998000000,0.000194344000000,0.000057257000000,0.000053701000000,0.000020332000000,0.000067133000000 +0.000025863000000,0.006679671000000,0.000030011000000,0.000013159666667,0.000040269000000,0.000016776500000,0.000048960000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000054096000000,0.000081356000000,0.000084121000000,0.000165899000000,0.000105850000000,0.000097553000000,0.006888659000000,0.000123628000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000068319000000 +0.000023493000000,0.006964906000000,0.000026060500000,0.000013160000000,0.000040269000000,0.000017369000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000014081666667,0.000052912000000,0.000082540000000,0.000118491000000,0.000167084000000,0.000103084000000,0.000097158000000,0.006700214000000,0.000122837000000,0.000121256000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000016974500000,0.007021004000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000017566500000,0.000048566000000,0.000018159500000,0.000041454000000,0.000013423000000,0.000053306000000,0.000078985000000,0.000088071000000,0.000132319000000,0.000102689000000,0.000097159000000,0.006805301000000,0.000122837000000,0.000122047000000,0.000057257000000,0.000090047000000,0.000018752000000,0.000067134000000 +0.000022900000000,0.006902486000000,0.000027245500000,0.000016188333333,0.000040270000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000072665000000,0.000013028000000,0.000053306000000,0.000083726000000,0.000085306000000,0.000165504000000,0.000101504000000,0.000097553000000,0.006855869000000,0.000123628000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000018554500000,0.000067924000000 +0.000015789000000,0.007277399000000,0.000026653000000,0.000016978666667,0.000041060000000,0.000016579000000,0.000105849000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000052912000000,0.000079776000000,0.000105850000000,0.000134294000000,0.000101504000000,0.000095973000000,0.007314535000000,0.000122442000000,0.000121257000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000067133000000 +0.000033567000000,0.006722338000000,0.000026258500000,0.000013160000000,0.000040270000000,0.000016974000000,0.000062788000000,0.000018357000000,0.000039479000000,0.000013028333333,0.000053306000000,0.000080566000000,0.000154047000000,0.000208961000000,0.000101504000000,0.000095973000000,0.006906832000000,0.000123232000000,0.000121652000000,0.000056467000000,0.000054491000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.006756313000000,0.000044233500000,0.000013028000000,0.000040270000000,0.000017171500000,0.000050541000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000090442000000,0.000162739000000,0.000134689000000,0.000101899000000,0.000097553000000,0.006793054000000,0.000157998000000,0.000166294000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000068318000000 +0.000015986500000,0.006902091000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000016776500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000080961000000,0.000087677000000,0.000167479000000,0.000101899000000,0.000097158000000,0.006899326000000,0.000121652000000,0.000123232000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000103479000000 +0.000015394000000,0.006804510000000,0.000026455500000,0.000013028333333,0.000040269000000,0.000017171500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000054097000000,0.000079381000000,0.000088466000000,0.000163528000000,0.000102689000000,0.000168269000000,0.006776461000000,0.000122442000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007901992000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000082541000000,0.000086097000000,0.000131528000000,0.000102294000000,0.000095973000000,0.006745252000000,0.000123232000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007052609000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000017567000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000014081333333,0.000053307000000,0.000082145000000,0.000086491000000,0.000167479000000,0.000102689000000,0.000097158000000,0.006957399000000,0.000122837000000,0.000122442000000,0.000076615000000,0.000053701000000,0.000018949500000,0.000066343000000 +0.000016381500000,0.007534189000000,0.000026653500000,0.000013160000000,0.000039874000000,0.000017567000000,0.000049750000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000057257000000,0.000081751000000,0.000087281000000,0.000167084000000,0.000102689000000,0.000095577000000,0.007392363000000,0.000123232000000,0.000122443000000,0.000073849000000,0.000053306000000,0.000019147000000,0.000067528000000 +0.000015986500000,0.006847177000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000017567000000,0.000048961000000,0.000018356500000,0.000039479000000,0.000013291333333,0.000054096000000,0.000081356000000,0.000088862000000,0.000246096000000,0.000103084000000,0.000095973000000,0.007266338000000,0.000123233000000,0.000121257000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.007214189000000,0.000026851000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048565000000,0.000039887500000,0.000039480000000,0.000013818000000,0.000054886000000,0.000116121000000,0.000086887000000,0.000132714000000,0.000101504000000,0.000096763000000,0.006966091000000,0.000202245000000,0.000141405000000,0.000056862000000,0.000054097000000,0.000019739500000,0.000084517000000 +0.000016184000000,0.006910387000000,0.000026653000000,0.000013160000000,0.000058837000000,0.000017369500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000090837000000,0.000110195000000,0.000084912000000,0.000163134000000,0.000101504000000,0.000095973000000,0.006753547000000,0.000121652000000,0.000121256000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015393500000,0.006829400000000,0.000026455500000,0.000013423000000,0.000057257000000,0.000017566500000,0.000048961000000,0.000026455500000,0.000039874000000,0.000013291666667,0.000053306000000,0.000079380000000,0.000086097000000,0.000230294000000,0.000096763000000,0.000095578000000,0.006815573000000,0.000122442000000,0.000121652000000,0.000057256000000,0.000053307000000,0.000037320000000,0.000067528000000 +0.000015986500000,0.006825844000000,0.000026455500000,0.000014213333333,0.000040269000000,0.000016776500000,0.000049355000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000080566000000,0.000084516000000,0.000136664000000,0.000097158000000,0.000116516000000,0.007034436000000,0.000124813000000,0.000122442000000,0.000059232000000,0.000053702000000,0.000019147000000,0.000067923000000 +0.000015789000000,0.006953054000000,0.000027641000000,0.000013028000000,0.000040269000000,0.000017566500000,0.000048960000000,0.000018752000000,0.000039479000000,0.000013555000000,0.000053701000000,0.000081355000000,0.000086096000000,0.000203035000000,0.000097158000000,0.000096763000000,0.007635325000000,0.000122047000000,0.000121652000000,0.000057257000000,0.000054097000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.007427128000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000017566500000,0.000048171000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000080565000000,0.000122442000000,0.000132714000000,0.000096763000000,0.000097158000000,0.006676116000000,0.000122047000000,0.000123233000000,0.000057257000000,0.000090442000000,0.000019147000000,0.000067924000000 +0.000015789000000,0.006838881000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039085000000,0.000025275000000,0.000055282000000,0.000081355000000,0.000088071000000,0.000188417000000,0.000096368000000,0.000097158000000,0.006760659000000,0.000124023000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000388714000000 +0.000015393500000,0.007062881000000,0.000026258000000,0.000013423000000,0.000040269000000,0.000017566500000,0.000067924000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000055282000000,0.000082146000000,0.000134294000000,0.000195923000000,0.000134293000000,0.000097553000000,0.006855474000000,0.000194343000000,0.000121256000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000101504000000 +0.000015591500000,0.006795424000000,0.000048381500000,0.000013028000000,0.000040269000000,0.000016776500000,0.000387923000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053701000000,0.000079775000000,0.000085701000000,0.000133504000000,0.000096763000000,0.000095973000000,0.006864165000000,0.000122442000000,0.000157207000000,0.000058442000000,0.000054886000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.006728659000000,0.000026060500000,0.000013160000000,0.000040269000000,0.000017369000000,0.000080960000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000054886000000,0.000080565000000,0.000091628000000,0.000200665000000,0.000096763000000,0.000097158000000,0.007254881000000,0.000122442000000,0.000122442000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000016381500000,0.006950684000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000017369000000,0.000063183000000,0.000019147000000,0.000040269000000,0.000013159666667,0.000054097000000,0.000081751000000,0.000084911000000,0.000132714000000,0.000096368000000,0.000097158000000,0.007021795000000,0.000122442000000,0.000122442000000,0.000056862000000,0.000053702000000,0.000019542000000,0.000067134000000 +0.000015394000000,0.007380905000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000017171500000,0.000049750000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053701000000,0.000082146000000,0.000087282000000,0.000164713000000,0.000096368000000,0.000095973000000,0.007229597000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000054097000000,0.000020530000000,0.000067924000000 +0.000015591500000,0.006876412000000,0.000026258000000,0.000014081666667,0.000040270000000,0.000016974000000,0.000048960000000,0.000018752000000,0.000039479000000,0.000013159666667,0.000056072000000,0.000083331000000,0.000086492000000,0.000130738000000,0.000095973000000,0.000131923000000,0.006791079000000,0.000121652000000,0.000122838000000,0.000056862000000,0.000055677000000,0.000021122000000,0.000067529000000 +0.000015789000000,0.006871671000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016776500000,0.000048961000000,0.000018159500000,0.000040665000000,0.000013291333333,0.000053307000000,0.000082146000000,0.000086492000000,0.000165899000000,0.000102689000000,0.000097158000000,0.007247770000000,0.000124022000000,0.000122047000000,0.000095578000000,0.000053701000000,0.000020924500000,0.000067924000000 +0.000015986500000,0.006859820000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000050146000000,0.000018159500000,0.000039480000000,0.000013423333333,0.000052911000000,0.000120862000000,0.000089256000000,0.000172615000000,0.000097948000000,0.000116516000000,0.008219620000000,0.000157997000000,0.000121257000000,0.000073454000000,0.000053306000000,0.000018752000000,0.000101504000000 +0.000015591000000,0.006789894000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000049750000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000054097000000,0.000081750000000,0.000084121000000,0.000135480000000,0.000095973000000,0.000127577000000,0.008280460000000,0.000121652000000,0.000186047000000,0.000056466000000,0.000053701000000,0.000020925000000,0.000081356000000 +0.000015789000000,0.007286881000000,0.000030801500000,0.000013028000000,0.000039874000000,0.000017369500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000089257000000,0.000079380000000,0.000084516000000,0.000187232000000,0.000152467000000,0.000097553000000,0.009398484000000,0.000122837000000,0.000121652000000,0.000060813000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000015394000000,0.006872857000000,0.000026455500000,0.000013818333333,0.000039874000000,0.000017369500000,0.000048566000000,0.000018159500000,0.000039085000000,0.000013160000000,0.000052911000000,0.000079380000000,0.000086887000000,0.000131133000000,0.000096367000000,0.000096763000000,0.008329448000000,0.000121652000000,0.000122837000000,0.000075430000000,0.000054096000000,0.000019147000000,0.000067924000000 +0.000034554500000,0.007314930000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017172000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000087281000000,0.000164714000000,0.000097158000000,0.000098343000000,0.007677202000000,0.000120862000000,0.000122442000000,0.000073454000000,0.000054886000000,0.000019147000000,0.000067924000000 +0.000031789000000,0.006707720000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000017172000000,0.000067133000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000083331000000,0.000087676000000,0.000129949000000,0.000095973000000,0.000097948000000,0.007455967000000,0.000122837000000,0.000122442000000,0.000075429000000,0.000054097000000,0.000019147000000,0.000067923000000 +0.000015394000000,0.006698634000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016974500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000058047000000,0.000082146000000,0.000084121000000,0.000163529000000,0.000097158000000,0.000095973000000,0.007897646000000,0.000158393000000,0.000124812000000,0.000056862000000,0.000054492000000,0.000019344500000,0.000067924000000 +0.000015789000000,0.006822684000000,0.000026653500000,0.000013028000000,0.000040269000000,0.000017172000000,0.000048171000000,0.000036332000000,0.000039084000000,0.000013291333333,0.000053307000000,0.000081751000000,0.000086886000000,0.000239380000000,0.000097158000000,0.000131924000000,0.008703571000000,0.000174196000000,0.000159183000000,0.000060417000000,0.000089652000000,0.000019344500000,0.000067133000000 +0.000015789000000,0.006876412000000,0.000026455500000,0.000013291666667,0.000076219000000,0.000017566500000,0.000048961000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000053701000000,0.000079380000000,0.000084516000000,0.000149306000000,0.000096368000000,0.000096368000000,0.006850733000000,0.000123232000000,0.000121257000000,0.000057652000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.006685202000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000053307000000,0.000082936000000,0.000087281000000,0.000166294000000,0.000116121000000,0.000098343000000,0.007264363000000,0.000122837000000,0.000122837000000,0.000060418000000,0.000053701000000,0.000042258000000,0.000068319000000 +0.000015394000000,0.008798781000000,0.000072085000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000048565000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000082146000000,0.000100319000000,0.000131528000000,0.000109800000000,0.000097553000000,0.006795819000000,0.000122442000000,0.000122047000000,0.000060418000000,0.000054491000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007119375000000,0.000035542000000,0.000014213000000,0.000040269000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000081356000000,0.000084516000000,0.000164318000000,0.000096368000000,0.000096368000000,0.006983868000000,0.000122442000000,0.000122047000000,0.000059628000000,0.000054097000000,0.000019740000000,0.000067529000000 +0.000015986500000,0.007523522000000,0.000026653000000,0.000013028000000,0.000041454000000,0.000016579000000,0.000050146000000,0.000018159000000,0.000039084000000,0.000018427333333,0.000054886000000,0.000082541000000,0.000088072000000,0.000173010000000,0.000100319000000,0.000097158000000,0.006736956000000,0.000121257000000,0.000122442000000,0.000057257000000,0.000053307000000,0.000018554500000,0.000103479000000 +0.000015394000000,0.007488758000000,0.000026850500000,0.000013028000000,0.000040269000000,0.000017566500000,0.000048960000000,0.000018159000000,0.000039480000000,0.000017768666667,0.000053307000000,0.000081355000000,0.000084911000000,0.000201059000000,0.000095973000000,0.000096763000000,0.006894190000000,0.000133899000000,0.000122047000000,0.000093602000000,0.000053702000000,0.000019937500000,0.000067529000000 +0.000016184000000,0.006788313000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000017369000000,0.000048565000000,0.000018159500000,0.000041060000000,0.000013028000000,0.000053306000000,0.000082541000000,0.000086096000000,0.000183281000000,0.000095973000000,0.000097158000000,0.007034831000000,0.000159183000000,0.000120861000000,0.000058047000000,0.000053702000000,0.000018752000000,0.000067924000000 +0.000016184000000,0.007002832000000,0.000029023500000,0.000013159666667,0.000040269000000,0.000017171500000,0.000048565000000,0.000018357000000,0.000039479000000,0.000013159666667,0.000053702000000,0.000086097000000,0.000093602000000,0.000131134000000,0.000095973000000,0.000096368000000,0.006946338000000,0.000122047000000,0.000158392000000,0.000056861000000,0.000053702000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.007972708000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000017171500000,0.000048566000000,0.000018159500000,0.000041059000000,0.000013291666667,0.000053306000000,0.000079775000000,0.000079380000000,0.000173800000000,0.000097158000000,0.000180911000000,0.007377745000000,0.000124417000000,0.000122047000000,0.000058047000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015788500000,0.007957300000000,0.000026653000000,0.000013159666667,0.000041059000000,0.000016776500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000073850000000,0.000081355000000,0.000081356000000,0.000135084000000,0.000097158000000,0.000097159000000,0.006751968000000,0.000122837000000,0.000121652000000,0.000059232000000,0.000054097000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.006893399000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048961000000,0.000018159000000,0.000044220000000,0.000013423000000,0.000070689000000,0.000080960000000,0.000082936000000,0.000169849000000,0.000116516000000,0.000096763000000,0.006835720000000,0.000122047000000,0.000122047000000,0.000057652000000,0.000053702000000,0.000019542000000,0.000067528000000 +0.000015591500000,0.007467029000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000017566500000,0.000048960000000,0.000018357000000,0.000075035000000,0.000013291333333,0.000054887000000,0.000080960000000,0.000079380000000,0.000210146000000,0.000210145000000,0.000097158000000,0.006900116000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000053307000000,0.000018752000000,0.000067923000000 +0.000015789000000,0.006831375000000,0.000026455500000,0.000014345000000,0.000041059000000,0.000017172000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053701000000,0.000082936000000,0.000080566000000,0.000133504000000,0.000163529000000,0.000097158000000,0.007139918000000,0.000121257000000,0.000122047000000,0.000056466000000,0.000053702000000,0.000019542000000,0.000067529000000 +0.000016184000000,0.007116610000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000017369500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053702000000,0.000082936000000,0.000118096000000,0.000177750000000,0.000110591000000,0.000097553000000,0.006881547000000,0.000207775000000,0.000122047000000,0.000056467000000,0.000053702000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.007019029000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000017369500000,0.000121652000000,0.000018159000000,0.000039480000000,0.000013159666667,0.000053701000000,0.000079775000000,0.000080961000000,0.000135084000000,0.000095973000000,0.000095973000000,0.007277005000000,0.000121257000000,0.000159973000000,0.000060022000000,0.000053701000000,0.000018752000000,0.000084911000000 +0.000015394000000,0.007234733000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000017172000000,0.000064368000000,0.000018159000000,0.000039875000000,0.000013028000000,0.000053702000000,0.000080170000000,0.000081356000000,0.000165899000000,0.000098739000000,0.000097553000000,0.007014288000000,0.000122047000000,0.000122837000000,0.000060022000000,0.000071874000000,0.000018949500000,0.000066738000000 +0.000015591500000,0.006857449000000,0.000044430500000,0.000013291333333,0.000041060000000,0.000016974500000,0.000048170000000,0.000018554500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000083726000000,0.000084516000000,0.000130739000000,0.000096763000000,0.000131529000000,0.006852313000000,0.000122442000000,0.000122837000000,0.000057257000000,0.000070294000000,0.000018949500000,0.000068318000000 +0.000016184000000,0.006821103000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000017369500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000054096000000,0.000082146000000,0.000080170000000,0.000214097000000,0.000115726000000,0.000097158000000,0.006825054000000,0.000122837000000,0.000123232000000,0.000060022000000,0.000069109000000,0.000018949500000,0.000066738000000 +0.000015789000000,0.006930536000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000017369000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053701000000,0.000080566000000,0.000083331000000,0.000162739000000,0.000096368000000,0.000096763000000,0.006758684000000,0.000122442000000,0.000121256000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.006719572000000,0.000028233000000,0.000013028000000,0.000040270000000,0.000017369000000,0.000048961000000,0.000027640500000,0.000039874000000,0.000013554666667,0.000053306000000,0.000079381000000,0.000080171000000,0.000131528000000,0.000096763000000,0.000097158000000,0.006811227000000,0.000122047000000,0.000122442000000,0.000056467000000,0.000055676000000,0.000019739500000,0.000067134000000 +0.000015394000000,0.007282930000000,0.000026455500000,0.000013028000000,0.000077010000000,0.000017567000000,0.000048961000000,0.000026455500000,0.000039085000000,0.000013159666667,0.000053701000000,0.000081751000000,0.000079776000000,0.000170244000000,0.000097553000000,0.000095973000000,0.007660609000000,0.000158393000000,0.000123627000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000025270500000,0.006748017000000,0.000026653500000,0.000013028000000,0.000040269000000,0.000017171500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000083331000000,0.000082541000000,0.000130738000000,0.000096368000000,0.000096763000000,0.007361152000000,0.000121257000000,0.000194343000000,0.000075035000000,0.000054097000000,0.000018949500000,0.000067134000000 +0.000027641000000,0.007266337000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000040269000000,0.000013423000000,0.000056467000000,0.000082146000000,0.000081355000000,0.000166689000000,0.000095973000000,0.000095973000000,0.006819523000000,0.000121257000000,0.000122047000000,0.000057256000000,0.000053702000000,0.000019344500000,0.000067529000000 +0.000015394000000,0.006838486000000,0.000030208500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000053701000000,0.000081356000000,0.000128368000000,0.000215281000000,0.000097553000000,0.000097158000000,0.007094091000000,0.000123627000000,0.000121652000000,0.000057257000000,0.000053307000000,0.000038307500000,0.000067528000000 +0.000015789000000,0.006861795000000,0.000026456000000,0.000013159666667,0.000039874000000,0.000016776500000,0.000050541000000,0.000018159000000,0.000039084000000,0.000019744000000,0.000054097000000,0.000115331000000,0.000082146000000,0.000131528000000,0.000097158000000,0.000097158000000,0.006874436000000,0.000122837000000,0.000122837000000,0.000057652000000,0.000053306000000,0.000027246000000,0.000068318000000 +0.000015986500000,0.006798585000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000017172000000,0.000051331000000,0.000018159000000,0.000039480000000,0.000018822333333,0.000089652000000,0.000094393000000,0.000080170000000,0.000175380000000,0.000133108000000,0.000117701000000,0.006776857000000,0.000122047000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015788500000,0.006799375000000,0.000027443500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000047775000000,0.000018357000000,0.000039874000000,0.000013554666667,0.000052911000000,0.000088467000000,0.000083726000000,0.000131924000000,0.000183282000000,0.000095973000000,0.006937251000000,0.000121652000000,0.000120862000000,0.000057652000000,0.000054492000000,0.000018949500000,0.000137850000000 +0.000015591500000,0.006747622000000,0.000027048500000,0.000013160000000,0.000042245000000,0.000017369000000,0.000050541000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000081750000000,0.000081751000000,0.000173010000000,0.000096368000000,0.000097158000000,0.007083029000000,0.000158392000000,0.000122047000000,0.000056862000000,0.000054097000000,0.000018949000000,0.000066344000000 +0.000016184000000,0.007118979000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000016776500000,0.000050936000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054096000000,0.000081355000000,0.000079381000000,0.000131923000000,0.000097158000000,0.000096368000000,0.007049844000000,0.000121652000000,0.000159577000000,0.000056862000000,0.000053307000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.007060116000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000016579000000,0.000049355000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000080566000000,0.000203430000000,0.000097553000000,0.000096368000000,0.006701795000000,0.000121257000000,0.000121652000000,0.000056467000000,0.000053702000000,0.000018751500000,0.000067529000000 +0.000015986500000,0.006893005000000,0.000026653500000,0.000013159666667,0.000040270000000,0.000016974500000,0.000049751000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000053306000000,0.000078985000000,0.000079776000000,0.000166293000000,0.000096763000000,0.000096764000000,0.007432659000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000053702000000,0.000019344500000,0.000067528000000 +0.000015986500000,0.006936461000000,0.000056283000000,0.000013159666667,0.000039874000000,0.000016776500000,0.000084912000000,0.000018159500000,0.000040269000000,0.000013291666667,0.000052912000000,0.000081751000000,0.000082146000000,0.000133109000000,0.000097553000000,0.000097158000000,0.007067226000000,0.000122837000000,0.000120862000000,0.000058442000000,0.000125208000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006934091000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000017567000000,0.000048961000000,0.000018357000000,0.000039084000000,0.000013291333333,0.000055676000000,0.000079776000000,0.000084121000000,0.000169454000000,0.000096368000000,0.000096763000000,0.006804906000000,0.000122047000000,0.000121652000000,0.000056467000000,0.000054491000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006857054000000,0.000026653500000,0.000013028000000,0.000039874000000,0.000017369000000,0.000048960000000,0.000017962000000,0.000039085000000,0.000013423000000,0.000053306000000,0.000079776000000,0.000079380000000,0.000132318000000,0.000096763000000,0.000096368000000,0.007218930000000,0.000121652000000,0.000121652000000,0.000057652000000,0.000052516000000,0.000019147000000,0.000067529000000 +0.000015986500000,0.006993745000000,0.000026258000000,0.000014213333333,0.000042245000000,0.000017369000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000052911000000,0.000085307000000,0.000098738000000,0.000165109000000,0.000096763000000,0.000176565000000,0.007274634000000,0.000121652000000,0.000120467000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.007065251000000,0.000026258000000,0.000013686666667,0.000040270000000,0.000017566500000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081356000000,0.000085702000000,0.000168270000000,0.000170245000000,0.000096763000000,0.006854289000000,0.000139824000000,0.000157998000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007080264000000,0.000026455500000,0.000013160000000,0.000040270000000,0.000017171500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000055282000000,0.000079381000000,0.000084912000000,0.000180516000000,0.000097158000000,0.000097948000000,0.006877202000000,0.000122837000000,0.000122443000000,0.000093207000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015393500000,0.006814387000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000017369000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079776000000,0.000082541000000,0.000175776000000,0.000095578000000,0.000097554000000,0.007009152000000,0.000122442000000,0.000120467000000,0.000056862000000,0.000056071000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.007113448000000,0.000026850500000,0.000013291333333,0.000040269000000,0.000017369500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013160000000,0.000052911000000,0.000081751000000,0.000080566000000,0.000132319000000,0.000095973000000,0.000096368000000,0.006800955000000,0.000121257000000,0.000123628000000,0.000057256000000,0.000053701000000,0.000018752000000,0.000123232000000 +0.000015394000000,0.007045499000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000017567000000,0.000048566000000,0.000018159000000,0.000042245000000,0.000013159666667,0.000076220000000,0.000079381000000,0.000080171000000,0.000172219000000,0.000096368000000,0.000097158000000,0.007190090000000,0.000122443000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591000000,0.006664659000000,0.000026456000000,0.000013159666667,0.000042245000000,0.000017369500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000069504000000,0.000080171000000,0.000081356000000,0.000134689000000,0.000097553000000,0.000097158000000,0.007007177000000,0.000121257000000,0.000161158000000,0.000056861000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.007101202000000,0.000026258000000,0.000013028000000,0.000060418000000,0.000017567000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000083726000000,0.000248071000000,0.000095973000000,0.000096763000000,0.007219326000000,0.000122442000000,0.000139430000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015393500000,0.006951473000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000055676000000,0.000080171000000,0.000081751000000,0.000167479000000,0.000097553000000,0.000097553000000,0.006733399000000,0.000157603000000,0.000157998000000,0.000057257000000,0.000055677000000,0.000018751500000,0.000067133000000 +0.000015789000000,0.006788314000000,0.000027048000000,0.000013028000000,0.000078985000000,0.000016579500000,0.000048960000000,0.000036134500000,0.000039085000000,0.000013291333333,0.000053307000000,0.000079776000000,0.000191578000000,0.000132713000000,0.000149306000000,0.000288368000000,0.006738930000000,0.000121257000000,0.000122442000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006702585000000,0.000026258000000,0.000013686333333,0.000042640000000,0.000016579500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054887000000,0.000079776000000,0.000102293000000,0.000168269000000,0.000097158000000,0.000184466000000,0.006799770000000,0.000121256000000,0.000122837000000,0.000056862000000,0.000053307000000,0.000018751500000,0.000068319000000 +0.000016184000000,0.007044708000000,0.000026455500000,0.000013686333333,0.000042245000000,0.000017369500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000026591666667,0.000053701000000,0.000083331000000,0.000170640000000,0.000131134000000,0.000097158000000,0.000114146000000,0.006839672000000,0.000121257000000,0.000121257000000,0.000056467000000,0.000054887000000,0.000037122500000,0.000067924000000 +0.000015394000000,0.006893794000000,0.000044431000000,0.000013159666667,0.000053701000000,0.000017369500000,0.000047776000000,0.000018159000000,0.000039874000000,0.000025801666667,0.000053702000000,0.000081356000000,0.000093997000000,0.000167874000000,0.000097159000000,0.000098344000000,0.007110288000000,0.000121652000000,0.000123232000000,0.000056861000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007071178000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000017369500000,0.000049356000000,0.000018357000000,0.000039479000000,0.000013291333333,0.000053306000000,0.000080170000000,0.000079380000000,0.000150887000000,0.000097158000000,0.000097158000000,0.008279275000000,0.000122442000000,0.000122047000000,0.000057257000000,0.000053702000000,0.000018752000000,0.000067924000000 +0.000034554000000,0.006892215000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000081355000000,0.000079775000000,0.000163924000000,0.000096368000000,0.000095578000000,0.007021794000000,0.000121651000000,0.000122047000000,0.000056861000000,0.000054887000000,0.000018752000000,0.000067529000000 +0.000024085000000,0.007274634000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000017369000000,0.000114936000000,0.000018357000000,0.000039085000000,0.000013554666667,0.000054887000000,0.000081355000000,0.000080565000000,0.000166689000000,0.000095578000000,0.000132319000000,0.006893400000000,0.000158393000000,0.000171034000000,0.000058047000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006847572000000,0.000026258000000,0.000013555000000,0.000039874000000,0.000016776500000,0.000154442000000,0.000018356500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000081750000000,0.000116121000000,0.000137060000000,0.000095972000000,0.000096763000000,0.008009448000000,0.000122442000000,0.000161948000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000104269000000 +0.000015394000000,0.007029301000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000017764000000,0.000064763000000,0.000018357000000,0.000039084000000,0.000013818000000,0.000052911000000,0.000082146000000,0.000097949000000,0.000178146000000,0.000095973000000,0.000097158000000,0.006793844000000,0.000122047000000,0.000187232000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000067924000000 +0.000015591000000,0.006722338000000,0.000030406000000,0.000014345000000,0.000040270000000,0.000017171500000,0.000063183000000,0.000018159500000,0.000060417000000,0.000013423000000,0.000054491000000,0.000079381000000,0.000079776000000,0.000131923000000,0.000132714000000,0.000097158000000,0.007347325000000,0.000121257000000,0.000122442000000,0.000109800000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006925004000000,0.000026653500000,0.000013159666667,0.000039875000000,0.000017369000000,0.000048960000000,0.000018357000000,0.000056071000000,0.000013159666667,0.000053306000000,0.000082541000000,0.000084121000000,0.000199084000000,0.000109010000000,0.000097158000000,0.006856659000000,0.000120862000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.007044708000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000016974000000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000083726000000,0.000079380000000,0.000135479000000,0.000097553000000,0.000095578000000,0.007282535000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000054491000000,0.000027641000000,0.000067924000000 +0.000015394000000,0.006871276000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000017566500000,0.000049356000000,0.000018356500000,0.000039479000000,0.000013159666667,0.000089652000000,0.000081750000000,0.000079380000000,0.000171429000000,0.000095578000000,0.000097948000000,0.006751968000000,0.000121652000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000026850500000,0.000067133000000 +0.000015591500000,0.007205894000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017171500000,0.000049750000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000053702000000,0.000100319000000,0.000081356000000,0.000165899000000,0.000096368000000,0.000096368000000,0.007116214000000,0.000142195000000,0.000157998000000,0.000056862000000,0.000054096000000,0.000027048000000,0.000067133000000 +0.000015591500000,0.006865745000000,0.000027048500000,0.000013160000000,0.000039874000000,0.000017369500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053701000000,0.000101899000000,0.000079775000000,0.000132713000000,0.000096368000000,0.000098344000000,0.006789499000000,0.000281257000000,0.000122442000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006876412000000,0.000026455500000,0.000033176333333,0.000040269000000,0.000017172000000,0.000049356000000,0.000017961500000,0.000039875000000,0.000013291333333,0.000053307000000,0.000187627000000,0.000080961000000,0.000165504000000,0.000095578000000,0.000169060000000,0.006898535000000,0.000353553000000,0.000122047000000,0.000056862000000,0.000054886000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006650832000000,0.000026258000000,0.000020402666667,0.000040269000000,0.000017369500000,0.000049751000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000054096000000,0.000097948000000,0.000080565000000,0.000295479000000,0.000095972000000,0.000173010000000,0.007089350000000,0.000300615000000,0.000120862000000,0.000058442000000,0.000058837000000,0.000018752000000,0.000066739000000 +0.000015393500000,0.006950683000000,0.000044826000000,0.000019349333333,0.000040269000000,0.000016974500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079381000000,0.000120467000000,0.000297059000000,0.000096368000000,0.000096763000000,0.006815177000000,0.000331825000000,0.000122442000000,0.000056862000000,0.000055676000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.006909992000000,0.000026456000000,0.000013950000000,0.000074639000000,0.000016777000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000054887000000,0.000080566000000,0.000106640000000,0.000183677000000,0.000178936000000,0.000096763000000,0.007245004000000,0.000224763000000,0.000122047000000,0.000060417000000,0.000054097000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.007196806000000,0.000026258000000,0.000013818333333,0.000042640000000,0.000017172000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000053701000000,0.000082936000000,0.000080171000000,0.000200664000000,0.000096763000000,0.000095578000000,0.006800956000000,0.000156813000000,0.000121652000000,0.000058047000000,0.000116121000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.006817153000000,0.000026851000000,0.000017769000000,0.000043430000000,0.000017369500000,0.000069899000000,0.000018159000000,0.000039480000000,0.000013291333333,0.000053307000000,0.000079380000000,0.000080566000000,0.000204219000000,0.000098343000000,0.000096368000000,0.006945152000000,0.000129948000000,0.000159578000000,0.000057257000000,0.000069899000000,0.000020134500000,0.000103479000000 +0.000016184000000,0.007209844000000,0.000026060500000,0.000013818333333,0.000042640000000,0.000017172000000,0.000122837000000,0.000047196000000,0.000039084000000,0.000013291333333,0.000055676000000,0.000082540000000,0.000082936000000,0.000133899000000,0.000097948000000,0.000097158000000,0.006785943000000,0.000156022000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000068714000000 +0.000015394000000,0.006908016000000,0.000026258500000,0.000013159666667,0.000045405000000,0.000017567000000,0.000063182000000,0.000045023500000,0.000039479000000,0.000026328666667,0.000058837000000,0.000100714000000,0.000081751000000,0.000165108000000,0.000095973000000,0.000097553000000,0.007000462000000,0.000129948000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018554500000,0.000068714000000 +0.000016184000000,0.006889844000000,0.000026455500000,0.000013028000000,0.000042640000000,0.000017369000000,0.000050936000000,0.000043048500000,0.000039084000000,0.000024880000000,0.000052911000000,0.000083726000000,0.000083331000000,0.000134689000000,0.000097158000000,0.000133109000000,0.006788314000000,0.000129553000000,0.000121652000000,0.000056467000000,0.000053701000000,0.000037319500000,0.000067529000000 +0.000015591500000,0.007049844000000,0.000026456000000,0.000013028000000,0.000042244000000,0.000016579000000,0.000048566000000,0.000027641000000,0.000039084000000,0.000029884000000,0.000056467000000,0.000079381000000,0.000081751000000,0.000163133000000,0.000095973000000,0.000097553000000,0.007019819000000,0.000129949000000,0.000122442000000,0.000092812000000,0.000053701000000,0.000044628500000,0.000067134000000 +0.000016184000000,0.007004807000000,0.000026258000000,0.000013818333333,0.000042244000000,0.000016777000000,0.000048565000000,0.000019344500000,0.000039084000000,0.000014476666667,0.000053701000000,0.000079776000000,0.000079775000000,0.000165504000000,0.000096368000000,0.000096763000000,0.006789104000000,0.000128763000000,0.000123232000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000067133000000 +0.000016184000000,0.007106338000000,0.000026455500000,0.000013159666667,0.000042245000000,0.000017369500000,0.000047775000000,0.000034159000000,0.000039084000000,0.000014345000000,0.000053702000000,0.000127183000000,0.000084517000000,0.000177356000000,0.000133109000000,0.000095973000000,0.006744856000000,0.000128763000000,0.000123232000000,0.000056862000000,0.000054492000000,0.000018752000000,0.000067528000000 +0.000015789000000,0.006770535000000,0.000026653000000,0.000013159666667,0.000042639000000,0.000016974000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000017637000000,0.000073059000000,0.000081356000000,0.000115726000000,0.000167084000000,0.000097159000000,0.000097158000000,0.006811227000000,0.000160368000000,0.000158787000000,0.000056862000000,0.000054096000000,0.000019542000000,0.000067134000000 +0.000016184000000,0.006728659000000,0.000026653000000,0.000013423000000,0.000043035000000,0.000017764500000,0.000048961000000,0.000017962000000,0.000039479000000,0.000013291333333,0.000052911000000,0.000080170000000,0.000081751000000,0.000133898000000,0.000097158000000,0.000097554000000,0.006815178000000,0.000130343000000,0.000121257000000,0.000059232000000,0.000053701000000,0.000018752000000,0.000068714000000 +0.000015591000000,0.006889054000000,0.000026653000000,0.000013028000000,0.000042640000000,0.000016776500000,0.000051331000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000056071000000,0.000081355000000,0.000081751000000,0.000168269000000,0.000096368000000,0.000095973000000,0.006823868000000,0.000129158000000,0.000122838000000,0.000056861000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000033961500000,0.007172708000000,0.000026455500000,0.000013818000000,0.000095578000000,0.000017566500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000054491000000,0.000080960000000,0.000082146000000,0.000139035000000,0.000095578000000,0.000096368000000,0.007003622000000,0.000129158000000,0.000122442000000,0.000057257000000,0.000053307000000,0.000019937500000,0.000067134000000 +0.000015591500000,0.006874831000000,0.000026456000000,0.000013028000000,0.000042639000000,0.000017567000000,0.000049356000000,0.000017961500000,0.000039874000000,0.000013291333333,0.000052516000000,0.000079380000000,0.000082541000000,0.000165899000000,0.000097554000000,0.000101899000000,0.007553152000000,0.000129553000000,0.000121256000000,0.000056861000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015393500000,0.006931326000000,0.000046603500000,0.000013159666667,0.000045405000000,0.000034554500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000054096000000,0.000084121000000,0.000081751000000,0.000237405000000,0.000096368000000,0.000168269000000,0.006733400000000,0.000129553000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000105059000000 +0.000015591500000,0.007354042000000,0.000026258500000,0.000013291666667,0.000043035000000,0.000016776500000,0.000050146000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000053307000000,0.000099529000000,0.000082541000000,0.000132713000000,0.000097158000000,0.000096763000000,0.006679276000000,0.000129158000000,0.000121652000000,0.000057256000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000015986500000,0.006979918000000,0.000026850500000,0.000013028000000,0.000087282000000,0.000017369000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000056467000000,0.000081356000000,0.000081750000000,0.000166294000000,0.000097948000000,0.000095578000000,0.007132412000000,0.000217257000000,0.000122047000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015789000000,0.006843622000000,0.000026455500000,0.000013818000000,0.000043825000000,0.000017369500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000053701000000,0.000081750000000,0.000082541000000,0.000132318000000,0.000114936000000,0.000097553000000,0.007024955000000,0.000137059000000,0.000180911000000,0.000057256000000,0.000100318000000,0.000019542000000,0.000068319000000 +0.000016184000000,0.007098042000000,0.000026455500000,0.000013818000000,0.000077010000000,0.000016974500000,0.000067528000000,0.000018356500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000080565000000,0.000080961000000,0.000168664000000,0.000130344000000,0.000096763000000,0.006951079000000,0.000122047000000,0.000123232000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000068319000000 +0.000015591500000,0.006889054000000,0.000026653000000,0.000013423000000,0.000053702000000,0.000017369500000,0.000066738000000,0.000018159000000,0.000039084000000,0.000014213333333,0.000052911000000,0.000086096000000,0.000083331000000,0.000164318000000,0.000096368000000,0.000096763000000,0.007010338000000,0.000121651000000,0.000122442000000,0.000056466000000,0.000053701000000,0.000018751500000,0.000067134000000 +0.000015394000000,0.006959770000000,0.000029616000000,0.000013160000000,0.000040269000000,0.000016776500000,0.000049356000000,0.000018159500000,0.000039085000000,0.000013686333333,0.000053702000000,0.000082936000000,0.000151281000000,0.000218442000000,0.000096368000000,0.000096763000000,0.007134387000000,0.000126788000000,0.000122837000000,0.000077800000000,0.000053306000000,0.000018752000000,0.000067134000000 +0.000015789000000,0.007288066000000,0.000026851000000,0.000014213333333,0.000040269000000,0.000016579000000,0.000049750000000,0.000036134500000,0.000039479000000,0.000013291333333,0.000052516000000,0.000079776000000,0.000079380000000,0.000163133000000,0.000095973000000,0.000096763000000,0.006787523000000,0.000122047000000,0.000123232000000,0.000089652000000,0.000053306000000,0.000018751500000,0.000067924000000 +0.000015986500000,0.006828215000000,0.000026850500000,0.000013159666667,0.000039874000000,0.000016579500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000019612333333,0.000056862000000,0.000083331000000,0.000080960000000,0.000132319000000,0.000097159000000,0.000131924000000,0.007019029000000,0.000121257000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000088072000000 +0.000015986500000,0.006899721000000,0.000026455500000,0.000013818000000,0.000039874000000,0.000017369500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000018558666667,0.000053702000000,0.000079380000000,0.000079380000000,0.000164319000000,0.000097158000000,0.000096763000000,0.006750388000000,0.000157602000000,0.000158788000000,0.000056862000000,0.000054096000000,0.000018751500000,0.000083726000000 +0.000015591500000,0.006945547000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000017369500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054491000000,0.000080171000000,0.000079381000000,0.000132318000000,0.000097158000000,0.000097948000000,0.006682437000000,0.000162343000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.006712066000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000017369000000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000127183000000,0.000120862000000,0.000081751000000,0.000166294000000,0.000096368000000,0.000096763000000,0.007022980000000,0.000137849000000,0.000124812000000,0.000057257000000,0.000053306000000,0.000018751500000,0.000066739000000 +0.000015591000000,0.006805301000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000049355000000,0.000018159000000,0.000041455000000,0.000013423000000,0.000091232000000,0.000083726000000,0.000081355000000,0.000212121000000,0.000167084000000,0.000097158000000,0.007212609000000,0.000122442000000,0.000122443000000,0.000056862000000,0.000054096000000,0.000028628500000,0.000112961000000 +0.000015591500000,0.007064066000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048961000000,0.000018357000000,0.000040270000000,0.000013423000000,0.000056467000000,0.000081355000000,0.000082145000000,0.000133899000000,0.000095973000000,0.000097158000000,0.006983869000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000058442000000,0.000035739500000,0.000067134000000 +0.000015986500000,0.007173498000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000084121000000,0.000079775000000,0.000081356000000,0.000182096000000,0.000097553000000,0.000096368000000,0.006807672000000,0.000121257000000,0.000121652000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000068318000000 +0.000016184000000,0.006802536000000,0.000043640500000,0.000013028000000,0.000041455000000,0.000017369000000,0.000049356000000,0.000018357000000,0.000039479000000,0.000013291666667,0.000053307000000,0.000083331000000,0.000086887000000,0.000130343000000,0.000095973000000,0.000097158000000,0.006989005000000,0.000121652000000,0.000122442000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.007207474000000,0.000033566500000,0.000013555000000,0.000040664000000,0.000017369000000,0.000048170000000,0.000018159000000,0.000039874000000,0.000013028000000,0.000052911000000,0.000079776000000,0.000116516000000,0.000166689000000,0.000095973000000,0.000097158000000,0.006885103000000,0.000157602000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.006887869000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016776500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054492000000,0.000082541000000,0.000079380000000,0.000130739000000,0.000095973000000,0.000165504000000,0.007194832000000,0.000120071000000,0.000215281000000,0.000056467000000,0.000055677000000,0.000018752000000,0.000069898000000 +0.000015986500000,0.006773696000000,0.000035937000000,0.000013028000000,0.000040269000000,0.000017566500000,0.000049356000000,0.000018554500000,0.000039874000000,0.000013028000000,0.000053306000000,0.000080565000000,0.000127578000000,0.000235825000000,0.000097158000000,0.000110986000000,0.007081053000000,0.000122442000000,0.000146146000000,0.000056862000000,0.000053702000000,0.000019146500000,0.000121257000000 +0.000015591000000,0.006913153000000,0.000034752000000,0.000013554666667,0.000040269000000,0.000016776500000,0.000048961000000,0.000018159500000,0.000039875000000,0.000013159666667,0.000054096000000,0.000079380000000,0.000084516000000,0.000165109000000,0.000096763000000,0.000096763000000,0.007121746000000,0.000121652000000,0.000122837000000,0.000057257000000,0.000092023000000,0.000019147000000,0.000066739000000 +0.000016579000000,0.007673646000000,0.000033764000000,0.000013159666667,0.000040269000000,0.000016974000000,0.000049750000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000082935000000,0.000096368000000,0.000130344000000,0.000095973000000,0.000098738000000,0.006985449000000,0.000123627000000,0.000122442000000,0.000058837000000,0.000058047000000,0.000018752000000,0.000067924000000 +0.000016184000000,0.007030486000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000017369000000,0.000067924000000,0.000028035500000,0.000039084000000,0.000013423333333,0.000052911000000,0.000119281000000,0.000079775000000,0.000170640000000,0.000147331000000,0.000096763000000,0.006677697000000,0.000123232000000,0.000121652000000,0.000056861000000,0.000058047000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.006961746000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000016776500000,0.000068319000000,0.000026258000000,0.000077405000000,0.000013291666667,0.000057652000000,0.000082146000000,0.000092022000000,0.000140219000000,0.000095973000000,0.000096763000000,0.006926190000000,0.000122838000000,0.000123628000000,0.000073454000000,0.000053306000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.007104757000000,0.000026258000000,0.000013028000000,0.000041850000000,0.000017171500000,0.000050541000000,0.000019344500000,0.000096368000000,0.000013423000000,0.000055677000000,0.000081751000000,0.000080170000000,0.000202245000000,0.000095973000000,0.000097158000000,0.006832165000000,0.000204220000000,0.000158393000000,0.000057257000000,0.000054886000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.007234338000000,0.000026455500000,0.000013686666667,0.000040269000000,0.000016776500000,0.000048566000000,0.000025073000000,0.000090837000000,0.000013291333333,0.000089652000000,0.000079380000000,0.000079380000000,0.000163529000000,0.000095973000000,0.000095973000000,0.006759869000000,0.000122837000000,0.000122837000000,0.000056466000000,0.000055676000000,0.000018752000000,0.000171824000000 +0.000033962000000,0.007237498000000,0.000026258500000,0.000014345000000,0.000076615000000,0.000016776500000,0.000050146000000,0.000018159500000,0.000054492000000,0.000013028000000,0.000053306000000,0.000079380000000,0.000135479000000,0.000135084000000,0.000096763000000,0.000116516000000,0.007064856000000,0.000122047000000,0.000121652000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000088466000000 +0.000015986500000,0.006990979000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000016776500000,0.000049750000000,0.000018159000000,0.000053701000000,0.000013028000000,0.000053702000000,0.000082146000000,0.000082936000000,0.000165109000000,0.000095973000000,0.000096763000000,0.007068807000000,0.000122047000000,0.000123627000000,0.000056861000000,0.000060813000000,0.000019147000000,0.000084516000000 +0.000015394000000,0.007301103000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016974000000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000084517000000,0.000090442000000,0.000131923000000,0.000096368000000,0.000095973000000,0.006680461000000,0.000121257000000,0.000121652000000,0.000057257000000,0.000058837000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006911967000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017171500000,0.000050146000000,0.000018159500000,0.000039480000000,0.000013291666667,0.000054492000000,0.000079776000000,0.000081355000000,0.000164319000000,0.000095973000000,0.000097553000000,0.006830980000000,0.000121652000000,0.000122442000000,0.000056861000000,0.000058837000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.006705745000000,0.000045023500000,0.000013555000000,0.000040269000000,0.000016579000000,0.000050541000000,0.000028035500000,0.000039084000000,0.000014081666667,0.000052911000000,0.000080961000000,0.000081356000000,0.000168665000000,0.000096763000000,0.000096368000000,0.007117400000000,0.000122442000000,0.000120862000000,0.000057257000000,0.000057652000000,0.000018752000000,0.000067134000000 +0.000015591000000,0.006917103000000,0.000027048000000,0.000013554666667,0.000040269000000,0.000017566500000,0.000048566000000,0.000049171500000,0.000039084000000,0.000027908666667,0.000052911000000,0.000081356000000,0.000079776000000,0.000181307000000,0.000133109000000,0.000132714000000,0.007122930000000,0.000122837000000,0.000192368000000,0.000056862000000,0.000058442000000,0.000018752000000,0.000071479000000 +0.000015394000000,0.006834931000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000017369000000,0.000050541000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000054886000000,0.000131529000000,0.000079775000000,0.000166689000000,0.000096763000000,0.000111775000000,0.006979918000000,0.000121256000000,0.000122047000000,0.000057652000000,0.000057257000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006714436000000,0.000027641000000,0.000013818000000,0.000040269000000,0.000025270000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053307000000,0.000080171000000,0.000079380000000,0.000133109000000,0.000097553000000,0.000096368000000,0.007473745000000,0.000122047000000,0.000122442000000,0.000056466000000,0.000057652000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.007041152000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000016776500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000082541000000,0.000079775000000,0.000163529000000,0.000097159000000,0.000095578000000,0.006810832000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000058837000000,0.000018752000000,0.000066344000000 +0.000015789000000,0.007135967000000,0.000026455500000,0.000013028333333,0.000040269000000,0.000016579000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054887000000,0.000079775000000,0.000082145000000,0.000130343000000,0.000096763000000,0.000151676000000,0.006927375000000,0.000121257000000,0.000122838000000,0.000057256000000,0.000058047000000,0.000038307500000,0.000066739000000 +0.000015591500000,0.006741696000000,0.000030604000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000048171000000,0.000018159500000,0.000039085000000,0.000013159666667,0.000052911000000,0.000079380000000,0.000099528000000,0.000202639000000,0.000095973000000,0.000097158000000,0.007179819000000,0.000122442000000,0.000122047000000,0.000057257000000,0.000077405000000,0.000043838500000,0.000085306000000 +0.000015394000000,0.006764610000000,0.000026850500000,0.000013159666667,0.000039874000000,0.000017566500000,0.000048565000000,0.000018159000000,0.000041060000000,0.000013291333333,0.000053307000000,0.000079381000000,0.000081751000000,0.000158393000000,0.000096368000000,0.000097553000000,0.006940411000000,0.000123232000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000037715000000,0.000066739000000 +0.000015393500000,0.006942783000000,0.000027443000000,0.000013159666667,0.000040269000000,0.000017171500000,0.000048565000000,0.000018159000000,0.000041060000000,0.000013159666667,0.000052911000000,0.000081356000000,0.000081355000000,0.000161553000000,0.000096368000000,0.000097948000000,0.006815572000000,0.000158393000000,0.000158393000000,0.000091628000000,0.000053306000000,0.000019937000000,0.000067924000000 +0.000015394000000,0.006900511000000,0.000026456000000,0.000013159666667,0.000041059000000,0.000017172000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013950000000,0.000052912000000,0.000081356000000,0.000080170000000,0.000168664000000,0.000096763000000,0.000097553000000,0.006921844000000,0.000122442000000,0.000122837000000,0.000071875000000,0.000053701000000,0.000019937000000,0.000067924000000 +0.000015789000000,0.006864165000000,0.000026258000000,0.000013160000000,0.000039874000000,0.000017172000000,0.000048171000000,0.000018357000000,0.000076220000000,0.000013291333333,0.000089652000000,0.000086096000000,0.000081750000000,0.000131528000000,0.000203430000000,0.000096763000000,0.007226832000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000054491000000,0.000019937000000,0.000066738000000 +0.000015394000000,0.006926190000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000017567000000,0.000078590000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000085306000000,0.000079775000000,0.000082541000000,0.000248072000000,0.000302985000000,0.000097948000000,0.007009152000000,0.000122047000000,0.000121652000000,0.000056862000000,0.000054491000000,0.000025665500000,0.000067133000000 +0.000015789000000,0.007351671000000,0.000026258000000,0.000014740000000,0.000040270000000,0.000027048500000,0.000048170000000,0.000017961500000,0.000041059000000,0.000013028000000,0.000059233000000,0.000153257000000,0.000082146000000,0.000150886000000,0.000187232000000,0.000095972000000,0.006850338000000,0.000122442000000,0.000123232000000,0.000063578000000,0.000053306000000,0.000019739500000,0.000067923000000 +0.000015394000000,0.006900511000000,0.000026258500000,0.000013159666667,0.000040665000000,0.000094801000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013950000000,0.000053306000000,0.000098738000000,0.000083331000000,0.000173010000000,0.000127578000000,0.000132714000000,0.006856264000000,0.000121652000000,0.000124417000000,0.000056862000000,0.000054096000000,0.000019542000000,0.000067924000000 +0.000015986500000,0.007371029000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000031591500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081355000000,0.000079776000000,0.000167874000000,0.000139824000000,0.000097553000000,0.006872462000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006896165000000,0.000026456000000,0.000013554666667,0.000040270000000,0.000042456000000,0.000049355000000,0.000018357000000,0.000039479000000,0.000013291333333,0.000056466000000,0.000079380000000,0.000080961000000,0.000137850000000,0.000095973000000,0.000096763000000,0.007053005000000,0.000193158000000,0.000193554000000,0.000056466000000,0.000053701000000,0.000018752000000,0.000084121000000 +0.000015394000000,0.006836116000000,0.000035344500000,0.000013028000000,0.000039875000000,0.000054307500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000052516000000,0.000081355000000,0.000079776000000,0.000165109000000,0.000096368000000,0.000098344000000,0.006864955000000,0.000121257000000,0.000137455000000,0.000056467000000,0.000054096000000,0.000018752000000,0.000087282000000 +0.000015393500000,0.006987424000000,0.000026653000000,0.000013159666667,0.000076220000000,0.000025665500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000053307000000,0.000082541000000,0.000184467000000,0.000132319000000,0.000097158000000,0.000096368000000,0.007171523000000,0.000122047000000,0.000121257000000,0.000056861000000,0.000053701000000,0.000019542500000,0.000066738000000 +0.000016184000000,0.007189301000000,0.000026060500000,0.000013686333333,0.000040269000000,0.000016974000000,0.000048171000000,0.000018159500000,0.000039874000000,0.000013159666667,0.000053306000000,0.000079381000000,0.000120072000000,0.000200664000000,0.000096763000000,0.000096368000000,0.006800165000000,0.000121257000000,0.000122443000000,0.000056862000000,0.000054491000000,0.000019739500000,0.000067529000000 +0.000015789000000,0.006806486000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000017566500000,0.000048566000000,0.000018159000000,0.000039480000000,0.000013028000000,0.000054097000000,0.000080961000000,0.000086491000000,0.000131529000000,0.000096763000000,0.000096763000000,0.006713251000000,0.000122442000000,0.000122837000000,0.000057257000000,0.000054491000000,0.000018949500000,0.000067924000000 +0.000015394000000,0.006830585000000,0.000027048500000,0.000013818000000,0.000040269000000,0.000017369000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053701000000,0.000079776000000,0.000092417000000,0.000163924000000,0.000097553000000,0.000096368000000,0.006814388000000,0.000120862000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.007083819000000,0.000026653500000,0.000013160000000,0.000040269000000,0.000017567000000,0.000049750000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000080171000000,0.000087676000000,0.000163923000000,0.000097554000000,0.000152072000000,0.006725498000000,0.000122837000000,0.000122047000000,0.000056467000000,0.000053702000000,0.000018752000000,0.000067529000000 +0.000033961500000,0.006879968000000,0.000026653000000,0.000013159666667,0.000039875000000,0.000017567000000,0.000050146000000,0.000018159500000,0.000039479000000,0.000025538333333,0.000053306000000,0.000107035000000,0.000099133000000,0.000132318000000,0.000096368000000,0.000111776000000,0.007141893000000,0.000158392000000,0.000157207000000,0.000057256000000,0.000108615000000,0.000018949500000,0.000066344000000 +0.000015591000000,0.007040758000000,0.000026456000000,0.000013159666667,0.000039875000000,0.000017369000000,0.000048171000000,0.000036134500000,0.000039084000000,0.000013291333333,0.000054492000000,0.000105850000000,0.000122047000000,0.000168664000000,0.000133503000000,0.000096368000000,0.007174684000000,0.000122442000000,0.000122837000000,0.000101899000000,0.000053701000000,0.000019147000000,0.000067924000000 +0.000015591500000,0.007033646000000,0.000026455500000,0.000013423000000,0.000040270000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000135874000000,0.000084912000000,0.000120072000000,0.000241356000000,0.000095973000000,0.000097553000000,0.006759474000000,0.000122047000000,0.000123232000000,0.000057257000000,0.000053306000000,0.000028628000000,0.000067529000000 +0.000015986500000,0.006830190000000,0.000026258000000,0.000013160000000,0.000039875000000,0.000016777000000,0.000049355000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000056072000000,0.000082146000000,0.000101109000000,0.000475627000000,0.000097159000000,0.000095973000000,0.006791869000000,0.000122837000000,0.000121652000000,0.000056467000000,0.000054096000000,0.000019344500000,0.000067528000000 +0.000015591500000,0.006756709000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000016777000000,0.000048566000000,0.000018356500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081751000000,0.000086491000000,0.000156417000000,0.000097553000000,0.000097553000000,0.006815573000000,0.000122047000000,0.000122047000000,0.000057652000000,0.000059232000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.006713251000000,0.000026258000000,0.000013949666667,0.000039874000000,0.000016579000000,0.000049356000000,0.000020134500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079775000000,0.000084911000000,0.000255578000000,0.000097158000000,0.000097159000000,0.006682041000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000055676000000,0.000019147000000,0.000067528000000 +0.000016184000000,0.006999671000000,0.000026653000000,0.000013159666667,0.000041060000000,0.000016579000000,0.000084516000000,0.000018159000000,0.000039085000000,0.000013686666667,0.000053306000000,0.000081355000000,0.000181701000000,0.000167479000000,0.000097158000000,0.000097158000000,0.006975968000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949000000,0.000103479000000 +0.000015591500000,0.006871276000000,0.000026258500000,0.000013028333333,0.000039874000000,0.000016579000000,0.000048171000000,0.000018554500000,0.000039084000000,0.000013291666667,0.000052516000000,0.000082145000000,0.000118491000000,0.000132319000000,0.000095973000000,0.000096763000000,0.006862980000000,0.000169059000000,0.000199874000000,0.000057652000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006766190000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000017369000000,0.000048961000000,0.000018554500000,0.000039479000000,0.000013291666667,0.000053701000000,0.000080171000000,0.000101899000000,0.000163133000000,0.000096764000000,0.000167874000000,0.007433448000000,0.000120862000000,0.000135874000000,0.000057652000000,0.000071084000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006896165000000,0.000044628500000,0.000013159666667,0.000040269000000,0.000016974000000,0.000048565000000,0.000018751500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000079380000000,0.000083726000000,0.000133898000000,0.000095973000000,0.000096763000000,0.006923424000000,0.000122047000000,0.000123628000000,0.000056862000000,0.000068713000000,0.000018949500000,0.000068319000000 +0.000015789000000,0.007177054000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000017171500000,0.000048960000000,0.000018159500000,0.000076220000000,0.000013555000000,0.000053306000000,0.000103084000000,0.000152071000000,0.000166689000000,0.000133504000000,0.000097554000000,0.006794635000000,0.000122442000000,0.000120862000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.006741696000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053701000000,0.000100318000000,0.000081751000000,0.000272960000000,0.000134689000000,0.000096763000000,0.006791474000000,0.000122442000000,0.000122838000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015591000000,0.006685992000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000039874000000,0.000013423333333,0.000058047000000,0.000082936000000,0.000082146000000,0.000165504000000,0.000112566000000,0.000096763000000,0.006794239000000,0.000121257000000,0.000123232000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006780017000000,0.000030011500000,0.000013028000000,0.000040269000000,0.000017369000000,0.000051726000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000057652000000,0.000079380000000,0.000081355000000,0.000166689000000,0.000098344000000,0.000096763000000,0.006836906000000,0.000123232000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006881153000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000017764000000,0.000049751000000,0.000018356500000,0.000040269000000,0.000013423000000,0.000052912000000,0.000080565000000,0.000082936000000,0.000129948000000,0.000096368000000,0.000097158000000,0.007413301000000,0.000161948000000,0.000171430000000,0.000057257000000,0.000054492000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006844412000000,0.000026258500000,0.000013159666667,0.000076220000000,0.000017171500000,0.000048960000000,0.000018159000000,0.000039480000000,0.000013291666667,0.000053306000000,0.000082541000000,0.000080961000000,0.000169454000000,0.000103874000000,0.000095973000000,0.006960560000000,0.000301009000000,0.000121257000000,0.000058047000000,0.000146936000000,0.000018949500000,0.000067924000000 +0.000015789000000,0.008838287000000,0.000026258000000,0.000019481000000,0.000039874000000,0.000016776500000,0.000049751000000,0.000018357000000,0.000039084000000,0.000013291666667,0.000070294000000,0.000079776000000,0.000082146000000,0.000130343000000,0.000096368000000,0.000115726000000,0.006793054000000,0.000357504000000,0.000120861000000,0.000093207000000,0.000153257000000,0.000019147000000,0.000067528000000 +0.000015789000000,0.007527078000000,0.000026060500000,0.000018427333333,0.000040270000000,0.000017567000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053307000000,0.000080961000000,0.000086887000000,0.000253998000000,0.000169849000000,0.000161158000000,0.006943572000000,0.000140220000000,0.000123627000000,0.000056862000000,0.000092813000000,0.000018752000000,0.000068319000000 +0.000016184000000,0.007439375000000,0.000026258500000,0.000020666000000,0.000040270000000,0.000017369500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000052911000000,0.000080566000000,0.000081355000000,0.000168269000000,0.000132318000000,0.000096368000000,0.006851524000000,0.000193553000000,0.000122442000000,0.000056467000000,0.000056862000000,0.000018751500000,0.000103479000000 +0.000015393500000,0.007429893000000,0.000026653000000,0.000019085666667,0.000039874000000,0.000017172000000,0.000068713000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053307000000,0.000080171000000,0.000082541000000,0.000132319000000,0.000096763000000,0.000095578000000,0.007277795000000,0.000120862000000,0.000123233000000,0.000061602000000,0.000056862000000,0.000018949500000,0.000066344000000 +0.000015394000000,0.007017054000000,0.000026456000000,0.000014081333333,0.000039874000000,0.000017567000000,0.000052516000000,0.000018159000000,0.000039480000000,0.000025538333333,0.000053701000000,0.000080171000000,0.000118887000000,0.000163923000000,0.000097158000000,0.000096368000000,0.006986239000000,0.000121652000000,0.000122837000000,0.000056862000000,0.000067134000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.007234732000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000016974000000,0.000052911000000,0.000018357000000,0.000039874000000,0.000013423333333,0.000053306000000,0.000119677000000,0.000079775000000,0.000132318000000,0.000114146000000,0.000096764000000,0.007341005000000,0.000122442000000,0.000157602000000,0.000056466000000,0.000053306000000,0.000018752000000,0.000067924000000 +0.000016184000000,0.007051424000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000017369000000,0.000049750000000,0.000017962000000,0.000039084000000,0.000013555000000,0.000052912000000,0.000083726000000,0.000081356000000,0.000199479000000,0.000101503000000,0.000095973000000,0.006799770000000,0.000122442000000,0.000121257000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.007959671000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000017369000000,0.000068319000000,0.000018159500000,0.000039874000000,0.000013291666667,0.000053306000000,0.000082146000000,0.000080171000000,0.000146936000000,0.000103084000000,0.000097158000000,0.006805696000000,0.000122047000000,0.000121652000000,0.000059233000000,0.000053701000000,0.000044628500000,0.000067528000000 +0.000016184000000,0.006804511000000,0.000036332000000,0.000013159666667,0.000040270000000,0.000017566500000,0.000064368000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000079775000000,0.000081751000000,0.000164318000000,0.000103480000000,0.000096763000000,0.006954634000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000066343000000 +0.000015393500000,0.007443720000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000017369000000,0.000048961000000,0.000036924500000,0.000039084000000,0.000013686333333,0.000053701000000,0.000079380000000,0.000080961000000,0.000165504000000,0.000102689000000,0.000139430000000,0.006900510000000,0.000207775000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000027443000000,0.007437004000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000017369500000,0.000049751000000,0.000018159000000,0.000039875000000,0.000013028000000,0.000054491000000,0.000080565000000,0.000082541000000,0.000132319000000,0.000102294000000,0.000096763000000,0.006672166000000,0.000122837000000,0.000122837000000,0.000056862000000,0.000053306000000,0.000018949000000,0.000067924000000 +0.000052134500000,0.007390387000000,0.000026258000000,0.000013028000000,0.000042640000000,0.000016974000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000084121000000,0.000082936000000,0.000166293000000,0.000138245000000,0.000096763000000,0.006901696000000,0.000123627000000,0.000122442000000,0.000057652000000,0.000089652000000,0.000019147000000,0.000066739000000 +0.000018159500000,0.007389201000000,0.000026258000000,0.000013554666667,0.000040269000000,0.000017369500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000081751000000,0.000081356000000,0.000130343000000,0.000102689000000,0.000097158000000,0.007117795000000,0.000123627000000,0.000141800000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000034159500000,0.007326387000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000016579000000,0.000049356000000,0.000017962000000,0.000039479000000,0.000013160000000,0.000054096000000,0.000081356000000,0.000082146000000,0.000235430000000,0.000101899000000,0.000095973000000,0.006993745000000,0.000121257000000,0.000153257000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000066738000000 +0.000032184000000,0.006968461000000,0.000026653500000,0.000013554666667,0.000040270000000,0.000017567000000,0.000051331000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000052912000000,0.000101109000000,0.000082540000000,0.000165108000000,0.000102689000000,0.000097948000000,0.006837301000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000078591000000 +0.000023097500000,0.006859030000000,0.000028628500000,0.000013028000000,0.000040665000000,0.000017369500000,0.000049356000000,0.000018159500000,0.000048961000000,0.000013423000000,0.000125207000000,0.000086097000000,0.000119281000000,0.000136664000000,0.000103480000000,0.000097554000000,0.007098041000000,0.000158788000000,0.000120467000000,0.000057257000000,0.000054097000000,0.000018949500000,0.000103874000000 +0.000016381500000,0.007025350000000,0.000027048500000,0.000013159666667,0.000040270000000,0.000016777000000,0.000049356000000,0.000018159000000,0.000094788000000,0.000013291333333,0.000069503000000,0.000079776000000,0.000097948000000,0.000168664000000,0.000102689000000,0.000097158000000,0.006852709000000,0.000122047000000,0.000121652000000,0.000074245000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000022109500000,0.007069597000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000017369500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000080961000000,0.000080171000000,0.000134688000000,0.000101899000000,0.000096763000000,0.006736560000000,0.000121257000000,0.000120862000000,0.000057257000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006969251000000,0.000026456000000,0.000013028000000,0.000039874000000,0.000017369500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000084912000000,0.000083726000000,0.000201059000000,0.000101899000000,0.000206590000000,0.007130831000000,0.000122442000000,0.000120862000000,0.000056862000000,0.000053307000000,0.000018949500000,0.000067529000000 +0.000016777000000,0.007265548000000,0.000026653000000,0.000013423000000,0.000116121000000,0.000016776500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000082541000000,0.000081751000000,0.000146541000000,0.000103479000000,0.000208170000000,0.007971128000000,0.000122442000000,0.000159973000000,0.000057257000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000015196500000,0.006907226000000,0.000026258000000,0.000013028000000,0.000087677000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000053306000000,0.000079776000000,0.000081751000000,0.000162738000000,0.000103479000000,0.000199479000000,0.006836115000000,0.000121257000000,0.000141405000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006864560000000,0.000026060500000,0.000013159666667,0.000078195000000,0.000017369000000,0.000048171000000,0.000018159000000,0.000039874000000,0.000013159666667,0.000052911000000,0.000081356000000,0.000083331000000,0.000242145000000,0.000102294000000,0.000102689000000,0.007562239000000,0.000122442000000,0.000122837000000,0.000056862000000,0.000053307000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006923425000000,0.000026258500000,0.000013554666667,0.000042640000000,0.000017369000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000018690666667,0.000053306000000,0.000081356000000,0.000081750000000,0.000133109000000,0.000103084000000,0.000096763000000,0.006897745000000,0.000193553000000,0.000121257000000,0.000057257000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006723128000000,0.000026258000000,0.000013950000000,0.000042639000000,0.000035147000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000018032333333,0.000053307000000,0.000081355000000,0.000080960000000,0.000175380000000,0.000103084000000,0.000096763000000,0.006924610000000,0.000121257000000,0.000121652000000,0.000056862000000,0.000054097000000,0.000019147000000,0.000067923000000 +0.000015789000000,0.006831375000000,0.000045023500000,0.000013686333333,0.000053701000000,0.000017961500000,0.000050541000000,0.000017962000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079775000000,0.000128763000000,0.000214491000000,0.000102689000000,0.000132318000000,0.006972017000000,0.000121652000000,0.000121652000000,0.000056862000000,0.000053307000000,0.000018752000000,0.000066739000000 +0.000015591500000,0.006952264000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000068714000000,0.000018554500000,0.000039479000000,0.000018954000000,0.000053307000000,0.000118096000000,0.000082146000000,0.000166689000000,0.000102689000000,0.000095973000000,0.007038387000000,0.000122047000000,0.000122442000000,0.000057257000000,0.000053702000000,0.000019937500000,0.000066739000000 +0.000015393500000,0.006942783000000,0.000032776500000,0.000013159666667,0.000040269000000,0.000017369500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000082540000000,0.000083331000000,0.000132714000000,0.000102689000000,0.000095578000000,0.006851128000000,0.000122442000000,0.000177355000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006862585000000,0.000026455500000,0.000013686333333,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013291666667,0.000057257000000,0.000083331000000,0.000080170000000,0.000173405000000,0.000102689000000,0.000097553000000,0.006758684000000,0.000129158000000,0.000359479000000,0.000057257000000,0.000137849000000,0.000018949500000,0.000103479000000 +0.000015394000000,0.007034042000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000017172000000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000080961000000,0.000082145000000,0.000164714000000,0.000102294000000,0.000097949000000,0.006813992000000,0.000129949000000,0.000193948000000,0.000057257000000,0.000053701000000,0.000040678000000,0.000067924000000 +0.000015591500000,0.006874832000000,0.000026455500000,0.000014871666667,0.000039874000000,0.000017369500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013686333333,0.000056071000000,0.000080171000000,0.000079775000000,0.000130738000000,0.000102689000000,0.000096763000000,0.006782783000000,0.000129948000000,0.000184862000000,0.000059627000000,0.000053701000000,0.000026455500000,0.000067529000000 +0.000025468000000,0.006794634000000,0.000026850500000,0.000014213333333,0.000039874000000,0.000017172000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000071084000000,0.000082541000000,0.000082146000000,0.000250047000000,0.000103084000000,0.000096763000000,0.007393547000000,0.000127973000000,0.000157997000000,0.000093207000000,0.000053701000000,0.000019739500000,0.000067133000000 +0.000032184000000,0.006893005000000,0.000026455500000,0.000013159666667,0.000041060000000,0.000017369500000,0.000048171000000,0.000018554000000,0.000039084000000,0.000013291333333,0.000057652000000,0.000082145000000,0.000079776000000,0.000134294000000,0.000103084000000,0.000095973000000,0.006913153000000,0.000129158000000,0.000121257000000,0.000056862000000,0.000054096000000,0.000019937000000,0.000067133000000 +0.000015394000000,0.007410930000000,0.000026258000000,0.000013028333333,0.000040270000000,0.000017369000000,0.000048961000000,0.000036134500000,0.000039084000000,0.000013159666667,0.000053701000000,0.000081356000000,0.000079776000000,0.000163133000000,0.000103084000000,0.000095578000000,0.007315325000000,0.000128763000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.007230782000000,0.000026258000000,0.000013028000000,0.000039875000000,0.000017369000000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000052516000000,0.000083726000000,0.000085306000000,0.000167874000000,0.000101899000000,0.000132319000000,0.006816363000000,0.000127973000000,0.000122837000000,0.000057652000000,0.000054096000000,0.000018949500000,0.000069109000000 +0.000015394000000,0.006802536000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000016776500000,0.000048961000000,0.000018357000000,0.000039479000000,0.000013555000000,0.000053306000000,0.000082145000000,0.000084516000000,0.000131924000000,0.000102294000000,0.000095973000000,0.006786733000000,0.000129949000000,0.000122047000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007190485000000,0.000026851000000,0.000013160000000,0.000040269000000,0.000016776500000,0.000048171000000,0.000018159500000,0.000039085000000,0.000013423333333,0.000052912000000,0.000126392000000,0.000079775000000,0.000168664000000,0.000101898000000,0.000095973000000,0.006837300000000,0.000130739000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006838487000000,0.000026850500000,0.000013159666667,0.000039874000000,0.000017369000000,0.000048566000000,0.000018159500000,0.000040270000000,0.000013423333333,0.000053701000000,0.000080566000000,0.000084911000000,0.000186047000000,0.000137454000000,0.000097158000000,0.006833746000000,0.000171430000000,0.000121652000000,0.000058837000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.007218140000000,0.000026653000000,0.000013159666667,0.000076220000000,0.000017171500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000080170000000,0.000079381000000,0.000165899000000,0.000102689000000,0.000096763000000,0.006874832000000,0.000129158000000,0.000123232000000,0.000057652000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006896956000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048960000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000053306000000,0.000082936000000,0.000080961000000,0.000131134000000,0.000103084000000,0.000098344000000,0.007302289000000,0.000130343000000,0.000141010000000,0.000057257000000,0.000053306000000,0.000029221000000,0.000066739000000 +0.000015986500000,0.007491522000000,0.000053912500000,0.000013554666667,0.000040269000000,0.000017171500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053701000000,0.000079381000000,0.000081750000000,0.000163529000000,0.000103479000000,0.000097948000000,0.007334288000000,0.000131529000000,0.000122442000000,0.000056862000000,0.000054491000000,0.000027246000000,0.000104269000000 +0.000015394000000,0.006948314000000,0.000044431000000,0.000013159666667,0.000041059000000,0.000016974000000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000081751000000,0.000079775000000,0.000170244000000,0.000103874000000,0.000097158000000,0.006914733000000,0.000130344000000,0.000121257000000,0.000057257000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000016184000000,0.006927375000000,0.000035937000000,0.000013159666667,0.000040664000000,0.000017369000000,0.000048961000000,0.000018159500000,0.000074245000000,0.000013291666667,0.000052911000000,0.000079381000000,0.000080170000000,0.000167084000000,0.000102689000000,0.000096763000000,0.007182584000000,0.000129158000000,0.000122047000000,0.000057257000000,0.000054096000000,0.000018751500000,0.000067923000000 +0.000015986500000,0.006958584000000,0.000042456000000,0.000013159666667,0.000039874000000,0.000017962000000,0.000068319000000,0.000018159000000,0.000041849000000,0.000014345000000,0.000053307000000,0.000082936000000,0.000079380000000,0.000182096000000,0.000101504000000,0.000147726000000,0.007004412000000,0.000130343000000,0.000122047000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.006803326000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000080960000000,0.000018159000000,0.000052911000000,0.000013159666667,0.000054096000000,0.000079380000000,0.000079380000000,0.000131923000000,0.000105060000000,0.000096763000000,0.007274634000000,0.000165503000000,0.000121652000000,0.000057257000000,0.000071479000000,0.000018751500000,0.000067529000000 +0.000015591500000,0.006978338000000,0.000026456000000,0.000013160000000,0.000040269000000,0.000017369500000,0.000061207000000,0.000018357000000,0.000039084000000,0.000013555000000,0.000058047000000,0.000079776000000,0.000137059000000,0.000164713000000,0.000103084000000,0.000095973000000,0.006982684000000,0.000130343000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006760659000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016776500000,0.000050146000000,0.000018159500000,0.000041059000000,0.000013291666667,0.000095973000000,0.000082146000000,0.000079776000000,0.000130738000000,0.000101899000000,0.000096763000000,0.009249941000000,0.000129553000000,0.000158393000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000067923000000 +0.000015394000000,0.007175078000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000017566500000,0.000050146000000,0.000018159500000,0.000039479000000,0.000019876000000,0.000125603000000,0.000117701000000,0.000081751000000,0.000165109000000,0.000101899000000,0.000097158000000,0.007182980000000,0.000129158000000,0.000122837000000,0.000093207000000,0.000054096000000,0.000018949500000,0.000067924000000 +0.000015986500000,0.006676511000000,0.000026258000000,0.000013818333333,0.000039874000000,0.000016974000000,0.000049355000000,0.000018159000000,0.000039875000000,0.000025143333333,0.000158393000000,0.000079380000000,0.000079381000000,0.000207775000000,0.000101504000000,0.000095973000000,0.007167177000000,0.000129949000000,0.000122047000000,0.000056467000000,0.000053306000000,0.000054900000000,0.000067528000000 +0.000015986500000,0.006863770000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000033171500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000174985000000,0.000084911000000,0.000081751000000,0.000153652000000,0.000101899000000,0.000096763000000,0.007246979000000,0.000131134000000,0.000120861000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000016184000000,0.006993745000000,0.000026455500000,0.000013160000000,0.000040270000000,0.000016776500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013818333333,0.000070294000000,0.000081356000000,0.000083726000000,0.000175380000000,0.000103479000000,0.000097158000000,0.006877202000000,0.000129948000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006830190000000,0.000026258500000,0.000013159666667,0.000039875000000,0.000017369000000,0.000050146000000,0.000018159500000,0.000039874000000,0.000013159666667,0.000056862000000,0.000080171000000,0.000079775000000,0.000135084000000,0.000101899000000,0.000096763000000,0.007069202000000,0.000146146000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015393500000,0.006861400000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000017369000000,0.000049356000000,0.000018159500000,0.000040269000000,0.000013028000000,0.000053306000000,0.000083331000000,0.000079380000000,0.000164318000000,0.000103874000000,0.000113356000000,0.007898831000000,0.000132714000000,0.000121652000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006968066000000,0.000026456000000,0.000013818333333,0.000040269000000,0.000017369500000,0.000048171000000,0.000018356500000,0.000039479000000,0.000013160000000,0.000053307000000,0.000079380000000,0.000082145000000,0.000163923000000,0.000101504000000,0.000097158000000,0.007886979000000,0.000128763000000,0.000158788000000,0.000056862000000,0.000053306000000,0.000019344500000,0.000103874000000 +0.000015393500000,0.007393943000000,0.000035147000000,0.000013160000000,0.000040269000000,0.000017369500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013423333333,0.000053306000000,0.000081356000000,0.000082936000000,0.000186837000000,0.000137849000000,0.000097158000000,0.007236313000000,0.000129158000000,0.000122837000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006734190000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000017764500000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000071874000000,0.000086097000000,0.000101899000000,0.000180911000000,0.000102689000000,0.000097158000000,0.007116610000000,0.000128763000000,0.000122442000000,0.000056862000000,0.000056072000000,0.000018751500000,0.000067923000000 +0.000025073000000,0.007180609000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000017171500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000069898000000,0.000081356000000,0.000082146000000,0.000133109000000,0.000102688000000,0.000096368000000,0.006929745000000,0.000131134000000,0.000121652000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000023888000000,0.006829795000000,0.000027048500000,0.000013160000000,0.000040269000000,0.000017369000000,0.000050936000000,0.000045418500000,0.000039084000000,0.000013423000000,0.000055676000000,0.000154442000000,0.000081750000000,0.000167084000000,0.000103084000000,0.000095972000000,0.007278585000000,0.000165108000000,0.000121652000000,0.000096368000000,0.000053702000000,0.000019147000000,0.000066739000000 +0.000015591500000,0.006992165000000,0.000026258500000,0.000013028000000,0.000040269000000,0.000017369000000,0.000050146000000,0.000026258000000,0.000040665000000,0.000013423000000,0.000053307000000,0.000163133000000,0.000079775000000,0.000133109000000,0.000102294000000,0.000097553000000,0.007029301000000,0.000128763000000,0.000122837000000,0.000060417000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007128461000000,0.000026258000000,0.000013159666667,0.000059627000000,0.000017566500000,0.000048170000000,0.000018554500000,0.000041455000000,0.000013291333333,0.000052911000000,0.000102689000000,0.000096763000000,0.000169849000000,0.000104269000000,0.000096763000000,0.007299918000000,0.000128367000000,0.000121652000000,0.000070294000000,0.000124813000000,0.000018752000000,0.000066738000000 +0.000016184000000,0.007341794000000,0.000026060500000,0.000013160000000,0.000039874000000,0.000017567000000,0.000048566000000,0.000018554500000,0.000041059000000,0.000013159666667,0.000052912000000,0.000095578000000,0.000084911000000,0.000237800000000,0.000101899000000,0.000096368000000,0.007107127000000,0.000129948000000,0.000157997000000,0.000057257000000,0.000124418000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006684807000000,0.000026653000000,0.000013423000000,0.000039875000000,0.000023690500000,0.000066343000000,0.000018554500000,0.000039479000000,0.000013159666667,0.000053701000000,0.000082936000000,0.000092417000000,0.000144565000000,0.000103479000000,0.000114936000000,0.007048263000000,0.000129553000000,0.000154047000000,0.000056862000000,0.000067924000000,0.000018752000000,0.000067528000000 +0.000015789000000,0.006913943000000,0.000028826000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000053307000000,0.000078985000000,0.000090837000000,0.000165504000000,0.000103874000000,0.000095973000000,0.006908807000000,0.000129948000000,0.000129553000000,0.000092813000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000016184000000,0.007013499000000,0.000026258000000,0.000014476666667,0.000039875000000,0.000016184000000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053701000000,0.000083331000000,0.000084516000000,0.000130344000000,0.000103084000000,0.000096368000000,0.006818733000000,0.000130344000000,0.000163924000000,0.000056861000000,0.000054096000000,0.000018949500000,0.000067134000000 +0.000015789000000,0.006902882000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000049355000000,0.000018357000000,0.000039084000000,0.000013554666667,0.000053306000000,0.000079775000000,0.000084517000000,0.000170640000000,0.000101899000000,0.000097158000000,0.007041548000000,0.000131134000000,0.000137849000000,0.000056467000000,0.000053701000000,0.000019146500000,0.000067529000000 +0.000015394000000,0.007421596000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000015788500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000056861000000,0.000079380000000,0.000088467000000,0.000135874000000,0.000103084000000,0.000095578000000,0.007235918000000,0.000130344000000,0.000122837000000,0.000058442000000,0.000053701000000,0.000018752000000,0.000109800000000 +0.000015394000000,0.007036412000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080960000000,0.000087281000000,0.000253603000000,0.000101899000000,0.000097553000000,0.006848362000000,0.000129948000000,0.000141405000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015986500000,0.007223276000000,0.000026653500000,0.000013160000000,0.000040269000000,0.000015591500000,0.000048961000000,0.000018357000000,0.000039084000000,0.000024616333333,0.000054491000000,0.000081750000000,0.000088072000000,0.000167084000000,0.000102689000000,0.000099134000000,0.006847968000000,0.000128368000000,0.000120862000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.006801745000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016382000000,0.000048960000000,0.000018356500000,0.000039479000000,0.000013949666667,0.000052911000000,0.000080961000000,0.000085307000000,0.000135874000000,0.000102689000000,0.000096368000000,0.007026140000000,0.000129948000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006869696000000,0.000048579000000,0.000013818000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000018164000000,0.000053701000000,0.000078985000000,0.000087677000000,0.000168664000000,0.000104270000000,0.000097948000000,0.006864165000000,0.000127972000000,0.000122442000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.006867325000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000052121000000,0.000035344500000,0.000041059000000,0.000013028000000,0.000053307000000,0.000093207000000,0.000084516000000,0.000137059000000,0.000105060000000,0.000133898000000,0.007054980000000,0.000129948000000,0.000121257000000,0.000056862000000,0.000054096000000,0.000025665500000,0.000084517000000 +0.000016184000000,0.006812017000000,0.000026653000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000089257000000,0.000079775000000,0.000086887000000,0.000242936000000,0.000103875000000,0.000096763000000,0.007010338000000,0.000165899000000,0.000121257000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000068319000000 +0.000015986500000,0.006831770000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000052911000000,0.000079775000000,0.000088467000000,0.000410442000000,0.000101504000000,0.000096764000000,0.007210634000000,0.000129554000000,0.000120862000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006998486000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000033566500000,0.000084121000000,0.000018554500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000082145000000,0.000107429000000,0.000177355000000,0.000101899000000,0.000097553000000,0.006850338000000,0.000129158000000,0.000121257000000,0.000061602000000,0.000090047000000,0.000018554000000,0.000068714000000 +0.000015394000000,0.007111078000000,0.000026456000000,0.000013160000000,0.000040269000000,0.000015789000000,0.000083726000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000055677000000,0.000083726000000,0.000088862000000,0.000184072000000,0.000101899000000,0.000097553000000,0.007511276000000,0.000129948000000,0.000168664000000,0.000057652000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006758684000000,0.000026455500000,0.000013159666667,0.000041849000000,0.000015591500000,0.000065554000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000081751000000,0.000088072000000,0.000169060000000,0.000103084000000,0.000098738000000,0.006926980000000,0.000129948000000,0.000122837000000,0.000057256000000,0.000053306000000,0.000018751500000,0.000067133000000 +0.000016184000000,0.006825844000000,0.000026060500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000073060000000,0.000036332000000,0.000039479000000,0.000013686666667,0.000055281000000,0.000081355000000,0.000084122000000,0.000165504000000,0.000103084000000,0.000097158000000,0.006789893000000,0.000129553000000,0.000121257000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006753548000000,0.000026060500000,0.000013028000000,0.000041454000000,0.000016184000000,0.000062788000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000056072000000,0.000080565000000,0.000084121000000,0.000134689000000,0.000103084000000,0.000133109000000,0.007073153000000,0.000130344000000,0.000122047000000,0.000092812000000,0.000053701000000,0.000018949500000,0.000119281000000 +0.000015591500000,0.007068412000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049751000000,0.000018159000000,0.000039085000000,0.000014213333333,0.000053307000000,0.000080170000000,0.000084911000000,0.000171824000000,0.000102689000000,0.000148911000000,0.007023770000000,0.000165899000000,0.000123232000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006837696000000,0.000026455500000,0.000013554666667,0.000039874000000,0.000015788500000,0.000048566000000,0.000018357000000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081750000000,0.000084911000000,0.000183677000000,0.000103084000000,0.000096763000000,0.007244609000000,0.000129553000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006845202000000,0.000026258500000,0.000013028000000,0.000039874000000,0.000016579000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054492000000,0.000081751000000,0.000104665000000,0.000131529000000,0.000103874000000,0.000095973000000,0.006708116000000,0.000129554000000,0.000122837000000,0.000058047000000,0.000053702000000,0.000018752000000,0.000067924000000 +0.000015591000000,0.007196807000000,0.000026455500000,0.000013159666667,0.000076615000000,0.000016381500000,0.000049355000000,0.000019344500000,0.000060417000000,0.000013159666667,0.000052911000000,0.000081751000000,0.000084516000000,0.000206590000000,0.000101899000000,0.000095973000000,0.006896560000000,0.000129948000000,0.000158392000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006753153000000,0.000026456000000,0.000013423000000,0.000040270000000,0.000016381500000,0.000050146000000,0.000018159000000,0.000056071000000,0.000013423000000,0.000053701000000,0.000081751000000,0.000084122000000,0.000133503000000,0.000101504000000,0.000097158000000,0.006836116000000,0.000129948000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000020135000000,0.000067529000000 +0.000033369500000,0.007026535000000,0.000043245500000,0.000013159666667,0.000040270000000,0.000016382000000,0.000049356000000,0.000020134500000,0.000039479000000,0.000014476666667,0.000053701000000,0.000080960000000,0.000085701000000,0.000165109000000,0.000103084000000,0.000096763000000,0.007053004000000,0.000127973000000,0.000166294000000,0.000056862000000,0.000054886000000,0.000019542000000,0.000066738000000 +0.000023888000000,0.006833746000000,0.000035739500000,0.000013159666667,0.000041059000000,0.000016381500000,0.000049355000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000054886000000,0.000082145000000,0.000086492000000,0.000131924000000,0.000102689000000,0.000100714000000,0.006952264000000,0.000131134000000,0.000139824000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000068713000000 +0.000015591500000,0.006926584000000,0.000026653500000,0.000013028000000,0.000041454000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000053702000000,0.000080170000000,0.000171825000000,0.000165899000000,0.000103084000000,0.000095973000000,0.007320856000000,0.000223578000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000066343000000 +0.000015394000000,0.007273844000000,0.000032579000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050936000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000087676000000,0.000079380000000,0.000084121000000,0.000166689000000,0.000102689000000,0.000115726000000,0.006705350000000,0.000252418000000,0.000121256000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000067134000000 +0.000016184000000,0.007572115000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016579500000,0.000049355000000,0.000018159500000,0.000039875000000,0.000013291666667,0.000069899000000,0.000081751000000,0.000084121000000,0.000169849000000,0.000101898000000,0.000096763000000,0.006835326000000,0.000129553000000,0.000125207000000,0.000056862000000,0.000054491000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006808461000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048961000000,0.000018159000000,0.000039874000000,0.000025275000000,0.000053306000000,0.000079380000000,0.000088072000000,0.000169850000000,0.000103084000000,0.000096368000000,0.007002832000000,0.000129553000000,0.000157207000000,0.000057257000000,0.000053306000000,0.000019147000000,0.000067528000000 +0.000015789000000,0.007162436000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013949666667,0.000053307000000,0.000079775000000,0.000084911000000,0.000133109000000,0.000102689000000,0.000095973000000,0.006689547000000,0.000129948000000,0.000121257000000,0.000057652000000,0.000073059000000,0.000018751500000,0.000138244000000 +0.000016184500000,0.006960165000000,0.000030406000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000083331000000,0.000087677000000,0.000173010000000,0.000105060000000,0.000095973000000,0.006842437000000,0.000130343000000,0.000121257000000,0.000056466000000,0.000105454000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006861400000000,0.000026850500000,0.000013554666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000056862000000,0.000079381000000,0.000086097000000,0.000175776000000,0.000097158000000,0.000096764000000,0.006871671000000,0.000129158000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000067923000000 +0.000015591000000,0.007023770000000,0.000026456000000,0.000014344666667,0.000040269000000,0.000015789000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000091628000000,0.000131924000000,0.000097158000000,0.000097948000000,0.007332708000000,0.000129553000000,0.000122047000000,0.000057256000000,0.000053701000000,0.000046604000000,0.000067528000000 +0.000015394000000,0.007069597000000,0.000026258000000,0.000018690666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000081356000000,0.000086887000000,0.000204615000000,0.000097554000000,0.000096763000000,0.006731819000000,0.000129158000000,0.000121257000000,0.000146936000000,0.000054097000000,0.000027443500000,0.000084516000000 +0.000015394000000,0.007239078000000,0.000026851000000,0.000013028000000,0.000041849000000,0.000016382000000,0.000086887000000,0.000018357000000,0.000040664000000,0.000013423333333,0.000053701000000,0.000079776000000,0.000084911000000,0.000130739000000,0.000095578000000,0.000096763000000,0.006882733000000,0.000128763000000,0.000121257000000,0.000076615000000,0.000053702000000,0.000018751500000,0.000067134000000 +0.000015591500000,0.007250140000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000039097500000,0.000093998000000,0.000018159000000,0.000039084000000,0.000013160000000,0.000053307000000,0.000079775000000,0.000092417000000,0.000171035000000,0.000097158000000,0.000133504000000,0.006804906000000,0.000136270000000,0.000193948000000,0.000060418000000,0.000053307000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006984659000000,0.000026653000000,0.000013160000000,0.000040269000000,0.000017369000000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000082146000000,0.000087281000000,0.000132713000000,0.000133109000000,0.000096763000000,0.006996115000000,0.000121652000000,0.000122047000000,0.000070294000000,0.000054097000000,0.000018751500000,0.000067529000000 +0.000015986500000,0.006981498000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000028036000000,0.000039084000000,0.000013159666667,0.000057257000000,0.000083726000000,0.000086491000000,0.000165109000000,0.000095973000000,0.000097158000000,0.006828215000000,0.000157208000000,0.000122047000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006929746000000,0.000036332000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048170000000,0.000053517500000,0.000039085000000,0.000013423000000,0.000053306000000,0.000082541000000,0.000085306000000,0.000164714000000,0.000095973000000,0.000096763000000,0.007015473000000,0.000121256000000,0.000121257000000,0.000056862000000,0.000054097000000,0.000019344500000,0.000066738000000 +0.000016579000000,0.006921449000000,0.000026455500000,0.000013160000000,0.000039874000000,0.000016184000000,0.000047775000000,0.000018554000000,0.000041060000000,0.000013554666667,0.000056071000000,0.000080961000000,0.000086096000000,0.000166689000000,0.000097553000000,0.000095973000000,0.007167572000000,0.000123232000000,0.000122047000000,0.000056467000000,0.000053702000000,0.000018752000000,0.000142195000000 +0.000016184000000,0.007205893000000,0.000026851000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039480000000,0.000013949666667,0.000055677000000,0.000079776000000,0.000087677000000,0.000170245000000,0.000096368000000,0.000097159000000,0.006927375000000,0.000122443000000,0.000122047000000,0.000057652000000,0.000053702000000,0.000019147000000,0.000097553000000 +0.000015591500000,0.006833350000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048171000000,0.000018356500000,0.000039084000000,0.000013159666667,0.000105455000000,0.000080961000000,0.000090837000000,0.000137059000000,0.000096763000000,0.000097948000000,0.007028510000000,0.000122047000000,0.000122047000000,0.000056862000000,0.000053702000000,0.000018949000000,0.000067134000000 +0.000016381500000,0.006855473000000,0.000026258000000,0.000013028000000,0.000079381000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000067133000000,0.000079776000000,0.000087677000000,0.000166293000000,0.000096763000000,0.000097158000000,0.006780412000000,0.000120467000000,0.000193553000000,0.000056467000000,0.000054096000000,0.000019147000000,0.000067924000000 +0.000016381500000,0.006870882000000,0.000026258000000,0.000013159666667,0.000083331000000,0.000015591500000,0.000048565000000,0.000018159500000,0.000039874000000,0.000013423333333,0.000052912000000,0.000084517000000,0.000089256000000,0.000131924000000,0.000096367000000,0.000095973000000,0.006922634000000,0.000120862000000,0.000121257000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000016579000000,0.006699424000000,0.000026653500000,0.000013159666667,0.000041060000000,0.000016381500000,0.000048170000000,0.000018752000000,0.000040664000000,0.000013423333333,0.000052911000000,0.000083726000000,0.000120862000000,0.000170640000000,0.000096763000000,0.000466540000000,0.007146238000000,0.000123627000000,0.000121652000000,0.000057652000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.006925795000000,0.000026060500000,0.000013028333333,0.000039875000000,0.000016579500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000052911000000,0.000080170000000,0.000084516000000,0.000204614000000,0.000139034000000,0.000113355000000,0.007341004000000,0.000160763000000,0.000122442000000,0.000058047000000,0.000073059000000,0.000018949500000,0.000067923000000 +0.000016579000000,0.006886289000000,0.000026456000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000050541000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000053306000000,0.000081750000000,0.000086492000000,0.000133109000000,0.000097158000000,0.000096763000000,0.006741696000000,0.000123627000000,0.000121257000000,0.000093208000000,0.000070294000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.007226042000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048565000000,0.000018159500000,0.000039480000000,0.000013159666667,0.000054887000000,0.000081355000000,0.000088862000000,0.000169849000000,0.000097159000000,0.000095578000000,0.006755918000000,0.000121652000000,0.000121652000000,0.000056861000000,0.000053702000000,0.000018752000000,0.000066343000000 +0.000015986500000,0.006823078000000,0.000026456000000,0.000013028000000,0.000040664000000,0.000016381500000,0.000050936000000,0.000018159500000,0.000039084000000,0.000019875666667,0.000054096000000,0.000083331000000,0.000084121000000,0.000130738000000,0.000096368000000,0.000096763000000,0.006854289000000,0.000121257000000,0.000121256000000,0.000057257000000,0.000053702000000,0.000018752000000,0.000066739000000 +0.000042850500000,0.007545251000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016382000000,0.000053702000000,0.000018159000000,0.000039479000000,0.000018822333333,0.000053306000000,0.000080171000000,0.000084121000000,0.000175380000000,0.000134689000000,0.000130343000000,0.006939226000000,0.000120862000000,0.000193948000000,0.000056861000000,0.000054097000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006804906000000,0.000027443000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000053307000000,0.000079380000000,0.000088072000000,0.000165109000000,0.000109405000000,0.000112170000000,0.007073152000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000053307000000,0.000018752000000,0.000068318000000 +0.000016579000000,0.006821894000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015591500000,0.000084911000000,0.000018159500000,0.000039480000000,0.000013423333333,0.000053306000000,0.000098738000000,0.000084517000000,0.000186442000000,0.000116911000000,0.000095973000000,0.007044313000000,0.000122837000000,0.000122442000000,0.000062392000000,0.000053307000000,0.000018752000000,0.000104269000000 +0.000016184000000,0.007292807000000,0.000026060500000,0.000013028000000,0.000041059000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000055282000000,0.000079380000000,0.000086492000000,0.000168664000000,0.000160763000000,0.000098343000000,0.007444905000000,0.000157998000000,0.000122442000000,0.000056467000000,0.000054097000000,0.000018949500000,0.000122047000000 +0.000015986000000,0.007317696000000,0.000026455500000,0.000014081333333,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039874000000,0.000013159666667,0.000054491000000,0.000081750000000,0.000088072000000,0.000131924000000,0.000127183000000,0.000096368000000,0.007077103000000,0.000171035000000,0.000120862000000,0.000057256000000,0.000053702000000,0.000018949500000,0.000106244000000 +0.000016184000000,0.006804116000000,0.000034751500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000083726000000,0.000122047000000,0.000169455000000,0.000096368000000,0.000097554000000,0.006842437000000,0.000121651000000,0.000122838000000,0.000056862000000,0.000053306000000,0.000037320000000,0.000080960000000 +0.000016184000000,0.006887474000000,0.000026653500000,0.000013818333333,0.000040270000000,0.000015986500000,0.000049751000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000073454000000,0.000083726000000,0.000084911000000,0.000133504000000,0.000097158000000,0.000096368000000,0.007269893000000,0.000121257000000,0.000122442000000,0.000056466000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.007806387000000,0.000026653000000,0.000013160000000,0.000040270000000,0.000015788500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000054096000000,0.000079380000000,0.000084516000000,0.000172615000000,0.000096763000000,0.000096763000000,0.006746832000000,0.000123628000000,0.000169060000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000067924000000 +0.000015394000000,0.007010337000000,0.000026258000000,0.000013423000000,0.000039875000000,0.000016381500000,0.000050145000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053701000000,0.000079380000000,0.000086492000000,0.000215677000000,0.000096763000000,0.000096763000000,0.006893794000000,0.000122837000000,0.000121652000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000066739000000 +0.000015986500000,0.007562634000000,0.000026455500000,0.000014081333333,0.000039874000000,0.000016184000000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013028333333,0.000054492000000,0.000116516000000,0.000084517000000,0.000136664000000,0.000095973000000,0.000132713000000,0.007101597000000,0.000121652000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015789000000,0.007228016000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049751000000,0.000018554500000,0.000039084000000,0.000013291333333,0.000054096000000,0.000097158000000,0.000086492000000,0.000169454000000,0.000098343000000,0.000097158000000,0.007200362000000,0.000159183000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.007359572000000,0.000026653500000,0.000013159666667,0.000040664000000,0.000034357000000,0.000049356000000,0.000036134500000,0.000039874000000,0.000013291333333,0.000053306000000,0.000082541000000,0.000088072000000,0.000134294000000,0.000097159000000,0.000095973000000,0.006740511000000,0.000122047000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000103479000000 +0.000015394000000,0.006853103000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000083726000000,0.000087282000000,0.000165504000000,0.000096763000000,0.000097158000000,0.006891425000000,0.000123232000000,0.000122442000000,0.000093208000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015986500000,0.006755919000000,0.000026258000000,0.000013028000000,0.000073850000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039480000000,0.000013159666667,0.000054886000000,0.000079381000000,0.000085306000000,0.000133899000000,0.000133503000000,0.000096368000000,0.006842041000000,0.000122047000000,0.000122442000000,0.000057256000000,0.000125207000000,0.000018752000000,0.000083331000000 +0.000015986500000,0.006999276000000,0.000026258000000,0.000013159666667,0.000042640000000,0.000016184000000,0.000048961000000,0.000018752000000,0.000039085000000,0.000013160000000,0.000053307000000,0.000081751000000,0.000084517000000,0.000189602000000,0.000097158000000,0.000098738000000,0.007037202000000,0.000122442000000,0.000159578000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000071084000000 +0.000015789000000,0.006757894000000,0.000027048500000,0.000013028000000,0.000040269000000,0.000015591500000,0.000049751000000,0.000018159500000,0.000040269000000,0.000013555000000,0.000053306000000,0.000082541000000,0.000084121000000,0.000164319000000,0.000096368000000,0.000095973000000,0.006893795000000,0.000121257000000,0.000122047000000,0.000059232000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006870881000000,0.000026455500000,0.000013554666667,0.000042244000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000054492000000,0.000079776000000,0.000087282000000,0.000131133000000,0.000095973000000,0.000097158000000,0.006865745000000,0.000167874000000,0.000121652000000,0.000057256000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015789000000,0.006982684000000,0.000026850500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048566000000,0.000019344500000,0.000040664000000,0.000013554666667,0.000053306000000,0.000082936000000,0.000085307000000,0.000164714000000,0.000095578000000,0.000100318000000,0.006829400000000,0.000231479000000,0.000120466000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.007275029000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000080565000000,0.000087677000000,0.000131134000000,0.000096368000000,0.000133109000000,0.006774881000000,0.000121257000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015196500000,0.006797005000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048960000000,0.000018357000000,0.000039084000000,0.000019744000000,0.000053306000000,0.000082540000000,0.000086492000000,0.000163528000000,0.000096763000000,0.000098739000000,0.006992955000000,0.000122047000000,0.000122047000000,0.000056467000000,0.000053306000000,0.000018751500000,0.000067923000000 +0.000015789000000,0.006817943000000,0.000044431000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000084516000000,0.000018159500000,0.000039084000000,0.000027645333333,0.000052911000000,0.000080170000000,0.000088072000000,0.000236615000000,0.000097158000000,0.000095973000000,0.006804116000000,0.000122442000000,0.000122442000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000104269000000 +0.000015394000000,0.006868116000000,0.000026456000000,0.000013554666667,0.000039874000000,0.000015789000000,0.000049355000000,0.000018159000000,0.000039085000000,0.000019480666667,0.000054096000000,0.000079776000000,0.000086491000000,0.000132319000000,0.000097159000000,0.000097158000000,0.006868115000000,0.000122047000000,0.000122837000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000068319000000 +0.000015394000000,0.006817548000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048566000000,0.000018159000000,0.000039479000000,0.000014345000000,0.000126393000000,0.000080171000000,0.000086096000000,0.000165108000000,0.000167084000000,0.000096763000000,0.006826240000000,0.000121652000000,0.000139825000000,0.000057257000000,0.000053701000000,0.000018751500000,0.000067529000000 +0.000015394000000,0.006969252000000,0.000026456000000,0.000013159666667,0.000043035000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000014081333333,0.000053306000000,0.000081751000000,0.000086491000000,0.000133899000000,0.000096368000000,0.000096763000000,0.007109499000000,0.000141800000000,0.000122047000000,0.000057652000000,0.000055282000000,0.000019542000000,0.000067924000000 +0.000015986500000,0.007236708000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048171000000,0.000018159500000,0.000040269000000,0.000014345000000,0.000053307000000,0.000079381000000,0.000084516000000,0.000165898000000,0.000096368000000,0.000095973000000,0.006786338000000,0.000122442000000,0.000122837000000,0.000056861000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000033567000000,0.006944362000000,0.000026455500000,0.000014345000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013950000000,0.000054096000000,0.000082146000000,0.000088467000000,0.000131924000000,0.000095973000000,0.000097158000000,0.006765795000000,0.000121652000000,0.000122838000000,0.000056862000000,0.000056862000000,0.000018752000000,0.000066738000000 +0.000015789000000,0.007126486000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048171000000,0.000018159500000,0.000040269000000,0.000014213000000,0.000053306000000,0.000080961000000,0.000093207000000,0.000201455000000,0.000096368000000,0.000095973000000,0.006879573000000,0.000120862000000,0.000122442000000,0.000056861000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.006817548000000,0.000026455500000,0.000013818333333,0.000039874000000,0.000015591500000,0.000049355000000,0.000020727000000,0.000039084000000,0.000014345000000,0.000056467000000,0.000082541000000,0.000086491000000,0.000164714000000,0.000095973000000,0.000172614000000,0.006820313000000,0.000121257000000,0.000122442000000,0.000056862000000,0.000055281000000,0.000037912000000,0.000067133000000 +0.000015591500000,0.006858239000000,0.000030604000000,0.000020929333333,0.000039874000000,0.000016382000000,0.000049356000000,0.000018159000000,0.000039874000000,0.000014213333333,0.000053702000000,0.000083331000000,0.000084516000000,0.000130738000000,0.000097553000000,0.000109800000000,0.007094486000000,0.000122838000000,0.000122442000000,0.000092812000000,0.000053701000000,0.000046208500000,0.000067134000000 +0.000015394000000,0.006878387000000,0.000026455500000,0.000013159666667,0.000041849000000,0.000015789000000,0.000052121000000,0.000018159500000,0.000040664000000,0.000014344666667,0.000052911000000,0.000079380000000,0.000086096000000,0.000161553000000,0.000097158000000,0.000095183000000,0.006815178000000,0.000122442000000,0.000135874000000,0.000071084000000,0.000089652000000,0.000020529500000,0.000066739000000 +0.000016184000000,0.006891424000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000041060000000,0.000015003333333,0.000053306000000,0.000087282000000,0.000084121000000,0.000131133000000,0.000096764000000,0.000097553000000,0.006959770000000,0.000122442000000,0.000122837000000,0.000056862000000,0.000053702000000,0.000055492500000,0.000069109000000 +0.000015986500000,0.007260017000000,0.000026455500000,0.000013028333333,0.000040269000000,0.000015591000000,0.000048961000000,0.000018554500000,0.000039479000000,0.000013818000000,0.000053701000000,0.000079775000000,0.000087281000000,0.000161158000000,0.000218442000000,0.000095973000000,0.007270289000000,0.000166294000000,0.000122442000000,0.000057652000000,0.000054097000000,0.000060431000000,0.000066343000000 +0.000015394000000,0.006743671000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015394000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013818000000,0.000054887000000,0.000081355000000,0.000084516000000,0.000132713000000,0.000233455000000,0.000096763000000,0.006844017000000,0.000122442000000,0.000121652000000,0.000057257000000,0.000053702000000,0.000036727500000,0.000103874000000 +0.000015591000000,0.006925400000000,0.000026258000000,0.000013291333333,0.000076220000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000014081333333,0.000053306000000,0.000080170000000,0.000087677000000,0.000180911000000,0.000123628000000,0.000098343000000,0.006873252000000,0.000121651000000,0.000121257000000,0.000057257000000,0.000054097000000,0.000028430500000,0.000066739000000 +0.000015394000000,0.008383572000000,0.000026060500000,0.000013028000000,0.000039875000000,0.000016579500000,0.000048170000000,0.000035147000000,0.000039084000000,0.000013950000000,0.000053306000000,0.000088071000000,0.000086096000000,0.000165898000000,0.000109800000000,0.000096763000000,0.006985449000000,0.000122442000000,0.000121257000000,0.000056862000000,0.000053307000000,0.000019937000000,0.000067528000000 +0.000015591500000,0.007268708000000,0.000026258000000,0.000013028000000,0.000041455000000,0.000015789000000,0.000048170000000,0.000019344500000,0.000039480000000,0.000025933333333,0.000053306000000,0.000081751000000,0.000084911000000,0.000134689000000,0.000097158000000,0.000132714000000,0.006699029000000,0.000123232000000,0.000122047000000,0.000057257000000,0.000053702000000,0.000035344500000,0.000068318000000 +0.000015591500000,0.007217745000000,0.000041270000000,0.000013159666667,0.000040270000000,0.000015591500000,0.000048565000000,0.000025073000000,0.000039479000000,0.000014345000000,0.000070294000000,0.000082146000000,0.000086097000000,0.000173405000000,0.000095973000000,0.000096763000000,0.007205498000000,0.000121652000000,0.000164713000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007342980000000,0.000026455500000,0.000014213000000,0.000039875000000,0.000041665500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000014081333333,0.000053701000000,0.000081356000000,0.000084122000000,0.000134294000000,0.000133503000000,0.000097158000000,0.007218536000000,0.000121256000000,0.000122837000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015591500000,0.006994140000000,0.000026258500000,0.000013818000000,0.000040270000000,0.000026653500000,0.000084516000000,0.000018357000000,0.000076615000000,0.000029489000000,0.000052912000000,0.000089257000000,0.000088072000000,0.000163134000000,0.000096368000000,0.000096368000000,0.006872066000000,0.000193948000000,0.000122047000000,0.000057652000000,0.000053702000000,0.000019147000000,0.000067529000000 +0.000015394000000,0.006739325000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000034356500000,0.000064763000000,0.000018159000000,0.000039480000000,0.000013423333333,0.000053306000000,0.000079775000000,0.000087282000000,0.000183281000000,0.000097158000000,0.000095973000000,0.006712856000000,0.000121652000000,0.000120862000000,0.000056467000000,0.000058047000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.008034733000000,0.000026653500000,0.000013028333333,0.000039874000000,0.000025665500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053702000000,0.000082541000000,0.000084912000000,0.000130738000000,0.000096763000000,0.000097158000000,0.006797399000000,0.000122837000000,0.000122837000000,0.000056861000000,0.000055677000000,0.000018949500000,0.000067134000000 +0.000015986500000,0.006886288000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048171000000,0.000018159500000,0.000039084000000,0.000015662000000,0.000055281000000,0.000080566000000,0.000085307000000,0.000163923000000,0.000096368000000,0.000095973000000,0.006999671000000,0.000122442000000,0.000121652000000,0.000057257000000,0.000054097000000,0.000018751500000,0.000067923000000 +0.000015789000000,0.007168757000000,0.000026851000000,0.000013291666667,0.000040269000000,0.000015789000000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000081751000000,0.000086887000000,0.000131924000000,0.000096763000000,0.000096763000000,0.007066832000000,0.000121652000000,0.000122442000000,0.000056861000000,0.000054096000000,0.000037517500000,0.000067923000000 +0.000016184000000,0.007046288000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000050540000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000053306000000,0.000080566000000,0.000084121000000,0.000225553000000,0.000096368000000,0.000096763000000,0.007263177000000,0.000122442000000,0.000157997000000,0.000092812000000,0.000053701000000,0.000018751500000,0.000071479000000 +0.000015394000000,0.007534585000000,0.000027838500000,0.000013291333333,0.000041059000000,0.000015789000000,0.000048566000000,0.000018159000000,0.000039480000000,0.000013554666667,0.000053307000000,0.000082146000000,0.000086096000000,0.000153257000000,0.000096763000000,0.000133109000000,0.007006782000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000055281000000,0.000018752000000,0.000068319000000 +0.000015788500000,0.006859424000000,0.000034752000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000079775000000,0.000084121000000,0.000197503000000,0.000096763000000,0.000097553000000,0.007213794000000,0.000206985000000,0.000122838000000,0.000056861000000,0.000128763000000,0.000018751500000,0.000103874000000 +0.000015394000000,0.006802140000000,0.000027838000000,0.000013423333333,0.000040269000000,0.000015591500000,0.000047775000000,0.000017962000000,0.000039875000000,0.000013818000000,0.000052912000000,0.000079775000000,0.000087282000000,0.000160763000000,0.000114146000000,0.000095973000000,0.006832560000000,0.000122837000000,0.000122047000000,0.000057257000000,0.000067923000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.006993745000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000048960000000,0.000018159500000,0.000039874000000,0.000013159666667,0.000054491000000,0.000082145000000,0.000087676000000,0.000130343000000,0.000097158000000,0.000096368000000,0.006795425000000,0.000122442000000,0.000122442000000,0.000056861000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006854684000000,0.000026455500000,0.000013159666667,0.000042639000000,0.000015986500000,0.000048566000000,0.000018357000000,0.000041060000000,0.000013423000000,0.000052911000000,0.000079775000000,0.000084516000000,0.000166688000000,0.000095578000000,0.000096368000000,0.006987029000000,0.000122442000000,0.000121652000000,0.000056862000000,0.000053702000000,0.000019147000000,0.000067528000000 +0.000015394000000,0.006987425000000,0.000026653000000,0.000027645333333,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000054096000000,0.000081355000000,0.000097159000000,0.000131924000000,0.000095972000000,0.000096763000000,0.006980708000000,0.000122047000000,0.000122837000000,0.000056861000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000016184500000,0.007050239000000,0.000044628500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000054097000000,0.000081750000000,0.000081751000000,0.000203430000000,0.000096763000000,0.000152072000000,0.007284115000000,0.000122442000000,0.000157998000000,0.000056862000000,0.000054097000000,0.000019147000000,0.000067134000000 +0.000015789000000,0.007324412000000,0.000026258500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000110985000000,0.000081356000000,0.000080171000000,0.000133108000000,0.000096368000000,0.000096368000000,0.006842832000000,0.000122837000000,0.000122442000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000033369500000,0.006810437000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000066739000000,0.000097158000000,0.000081355000000,0.000166294000000,0.000095973000000,0.000097553000000,0.006788313000000,0.000158788000000,0.000122442000000,0.000056862000000,0.000053307000000,0.000018752000000,0.000067924000000 +0.000025665500000,0.007561449000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000040270000000,0.000013159666667,0.000070689000000,0.000082936000000,0.000082146000000,0.000176960000000,0.000095578000000,0.000113355000000,0.007995226000000,0.000121651000000,0.000121652000000,0.000057257000000,0.000054097000000,0.000019344500000,0.000067924000000 +0.000022900000000,0.007028511000000,0.000026455500000,0.000013818000000,0.000040269000000,0.000015789000000,0.000048566000000,0.000018554500000,0.000039084000000,0.000013159666667,0.000066738000000,0.000082146000000,0.000079775000000,0.000130343000000,0.000095578000000,0.000096763000000,0.007408165000000,0.000122837000000,0.000121257000000,0.000056862000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000022702500000,0.006917893000000,0.000026851000000,0.000013028000000,0.000108615000000,0.000016381500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000054096000000,0.000079775000000,0.000098739000000,0.000167084000000,0.000133109000000,0.000096368000000,0.007075523000000,0.000122047000000,0.000122047000000,0.000056862000000,0.000087282000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.006970832000000,0.000026455500000,0.000013159666667,0.000092023000000,0.000015591500000,0.000120072000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000053306000000,0.000082936000000,0.000081751000000,0.000172220000000,0.000099529000000,0.000096763000000,0.007333893000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000054886000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.007149794000000,0.000027048500000,0.000013159666667,0.000054492000000,0.000015591500000,0.000048565000000,0.000018752000000,0.000039479000000,0.000013028000000,0.000055281000000,0.000082146000000,0.000088467000000,0.000163134000000,0.000095973000000,0.000095973000000,0.006921449000000,0.000122443000000,0.000142195000000,0.000057257000000,0.000053701000000,0.000018554500000,0.000105454000000 +0.000015394000000,0.006752363000000,0.000026653000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048565000000,0.000030208500000,0.000040269000000,0.000013159666667,0.000053307000000,0.000080961000000,0.000078985000000,0.000164319000000,0.000097158000000,0.000097158000000,0.006821104000000,0.000122442000000,0.000321158000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006744067000000,0.000026455500000,0.000013159666667,0.000060812000000,0.000025665500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000025801666667,0.000052911000000,0.000082540000000,0.000080961000000,0.000133108000000,0.000095578000000,0.000095973000000,0.006924609000000,0.000168664000000,0.000147330000000,0.000092813000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000015789000000,0.006866536000000,0.000026258000000,0.000013159666667,0.000042245000000,0.000026061000000,0.000048566000000,0.000018554500000,0.000039084000000,0.000013159666667,0.000055677000000,0.000158393000000,0.000083727000000,0.000202640000000,0.000097158000000,0.000095973000000,0.006848758000000,0.000123233000000,0.000137059000000,0.000057652000000,0.000123627000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.006915918000000,0.000026653500000,0.000013028000000,0.000053702000000,0.000026653500000,0.000048565000000,0.000018159500000,0.000041849000000,0.000013159666667,0.000053701000000,0.000083331000000,0.000085701000000,0.000133504000000,0.000097158000000,0.000096763000000,0.007206683000000,0.000123232000000,0.000123232000000,0.000056862000000,0.000068714000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.007079869000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000032777000000,0.000050146000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000058837000000,0.000080170000000,0.000081751000000,0.000207380000000,0.000096763000000,0.000143381000000,0.006907622000000,0.000122047000000,0.000122047000000,0.000056861000000,0.000053702000000,0.000018554500000,0.000067923000000 +0.000015591000000,0.006962930000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000024085500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000055677000000,0.000080565000000,0.000082541000000,0.000131133000000,0.000097554000000,0.000097553000000,0.007103177000000,0.000122837000000,0.000192368000000,0.000056862000000,0.000053307000000,0.000028233500000,0.000067133000000 +0.000015986500000,0.007068807000000,0.000026455500000,0.000013160000000,0.000040270000000,0.000017961500000,0.000050541000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000089257000000,0.000079775000000,0.000080961000000,0.000166294000000,0.000182096000000,0.000097948000000,0.006772906000000,0.000122047000000,0.000121652000000,0.000057257000000,0.000053702000000,0.000027443500000,0.000067133000000 +0.000015591500000,0.006688363000000,0.000026653000000,0.000013159666667,0.000039875000000,0.000017566500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052912000000,0.000080170000000,0.000081751000000,0.000162738000000,0.000095973000000,0.000095973000000,0.006970041000000,0.000122837000000,0.000122837000000,0.000056862000000,0.000053702000000,0.000019739500000,0.000067134000000 +0.000015394000000,0.006880363000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000023690000000,0.000049356000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000053306000000,0.000079776000000,0.000125602000000,0.000135084000000,0.000095973000000,0.000097553000000,0.006804116000000,0.000158393000000,0.000121652000000,0.000057257000000,0.000054492000000,0.000018752000000,0.000067924000000 +0.000015789000000,0.006996510000000,0.000028628500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000056862000000,0.000079381000000,0.000079775000000,0.000164713000000,0.000097158000000,0.000095973000000,0.006754733000000,0.000123627000000,0.000161948000000,0.000057257000000,0.000054097000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.006875227000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000047775000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000054492000000,0.000081356000000,0.000082540000000,0.000156812000000,0.000097159000000,0.000096763000000,0.006788313000000,0.000121257000000,0.000121257000000,0.000057257000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000016184000000,0.006921449000000,0.000026060500000,0.000014213000000,0.000040269000000,0.000015591500000,0.000047775000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000082146000000,0.000082541000000,0.000163528000000,0.000097158000000,0.000096763000000,0.006929351000000,0.000122838000000,0.000157603000000,0.000057652000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006900511000000,0.000026258500000,0.000013949666667,0.000060022000000,0.000016381500000,0.000049355000000,0.000018357000000,0.000039479000000,0.000013159666667,0.000052912000000,0.000081750000000,0.000082146000000,0.000132713000000,0.000096763000000,0.000131924000000,0.007220905000000,0.000122047000000,0.000122047000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000114146000000 +0.000015591500000,0.006970832000000,0.000026258000000,0.000026855000000,0.000040269000000,0.000016184000000,0.000050146000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000052911000000,0.000082541000000,0.000081751000000,0.000165503000000,0.000096368000000,0.000096367000000,0.006851128000000,0.000122047000000,0.000122047000000,0.000056467000000,0.000054491000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006849152000000,0.000026060500000,0.000032254333333,0.000041455000000,0.000016184000000,0.000049355000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000053306000000,0.000080961000000,0.000082145000000,0.000165109000000,0.000133109000000,0.000097158000000,0.007035622000000,0.000122837000000,0.000122442000000,0.000057652000000,0.000053306000000,0.000018949500000,0.000067923000000 +0.000017171500000,0.007434634000000,0.000026258000000,0.000040945666667,0.000040269000000,0.000015591500000,0.000068714000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000055282000000,0.000081356000000,0.000082936000000,0.000135084000000,0.000097553000000,0.000095973000000,0.006731424000000,0.000158392000000,0.000120862000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591000000,0.006762634000000,0.000026455500000,0.000023694666667,0.000039874000000,0.000016184000000,0.000065949000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000054492000000,0.000079381000000,0.000081751000000,0.000203430000000,0.000097158000000,0.000095973000000,0.006749202000000,0.000123232000000,0.000121652000000,0.000058047000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015394000000,0.006935671000000,0.000026455500000,0.000018032000000,0.000039875000000,0.000016381500000,0.000050541000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000054096000000,0.000081356000000,0.000082935000000,0.000131528000000,0.000097158000000,0.000096763000000,0.006994535000000,0.000122047000000,0.000122047000000,0.000074245000000,0.000072664000000,0.000019739500000,0.000067924000000 +0.000015394000000,0.006886684000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000052912000000,0.000081356000000,0.000133899000000,0.000166689000000,0.000097158000000,0.000097158000000,0.007247770000000,0.000122442000000,0.000121257000000,0.000057651000000,0.000091627000000,0.000019147000000,0.000067529000000 +0.000025270500000,0.007393547000000,0.000026258000000,0.000013160000000,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000080566000000,0.000079776000000,0.000165108000000,0.000097158000000,0.000095972000000,0.006671770000000,0.000122047000000,0.000138640000000,0.000058047000000,0.000109405000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006715622000000,0.000026258000000,0.000013159666667,0.000041060000000,0.000016381500000,0.000048961000000,0.000017962000000,0.000039084000000,0.000013423000000,0.000053702000000,0.000086492000000,0.000081356000000,0.000132714000000,0.000096368000000,0.000097158000000,0.006883918000000,0.000121257000000,0.000122442000000,0.000056862000000,0.000092418000000,0.000018949500000,0.000068319000000 +0.000015394000000,0.006881152000000,0.000026456000000,0.000013291333333,0.000039875000000,0.000016381500000,0.000049356000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000073455000000,0.000082541000000,0.000081356000000,0.000164319000000,0.000096368000000,0.000135084000000,0.008565694000000,0.000121652000000,0.000122837000000,0.000056862000000,0.000057256000000,0.000036727500000,0.000067924000000 +0.000016184000000,0.006812412000000,0.000036332000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000025406666667,0.000053307000000,0.000082936000000,0.000082541000000,0.000129948000000,0.000115331000000,0.000185652000000,0.007592263000000,0.000158393000000,0.000122442000000,0.000057257000000,0.000070294000000,0.000019937000000,0.000067528000000 +0.000015789000000,0.006883523000000,0.000062011000000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048170000000,0.000028233500000,0.000040269000000,0.000013554666667,0.000053701000000,0.000080171000000,0.000082146000000,0.000313652000000,0.000097158000000,0.000103874000000,0.007363522000000,0.000121652000000,0.000125207000000,0.000057652000000,0.000053701000000,0.000025665500000,0.000068713000000 +0.000015591500000,0.006936857000000,0.000093418500000,0.000013159666667,0.000040269000000,0.000026060500000,0.000049355000000,0.000047196500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000110590000000,0.000079776000000,0.000151676000000,0.000095973000000,0.000112170000000,0.007242239000000,0.000122837000000,0.000122047000000,0.000056467000000,0.000055676000000,0.000018752000000,0.000141010000000 +0.000015394000000,0.006980313000000,0.000071690000000,0.000013028000000,0.000041850000000,0.000015591000000,0.000048961000000,0.000027048500000,0.000039084000000,0.000013423000000,0.000057652000000,0.000438491000000,0.000078985000000,0.000163923000000,0.000096763000000,0.000096368000000,0.007416460000000,0.000121257000000,0.000122838000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000120466000000 +0.000015394000000,0.007225251000000,0.000046011000000,0.000013028000000,0.000040270000000,0.000016776500000,0.000048566000000,0.000019937000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000084516000000,0.000082936000000,0.000169849000000,0.000096368000000,0.000096368000000,0.006830980000000,0.000122047000000,0.000215282000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000134294000000 +0.000015394000000,0.006784758000000,0.000050752000000,0.000013554666667,0.000040270000000,0.000015789000000,0.000048961000000,0.000054307500000,0.000039084000000,0.000013160000000,0.000053702000000,0.000127973000000,0.000080566000000,0.000132319000000,0.000097158000000,0.000182096000000,0.007112659000000,0.000121652000000,0.000122442000000,0.000056862000000,0.000074245000000,0.000027443000000,0.000067924000000 +0.000016184000000,0.006795820000000,0.000056085000000,0.000013423000000,0.000040269000000,0.000015789000000,0.000048960000000,0.000043048500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000095973000000,0.000112961000000,0.000203825000000,0.000097553000000,0.000133504000000,0.006773301000000,0.000122047000000,0.000121652000000,0.000056862000000,0.000069898000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.006931720000000,0.000175591000000,0.000013160000000,0.000039874000000,0.000016579000000,0.000048566000000,0.000026850500000,0.000039479000000,0.000013159666667,0.000052912000000,0.000119676000000,0.000097158000000,0.000131923000000,0.000097949000000,0.000095973000000,0.006809647000000,0.000159578000000,0.000122837000000,0.000056862000000,0.000103084000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006986239000000,0.000035344500000,0.000013818333333,0.000039874000000,0.000015789000000,0.000050541000000,0.000020135000000,0.000039479000000,0.000013554666667,0.000053307000000,0.000094788000000,0.000086887000000,0.000168269000000,0.000097158000000,0.000097158000000,0.006884708000000,0.000121652000000,0.000122837000000,0.000056862000000,0.000053701000000,0.000019937000000,0.000089257000000 +0.000015789000000,0.006905252000000,0.000053517000000,0.000013159666667,0.000039874000000,0.000015986500000,0.000049355000000,0.000019937000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079776000000,0.000081751000000,0.000133899000000,0.000115726000000,0.000097159000000,0.008567274000000,0.000121652000000,0.000122047000000,0.000056467000000,0.000053306000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.007060115000000,0.000028628500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000068714000000,0.000024678000000,0.000039875000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000081356000000,0.000166293000000,0.000096763000000,0.000096368000000,0.006873252000000,0.000120861000000,0.000122047000000,0.000092812000000,0.000053701000000,0.000019147000000,0.000067134000000 +0.000016184000000,0.006787918000000,0.000034554500000,0.000013818333333,0.000060022000000,0.000015789000000,0.000048566000000,0.000017962000000,0.000039084000000,0.000014213333333,0.000053306000000,0.000079776000000,0.000079776000000,0.000163924000000,0.000097159000000,0.000097554000000,0.007315325000000,0.000120862000000,0.000139035000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000068319000000 +0.000015986500000,0.006842831000000,0.000028036000000,0.000013160000000,0.000041060000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053701000000,0.000083331000000,0.000079381000000,0.000166689000000,0.000097158000000,0.000097158000000,0.007131621000000,0.000121257000000,0.000120861000000,0.000058442000000,0.000053701000000,0.000019344500000,0.000067134000000 +0.000015789000000,0.006983869000000,0.000028035500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000050936000000,0.000018159500000,0.000040664000000,0.000013028333333,0.000052911000000,0.000079775000000,0.000079381000000,0.000163133000000,0.000095182000000,0.000096368000000,0.007203523000000,0.000121652000000,0.000122047000000,0.000059232000000,0.000054096000000,0.000019147000000,0.000067133000000 +0.000015394000000,0.006756709000000,0.000037517000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048171000000,0.000017961500000,0.000039479000000,0.000013555000000,0.000057257000000,0.000079380000000,0.000080170000000,0.000130739000000,0.000095578000000,0.000095973000000,0.007169548000000,0.000142195000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000016184000000,0.007113844000000,0.000076035500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000049751000000,0.000017961500000,0.000039479000000,0.000013423333333,0.000053306000000,0.000079776000000,0.000079380000000,0.000161948000000,0.000096368000000,0.000131923000000,0.006755523000000,0.000122442000000,0.000123232000000,0.000056862000000,0.000054491000000,0.000018949500000,0.000068318000000 +0.000015986500000,0.006790288000000,0.000034949500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048960000000,0.000018357000000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079776000000,0.000079380000000,0.000165899000000,0.000096368000000,0.000097158000000,0.007308610000000,0.000122442000000,0.000122442000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.007183770000000,0.000027641000000,0.000013159666667,0.000039874000000,0.000015789000000,0.000048565000000,0.000017962000000,0.000039084000000,0.000013423000000,0.000054096000000,0.000080566000000,0.000116516000000,0.000132318000000,0.000095973000000,0.000095973000000,0.006849152000000,0.000121652000000,0.000120862000000,0.000060812000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015789000000,0.006755918000000,0.000028035500000,0.000013159666667,0.000039874000000,0.000016184500000,0.000048566000000,0.000017962000000,0.000039084000000,0.000013159666667,0.000053307000000,0.000081751000000,0.000080171000000,0.000212911000000,0.000150887000000,0.000096763000000,0.007108708000000,0.000122442000000,0.000158392000000,0.000057652000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015393500000,0.006760659000000,0.000027640500000,0.000013686333333,0.000040269000000,0.000015789000000,0.000048961000000,0.000027641000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000079381000000,0.000081356000000,0.000133108000000,0.000111775000000,0.000097553000000,0.006728264000000,0.000121652000000,0.000122442000000,0.000057652000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015789000000,0.006894585000000,0.000028036000000,0.000013291666667,0.000040269000000,0.000015591500000,0.000048961000000,0.000026456000000,0.000039084000000,0.000013028000000,0.000054492000000,0.000079776000000,0.000081356000000,0.000168664000000,0.000095973000000,0.000096763000000,0.006697845000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000083726000000 +0.000015394000000,0.006982288000000,0.000051147000000,0.000013950000000,0.000040269000000,0.000016974500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000082541000000,0.000131529000000,0.000096368000000,0.000096368000000,0.006864165000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006827030000000,0.000089665500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039480000000,0.000018822333333,0.000053702000000,0.000081750000000,0.000081750000000,0.000165504000000,0.000097158000000,0.000097158000000,0.007482436000000,0.000171034000000,0.000121652000000,0.000056862000000,0.000052911000000,0.000018752000000,0.000066343000000 +0.000015986500000,0.006979128000000,0.000074060500000,0.000013028000000,0.000039874000000,0.000016184000000,0.000048565000000,0.000018159000000,0.000062788000000,0.000013423000000,0.000053306000000,0.000084516000000,0.000081355000000,0.000171825000000,0.000098343000000,0.000097159000000,0.006857844000000,0.000121257000000,0.000121652000000,0.000056862000000,0.000073059000000,0.000018949500000,0.000067133000000 +0.000033764000000,0.007047868000000,0.000061813500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000072269000000,0.000013423000000,0.000053701000000,0.000078986000000,0.000081751000000,0.000167479000000,0.000097553000000,0.000134689000000,0.006769351000000,0.000122837000000,0.000122442000000,0.000056467000000,0.000070294000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.006876412000000,0.000079591000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053702000000,0.000083331000000,0.000118887000000,0.000182096000000,0.000097158000000,0.000097158000000,0.006774881000000,0.000124022000000,0.000158392000000,0.000056467000000,0.000054097000000,0.000018949000000,0.000067924000000 +0.000015394000000,0.006942387000000,0.000079788500000,0.000016715333333,0.000040665000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000040270000000,0.000013028000000,0.000054096000000,0.000082146000000,0.000130344000000,0.000131924000000,0.000096368000000,0.000096368000000,0.006921844000000,0.000122047000000,0.000121652000000,0.000099924000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006761054000000,0.000074653500000,0.000013028000000,0.000039875000000,0.000016184000000,0.000050146000000,0.000018159500000,0.000039480000000,0.000013159666667,0.000053306000000,0.000082936000000,0.000083331000000,0.000163134000000,0.000167084000000,0.000097159000000,0.007335869000000,0.000122047000000,0.000122838000000,0.000056467000000,0.000053702000000,0.000028233000000,0.000067924000000 +0.000015393500000,0.006836116000000,0.000071690500000,0.000013159666667,0.000041060000000,0.000015986500000,0.000085701000000,0.000027245500000,0.000040270000000,0.000013686333333,0.000054491000000,0.000082146000000,0.000081750000000,0.000133504000000,0.000095973000000,0.000096763000000,0.007041152000000,0.000121257000000,0.000122442000000,0.000056467000000,0.000053306000000,0.000049764500000,0.000067134000000 +0.000015591500000,0.006934486000000,0.000045023500000,0.000013160000000,0.000040270000000,0.000042060500000,0.000048960000000,0.000017961500000,0.000040665000000,0.000013423000000,0.000052911000000,0.000116516000000,0.000079380000000,0.000175775000000,0.000097158000000,0.000097158000000,0.007288066000000,0.000192368000000,0.000121652000000,0.000057257000000,0.000054492000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.007139917000000,0.000068529500000,0.000013818333333,0.000039874000000,0.000015789000000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000122442000000,0.000079381000000,0.000085306000000,0.000201849000000,0.000096368000000,0.000097158000000,0.006884709000000,0.000154442000000,0.000120862000000,0.000056862000000,0.000054097000000,0.000018751500000,0.000067923000000 +0.000015591500000,0.007018239000000,0.000028036000000,0.000025406666667,0.000040664000000,0.000016184000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000068714000000,0.000080171000000,0.000078986000000,0.000133504000000,0.000097553000000,0.000097158000000,0.007275425000000,0.000122442000000,0.000124023000000,0.000056467000000,0.000053702000000,0.000018949500000,0.000086886000000 +0.000015394000000,0.006839671000000,0.000028036000000,0.000013949666667,0.000040664000000,0.000016381500000,0.000050936000000,0.000018159500000,0.000039084000000,0.000013818000000,0.000053701000000,0.000081356000000,0.000082541000000,0.000165108000000,0.000095973000000,0.000097553000000,0.006977152000000,0.000123232000000,0.000193158000000,0.000057257000000,0.000055282000000,0.000018949500000,0.000066738000000 +0.000015394000000,0.006818338000000,0.000028036000000,0.000013949666667,0.000078985000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000054887000000,0.000083726000000,0.000082936000000,0.000133109000000,0.000139430000000,0.000133109000000,0.006904857000000,0.000122443000000,0.000120861000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015591000000,0.006878388000000,0.000028036000000,0.000013028000000,0.000076615000000,0.000016381500000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000054096000000,0.000079776000000,0.000079380000000,0.000165109000000,0.000111776000000,0.000096368000000,0.006738535000000,0.000121652000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000015394000000,0.006966486000000,0.000028431000000,0.000013160000000,0.000078591000000,0.000016579000000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053701000000,0.000081356000000,0.000081750000000,0.000166689000000,0.000133108000000,0.000097949000000,0.007036412000000,0.000121257000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000065949000000 +0.000015789000000,0.007060906000000,0.000028036000000,0.000014213333333,0.000042640000000,0.000016184000000,0.000050540000000,0.000018159500000,0.000039479000000,0.000013028333333,0.000052911000000,0.000079381000000,0.000083331000000,0.000151676000000,0.000097158000000,0.000096368000000,0.007024560000000,0.000249257000000,0.000122837000000,0.000058047000000,0.000054096000000,0.000018751500000,0.000066738000000 +0.000015393500000,0.007064066000000,0.000027838500000,0.000013159666667,0.000042640000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039874000000,0.000013818333333,0.000053307000000,0.000082146000000,0.000156417000000,0.000163134000000,0.000096368000000,0.000096763000000,0.006832165000000,0.000154837000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.006805301000000,0.000028431000000,0.000013423000000,0.000053701000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039085000000,0.000013028000000,0.000053306000000,0.000080961000000,0.000132714000000,0.000132714000000,0.000096368000000,0.000097553000000,0.006696659000000,0.000121257000000,0.000121652000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067923000000 +0.000015591000000,0.006807671000000,0.000027640500000,0.000013423000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000082541000000,0.000114145000000,0.000165504000000,0.000097158000000,0.000095973000000,0.006933300000000,0.000121652000000,0.000158788000000,0.000056466000000,0.000090442000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.007111869000000,0.000028035500000,0.000013028000000,0.000039874000000,0.000015591500000,0.000048565000000,0.000018356500000,0.000039084000000,0.000013554666667,0.000056072000000,0.000083726000000,0.000082935000000,0.000132714000000,0.000098739000000,0.000096763000000,0.006845598000000,0.000121652000000,0.000122838000000,0.000061998000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006840066000000,0.000028233500000,0.000013291333333,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000052912000000,0.000079381000000,0.000082146000000,0.000165108000000,0.000096763000000,0.000097553000000,0.007099227000000,0.000121652000000,0.000121257000000,0.000076615000000,0.000054096000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006737746000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000025406333333,0.000053306000000,0.000082146000000,0.000081356000000,0.000246096000000,0.000096763000000,0.000188417000000,0.007045103000000,0.000171824000000,0.000122047000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000066739000000 +0.000015394000000,0.006930536000000,0.000028036000000,0.000013159666667,0.000039875000000,0.000015591500000,0.000049355000000,0.000034752000000,0.000039480000000,0.000013159666667,0.000053702000000,0.000088466000000,0.000080171000000,0.000153257000000,0.000096763000000,0.000096368000000,0.006855079000000,0.000121652000000,0.000120862000000,0.000057257000000,0.000054491000000,0.000018752000000,0.000067133000000 +0.000015393500000,0.007109893000000,0.000027838500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048961000000,0.000019542000000,0.000040270000000,0.000013554666667,0.000053306000000,0.000083726000000,0.000085307000000,0.000167084000000,0.000140220000000,0.000097553000000,0.006737350000000,0.000123232000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000019937000000,0.000148516000000 +0.000015986500000,0.006776067000000,0.000053122500000,0.000013028000000,0.000040270000000,0.000016579000000,0.000068319000000,0.000024875500000,0.000039479000000,0.000013028000000,0.000089257000000,0.000082935000000,0.000116121000000,0.000133108000000,0.000096368000000,0.000097158000000,0.007023770000000,0.000121652000000,0.000121257000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000081356000000 +0.000015591000000,0.006852314000000,0.000026258500000,0.000013159666667,0.000040270000000,0.000015789000000,0.000074245000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000053306000000,0.000082541000000,0.000081355000000,0.000169454000000,0.000095973000000,0.000096368000000,0.006815968000000,0.000122442000000,0.000158788000000,0.000057652000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007268313000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000051331000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000054887000000,0.000079381000000,0.000079380000000,0.000133109000000,0.000095973000000,0.000096368000000,0.007101202000000,0.000121652000000,0.000122837000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007186930000000,0.000027048500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000061603000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000053701000000,0.000080566000000,0.000079380000000,0.000203430000000,0.000095973000000,0.000231084000000,0.007001251000000,0.000122837000000,0.000122047000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000068714000000 +0.000025468000000,0.007258831000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049355000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000054492000000,0.000082936000000,0.000080960000000,0.000184071000000,0.000096763000000,0.000112566000000,0.007186140000000,0.000157208000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000036924500000,0.000067528000000 +0.000029023500000,0.007133597000000,0.000026258000000,0.000013291333333,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000054097000000,0.000080170000000,0.000081750000000,0.000131529000000,0.000095578000000,0.000095183000000,0.006843622000000,0.000122442000000,0.000122838000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007442930000000,0.000026455500000,0.000013423000000,0.000058837000000,0.000016579500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000053702000000,0.000082146000000,0.000082146000000,0.000165109000000,0.000097553000000,0.000097949000000,0.006798585000000,0.000122442000000,0.000121652000000,0.000057652000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.007335078000000,0.000026456000000,0.000014081333333,0.000092417000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000053307000000,0.000082541000000,0.000079776000000,0.000131923000000,0.000096368000000,0.000095578000000,0.006840857000000,0.000123233000000,0.000121652000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007059720000000,0.000027048500000,0.000013686333333,0.000040269000000,0.000025665500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053307000000,0.000082541000000,0.000081751000000,0.000167084000000,0.000184072000000,0.000097158000000,0.006682042000000,0.000123232000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006941597000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000029023500000,0.000048565000000,0.000025665500000,0.000039480000000,0.000013555000000,0.000054096000000,0.000085702000000,0.000080171000000,0.000200664000000,0.000395429000000,0.000097553000000,0.007112658000000,0.000122442000000,0.000139035000000,0.000056862000000,0.000054491000000,0.000018949500000,0.000066738000000 +0.000015393500000,0.006746832000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000017961500000,0.000040270000000,0.000013291333333,0.000053702000000,0.000115331000000,0.000088467000000,0.000131528000000,0.000119676000000,0.000097553000000,0.006858239000000,0.000122442000000,0.000121651000000,0.000056862000000,0.000073849000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.006958190000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000058837000000,0.000087677000000,0.000099529000000,0.000171034000000,0.000110195000000,0.000095973000000,0.007150980000000,0.000167874000000,0.000122442000000,0.000113355000000,0.000069899000000,0.000018752000000,0.000104269000000 +0.000015591500000,0.007211029000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048565000000,0.000027641000000,0.000039084000000,0.000013028000000,0.000052911000000,0.000081356000000,0.000079381000000,0.000139825000000,0.000096368000000,0.000097948000000,0.006669795000000,0.000122837000000,0.000122442000000,0.000088466000000,0.000053701000000,0.000018949500000,0.000068714000000 +0.000015394000000,0.006819918000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000037517500000,0.000039479000000,0.000013291333333,0.000054491000000,0.000081356000000,0.000080171000000,0.000177355000000,0.000133109000000,0.000131924000000,0.007089745000000,0.000121652000000,0.000121652000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000087282000000 +0.000015591500000,0.006708511000000,0.000045023500000,0.000013159666667,0.000039874000000,0.000015591500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000089652000000,0.000079381000000,0.000081751000000,0.000137059000000,0.000096368000000,0.000095972000000,0.006822289000000,0.000123627000000,0.000121652000000,0.000056861000000,0.000053306000000,0.000018751500000,0.000084911000000 +0.000015393500000,0.006887078000000,0.000026060500000,0.000013291333333,0.000040269000000,0.000015591500000,0.000048961000000,0.000018159000000,0.000039480000000,0.000013423333333,0.000055282000000,0.000083331000000,0.000082146000000,0.000256763000000,0.000096763000000,0.000096763000000,0.006973993000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000080565000000 +0.000015591000000,0.006806486000000,0.000026456000000,0.000013686666667,0.000039874000000,0.000015591500000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013028333333,0.000053701000000,0.000082145000000,0.000082936000000,0.000176960000000,0.000096368000000,0.000097159000000,0.006919079000000,0.000121652000000,0.000309701000000,0.000056861000000,0.000053306000000,0.000019542500000,0.000068319000000 +0.000015986500000,0.006980708000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000084516000000,0.000018554500000,0.000039084000000,0.000013159666667,0.000053702000000,0.000079775000000,0.000083726000000,0.000133899000000,0.000097553000000,0.000097158000000,0.006949893000000,0.000120861000000,0.000245306000000,0.000056862000000,0.000054491000000,0.000018752000000,0.000067528000000 +0.000015591000000,0.006776461000000,0.000026258000000,0.000013423000000,0.000040270000000,0.000016184000000,0.000048170000000,0.000018159500000,0.000039480000000,0.000013159666667,0.000052911000000,0.000081355000000,0.000082540000000,0.000164713000000,0.000095973000000,0.000095578000000,0.006990585000000,0.000123232000000,0.000139825000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015789000000,0.007229992000000,0.000029616000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000025275000000,0.000053306000000,0.000079775000000,0.000079775000000,0.000135084000000,0.000097159000000,0.000097553000000,0.006795029000000,0.000193158000000,0.000122442000000,0.000057652000000,0.000054096000000,0.000019344500000,0.000067923000000 +0.000015394000000,0.006669004000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000053702000000,0.000082541000000,0.000081355000000,0.000181306000000,0.000095973000000,0.000097158000000,0.006869301000000,0.000121652000000,0.000121652000000,0.000057256000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006797400000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015986500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000083331000000,0.000116121000000,0.000171034000000,0.000096368000000,0.000097158000000,0.006875227000000,0.000121256000000,0.000158393000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000016184000000,0.006951869000000,0.000026456000000,0.000013028000000,0.000039874000000,0.000015789000000,0.000049355000000,0.000018159500000,0.000039874000000,0.000013159666667,0.000054097000000,0.000079380000000,0.000084517000000,0.000161948000000,0.000167479000000,0.000133109000000,0.006878387000000,0.000120862000000,0.000122442000000,0.000056861000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006916708000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000055677000000,0.000081356000000,0.000079776000000,0.000165109000000,0.000109405000000,0.000097158000000,0.006902881000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000180911000000 +0.000015591500000,0.007275424000000,0.000026060500000,0.000013159666667,0.000041059000000,0.000015591000000,0.000048566000000,0.000018554500000,0.000039480000000,0.000013555000000,0.000053701000000,0.000082146000000,0.000082146000000,0.000133503000000,0.000097158000000,0.000096368000000,0.007296362000000,0.000122837000000,0.000122442000000,0.000096763000000,0.000053701000000,0.000018949500000,0.000206590000000 +0.000015591500000,0.007878288000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015591500000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000053306000000,0.000079775000000,0.000081356000000,0.000170640000000,0.000096763000000,0.000095578000000,0.006978337000000,0.000122047000000,0.000122442000000,0.000089652000000,0.000054886000000,0.000018751500000,0.000156812000000 +0.000015591500000,0.007435819000000,0.000026456000000,0.000013686666667,0.000040269000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053701000000,0.000152071000000,0.000081751000000,0.000130739000000,0.000095578000000,0.000097554000000,0.006893400000000,0.000176565000000,0.000122047000000,0.000072664000000,0.000053701000000,0.000028036000000,0.000151282000000 +0.000015986500000,0.007070782000000,0.000026455500000,0.000013159666667,0.000095183000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000103479000000,0.000081355000000,0.000206196000000,0.000097949000000,0.000096763000000,0.007112263000000,0.000122047000000,0.000121257000000,0.000056466000000,0.000089652000000,0.000027245500000,0.000071874000000 +0.000015591500000,0.007264757000000,0.000026456000000,0.000013159666667,0.000055677000000,0.000016382000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000058837000000,0.000112960000000,0.000081751000000,0.000170245000000,0.000095578000000,0.000095577000000,0.006847178000000,0.000122442000000,0.000194343000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000016184000000,0.007199968000000,0.000037912500000,0.000013159666667,0.000052911000000,0.000015591500000,0.000048961000000,0.000018357000000,0.000041060000000,0.000013423333333,0.000053306000000,0.000081751000000,0.000079775000000,0.000133108000000,0.000095577000000,0.000095973000000,0.007220115000000,0.000121652000000,0.000121257000000,0.000058047000000,0.000053701000000,0.000018949500000,0.000084121000000 +0.000015394000000,0.007312165000000,0.000064381500000,0.000013818333333,0.000040269000000,0.000016184000000,0.000049750000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000089651000000,0.000079776000000,0.000080170000000,0.000172615000000,0.000095578000000,0.000096763000000,0.007231968000000,0.000122837000000,0.000121652000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067924000000 +0.000025468000000,0.007264362000000,0.000026258000000,0.000025275000000,0.000040269000000,0.000016382000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000053702000000,0.000081751000000,0.000080565000000,0.000136269000000,0.000182887000000,0.000139430000000,0.007131621000000,0.000123232000000,0.000122047000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.007524708000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079381000000,0.000163923000000,0.000177356000000,0.000096763000000,0.000097553000000,0.007097252000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.007160462000000,0.000026456000000,0.000013159666667,0.000040270000000,0.000051344500000,0.000048961000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000081356000000,0.000082146000000,0.000180121000000,0.000098343000000,0.000096763000000,0.006680067000000,0.000157603000000,0.000121257000000,0.000056466000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.007048263000000,0.000027641000000,0.000013159666667,0.000039875000000,0.000015789000000,0.000048170000000,0.000018159000000,0.000039874000000,0.000013291333333,0.000056466000000,0.000081356000000,0.000080171000000,0.000173800000000,0.000097554000000,0.000095182000000,0.007059325000000,0.000121257000000,0.000159183000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000015591000000,0.006769746000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000124022000000,0.000018159500000,0.000039085000000,0.000013028000000,0.000055281000000,0.000082145000000,0.000080566000000,0.000166689000000,0.000097158000000,0.000097553000000,0.007028906000000,0.000121256000000,0.000137455000000,0.000056466000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006808462000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000089257000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053702000000,0.000080565000000,0.000081355000000,0.000133109000000,0.000095973000000,0.000095973000000,0.007114634000000,0.000121257000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000068319000000 +0.000015986500000,0.006952264000000,0.000034949500000,0.000014213333333,0.000041850000000,0.000016381500000,0.000099529000000,0.000036332500000,0.000039084000000,0.000013291666667,0.000055281000000,0.000084121000000,0.000083726000000,0.000166689000000,0.000096763000000,0.000096763000000,0.007453597000000,0.000122442000000,0.000177751000000,0.000056862000000,0.000054096000000,0.000019147000000,0.000066344000000 +0.000015986500000,0.007088560000000,0.000026653500000,0.000013159666667,0.000039875000000,0.000017171500000,0.000136269000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000054097000000,0.000079775000000,0.000080961000000,0.000134294000000,0.000096368000000,0.000096763000000,0.006971227000000,0.000121257000000,0.000121652000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000065948000000 +0.000015394000000,0.006642141000000,0.000026850500000,0.000013686333333,0.000041060000000,0.000016381500000,0.000072665000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053701000000,0.000081751000000,0.000080961000000,0.000250442000000,0.000134689000000,0.000095578000000,0.006847572000000,0.000122047000000,0.000124022000000,0.000077010000000,0.000056072000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006788314000000,0.000030603500000,0.000013159666667,0.000040270000000,0.000015591500000,0.000053307000000,0.000018554500000,0.000041850000000,0.000027118666667,0.000054492000000,0.000079775000000,0.000079775000000,0.000131134000000,0.000097554000000,0.000165899000000,0.007040362000000,0.000157997000000,0.000122046000000,0.000070294000000,0.000053702000000,0.000018949500000,0.000067924000000 +0.000015789000000,0.006897350000000,0.000026456000000,0.000013028000000,0.000040270000000,0.000016579500000,0.000064368000000,0.000018554500000,0.000039479000000,0.000014213000000,0.000056467000000,0.000079775000000,0.000116517000000,0.000165108000000,0.000097158000000,0.000096763000000,0.006914338000000,0.000124417000000,0.000121257000000,0.000057257000000,0.000053702000000,0.000019344500000,0.000102689000000 +0.000015591500000,0.006793845000000,0.000026258000000,0.000013818000000,0.000040270000000,0.000016184000000,0.000048566000000,0.000034554500000,0.000039085000000,0.000013949666667,0.000052911000000,0.000082541000000,0.000081751000000,0.000169849000000,0.000099528000000,0.000095973000000,0.006652018000000,0.000121652000000,0.000174195000000,0.000057257000000,0.000073060000000,0.000019542000000,0.000067528000000 +0.000015393500000,0.006930140000000,0.000044826000000,0.000013028000000,0.000041850000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000017900333333,0.000058837000000,0.000079381000000,0.000082146000000,0.000131133000000,0.000095973000000,0.000096368000000,0.007005993000000,0.000122837000000,0.000122442000000,0.000056862000000,0.000069899000000,0.000019146500000,0.000067133000000 +0.000016184000000,0.007005202000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000079380000000,0.000013423000000,0.000058837000000,0.000081751000000,0.000081751000000,0.000182096000000,0.000097158000000,0.000097158000000,0.007262782000000,0.000128368000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007120165000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000026258000000,0.000049355000000,0.000018159000000,0.000111775000000,0.000013554666667,0.000129948000000,0.000078985000000,0.000082936000000,0.000169850000000,0.000095973000000,0.000097158000000,0.006760659000000,0.000122442000000,0.000121257000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006799771000000,0.000026060500000,0.000013686333333,0.000040270000000,0.000023295000000,0.000048566000000,0.000018159500000,0.000110195000000,0.000013423000000,0.000128763000000,0.000083726000000,0.000080961000000,0.000170640000000,0.000096368000000,0.000096368000000,0.006804115000000,0.000122442000000,0.000122442000000,0.000057257000000,0.000054096000000,0.000019147000000,0.000067134000000 +0.000016184000000,0.006799770000000,0.000026258000000,0.000013159666667,0.000059628000000,0.000032974000000,0.000049751000000,0.000018159500000,0.000074245000000,0.000013818000000,0.000156418000000,0.000081356000000,0.000084516000000,0.000166689000000,0.000097554000000,0.000097158000000,0.006983474000000,0.000157998000000,0.000122837000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000016184000000,0.006891029000000,0.000026455500000,0.000013028333333,0.000041454000000,0.000024085000000,0.000065158000000,0.000018159500000,0.000041455000000,0.000013028000000,0.000071874000000,0.000079775000000,0.000082145000000,0.000133109000000,0.000181306000000,0.000096763000000,0.007202733000000,0.000121651000000,0.000122442000000,0.000056467000000,0.000053701000000,0.000027838500000,0.000065948000000 +0.000015788500000,0.006807671000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000017171500000,0.000048961000000,0.000018159500000,0.000041850000000,0.000013423000000,0.000072665000000,0.000082936000000,0.000079380000000,0.000167084000000,0.000096368000000,0.000142985000000,0.007032461000000,0.000122838000000,0.000193948000000,0.000056862000000,0.000054097000000,0.000018752000000,0.000068713000000 +0.000016184000000,0.006811227000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016776500000,0.000048960000000,0.000018554000000,0.000041454000000,0.000013160000000,0.000067133000000,0.000079381000000,0.000085306000000,0.000131528000000,0.000096368000000,0.000096368000000,0.006926980000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000066738000000 +0.000015986500000,0.008896361000000,0.000026455500000,0.000013950000000,0.000039874000000,0.000017171500000,0.000048170000000,0.000018159500000,0.000052121000000,0.000013423333333,0.000053702000000,0.000081751000000,0.000103084000000,0.000204220000000,0.000096763000000,0.000096368000000,0.007187720000000,0.000121256000000,0.000122442000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067134000000 +0.000016184000000,0.007045103000000,0.000026455500000,0.000018822333333,0.000040270000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000085701000000,0.000124417000000,0.000137060000000,0.000097159000000,0.000097158000000,0.007291227000000,0.000120862000000,0.000122837000000,0.000056862000000,0.000052911000000,0.000018949500000,0.000067134000000 +0.000015986500000,0.006991375000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000016579000000,0.000048961000000,0.000017962000000,0.000039084000000,0.000013423333333,0.000053307000000,0.000081355000000,0.000082541000000,0.000264665000000,0.000096368000000,0.000096368000000,0.007160461000000,0.000121257000000,0.000122442000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000066739000000 +0.000015591500000,0.006729449000000,0.000026455500000,0.000019481000000,0.000039875000000,0.000015788500000,0.000050145000000,0.000018357000000,0.000039874000000,0.000013028000000,0.000053306000000,0.000084911000000,0.000083726000000,0.000172220000000,0.000095973000000,0.000097553000000,0.006867325000000,0.000159577000000,0.000123232000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000103479000000 +0.000015591500000,0.007320856000000,0.000026258000000,0.000018427333333,0.000039875000000,0.000024480500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000052911000000,0.000087676000000,0.000082936000000,0.000135874000000,0.000097553000000,0.000096368000000,0.006899325000000,0.000136664000000,0.000122047000000,0.000093207000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000025863000000,0.006753152000000,0.000026851000000,0.000013950000000,0.000039874000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000090047000000,0.000081355000000,0.000080566000000,0.000208170000000,0.000132713000000,0.000096368000000,0.006954239000000,0.000122838000000,0.000190393000000,0.000056862000000,0.000054492000000,0.000018949500000,0.000066344000000 +0.000015986500000,0.006787523000000,0.000026455500000,0.000018032333333,0.000039479000000,0.000016579000000,0.000049356000000,0.000028233500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000080170000000,0.000088072000000,0.000131529000000,0.000096763000000,0.000096763000000,0.007374189000000,0.000121257000000,0.000122442000000,0.000057257000000,0.000053702000000,0.000019344500000,0.000067529000000 +0.000015394000000,0.006933696000000,0.000026258500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000026653500000,0.000039085000000,0.000013423000000,0.000052911000000,0.000080961000000,0.000084121000000,0.000167479000000,0.000095973000000,0.000125602000000,0.006778042000000,0.000122443000000,0.000121652000000,0.000057257000000,0.000054492000000,0.000018949000000,0.000066738000000 +0.000015986500000,0.007215375000000,0.000044233500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000040269000000,0.000013159666667,0.000054097000000,0.000080961000000,0.000081751000000,0.000132714000000,0.000097158000000,0.000096368000000,0.006781202000000,0.000122047000000,0.000122047000000,0.000057652000000,0.000091233000000,0.000018949500000,0.000068318000000 +0.000015591500000,0.008097547000000,0.000026455500000,0.000013423000000,0.000039479000000,0.000016184000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000053306000000,0.000082936000000,0.000079776000000,0.000168270000000,0.000096368000000,0.000095577000000,0.007038387000000,0.000123233000000,0.000122442000000,0.000058047000000,0.000053702000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.007071572000000,0.000026258000000,0.000013160000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000025143333333,0.000052911000000,0.000080960000000,0.000118097000000,0.000166689000000,0.000096763000000,0.000095578000000,0.007037992000000,0.000141010000000,0.000121257000000,0.000057257000000,0.000053307000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007216955000000,0.000026851000000,0.000013818333333,0.000039874000000,0.000015591500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000054097000000,0.000083331000000,0.000084911000000,0.000196318000000,0.000095973000000,0.000096763000000,0.007160461000000,0.000165898000000,0.000140615000000,0.000057652000000,0.000054097000000,0.000018752000000,0.000066739000000 +0.000016184000000,0.006905646000000,0.000026455500000,0.000016978666667,0.000039875000000,0.000015986500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000024748333333,0.000055282000000,0.000079776000000,0.000081356000000,0.000168664000000,0.000096368000000,0.000095578000000,0.006965301000000,0.000123232000000,0.000120467000000,0.000056467000000,0.000053702000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.007054585000000,0.000026258500000,0.000013423333333,0.000039875000000,0.000016579000000,0.000048170000000,0.000018357000000,0.000039479000000,0.000013818000000,0.000054096000000,0.000080171000000,0.000081356000000,0.000130739000000,0.000095973000000,0.000097553000000,0.007243424000000,0.000122046000000,0.000123232000000,0.000059232000000,0.000054492000000,0.000018949500000,0.000067923000000 +0.000015591000000,0.006857449000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000047775000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053702000000,0.000084121000000,0.000079380000000,0.000173010000000,0.000151281000000,0.000097553000000,0.006826239000000,0.000122047000000,0.000121652000000,0.000056861000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.007015079000000,0.000029814000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000084516000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000080170000000,0.000165899000000,0.000095183000000,0.000095973000000,0.006700215000000,0.000121257000000,0.000122837000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000086886000000 +0.000015789000000,0.006771326000000,0.000026258000000,0.000013555000000,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039084000000,0.000013160000000,0.000054887000000,0.000078985000000,0.000080961000000,0.000133109000000,0.000096368000000,0.000113751000000,0.007005202000000,0.000121652000000,0.000122047000000,0.000057652000000,0.000053701000000,0.000019344500000,0.000066738000000 +0.000015591500000,0.006958585000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000079380000000,0.000079380000000,0.000206590000000,0.000096368000000,0.000096368000000,0.006776856000000,0.000158787000000,0.000121257000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000068318000000 +0.000016184000000,0.006957795000000,0.000026850500000,0.000014740000000,0.000109010000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000052912000000,0.000081750000000,0.000084911000000,0.000139429000000,0.000097948000000,0.000096368000000,0.006734190000000,0.000121257000000,0.000176566000000,0.000057257000000,0.000053701000000,0.000028628000000,0.000067528000000 +0.000015394000000,0.006923425000000,0.000026455500000,0.000013949666667,0.000054886000000,0.000015789000000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000056072000000,0.000079380000000,0.000081750000000,0.000256368000000,0.000097158000000,0.000116121000000,0.008619818000000,0.000123232000000,0.000121652000000,0.000076220000000,0.000053701000000,0.000037517500000,0.000067528000000 +0.000015394000000,0.006880363000000,0.000026456000000,0.000013159666667,0.000040664000000,0.000015591500000,0.000049355000000,0.000018752000000,0.000039479000000,0.000013554666667,0.000089257000000,0.000080170000000,0.000132318000000,0.000134689000000,0.000099133000000,0.000128763000000,0.006763820000000,0.000122837000000,0.000121652000000,0.000108615000000,0.000053701000000,0.000026060500000,0.000068713000000 +0.000015591500000,0.007211029000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000015789000000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000056071000000,0.000079775000000,0.000080960000000,0.000169060000000,0.000097158000000,0.000095973000000,0.006911572000000,0.000122047000000,0.000120862000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.006798190000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000056071000000,0.000081355000000,0.000080565000000,0.000260714000000,0.000095578000000,0.000096764000000,0.007119374000000,0.000122047000000,0.000124022000000,0.000057257000000,0.000053701000000,0.000018751500000,0.000067528000000 +0.000015591000000,0.006911178000000,0.000047196500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000051726000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000056072000000,0.000081751000000,0.000079380000000,0.000324714000000,0.000131528000000,0.000098343000000,0.006687572000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018554500000,0.000067134000000 +0.000015393500000,0.006768560000000,0.000034554000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000055282000000,0.000079380000000,0.000081750000000,0.000278096000000,0.000109405000000,0.000112960000000,0.007085400000000,0.000141010000000,0.000122047000000,0.000056862000000,0.000073849000000,0.000019344500000,0.000067529000000 +0.000015394000000,0.006769746000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000016381500000,0.000050146000000,0.000018159000000,0.000039874000000,0.000013555000000,0.000057257000000,0.000088466000000,0.000080170000000,0.000272170000000,0.000097158000000,0.000097158000000,0.006804116000000,0.000169850000000,0.000170639000000,0.000056467000000,0.000053306000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.007275029000000,0.000026456000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000049356000000,0.000018554500000,0.000039084000000,0.000014345000000,0.000054491000000,0.000082146000000,0.000082541000000,0.000309306000000,0.000098738000000,0.000095973000000,0.007228806000000,0.000122442000000,0.000123627000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000066343000000 +0.000015591500000,0.007228806000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039480000000,0.000013159666667,0.000057256000000,0.000081751000000,0.000083726000000,0.000293899000000,0.000096368000000,0.000097553000000,0.006718782000000,0.000167084000000,0.000122443000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.007201942000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048171000000,0.000018159500000,0.000040269000000,0.000013423333333,0.000053306000000,0.000079775000000,0.000079775000000,0.000319182000000,0.000095973000000,0.000097158000000,0.007207473000000,0.000135084000000,0.000121257000000,0.000057652000000,0.000053306000000,0.000018752000000,0.000102294000000 +0.000015394000000,0.006925795000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000052911000000,0.000080961000000,0.000080566000000,0.000223578000000,0.000097158000000,0.000097158000000,0.006722733000000,0.000122442000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000081750000000 +0.000015789000000,0.007901202000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000050554000000,0.000049356000000,0.000034949500000,0.000039084000000,0.000019480666667,0.000052912000000,0.000082146000000,0.000099134000000,0.000139429000000,0.000099924000000,0.000095577000000,0.006961746000000,0.000122047000000,0.000122837000000,0.000057257000000,0.000054491000000,0.000019147000000,0.000067133000000 +0.000015986500000,0.006852708000000,0.000026060500000,0.000013950000000,0.000039874000000,0.000023690000000,0.000050541000000,0.000019147000000,0.000039874000000,0.000018295666667,0.000054491000000,0.000079380000000,0.000095578000000,0.000182492000000,0.000098739000000,0.000096368000000,0.006946338000000,0.000157603000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000025665500000,0.007159671000000,0.000026851000000,0.000013291666667,0.000040269000000,0.000016381500000,0.000067133000000,0.000018159000000,0.000039084000000,0.000014344666667,0.000052912000000,0.000083331000000,0.000079380000000,0.000251233000000,0.000168665000000,0.000095973000000,0.007176658000000,0.000122837000000,0.000141405000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000035739500000,0.006978338000000,0.000026060500000,0.000013686333333,0.000039874000000,0.000016579000000,0.000100714000000,0.000018159500000,0.000041059000000,0.000017900333333,0.000054097000000,0.000082541000000,0.000084516000000,0.000326689000000,0.000096368000000,0.000180911000000,0.007171128000000,0.000122047000000,0.000165898000000,0.000058443000000,0.000053306000000,0.000019739500000,0.000067924000000 +0.000023690000000,0.007278585000000,0.000026456000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013950000000,0.000055282000000,0.000082541000000,0.000080171000000,0.000397010000000,0.000095973000000,0.000099924000000,0.006813992000000,0.000121257000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000066739000000 +0.000015591000000,0.006736955000000,0.000035542000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000089257000000,0.000079775000000,0.000080171000000,0.000144961000000,0.000096368000000,0.000097158000000,0.006741697000000,0.000121257000000,0.000122047000000,0.000092812000000,0.000053701000000,0.000018751500000,0.000067924000000 +0.000015591500000,0.007030881000000,0.000034949500000,0.000013686666667,0.000040269000000,0.000016184000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000014213333333,0.000054492000000,0.000080565000000,0.000079381000000,0.000254392000000,0.000095183000000,0.000097553000000,0.006929745000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006799770000000,0.000063591000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013291666667,0.000053306000000,0.000082935000000,0.000080566000000,0.000131528000000,0.000095973000000,0.000098343000000,0.006874041000000,0.000121652000000,0.000122047000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006710486000000,0.000036134500000,0.000013159666667,0.000085306000000,0.000016381500000,0.000048566000000,0.000018356500000,0.000039084000000,0.000013291333333,0.000053307000000,0.000079380000000,0.000081751000000,0.000167479000000,0.000097553000000,0.000095973000000,0.007149795000000,0.000157997000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000019739500000,0.000066738000000 +0.000015986500000,0.007077499000000,0.000032974500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000081751000000,0.000079381000000,0.000130738000000,0.000097158000000,0.000096368000000,0.007147424000000,0.000122047000000,0.000141405000000,0.000056072000000,0.000053307000000,0.000018752000000,0.000067528000000 +0.000015591000000,0.007019424000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049355000000,0.000018159500000,0.000040270000000,0.000013554666667,0.000053307000000,0.000079380000000,0.000081356000000,0.000164319000000,0.000133504000000,0.000097158000000,0.006758684000000,0.000122047000000,0.000121651000000,0.000056862000000,0.000053702000000,0.000037122500000,0.000104664000000 +0.000015986500000,0.006994931000000,0.000026258000000,0.000013818000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000057652000000,0.000013423000000,0.000052911000000,0.000082146000000,0.000198294000000,0.000327874000000,0.000096368000000,0.000133109000000,0.006800955000000,0.000121257000000,0.000121652000000,0.000056467000000,0.000089652000000,0.000018752000000,0.000067134000000 +0.000015393500000,0.006825449000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048171000000,0.000018159000000,0.000055282000000,0.000013291333333,0.000056862000000,0.000079776000000,0.000081356000000,0.000133504000000,0.000097158000000,0.000097949000000,0.006905251000000,0.000122442000000,0.000121652000000,0.000056861000000,0.000054491000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.006750782000000,0.000035739500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000059232000000,0.000018159000000,0.000071084000000,0.000013159666667,0.000054096000000,0.000079776000000,0.000079381000000,0.000169849000000,0.000097159000000,0.000096368000000,0.006737350000000,0.000121652000000,0.000123232000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006955820000000,0.000053912500000,0.000013159666667,0.000040270000000,0.000015591500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000081356000000,0.000079381000000,0.000132318000000,0.000096368000000,0.000095973000000,0.006734190000000,0.000121257000000,0.000122442000000,0.000057256000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015789000000,0.007166387000000,0.000035147000000,0.000013159666667,0.000040270000000,0.000015591000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000053701000000,0.000081355000000,0.000080961000000,0.000166294000000,0.000095973000000,0.000096763000000,0.008115720000000,0.000142590000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.006848757000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049750000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000079380000000,0.000136269000000,0.000096368000000,0.000096368000000,0.007066042000000,0.000122047000000,0.000122047000000,0.000057256000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015591500000,0.007310585000000,0.000026258000000,0.000013159666667,0.000040665000000,0.000016381500000,0.000048961000000,0.000018554500000,0.000039479000000,0.000013423000000,0.000059232000000,0.000083331000000,0.000079775000000,0.000196318000000,0.000097158000000,0.000096763000000,0.007012313000000,0.000122837000000,0.000206195000000,0.000056862000000,0.000054887000000,0.000019147000000,0.000067133000000 +0.000015394000000,0.007149795000000,0.000026258000000,0.000013423333333,0.000041060000000,0.000015591500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000080961000000,0.000081355000000,0.000165109000000,0.000096763000000,0.000096368000000,0.006737351000000,0.000121257000000,0.000121652000000,0.000056466000000,0.000053702000000,0.000018949500000,0.000066344000000 +0.000016184000000,0.006824264000000,0.000036332000000,0.000013028000000,0.000041849000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000041455000000,0.000013423000000,0.000053307000000,0.000079381000000,0.000078985000000,0.000153652000000,0.000173405000000,0.000096763000000,0.007382881000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000054887000000,0.000018751500000,0.000067529000000 +0.000015394000000,0.006845992000000,0.000053715000000,0.000013159666667,0.000040269000000,0.000017172000000,0.000118491000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000073059000000,0.000079776000000,0.000078985000000,0.000174195000000,0.000114936000000,0.000134293000000,0.006800560000000,0.000122047000000,0.000121652000000,0.000093208000000,0.000054097000000,0.000019147000000,0.000066738000000 +0.000015393500000,0.006877992000000,0.000026455500000,0.000013160000000,0.000039874000000,0.000017369500000,0.000048170000000,0.000018159500000,0.000047380000000,0.000013291333333,0.000053306000000,0.000079775000000,0.000118887000000,0.000142195000000,0.000096368000000,0.000110195000000,0.006881943000000,0.000122047000000,0.000122047000000,0.000056861000000,0.000053702000000,0.000019147000000,0.000067923000000 +0.000015986500000,0.006867326000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016184000000,0.000048960000000,0.000018159500000,0.000055677000000,0.000031727333333,0.000053306000000,0.000080170000000,0.000086097000000,0.000174985000000,0.000096763000000,0.000097158000000,0.007135572000000,0.000122442000000,0.000122442000000,0.000059627000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.006977153000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000034159500000,0.000048170000000,0.000027641000000,0.000039479000000,0.000023563000000,0.000053306000000,0.000082541000000,0.000081356000000,0.000250047000000,0.000096763000000,0.000097553000000,0.008187620000000,0.000156813000000,0.000121256000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000103085000000 +0.000015591000000,0.007139523000000,0.000026456000000,0.000013160000000,0.000040270000000,0.000016184000000,0.000048960000000,0.000043838500000,0.000039084000000,0.000018954000000,0.000053701000000,0.000082146000000,0.000081750000000,0.000323528000000,0.000096763000000,0.000096368000000,0.007175474000000,0.000122838000000,0.000158393000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000067924000000 +0.000015789000000,0.006749597000000,0.000026455500000,0.000013028000000,0.000041850000000,0.000016381500000,0.000050936000000,0.000018159000000,0.000040664000000,0.000018822333333,0.000053307000000,0.000082541000000,0.000082146000000,0.000176565000000,0.000096763000000,0.000096764000000,0.007098831000000,0.000122442000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000068318000000 +0.000015591500000,0.006723128000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039479000000,0.000017768666667,0.000053306000000,0.000087676000000,0.000084121000000,0.000141800000000,0.000096763000000,0.000096763000000,0.007239869000000,0.000121652000000,0.000122837000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006901301000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053702000000,0.000088071000000,0.000081750000000,0.000178146000000,0.000116121000000,0.000096763000000,0.006785548000000,0.000123232000000,0.000121652000000,0.000056467000000,0.000092812000000,0.000019344500000,0.000067133000000 +0.000025863000000,0.006791474000000,0.000026455500000,0.000013159666667,0.000095973000000,0.000016381500000,0.000050936000000,0.000018159500000,0.000039479000000,0.000013160000000,0.000053306000000,0.000084911000000,0.000082146000000,0.000154442000000,0.000096763000000,0.000096763000000,0.007306239000000,0.000121651000000,0.000122047000000,0.000057257000000,0.000069899000000,0.000018949500000,0.000067924000000 +0.000023492500000,0.006958979000000,0.000026258000000,0.000013159666667,0.000054887000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000040665000000,0.000013423333333,0.000053307000000,0.000080960000000,0.000078985000000,0.000172614000000,0.000097948000000,0.000133108000000,0.006836116000000,0.000122047000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006940807000000,0.000026455500000,0.000013160000000,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000014608333333,0.000054096000000,0.000086491000000,0.000083726000000,0.000173010000000,0.000096763000000,0.000097553000000,0.006886683000000,0.000192763000000,0.000121257000000,0.000057257000000,0.000054096000000,0.000019147000000,0.000067529000000 +0.000015986500000,0.007063276000000,0.000027246000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000039874000000,0.000013423000000,0.000052912000000,0.000080565000000,0.000155232000000,0.000154837000000,0.000097158000000,0.000095972000000,0.006868116000000,0.000122837000000,0.000208170000000,0.000056467000000,0.000053701000000,0.000031986500000,0.000067134000000 +0.000015591000000,0.006847968000000,0.000026653000000,0.000013554666667,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000080170000000,0.000151282000000,0.000174195000000,0.000095973000000,0.000099133000000,0.006940412000000,0.000121257000000,0.000124812000000,0.000056862000000,0.000053701000000,0.000019344500000,0.000067529000000 +0.000015196500000,0.007102782000000,0.000026653000000,0.000013949666667,0.000040269000000,0.000016579500000,0.000049751000000,0.000017962000000,0.000039479000000,0.000013555000000,0.000053701000000,0.000079775000000,0.000112961000000,0.000139034000000,0.000096763000000,0.000096763000000,0.007118979000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000066738000000 +0.000016184000000,0.006848363000000,0.000044628500000,0.000025406333333,0.000041059000000,0.000016184000000,0.000048565000000,0.000018554500000,0.000039084000000,0.000013423333333,0.000053701000000,0.000079775000000,0.000079776000000,0.000174590000000,0.000097158000000,0.000095972000000,0.007261597000000,0.000121652000000,0.000121652000000,0.000056862000000,0.000054096000000,0.000018949000000,0.000067528000000 +0.000015789000000,0.006941992000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048170000000,0.000018554500000,0.000039085000000,0.000013423333333,0.000053307000000,0.000080170000000,0.000079776000000,0.000141405000000,0.000096368000000,0.000096763000000,0.006993350000000,0.000121652000000,0.000122442000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000102294000000 +0.000016184000000,0.007087375000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000088862000000,0.000080565000000,0.000079381000000,0.000171824000000,0.000165899000000,0.000097948000000,0.007090536000000,0.000164319000000,0.000120467000000,0.000093208000000,0.000054096000000,0.000018751500000,0.000082146000000 +0.000015393500000,0.007395128000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000065948000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000056862000000,0.000087676000000,0.000082936000000,0.000178541000000,0.000110590000000,0.000095578000000,0.006761449000000,0.000122837000000,0.000123232000000,0.000057652000000,0.000054096000000,0.000019739500000,0.000065949000000 +0.000015394000000,0.006722733000000,0.000026653500000,0.000013159666667,0.000039874000000,0.000015986500000,0.000048961000000,0.000018357000000,0.000039479000000,0.000013028000000,0.000053306000000,0.000081355000000,0.000081751000000,0.000140615000000,0.000096763000000,0.000133108000000,0.006738931000000,0.000122047000000,0.000165109000000,0.000057652000000,0.000053306000000,0.000018949500000,0.000067924000000 +0.000016184000000,0.006752758000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049751000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000056072000000,0.000080170000000,0.000081355000000,0.000179331000000,0.000095973000000,0.000095973000000,0.006879177000000,0.000172615000000,0.000122047000000,0.000056862000000,0.000054491000000,0.000018949500000,0.000067923000000 +0.000015393500000,0.006911573000000,0.000026653500000,0.000013291333333,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000026065000000,0.000053306000000,0.000080565000000,0.000115331000000,0.000140615000000,0.000095973000000,0.000096763000000,0.006872857000000,0.000122837000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006834140000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000055282000000,0.000080961000000,0.000080961000000,0.000176170000000,0.000095973000000,0.000097158000000,0.007066041000000,0.000120862000000,0.000121652000000,0.000058047000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.007130832000000,0.000026060500000,0.000014740000000,0.000040269000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000054887000000,0.000081356000000,0.000085307000000,0.000175380000000,0.000096368000000,0.000097158000000,0.007167572000000,0.000122442000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000020134500000,0.000067133000000 +0.000015394000000,0.006768955000000,0.000026060500000,0.000013159666667,0.000040270000000,0.000016579500000,0.000048171000000,0.000018159500000,0.000039874000000,0.000013160000000,0.000055281000000,0.000079381000000,0.000082146000000,0.000141010000000,0.000096763000000,0.000096368000000,0.006753943000000,0.000159183000000,0.000122047000000,0.000057257000000,0.000107825000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007364313000000,0.000026258500000,0.000013028333333,0.000040270000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000040664000000,0.000013159666667,0.000071084000000,0.000082146000000,0.000082936000000,0.000178935000000,0.000095973000000,0.000095973000000,0.006795029000000,0.000122442000000,0.000121256000000,0.000056862000000,0.000070294000000,0.000019344500000,0.000067134000000 +0.000015591500000,0.006739326000000,0.000026258000000,0.000013028000000,0.000041060000000,0.000016381500000,0.000048960000000,0.000028036000000,0.000040269000000,0.000013159666667,0.000056862000000,0.000083331000000,0.000082541000000,0.000180121000000,0.000139824000000,0.000096368000000,0.006877992000000,0.000122047000000,0.000232664000000,0.000057652000000,0.000053701000000,0.000018949500000,0.000066739000000 +0.000015394000000,0.006904067000000,0.000026060500000,0.000013159666667,0.000041060000000,0.000016184000000,0.000049355000000,0.000018356500000,0.000039084000000,0.000013554666667,0.000066343000000,0.000079775000000,0.000082146000000,0.000178541000000,0.000095973000000,0.000095973000000,0.006785153000000,0.000122442000000,0.000241750000000,0.000057257000000,0.000054491000000,0.000019937000000,0.000067133000000 +0.000015591500000,0.007054189000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048566000000,0.000018159500000,0.000040664000000,0.000013423000000,0.000053307000000,0.000079380000000,0.000081356000000,0.000139035000000,0.000099529000000,0.000228713000000,0.006983079000000,0.000122047000000,0.000144566000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000067133000000 +0.000015393500000,0.006782783000000,0.000026455500000,0.000013818000000,0.000077406000000,0.000015986500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000057652000000,0.000080170000000,0.000080170000000,0.000240960000000,0.000096368000000,0.000102294000000,0.007016659000000,0.000121257000000,0.000135084000000,0.000056862000000,0.000054096000000,0.000018554500000,0.000068318000000 +0.000015394000000,0.006839671000000,0.000046209000000,0.000013028000000,0.000040269000000,0.000035542000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000081355000000,0.000079381000000,0.000182096000000,0.000097158000000,0.000110195000000,0.007026140000000,0.000122443000000,0.000121257000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006997696000000,0.000035147000000,0.000013028000000,0.000041455000000,0.000017962000000,0.000049355000000,0.000018159500000,0.000039480000000,0.000013555000000,0.000052911000000,0.000117306000000,0.000082541000000,0.000141405000000,0.000096368000000,0.000097159000000,0.006800165000000,0.000159973000000,0.000141800000000,0.000056862000000,0.000054096000000,0.000019147000000,0.000067133000000 +0.000015591500000,0.007154930000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000022702500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013028333333,0.000070689000000,0.000079775000000,0.000155232000000,0.000176170000000,0.000095973000000,0.000096368000000,0.006741301000000,0.000221207000000,0.000152862000000,0.000076615000000,0.000053701000000,0.000019147000000,0.000067134000000 +0.000015591500000,0.006819128000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048566000000,0.000018356500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000081356000000,0.000081356000000,0.000142195000000,0.000097158000000,0.000095578000000,0.007069992000000,0.000137849000000,0.000122047000000,0.000073850000000,0.000054097000000,0.000019147000000,0.000067529000000 +0.000016184000000,0.006937647000000,0.000026258000000,0.000013159666667,0.000040664000000,0.000016579000000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000079381000000,0.000178145000000,0.000095973000000,0.000097158000000,0.007030486000000,0.000122047000000,0.000121652000000,0.000057256000000,0.000057257000000,0.000019147000000,0.000068319000000 +0.000016184000000,0.006831770000000,0.000027048500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000117702000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000054886000000,0.000079381000000,0.000081751000000,0.000139825000000,0.000264269000000,0.000116911000000,0.006825054000000,0.000121652000000,0.000120467000000,0.000057257000000,0.000054096000000,0.000027838500000,0.000067133000000 +0.000033369000000,0.007024165000000,0.000026060500000,0.000013686333333,0.000040269000000,0.000016381500000,0.000062788000000,0.000018159500000,0.000039480000000,0.000013555000000,0.000054887000000,0.000079380000000,0.000079381000000,0.000172615000000,0.000258344000000,0.000096763000000,0.007079078000000,0.000122442000000,0.000122047000000,0.000056861000000,0.000054491000000,0.000018751500000,0.000067923000000 +0.000015591000000,0.006846782000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048170000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000053701000000,0.000080565000000,0.000087282000000,0.000190788000000,0.000129948000000,0.000096763000000,0.007184165000000,0.000122047000000,0.000124022000000,0.000057257000000,0.000054097000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.007235918000000,0.000026060500000,0.000013028000000,0.000039874000000,0.000015591500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053307000000,0.000081751000000,0.000079380000000,0.000141405000000,0.000097553000000,0.000096368000000,0.006969646000000,0.000157997000000,0.000141405000000,0.000057652000000,0.000054097000000,0.000018751500000,0.000072665000000 +0.000015591500000,0.006797005000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000047776000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000079776000000,0.000082146000000,0.000174196000000,0.000096763000000,0.000095973000000,0.006761844000000,0.000121257000000,0.000122442000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000068318000000 +0.000015986500000,0.006838881000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048171000000,0.000018752000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000079775000000,0.000081356000000,0.000140220000000,0.000132319000000,0.000096368000000,0.007007968000000,0.000122442000000,0.000122837000000,0.000057652000000,0.000090442000000,0.000018751500000,0.000067528000000 +0.000015394000000,0.007103572000000,0.000026653000000,0.000013160000000,0.000040270000000,0.000015789000000,0.000048565000000,0.000018159500000,0.000039875000000,0.000036863333333,0.000053701000000,0.000080170000000,0.000080961000000,0.000176170000000,0.000109405000000,0.000095973000000,0.007024955000000,0.000123232000000,0.000121652000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000016184000000,0.006883523000000,0.000026455500000,0.000013291333333,0.000040270000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082936000000,0.000129158000000,0.000284812000000,0.000096368000000,0.000096763000000,0.007002042000000,0.000122047000000,0.000122047000000,0.000056862000000,0.000054886000000,0.000018751500000,0.000068318000000 +0.000015986500000,0.006817943000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000049356000000,0.000018159000000,0.000040664000000,0.000013028000000,0.000052912000000,0.000080171000000,0.000079381000000,0.000139430000000,0.000096763000000,0.000096763000000,0.007375375000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007353251000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053701000000,0.000079381000000,0.000081751000000,0.000196713000000,0.000097158000000,0.000116121000000,0.006768166000000,0.000121652000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.007305844000000,0.000049961500000,0.000013423333333,0.000041059000000,0.000015986500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053307000000,0.000082146000000,0.000079776000000,0.000186442000000,0.000096763000000,0.000126392000000,0.006811227000000,0.000204220000000,0.000158787000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006791474000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013818333333,0.000054491000000,0.000080961000000,0.000084911000000,0.000176565000000,0.000096763000000,0.000095973000000,0.006891029000000,0.000121651000000,0.000121257000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006983078000000,0.000037912500000,0.000013159666667,0.000040664000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000090837000000,0.000079381000000,0.000079775000000,0.000138640000000,0.000095973000000,0.000098739000000,0.006810042000000,0.000122442000000,0.000121652000000,0.000056862000000,0.000054491000000,0.000019344500000,0.000067133000000 +0.000015591000000,0.006904066000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000018159000000,0.000040665000000,0.000013291666667,0.000055281000000,0.000080171000000,0.000079380000000,0.000176960000000,0.000097948000000,0.000097948000000,0.006870881000000,0.000122047000000,0.000121257000000,0.000093208000000,0.000054096000000,0.000019344500000,0.000067133000000 +0.000015394000000,0.007271869000000,0.000026653000000,0.000013028000000,0.000060023000000,0.000016381500000,0.000048565000000,0.000018357000000,0.000039084000000,0.000013555000000,0.000054887000000,0.000079381000000,0.000081750000000,0.000173405000000,0.000132318000000,0.000095973000000,0.006962141000000,0.000122442000000,0.000122047000000,0.000056861000000,0.000053701000000,0.000019344500000,0.000067528000000 +0.000015394000000,0.007003622000000,0.000026653500000,0.000013159666667,0.000092023000000,0.000016184000000,0.000048565000000,0.000036134500000,0.000039479000000,0.000013423333333,0.000053306000000,0.000101109000000,0.000086491000000,0.000141800000000,0.000096763000000,0.000097158000000,0.007294387000000,0.000121256000000,0.000121652000000,0.000057257000000,0.000054097000000,0.000019344500000,0.000103479000000 +0.000015591500000,0.007391177000000,0.000026653000000,0.000013554666667,0.000039875000000,0.000016184000000,0.000048960000000,0.000018159000000,0.000039874000000,0.000013159666667,0.000053306000000,0.000097553000000,0.000082145000000,0.000172615000000,0.000097554000000,0.000097158000000,0.006892609000000,0.000122442000000,0.000122047000000,0.000056861000000,0.000053307000000,0.000018949500000,0.000081356000000 +0.000015591500000,0.006832955000000,0.000026455500000,0.000013159666667,0.000040665000000,0.000015789000000,0.000083726000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000054096000000,0.000093208000000,0.000152862000000,0.000138244000000,0.000096763000000,0.000097553000000,0.006757104000000,0.000158788000000,0.000120862000000,0.000057257000000,0.000054097000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.007270288000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000040269000000,0.000013423000000,0.000056072000000,0.000079381000000,0.000079776000000,0.000171430000000,0.000096368000000,0.000131924000000,0.006975178000000,0.000122837000000,0.000157997000000,0.000056861000000,0.000054097000000,0.000018752000000,0.000065948000000 +0.000015591500000,0.006913152000000,0.000026258000000,0.000013028000000,0.000039875000000,0.000025073000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000082146000000,0.000081356000000,0.000138639000000,0.000095973000000,0.000097553000000,0.006701005000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000079776000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.007236708000000,0.000026455500000,0.000013159666667,0.000039875000000,0.000040875000000,0.000047776000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000079381000000,0.000180516000000,0.000097158000000,0.000097158000000,0.006748017000000,0.000122837000000,0.000123627000000,0.000057256000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015591000000,0.006971622000000,0.000026060500000,0.000013159666667,0.000040270000000,0.000023097500000,0.000048961000000,0.000026455500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000084516000000,0.000082146000000,0.000174985000000,0.000095973000000,0.000097158000000,0.006954634000000,0.000120862000000,0.000122442000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006971622000000,0.000026060500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082146000000,0.000081356000000,0.000139825000000,0.000095577000000,0.000101899000000,0.007301103000000,0.000122442000000,0.000122047000000,0.000056466000000,0.000054097000000,0.000019147000000,0.000067134000000 +0.000015394000000,0.007085400000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039085000000,0.000013159666667,0.000055282000000,0.000080170000000,0.000081356000000,0.000174195000000,0.000133504000000,0.000096763000000,0.006692314000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000053307000000,0.000053517500000,0.000067924000000 +0.000015394000000,0.006975967000000,0.000026455500000,0.000020139000000,0.000039874000000,0.000015789000000,0.000050146000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000053701000000,0.000081751000000,0.000081355000000,0.000140614000000,0.000096368000000,0.000096368000000,0.006836115000000,0.000206590000000,0.000121256000000,0.000056861000000,0.000054097000000,0.000026258000000,0.000067529000000 +0.000015591500000,0.006792263000000,0.000063788500000,0.000018690333333,0.000040269000000,0.000016184000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000083331000000,0.000081356000000,0.000176961000000,0.000096368000000,0.000097159000000,0.006908412000000,0.000122047000000,0.000157998000000,0.000056862000000,0.000054097000000,0.000018751500000,0.000067529000000 +0.000015986000000,0.006990189000000,0.000062801000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000028567333333,0.000053306000000,0.000082146000000,0.000078986000000,0.000186837000000,0.000097158000000,0.000097553000000,0.006765795000000,0.000120862000000,0.000121257000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006835720000000,0.000078406000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013160000000,0.000054886000000,0.000080170000000,0.000116911000000,0.000139430000000,0.000096763000000,0.000186837000000,0.006846387000000,0.000122442000000,0.000122442000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000103479000000 +0.000024085500000,0.006693104000000,0.000079789000000,0.000013159666667,0.000042639000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039480000000,0.000013554666667,0.000070294000000,0.000080565000000,0.000083331000000,0.000173405000000,0.000101504000000,0.000097159000000,0.006951474000000,0.000122047000000,0.000122442000000,0.000056861000000,0.000054491000000,0.000020332500000,0.000067923000000 +0.000015591500000,0.007015868000000,0.000046011000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000054886000000,0.000082541000000,0.000088467000000,0.000141010000000,0.000096763000000,0.000096763000000,0.007380510000000,0.000120862000000,0.000121257000000,0.000148516000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015788500000,0.008109004000000,0.000027838500000,0.000013160000000,0.000040269000000,0.000015986500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000014213000000,0.000053702000000,0.000082541000000,0.000081751000000,0.000176961000000,0.000096763000000,0.000095973000000,0.006750387000000,0.000120862000000,0.000123232000000,0.000095973000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015789000000,0.006989795000000,0.000034159500000,0.000013423000000,0.000040269000000,0.000015986500000,0.000050936000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000054491000000,0.000082145000000,0.000082540000000,0.000141405000000,0.000095577000000,0.000143380000000,0.006924215000000,0.000157998000000,0.000122442000000,0.000060418000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.007426733000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000041454000000,0.000013554666667,0.000053307000000,0.000080170000000,0.000081356000000,0.000174985000000,0.000131528000000,0.000096368000000,0.006913942000000,0.000121257000000,0.000158788000000,0.000071085000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006934091000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000040664000000,0.000013291333333,0.000052911000000,0.000082541000000,0.000081356000000,0.000174590000000,0.000095578000000,0.000097159000000,0.007280955000000,0.000121257000000,0.000123233000000,0.000056862000000,0.000053701000000,0.000019542000000,0.000086492000000 +0.000016579000000,0.006862190000000,0.000035739500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000079381000000,0.000080171000000,0.000141800000000,0.000096368000000,0.000097158000000,0.006780412000000,0.000122047000000,0.000122047000000,0.000056466000000,0.000053701000000,0.000019344500000,0.000098343000000 +0.000015591500000,0.006876017000000,0.000026258000000,0.000013554666667,0.000057652000000,0.000016184000000,0.000086491000000,0.000018357000000,0.000039479000000,0.000013028000000,0.000052912000000,0.000081356000000,0.000079380000000,0.000178936000000,0.000095182000000,0.000132318000000,0.007182190000000,0.000123232000000,0.000122442000000,0.000059232000000,0.000054491000000,0.000018949500000,0.000067924000000 +0.000015591000000,0.006904462000000,0.000026258000000,0.000013159666667,0.000041850000000,0.000015986500000,0.000049751000000,0.000037517500000,0.000039479000000,0.000013291333333,0.000054886000000,0.000080566000000,0.000079775000000,0.000141010000000,0.000095578000000,0.000097949000000,0.006721152000000,0.000161948000000,0.000121652000000,0.000057257000000,0.000071479000000,0.000019739500000,0.000068714000000 +0.000015591500000,0.006873252000000,0.000026455500000,0.000013160000000,0.000041455000000,0.000016579000000,0.000048566000000,0.000025863000000,0.000039479000000,0.000013949666667,0.000052911000000,0.000082146000000,0.000137059000000,0.000184467000000,0.000097158000000,0.000097158000000,0.006844412000000,0.000121652000000,0.000121257000000,0.000057257000000,0.000073849000000,0.000019937500000,0.000067134000000 +0.000015394000000,0.006847572000000,0.000026060500000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054096000000,0.000082936000000,0.000097158000000,0.000140614000000,0.000096763000000,0.000097158000000,0.006904857000000,0.000174196000000,0.000123627000000,0.000056862000000,0.000056862000000,0.000019147000000,0.000067924000000 +0.000015394000000,0.007233153000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053307000000,0.000098738000000,0.000079381000000,0.000176566000000,0.000096763000000,0.000096368000000,0.006736165000000,0.000122047000000,0.000157997000000,0.000056862000000,0.000066738000000,0.000018752000000,0.000110590000000 +0.000016184000000,0.007347720000000,0.000026456000000,0.000013028333333,0.000040270000000,0.000016579500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000083726000000,0.000081355000000,0.000175776000000,0.000097553000000,0.000095973000000,0.006750387000000,0.000121652000000,0.000122837000000,0.000056467000000,0.000054096000000,0.000018752000000,0.000066738000000 +0.000016579000000,0.007203128000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000058837000000,0.000013159666667,0.000053307000000,0.000135479000000,0.000079380000000,0.000140614000000,0.000136269000000,0.000097158000000,0.007005202000000,0.000122837000000,0.000123627000000,0.000057257000000,0.000053306000000,0.000019344500000,0.000067133000000 +0.000016579000000,0.006935276000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015986500000,0.000050146000000,0.000018159500000,0.000054886000000,0.000013028000000,0.000053306000000,0.000081356000000,0.000083726000000,0.000175380000000,0.000097553000000,0.000097158000000,0.007079474000000,0.000122442000000,0.000122442000000,0.000058442000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000016184000000,0.006839671000000,0.000026060500000,0.000013160000000,0.000039874000000,0.000016184000000,0.000048171000000,0.000018159500000,0.000041850000000,0.000013291666667,0.000089257000000,0.000082936000000,0.000082936000000,0.000162343000000,0.000095973000000,0.000152072000000,0.006717992000000,0.000122047000000,0.000122047000000,0.000073455000000,0.000053701000000,0.000018752000000,0.000066343000000 +0.000015394000000,0.006870486000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000026060500000,0.000048565000000,0.000018159000000,0.000041455000000,0.000013554666667,0.000053307000000,0.000081355000000,0.000082146000000,0.000181306000000,0.000096368000000,0.000291923000000,0.006754733000000,0.000122442000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000037320000000,0.000067133000000 +0.000015393500000,0.006716017000000,0.000026258000000,0.000013423000000,0.000040664000000,0.000033961500000,0.000048170000000,0.000018159500000,0.000041849000000,0.000016452000000,0.000053306000000,0.000081751000000,0.000082541000000,0.000178541000000,0.000096763000000,0.000185257000000,0.007054190000000,0.000138640000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000016184000000,0.006926190000000,0.000026653500000,0.000013686666667,0.000039874000000,0.000041863000000,0.000048170000000,0.000018159500000,0.000041849000000,0.000013291333333,0.000052911000000,0.000079380000000,0.000082146000000,0.000143380000000,0.000097158000000,0.000132713000000,0.007324016000000,0.000122442000000,0.000122442000000,0.000057257000000,0.000053306000000,0.000018949500000,0.000067134000000 +0.000015393500000,0.006832165000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000051937000000,0.000050541000000,0.000018159500000,0.000041849000000,0.000036995333333,0.000054491000000,0.000080960000000,0.000115726000000,0.000176960000000,0.000095973000000,0.000145356000000,0.007126091000000,0.000122837000000,0.000157997000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000068319000000 +0.000015986500000,0.006982683000000,0.000042850500000,0.000013159666667,0.000040269000000,0.000050159000000,0.000050146000000,0.000018159500000,0.000041850000000,0.000013028000000,0.000053306000000,0.000082541000000,0.000080961000000,0.000138245000000,0.000097948000000,0.000133899000000,0.007297942000000,0.000121257000000,0.000122442000000,0.000056862000000,0.000054096000000,0.000020332500000,0.000066739000000 +0.000015986000000,0.006798190000000,0.000028036000000,0.000013423000000,0.000039874000000,0.000050949500000,0.000048565000000,0.000018159000000,0.000041455000000,0.000013028000000,0.000053702000000,0.000081751000000,0.000081355000000,0.000180121000000,0.000096763000000,0.000097553000000,0.007086980000000,0.000122837000000,0.000121652000000,0.000057257000000,0.000054491000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.007181794000000,0.000025863000000,0.000013555000000,0.000040269000000,0.000040677500000,0.000048961000000,0.000018159500000,0.000041849000000,0.000013028000000,0.000053306000000,0.000085701000000,0.000080170000000,0.000142195000000,0.000132714000000,0.000096763000000,0.006952264000000,0.000121652000000,0.000121257000000,0.000056862000000,0.000053306000000,0.000019739500000,0.000067134000000 +0.000015591000000,0.006780412000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000018554500000,0.000041454000000,0.000013028000000,0.000052912000000,0.000080170000000,0.000079380000000,0.000176961000000,0.000095183000000,0.000097158000000,0.007132412000000,0.000122837000000,0.000121652000000,0.000056862000000,0.000073850000000,0.000018751500000,0.000103874000000 +0.000015394000000,0.006904461000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048961000000,0.000018357000000,0.000041454000000,0.000013160000000,0.000053306000000,0.000083726000000,0.000082936000000,0.000174591000000,0.000097158000000,0.000096763000000,0.006928955000000,0.000269800000000,0.000122837000000,0.000058837000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006650437000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015986500000,0.000086491000000,0.000018159000000,0.000042640000000,0.000013291333333,0.000053307000000,0.000081751000000,0.000089652000000,0.000145356000000,0.000098343000000,0.000097553000000,0.006780807000000,0.000312466000000,0.000122837000000,0.000056862000000,0.000053306000000,0.000018751500000,0.000066738000000 +0.000025073000000,0.006793054000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000065159000000,0.000018159000000,0.000041454000000,0.000013423000000,0.000053702000000,0.000079380000000,0.000079381000000,0.000173010000000,0.000097158000000,0.000097159000000,0.007067227000000,0.000154837000000,0.000157997000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067134000000 +0.000026653500000,0.006885104000000,0.000026455500000,0.000013159666667,0.000073849000000,0.000017172000000,0.000048566000000,0.000018159500000,0.000041849000000,0.000013423000000,0.000053306000000,0.000081356000000,0.000081751000000,0.000142986000000,0.000096763000000,0.000096763000000,0.007570930000000,0.000121652000000,0.000121652000000,0.000056467000000,0.000054096000000,0.000019147000000,0.000068319000000 +0.000034357000000,0.006914733000000,0.000027246000000,0.000013028000000,0.000075825000000,0.000016382000000,0.000048961000000,0.000018159500000,0.000077405000000,0.000013291333333,0.000052912000000,0.000082146000000,0.000080566000000,0.000173800000000,0.000095578000000,0.000096368000000,0.006921449000000,0.000158788000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000066739000000 +0.000050554500000,0.009610237000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048565000000,0.000036135000000,0.000061207000000,0.000013159666667,0.000055676000000,0.000080961000000,0.000097949000000,0.000139035000000,0.000095578000000,0.000133899000000,0.006730239000000,0.000121257000000,0.000122047000000,0.000077010000000,0.000054491000000,0.000018752000000,0.000068319000000 +0.000040283000000,0.007236313000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048171000000,0.000018159500000,0.000041454000000,0.000013555000000,0.000052912000000,0.000079776000000,0.000131924000000,0.000176961000000,0.000131924000000,0.000096368000000,0.007066042000000,0.000121652000000,0.000121256000000,0.000090047000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000032974500000,0.007192066000000,0.000026653000000,0.000013159666667,0.000041060000000,0.000034159000000,0.000048170000000,0.000018159500000,0.000061207000000,0.000013028000000,0.000131923000000,0.000086887000000,0.000082541000000,0.000173800000000,0.000097159000000,0.000095973000000,0.006853498000000,0.000122047000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000024678000000,0.006738930000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048565000000,0.000018159000000,0.000053701000000,0.000013028000000,0.000060812000000,0.000082541000000,0.000081355000000,0.000141405000000,0.000095973000000,0.000097158000000,0.007372215000000,0.000122047000000,0.000122837000000,0.000056467000000,0.000053701000000,0.000019542500000,0.000067528000000 +0.000016579000000,0.007151375000000,0.000026455500000,0.000013554666667,0.000041060000000,0.000016184000000,0.000048171000000,0.000018159000000,0.000041059000000,0.000013423000000,0.000056467000000,0.000081356000000,0.000082541000000,0.000176961000000,0.000095972000000,0.000097158000000,0.006911967000000,0.000121652000000,0.000201454000000,0.000057257000000,0.000054097000000,0.000019147000000,0.000067923000000 +0.000016579000000,0.006934486000000,0.000026455500000,0.000013686333333,0.000039874000000,0.000015591500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000082145000000,0.000081751000000,0.000141800000000,0.000096368000000,0.000095973000000,0.007357992000000,0.000122047000000,0.000138639000000,0.000058442000000,0.000054492000000,0.000018949500000,0.000104664000000 +0.000016579000000,0.006945942000000,0.000026060500000,0.000013159666667,0.000040665000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053307000000,0.000081356000000,0.000081356000000,0.000218837000000,0.000095578000000,0.000095578000000,0.006957005000000,0.000121652000000,0.000121652000000,0.000056862000000,0.000055677000000,0.000018752000000,0.000067923000000 +0.000022110000000,0.006905251000000,0.000045221000000,0.000013028000000,0.000039875000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000055281000000,0.000080171000000,0.000085702000000,0.000176171000000,0.000096763000000,0.000097948000000,0.007010733000000,0.000158393000000,0.000123233000000,0.000056861000000,0.000053701000000,0.000018554500000,0.000066738000000 +0.000015591500000,0.006752363000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048565000000,0.000018159000000,0.000039874000000,0.000013291666667,0.000053306000000,0.000082541000000,0.000080566000000,0.000138640000000,0.000097158000000,0.000097158000000,0.006830190000000,0.000122442000000,0.000122442000000,0.000056862000000,0.000054491000000,0.000018949500000,0.000119282000000 +0.000015986500000,0.008452312000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016579000000,0.000050936000000,0.000018159000000,0.000039874000000,0.000013159666667,0.000053306000000,0.000082146000000,0.000078985000000,0.000175380000000,0.000096763000000,0.000131924000000,0.006776066000000,0.000122047000000,0.000122442000000,0.000056861000000,0.000054096000000,0.000042455500000,0.000067133000000 +0.000015591500000,0.007671276000000,0.000026455500000,0.000014081666667,0.000040270000000,0.000016579000000,0.000048566000000,0.000018357000000,0.000039084000000,0.000020007333333,0.000053307000000,0.000079380000000,0.000079775000000,0.000177355000000,0.000169060000000,0.000097553000000,0.007000857000000,0.000122442000000,0.000122837000000,0.000058442000000,0.000053701000000,0.000018949500000,0.000068319000000 +0.000015789000000,0.007208264000000,0.000026653500000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018554500000,0.000039084000000,0.000018559000000,0.000053306000000,0.000082145000000,0.000119281000000,0.000180516000000,0.000095973000000,0.000096368000000,0.007295177000000,0.000121652000000,0.000157602000000,0.000057652000000,0.000072269000000,0.000019147000000,0.000067924000000 +0.000015591500000,0.007693004000000,0.000026653000000,0.000013818333333,0.000040269000000,0.000016382000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000054097000000,0.000079380000000,0.000079775000000,0.000153257000000,0.000095972000000,0.000095973000000,0.007081054000000,0.000122837000000,0.000121257000000,0.000056862000000,0.000066739000000,0.000018752000000,0.000066344000000 +0.000015986500000,0.006974388000000,0.000026258500000,0.000031464333333,0.000074245000000,0.000016579000000,0.000068319000000,0.000018159000000,0.000040269000000,0.000013159666667,0.000054491000000,0.000094787000000,0.000082146000000,0.000180516000000,0.000096368000000,0.000096368000000,0.006762634000000,0.000156813000000,0.000122442000000,0.000061602000000,0.000053702000000,0.000018751500000,0.000067134000000 +0.000025468000000,0.006835326000000,0.000026653000000,0.000013160000000,0.000042245000000,0.000015789000000,0.000066344000000,0.000018357000000,0.000039084000000,0.000014213333333,0.000054491000000,0.000082936000000,0.000079775000000,0.000174985000000,0.000096368000000,0.000096368000000,0.006951473000000,0.000137060000000,0.000122442000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067924000000 +0.000030999000000,0.007043128000000,0.000026851000000,0.000013028000000,0.000054096000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039874000000,0.000013423333333,0.000055677000000,0.000082146000000,0.000082146000000,0.000139825000000,0.000099528000000,0.000095973000000,0.006698239000000,0.000122442000000,0.000123232000000,0.000099133000000,0.000053702000000,0.000018751500000,0.000067528000000 +0.000023295500000,0.006790289000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000040269000000,0.000013028000000,0.000053306000000,0.000078986000000,0.000079775000000,0.000173800000000,0.000096763000000,0.000096368000000,0.007006782000000,0.000121652000000,0.000121651000000,0.000056467000000,0.000053702000000,0.000019739500000,0.000067923000000 +0.000016184000000,0.007120164000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000092023000000,0.000082146000000,0.000079380000000,0.000141800000000,0.000096763000000,0.000095578000000,0.006885894000000,0.000122442000000,0.000122837000000,0.000056862000000,0.000053702000000,0.000019739500000,0.000103874000000 +0.000015394000000,0.006875622000000,0.000026455500000,0.000013159666667,0.000076219000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000083726000000,0.000080170000000,0.000174591000000,0.000095973000000,0.000132318000000,0.007902781000000,0.000122837000000,0.000159972000000,0.000056862000000,0.000053701000000,0.000019739500000,0.000066343000000 +0.000015394000000,0.007001646000000,0.000026653000000,0.000013028333333,0.000040269000000,0.000015591000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082936000000,0.000079380000000,0.000143776000000,0.000133109000000,0.000096763000000,0.006940412000000,0.000122837000000,0.000122442000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000067924000000 +0.000015393500000,0.006758289000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000051331000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000052911000000,0.000079381000000,0.000083726000000,0.000177355000000,0.000097554000000,0.000097554000000,0.006903671000000,0.000121652000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006973202000000,0.000044431000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000050936000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000083331000000,0.000098343000000,0.000177751000000,0.000115726000000,0.000097553000000,0.007510091000000,0.000138640000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018751500000,0.000067529000000 +0.000015986500000,0.006777251000000,0.000026455500000,0.000014476666667,0.000040269000000,0.000015789000000,0.000048171000000,0.000018554500000,0.000039084000000,0.000013554666667,0.000052911000000,0.000079380000000,0.000079775000000,0.000142591000000,0.000126393000000,0.000095973000000,0.006944363000000,0.000123233000000,0.000121257000000,0.000057256000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.006734585000000,0.000026060500000,0.000013159666667,0.000041850000000,0.000015789000000,0.000047775000000,0.000018159500000,0.000039480000000,0.000013686666667,0.000053307000000,0.000081355000000,0.000079775000000,0.000181702000000,0.000095578000000,0.000098343000000,0.007336659000000,0.000120862000000,0.000122442000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000068713000000 +0.000015393500000,0.006866931000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000016579000000,0.000049355000000,0.000027838000000,0.000039874000000,0.000013423333333,0.000052911000000,0.000081750000000,0.000081751000000,0.000130739000000,0.000097158000000,0.000096368000000,0.006909597000000,0.000124813000000,0.000122442000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006812807000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048566000000,0.000026258000000,0.000039479000000,0.000013555000000,0.000055677000000,0.000082936000000,0.000082146000000,0.000166294000000,0.000097158000000,0.000095578000000,0.007248165000000,0.000121652000000,0.000157998000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.006909202000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000020134500000,0.000039874000000,0.000013555000000,0.000052911000000,0.000082541000000,0.000078986000000,0.000166294000000,0.000097949000000,0.000096368000000,0.006787128000000,0.000121652000000,0.000122047000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000066738000000 +0.000015986500000,0.006942782000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018357000000,0.000040664000000,0.000013291333333,0.000054492000000,0.000079775000000,0.000083331000000,0.000241751000000,0.000096368000000,0.000133504000000,0.006744462000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000090442000000,0.000018949000000,0.000066738000000 +0.000015394000000,0.006973202000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000037912500000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000052911000000,0.000082146000000,0.000081750000000,0.000276516000000,0.000148121000000,0.000095973000000,0.006885893000000,0.000164713000000,0.000142195000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000104665000000 +0.000015789000000,0.006863375000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000047775000000,0.000018356500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000079775000000,0.000083331000000,0.000157997000000,0.000095973000000,0.000097158000000,0.007205893000000,0.000122442000000,0.000136269000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000068319000000 +0.000015986500000,0.006766190000000,0.000026060500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000048960000000,0.000018554500000,0.000039085000000,0.000013423000000,0.000052516000000,0.000079380000000,0.000102294000000,0.000478787000000,0.000096763000000,0.000097158000000,0.006849943000000,0.000121651000000,0.000125998000000,0.000057257000000,0.000054096000000,0.000018752000000,0.000067134000000 +0.000015788500000,0.006966091000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000084121000000,0.000018159500000,0.000040665000000,0.000013555000000,0.000053306000000,0.000079380000000,0.000081356000000,0.000156813000000,0.000096763000000,0.000096368000000,0.007475720000000,0.000121652000000,0.000165899000000,0.000129948000000,0.000053701000000,0.000036924500000,0.000067923000000 +0.000015789000000,0.007699720000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000051726000000,0.000018159500000,0.000042245000000,0.000038575333333,0.000089257000000,0.000080170000000,0.000079775000000,0.000170244000000,0.000096368000000,0.000096764000000,0.006693103000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000053306000000,0.000018554500000,0.000067528000000 +0.000015394000000,0.006895770000000,0.000029023500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049355000000,0.000018356500000,0.000039085000000,0.000036600000000,0.000053307000000,0.000079380000000,0.000080961000000,0.000224368000000,0.000096368000000,0.000096763000000,0.006799770000000,0.000122442000000,0.000122442000000,0.000057652000000,0.000054096000000,0.000018949000000,0.000068713000000 +0.000016184000000,0.006799770000000,0.000026258000000,0.000014345000000,0.000040270000000,0.000016184000000,0.000048960000000,0.000018357000000,0.000039479000000,0.000040419000000,0.000053306000000,0.000083726000000,0.000080565000000,0.000131134000000,0.000096763000000,0.000096368000000,0.006940017000000,0.000121652000000,0.000121257000000,0.000094393000000,0.000054097000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.007198387000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000016381500000,0.000048171000000,0.000018159500000,0.000039084000000,0.000041077666667,0.000053307000000,0.000079380000000,0.000079380000000,0.000204219000000,0.000096368000000,0.000096368000000,0.006798585000000,0.000192763000000,0.000122047000000,0.000071874000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.007100807000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015789000000,0.000067924000000,0.000019147000000,0.000039479000000,0.000014345000000,0.000054886000000,0.000080170000000,0.000082146000000,0.000132319000000,0.000132318000000,0.000166293000000,0.006827820000000,0.000122837000000,0.000122442000000,0.000057257000000,0.000054097000000,0.000018949500000,0.000067923000000 +0.000015393500000,0.007019424000000,0.000044825500000,0.000013159666667,0.000040270000000,0.000015591500000,0.000070689000000,0.000018159000000,0.000040269000000,0.000014213000000,0.000053307000000,0.000082541000000,0.000079380000000,0.000169060000000,0.000097158000000,0.000111775000000,0.006908017000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.007538535000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016579500000,0.000051331000000,0.000018357000000,0.000039479000000,0.000018164000000,0.000053306000000,0.000081356000000,0.000081355000000,0.000132319000000,0.000097158000000,0.000096763000000,0.007421202000000,0.000122047000000,0.000121652000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015591000000,0.007067227000000,0.000026456000000,0.000013028000000,0.000095183000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013818333333,0.000054097000000,0.000080566000000,0.000081355000000,0.000162343000000,0.000096368000000,0.000095973000000,0.006878387000000,0.000121652000000,0.000171035000000,0.000056862000000,0.000053701000000,0.000018751500000,0.000067529000000 +0.000033566500000,0.007030486000000,0.000026258000000,0.000013554666667,0.000067133000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000056862000000,0.000080566000000,0.000082540000000,0.000173405000000,0.000096368000000,0.000097158000000,0.006821894000000,0.000121652000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000104269000000 +0.000015394000000,0.006930535000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050145000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000052911000000,0.000080961000000,0.000169059000000,0.000133109000000,0.000095973000000,0.000096368000000,0.006899720000000,0.000121257000000,0.000122838000000,0.000056467000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006815178000000,0.000026258000000,0.000014345000000,0.000040664000000,0.000016381500000,0.000048171000000,0.000018554000000,0.000039479000000,0.000013554666667,0.000053702000000,0.000079381000000,0.000082936000000,0.000214886000000,0.000097159000000,0.000095973000000,0.006821894000000,0.000169455000000,0.000120862000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015393500000,0.006806881000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039875000000,0.000013159666667,0.000052911000000,0.000079776000000,0.000079380000000,0.000132714000000,0.000096763000000,0.000097158000000,0.006745646000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000090047000000,0.000018949500000,0.000066739000000 +0.000015591500000,0.006960560000000,0.000026455500000,0.000013554666667,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079381000000,0.000082541000000,0.000168664000000,0.000097158000000,0.000096763000000,0.006864165000000,0.000121652000000,0.000121257000000,0.000056862000000,0.000054491000000,0.000019542000000,0.000067134000000 +0.000015789000000,0.007325201000000,0.000026850500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000151677000000,0.000082541000000,0.000169454000000,0.000132319000000,0.000131924000000,0.008994336000000,0.000122442000000,0.000157208000000,0.000093208000000,0.000054096000000,0.000018752000000,0.000068319000000 +0.000015789000000,0.006664264000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048565000000,0.000018356500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000103480000000,0.000081750000000,0.000131134000000,0.000095973000000,0.000097554000000,0.007298733000000,0.000121652000000,0.000122837000000,0.000056861000000,0.000053306000000,0.000018751500000,0.000067924000000 +0.000015394000000,0.006854684000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000084121000000,0.000018159000000,0.000040664000000,0.000025274666667,0.000055677000000,0.000096368000000,0.000081356000000,0.000165109000000,0.000097158000000,0.000095973000000,0.007186931000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000016184000000,0.006827819000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000015591500000,0.000124417000000,0.000036332000000,0.000039084000000,0.000013028000000,0.000070689000000,0.000079775000000,0.000080171000000,0.000167084000000,0.000097158000000,0.000097158000000,0.007277795000000,0.000121256000000,0.000121257000000,0.000057256000000,0.000054492000000,0.000018949000000,0.000068318000000 +0.000015986500000,0.006811227000000,0.000026258000000,0.000013160000000,0.000039874000000,0.000016381500000,0.000088467000000,0.000018159000000,0.000039480000000,0.000014476333333,0.000054096000000,0.000081356000000,0.000080961000000,0.000169850000000,0.000097553000000,0.000097158000000,0.006956214000000,0.000157602000000,0.000122047000000,0.000056467000000,0.000054097000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006723128000000,0.000026258500000,0.000013818333333,0.000039874000000,0.000016381500000,0.000052516000000,0.000018159500000,0.000039084000000,0.000014213333333,0.000053701000000,0.000082146000000,0.000082146000000,0.000131528000000,0.000096368000000,0.000095578000000,0.007214585000000,0.000122837000000,0.000122442000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000085701000000 +0.000015394000000,0.006934091000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000052121000000,0.000018159500000,0.000058442000000,0.000013028000000,0.000053306000000,0.000081751000000,0.000122442000000,0.000170639000000,0.000096763000000,0.000097158000000,0.007441745000000,0.000121257000000,0.000121651000000,0.000056467000000,0.000053702000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.007219325000000,0.000048777000000,0.000013554666667,0.000039875000000,0.000016381500000,0.000061207000000,0.000018357000000,0.000073849000000,0.000013159666667,0.000053701000000,0.000084121000000,0.000083331000000,0.000174590000000,0.000098343000000,0.000096368000000,0.006829005000000,0.000122047000000,0.000159183000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000016184000000,0.006818733000000,0.000026455500000,0.000013159666667,0.000040665000000,0.000024875500000,0.000051331000000,0.000018159000000,0.000041455000000,0.000013291333333,0.000054096000000,0.000080566000000,0.000080566000000,0.000133109000000,0.000096368000000,0.000132714000000,0.007553548000000,0.000121652000000,0.000122837000000,0.000057257000000,0.000053307000000,0.000018949500000,0.000138640000000 +0.000015393500000,0.006996510000000,0.000026258000000,0.000014213333333,0.000039875000000,0.000029813500000,0.000050145000000,0.000018159500000,0.000053701000000,0.000013028000000,0.000054492000000,0.000119677000000,0.000100319000000,0.000341307000000,0.000133109000000,0.000096368000000,0.006853499000000,0.000121652000000,0.000122837000000,0.000057257000000,0.000053702000000,0.000041665500000,0.000068319000000 +0.000015591500000,0.006850338000000,0.000026850500000,0.000037126666667,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000073454000000,0.000013949666667,0.000053306000000,0.000079381000000,0.000101503000000,0.000132319000000,0.000097158000000,0.000095183000000,0.007016264000000,0.000122047000000,0.000121652000000,0.000056862000000,0.000054097000000,0.000054702500000,0.000067133000000 +0.000015986500000,0.006717597000000,0.000028430500000,0.000024485000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000073059000000,0.000013554666667,0.000053307000000,0.000081751000000,0.000084516000000,0.000199874000000,0.000097159000000,0.000097553000000,0.007286486000000,0.000122047000000,0.000122442000000,0.000056467000000,0.000053702000000,0.000045616000000,0.000067528000000 +0.000016184000000,0.007168363000000,0.000026455500000,0.000043053000000,0.000077801000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000055677000000,0.000013423000000,0.000054886000000,0.000083331000000,0.000078985000000,0.000133108000000,0.000095973000000,0.000095973000000,0.007389992000000,0.000138244000000,0.000121652000000,0.000056862000000,0.000053702000000,0.000020727000000,0.000067133000000 +0.000015394000000,0.007421201000000,0.000026851000000,0.000036863333333,0.000040270000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000052911000000,0.000079775000000,0.000080960000000,0.000168664000000,0.000141801000000,0.000096763000000,0.006945152000000,0.000121256000000,0.000120862000000,0.000056862000000,0.000054097000000,0.000020332000000,0.000067529000000 +0.000015591000000,0.007159276000000,0.000026850500000,0.000018427333333,0.000040270000000,0.000016381500000,0.000048170000000,0.000018752000000,0.000039874000000,0.000013159666667,0.000058047000000,0.000080961000000,0.000082145000000,0.000202640000000,0.000097553000000,0.000095183000000,0.006964115000000,0.000122837000000,0.000157602000000,0.000056862000000,0.000053702000000,0.000025863000000,0.000067529000000 +0.000015986500000,0.006853103000000,0.000026455500000,0.000025670000000,0.000041455000000,0.000016184000000,0.000049751000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000054492000000,0.000079380000000,0.000081751000000,0.000132319000000,0.000099923000000,0.000096763000000,0.006893794000000,0.000122837000000,0.000121652000000,0.000077405000000,0.000090047000000,0.000018554500000,0.000067924000000 +0.000015591000000,0.006964906000000,0.000026851000000,0.000013949666667,0.000039875000000,0.000016381500000,0.000048566000000,0.000018356500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079380000000,0.000179331000000,0.000167479000000,0.000095973000000,0.000096763000000,0.006779227000000,0.000121257000000,0.000122047000000,0.000130343000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000016184000000,0.006914338000000,0.000026455500000,0.000013818000000,0.000040665000000,0.000015591500000,0.000048171000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000092022000000,0.000082541000000,0.000259133000000,0.000132714000000,0.000095973000000,0.000117306000000,0.006789103000000,0.000122837000000,0.000122442000000,0.000056862000000,0.000054492000000,0.000019344500000,0.000067924000000 +0.000015393500000,0.007129646000000,0.000026455500000,0.000017768666667,0.000040270000000,0.000016381500000,0.000120072000000,0.000018159500000,0.000039480000000,0.000014213000000,0.000055676000000,0.000084516000000,0.000135479000000,0.000167479000000,0.000188022000000,0.000095972000000,0.007256461000000,0.000122442000000,0.000123627000000,0.000056862000000,0.000054887000000,0.000019147000000,0.000068319000000 +0.000015591500000,0.007020609000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000062788000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000079380000000,0.000088071000000,0.000168270000000,0.000096368000000,0.000097158000000,0.007700906000000,0.000158392000000,0.000122442000000,0.000057652000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.007203128000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016382000000,0.000048961000000,0.000018356500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000120861000000,0.000094393000000,0.000260319000000,0.000096763000000,0.000095182000000,0.006803325000000,0.000121652000000,0.000122442000000,0.000057256000000,0.000053306000000,0.000019147000000,0.000104664000000 +0.000024875000000,0.006962930000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013949666667,0.000053307000000,0.000081751000000,0.000082936000000,0.000167084000000,0.000096763000000,0.000098343000000,0.007282930000000,0.000121652000000,0.000122047000000,0.000089257000000,0.000053307000000,0.000019344500000,0.000067528000000 +0.000024480500000,0.006700610000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081356000000,0.000118097000000,0.000133504000000,0.000096368000000,0.000097158000000,0.006994141000000,0.000123232000000,0.000158392000000,0.000056861000000,0.000055677000000,0.000020332500000,0.000067528000000 +0.000015591500000,0.007125301000000,0.000035344500000,0.000013028000000,0.000041059000000,0.000016381500000,0.000048170000000,0.000018357000000,0.000039084000000,0.000025275000000,0.000053702000000,0.000081751000000,0.000079776000000,0.000168664000000,0.000096763000000,0.000095973000000,0.006875227000000,0.000122837000000,0.000120467000000,0.000056862000000,0.000053306000000,0.000019740000000,0.000067924000000 +0.000015591000000,0.006713647000000,0.000026060500000,0.000013686333333,0.000039874000000,0.000015788500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000083331000000,0.000132318000000,0.000095973000000,0.000097158000000,0.007083819000000,0.000122837000000,0.000122047000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006828610000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000053307000000,0.000081356000000,0.000083331000000,0.000212121000000,0.000096763000000,0.000099134000000,0.006970832000000,0.000122442000000,0.000122442000000,0.000056467000000,0.000053306000000,0.000029023500000,0.000067924000000 +0.000015591500000,0.006940412000000,0.000026060500000,0.000013028000000,0.000039874000000,0.000015986500000,0.000050146000000,0.000018159500000,0.000039874000000,0.000013028000000,0.000053306000000,0.000079776000000,0.000080961000000,0.000164319000000,0.000132318000000,0.000133109000000,0.007213004000000,0.000201849000000,0.000122442000000,0.000057652000000,0.000053701000000,0.000026850500000,0.000067529000000 +0.000015196000000,0.007337449000000,0.000026258000000,0.000013160000000,0.000040665000000,0.000016382000000,0.000048960000000,0.000039690000000,0.000039084000000,0.000013159666667,0.000053701000000,0.000079380000000,0.000081751000000,0.000133899000000,0.000096763000000,0.000096763000000,0.006964510000000,0.000136269000000,0.000122442000000,0.000057257000000,0.000053306000000,0.000019739500000,0.000067133000000 +0.000015394000000,0.007032856000000,0.000037715000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000080170000000,0.000080566000000,0.000169849000000,0.000095973000000,0.000097159000000,0.007055770000000,0.000123232000000,0.000121652000000,0.000111775000000,0.000054096000000,0.000019739500000,0.000067528000000 +0.000015591500000,0.007094090000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048961000000,0.000018554500000,0.000040664000000,0.000013291666667,0.000053306000000,0.000082146000000,0.000080566000000,0.000134294000000,0.000096368000000,0.000097553000000,0.006734190000000,0.000122838000000,0.000246491000000,0.000060813000000,0.000055677000000,0.000018949000000,0.000067133000000 +0.000015986500000,0.007233547000000,0.000026455500000,0.000013028000000,0.000040665000000,0.000015788500000,0.000047776000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053702000000,0.000080171000000,0.000079776000000,0.000166294000000,0.000096368000000,0.000096763000000,0.006723128000000,0.000122837000000,0.000130738000000,0.000062788000000,0.000054096000000,0.000018949500000,0.000066343000000 +0.000025468000000,0.007333498000000,0.000026060500000,0.000013159666667,0.000041455000000,0.000016184000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000055281000000,0.000080961000000,0.000081751000000,0.000132714000000,0.000097158000000,0.000097158000000,0.007045893000000,0.000120861000000,0.000122442000000,0.000061208000000,0.000128368000000,0.000019147000000,0.000067529000000 +0.000016974000000,0.007363522000000,0.000026653000000,0.000013159666667,0.000109800000000,0.000015591500000,0.000048565000000,0.000018356500000,0.000039084000000,0.000013423000000,0.000087281000000,0.000081356000000,0.000103084000000,0.000202639000000,0.000098344000000,0.000097158000000,0.006962140000000,0.000122837000000,0.000121652000000,0.000060418000000,0.000163528000000,0.000019147000000,0.000106245000000 +0.000017171500000,0.007780708000000,0.000026258500000,0.000013159666667,0.000054492000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000040665000000,0.000013554666667,0.000069109000000,0.000081750000000,0.000079776000000,0.000164713000000,0.000097553000000,0.000097158000000,0.007199572000000,0.000172615000000,0.000121256000000,0.000061603000000,0.000144171000000,0.000018752000000,0.000138639000000 +0.000022505000000,0.007175473000000,0.000027443000000,0.000013160000000,0.000040270000000,0.000033764500000,0.000048961000000,0.000018159500000,0.000039480000000,0.000013028000000,0.000053307000000,0.000081750000000,0.000081751000000,0.000132319000000,0.000096763000000,0.000096368000000,0.006967671000000,0.000122047000000,0.000121257000000,0.000060418000000,0.000073455000000,0.000018949500000,0.000071479000000 +0.000015591500000,0.007442535000000,0.000026060500000,0.000013028000000,0.000039875000000,0.000016381500000,0.000084516000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000089652000000,0.000082146000000,0.000164713000000,0.000133504000000,0.000133503000000,0.007083819000000,0.000121652000000,0.000157998000000,0.000060812000000,0.000056861000000,0.000018752000000,0.000084516000000 +0.000015986500000,0.007382090000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000015591500000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000054097000000,0.000082146000000,0.000078985000000,0.000135874000000,0.000097158000000,0.000096763000000,0.006855474000000,0.000121652000000,0.000121256000000,0.000060417000000,0.000068714000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.007051820000000,0.000026653000000,0.000013028000000,0.000040270000000,0.000015591500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013160000000,0.000054096000000,0.000079775000000,0.000081355000000,0.000172615000000,0.000097553000000,0.000097553000000,0.007085399000000,0.000122047000000,0.000122047000000,0.000062393000000,0.000054097000000,0.000018752000000,0.000067134000000 +0.000015789000000,0.007287671000000,0.000044431000000,0.000013950000000,0.000040269000000,0.000015591500000,0.000049356000000,0.000018752000000,0.000039085000000,0.000013423333333,0.000053306000000,0.000079380000000,0.000079380000000,0.000313257000000,0.000095973000000,0.000097553000000,0.006900511000000,0.000123627000000,0.000121257000000,0.000065158000000,0.000054887000000,0.000018752000000,0.000071084000000 +0.000015394000000,0.007251721000000,0.000026258000000,0.000014608333333,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013291666667,0.000053701000000,0.000080566000000,0.000082145000000,0.000134689000000,0.000095578000000,0.000095973000000,0.007051424000000,0.000122047000000,0.000122442000000,0.000134294000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015591500000,0.007175868000000,0.000034554500000,0.000013028333333,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000080171000000,0.000080960000000,0.000170244000000,0.000097553000000,0.000096368000000,0.006736560000000,0.000171430000000,0.000122837000000,0.000060022000000,0.000073454000000,0.000019344500000,0.000067133000000 +0.000015394000000,0.006901696000000,0.000046208500000,0.000013423000000,0.000040269000000,0.000015591500000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000053306000000,0.000117307000000,0.000079775000000,0.000133899000000,0.000097159000000,0.000097158000000,0.007130832000000,0.000121652000000,0.000176960000000,0.000141405000000,0.000053306000000,0.000019147000000,0.000067134000000 +0.000015591500000,0.007405794000000,0.000028036000000,0.000013028000000,0.000039874000000,0.000016382000000,0.000048961000000,0.000018357000000,0.000039479000000,0.000013159666667,0.000054492000000,0.000079381000000,0.000081750000000,0.000170245000000,0.000095578000000,0.000097158000000,0.007030881000000,0.000122442000000,0.000157602000000,0.000060417000000,0.000090047000000,0.000019146500000,0.000066344000000 +0.000015986500000,0.007008757000000,0.000028036000000,0.000013291333333,0.000040269000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039085000000,0.000013159666667,0.000054097000000,0.000082146000000,0.000120071000000,0.000180516000000,0.000097158000000,0.000095973000000,0.006740116000000,0.000121652000000,0.000121257000000,0.000060417000000,0.000054097000000,0.000018752000000,0.000136664000000 +0.000015591500000,0.007731720000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000016184000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000019744000000,0.000053701000000,0.000080171000000,0.000082146000000,0.000168270000000,0.000102689000000,0.000170639000000,0.006806091000000,0.000121651000000,0.000121651000000,0.000060022000000,0.000053701000000,0.000019739500000,0.000083331000000 +0.000015591500000,0.007179424000000,0.000028233000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000018690333333,0.000053701000000,0.000085702000000,0.000081751000000,0.000165109000000,0.000099133000000,0.000096763000000,0.006976363000000,0.000120862000000,0.000120467000000,0.000097158000000,0.000053702000000,0.000019344500000,0.000067134000000 +0.000033566500000,0.007632954000000,0.000027838500000,0.000014476333333,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000082541000000,0.000079381000000,0.000132713000000,0.000097158000000,0.000097948000000,0.007111868000000,0.000121257000000,0.000122442000000,0.000097158000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.007387226000000,0.000054307500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018357000000,0.000039084000000,0.000013291333333,0.000086887000000,0.000079776000000,0.000079381000000,0.000164714000000,0.000096763000000,0.000095973000000,0.006766585000000,0.000157997000000,0.000123232000000,0.000060417000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000016184000000,0.006940807000000,0.000045616000000,0.000013028000000,0.000040269000000,0.000015986500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000065948000000,0.000082541000000,0.000079380000000,0.000134689000000,0.000097553000000,0.000097158000000,0.006819128000000,0.000122047000000,0.000124023000000,0.000084911000000,0.000053701000000,0.000037320000000,0.000067133000000 +0.000015394000000,0.006909597000000,0.000051739500000,0.000013159666667,0.000039874000000,0.000016382000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000079776000000,0.000081751000000,0.000204220000000,0.000096367000000,0.000097553000000,0.006900116000000,0.000121257000000,0.000176566000000,0.000060812000000,0.000053701000000,0.000018949000000,0.000065948000000 +0.000015986500000,0.007167177000000,0.000034752000000,0.000013159666667,0.000040270000000,0.000015789000000,0.000047775000000,0.000035937500000,0.000039084000000,0.000013028000000,0.000053701000000,0.000080566000000,0.000082146000000,0.000137454000000,0.000097158000000,0.000096763000000,0.006924214000000,0.000123232000000,0.000122047000000,0.000097158000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015591000000,0.006933696000000,0.000028036000000,0.000013028333333,0.000040270000000,0.000015986500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000082541000000,0.000081751000000,0.000171035000000,0.000096368000000,0.000096368000000,0.006843622000000,0.000121652000000,0.000121652000000,0.000119676000000,0.000053702000000,0.000019147000000,0.000066739000000 +0.000015789000000,0.006936857000000,0.000028430500000,0.000014740000000,0.000076220000000,0.000016382000000,0.000048565000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000059628000000,0.000114540000000,0.000079776000000,0.000171825000000,0.000133109000000,0.000138640000000,0.006911178000000,0.000121257000000,0.000121256000000,0.000100319000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.006985054000000,0.000028628500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000120072000000,0.000018159000000,0.000040664000000,0.000014081666667,0.000053306000000,0.000095973000000,0.000081751000000,0.000131528000000,0.000097949000000,0.000113355000000,0.007135573000000,0.000122442000000,0.000121257000000,0.000078985000000,0.000054097000000,0.000018949500000,0.000068318000000 +0.000015789000000,0.006811227000000,0.000027838500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018554000000,0.000039479000000,0.000013423333333,0.000053702000000,0.000080171000000,0.000097553000000,0.000164714000000,0.000096763000000,0.000095973000000,0.006792659000000,0.000191578000000,0.000122442000000,0.000062392000000,0.000053307000000,0.000018949500000,0.000103084000000 +0.000015394000000,0.006772510000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039875000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000083331000000,0.000169850000000,0.000097158000000,0.000096763000000,0.007272658000000,0.000133899000000,0.000122047000000,0.000074245000000,0.000054492000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006882338000000,0.000027838500000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039875000000,0.000013291333333,0.000052911000000,0.000080565000000,0.000081355000000,0.000240171000000,0.000096763000000,0.000096368000000,0.006797005000000,0.000123627000000,0.000158393000000,0.000060418000000,0.000053307000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.007104362000000,0.000027838500000,0.000013554666667,0.000039874000000,0.000015591500000,0.000048960000000,0.000018159500000,0.000041060000000,0.000013291333333,0.000053702000000,0.000081355000000,0.000079380000000,0.000189602000000,0.000096763000000,0.000095973000000,0.006849548000000,0.000122838000000,0.000122443000000,0.000127183000000,0.000053702000000,0.000018752000000,0.000066739000000 +0.000015591500000,0.006902091000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015788500000,0.000048170000000,0.000018159500000,0.000039875000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000079775000000,0.000131923000000,0.000096763000000,0.000097158000000,0.006965695000000,0.000123232000000,0.000122442000000,0.000061208000000,0.000089652000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007177449000000,0.000028035500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048566000000,0.000017961500000,0.000039084000000,0.000013028000000,0.000057257000000,0.000081355000000,0.000081355000000,0.000186047000000,0.000096763000000,0.000097553000000,0.007280164000000,0.000122047000000,0.000122442000000,0.000085306000000,0.000054887000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.006950288000000,0.000027838000000,0.000013159666667,0.000040270000000,0.000032974000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000053307000000,0.000079380000000,0.000078985000000,0.000171824000000,0.000097158000000,0.000095973000000,0.006891029000000,0.000121257000000,0.000121652000000,0.000060417000000,0.000054492000000,0.000018752000000,0.000121652000000 +0.000015986500000,0.006834141000000,0.000037715000000,0.000013159666667,0.000040270000000,0.000023097500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000054886000000,0.000124417000000,0.000086096000000,0.000168664000000,0.000131923000000,0.000157603000000,0.006898536000000,0.000158392000000,0.000120861000000,0.000099133000000,0.000053307000000,0.000018752000000,0.000084121000000 +0.000016184000000,0.007048659000000,0.000028035500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000053702000000,0.000079381000000,0.000084911000000,0.000132319000000,0.000097553000000,0.000102689000000,0.006954634000000,0.000123232000000,0.000122047000000,0.000112565000000,0.000054492000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.006792264000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000016579500000,0.000049355000000,0.000018159500000,0.000039874000000,0.000013028000000,0.000070689000000,0.000079380000000,0.000079381000000,0.000167084000000,0.000095973000000,0.000098738000000,0.006858239000000,0.000122442000000,0.000122047000000,0.000078591000000,0.000053701000000,0.000018949500000,0.000068319000000 +0.000016184000000,0.006790684000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000052911000000,0.000080170000000,0.000116516000000,0.000167874000000,0.000096763000000,0.000096763000000,0.007096461000000,0.000121652000000,0.000156812000000,0.000062788000000,0.000053306000000,0.000019542000000,0.000103479000000 +0.000015394000000,0.007339819000000,0.000027640500000,0.000013291333333,0.000040269000000,0.000016184000000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013423333333,0.000052912000000,0.000079380000000,0.000079380000000,0.000134294000000,0.000095973000000,0.000096368000000,0.007092511000000,0.000122442000000,0.000122837000000,0.000060417000000,0.000054096000000,0.000018752000000,0.000081751000000 +0.000015789000000,0.007203128000000,0.000027641000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000019349000000,0.000053306000000,0.000079380000000,0.000079775000000,0.000243725000000,0.000095973000000,0.000095973000000,0.007213004000000,0.000122047000000,0.000124023000000,0.000097553000000,0.000053306000000,0.000019739500000,0.000067529000000 +0.000015789000000,0.006713252000000,0.000027838500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000050146000000,0.000018357000000,0.000039479000000,0.000018690666667,0.000053306000000,0.000081750000000,0.000079775000000,0.000133109000000,0.000097158000000,0.000097158000000,0.006745252000000,0.000124022000000,0.000122047000000,0.000060022000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000016184000000,0.007238683000000,0.000027641000000,0.000013554666667,0.000039874000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000040270000000,0.000013555000000,0.000053307000000,0.000079380000000,0.000082936000000,0.000166294000000,0.000096763000000,0.000096763000000,0.006788313000000,0.000170245000000,0.000123232000000,0.000090442000000,0.000054096000000,0.000019147000000,0.000065948000000 +0.000015986500000,0.007833646000000,0.000028036000000,0.000013818333333,0.000040269000000,0.000016381500000,0.000082541000000,0.000018357000000,0.000039084000000,0.000013291666667,0.000054491000000,0.000084121000000,0.000080170000000,0.000132714000000,0.000097159000000,0.000096763000000,0.007080659000000,0.000122047000000,0.000120862000000,0.000094787000000,0.000053306000000,0.000018752000000,0.000066738000000 +0.000015789000000,0.008227917000000,0.000028233500000,0.000013555000000,0.000040270000000,0.000016579000000,0.000084911000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000054096000000,0.000081356000000,0.000082541000000,0.000164713000000,0.000133899000000,0.000178935000000,0.006993350000000,0.000122837000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000037122500000,0.000066739000000 +0.000015394000000,0.007187720000000,0.000028233500000,0.000013160000000,0.000040270000000,0.000016184000000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000055282000000,0.000082541000000,0.000081356000000,0.000163133000000,0.000185257000000,0.000096368000000,0.006987029000000,0.000127973000000,0.000158788000000,0.000060418000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.007374189000000,0.000027838000000,0.000013159666667,0.000039875000000,0.000016579500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000054096000000,0.000080170000000,0.000088466000000,0.000184072000000,0.000112961000000,0.000097949000000,0.006850338000000,0.000122047000000,0.000122047000000,0.000089256000000,0.000053307000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.006877992000000,0.000028035500000,0.000013028000000,0.000081751000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039874000000,0.000013423333333,0.000053307000000,0.000082541000000,0.000079380000000,0.000165898000000,0.000095973000000,0.000096763000000,0.007209054000000,0.000122837000000,0.000122047000000,0.000076615000000,0.000090047000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.006873646000000,0.000028035500000,0.000013160000000,0.000106640000000,0.000016381500000,0.000049751000000,0.000035147000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000081356000000,0.000080170000000,0.000135479000000,0.000097158000000,0.000097158000000,0.006810437000000,0.000122047000000,0.000122442000000,0.000091232000000,0.000053702000000,0.000018752000000,0.000067923000000 +0.000015393500000,0.006912362000000,0.000027838000000,0.000013159666667,0.000075429000000,0.000015591500000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000054097000000,0.000081751000000,0.000079380000000,0.000242541000000,0.000095578000000,0.000096368000000,0.006930930000000,0.000233060000000,0.000122047000000,0.000091627000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006795820000000,0.000028431000000,0.000013028000000,0.000127973000000,0.000016381500000,0.000049750000000,0.000018554500000,0.000040269000000,0.000013291333333,0.000053701000000,0.000081356000000,0.000081356000000,0.000169059000000,0.000095973000000,0.000097158000000,0.006830980000000,0.000247282000000,0.000161554000000,0.000064368000000,0.000053702000000,0.000018949500000,0.000086887000000 +0.000015986500000,0.006981103000000,0.000027641000000,0.000013160000000,0.000125207000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000052911000000,0.000079380000000,0.000083331000000,0.000133108000000,0.000096763000000,0.000095973000000,0.007007573000000,0.000139430000000,0.000129553000000,0.000061603000000,0.000054097000000,0.000018752000000,0.000066343000000 +0.000015986500000,0.007046289000000,0.000028036000000,0.000013159666667,0.000109405000000,0.000016184000000,0.000048566000000,0.000028233500000,0.000039479000000,0.000013686333333,0.000073059000000,0.000080961000000,0.000079380000000,0.000205405000000,0.000132319000000,0.000133108000000,0.006988609000000,0.000122442000000,0.000215676000000,0.000060417000000,0.000054097000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.007246980000000,0.000028233500000,0.000013028000000,0.000110590000000,0.000016381500000,0.000049356000000,0.000025863000000,0.000039084000000,0.000013554666667,0.000151677000000,0.000081750000000,0.000081751000000,0.000131923000000,0.000097553000000,0.000096763000000,0.007182980000000,0.000122047000000,0.000121257000000,0.000061207000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006760264000000,0.000027838500000,0.000013160000000,0.000043825000000,0.000016184000000,0.000050145000000,0.000019147000000,0.000041060000000,0.000013028000000,0.000067924000000,0.000081750000000,0.000079380000000,0.000167084000000,0.000096763000000,0.000095973000000,0.006799375000000,0.000122442000000,0.000121652000000,0.000089652000000,0.000053306000000,0.000019937000000,0.000067924000000 +0.000015394000000,0.006701400000000,0.000028233500000,0.000013028000000,0.000056071000000,0.000016381500000,0.000047775000000,0.000024875500000,0.000039085000000,0.000013423000000,0.000055281000000,0.000080565000000,0.000082541000000,0.000138245000000,0.000097159000000,0.000096368000000,0.007145054000000,0.000159183000000,0.000120862000000,0.000060022000000,0.000058442000000,0.000018752000000,0.000069504000000 +0.000015591500000,0.006918683000000,0.000027640500000,0.000013159666667,0.000074245000000,0.000015591500000,0.000049751000000,0.000018159000000,0.000039874000000,0.000013291333333,0.000053702000000,0.000080961000000,0.000080961000000,0.000168664000000,0.000096368000000,0.000096763000000,0.006820709000000,0.000122442000000,0.000122837000000,0.000060812000000,0.000053702000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006833351000000,0.000027838000000,0.000013291666667,0.000056466000000,0.000016381500000,0.000052912000000,0.000017961500000,0.000039084000000,0.000013818333333,0.000053306000000,0.000242146000000,0.000081356000000,0.000161948000000,0.000098343000000,0.000095973000000,0.006752758000000,0.000122442000000,0.000122047000000,0.000089652000000,0.000053702000000,0.000018949500000,0.000067924000000 +0.000016184000000,0.006721153000000,0.000027640500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054492000000,0.000216862000000,0.000102689000000,0.000169849000000,0.000095973000000,0.000096763000000,0.006891029000000,0.000122443000000,0.000123232000000,0.000061208000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006919474000000,0.000027838000000,0.000013159666667,0.000040664000000,0.000026258000000,0.000049356000000,0.000018554500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000082145000000,0.000081356000000,0.000165503000000,0.000095973000000,0.000096763000000,0.006926584000000,0.000122442000000,0.000157997000000,0.000060417000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007345350000000,0.000028233500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000052911000000,0.000082146000000,0.000083726000000,0.000135874000000,0.000097158000000,0.000095973000000,0.007186536000000,0.000122443000000,0.000122047000000,0.000060417000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006904461000000,0.000028036000000,0.000013423000000,0.000040269000000,0.000016381500000,0.000066738000000,0.000018159000000,0.000039479000000,0.000037127000000,0.000054096000000,0.000082541000000,0.000079380000000,0.000168269000000,0.000155232000000,0.000133504000000,0.006822684000000,0.000122837000000,0.000122047000000,0.000061207000000,0.000054097000000,0.000018752000000,0.000086887000000 +0.000015591000000,0.007831671000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000063578000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000083726000000,0.000079775000000,0.000130738000000,0.000111775000000,0.000096368000000,0.006902881000000,0.000164714000000,0.000122047000000,0.000060418000000,0.000053702000000,0.000018752000000,0.000104664000000 +0.000015394000000,0.006788313000000,0.000028233000000,0.000020402333333,0.000040269000000,0.000015789000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000072270000000,0.000081356000000,0.000079775000000,0.000299429000000,0.000095973000000,0.000096368000000,0.006823079000000,0.000124022000000,0.000122442000000,0.000060813000000,0.000108615000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.006684412000000,0.000028233500000,0.000013159666667,0.000040269000000,0.000016776500000,0.000050146000000,0.000018159500000,0.000040269000000,0.000013554666667,0.000072269000000,0.000081356000000,0.000081356000000,0.000166294000000,0.000095973000000,0.000096368000000,0.006768955000000,0.000121256000000,0.000122442000000,0.000091627000000,0.000069109000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.006993350000000,0.000046603500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000052121000000,0.000018159500000,0.000039480000000,0.000013554666667,0.000088467000000,0.000079775000000,0.000081355000000,0.000133109000000,0.000095973000000,0.000095973000000,0.007092510000000,0.000121652000000,0.000122442000000,0.000100318000000,0.000053306000000,0.000028628500000,0.000067924000000 +0.000015591000000,0.007118980000000,0.000027640500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048960000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000069504000000,0.000083726000000,0.000082936000000,0.000170640000000,0.000135084000000,0.000097948000000,0.006928165000000,0.000121257000000,0.000178541000000,0.000076220000000,0.000053306000000,0.000019542000000,0.000067529000000 +0.000015394000000,0.006691524000000,0.000027640500000,0.000013159666667,0.000040664000000,0.000016184000000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053307000000,0.000082541000000,0.000080171000000,0.000133503000000,0.000126788000000,0.000096368000000,0.007395523000000,0.000121652000000,0.000121652000000,0.000096368000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006746042000000,0.000028035500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018752000000,0.000039084000000,0.000026065000000,0.000055677000000,0.000079380000000,0.000116516000000,0.000167874000000,0.000097158000000,0.000095973000000,0.007246190000000,0.000121257000000,0.000121652000000,0.000060418000000,0.000053702000000,0.000018752000000,0.000067924000000 +0.000015789000000,0.008532510000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000014345000000,0.000053306000000,0.000082541000000,0.000082146000000,0.000260318000000,0.000131528000000,0.000097158000000,0.007103177000000,0.000158788000000,0.000121257000000,0.000060418000000,0.000053702000000,0.000019739500000,0.000067924000000 +0.000016184000000,0.007819029000000,0.000028628500000,0.000013686333333,0.000040269000000,0.000016579000000,0.000049355000000,0.000018159500000,0.000039874000000,0.000014213000000,0.000053702000000,0.000079775000000,0.000127578000000,0.000186442000000,0.000095973000000,0.000174591000000,0.006834140000000,0.000121257000000,0.000122047000000,0.000061603000000,0.000053307000000,0.000018751500000,0.000067923000000 +0.000015393500000,0.006995325000000,0.000028233500000,0.000013159666667,0.000040664000000,0.000016381500000,0.000048960000000,0.000041270000000,0.000039084000000,0.000018164000000,0.000053306000000,0.000079380000000,0.000084516000000,0.000182491000000,0.000097158000000,0.000188022000000,0.007177844000000,0.000123232000000,0.000122837000000,0.000077800000000,0.000053702000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.007189300000000,0.000028036000000,0.000019744333333,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053702000000,0.000080171000000,0.000081751000000,0.000133109000000,0.000095973000000,0.000143380000000,0.006879177000000,0.000121652000000,0.000121257000000,0.000060812000000,0.000054887000000,0.000018949000000,0.000066738000000 +0.000015591000000,0.008109794000000,0.000028036000000,0.000018427333333,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000014213333333,0.000053306000000,0.000080961000000,0.000081356000000,0.000166689000000,0.000098344000000,0.000097158000000,0.007295572000000,0.000121257000000,0.000268220000000,0.000060417000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000033171500000,0.006992165000000,0.000028036000000,0.000017900333333,0.000039875000000,0.000016382000000,0.000048960000000,0.000026456000000,0.000040269000000,0.000013028000000,0.000054097000000,0.000082936000000,0.000081750000000,0.000135874000000,0.000096763000000,0.000097158000000,0.006765004000000,0.000122442000000,0.000381602000000,0.000125603000000,0.000053701000000,0.000018752000000,0.000065948000000 +0.000015986500000,0.007190091000000,0.000029023500000,0.000013160000000,0.000040269000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053701000000,0.000082146000000,0.000082936000000,0.000245701000000,0.000095973000000,0.000096763000000,0.006824263000000,0.000122442000000,0.000366590000000,0.000095578000000,0.000053701000000,0.000018949500000,0.000104269000000 +0.000015591500000,0.006825449000000,0.000027838500000,0.000013159666667,0.000043035000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000080961000000,0.000079776000000,0.000165899000000,0.000097553000000,0.000096763000000,0.006981103000000,0.000141010000000,0.000356714000000,0.000093603000000,0.000053306000000,0.000019542000000,0.000066739000000 +0.000015986500000,0.007187325000000,0.000028035500000,0.000013159666667,0.000042244000000,0.000016579000000,0.000049751000000,0.000018159000000,0.000039085000000,0.000013423333333,0.000053702000000,0.000081356000000,0.000082541000000,0.000135480000000,0.000096368000000,0.000131923000000,0.006898930000000,0.000121257000000,0.000209751000000,0.000062787000000,0.000053306000000,0.000018751500000,0.000066739000000 +0.000015394000000,0.006859029000000,0.000028035500000,0.000013028000000,0.000057652000000,0.000016381500000,0.000103479000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000053306000000,0.000079381000000,0.000117307000000,0.000189998000000,0.000114146000000,0.000096368000000,0.006728264000000,0.000121652000000,0.000146541000000,0.000064763000000,0.000053306000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.007286091000000,0.000028233500000,0.000013159666667,0.000039875000000,0.000016381500000,0.000064763000000,0.000018554500000,0.000040269000000,0.000013291666667,0.000053306000000,0.000079776000000,0.000081356000000,0.000132318000000,0.000097158000000,0.000096368000000,0.007083424000000,0.000121652000000,0.000134294000000,0.000062393000000,0.000089652000000,0.000018751500000,0.000067528000000 +0.000015986500000,0.006919474000000,0.000028233500000,0.000013028000000,0.000040270000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000028567333333,0.000053307000000,0.000080566000000,0.000079776000000,0.000236615000000,0.000097553000000,0.000095577000000,0.007178634000000,0.000122047000000,0.000183281000000,0.000080170000000,0.000053307000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006944757000000,0.000027838500000,0.000013028000000,0.000039874000000,0.000016579000000,0.000049356000000,0.000018554000000,0.000039084000000,0.000013423333333,0.000146145000000,0.000082936000000,0.000080961000000,0.000134294000000,0.000097948000000,0.000095973000000,0.006770141000000,0.000120861000000,0.000133899000000,0.000062788000000,0.000053702000000,0.000018751500000,0.000067133000000 +0.000015591500000,0.007154535000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000016579500000,0.000047775000000,0.000018357000000,0.000039479000000,0.000013028000000,0.000103084000000,0.000082936000000,0.000081355000000,0.000162343000000,0.000096763000000,0.000095973000000,0.007086585000000,0.000122047000000,0.000133503000000,0.000062393000000,0.000054887000000,0.000018752000000,0.000067924000000 +0.000016184000000,0.006731425000000,0.000028233500000,0.000013818000000,0.000040269000000,0.000015591500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000056467000000,0.000087281000000,0.000081751000000,0.000168664000000,0.000095973000000,0.000096763000000,0.006901696000000,0.000121257000000,0.000133899000000,0.000061998000000,0.000054491000000,0.000018751500000,0.000068319000000 +0.000015591500000,0.007014288000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000015789000000,0.000048566000000,0.000018357000000,0.000039479000000,0.000013291333333,0.000053307000000,0.000082146000000,0.000081750000000,0.000134689000000,0.000096763000000,0.000097158000000,0.006867325000000,0.000157997000000,0.000132714000000,0.000061998000000,0.000054096000000,0.000019542000000,0.000067529000000 +0.000015591500000,0.006949104000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000033567000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054491000000,0.000080171000000,0.000080961000000,0.000170244000000,0.000095973000000,0.000095973000000,0.006992955000000,0.000122047000000,0.000133108000000,0.000070294000000,0.000054096000000,0.000019147000000,0.000073059000000 +0.000016184000000,0.007520757000000,0.000027641000000,0.000013028000000,0.000040269000000,0.000017567000000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000052912000000,0.000081356000000,0.000079776000000,0.000168664000000,0.000097158000000,0.000133503000000,0.007160066000000,0.000120862000000,0.000133899000000,0.000070294000000,0.000053701000000,0.000018751500000,0.000105059000000 +0.000015394000000,0.006791473000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049355000000,0.000017961500000,0.000039479000000,0.000013160000000,0.000052911000000,0.000085702000000,0.000080961000000,0.000169059000000,0.000131924000000,0.000096763000000,0.006855079000000,0.000124022000000,0.000195133000000,0.000069504000000,0.000054096000000,0.000018752000000,0.000066343000000 +0.000016184000000,0.007151770000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049751000000,0.000036529500000,0.000039084000000,0.000013291333333,0.000052911000000,0.000084911000000,0.000081356000000,0.000167084000000,0.000095973000000,0.000096368000000,0.006957005000000,0.000121256000000,0.000133899000000,0.000094788000000,0.000053306000000,0.000036529500000,0.000067529000000 +0.000015394000000,0.006844412000000,0.000029813500000,0.000013554666667,0.000039874000000,0.000015591500000,0.000048961000000,0.000018357000000,0.000039084000000,0.000013554666667,0.000054886000000,0.000085306000000,0.000151282000000,0.000133503000000,0.000097158000000,0.000097158000000,0.007974288000000,0.000122047000000,0.000133109000000,0.000076220000000,0.000053306000000,0.000026060500000,0.000067529000000 +0.000015986500000,0.006785153000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000049355000000,0.000018554500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000082541000000,0.000079775000000,0.000165109000000,0.000096763000000,0.000096763000000,0.007032856000000,0.000120862000000,0.000133899000000,0.000063578000000,0.000054096000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.007013893000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000081750000000,0.000080566000000,0.000130343000000,0.000097158000000,0.000097553000000,0.007389202000000,0.000158787000000,0.000134689000000,0.000061998000000,0.000054887000000,0.000018752000000,0.000067529000000 +0.000015591000000,0.007137943000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000018159000000,0.000039480000000,0.000013159666667,0.000053701000000,0.000078985000000,0.000081356000000,0.000247281000000,0.000095973000000,0.000097158000000,0.006972017000000,0.000121257000000,0.000133504000000,0.000062392000000,0.000053702000000,0.000018752000000,0.000067923000000 +0.000015394000000,0.006746437000000,0.000028035500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000054491000000,0.000080171000000,0.000079380000000,0.000133108000000,0.000097158000000,0.000097553000000,0.007301103000000,0.000158393000000,0.000179331000000,0.000062393000000,0.000054097000000,0.000019147000000,0.000067923000000 +0.000015591500000,0.006878387000000,0.000028233000000,0.000013159666667,0.000040270000000,0.000015591500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000128368000000,0.000081356000000,0.000079776000000,0.000164714000000,0.000096763000000,0.000095973000000,0.006804906000000,0.000135874000000,0.000133899000000,0.000093603000000,0.000053702000000,0.000019344500000,0.000066738000000 +0.000015789000000,0.007663374000000,0.000028035500000,0.000013159666667,0.000040270000000,0.000015591500000,0.000050936000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000085306000000,0.000081356000000,0.000168270000000,0.000095973000000,0.000133504000000,0.006709301000000,0.000122442000000,0.000148516000000,0.000069109000000,0.000090047000000,0.000019147000000,0.000066739000000 +0.000015591500000,0.007013104000000,0.000028233500000,0.000013028000000,0.000040665000000,0.000015789000000,0.000122442000000,0.000018357000000,0.000041060000000,0.000014213333333,0.000053306000000,0.000080171000000,0.000088467000000,0.000133109000000,0.000142986000000,0.000096368000000,0.007024955000000,0.000121257000000,0.000128763000000,0.000075825000000,0.000054492000000,0.000019147000000,0.000067529000000 +0.000015788500000,0.007136362000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000060417000000,0.000013159666667,0.000058837000000,0.000081356000000,0.000079380000000,0.000171034000000,0.000097553000000,0.000096368000000,0.006711671000000,0.000122047000000,0.000144171000000,0.000072270000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007045893000000,0.000027641000000,0.000013159666667,0.000095578000000,0.000017566500000,0.000048171000000,0.000018356500000,0.000054886000000,0.000013554666667,0.000053307000000,0.000083331000000,0.000081751000000,0.000171825000000,0.000096763000000,0.000097554000000,0.006918683000000,0.000235825000000,0.000122047000000,0.000068714000000,0.000054097000000,0.000019344500000,0.000066343000000 +0.000015591000000,0.007119769000000,0.000028036000000,0.000013554666667,0.000056072000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000041455000000,0.000013423000000,0.000055676000000,0.000083331000000,0.000119676000000,0.000167874000000,0.000097158000000,0.000096763000000,0.007084215000000,0.000189207000000,0.000122837000000,0.000063973000000,0.000054097000000,0.000018751500000,0.000085701000000 +0.000024678000000,0.006853893000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048960000000,0.000018357000000,0.000054097000000,0.000013291333333,0.000052912000000,0.000080566000000,0.000081751000000,0.000131529000000,0.000098738000000,0.000096368000000,0.007116214000000,0.000123627000000,0.000157998000000,0.000061997000000,0.000053702000000,0.000018752000000,0.000067134000000 +0.000023888000000,0.006756313000000,0.000027838500000,0.000013160000000,0.000041059000000,0.000015986500000,0.000049356000000,0.000018159500000,0.000039085000000,0.000019217333333,0.000054096000000,0.000082936000000,0.000081751000000,0.000167084000000,0.000097158000000,0.000095973000000,0.006813202000000,0.000122047000000,0.000121652000000,0.000061998000000,0.000053702000000,0.000019542000000,0.000067134000000 +0.000015986500000,0.007326782000000,0.000028036000000,0.000013028000000,0.000040664000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013818333333,0.000053307000000,0.000079775000000,0.000081356000000,0.000163924000000,0.000096763000000,0.000097159000000,0.007017844000000,0.000122442000000,0.000121257000000,0.000067133000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000016184000000,0.006900115000000,0.000027641000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000047775000000,0.000017961500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000082146000000,0.000080961000000,0.000133898000000,0.000096763000000,0.000096763000000,0.006852313000000,0.000124023000000,0.000121652000000,0.000086886000000,0.000054096000000,0.000018752000000,0.000068319000000 +0.000015591500000,0.006734585000000,0.000028431000000,0.000013159666667,0.000039874000000,0.000034949500000,0.000048960000000,0.000018357000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000082936000000,0.000079776000000,0.000219232000000,0.000097159000000,0.000130343000000,0.006714832000000,0.000159183000000,0.000124022000000,0.000065554000000,0.000054096000000,0.000019147000000,0.000067133000000 +0.000015591500000,0.007185350000000,0.000027838000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000049356000000,0.000018159500000,0.000041059000000,0.000013423000000,0.000057256000000,0.000082145000000,0.000083726000000,0.000131923000000,0.000112961000000,0.000097949000000,0.006956214000000,0.000121257000000,0.000122047000000,0.000067924000000,0.000055281000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.007098437000000,0.000030801000000,0.000013686333333,0.000040269000000,0.000034554500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000052911000000,0.000090442000000,0.000081355000000,0.000163134000000,0.000096368000000,0.000096368000000,0.007100807000000,0.000121652000000,0.000122442000000,0.000068713000000,0.000054491000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.006913547000000,0.000028233000000,0.000013159666667,0.000040270000000,0.000016579000000,0.000048566000000,0.000027245500000,0.000040665000000,0.000013028333333,0.000053306000000,0.000079775000000,0.000079380000000,0.000252813000000,0.000096368000000,0.000097553000000,0.006874832000000,0.000122442000000,0.000193949000000,0.000062393000000,0.000053306000000,0.000020134500000,0.000067134000000 +0.000015986500000,0.007078684000000,0.000028036000000,0.000013950000000,0.000040665000000,0.000016184000000,0.000049355000000,0.000030801500000,0.000039479000000,0.000013555000000,0.000053307000000,0.000079380000000,0.000079776000000,0.000134294000000,0.000096368000000,0.000096368000000,0.006734190000000,0.000122047000000,0.000120862000000,0.000062392000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006949498000000,0.000028233500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000051331000000,0.000017962000000,0.000039480000000,0.000013423333333,0.000110590000000,0.000081356000000,0.000113356000000,0.000204220000000,0.000096763000000,0.000098738000000,0.006940017000000,0.000121652000000,0.000122442000000,0.000062393000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015591000000,0.006772511000000,0.000027838500000,0.000013028000000,0.000040665000000,0.000016184000000,0.000048961000000,0.000018357000000,0.000039874000000,0.000013159666667,0.000053306000000,0.000080170000000,0.000100714000000,0.000135084000000,0.000097158000000,0.000095973000000,0.006800560000000,0.000122047000000,0.000122047000000,0.000062392000000,0.000053306000000,0.000037122000000,0.000067133000000 +0.000015394000000,0.006943572000000,0.000028233500000,0.000014344666667,0.000040270000000,0.000015986500000,0.000049355000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000054097000000,0.000086887000000,0.000085306000000,0.000165899000000,0.000096763000000,0.000096368000000,0.006760659000000,0.000155232000000,0.000122837000000,0.000067529000000,0.000053306000000,0.000019542000000,0.000114540000000 +0.000015986500000,0.007205893000000,0.000027838500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000069899000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053701000000,0.000080566000000,0.000082541000000,0.000136269000000,0.000097553000000,0.000133109000000,0.006972807000000,0.000137455000000,0.000120862000000,0.000062393000000,0.000090047000000,0.000018751500000,0.000067133000000 +0.000015394000000,0.007023770000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000081356000000,0.000018159500000,0.000073059000000,0.000013554666667,0.000053307000000,0.000079775000000,0.000081355000000,0.000167479000000,0.000098343000000,0.000099529000000,0.007296362000000,0.000122442000000,0.000120862000000,0.000062392000000,0.000053306000000,0.000018752000000,0.000068318000000 +0.000015394000000,0.007051819000000,0.000028035500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000041454000000,0.000013423000000,0.000053306000000,0.000084121000000,0.000082145000000,0.000166689000000,0.000114541000000,0.000096368000000,0.006744067000000,0.000121652000000,0.000169455000000,0.000064763000000,0.000053306000000,0.000018751500000,0.000067528000000 +0.000015591000000,0.007186140000000,0.000032579000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000054887000000,0.000013159666667,0.000052911000000,0.000080566000000,0.000080170000000,0.000131133000000,0.000097158000000,0.000096368000000,0.006810042000000,0.000122047000000,0.000121257000000,0.000088467000000,0.000053306000000,0.000018949500000,0.000068713000000 +0.000016184000000,0.006836510000000,0.000028036000000,0.000013423000000,0.000040269000000,0.000016382000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000053701000000,0.000082146000000,0.000114541000000,0.000468516000000,0.000096763000000,0.000095973000000,0.008703966000000,0.000121651000000,0.000123232000000,0.000075825000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591000000,0.006954635000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048961000000,0.000018554500000,0.000041059000000,0.000013028000000,0.000054887000000,0.000080566000000,0.000113751000000,0.000221208000000,0.000096763000000,0.000096368000000,0.006853893000000,0.000121257000000,0.000122838000000,0.000062393000000,0.000054491000000,0.000018752000000,0.000068713000000 +0.000015394000000,0.006926585000000,0.000027838500000,0.000013159666667,0.000058837000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000040665000000,0.000013554666667,0.000053306000000,0.000080566000000,0.000081751000000,0.000198689000000,0.000097948000000,0.000096368000000,0.007090140000000,0.000141009000000,0.000121652000000,0.000062788000000,0.000093602000000,0.000019739500000,0.000067528000000 +0.000015591500000,0.007101992000000,0.000032579000000,0.000013159666667,0.000063973000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039085000000,0.000013555000000,0.000052911000000,0.000079381000000,0.000117701000000,0.000182096000000,0.000096764000000,0.000096368000000,0.006959770000000,0.000183677000000,0.000122047000000,0.000062788000000,0.000057257000000,0.000018751500000,0.000067529000000 +0.000015986500000,0.006861795000000,0.000040085000000,0.000013159666667,0.000040269000000,0.000015986500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053307000000,0.000079381000000,0.000095577000000,0.000166294000000,0.000097158000000,0.000095973000000,0.007750288000000,0.000121257000000,0.000122442000000,0.000061997000000,0.000068713000000,0.000018554500000,0.000068319000000 +0.000016184000000,0.006786338000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049750000000,0.000018356500000,0.000039479000000,0.000031859333333,0.000053306000000,0.000079381000000,0.000080565000000,0.000165899000000,0.000096368000000,0.000133504000000,0.006973992000000,0.000122442000000,0.000193949000000,0.000063578000000,0.000054887000000,0.000018751500000,0.000067924000000 +0.000016184000000,0.007012708000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000017768666667,0.000053307000000,0.000082936000000,0.000083726000000,0.000133899000000,0.000095973000000,0.000097158000000,0.007209053000000,0.000123627000000,0.000121652000000,0.000063578000000,0.000054097000000,0.000018752000000,0.000067134000000 +0.000016184500000,0.006780017000000,0.000028035500000,0.000013160000000,0.000040270000000,0.000016381500000,0.000050936000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000088862000000,0.000081751000000,0.000079776000000,0.000168269000000,0.000095578000000,0.000095973000000,0.008225942000000,0.000123232000000,0.000122837000000,0.000062392000000,0.000053702000000,0.000018751500000,0.000067133000000 +0.000016184000000,0.007057745000000,0.000038900000000,0.000013291333333,0.000040665000000,0.000016184000000,0.000063973000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000067923000000,0.000083331000000,0.000082936000000,0.000131528000000,0.000097158000000,0.000096368000000,0.007142684000000,0.000122047000000,0.000122837000000,0.000091232000000,0.000054097000000,0.000018752000000,0.000157207000000 +0.000016184000000,0.006846782000000,0.000063393500000,0.000013291333333,0.000040269000000,0.000016579000000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000052911000000,0.000081751000000,0.000079775000000,0.000215676000000,0.000096763000000,0.000096763000000,0.007053794000000,0.000141800000000,0.000121652000000,0.000101504000000,0.000054887000000,0.000018949000000,0.000101109000000 +0.000015986500000,0.007165597000000,0.000027838500000,0.000013160000000,0.000039874000000,0.000016381500000,0.000051331000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000082936000000,0.000081750000000,0.000230294000000,0.000096368000000,0.000096763000000,0.007744757000000,0.000122442000000,0.000122047000000,0.000065553000000,0.000053701000000,0.000018752000000,0.000083331000000 +0.000032381500000,0.007903967000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053702000000,0.000082145000000,0.000079380000000,0.000133109000000,0.000097553000000,0.000097158000000,0.007007178000000,0.000121257000000,0.000122047000000,0.000063973000000,0.000095973000000,0.000018949000000,0.000068319000000 +0.000017171500000,0.007231573000000,0.000028036000000,0.000013818000000,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000054886000000,0.000080565000000,0.000079775000000,0.000163529000000,0.000096763000000,0.000096763000000,0.006790684000000,0.000122442000000,0.000193553000000,0.000061997000000,0.000053702000000,0.000018949500000,0.000066738000000 +0.000022505000000,0.006977942000000,0.000027838000000,0.000013818000000,0.000039874000000,0.000015789000000,0.000067133000000,0.000018159000000,0.000039479000000,0.000013291666667,0.000054097000000,0.000082541000000,0.000125207000000,0.000132713000000,0.000095973000000,0.000096764000000,0.006898535000000,0.000120467000000,0.000122837000000,0.000063578000000,0.000053702000000,0.000018949000000,0.000067529000000 +0.000015394000000,0.006913548000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000099134000000,0.000018356500000,0.000041059000000,0.000013423333333,0.000054096000000,0.000080961000000,0.000079380000000,0.000244121000000,0.000096763000000,0.000133109000000,0.006820709000000,0.000121257000000,0.000121651000000,0.000065158000000,0.000053702000000,0.000018554500000,0.000067924000000 +0.000015986500000,0.006821893000000,0.000028035500000,0.000013160000000,0.000039874000000,0.000026258000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079381000000,0.000080171000000,0.000146936000000,0.000096763000000,0.000097158000000,0.006992955000000,0.000122442000000,0.000122837000000,0.000065948000000,0.000053702000000,0.000018751500000,0.000067924000000 +0.000015986500000,0.007346535000000,0.000027838500000,0.000013554666667,0.000040269000000,0.000032184000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054096000000,0.000081751000000,0.000079775000000,0.000162344000000,0.000184467000000,0.000096368000000,0.006939622000000,0.000122047000000,0.000121257000000,0.000062393000000,0.000053307000000,0.000018949500000,0.000066738000000 +0.000015986500000,0.006639771000000,0.000027838500000,0.000013028000000,0.000040269000000,0.000022900000000,0.000048960000000,0.000044431000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079776000000,0.000078985000000,0.000248862000000,0.000112171000000,0.000097158000000,0.007245400000000,0.000158788000000,0.000121652000000,0.000080171000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006777252000000,0.000028233000000,0.000014344666667,0.000040665000000,0.000016381500000,0.000048170000000,0.000035542500000,0.000039084000000,0.000013028000000,0.000057257000000,0.000079381000000,0.000080170000000,0.000132713000000,0.000096763000000,0.000095973000000,0.006697054000000,0.000122442000000,0.000121652000000,0.000078985000000,0.000053702000000,0.000019147000000,0.000102294000000 +0.000015986500000,0.007030486000000,0.000027838000000,0.000014344666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000020529500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000080566000000,0.000082145000000,0.000193158000000,0.000097158000000,0.000097158000000,0.007028906000000,0.000123232000000,0.000180121000000,0.000077800000000,0.000054492000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.006758289000000,0.000028233000000,0.000013159666667,0.000040270000000,0.000016579500000,0.000048171000000,0.000025863000000,0.000039084000000,0.000013423000000,0.000054097000000,0.000083726000000,0.000084121000000,0.000148121000000,0.000095578000000,0.000095973000000,0.006780412000000,0.000121652000000,0.000121257000000,0.000062392000000,0.000054096000000,0.000018752000000,0.000068319000000 +0.000015394000000,0.006920264000000,0.000028431000000,0.000013159666667,0.000040270000000,0.000015986500000,0.000048566000000,0.000025270000000,0.000039084000000,0.000014476333333,0.000053306000000,0.000080170000000,0.000079381000000,0.000165108000000,0.000096763000000,0.000095973000000,0.007056955000000,0.000122442000000,0.000120862000000,0.000062393000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.007022584000000,0.000030209000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000059627000000,0.000013554666667,0.000073455000000,0.000081355000000,0.000081356000000,0.000130739000000,0.000098344000000,0.000097553000000,0.007026931000000,0.000123627000000,0.000122047000000,0.000099133000000,0.000055281000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.007177844000000,0.000027641000000,0.000013159666667,0.000077010000000,0.000015788500000,0.000049750000000,0.000018159500000,0.000054886000000,0.000013423000000,0.000088861000000,0.000124023000000,0.000081356000000,0.000163924000000,0.000095578000000,0.000112960000000,0.007373004000000,0.000120861000000,0.000121257000000,0.000062787000000,0.000054096000000,0.000018554500000,0.000067924000000 +0.000015393500000,0.006859820000000,0.000027838500000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000042245000000,0.000013423000000,0.000057257000000,0.000079776000000,0.000099529000000,0.000163923000000,0.000133899000000,0.000096368000000,0.006695079000000,0.000158393000000,0.000122442000000,0.000061998000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.007151769000000,0.000028431000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000041455000000,0.000025406666667,0.000052911000000,0.000082146000000,0.000082541000000,0.000131923000000,0.000095973000000,0.000095973000000,0.006876412000000,0.000122442000000,0.000142195000000,0.000062788000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.006799375000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000018356500000,0.000073849000000,0.000013028000000,0.000054492000000,0.000080565000000,0.000081750000000,0.000202639000000,0.000097159000000,0.000097553000000,0.006905251000000,0.000122047000000,0.000122442000000,0.000062393000000,0.000054096000000,0.000018752000000,0.000068318000000 +0.000016184000000,0.006853499000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049750000000,0.000018159500000,0.000077010000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000079775000000,0.000135479000000,0.000096763000000,0.000096368000000,0.007029301000000,0.000120862000000,0.000121257000000,0.000061997000000,0.000090047000000,0.000018752000000,0.000067528000000 +0.000015789000000,0.006943967000000,0.000028036000000,0.000013554666667,0.000040269000000,0.000015986500000,0.000048566000000,0.000018357000000,0.000044615000000,0.000013423000000,0.000053306000000,0.000082541000000,0.000081356000000,0.000174195000000,0.000096368000000,0.000143775000000,0.007619127000000,0.000123232000000,0.000121651000000,0.000063973000000,0.000053701000000,0.000018554500000,0.000068318000000 +0.000015394000000,0.007452017000000,0.000028036000000,0.000013028333333,0.000039874000000,0.000015591500000,0.000048171000000,0.000018159500000,0.000054492000000,0.000013291333333,0.000053307000000,0.000081356000000,0.000081751000000,0.000165109000000,0.000096368000000,0.000096763000000,0.007063276000000,0.000123232000000,0.000122837000000,0.000077800000000,0.000053701000000,0.000018949500000,0.000106639000000 +0.000016184000000,0.006729449000000,0.000028035500000,0.000013159666667,0.000039874000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000041454000000,0.000013423000000,0.000052911000000,0.000082935000000,0.000082541000000,0.000130739000000,0.000095578000000,0.000095973000000,0.007344164000000,0.000122837000000,0.000123627000000,0.000075825000000,0.000053701000000,0.000018949500000,0.000071479000000 +0.000015591500000,0.006847177000000,0.000027838000000,0.000013028000000,0.000040664000000,0.000015789000000,0.000132318000000,0.000018159000000,0.000041454000000,0.000013423000000,0.000053307000000,0.000102689000000,0.000080566000000,0.000245307000000,0.000097158000000,0.000133504000000,0.006993350000000,0.000157603000000,0.000121652000000,0.000065158000000,0.000053306000000,0.000018949500000,0.000080565000000 +0.000015394000000,0.006983079000000,0.000027838000000,0.000013818333333,0.000040664000000,0.000016381500000,0.000048960000000,0.000018752000000,0.000041455000000,0.000013159666667,0.000052911000000,0.000165108000000,0.000082541000000,0.000170244000000,0.000096763000000,0.000095973000000,0.007125696000000,0.000121257000000,0.000188022000000,0.000061998000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015393500000,0.007012708000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000015789000000,0.000047775000000,0.000018159500000,0.000041849000000,0.000013160000000,0.000056862000000,0.000083331000000,0.000079775000000,0.000169849000000,0.000159578000000,0.000096763000000,0.006772511000000,0.000122837000000,0.000138639000000,0.000063973000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006930536000000,0.000027838500000,0.000013028000000,0.000040269000000,0.000015591500000,0.000049356000000,0.000018159500000,0.000041454000000,0.000013950000000,0.000054097000000,0.000082146000000,0.000117701000000,0.000133899000000,0.000095973000000,0.000133109000000,0.007081449000000,0.000122837000000,0.000122047000000,0.000061998000000,0.000054886000000,0.000018554500000,0.000067133000000 +0.000015394000000,0.007212609000000,0.000028233500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018356500000,0.000078195000000,0.000013160000000,0.000054491000000,0.000079381000000,0.000086097000000,0.000168270000000,0.000095973000000,0.000110986000000,0.006901696000000,0.000123232000000,0.000122442000000,0.000063578000000,0.000053701000000,0.000019147000000,0.000066739000000 +0.000016184000000,0.007246980000000,0.000028826000000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048960000000,0.000018159000000,0.000054886000000,0.000013423333333,0.000054491000000,0.000079776000000,0.000081751000000,0.000167084000000,0.000096763000000,0.000095973000000,0.007312560000000,0.000122047000000,0.000121652000000,0.000065948000000,0.000053701000000,0.000018752000000,0.000066739000000 +0.000015986500000,0.006965696000000,0.000027838000000,0.000013555000000,0.000041850000000,0.000016579000000,0.000048170000000,0.000027838500000,0.000041455000000,0.000013028000000,0.000131134000000,0.000079381000000,0.000086491000000,0.000171825000000,0.000097948000000,0.000096763000000,0.006752363000000,0.000122442000000,0.000122047000000,0.000063973000000,0.000054097000000,0.000019344500000,0.000067924000000 +0.000036924500000,0.006827424000000,0.000028233000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000027838500000,0.000041850000000,0.000013554666667,0.000053701000000,0.000125208000000,0.000081751000000,0.000219232000000,0.000095973000000,0.000097158000000,0.006875622000000,0.000122046000000,0.000122047000000,0.000092023000000,0.000054097000000,0.000019147000000,0.000067133000000 +0.000016184000000,0.007070387000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000079380000000,0.000013028000000,0.000055677000000,0.000081751000000,0.000079380000000,0.000132714000000,0.000095578000000,0.000095973000000,0.006945548000000,0.000139430000000,0.000157998000000,0.000062787000000,0.000055282000000,0.000042455500000,0.000069108000000 +0.000015986500000,0.006891029000000,0.000027838500000,0.000013028333333,0.000040664000000,0.000043640500000,0.000048170000000,0.000018159000000,0.000055281000000,0.000014213000000,0.000052911000000,0.000082541000000,0.000083330000000,0.000180516000000,0.000095973000000,0.000175380000000,0.006818338000000,0.000122047000000,0.000122442000000,0.000062788000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006964906000000,0.000027838500000,0.000013423000000,0.000040269000000,0.000023493000000,0.000048565000000,0.000018357000000,0.000086097000000,0.000013159666667,0.000052911000000,0.000079775000000,0.000081356000000,0.000130739000000,0.000133109000000,0.000096763000000,0.006960955000000,0.000122838000000,0.000122442000000,0.000063973000000,0.000053701000000,0.000018949000000,0.000103084000000 +0.000015393500000,0.007021005000000,0.000027838500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000069899000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000081751000000,0.000165899000000,0.000096763000000,0.000097158000000,0.007107523000000,0.000123627000000,0.000122047000000,0.000062393000000,0.000057652000000,0.000019344500000,0.000067134000000 +0.000015591500000,0.007096066000000,0.000027838500000,0.000013159666667,0.000056862000000,0.000015591500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000052912000000,0.000120861000000,0.000083331000000,0.000205405000000,0.000096368000000,0.000096763000000,0.007309795000000,0.000122047000000,0.000120467000000,0.000063578000000,0.000054097000000,0.000020332000000,0.000068714000000 +0.000015394000000,0.006839671000000,0.000028036000000,0.000013159666667,0.000054492000000,0.000016579000000,0.000048961000000,0.000017962000000,0.000039084000000,0.000014213000000,0.000054491000000,0.000082541000000,0.000101898000000,0.000134293000000,0.000096368000000,0.000097553000000,0.007038782000000,0.000122047000000,0.000122442000000,0.000061998000000,0.000125208000000,0.000018949500000,0.000066343000000 +0.000015196500000,0.006731424000000,0.000027838500000,0.000013686333333,0.000041060000000,0.000015789000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053307000000,0.000079776000000,0.000096763000000,0.000166294000000,0.000097158000000,0.000095973000000,0.007169943000000,0.000122047000000,0.000122442000000,0.000063183000000,0.000055282000000,0.000019147000000,0.000067923000000 +0.000015591500000,0.007416066000000,0.000028036000000,0.000013159666667,0.000040270000000,0.000016579000000,0.000049355000000,0.000018159000000,0.000039085000000,0.000019480666667,0.000053306000000,0.000081356000000,0.000079775000000,0.000135479000000,0.000097554000000,0.000096763000000,0.006864165000000,0.000157603000000,0.000121652000000,0.000063973000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.006778832000000,0.000028233500000,0.000013160000000,0.000039875000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039479000000,0.000029752333333,0.000052911000000,0.000122442000000,0.000086886000000,0.000167874000000,0.000096368000000,0.000095973000000,0.006871276000000,0.000122442000000,0.000178935000000,0.000067924000000,0.000053306000000,0.000019542000000,0.000067133000000 +0.000015591500000,0.006902881000000,0.000028035500000,0.000013554666667,0.000040270000000,0.000015591500000,0.000087677000000,0.000018159000000,0.000039084000000,0.000018163666667,0.000054887000000,0.000089652000000,0.000079775000000,0.000165109000000,0.000095972000000,0.000152071000000,0.007320856000000,0.000122047000000,0.000122837000000,0.000065554000000,0.000054096000000,0.000019147000000,0.000066738000000 +0.000015789000000,0.007315325000000,0.000027640500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000063973000000,0.000018159000000,0.000039874000000,0.000013028000000,0.000054491000000,0.000100714000000,0.000079381000000,0.000236220000000,0.000096763000000,0.000097553000000,0.006949104000000,0.000122047000000,0.000121652000000,0.000064368000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000015986500000,0.006861795000000,0.000027640500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000079380000000,0.000080566000000,0.000292318000000,0.000135084000000,0.000096763000000,0.007239473000000,0.000122047000000,0.000122837000000,0.000061998000000,0.000053306000000,0.000019147000000,0.000067529000000 +0.000015591000000,0.006794635000000,0.000028431000000,0.000013159666667,0.000039874000000,0.000015986500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000072664000000,0.000081751000000,0.000082936000000,0.000146145000000,0.000097949000000,0.000097158000000,0.006763029000000,0.000122838000000,0.000121256000000,0.000062788000000,0.000054096000000,0.000019146500000,0.000066739000000 +0.000015394000000,0.007177843000000,0.000029221000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000115331000000,0.000080565000000,0.000081355000000,0.000198689000000,0.000095973000000,0.000095973000000,0.007130436000000,0.000123232000000,0.000122837000000,0.000086886000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006914733000000,0.000028036000000,0.000013291333333,0.000039874000000,0.000015789000000,0.000048960000000,0.000018159000000,0.000039875000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000080565000000,0.000199479000000,0.000095973000000,0.000096763000000,0.006847968000000,0.000165109000000,0.000142590000000,0.000075825000000,0.000054096000000,0.000019147000000,0.000067133000000 +0.000016184000000,0.007192461000000,0.000028233500000,0.000013950000000,0.000040269000000,0.000016381500000,0.000047775000000,0.000018159000000,0.000039085000000,0.000013554666667,0.000053306000000,0.000079380000000,0.000081751000000,0.000381207000000,0.000096368000000,0.000095183000000,0.007105152000000,0.000124023000000,0.000121652000000,0.000065553000000,0.000054096000000,0.000018752000000,0.000156417000000 +0.000015394000000,0.006850338000000,0.000026850500000,0.000025011666667,0.000040664000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053307000000,0.000083331000000,0.000118096000000,0.000477207000000,0.000095577000000,0.000095578000000,0.006876807000000,0.000122442000000,0.000121257000000,0.000067133000000,0.000054886000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.007339029000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000015789000000,0.000048171000000,0.000018159500000,0.000039874000000,0.000013028000000,0.000052516000000,0.000080961000000,0.000090047000000,0.000232270000000,0.000095973000000,0.000096368000000,0.007074733000000,0.000122047000000,0.000122838000000,0.000061997000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006793054000000,0.000026455500000,0.000013028000000,0.000041059000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000056862000000,0.000082541000000,0.000079381000000,0.000278097000000,0.000095973000000,0.000131923000000,0.006839671000000,0.000122047000000,0.000120862000000,0.000062393000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000016184000000,0.006736165000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049750000000,0.000018159000000,0.000039874000000,0.000013160000000,0.000053702000000,0.000080566000000,0.000079776000000,0.000138640000000,0.000132318000000,0.000096368000000,0.006726684000000,0.000122837000000,0.000122047000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006947523000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000079381000000,0.000079776000000,0.000298244000000,0.000097158000000,0.000095183000000,0.006998091000000,0.000122442000000,0.000122442000000,0.000062393000000,0.000073454000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.006763819000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016382000000,0.000048566000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000052911000000,0.000081356000000,0.000083726000000,0.000193948000000,0.000096368000000,0.000096368000000,0.006748412000000,0.000171035000000,0.000122442000000,0.000063183000000,0.000053701000000,0.000040283000000,0.000067528000000 +0.000015394000000,0.007074733000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048171000000,0.000036727500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000080171000000,0.000084912000000,0.000179331000000,0.000096368000000,0.000096763000000,0.006736165000000,0.000122442000000,0.000321948000000,0.000062393000000,0.000054491000000,0.000018949500000,0.000067923000000 +0.000016184000000,0.007055375000000,0.000026258000000,0.000013028000000,0.000076220000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000040270000000,0.000013423000000,0.000054096000000,0.000079381000000,0.000084911000000,0.000246096000000,0.000098344000000,0.000096368000000,0.007030881000000,0.000121652000000,0.000381207000000,0.000062788000000,0.000054886000000,0.000018949500000,0.000188417000000 +0.000025665500000,0.007277399000000,0.000026455500000,0.000013159666667,0.000041850000000,0.000016776500000,0.000049355000000,0.000018159500000,0.000039480000000,0.000013291333333,0.000052912000000,0.000083726000000,0.000080170000000,0.000139034000000,0.000095973000000,0.000097158000000,0.007117794000000,0.000122047000000,0.000348022000000,0.000062788000000,0.000053306000000,0.000018751500000,0.000067529000000 +0.000047789000000,0.006840856000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000053701000000,0.000082146000000,0.000079380000000,0.000255183000000,0.000095973000000,0.000096763000000,0.006721153000000,0.000121652000000,0.000178146000000,0.000078590000000,0.000053701000000,0.000018752000000,0.000103875000000 +0.000015591500000,0.006877202000000,0.000026060500000,0.000013554666667,0.000039874000000,0.000033567000000,0.000087677000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053702000000,0.000082541000000,0.000103480000000,0.000139430000000,0.000096763000000,0.000097159000000,0.006764214000000,0.000121652000000,0.000137849000000,0.000082145000000,0.000053306000000,0.000018751500000,0.000067924000000 +0.000015986000000,0.006851523000000,0.000036134500000,0.000013028000000,0.000039874000000,0.000016579000000,0.000064368000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000081750000000,0.000081750000000,0.000179726000000,0.000138244000000,0.000132714000000,0.006961350000000,0.000122442000000,0.000122047000000,0.000078590000000,0.000054491000000,0.000018554500000,0.000067528000000 +0.000015789000000,0.006934486000000,0.000051937000000,0.000013291333333,0.000040269000000,0.000016382000000,0.000061602000000,0.000018159500000,0.000039479000000,0.000025143333333,0.000135479000000,0.000084911000000,0.000080960000000,0.000184467000000,0.000150887000000,0.000097553000000,0.006709302000000,0.000157998000000,0.000122047000000,0.000063578000000,0.000053306000000,0.000018949000000,0.000066343000000 +0.000015393500000,0.007297942000000,0.000036529500000,0.000013159666667,0.000039874000000,0.000015591500000,0.000049356000000,0.000018357000000,0.000039480000000,0.000013028000000,0.000053307000000,0.000079380000000,0.000081751000000,0.000141010000000,0.000097158000000,0.000097158000000,0.007170733000000,0.000122838000000,0.000122047000000,0.000062393000000,0.000054097000000,0.000019937000000,0.000067133000000 +0.000015394000000,0.006809646000000,0.000027838500000,0.000013159666667,0.000040270000000,0.000016579000000,0.000049356000000,0.000018159000000,0.000043430000000,0.000013028000000,0.000052911000000,0.000078985000000,0.000082936000000,0.000178146000000,0.000096368000000,0.000096763000000,0.006843227000000,0.000122837000000,0.000121257000000,0.000065158000000,0.000053701000000,0.000018949500000,0.000066343000000 +0.000015591500000,0.007388017000000,0.000033962000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053701000000,0.000079775000000,0.000079380000000,0.000144565000000,0.000097158000000,0.000096368000000,0.007279375000000,0.000122442000000,0.000157997000000,0.000077406000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015393500000,0.007101597000000,0.000026258000000,0.000013159666667,0.000040665000000,0.000016184000000,0.000050936000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000081356000000,0.000081751000000,0.000351973000000,0.000097553000000,0.000095973000000,0.006917103000000,0.000157603000000,0.000122047000000,0.000063578000000,0.000053701000000,0.000018949500000,0.000068319000000 +0.000015591500000,0.007367474000000,0.000026456000000,0.000013159666667,0.000040270000000,0.000016579500000,0.000048961000000,0.000018159500000,0.000039085000000,0.000013554666667,0.000052911000000,0.000079775000000,0.000081355000000,0.000155627000000,0.000096763000000,0.000096763000000,0.007118980000000,0.000140614000000,0.000122047000000,0.000061998000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006982288000000,0.000027048000000,0.000014608333333,0.000040270000000,0.000015394000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000054097000000,0.000080961000000,0.000079380000000,0.000178146000000,0.000095973000000,0.000096368000000,0.006878387000000,0.000121652000000,0.000121257000000,0.000070689000000,0.000053306000000,0.000018949500000,0.000067134000000 +0.000015986500000,0.007357992000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000016184000000,0.000048170000000,0.000018159000000,0.000039874000000,0.000013159666667,0.000054886000000,0.000083331000000,0.000081751000000,0.000177355000000,0.000095973000000,0.000095973000000,0.006868116000000,0.000246097000000,0.000121652000000,0.000062393000000,0.000053701000000,0.000018949000000,0.000067528000000 +0.000015591500000,0.006838091000000,0.000026455500000,0.000020271000000,0.000040269000000,0.000015591000000,0.000089257000000,0.000018159000000,0.000041059000000,0.000013423000000,0.000052911000000,0.000080170000000,0.000080565000000,0.000141010000000,0.000135479000000,0.000133504000000,0.007002042000000,0.000144961000000,0.000122442000000,0.000061997000000,0.000055282000000,0.000019344500000,0.000137059000000 +0.000015393500000,0.008696065000000,0.000026455500000,0.000018559000000,0.000040269000000,0.000016381500000,0.000053307000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000054887000000,0.000081355000000,0.000171034000000,0.000180516000000,0.000096763000000,0.000095973000000,0.007430288000000,0.000121651000000,0.000122047000000,0.000063183000000,0.000089652000000,0.000018949500000,0.000071874000000 +0.000015591500000,0.006991375000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000061603000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000082145000000,0.000088862000000,0.000140615000000,0.000095973000000,0.000097158000000,0.006739326000000,0.000124417000000,0.000158788000000,0.000069108000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.007120165000000,0.000026455500000,0.000013555000000,0.000039874000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291666667,0.000053306000000,0.000079380000000,0.000111381000000,0.000176171000000,0.000095973000000,0.000098739000000,0.006838091000000,0.000120862000000,0.000122442000000,0.000065158000000,0.000053701000000,0.000019937000000,0.000066739000000 +0.000015591000000,0.006717992000000,0.000049566500000,0.000013159666667,0.000041849000000,0.000016777000000,0.000050146000000,0.000018356500000,0.000041060000000,0.000013028000000,0.000052912000000,0.000082936000000,0.000081356000000,0.000140220000000,0.000097948000000,0.000096368000000,0.006947918000000,0.000122442000000,0.000121652000000,0.000065948000000,0.000053701000000,0.000018751500000,0.000068319000000 +0.000015591500000,0.006817943000000,0.000026455500000,0.000013818000000,0.000040269000000,0.000016381500000,0.000089257000000,0.000018159000000,0.000095577000000,0.000014081666667,0.000052911000000,0.000081751000000,0.000082146000000,0.000188812000000,0.000096368000000,0.000096368000000,0.006874041000000,0.000193158000000,0.000124022000000,0.000065553000000,0.000053701000000,0.000019542000000,0.000067924000000 +0.000015394000000,0.007013893000000,0.000026060500000,0.000013159666667,0.000040664000000,0.000016184000000,0.000089652000000,0.000018159500000,0.000042245000000,0.000013291666667,0.000076615000000,0.000082541000000,0.000081750000000,0.000252022000000,0.000095973000000,0.000097158000000,0.007213400000000,0.000121257000000,0.000121652000000,0.000084121000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015394000000,0.007371029000000,0.000027838500000,0.000013160000000,0.000058837000000,0.000016579000000,0.000047775000000,0.000018554500000,0.000075034000000,0.000013423000000,0.000086492000000,0.000080565000000,0.000080170000000,0.000183677000000,0.000097553000000,0.000097158000000,0.006971621000000,0.000123232000000,0.000122442000000,0.000078590000000,0.000054096000000,0.000037122500000,0.000067529000000 +0.000015986500000,0.006815177000000,0.000026258500000,0.000013159666667,0.000096763000000,0.000016381500000,0.000049355000000,0.000036727500000,0.000055677000000,0.000013423000000,0.000052911000000,0.000082936000000,0.000081355000000,0.000179726000000,0.000095973000000,0.000096763000000,0.007215375000000,0.000122047000000,0.000122442000000,0.000101109000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006730634000000,0.000026455500000,0.000013028000000,0.000071874000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000041850000000,0.000013291333333,0.000054887000000,0.000080566000000,0.000079380000000,0.000139825000000,0.000151676000000,0.000132714000000,0.006745251000000,0.000121257000000,0.000168269000000,0.000083331000000,0.000053306000000,0.000018752000000,0.000103874000000 +0.000015394000000,0.006902881000000,0.000026258500000,0.000013555000000,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159000000,0.000052121000000,0.000013291333333,0.000053306000000,0.000080961000000,0.000097948000000,0.000175775000000,0.000095972000000,0.000097553000000,0.006852313000000,0.000122442000000,0.000122047000000,0.000064368000000,0.000054097000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.006820314000000,0.000037320000000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048170000000,0.000018159000000,0.000039480000000,0.000013554666667,0.000052911000000,0.000080961000000,0.000095973000000,0.000191973000000,0.000095973000000,0.000096368000000,0.006841646000000,0.000122047000000,0.000121652000000,0.000087282000000,0.000054492000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007167177000000,0.000049566500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049750000000,0.000018357000000,0.000039479000000,0.000014213000000,0.000053307000000,0.000084516000000,0.000082146000000,0.000140220000000,0.000095973000000,0.000096368000000,0.006870486000000,0.000193158000000,0.000122837000000,0.000094393000000,0.000053307000000,0.000018751500000,0.000067528000000 +0.000032381500000,0.006987424000000,0.000028036000000,0.000013028000000,0.000040664000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039874000000,0.000019875666667,0.000052911000000,0.000080961000000,0.000081356000000,0.000176565000000,0.000128763000000,0.000096763000000,0.006708510000000,0.000121257000000,0.000121257000000,0.000074640000000,0.000054097000000,0.000018752000000,0.000067923000000 +0.000016381500000,0.007269498000000,0.000027838500000,0.000013159666667,0.000040664000000,0.000016184000000,0.000049751000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000081356000000,0.000141800000000,0.000096368000000,0.000097158000000,0.007030486000000,0.000121652000000,0.000122047000000,0.000067924000000,0.000054492000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.006780412000000,0.000026060500000,0.000013159666667,0.000040664000000,0.000015591500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000052911000000,0.000079380000000,0.000080960000000,0.000173800000000,0.000097553000000,0.000097158000000,0.007148609000000,0.000120862000000,0.000121257000000,0.000075430000000,0.000053307000000,0.000018752000000,0.000068319000000 +0.000015789000000,0.006804906000000,0.000026258500000,0.000013159666667,0.000039874000000,0.000033566500000,0.000048960000000,0.000018356500000,0.000039084000000,0.000013423333333,0.000053701000000,0.000082145000000,0.000080170000000,0.000141010000000,0.000096763000000,0.000096368000000,0.006804511000000,0.000122047000000,0.000121652000000,0.000095578000000,0.000054097000000,0.000018752000000,0.000066344000000 +0.000015986500000,0.007005992000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000015591500000,0.000050936000000,0.000018159500000,0.000048566000000,0.000013423000000,0.000053307000000,0.000083331000000,0.000080960000000,0.000180121000000,0.000095973000000,0.000095973000000,0.006668609000000,0.000122442000000,0.000184072000000,0.000078195000000,0.000092418000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006873252000000,0.000044826000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000041059000000,0.000013423333333,0.000052911000000,0.000080565000000,0.000079380000000,0.000309702000000,0.000145355000000,0.000133109000000,0.006828609000000,0.000121652000000,0.000121257000000,0.000085306000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.007246584000000,0.000032776500000,0.000013028000000,0.000040269000000,0.000016382000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000054097000000,0.000085701000000,0.000080960000000,0.000140615000000,0.000096763000000,0.000096763000000,0.007190486000000,0.000167479000000,0.000123232000000,0.000083726000000,0.000053702000000,0.000018752000000,0.000066343000000 +0.000015591500000,0.008533300000000,0.000026653000000,0.000014081666667,0.000039874000000,0.000016381500000,0.000049356000000,0.000018554000000,0.000039085000000,0.000014081666667,0.000056072000000,0.000081355000000,0.000080960000000,0.000177751000000,0.000096763000000,0.000096368000000,0.007014288000000,0.000123232000000,0.000121652000000,0.000079380000000,0.000053306000000,0.000019147000000,0.000066739000000 +0.000015393500000,0.006841252000000,0.000026653000000,0.000013028333333,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000014213333333,0.000053306000000,0.000082541000000,0.000116121000000,0.000139429000000,0.000096763000000,0.000097159000000,0.007440955000000,0.000120467000000,0.000122047000000,0.000084911000000,0.000054097000000,0.000018949500000,0.000085702000000 +0.000016184000000,0.007192066000000,0.000026455500000,0.000013686333333,0.000040269000000,0.000015788500000,0.000067923000000,0.000017962000000,0.000039084000000,0.000013423000000,0.000124812000000,0.000079776000000,0.000079381000000,0.000176961000000,0.000096763000000,0.000096763000000,0.006931721000000,0.000122442000000,0.000121652000000,0.000092813000000,0.000053702000000,0.000019344500000,0.000152072000000 +0.000015986500000,0.007233152000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000015591500000,0.000137059000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000067528000000,0.000083331000000,0.000079381000000,0.000174986000000,0.000095973000000,0.000096368000000,0.006942782000000,0.000122442000000,0.000158392000000,0.000065553000000,0.000053702000000,0.000018949000000,0.000082936000000 +0.000015394000000,0.006756313000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000016381500000,0.000152861000000,0.000018159500000,0.000040269000000,0.000013160000000,0.000053306000000,0.000079776000000,0.000081751000000,0.000176566000000,0.000096368000000,0.000096368000000,0.007276609000000,0.000122442000000,0.000121652000000,0.000064368000000,0.000053702000000,0.000018752000000,0.000065553000000 +0.000015591500000,0.007265943000000,0.000026061000000,0.000013686333333,0.000039874000000,0.000015789000000,0.000152862000000,0.000017961500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000079381000000,0.000087677000000,0.000176960000000,0.000097948000000,0.000097158000000,0.006787523000000,0.000121257000000,0.000122047000000,0.000069503000000,0.000053702000000,0.000018751500000,0.000066739000000 +0.000015394000000,0.007384856000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016184000000,0.000131529000000,0.000018159000000,0.000039085000000,0.000013028000000,0.000052911000000,0.000081356000000,0.000081751000000,0.000144565000000,0.000096368000000,0.000096368000000,0.006807276000000,0.000203429000000,0.000123232000000,0.000091627000000,0.000054492000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.007805202000000,0.000026258500000,0.000013028000000,0.000109010000000,0.000015789000000,0.000087677000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054887000000,0.000079776000000,0.000080565000000,0.000173800000000,0.000148516000000,0.000132713000000,0.007534585000000,0.000122047000000,0.000136664000000,0.000075825000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006998486000000,0.000026455500000,0.000013159666667,0.000055677000000,0.000016579000000,0.000051331000000,0.000017962000000,0.000039479000000,0.000015003333333,0.000054097000000,0.000083331000000,0.000079775000000,0.000208565000000,0.000096367000000,0.000110590000000,0.007176263000000,0.000124813000000,0.000129949000000,0.000084121000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000016184000000,0.007811127000000,0.000026456000000,0.000013028000000,0.000040270000000,0.000016579000000,0.000062393000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000052911000000,0.000079775000000,0.000078986000000,0.000252812000000,0.000095973000000,0.000097158000000,0.007199177000000,0.000121652000000,0.000129553000000,0.000062392000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015789000000,0.006825449000000,0.000026258000000,0.000013159666667,0.000041850000000,0.000016184000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000079380000000,0.000081356000000,0.000175381000000,0.000097554000000,0.000096368000000,0.006907621000000,0.000121652000000,0.000129553000000,0.000067529000000,0.000055281000000,0.000038110000000,0.000067528000000 +0.000015591500000,0.007075523000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000087677000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054491000000,0.000085702000000,0.000079776000000,0.000140220000000,0.000097948000000,0.000095973000000,0.007103573000000,0.000121652000000,0.000128368000000,0.000088862000000,0.000053701000000,0.000018751500000,0.000067924000000 +0.000015986000000,0.006904462000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000048171000000,0.000026850500000,0.000039479000000,0.000013028000000,0.000052911000000,0.000082146000000,0.000115726000000,0.000178541000000,0.000096763000000,0.000096763000000,0.006788313000000,0.000121257000000,0.000129949000000,0.000095578000000,0.000073059000000,0.000018752000000,0.000066739000000 +0.000015394000000,0.007128067000000,0.000044628500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000050541000000,0.000018554500000,0.000039874000000,0.000025143000000,0.000053306000000,0.000079380000000,0.000080170000000,0.000140219000000,0.000096763000000,0.000096763000000,0.007350486000000,0.000158788000000,0.000129553000000,0.000082146000000,0.000057257000000,0.000019937000000,0.000104269000000 +0.000015591500000,0.006979523000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000016579000000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000056072000000,0.000084122000000,0.000081751000000,0.000176961000000,0.000098738000000,0.000097158000000,0.006945153000000,0.000121652000000,0.000129553000000,0.000070294000000,0.000074244000000,0.000021122500000,0.000067924000000 +0.000015393500000,0.006794635000000,0.000026258500000,0.000013686333333,0.000039875000000,0.000016381500000,0.000050145000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000082541000000,0.000083726000000,0.000139430000000,0.000133503000000,0.000097553000000,0.007234733000000,0.000122442000000,0.000129948000000,0.000062788000000,0.000057257000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006893005000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039874000000,0.000013028000000,0.000092023000000,0.000081751000000,0.000081750000000,0.000172615000000,0.000097553000000,0.000134294000000,0.006742487000000,0.000121257000000,0.000128368000000,0.000101503000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006813597000000,0.000026456000000,0.000013555000000,0.000040270000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039480000000,0.000013291666667,0.000070294000000,0.000079380000000,0.000078985000000,0.000175381000000,0.000149306000000,0.000096368000000,0.007022189000000,0.000122837000000,0.000129158000000,0.000107035000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.007205894000000,0.000026455500000,0.000014213333333,0.000040270000000,0.000016579000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000055282000000,0.000081356000000,0.000079776000000,0.000142985000000,0.000095577000000,0.000096368000000,0.006935671000000,0.000121257000000,0.000130738000000,0.000068318000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000024875500000,0.006809251000000,0.000026456000000,0.000013818333333,0.000040270000000,0.000016381500000,0.000049750000000,0.000018159000000,0.000039084000000,0.000014081666667,0.000054887000000,0.000079380000000,0.000082936000000,0.000174590000000,0.000097158000000,0.000097158000000,0.007336658000000,0.000121257000000,0.000129158000000,0.000084912000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000023887500000,0.006960955000000,0.000026653000000,0.000013028333333,0.000039874000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000054096000000,0.000082541000000,0.000081355000000,0.000142195000000,0.000098739000000,0.000096368000000,0.006982289000000,0.000193553000000,0.000130343000000,0.000074244000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.006743672000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000034159000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053702000000,0.000081750000000,0.000090047000000,0.000174986000000,0.000096763000000,0.000099528000000,0.007370239000000,0.000122047000000,0.000130738000000,0.000077010000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006771720000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000056072000000,0.000084516000000,0.000118492000000,0.000139825000000,0.000095578000000,0.000096763000000,0.006799770000000,0.000121257000000,0.000129553000000,0.000084911000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000015591000000,0.006887079000000,0.000026456000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048565000000,0.000018752000000,0.000039084000000,0.000013949666667,0.000052911000000,0.000081355000000,0.000080566000000,0.000174195000000,0.000096763000000,0.000095577000000,0.006987425000000,0.000121652000000,0.000129158000000,0.000068714000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006993350000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081355000000,0.000082146000000,0.000173800000000,0.000179331000000,0.000095578000000,0.007103967000000,0.000122442000000,0.000130739000000,0.000081751000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.007508906000000,0.000026258500000,0.000013818000000,0.000040269000000,0.000016776500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000056861000000,0.000086096000000,0.000081750000000,0.000139825000000,0.000097158000000,0.000133899000000,0.006786733000000,0.000122442000000,0.000129158000000,0.000090047000000,0.000057257000000,0.000018752000000,0.000087282000000 +0.000015591000000,0.007032066000000,0.000026258000000,0.000013159666667,0.000041454000000,0.000016382000000,0.000049356000000,0.000018159500000,0.000041455000000,0.000013159666667,0.000054491000000,0.000082936000000,0.000079380000000,0.000176565000000,0.000095973000000,0.000095973000000,0.006827029000000,0.000121257000000,0.000129948000000,0.000067134000000,0.000053307000000,0.000018752000000,0.000101109000000 +0.000016184000000,0.007135968000000,0.000067146500000,0.000013028000000,0.000060022000000,0.000016381500000,0.000068318000000,0.000018159000000,0.000108614000000,0.000013423000000,0.000053306000000,0.000080566000000,0.000079775000000,0.000140220000000,0.000096368000000,0.000098344000000,0.006937251000000,0.000158392000000,0.000129158000000,0.000061997000000,0.000053702000000,0.000019147000000,0.000067529000000 +0.000016184000000,0.006830585000000,0.000026455500000,0.000013159666667,0.000054491000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000042245000000,0.000013028000000,0.000053701000000,0.000079381000000,0.000080565000000,0.000176960000000,0.000095972000000,0.000098343000000,0.007390387000000,0.000122837000000,0.000130343000000,0.000077010000000,0.000098344000000,0.000019344500000,0.000066344000000 +0.000015986500000,0.006936461000000,0.000026258500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048960000000,0.000018159500000,0.000053307000000,0.000014345000000,0.000053701000000,0.000080566000000,0.000084121000000,0.000171825000000,0.000095578000000,0.000097553000000,0.007296758000000,0.000121652000000,0.000129554000000,0.000094393000000,0.000061603000000,0.000018752000000,0.000067924000000 +0.000015591000000,0.006974388000000,0.000026060500000,0.000013686666667,0.000041849000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039480000000,0.000013028000000,0.000054097000000,0.000078986000000,0.000081356000000,0.000140614000000,0.000095578000000,0.000096368000000,0.007097251000000,0.000122837000000,0.000129948000000,0.000077010000000,0.000058047000000,0.000018751500000,0.000067924000000 +0.000015591500000,0.006958190000000,0.000026258500000,0.000013159666667,0.000040664000000,0.000015591500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013291666667,0.000129553000000,0.000081751000000,0.000081751000000,0.000175775000000,0.000096763000000,0.000097158000000,0.006708116000000,0.000122047000000,0.000130738000000,0.000110985000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000015788500000,0.006877598000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000147726000000,0.000081751000000,0.000118097000000,0.000175775000000,0.000139430000000,0.000097158000000,0.006818733000000,0.000121257000000,0.000145356000000,0.000071874000000,0.000053306000000,0.000053912000000,0.000067528000000 +0.000015591500000,0.007290436000000,0.000026258000000,0.000013028333333,0.000040664000000,0.000016381500000,0.000049356000000,0.000018356500000,0.000039084000000,0.000013159666667,0.000177751000000,0.000082145000000,0.000083331000000,0.000173010000000,0.000096368000000,0.000096368000000,0.007102782000000,0.000122047000000,0.000129158000000,0.000073849000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006756708000000,0.000026258000000,0.000013554666667,0.000041850000000,0.000016381500000,0.000049355000000,0.000027641000000,0.000039084000000,0.000013291333333,0.000126787000000,0.000109405000000,0.000080960000000,0.000141405000000,0.000097158000000,0.000199479000000,0.007219325000000,0.000215282000000,0.000128763000000,0.000072269000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015591500000,0.006922240000000,0.000026456000000,0.000013028000000,0.000039875000000,0.000016381500000,0.000048566000000,0.000026455500000,0.000039084000000,0.000025143333333,0.000092812000000,0.000079381000000,0.000081356000000,0.000252813000000,0.000096368000000,0.000137455000000,0.006958980000000,0.000373701000000,0.000128368000000,0.000078986000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006778436000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000056862000000,0.000079776000000,0.000081751000000,0.000179331000000,0.000096368000000,0.000113751000000,0.006779227000000,0.000150096000000,0.000130343000000,0.000071875000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006843227000000,0.000026456000000,0.000013028000000,0.000039875000000,0.000015789000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000067924000000,0.000079776000000,0.000080171000000,0.000145356000000,0.000095577000000,0.000095973000000,0.006905646000000,0.000122837000000,0.000129948000000,0.000064368000000,0.000053702000000,0.000019147000000,0.000114541000000 +0.000015591500000,0.006709302000000,0.000027245500000,0.000013028000000,0.000039875000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000052911000000,0.000082146000000,0.000080171000000,0.000235035000000,0.000095973000000,0.000095973000000,0.006805696000000,0.000122442000000,0.000130343000000,0.000064368000000,0.000053702000000,0.000018752000000,0.000069504000000 +0.000015394000000,0.007038387000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016382000000,0.000049356000000,0.000018356500000,0.000039084000000,0.000013291333333,0.000125207000000,0.000079381000000,0.000079380000000,0.000139825000000,0.000095578000000,0.000096368000000,0.007205893000000,0.000157208000000,0.000129948000000,0.000094788000000,0.000053307000000,0.000018752000000,0.000066739000000 +0.000015394000000,0.007104362000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013423333333,0.000070689000000,0.000080961000000,0.000080565000000,0.000330245000000,0.000097158000000,0.000096368000000,0.006977548000000,0.000123232000000,0.000129949000000,0.000086887000000,0.000055282000000,0.000019147000000,0.000067528000000 +0.000015591500000,0.006766190000000,0.000028035500000,0.000013028000000,0.000040664000000,0.000016381500000,0.000048960000000,0.000018554500000,0.000039084000000,0.000013423333333,0.000067924000000,0.000082541000000,0.000081751000000,0.000312467000000,0.000135479000000,0.000097159000000,0.007265547000000,0.000121257000000,0.000129948000000,0.000099923000000,0.000053702000000,0.000018949000000,0.000067528000000 +0.000015591000000,0.006683622000000,0.000026258000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000053307000000,0.000081355000000,0.000159973000000,0.000191973000000,0.000124417000000,0.000165899000000,0.006813992000000,0.000122442000000,0.000129553000000,0.000070689000000,0.000054492000000,0.000019147000000,0.000067923000000 +0.000015591500000,0.007016659000000,0.000044431000000,0.000013159666667,0.000040269000000,0.000017369000000,0.000048960000000,0.000018159000000,0.000039874000000,0.000013291333333,0.000055676000000,0.000083331000000,0.000095972000000,0.000172220000000,0.000096368000000,0.000096368000000,0.006806486000000,0.000125602000000,0.000130738000000,0.000084911000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015394000000,0.006860214000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053307000000,0.000080566000000,0.000082541000000,0.000140615000000,0.000097553000000,0.000097158000000,0.006901300000000,0.000122047000000,0.000129948000000,0.000078985000000,0.000053701000000,0.000019344500000,0.000067529000000 +0.000015591000000,0.007223276000000,0.000026060500000,0.000013028333333,0.000041454000000,0.000032579000000,0.000068319000000,0.000018159500000,0.000039480000000,0.000013423000000,0.000054886000000,0.000079776000000,0.000082541000000,0.000176171000000,0.000115331000000,0.000097159000000,0.006739721000000,0.000122442000000,0.000184466000000,0.000082541000000,0.000071479000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.006988610000000,0.000026455500000,0.000013159666667,0.000059627000000,0.000017567000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053702000000,0.000083726000000,0.000084911000000,0.000140615000000,0.000097158000000,0.000097158000000,0.006781202000000,0.000158392000000,0.000129553000000,0.000068714000000,0.000054097000000,0.000019344500000,0.000066739000000 +0.000033567000000,0.007259621000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000023493000000,0.000048566000000,0.000018159500000,0.000040269000000,0.000013291333333,0.000055282000000,0.000082145000000,0.000081356000000,0.000175776000000,0.000096763000000,0.000096368000000,0.008096362000000,0.000124417000000,0.000128763000000,0.000061997000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006881547000000,0.000026455500000,0.000013818333333,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000052911000000,0.000082146000000,0.000081751000000,0.000176960000000,0.000095973000000,0.000099924000000,0.007312165000000,0.000123627000000,0.000131529000000,0.000082146000000,0.000054097000000,0.000018751500000,0.000066343000000 +0.000015394000000,0.006802536000000,0.000026258000000,0.000013291666667,0.000039874000000,0.000016381500000,0.000051331000000,0.000018357000000,0.000039084000000,0.000013028000000,0.000052516000000,0.000084911000000,0.000079775000000,0.000140220000000,0.000096764000000,0.000097158000000,0.007208659000000,0.000122047000000,0.000130344000000,0.000071875000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006930140000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018357000000,0.000039480000000,0.000013686666667,0.000054886000000,0.000079775000000,0.000084121000000,0.000178145000000,0.000134294000000,0.000135874000000,0.007293992000000,0.000121257000000,0.000130739000000,0.000072269000000,0.000054097000000,0.000018751500000,0.000146146000000 +0.000015591500000,0.007045499000000,0.000027838000000,0.000013028000000,0.000040269000000,0.000016777000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000052912000000,0.000084121000000,0.000080171000000,0.000140615000000,0.000097158000000,0.000124812000000,0.006763819000000,0.000121257000000,0.000129553000000,0.000069109000000,0.000054096000000,0.000018752000000,0.000081355000000 +0.000015394000000,0.007399868000000,0.000028430500000,0.000013160000000,0.000039875000000,0.000016381500000,0.000050146000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000080171000000,0.000135084000000,0.000181701000000,0.000095973000000,0.000096763000000,0.006831375000000,0.000122442000000,0.000136269000000,0.000083331000000,0.000053701000000,0.000035739500000,0.000067133000000 +0.000015986500000,0.008044214000000,0.000026455500000,0.000013159666667,0.000039875000000,0.000016184000000,0.000048565000000,0.000018356500000,0.000039479000000,0.000013028000000,0.000091627000000,0.000080961000000,0.000096763000000,0.000137849000000,0.000097553000000,0.000096763000000,0.008237003000000,0.000190393000000,0.000128763000000,0.000070689000000,0.000054096000000,0.000020332500000,0.000067923000000 +0.000015394000000,0.007480856000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000016579000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053307000000,0.000082146000000,0.000080566000000,0.000176565000000,0.000097158000000,0.000097553000000,0.007399474000000,0.000136269000000,0.000128763000000,0.000063183000000,0.000053701000000,0.000025863000000,0.000067528000000 +0.000015591500000,0.006944362000000,0.000026455500000,0.000013160000000,0.000040270000000,0.000016184000000,0.000049751000000,0.000018357000000,0.000039479000000,0.000013423000000,0.000052911000000,0.000188813000000,0.000082541000000,0.000174590000000,0.000095577000000,0.000096763000000,0.006899326000000,0.000122442000000,0.000128763000000,0.000088466000000,0.000053701000000,0.000018949500000,0.000068714000000 +0.000015591000000,0.007405795000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015986500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000025406333333,0.000056072000000,0.000103479000000,0.000083331000000,0.000138245000000,0.000096368000000,0.000129553000000,0.007421597000000,0.000122837000000,0.000129158000000,0.000080961000000,0.000053306000000,0.000018751500000,0.000066343000000 +0.000015591500000,0.006973597000000,0.000028431000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048565000000,0.000017961500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000098344000000,0.000079380000000,0.000173405000000,0.000095973000000,0.000099923000000,0.007005597000000,0.000122442000000,0.000129158000000,0.000096367000000,0.000053701000000,0.000019937000000,0.000067529000000 +0.000015986500000,0.007071968000000,0.000044431000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000036134500000,0.000041060000000,0.000013291333333,0.000053306000000,0.000081751000000,0.000080961000000,0.000141405000000,0.000097948000000,0.000115726000000,0.006960165000000,0.000121652000000,0.000129948000000,0.000083726000000,0.000053701000000,0.000029023500000,0.000066739000000 +0.000015591500000,0.006832955000000,0.000026653000000,0.000013159666667,0.000041059000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053701000000,0.000079381000000,0.000079380000000,0.000173010000000,0.000205800000000,0.000097553000000,0.006935276000000,0.000123627000000,0.000131529000000,0.000077405000000,0.000053701000000,0.000029616000000,0.000067924000000 +0.000015394000000,0.007421597000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000015393500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000053307000000,0.000083331000000,0.000081355000000,0.000139429000000,0.000269800000000,0.000095973000000,0.007080264000000,0.000164318000000,0.000129553000000,0.000084911000000,0.000053701000000,0.000027443000000,0.000067923000000 +0.000015591000000,0.007010338000000,0.000026258000000,0.000013159666667,0.000041059000000,0.000015789000000,0.000049355000000,0.000018357000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000083331000000,0.000081751000000,0.000174195000000,0.000238590000000,0.000096368000000,0.007120165000000,0.000122442000000,0.000129948000000,0.000073850000000,0.000089652000000,0.000018752000000,0.000103480000000 +0.000015394000000,0.007132016000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000052912000000,0.000086887000000,0.000116121000000,0.000178541000000,0.000114936000000,0.000096763000000,0.006714437000000,0.000121652000000,0.000129553000000,0.000077800000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006883128000000,0.000026258000000,0.000014740000000,0.000039874000000,0.000016579500000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000079381000000,0.000080960000000,0.000146935000000,0.000144566000000,0.000096763000000,0.006759079000000,0.000122442000000,0.000129553000000,0.000089651000000,0.000054492000000,0.000018949500000,0.000068319000000 +0.000015591500000,0.006717992000000,0.000027443000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000066739000000,0.000018159000000,0.000039479000000,0.000013423333333,0.000053306000000,0.000080566000000,0.000079380000000,0.000179726000000,0.000097159000000,0.000097553000000,0.006902486000000,0.000122047000000,0.000129949000000,0.000078986000000,0.000054886000000,0.000018554500000,0.000067529000000 +0.000015986500000,0.006972412000000,0.000026060500000,0.000013160000000,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000055676000000,0.000081356000000,0.000079776000000,0.000139825000000,0.000096368000000,0.000096763000000,0.007095276000000,0.000122837000000,0.000132714000000,0.000085702000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006767770000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000083331000000,0.000079381000000,0.000178146000000,0.000097553000000,0.000097158000000,0.006984264000000,0.000122047000000,0.000129554000000,0.000093998000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.007126485000000,0.000026258000000,0.000014213000000,0.000039875000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053701000000,0.000080565000000,0.000079776000000,0.000173010000000,0.000096368000000,0.000135084000000,0.006984659000000,0.000191182000000,0.000130344000000,0.000077405000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015789000000,0.006695868000000,0.000027245500000,0.000016056666667,0.000109405000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000053306000000,0.000089257000000,0.000080961000000,0.000138639000000,0.000096763000000,0.000122837000000,0.006715227000000,0.000121257000000,0.000129948000000,0.000079775000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006957795000000,0.000026653000000,0.000013554666667,0.000054887000000,0.000016381500000,0.000050146000000,0.000018159000000,0.000040269000000,0.000013291666667,0.000089652000000,0.000081751000000,0.000081751000000,0.000174195000000,0.000096763000000,0.000097158000000,0.006830190000000,0.000123232000000,0.000129553000000,0.000078985000000,0.000054886000000,0.000018949500000,0.000068318000000 +0.000015591500000,0.006930931000000,0.000026258000000,0.000013818000000,0.000040270000000,0.000015986500000,0.000048565000000,0.000018159000000,0.000077010000000,0.000013555000000,0.000055281000000,0.000081356000000,0.000083726000000,0.000141405000000,0.000095183000000,0.000097158000000,0.006802930000000,0.000121652000000,0.000128763000000,0.000082146000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015591000000,0.007254486000000,0.000026258000000,0.000013554666667,0.000039875000000,0.000034159500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000079381000000,0.000082541000000,0.000197503000000,0.000097158000000,0.000095973000000,0.006723523000000,0.000122047000000,0.000130343000000,0.000071084000000,0.000053306000000,0.000018752000000,0.000065948000000 +0.000015591500000,0.006799375000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000016579500000,0.000048961000000,0.000018357000000,0.000039085000000,0.000013291333333,0.000054886000000,0.000082541000000,0.000083331000000,0.000132319000000,0.000133504000000,0.000097158000000,0.006766980000000,0.000122047000000,0.000129949000000,0.000068713000000,0.000054491000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.007079078000000,0.000039888000000,0.000013028000000,0.000040270000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000082146000000,0.000124812000000,0.000168665000000,0.000095578000000,0.000095973000000,0.006929350000000,0.000120862000000,0.000131133000000,0.000087282000000,0.000053701000000,0.000042258000000,0.000067529000000 +0.000033566500000,0.006720362000000,0.000026258500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000056862000000,0.000080960000000,0.000081750000000,0.000168665000000,0.000097159000000,0.000097158000000,0.006993350000000,0.000199874000000,0.000129553000000,0.000098738000000,0.000053701000000,0.000018949500000,0.000139035000000 +0.000016184000000,0.006797005000000,0.000026258000000,0.000013423000000,0.000040664000000,0.000015591500000,0.000049750000000,0.000018357000000,0.000039084000000,0.000013291333333,0.000056862000000,0.000080565000000,0.000081751000000,0.000215677000000,0.000095973000000,0.000097553000000,0.006849547000000,0.000125208000000,0.000129158000000,0.000088466000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.007216560000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000082145000000,0.000080961000000,0.000180121000000,0.000097158000000,0.000142590000000,0.007132807000000,0.000120466000000,0.000129158000000,0.000081751000000,0.000072269000000,0.000018752000000,0.000067923000000 +0.000015591000000,0.006898930000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000014081666667,0.000053306000000,0.000082146000000,0.000079776000000,0.000136665000000,0.000096763000000,0.000096368000000,0.007006783000000,0.000123232000000,0.000140220000000,0.000077800000000,0.000070294000000,0.000018554500000,0.000067528000000 +0.000015591500000,0.006774881000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000018953666667,0.000055282000000,0.000079776000000,0.000096368000000,0.000243726000000,0.000095973000000,0.000096368000000,0.006990190000000,0.000122443000000,0.000121257000000,0.000080961000000,0.000054491000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.006894980000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049355000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000080170000000,0.000081750000000,0.000133109000000,0.000095973000000,0.000096368000000,0.006809251000000,0.000121652000000,0.000122442000000,0.000085306000000,0.000053701000000,0.000019937000000,0.000067133000000 +0.000015394000000,0.007178239000000,0.000026653500000,0.000013028000000,0.000040269000000,0.000016382000000,0.000048960000000,0.000018356500000,0.000039874000000,0.000013818333333,0.000053306000000,0.000081356000000,0.000079380000000,0.000201455000000,0.000096368000000,0.000095973000000,0.007028906000000,0.000122442000000,0.000140615000000,0.000071084000000,0.000053701000000,0.000018554500000,0.000067133000000 +0.000016579000000,0.006883523000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000069109000000,0.000018357000000,0.000039479000000,0.000013159666667,0.000053702000000,0.000082146000000,0.000080170000000,0.000181701000000,0.000133503000000,0.000099923000000,0.007549597000000,0.000158393000000,0.000135084000000,0.000077800000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000015591500000,0.008072658000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000052121000000,0.000035739500000,0.000039085000000,0.000013423000000,0.000054096000000,0.000080566000000,0.000080961000000,0.000130343000000,0.000096368000000,0.000095973000000,0.007083819000000,0.000122047000000,0.000122442000000,0.000078590000000,0.000055281000000,0.000018752000000,0.000067529000000 +0.000015591000000,0.008586633000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000061603000000,0.000025468000000,0.000039084000000,0.000013159666667,0.000053307000000,0.000085702000000,0.000144566000000,0.000316812000000,0.000144961000000,0.000097949000000,0.006905252000000,0.000122047000000,0.000122442000000,0.000103084000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.008621003000000,0.000026258500000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000087281000000,0.000082541000000,0.000081356000000,0.000132713000000,0.000097948000000,0.000097158000000,0.007137942000000,0.000121652000000,0.000121652000000,0.000080960000000,0.000053307000000,0.000018752000000,0.000067923000000 +0.000015788500000,0.009447076000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048565000000,0.000018356500000,0.000039479000000,0.000013159666667,0.000068319000000,0.000080961000000,0.000080566000000,0.000184862000000,0.000096763000000,0.000167084000000,0.006797005000000,0.000120862000000,0.000123232000000,0.000091232000000,0.000055282000000,0.000018554000000,0.000067528000000 +0.000015986500000,0.008511967000000,0.000030604000000,0.000013159666667,0.000040664000000,0.000016381500000,0.000050146000000,0.000018159000000,0.000041059000000,0.000014081333333,0.000053702000000,0.000080171000000,0.000082146000000,0.000265455000000,0.000097159000000,0.000109405000000,0.007184560000000,0.000122442000000,0.000122838000000,0.000067528000000,0.000054492000000,0.000018752000000,0.000103085000000 +0.000015393500000,0.008727670000000,0.000026060500000,0.000013160000000,0.000040269000000,0.000015986500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000054491000000,0.000083331000000,0.000082145000000,0.000152072000000,0.000095973000000,0.000096368000000,0.007208264000000,0.000120861000000,0.000176961000000,0.000084517000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.008518288000000,0.000026258000000,0.000013028000000,0.000109010000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054097000000,0.000081356000000,0.000083331000000,0.000259133000000,0.000095973000000,0.000096368000000,0.006906437000000,0.000141010000000,0.000122837000000,0.000063973000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.008840657000000,0.000044233500000,0.000013291666667,0.000057652000000,0.000016382000000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054491000000,0.000081356000000,0.000080960000000,0.000132319000000,0.000150886000000,0.000096763000000,0.006914733000000,0.000121257000000,0.000123233000000,0.000065948000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.008481151000000,0.000027443500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000040269000000,0.000013159666667,0.000052912000000,0.000082936000000,0.000079775000000,0.000214492000000,0.000095578000000,0.000096763000000,0.006851918000000,0.000121257000000,0.000121257000000,0.000065553000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.008107819000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013028333333,0.000053306000000,0.000082146000000,0.000083331000000,0.000133109000000,0.000097158000000,0.000096368000000,0.006909992000000,0.000122442000000,0.000120862000000,0.000114146000000,0.000056071000000,0.000018751500000,0.000067528000000 +0.000015591500000,0.008954040000000,0.000026456000000,0.000024880000000,0.000040269000000,0.000015789000000,0.000049750000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053307000000,0.000099133000000,0.000083331000000,0.000163923000000,0.000096368000000,0.000097553000000,0.007019029000000,0.000122837000000,0.000120466000000,0.000077405000000,0.000053306000000,0.000018554500000,0.000067528000000 +0.000015591500000,0.007693004000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000050936000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000089652000000,0.000081751000000,0.000168664000000,0.000097158000000,0.000133504000000,0.007022979000000,0.000122837000000,0.000121652000000,0.000080171000000,0.000089652000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006975572000000,0.000026455500000,0.000013686333333,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039480000000,0.000013423000000,0.000053306000000,0.000095578000000,0.000081750000000,0.000131924000000,0.000099134000000,0.000096763000000,0.007084215000000,0.000122837000000,0.000157998000000,0.000073455000000,0.000054096000000,0.000018752000000,0.000066739000000 +0.000015591500000,0.007144659000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000186837000000,0.000080961000000,0.000168664000000,0.000096763000000,0.000096368000000,0.006729054000000,0.000121652000000,0.000122442000000,0.000092418000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000016184500000,0.007058535000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000016382000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000055282000000,0.000082145000000,0.000082541000000,0.000171430000000,0.000096763000000,0.000097158000000,0.007140708000000,0.000171825000000,0.000122442000000,0.000103084000000,0.000054491000000,0.000019147000000,0.000067923000000 +0.000015591500000,0.007111869000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000024678000000,0.000048566000000,0.000019542000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000080170000000,0.000084121000000,0.000260319000000,0.000097159000000,0.000096763000000,0.006831770000000,0.000122442000000,0.000122838000000,0.000115331000000,0.000053306000000,0.000019147000000,0.000067528000000 +0.000015394000000,0.006701005000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049751000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000081355000000,0.000133109000000,0.000133109000000,0.000096763000000,0.006813202000000,0.000121652000000,0.000122047000000,0.000080960000000,0.000053701000000,0.000018751500000,0.000088071000000 +0.000015394000000,0.006715227000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000068318000000,0.000018356500000,0.000039084000000,0.000028699000000,0.000074640000000,0.000080565000000,0.000081751000000,0.000165109000000,0.000099134000000,0.000097553000000,0.006993350000000,0.000121257000000,0.000122047000000,0.000082936000000,0.000054491000000,0.000019147000000,0.000196713000000 +0.000033567000000,0.006792264000000,0.000026258000000,0.000013818333333,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000081356000000,0.000128368000000,0.000188813000000,0.000095973000000,0.000096763000000,0.006966091000000,0.000122837000000,0.000121257000000,0.000116121000000,0.000054096000000,0.000018949500000,0.000226343000000 +0.000015986500000,0.006783572000000,0.000026258000000,0.000013555000000,0.000040269000000,0.000015789000000,0.000049750000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000056467000000,0.000080171000000,0.000078985000000,0.000134294000000,0.000096368000000,0.000099134000000,0.007111078000000,0.000121257000000,0.000121652000000,0.000062788000000,0.000053701000000,0.000020134500000,0.000151281000000 +0.000016184000000,0.006763425000000,0.000026850500000,0.000013159666667,0.000041849000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000056862000000,0.000080170000000,0.000129158000000,0.000202245000000,0.000095973000000,0.000168270000000,0.006810832000000,0.000122442000000,0.000261109000000,0.000085701000000,0.000053306000000,0.000018752000000,0.000072269000000 +0.000015591500000,0.007009548000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000050936000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053307000000,0.000079380000000,0.000086887000000,0.000133109000000,0.000096763000000,0.000097553000000,0.006810437000000,0.000171825000000,0.000138245000000,0.000078985000000,0.000053306000000,0.000018751500000,0.000080961000000 +0.000015789000000,0.007226832000000,0.000035937000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000047775000000,0.000018159000000,0.000039480000000,0.000013554666667,0.000054096000000,0.000081356000000,0.000079380000000,0.000163133000000,0.000096368000000,0.000098738000000,0.007228412000000,0.000122838000000,0.000122047000000,0.000077010000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006708115000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048565000000,0.000036134500000,0.000039479000000,0.000013159666667,0.000054097000000,0.000079380000000,0.000083331000000,0.000164318000000,0.000097554000000,0.000097158000000,0.006959375000000,0.000123627000000,0.000142590000000,0.000081751000000,0.000053701000000,0.000018752000000,0.000122047000000 +0.000016184000000,0.006863375000000,0.000026455500000,0.000013291333333,0.000039874000000,0.000015591500000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000054491000000,0.000080170000000,0.000080171000000,0.000133899000000,0.000097158000000,0.000096368000000,0.006880363000000,0.000121257000000,0.000161158000000,0.000084517000000,0.000053701000000,0.000019344500000,0.000071085000000 +0.000015394000000,0.006902091000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018357000000,0.000039874000000,0.000014213000000,0.000053307000000,0.000083726000000,0.000081356000000,0.000261898000000,0.000131923000000,0.000095973000000,0.007069202000000,0.000121257000000,0.000238195000000,0.000110591000000,0.000053701000000,0.000018751500000,0.000067924000000 +0.000015591500000,0.006821498000000,0.000026455500000,0.000013028000000,0.000076615000000,0.000016381500000,0.000050541000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000054491000000,0.000081356000000,0.000080961000000,0.000133109000000,0.000095973000000,0.000095973000000,0.006855869000000,0.000121257000000,0.000121652000000,0.000100319000000,0.000054096000000,0.000021122500000,0.000067529000000 +0.000015394000000,0.006930536000000,0.000026061000000,0.000013159666667,0.000041454000000,0.000015591500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000056072000000,0.000083331000000,0.000081356000000,0.000280071000000,0.000096763000000,0.000097553000000,0.006901696000000,0.000122837000000,0.000121652000000,0.000066343000000,0.000109405000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006832955000000,0.000026455500000,0.000013950000000,0.000040269000000,0.000016382000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081750000000,0.000081356000000,0.000195528000000,0.000096763000000,0.000132319000000,0.007040362000000,0.000158392000000,0.000122047000000,0.000081356000000,0.000110590000000,0.000018752000000,0.000067923000000 +0.000015394000000,0.007417646000000,0.000026258500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000050936000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082146000000,0.000082541000000,0.000180516000000,0.000096763000000,0.000097553000000,0.006930930000000,0.000122047000000,0.000122442000000,0.000081751000000,0.000101108000000,0.000018752000000,0.000067923000000 +0.000015591000000,0.006926190000000,0.000026455500000,0.000013554666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000052911000000,0.000083331000000,0.000078985000000,0.000238195000000,0.000097158000000,0.000096763000000,0.007042733000000,0.000122047000000,0.000122442000000,0.000075825000000,0.000069504000000,0.000019147000000,0.000067133000000 +0.000015986500000,0.007415671000000,0.000028628500000,0.000013818000000,0.000039874000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000076220000000,0.000013423333333,0.000053702000000,0.000080171000000,0.000099529000000,0.000144960000000,0.000096368000000,0.000096763000000,0.006876017000000,0.000120861000000,0.000122837000000,0.000101899000000,0.000053702000000,0.000018752000000,0.000067134000000 +0.000015393500000,0.007060906000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000089257000000,0.000081356000000,0.000080566000000,0.000166689000000,0.000097158000000,0.000097158000000,0.007364708000000,0.000122442000000,0.000158393000000,0.000075824000000,0.000054097000000,0.000019147000000,0.000068319000000 +0.000015986500000,0.007321251000000,0.000026258000000,0.000013686333333,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053701000000,0.000081751000000,0.000081356000000,0.000132319000000,0.000096368000000,0.000098343000000,0.006851128000000,0.000121652000000,0.000122442000000,0.000065948000000,0.000054096000000,0.000019147000000,0.000067529000000 +0.000016184000000,0.007124115000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000052121000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053307000000,0.000079380000000,0.000081355000000,0.000165899000000,0.000131923000000,0.000097554000000,0.006824264000000,0.000122442000000,0.000122442000000,0.000086492000000,0.000053306000000,0.000037319500000,0.000067924000000 +0.000015591500000,0.007088560000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000084911000000,0.000018159500000,0.000039874000000,0.000013159666667,0.000054886000000,0.000080566000000,0.000078985000000,0.000130343000000,0.000097158000000,0.000096763000000,0.007005202000000,0.000142986000000,0.000122442000000,0.000076615000000,0.000053701000000,0.000018752000000,0.000104269000000 +0.000015986500000,0.006842042000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048961000000,0.000018159500000,0.000039480000000,0.000013291666667,0.000055282000000,0.000079381000000,0.000081356000000,0.000202244000000,0.000097158000000,0.000095973000000,0.006876412000000,0.000152071000000,0.000121652000000,0.000086491000000,0.000073059000000,0.000018752000000,0.000067923000000 +0.000015789000000,0.007106732000000,0.000036529500000,0.000013160000000,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000054097000000,0.000080961000000,0.000081355000000,0.000169059000000,0.000097158000000,0.000191183000000,0.006976362000000,0.000122442000000,0.000121652000000,0.000082146000000,0.000070689000000,0.000019739500000,0.000068318000000 +0.000015789000000,0.006902881000000,0.000040085500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000019744000000,0.000055281000000,0.000079381000000,0.000079775000000,0.000133899000000,0.000096368000000,0.000106244000000,0.007167177000000,0.000122047000000,0.000122047000000,0.000084122000000,0.000069109000000,0.000018554500000,0.000067923000000 +0.000015986500000,0.006826635000000,0.000026258000000,0.000013028333333,0.000040664000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000039479000000,0.000018954000000,0.000056072000000,0.000081356000000,0.000080565000000,0.000165899000000,0.000096368000000,0.000235034000000,0.007247770000000,0.000121257000000,0.000157997000000,0.000077010000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015789000000,0.007171127000000,0.000026455500000,0.000013686333333,0.000040269000000,0.000029418500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053307000000,0.000079776000000,0.000081356000000,0.000131529000000,0.000096368000000,0.000114936000000,0.006809646000000,0.000122047000000,0.000122837000000,0.000086887000000,0.000090047000000,0.000018752000000,0.000068318000000 +0.000016184000000,0.006840066000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048171000000,0.000018159500000,0.000039479000000,0.000013160000000,0.000053306000000,0.000081751000000,0.000228319000000,0.000165504000000,0.000097158000000,0.000095973000000,0.006696659000000,0.000122047000000,0.000156022000000,0.000078195000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.007373004000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048566000000,0.000018356500000,0.000039084000000,0.000013423333333,0.000055677000000,0.000079776000000,0.000134689000000,0.000257553000000,0.000118096000000,0.000095973000000,0.006983474000000,0.000157997000000,0.000121256000000,0.000067529000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015591500000,0.007213004000000,0.000027048000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000080961000000,0.000098738000000,0.000142195000000,0.000097158000000,0.000097158000000,0.006757103000000,0.000122047000000,0.000122837000000,0.000083726000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007007572000000,0.000026060500000,0.000013686333333,0.000039874000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053702000000,0.000080171000000,0.000081750000000,0.000177751000000,0.000097158000000,0.000133109000000,0.006877202000000,0.000120862000000,0.000121651000000,0.000085306000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000041665500000,0.007175474000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016382000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000080566000000,0.000081750000000,0.000144566000000,0.000095972000000,0.000095578000000,0.007252906000000,0.000121651000000,0.000121652000000,0.000086887000000,0.000054491000000,0.000018949500000,0.000067528000000 +0.000024283000000,0.006850733000000,0.000026258500000,0.000013028000000,0.000095182000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000054492000000,0.000080171000000,0.000081355000000,0.000182491000000,0.000095973000000,0.000097553000000,0.006750782000000,0.000173800000000,0.000172220000000,0.000065949000000,0.000053701000000,0.000019937000000,0.000067133000000 +0.000015394000000,0.007049449000000,0.000026653000000,0.000013159666667,0.000068714000000,0.000015789000000,0.000048566000000,0.000039493000000,0.000039479000000,0.000013028000000,0.000093997000000,0.000083726000000,0.000081356000000,0.000176170000000,0.000096368000000,0.000096763000000,0.006900906000000,0.000122442000000,0.000122047000000,0.000063578000000,0.000053306000000,0.000019147000000,0.000086491000000 +0.000015789000000,0.007349696000000,0.000026061000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048171000000,0.000018357000000,0.000039084000000,0.000013291333333,0.000069504000000,0.000082541000000,0.000099134000000,0.000175775000000,0.000097158000000,0.000097158000000,0.006874832000000,0.000122837000000,0.000122442000000,0.000101108000000,0.000053701000000,0.000019147000000,0.000066343000000 +0.000015591500000,0.006785153000000,0.000026060500000,0.000013291666667,0.000040270000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039085000000,0.000013554666667,0.000054491000000,0.000079380000000,0.000080960000000,0.000178936000000,0.000095973000000,0.000097158000000,0.006725103000000,0.000138639000000,0.000122047000000,0.000061998000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000016184000000,0.006848758000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048565000000,0.000018159000000,0.000041060000000,0.000013554666667,0.000054096000000,0.000080170000000,0.000080960000000,0.000138639000000,0.000097948000000,0.000096763000000,0.007150189000000,0.000121257000000,0.000121652000000,0.000095973000000,0.000053701000000,0.000018752000000,0.000066343000000 +0.000015986500000,0.006934486000000,0.000026060500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013686333333,0.000052911000000,0.000080170000000,0.000082936000000,0.000180121000000,0.000095973000000,0.000096368000000,0.006956610000000,0.000121257000000,0.000122047000000,0.000077010000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006729844000000,0.000045221000000,0.000013160000000,0.000039874000000,0.000016776500000,0.000048565000000,0.000018159500000,0.000040269000000,0.000013291333333,0.000053701000000,0.000087281000000,0.000081750000000,0.000139825000000,0.000113751000000,0.000095578000000,0.007359177000000,0.000121257000000,0.000122047000000,0.000077800000000,0.000053701000000,0.000019740000000,0.000066344000000 +0.000016184000000,0.006957005000000,0.000026258000000,0.000013423000000,0.000040269000000,0.000016382000000,0.000090442000000,0.000018159500000,0.000039084000000,0.000026591666667,0.000053306000000,0.000081356000000,0.000079380000000,0.000173405000000,0.000096368000000,0.000133109000000,0.006839671000000,0.000120862000000,0.000158787000000,0.000062392000000,0.000054096000000,0.000018554500000,0.000067529000000 +0.000015591000000,0.006937251000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013949666667,0.000053307000000,0.000087677000000,0.000079380000000,0.000139035000000,0.000098344000000,0.000097554000000,0.007144658000000,0.000122047000000,0.000122047000000,0.000084911000000,0.000055677000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.008869102000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000051726000000,0.000018159000000,0.000039084000000,0.000014345000000,0.000053701000000,0.000082936000000,0.000082936000000,0.000178935000000,0.000097158000000,0.000096763000000,0.006789499000000,0.000121652000000,0.000123233000000,0.000077405000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007421597000000,0.000026455500000,0.000013159666667,0.000041454000000,0.000015986500000,0.000051331000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000056862000000,0.000081355000000,0.000081356000000,0.000177751000000,0.000096368000000,0.000097553000000,0.006750388000000,0.000208565000000,0.000121652000000,0.000067529000000,0.000054097000000,0.000035739500000,0.000067923000000 +0.000015394000000,0.007249350000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013818333333,0.000054492000000,0.000079380000000,0.000083331000000,0.000141405000000,0.000098739000000,0.000097158000000,0.006971227000000,0.000121652000000,0.000122047000000,0.000094788000000,0.000089652000000,0.000018949000000,0.000067528000000 +0.000016184000000,0.007429102000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048961000000,0.000018357000000,0.000039874000000,0.000013159666667,0.000053701000000,0.000081355000000,0.000082145000000,0.000185652000000,0.000095973000000,0.000096368000000,0.007271473000000,0.000120467000000,0.000122047000000,0.000063578000000,0.000054491000000,0.000018752000000,0.000067133000000 +0.000015789000000,0.007130831000000,0.000026455500000,0.000013028000000,0.000041060000000,0.000016381500000,0.000048960000000,0.000029221000000,0.000039479000000,0.000020007333333,0.000054097000000,0.000079380000000,0.000142985000000,0.000176566000000,0.000097949000000,0.000096763000000,0.007319276000000,0.000122047000000,0.000122047000000,0.000097553000000,0.000053701000000,0.000018751500000,0.000067134000000 +0.000024875500000,0.007103967000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000049356000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000055281000000,0.000081750000000,0.000080170000000,0.000188023000000,0.000131529000000,0.000096368000000,0.006712462000000,0.000120467000000,0.000141405000000,0.000090837000000,0.000053701000000,0.000018752000000,0.000139035000000 +0.000023097500000,0.007011523000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000050146000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000060022000000,0.000080960000000,0.000079380000000,0.000172220000000,0.000112171000000,0.000097158000000,0.006900905000000,0.000122442000000,0.000124022000000,0.000076615000000,0.000053701000000,0.000018751500000,0.000067529000000 +0.000016579500000,0.007414486000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000015788500000,0.000048960000000,0.000024678000000,0.000039479000000,0.000013554666667,0.000089652000000,0.000081356000000,0.000081751000000,0.000140220000000,0.000098343000000,0.000131923000000,0.007283325000000,0.000121652000000,0.000121652000000,0.000070293000000,0.000053701000000,0.000019147000000,0.000067529000000 +0.000022900000000,0.007086585000000,0.000026455500000,0.000013818333333,0.000041850000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000082146000000,0.000080566000000,0.000250442000000,0.000100318000000,0.000097948000000,0.007203918000000,0.000170639000000,0.000122837000000,0.000065553000000,0.000054492000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.007030091000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000040269000000,0.000013291333333,0.000053306000000,0.000079776000000,0.000079776000000,0.000141009000000,0.000097158000000,0.000096368000000,0.007022980000000,0.000122442000000,0.000122442000000,0.000062392000000,0.000053702000000,0.000018752000000,0.000066739000000 +0.000016184000000,0.007376955000000,0.000026851000000,0.000013159666667,0.000041454000000,0.000032579000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000052911000000,0.000083726000000,0.000079776000000,0.000178936000000,0.000097158000000,0.000097553000000,0.007383671000000,0.000122837000000,0.000120862000000,0.000090837000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015789000000,0.007266733000000,0.000026258000000,0.000013028000000,0.000076220000000,0.000023690000000,0.000048565000000,0.000018159000000,0.000039085000000,0.000014345000000,0.000061603000000,0.000088072000000,0.000081356000000,0.000141405000000,0.000096368000000,0.000096368000000,0.006767375000000,0.000122442000000,0.000122442000000,0.000063973000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007482041000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000015591500000,0.000047775000000,0.000018357000000,0.000039479000000,0.000013159666667,0.000053701000000,0.000082146000000,0.000082540000000,0.000175380000000,0.000095577000000,0.000096368000000,0.006937251000000,0.000121652000000,0.000120862000000,0.000078985000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000025665500000,0.006811227000000,0.000044431000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000051726000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079381000000,0.000081356000000,0.000176960000000,0.000095973000000,0.000095973000000,0.006871276000000,0.000122837000000,0.000193553000000,0.000065948000000,0.000054491000000,0.000018949500000,0.000114540000000 +0.000023690500000,0.006891819000000,0.000026258500000,0.000013159666667,0.000039875000000,0.000015591500000,0.000049750000000,0.000026653000000,0.000039479000000,0.000013291666667,0.000052911000000,0.000080171000000,0.000118096000000,0.000141405000000,0.000132319000000,0.000097159000000,0.006972412000000,0.000122047000000,0.000122047000000,0.000065553000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006849943000000,0.000026060500000,0.000013159666667,0.000040665000000,0.000016381500000,0.000082146000000,0.000017962000000,0.000039084000000,0.000013291333333,0.000054097000000,0.000079381000000,0.000080565000000,0.000261504000000,0.000095973000000,0.000095973000000,0.006723128000000,0.000157208000000,0.000122837000000,0.000078985000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015393500000,0.006852709000000,0.000026850500000,0.000026065000000,0.000041850000000,0.000016184000000,0.000048566000000,0.000018554000000,0.000039085000000,0.000013159666667,0.000053306000000,0.000081356000000,0.000079775000000,0.000174195000000,0.000095973000000,0.000166689000000,0.006975968000000,0.000122442000000,0.000122047000000,0.000082541000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006764214000000,0.000026455500000,0.000013818333333,0.000040269000000,0.000015986500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000052911000000,0.000079381000000,0.000079380000000,0.000183282000000,0.000096763000000,0.000097158000000,0.007051029000000,0.000121257000000,0.000122442000000,0.000075825000000,0.000080170000000,0.000018752000000,0.000068319000000 +0.000015789000000,0.006918289000000,0.000026456000000,0.000013950000000,0.000040269000000,0.000016579000000,0.000048960000000,0.000018554500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000081356000000,0.000080961000000,0.000142985000000,0.000095973000000,0.000096763000000,0.006777251000000,0.000122047000000,0.000121257000000,0.000062393000000,0.000097158000000,0.000018752000000,0.000104664000000 +0.000015394000000,0.007342584000000,0.000026455500000,0.000017637333333,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000060022000000,0.000013423333333,0.000053306000000,0.000081356000000,0.000081750000000,0.000177751000000,0.000097553000000,0.000097158000000,0.006766190000000,0.000122047000000,0.000122047000000,0.000066738000000,0.000053701000000,0.000018752000000,0.000080170000000 +0.000016184000000,0.006742881000000,0.000026258000000,0.000013686666667,0.000040270000000,0.000016382000000,0.000049356000000,0.000018159000000,0.000055677000000,0.000013291333333,0.000053307000000,0.000081356000000,0.000082541000000,0.000191183000000,0.000095578000000,0.000096368000000,0.007064856000000,0.000122047000000,0.000178541000000,0.000062393000000,0.000053701000000,0.000019344500000,0.000067528000000 +0.000015986500000,0.006730635000000,0.000026455500000,0.000013159666667,0.000039875000000,0.000016184000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013291666667,0.000053306000000,0.000082146000000,0.000079381000000,0.000142195000000,0.000096763000000,0.000096763000000,0.007183375000000,0.000122047000000,0.000122442000000,0.000065554000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006934091000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000053702000000,0.000150886000000,0.000078985000000,0.000173800000000,0.000097158000000,0.000095973000000,0.007106338000000,0.000199874000000,0.000121257000000,0.000061998000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015393500000,0.006757498000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000130738000000,0.000093998000000,0.000082146000000,0.000139825000000,0.000175381000000,0.000097158000000,0.007298732000000,0.000220417000000,0.000121652000000,0.000085306000000,0.000053701000000,0.000028431000000,0.000067529000000 +0.000015591500000,0.006857054000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000016579500000,0.000050936000000,0.000018159000000,0.000039084000000,0.000024616666667,0.000058047000000,0.000082936000000,0.000119282000000,0.000184467000000,0.000096763000000,0.000132319000000,0.007484411000000,0.000137059000000,0.000122047000000,0.000093997000000,0.000054096000000,0.000027246000000,0.000066739000000 +0.000015591500000,0.006810042000000,0.000026455500000,0.000013159666667,0.000039875000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000040664000000,0.000026065333333,0.000053307000000,0.000082540000000,0.000118097000000,0.000176171000000,0.000095973000000,0.000096367000000,0.007028115000000,0.000122047000000,0.000122442000000,0.000082936000000,0.000053702000000,0.000018949500000,0.000084911000000 +0.000015986000000,0.006811227000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039084000000,0.000013950000000,0.000053701000000,0.000081751000000,0.000081356000000,0.000142590000000,0.000098344000000,0.000097158000000,0.007433844000000,0.000122442000000,0.000122837000000,0.000079380000000,0.000055677000000,0.000018554500000,0.000067528000000 +0.000015394000000,0.006960560000000,0.000030406000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000040270000000,0.000014345000000,0.000053702000000,0.000079776000000,0.000080566000000,0.000266244000000,0.000097553000000,0.000095577000000,0.007101202000000,0.000122442000000,0.000158392000000,0.000075825000000,0.000053701000000,0.000019739500000,0.000067134000000 +0.000016184000000,0.007126881000000,0.000049764500000,0.000013159666667,0.000040665000000,0.000015986500000,0.000048961000000,0.000018159000000,0.000039085000000,0.000015266666667,0.000052911000000,0.000078985000000,0.000081751000000,0.000142195000000,0.000096763000000,0.000097158000000,0.007122535000000,0.000167084000000,0.000121652000000,0.000062393000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015393500000,0.006811622000000,0.000026455500000,0.000013159666667,0.000041060000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000054097000000,0.000081751000000,0.000081751000000,0.000186047000000,0.000096763000000,0.000096368000000,0.007243819000000,0.000122047000000,0.000122837000000,0.000064368000000,0.000053701000000,0.000018751500000,0.000067134000000 +0.000015591500000,0.007404609000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000016184000000,0.000048565000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000054491000000,0.000082936000000,0.000080960000000,0.000138245000000,0.000095973000000,0.000097158000000,0.007032461000000,0.000122047000000,0.000122047000000,0.000077405000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.007166387000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015591000000,0.000049355000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000052912000000,0.000086886000000,0.000082146000000,0.000188812000000,0.000131924000000,0.000097158000000,0.006751573000000,0.000123232000000,0.000122047000000,0.000062788000000,0.000053306000000,0.000019542000000,0.000067528000000 +0.000015789000000,0.006895770000000,0.000026455500000,0.000013159666667,0.000076614000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053701000000,0.000081751000000,0.000085306000000,0.000256368000000,0.000095183000000,0.000095973000000,0.006777647000000,0.000121652000000,0.000122837000000,0.000062392000000,0.000089652000000,0.000019147000000,0.000101503000000 +0.000015789000000,0.007386436000000,0.000026653000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000103084000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053307000000,0.000080171000000,0.000081356000000,0.000165899000000,0.000095577000000,0.000172219000000,0.006977152000000,0.000122047000000,0.000122442000000,0.000086492000000,0.000054096000000,0.000018949500000,0.000071084000000 +0.000015393500000,0.006871671000000,0.000026258000000,0.000013686333333,0.000040269000000,0.000015986500000,0.000048566000000,0.000018159000000,0.000039874000000,0.000013555000000,0.000054887000000,0.000082146000000,0.000099529000000,0.000175776000000,0.000095973000000,0.000110985000000,0.007049449000000,0.000122047000000,0.000192763000000,0.000076615000000,0.000053701000000,0.000019937000000,0.000105850000000 +0.000015591500000,0.006953449000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000049750000000,0.000018159500000,0.000040664000000,0.000013291666667,0.000053306000000,0.000079381000000,0.000082540000000,0.000141010000000,0.000097158000000,0.000096763000000,0.007210634000000,0.000157602000000,0.000136664000000,0.000082146000000,0.000053701000000,0.000018949500000,0.000084121000000 +0.000015394000000,0.006735770000000,0.000026060500000,0.000013423333333,0.000040269000000,0.000034159500000,0.000050146000000,0.000036332000000,0.000039084000000,0.000013423000000,0.000055282000000,0.000082541000000,0.000079380000000,0.000177751000000,0.000095578000000,0.000096368000000,0.006932511000000,0.000135479000000,0.000123627000000,0.000075824000000,0.000053701000000,0.000018752000000,0.000085701000000 +0.000015394000000,0.007151375000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000075430000000,0.000082146000000,0.000117701000000,0.000140614000000,0.000096368000000,0.000144565000000,0.007128856000000,0.000122442000000,0.000121652000000,0.000062788000000,0.000054096000000,0.000018752000000,0.000068318000000 +0.000015591500000,0.006777252000000,0.000027838000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048565000000,0.000017962000000,0.000039085000000,0.000013423000000,0.000052912000000,0.000084121000000,0.000096368000000,0.000174985000000,0.000095578000000,0.000095183000000,0.006757894000000,0.000122442000000,0.000122442000000,0.000064368000000,0.000053701000000,0.000018554500000,0.000066738000000 +0.000015393500000,0.007241448000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000016382000000,0.000048960000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000054096000000,0.000082541000000,0.000081356000000,0.000185652000000,0.000096368000000,0.000095973000000,0.006687572000000,0.000121652000000,0.000121257000000,0.000067528000000,0.000053701000000,0.000019542000000,0.000067529000000 +0.000033369000000,0.006737746000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053702000000,0.000080961000000,0.000079775000000,0.000139825000000,0.000133503000000,0.000095577000000,0.006890240000000,0.000121652000000,0.000121652000000,0.000066739000000,0.000053701000000,0.000019344500000,0.000067923000000 +0.000016184000000,0.006977943000000,0.000026455500000,0.000015793333333,0.000040269000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039874000000,0.000013818333333,0.000053306000000,0.000079381000000,0.000084121000000,0.000177356000000,0.000096368000000,0.000115726000000,0.006847968000000,0.000121651000000,0.000158392000000,0.000097554000000,0.000053306000000,0.000018751500000,0.000067528000000 +0.000015394000000,0.006982289000000,0.000026455500000,0.000013818333333,0.000040664000000,0.000016381500000,0.000048566000000,0.000018752000000,0.000060417000000,0.000027908666667,0.000053306000000,0.000080566000000,0.000082936000000,0.000141010000000,0.000097949000000,0.000096368000000,0.006792264000000,0.000141405000000,0.000122837000000,0.000076220000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000016184000000,0.006701795000000,0.000026258000000,0.000013818333333,0.000040269000000,0.000016382000000,0.000048566000000,0.000018159500000,0.000041454000000,0.000013555000000,0.000053307000000,0.000118492000000,0.000082146000000,0.000203430000000,0.000096368000000,0.000097948000000,0.007849053000000,0.000122442000000,0.000121257000000,0.000062393000000,0.000053307000000,0.000019147000000,0.000067133000000 +0.000016184000000,0.006908807000000,0.000044628500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049355000000,0.000018159500000,0.000075430000000,0.000013291666667,0.000053306000000,0.000081751000000,0.000153257000000,0.000177750000000,0.000097159000000,0.000095973000000,0.006941992000000,0.000122047000000,0.000122047000000,0.000063182000000,0.000053702000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006806091000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000058047000000,0.000013028000000,0.000054492000000,0.000079775000000,0.000083331000000,0.000132319000000,0.000097158000000,0.000096763000000,0.006766190000000,0.000122047000000,0.000121257000000,0.000065948000000,0.000053307000000,0.000018752000000,0.000066738000000 +0.000015394000000,0.007263967000000,0.000026653000000,0.000013028000000,0.000040664000000,0.000016579000000,0.000048171000000,0.000018356500000,0.000041455000000,0.000014213333333,0.000053306000000,0.000081751000000,0.000079380000000,0.000278887000000,0.000096763000000,0.000098344000000,0.006896561000000,0.000122442000000,0.000122837000000,0.000085306000000,0.000053702000000,0.000028431000000,0.000067134000000 +0.000015789000000,0.006701795000000,0.000026456000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000044615000000,0.000013554666667,0.000058047000000,0.000128368000000,0.000081356000000,0.000201849000000,0.000095973000000,0.000098343000000,0.006729845000000,0.000122047000000,0.000122442000000,0.000075430000000,0.000052911000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.006757498000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000047775000000,0.000018357000000,0.000041850000000,0.000013159666667,0.000054492000000,0.000081751000000,0.000080171000000,0.000204220000000,0.000095972000000,0.000097158000000,0.006932115000000,0.000122837000000,0.000159182000000,0.000075824000000,0.000125208000000,0.000019542000000,0.000138245000000 +0.000015393500000,0.006770536000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000055677000000,0.000079775000000,0.000081356000000,0.000131134000000,0.000132318000000,0.000096763000000,0.006998881000000,0.000121652000000,0.000122047000000,0.000115331000000,0.000053702000000,0.000018751500000,0.000066738000000 +0.000015394000000,0.006836116000000,0.000026455500000,0.000014740000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000052911000000,0.000081751000000,0.000080171000000,0.000167479000000,0.000095578000000,0.000150096000000,0.008952854000000,0.000158392000000,0.000121652000000,0.000099133000000,0.000054492000000,0.000019542000000,0.000067923000000 +0.000015591500000,0.006959375000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000102294000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000054096000000,0.000079776000000,0.000083331000000,0.000166689000000,0.000095578000000,0.000127183000000,0.007181399000000,0.000121257000000,0.000121652000000,0.000075825000000,0.000053702000000,0.000019146500000,0.000067133000000 +0.000015394000000,0.006943177000000,0.000028628000000,0.000013818333333,0.000060022000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000054886000000,0.000079380000000,0.000081355000000,0.000132714000000,0.000099528000000,0.000110986000000,0.007257251000000,0.000122047000000,0.000121652000000,0.000063577000000,0.000053307000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007244609000000,0.000026455500000,0.000013686666667,0.000095577000000,0.000016579000000,0.000048171000000,0.000017962000000,0.000039479000000,0.000013291666667,0.000089257000000,0.000080171000000,0.000088072000000,0.000167874000000,0.000095973000000,0.000095183000000,0.007267127000000,0.000123232000000,0.000121257000000,0.000082541000000,0.000053307000000,0.000018949500000,0.000070294000000 +0.000016184000000,0.006978338000000,0.000036529500000,0.000013159666667,0.000078196000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039875000000,0.000013291333333,0.000054097000000,0.000079775000000,0.000116121000000,0.000203430000000,0.000097553000000,0.000096368000000,0.006819523000000,0.000122047000000,0.000121652000000,0.000126787000000,0.000053307000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.006900511000000,0.000044036000000,0.000013159666667,0.000058838000000,0.000016381500000,0.000048565000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000054096000000,0.000081751000000,0.000080170000000,0.000165898000000,0.000097158000000,0.000096368000000,0.007092905000000,0.000120862000000,0.000141405000000,0.000080961000000,0.000053307000000,0.000019147000000,0.000067923000000 +0.000016184000000,0.006802535000000,0.000048776500000,0.000013160000000,0.000042640000000,0.000016184000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000056072000000,0.000083331000000,0.000082936000000,0.000132319000000,0.000096763000000,0.000095973000000,0.008338535000000,0.000121652000000,0.000123232000000,0.000098738000000,0.000054097000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.007018239000000,0.000026653000000,0.000013159666667,0.000042639000000,0.000015789000000,0.000049751000000,0.000018554500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000082146000000,0.000080960000000,0.000196713000000,0.000097158000000,0.000096763000000,0.007094091000000,0.000158393000000,0.000120467000000,0.000085701000000,0.000054097000000,0.000019344500000,0.000067133000000 +0.000015986500000,0.006976362000000,0.000026850500000,0.000013554666667,0.000040269000000,0.000015591000000,0.000048566000000,0.000036529500000,0.000039480000000,0.000013554666667,0.000053701000000,0.000079775000000,0.000080170000000,0.000168269000000,0.000133109000000,0.000095972000000,0.007442535000000,0.000123628000000,0.000121256000000,0.000065949000000,0.000053306000000,0.000018949000000,0.000067529000000 +0.000015394000000,0.007467029000000,0.000026258500000,0.000013028000000,0.000040269000000,0.000015591500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081355000000,0.000081356000000,0.000151677000000,0.000096368000000,0.000166294000000,0.006967276000000,0.000122442000000,0.000122442000000,0.000107035000000,0.000053306000000,0.000019344500000,0.000067134000000 +0.000015591500000,0.006717992000000,0.000030406500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000049750000000,0.000018159500000,0.000042640000000,0.000013291333333,0.000055676000000,0.000082146000000,0.000079380000000,0.000188813000000,0.000095973000000,0.000095973000000,0.006792264000000,0.000122442000000,0.000122047000000,0.000081750000000,0.000053702000000,0.000018949500000,0.000103084000000 +0.000015789000000,0.006783178000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000056072000000,0.000013028333333,0.000053702000000,0.000079776000000,0.000081356000000,0.000133108000000,0.000097158000000,0.000097158000000,0.007286486000000,0.000121257000000,0.000122442000000,0.000067134000000,0.000053307000000,0.000019147000000,0.000067924000000 +0.000016184000000,0.007128067000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000043641000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000052911000000,0.000079380000000,0.000082146000000,0.000168664000000,0.000096763000000,0.000095973000000,0.006992955000000,0.000121652000000,0.000121257000000,0.000074639000000,0.000053702000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.007156511000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000024085000000,0.000048565000000,0.000018356500000,0.000039085000000,0.000013291333333,0.000053701000000,0.000081356000000,0.000084911000000,0.000165504000000,0.000146935000000,0.000095973000000,0.007519967000000,0.000122442000000,0.000190787000000,0.000080171000000,0.000053702000000,0.000018949500000,0.000067924000000 +0.000015394000000,0.007093696000000,0.000026258500000,0.000013028000000,0.000040269000000,0.000033171500000,0.000049355000000,0.000018159500000,0.000039084000000,0.000022509333333,0.000053306000000,0.000118097000000,0.000150886000000,0.000133898000000,0.000096763000000,0.000098739000000,0.006912757000000,0.000157602000000,0.000122442000000,0.000110590000000,0.000089257000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007287276000000,0.000026060500000,0.000013686666667,0.000040269000000,0.000017764500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079776000000,0.000094393000000,0.000184862000000,0.000096763000000,0.000096763000000,0.006926584000000,0.000135479000000,0.000120862000000,0.000077010000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015789000000,0.007108708000000,0.000026653000000,0.000029489000000,0.000040269000000,0.000023295000000,0.000082541000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000052912000000,0.000080566000000,0.000082146000000,0.000153256000000,0.000097158000000,0.000095973000000,0.006812807000000,0.000122047000000,0.000122442000000,0.000086096000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000033369500000,0.006871671000000,0.000026653000000,0.000026855333333,0.000040269000000,0.000023097500000,0.000090047000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000052911000000,0.000081356000000,0.000080566000000,0.000166294000000,0.000096368000000,0.000096763000000,0.006993351000000,0.000122837000000,0.000122047000000,0.000065553000000,0.000057257000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006710486000000,0.000026456000000,0.000019480666667,0.000041059000000,0.000015591500000,0.000063577000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000054097000000,0.000079380000000,0.000079776000000,0.000132318000000,0.000096764000000,0.000138639000000,0.006970831000000,0.000122047000000,0.000122047000000,0.000082540000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000015591000000,0.007248560000000,0.000026258000000,0.000013950000000,0.000040269000000,0.000016579500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000089652000000,0.000080171000000,0.000080171000000,0.000167479000000,0.000097553000000,0.000097948000000,0.007073548000000,0.000122442000000,0.000121257000000,0.000065949000000,0.000053701000000,0.000037320000000,0.000067529000000 +0.000015986500000,0.006792659000000,0.000026456000000,0.000014345000000,0.000058837000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000080566000000,0.000085702000000,0.000234640000000,0.000097158000000,0.000095578000000,0.006819523000000,0.000121652000000,0.000158787000000,0.000062393000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000015591000000,0.006853499000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053307000000,0.000082936000000,0.000082541000000,0.000221603000000,0.000096763000000,0.000095973000000,0.006717992000000,0.000141405000000,0.000122442000000,0.000063183000000,0.000053701000000,0.000018949500000,0.000373701000000 +0.000015986500000,0.006904856000000,0.000048974500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000058047000000,0.000079775000000,0.000079380000000,0.000239380000000,0.000097553000000,0.000096368000000,0.006925005000000,0.000122047000000,0.000122837000000,0.000073060000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015591000000,0.007355227000000,0.000026653000000,0.000013159666667,0.000040665000000,0.000016579500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082540000000,0.000080171000000,0.000133108000000,0.000095973000000,0.000097553000000,0.006729449000000,0.000123232000000,0.000123232000000,0.000078985000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.006679672000000,0.000026258000000,0.000013159666667,0.000040664000000,0.000015591500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013423333333,0.000052912000000,0.000088862000000,0.000125998000000,0.000166689000000,0.000096763000000,0.000095973000000,0.006688363000000,0.000122442000000,0.000121652000000,0.000077800000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.007057350000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000054096000000,0.000081751000000,0.000082935000000,0.000130738000000,0.000115331000000,0.000096368000000,0.006923030000000,0.000122442000000,0.000122837000000,0.000061997000000,0.000054096000000,0.000018751500000,0.000067924000000 +0.000015986500000,0.006920659000000,0.000026653500000,0.000013686666667,0.000040269000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000081355000000,0.000082936000000,0.000164714000000,0.000095973000000,0.000116122000000,0.006889845000000,0.000122047000000,0.000122442000000,0.000061998000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007035622000000,0.000026455500000,0.000013160000000,0.000040270000000,0.000016184000000,0.000048171000000,0.000018159500000,0.000040664000000,0.000013423000000,0.000053306000000,0.000083331000000,0.000079381000000,0.000200665000000,0.000096763000000,0.000096763000000,0.006840067000000,0.000122047000000,0.000158788000000,0.000062392000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.006781993000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000081751000000,0.000079776000000,0.000132714000000,0.000097553000000,0.000097158000000,0.007305843000000,0.000157998000000,0.000122838000000,0.000062393000000,0.000054096000000,0.000019147000000,0.000066738000000 +0.000015394000000,0.006821893000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000015591000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000014213000000,0.000053702000000,0.000079381000000,0.000081751000000,0.000162738000000,0.000097158000000,0.000097553000000,0.006893795000000,0.000122047000000,0.000122837000000,0.000061998000000,0.000053306000000,0.000019937000000,0.000067133000000 +0.000015591500000,0.007211425000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000052911000000,0.000079381000000,0.000081356000000,0.000134689000000,0.000099528000000,0.000096763000000,0.006652807000000,0.000122047000000,0.000122047000000,0.000062393000000,0.000088467000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006826239000000,0.000026258000000,0.000013028000000,0.000041850000000,0.000017764000000,0.000048961000000,0.000018159500000,0.000039875000000,0.000013291333333,0.000053702000000,0.000079775000000,0.000082146000000,0.000166689000000,0.000095973000000,0.000100714000000,0.006947918000000,0.000122047000000,0.000122442000000,0.000062393000000,0.000077405000000,0.000018752000000,0.000110986000000 +0.000016184000000,0.007124905000000,0.000026258000000,0.000013159666667,0.000041850000000,0.000025665500000,0.000048566000000,0.000046209000000,0.000039875000000,0.000013159666667,0.000055676000000,0.000079775000000,0.000080960000000,0.000165899000000,0.000098738000000,0.000096368000000,0.006936461000000,0.000121652000000,0.000122047000000,0.000061997000000,0.000159183000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006716017000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000027048500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000079380000000,0.000081355000000,0.000167874000000,0.000097158000000,0.000097158000000,0.007112659000000,0.000122838000000,0.000122837000000,0.000062393000000,0.000156812000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007180214000000,0.000026851000000,0.000013159666667,0.000040269000000,0.000026258500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000088862000000,0.000081750000000,0.000080170000000,0.000166689000000,0.000133109000000,0.000096763000000,0.006690339000000,0.000122047000000,0.000157602000000,0.000099923000000,0.000070294000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.007412905000000,0.000026060500000,0.000013818000000,0.000040270000000,0.000031394000000,0.000084911000000,0.000017962000000,0.000039480000000,0.000025538333333,0.000053701000000,0.000126393000000,0.000151676000000,0.000133504000000,0.000097158000000,0.000165109000000,0.006836906000000,0.000122047000000,0.000121257000000,0.000118492000000,0.000066738000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007194042000000,0.000026258500000,0.000013159666667,0.000039875000000,0.000034949500000,0.000049750000000,0.000018159500000,0.000040665000000,0.000013028000000,0.000052912000000,0.000081750000000,0.000079380000000,0.000167479000000,0.000097158000000,0.000097158000000,0.006888659000000,0.000158393000000,0.000122837000000,0.000101899000000,0.000054491000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.006844412000000,0.000026258000000,0.000013686666667,0.000040270000000,0.000017369000000,0.000048565000000,0.000018356500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000081750000000,0.000081750000000,0.000133504000000,0.000098738000000,0.000095973000000,0.007063276000000,0.000122047000000,0.000121257000000,0.000062788000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000015986500000,0.006728659000000,0.000055097500000,0.000013028000000,0.000040665000000,0.000022900000000,0.000048566000000,0.000018159500000,0.000042245000000,0.000013423000000,0.000053307000000,0.000082146000000,0.000082936000000,0.000167083000000,0.000096763000000,0.000095973000000,0.006846782000000,0.000122047000000,0.000122442000000,0.000077010000000,0.000053306000000,0.000018752000000,0.000067924000000 +0.000016184000000,0.006913548000000,0.000033764000000,0.000013159666667,0.000040269000000,0.000016382000000,0.000050146000000,0.000018357000000,0.000039479000000,0.000013423333333,0.000054096000000,0.000079776000000,0.000084121000000,0.000200664000000,0.000096763000000,0.000095973000000,0.007236313000000,0.000122837000000,0.000122047000000,0.000064763000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.006990980000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013028333333,0.000052911000000,0.000085702000000,0.000080960000000,0.000130739000000,0.000097949000000,0.000099134000000,0.006721153000000,0.000122442000000,0.000124022000000,0.000114936000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006813598000000,0.000026851000000,0.000013159666667,0.000060022000000,0.000016579000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000054886000000,0.000082541000000,0.000082146000000,0.000163924000000,0.000095973000000,0.000099924000000,0.007008757000000,0.000122442000000,0.000121652000000,0.000077405000000,0.000073059000000,0.000028826000000,0.000067528000000 +0.000015986500000,0.006908412000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000052911000000,0.000081751000000,0.000079381000000,0.000131923000000,0.000096763000000,0.000095973000000,0.006818733000000,0.000123232000000,0.000139035000000,0.000062393000000,0.000070294000000,0.000037912500000,0.000067924000000 +0.000015591500000,0.006800560000000,0.000026456000000,0.000013028000000,0.000041850000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000052911000000,0.000080960000000,0.000086096000000,0.000235429000000,0.000135084000000,0.000096763000000,0.006714832000000,0.000158787000000,0.000123628000000,0.000082936000000,0.000053306000000,0.000029221000000,0.000125603000000 +0.000041863500000,0.007069597000000,0.000026258000000,0.000013159666667,0.000039875000000,0.000016184000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000081751000000,0.000146936000000,0.000167874000000,0.000131924000000,0.006841251000000,0.000122047000000,0.000120862000000,0.000061997000000,0.000053701000000,0.000028628500000,0.000082936000000 +0.000033171500000,0.006698239000000,0.000026061000000,0.000013159666667,0.000041455000000,0.000016579000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000104665000000,0.000118886000000,0.000279281000000,0.000129158000000,0.000096763000000,0.007290436000000,0.000122442000000,0.000121652000000,0.000062393000000,0.000053701000000,0.000019937000000,0.000067924000000 +0.000025468000000,0.006890634000000,0.000026060500000,0.000013160000000,0.000040665000000,0.000015788500000,0.000049355000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000096368000000,0.000081751000000,0.000169454000000,0.000096368000000,0.000097158000000,0.007429103000000,0.000121257000000,0.000122047000000,0.000063183000000,0.000054491000000,0.000034554500000,0.000066739000000 +0.000024085000000,0.007029696000000,0.000028036000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013291666667,0.000053306000000,0.000081355000000,0.000080961000000,0.000132714000000,0.000097158000000,0.000097158000000,0.006831770000000,0.000121652000000,0.000122442000000,0.000061998000000,0.000053701000000,0.000019344500000,0.000067133000000 +0.000016381500000,0.006948313000000,0.000027641000000,0.000013028000000,0.000040270000000,0.000015986500000,0.000050146000000,0.000018357000000,0.000039479000000,0.000013028000000,0.000056071000000,0.000081751000000,0.000081751000000,0.000167479000000,0.000096763000000,0.000097553000000,0.007128461000000,0.000122047000000,0.000122837000000,0.000076614000000,0.000054096000000,0.000018751500000,0.000067923000000 +0.000016381500000,0.007495473000000,0.000026455500000,0.000013028333333,0.000040270000000,0.000015788500000,0.000048960000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000053702000000,0.000080171000000,0.000081751000000,0.000131529000000,0.000096368000000,0.000096368000000,0.006835720000000,0.000121652000000,0.000157997000000,0.000080961000000,0.000054491000000,0.000019739500000,0.000067528000000 +0.000023295000000,0.006819524000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039085000000,0.000013028000000,0.000108220000000,0.000083331000000,0.000083331000000,0.000200664000000,0.000096763000000,0.000097554000000,0.006903671000000,0.000157998000000,0.000122047000000,0.000077800000000,0.000053702000000,0.000019147000000,0.000067923000000 +0.000015591500000,0.007075918000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000069504000000,0.000079775000000,0.000086097000000,0.000167874000000,0.000132713000000,0.000096763000000,0.006846387000000,0.000122837000000,0.000122047000000,0.000066738000000,0.000053306000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006852313000000,0.000044628500000,0.000013159666667,0.000040664000000,0.000015591500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000079775000000,0.000079775000000,0.000132714000000,0.000095973000000,0.000096763000000,0.007007177000000,0.000122047000000,0.000122837000000,0.000062392000000,0.000053307000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006714042000000,0.000027443500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000084516000000,0.000018159500000,0.000100318000000,0.000013028000000,0.000055282000000,0.000081750000000,0.000079380000000,0.000165109000000,0.000096764000000,0.000133504000000,0.007122931000000,0.000122047000000,0.000121652000000,0.000061998000000,0.000054097000000,0.000018751500000,0.000067134000000 +0.000015591500000,0.006696659000000,0.000026258000000,0.000013291666667,0.000040664000000,0.000015591500000,0.000049356000000,0.000018357000000,0.000125602000000,0.000013423000000,0.000052911000000,0.000084121000000,0.000080565000000,0.000132713000000,0.000096763000000,0.000096368000000,0.006857449000000,0.000122442000000,0.000122442000000,0.000061997000000,0.000054097000000,0.000019542000000,0.000067133000000 +0.000015986500000,0.006947128000000,0.000026455500000,0.000013818333333,0.000039874000000,0.000023492500000,0.000048170000000,0.000036332500000,0.000090047000000,0.000013291333333,0.000092812000000,0.000116911000000,0.000120071000000,0.000168269000000,0.000095972000000,0.000096763000000,0.007114239000000,0.000121257000000,0.000122837000000,0.000063973000000,0.000053702000000,0.000018554500000,0.000103874000000 +0.000015591500000,0.007190486000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000023097500000,0.000049355000000,0.000018159500000,0.000123232000000,0.000025406666667,0.000056467000000,0.000082936000000,0.000252813000000,0.000180121000000,0.000096368000000,0.000096368000000,0.006748412000000,0.000121652000000,0.000225554000000,0.000069899000000,0.000054492000000,0.000019937500000,0.000067134000000 +0.000015394000000,0.006926585000000,0.000026060500000,0.000013423000000,0.000039874000000,0.000015789000000,0.000050541000000,0.000018357000000,0.000073850000000,0.000013159666667,0.000069109000000,0.000081355000000,0.000201454000000,0.000168664000000,0.000095973000000,0.000096368000000,0.006767375000000,0.000157208000000,0.000195529000000,0.000062393000000,0.000053702000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006781202000000,0.000026455500000,0.000013818000000,0.000040269000000,0.000015591500000,0.000048566000000,0.000018159000000,0.000090047000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000099133000000,0.000167479000000,0.000095578000000,0.000096763000000,0.006990585000000,0.000122047000000,0.000121257000000,0.000062393000000,0.000108615000000,0.000018949500000,0.000070294000000 +0.000015591500000,0.006985054000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000041850000000,0.000013554666667,0.000052517000000,0.000079775000000,0.000080566000000,0.000130343000000,0.000097948000000,0.000096763000000,0.007066832000000,0.000122442000000,0.000122838000000,0.000065949000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591000000,0.006766190000000,0.000026850500000,0.000013159666667,0.000039874000000,0.000016579500000,0.000048565000000,0.000018357000000,0.000041454000000,0.000013423000000,0.000056071000000,0.000080566000000,0.000082146000000,0.000167479000000,0.000131924000000,0.000096368000000,0.007182585000000,0.000122047000000,0.000122442000000,0.000063578000000,0.000053701000000,0.000019344500000,0.000067133000000 +0.000015986500000,0.006968857000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000053306000000,0.000013554666667,0.000052911000000,0.000082541000000,0.000081751000000,0.000131924000000,0.000095578000000,0.000095973000000,0.006884313000000,0.000121652000000,0.000122047000000,0.000062393000000,0.000053306000000,0.000038110000000,0.000067529000000 +0.000015986500000,0.006920263000000,0.000026258000000,0.000013423000000,0.000075034000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054096000000,0.000081355000000,0.000115726000000,0.000213702000000,0.000096367000000,0.000132318000000,0.006950684000000,0.000123628000000,0.000158393000000,0.000099134000000,0.000054491000000,0.000037912500000,0.000067134000000 +0.000015394000000,0.007177448000000,0.000026456000000,0.000013160000000,0.000054887000000,0.000015788500000,0.000048566000000,0.000018356500000,0.000039874000000,0.000013554666667,0.000053307000000,0.000079775000000,0.000082145000000,0.000132714000000,0.000096763000000,0.000095973000000,0.007015078000000,0.000122837000000,0.000122442000000,0.000063182000000,0.000053306000000,0.000025665500000,0.000067529000000 +0.000015394000000,0.006756709000000,0.000027443000000,0.000013818333333,0.000040270000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000090442000000,0.000079380000000,0.000082541000000,0.000163528000000,0.000096763000000,0.000095578000000,0.007283720000000,0.000176565000000,0.000122442000000,0.000063973000000,0.000053306000000,0.000019147000000,0.000067529000000 +0.000015393500000,0.006761844000000,0.000026258000000,0.000013554666667,0.000040269000000,0.000016579000000,0.000049750000000,0.000018159500000,0.000048961000000,0.000013159666667,0.000053702000000,0.000082541000000,0.000080566000000,0.000164318000000,0.000097158000000,0.000095973000000,0.007132412000000,0.000120862000000,0.000121651000000,0.000064368000000,0.000053701000000,0.000018751500000,0.000068714000000 +0.000015394000000,0.007397498000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039085000000,0.000013686333333,0.000052911000000,0.000080961000000,0.000079776000000,0.000129553000000,0.000097158000000,0.000095578000000,0.007248164000000,0.000120466000000,0.000122047000000,0.000061997000000,0.000053701000000,0.000018752000000,0.000068714000000 +0.000025270500000,0.007600955000000,0.000036332000000,0.000013159666667,0.000059232000000,0.000016184500000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000082541000000,0.000082146000000,0.000165899000000,0.000095973000000,0.000097158000000,0.006872857000000,0.000141010000000,0.000122047000000,0.000062393000000,0.000054096000000,0.000018949000000,0.000088467000000 +0.000041665500000,0.007043523000000,0.000026258000000,0.000013555000000,0.000043035000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039479000000,0.000014344666667,0.000052912000000,0.000079381000000,0.000080566000000,0.000203429000000,0.000095973000000,0.000095183000000,0.007123720000000,0.000142590000000,0.000122442000000,0.000062393000000,0.000054096000000,0.000019147000000,0.000067133000000 +0.000017567000000,0.007369843000000,0.000026258500000,0.000013028000000,0.000042640000000,0.000016381500000,0.000051331000000,0.000018159500000,0.000039084000000,0.000014213333333,0.000056862000000,0.000080961000000,0.000082146000000,0.000172615000000,0.000133899000000,0.000096368000000,0.006946338000000,0.000136269000000,0.000193159000000,0.000063578000000,0.000053701000000,0.000019542000000,0.000067528000000 +0.000015986500000,0.006926585000000,0.000026455500000,0.000013159666667,0.000054491000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000082936000000,0.000079380000000,0.000167084000000,0.000143775000000,0.000153257000000,0.006834141000000,0.000122442000000,0.000123232000000,0.000061997000000,0.000053701000000,0.000018752000000,0.000103874000000 +0.000015789000000,0.006781993000000,0.000026456000000,0.000013160000000,0.000040269000000,0.000016184000000,0.000084911000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000079380000000,0.000082936000000,0.000134293000000,0.000097553000000,0.000286392000000,0.006866930000000,0.000158788000000,0.000122442000000,0.000062393000000,0.000054491000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006959375000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049751000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000053701000000,0.000080960000000,0.000080170000000,0.000171035000000,0.000096368000000,0.000151282000000,0.007081054000000,0.000122442000000,0.000121256000000,0.000061998000000,0.000053701000000,0.000018751500000,0.000067924000000 +0.000015986500000,0.006878387000000,0.000026653500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000052911000000,0.000081750000000,0.000101108000000,0.000154047000000,0.000096368000000,0.000112961000000,0.007423572000000,0.000121652000000,0.000121257000000,0.000061997000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007003227000000,0.000028036000000,0.000013160000000,0.000040269000000,0.000016184000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000083726000000,0.000082541000000,0.000284812000000,0.000095973000000,0.000096763000000,0.007956905000000,0.000122837000000,0.000121257000000,0.000081751000000,0.000089652000000,0.000018751500000,0.000067133000000 +0.000016184000000,0.006881943000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000055282000000,0.000082146000000,0.000079381000000,0.000131924000000,0.000095973000000,0.000096368000000,0.006925005000000,0.000122442000000,0.000122047000000,0.000062392000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.007288066000000,0.000026653500000,0.000013159666667,0.000040270000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053701000000,0.000081355000000,0.000079380000000,0.000182886000000,0.000097553000000,0.000095973000000,0.009805792000000,0.000122838000000,0.000229899000000,0.000062788000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000015394000000,0.006803721000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000016382000000,0.000048171000000,0.000018159500000,0.000039085000000,0.000013554666667,0.000055282000000,0.000118491000000,0.000081356000000,0.000161948000000,0.000097159000000,0.000148516000000,0.007267128000000,0.000122442000000,0.000121652000000,0.000064368000000,0.000054491000000,0.000018752000000,0.000086887000000 +0.000015394000000,0.006915128000000,0.000026258500000,0.000013028000000,0.000040665000000,0.000016381500000,0.000051331000000,0.000018356500000,0.000039874000000,0.000025011333333,0.000053306000000,0.000079775000000,0.000081355000000,0.000130343000000,0.000114936000000,0.000095973000000,0.006851523000000,0.000157997000000,0.000121257000000,0.000062393000000,0.000054491000000,0.000018751500000,0.000084121000000 +0.000016184000000,0.006868116000000,0.000026653000000,0.000013028000000,0.000040270000000,0.000026060500000,0.000048961000000,0.000036332000000,0.000039479000000,0.000013423000000,0.000090442000000,0.000084911000000,0.000081355000000,0.000242145000000,0.000096368000000,0.000096368000000,0.007120560000000,0.000122047000000,0.000121652000000,0.000062788000000,0.000053701000000,0.000019147000000,0.000067133000000 +0.000015591500000,0.006884314000000,0.000026653000000,0.000014476666667,0.000042245000000,0.000024085000000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000053307000000,0.000083331000000,0.000082541000000,0.000175380000000,0.000095973000000,0.000095973000000,0.006768165000000,0.000122047000000,0.000122442000000,0.000066739000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015789000000,0.006761449000000,0.000050159500000,0.000013423333333,0.000060023000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013949666667,0.000053306000000,0.000081751000000,0.000088862000000,0.000201059000000,0.000096763000000,0.000097553000000,0.006935672000000,0.000122837000000,0.000122837000000,0.000077800000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.006956609000000,0.000064974000000,0.000013028000000,0.000053306000000,0.000016579000000,0.000048961000000,0.000018554500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000079776000000,0.000079776000000,0.000131134000000,0.000096368000000,0.000097158000000,0.006887868000000,0.000122442000000,0.000122047000000,0.000075825000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015393500000,0.007251325000000,0.000051344500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000048961000000,0.000018357000000,0.000039084000000,0.000013028000000,0.000053701000000,0.000082541000000,0.000095973000000,0.000243331000000,0.000097158000000,0.000096368000000,0.006902486000000,0.000122442000000,0.000174590000000,0.000062393000000,0.000053701000000,0.000046604000000,0.000068319000000 +0.000015591500000,0.006992165000000,0.000035344500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053702000000,0.000080171000000,0.000079380000000,0.000202244000000,0.000097158000000,0.000097158000000,0.007060510000000,0.000120861000000,0.000122837000000,0.000062393000000,0.000053701000000,0.000019937000000,0.000067529000000 +0.000015394000000,0.007204313000000,0.000034752000000,0.000013423333333,0.000040270000000,0.000015591500000,0.000049355000000,0.000018159000000,0.000040269000000,0.000013028000000,0.000056071000000,0.000083726000000,0.000079775000000,0.000131924000000,0.000096368000000,0.000132318000000,0.006856659000000,0.000141405000000,0.000123233000000,0.000063578000000,0.000054097000000,0.000018949500000,0.000067924000000 +0.000015986500000,0.006782783000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000016579000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000052911000000,0.000082541000000,0.000080566000000,0.000167479000000,0.000096368000000,0.000095972000000,0.007345350000000,0.000122442000000,0.000122047000000,0.000062788000000,0.000053306000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006804906000000,0.000027048000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000050541000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000080566000000,0.000081356000000,0.000135084000000,0.000132319000000,0.000097158000000,0.006723523000000,0.000124022000000,0.000121652000000,0.000062393000000,0.000054097000000,0.000018949500000,0.000067134000000 +0.000015986500000,0.007212610000000,0.000026061000000,0.000013160000000,0.000040270000000,0.000016381500000,0.000085306000000,0.000018159500000,0.000040665000000,0.000013949666667,0.000053307000000,0.000080171000000,0.000082145000000,0.000165899000000,0.000096368000000,0.000097554000000,0.006719177000000,0.000122837000000,0.000121257000000,0.000062393000000,0.000053307000000,0.000018949500000,0.000067923000000 +0.000015986500000,0.007184955000000,0.000027443000000,0.000014081666667,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000039480000000,0.000013159666667,0.000053701000000,0.000081356000000,0.000081751000000,0.000165503000000,0.000095578000000,0.000097553000000,0.006984659000000,0.000121652000000,0.000121652000000,0.000061998000000,0.000054097000000,0.000019542000000,0.000067923000000 +0.000015591500000,0.006671375000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053307000000,0.000079381000000,0.000082146000000,0.000169849000000,0.000096763000000,0.000095973000000,0.007032856000000,0.000124812000000,0.000170639000000,0.000062393000000,0.000073455000000,0.000019542000000,0.000178540000000 +0.000015394000000,0.007308609000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000080171000000,0.000083331000000,0.000231874000000,0.000095973000000,0.000097553000000,0.007006387000000,0.000122442000000,0.000121257000000,0.000062392000000,0.000086492000000,0.000018949500000,0.000209355000000 +0.000015394000000,0.008397003000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000054492000000,0.000082541000000,0.000087677000000,0.000132319000000,0.000096368000000,0.000099133000000,0.007005202000000,0.000121652000000,0.000121257000000,0.000063183000000,0.000054096000000,0.000018752000000,0.000151676000000 +0.000034751500000,0.007105943000000,0.000026258000000,0.000013818333333,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000052911000000,0.000082146000000,0.000115726000000,0.000167875000000,0.000095578000000,0.000097158000000,0.006813597000000,0.000157602000000,0.000122443000000,0.000063183000000,0.000053306000000,0.000018949000000,0.000085701000000 +0.000023097500000,0.007121745000000,0.000026653500000,0.000013818333333,0.000039874000000,0.000016184000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013423333333,0.000056072000000,0.000078985000000,0.000079380000000,0.000132714000000,0.000095973000000,0.000132714000000,0.007259622000000,0.000121257000000,0.000123232000000,0.000062393000000,0.000053306000000,0.000018949500000,0.000080170000000 +0.000022505000000,0.007444116000000,0.000036134500000,0.000013159666667,0.000039874000000,0.000015591500000,0.000048170000000,0.000018554500000,0.000039084000000,0.000013028000000,0.000080961000000,0.000080170000000,0.000079776000000,0.000166689000000,0.000097554000000,0.000096368000000,0.006909992000000,0.000121652000000,0.000122442000000,0.000062392000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.007395523000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018357000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000079381000000,0.000235034000000,0.000167874000000,0.000139430000000,0.006941992000000,0.000122046000000,0.000121257000000,0.000084121000000,0.000053701000000,0.000018752000000,0.000065949000000 +0.000015986500000,0.006981893000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000057652000000,0.000079775000000,0.000080566000000,0.000131133000000,0.000096764000000,0.000112171000000,0.006890239000000,0.000121257000000,0.000193553000000,0.000081356000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000016184000000,0.008404115000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018356500000,0.000039084000000,0.000013554666667,0.000053307000000,0.000117701000000,0.000083331000000,0.000166294000000,0.000096763000000,0.000096368000000,0.007275029000000,0.000122047000000,0.000121652000000,0.000061997000000,0.000053701000000,0.000018949500000,0.000108220000000 +0.000015986500000,0.007116609000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000025538333333,0.000053306000000,0.000081750000000,0.000084516000000,0.000133108000000,0.000098738000000,0.000097553000000,0.007077499000000,0.000122047000000,0.000174985000000,0.000067133000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007147424000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000015789000000,0.000049355000000,0.000019937000000,0.000039479000000,0.000013160000000,0.000054887000000,0.000081751000000,0.000080566000000,0.000163923000000,0.000096763000000,0.000095973000000,0.006867325000000,0.000158393000000,0.000121652000000,0.000082936000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006839671000000,0.000026653000000,0.000013159666667,0.000059627000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082541000000,0.000079381000000,0.000132714000000,0.000097158000000,0.000097158000000,0.006785153000000,0.000122442000000,0.000122047000000,0.000078986000000,0.000054096000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.007726584000000,0.000026455500000,0.000013159666667,0.000056467000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053701000000,0.000082540000000,0.000080171000000,0.000236220000000,0.000097158000000,0.000116912000000,0.006841646000000,0.000122047000000,0.000122047000000,0.000079776000000,0.000054491000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006814387000000,0.000026455500000,0.000013686666667,0.000053702000000,0.000015986500000,0.000048960000000,0.000032184000000,0.000039479000000,0.000013028000000,0.000054491000000,0.000081751000000,0.000079381000000,0.000163923000000,0.000097158000000,0.000096763000000,0.006935276000000,0.000122442000000,0.000175776000000,0.000062392000000,0.000054096000000,0.000056480000000,0.000067923000000 +0.000015789000000,0.007043128000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048170000000,0.000018356500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082541000000,0.000119677000000,0.000132714000000,0.000139034000000,0.000097158000000,0.006928955000000,0.000122837000000,0.000159182000000,0.000063973000000,0.000053701000000,0.000026060500000,0.000067528000000 +0.000015591500000,0.006810832000000,0.000026258000000,0.000014871666667,0.000040270000000,0.000035147000000,0.000050936000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000053701000000,0.000081355000000,0.000080566000000,0.000163528000000,0.000097158000000,0.000095973000000,0.006905647000000,0.000121652000000,0.000172615000000,0.000082146000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006667819000000,0.000026258000000,0.000013555000000,0.000040270000000,0.000023492500000,0.000085306000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000052911000000,0.000082146000000,0.000084121000000,0.000131133000000,0.000095973000000,0.000096763000000,0.006925005000000,0.000122047000000,0.000120862000000,0.000065159000000,0.000089652000000,0.000018554000000,0.000067528000000 +0.000015591500000,0.006953844000000,0.000026850500000,0.000013159666667,0.000040270000000,0.000022702500000,0.000050146000000,0.000018159500000,0.000040664000000,0.000013686333333,0.000053306000000,0.000081356000000,0.000082541000000,0.000170244000000,0.000095973000000,0.000098343000000,0.006826239000000,0.000168664000000,0.000122442000000,0.000063183000000,0.000054886000000,0.000019937000000,0.000067528000000 +0.000015789000000,0.007200757000000,0.000026653000000,0.000013291333333,0.000040270000000,0.000016184000000,0.000047775000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000055677000000,0.000117306000000,0.000081356000000,0.000202640000000,0.000095972000000,0.000097158000000,0.007109893000000,0.000122047000000,0.000120862000000,0.000065553000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.007184560000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048170000000,0.000018159000000,0.000039085000000,0.000013554666667,0.000090047000000,0.000082146000000,0.000081356000000,0.000133109000000,0.000097158000000,0.000097158000000,0.006723524000000,0.000120862000000,0.000122047000000,0.000062788000000,0.000053306000000,0.000019937500000,0.000067528000000 +0.000016579000000,0.006775672000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000016381500000,0.000050541000000,0.000018356500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000081751000000,0.000081356000000,0.000169454000000,0.000097158000000,0.000095578000000,0.006958585000000,0.000120466000000,0.000289158000000,0.000063183000000,0.000053701000000,0.000018752000000,0.000103874000000 +0.000015591500000,0.007137942000000,0.000051937000000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000054097000000,0.000083330000000,0.000081355000000,0.000131528000000,0.000097553000000,0.000096763000000,0.007135967000000,0.000121652000000,0.000315627000000,0.000062393000000,0.000054096000000,0.000018949500000,0.000066344000000 +0.000015591500000,0.006839276000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000050146000000,0.000018357000000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081356000000,0.000081750000000,0.000169059000000,0.000096763000000,0.000096368000000,0.007370239000000,0.000122442000000,0.000139035000000,0.000069503000000,0.000054096000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006706930000000,0.000026851000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048171000000,0.000017962000000,0.000039479000000,0.000013423000000,0.000054492000000,0.000080171000000,0.000080961000000,0.000134294000000,0.000142985000000,0.000095973000000,0.006791869000000,0.000120862000000,0.000122442000000,0.000062393000000,0.000054096000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.006853894000000,0.000026258000000,0.000013686333333,0.000041849000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082936000000,0.000118887000000,0.000200269000000,0.000095973000000,0.000097158000000,0.006857449000000,0.000211331000000,0.000141010000000,0.000062787000000,0.000052911000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.007365103000000,0.000026653500000,0.000014740000000,0.000040269000000,0.000016381500000,0.000049750000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000057257000000,0.000081751000000,0.000079775000000,0.000163923000000,0.000095973000000,0.000097158000000,0.007501004000000,0.000178935000000,0.000138640000000,0.000062393000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.006612511000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000080171000000,0.000079380000000,0.000130738000000,0.000099133000000,0.000095973000000,0.006907622000000,0.000137454000000,0.000121257000000,0.000062392000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015393500000,0.006825449000000,0.000026653500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082146000000,0.000082146000000,0.000242146000000,0.000096763000000,0.000096763000000,0.007481251000000,0.000122837000000,0.000120861000000,0.000096368000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000035937000000,0.006870486000000,0.000026258000000,0.000013554666667,0.000040269000000,0.000015591500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000056072000000,0.000118886000000,0.000082936000000,0.000131134000000,0.000095973000000,0.000096763000000,0.007180214000000,0.000123232000000,0.000123627000000,0.000094788000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000037122000000,0.006985449000000,0.000026456000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000060417000000,0.000083726000000,0.000080171000000,0.000165108000000,0.000095973000000,0.000096763000000,0.007633744000000,0.000122442000000,0.000121652000000,0.000062393000000,0.000053306000000,0.000020134500000,0.000101503000000 +0.000015789000000,0.007292016000000,0.000026060500000,0.000013159666667,0.000041059000000,0.000016184000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000020007666667,0.000053702000000,0.000082541000000,0.000119677000000,0.000177751000000,0.000095973000000,0.000131528000000,0.007006783000000,0.000141010000000,0.000122047000000,0.000063578000000,0.000057652000000,0.000019739500000,0.000083726000000 +0.000015986500000,0.006907622000000,0.000026258500000,0.000013159666667,0.000043429000000,0.000016381500000,0.000048566000000,0.000019147000000,0.000039479000000,0.000018690333333,0.000053306000000,0.000081751000000,0.000096368000000,0.000166294000000,0.000096368000000,0.000109405000000,0.007185350000000,0.000121257000000,0.000122837000000,0.000061997000000,0.000055281000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.007379720000000,0.000026258000000,0.000013159666667,0.000079380000000,0.000015789000000,0.000049356000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000053307000000,0.000078985000000,0.000083331000000,0.000163528000000,0.000133503000000,0.000097158000000,0.006904462000000,0.000121257000000,0.000172220000000,0.000063973000000,0.000053701000000,0.000018752000000,0.000103479000000 +0.000015394000000,0.006996116000000,0.000026455500000,0.000013028000000,0.000072664000000,0.000016381500000,0.000087281000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000054491000000,0.000081356000000,0.000082936000000,0.000133899000000,0.000096763000000,0.000095973000000,0.007028906000000,0.000122442000000,0.000122442000000,0.000064368000000,0.000089652000000,0.000018752000000,0.000067528000000 +0.000016184500000,0.006998486000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053307000000,0.000080171000000,0.000105059000000,0.000382392000000,0.000096368000000,0.000097158000000,0.006804511000000,0.000121256000000,0.000123627000000,0.000062788000000,0.000053702000000,0.000046604000000,0.000067924000000 +0.000015986500000,0.007131621000000,0.000026455500000,0.000014213333333,0.000040269000000,0.000016579000000,0.000048566000000,0.000036529500000,0.000039479000000,0.000013554666667,0.000091232000000,0.000082936000000,0.000105849000000,0.000132714000000,0.000096763000000,0.000096368000000,0.007357202000000,0.000122047000000,0.000121652000000,0.000062788000000,0.000055677000000,0.000026060500000,0.000067134000000 +0.000015789000000,0.006833745000000,0.000035344500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000026653000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000081751000000,0.000082146000000,0.000166294000000,0.000097158000000,0.000097159000000,0.006693104000000,0.000121651000000,0.000123232000000,0.000065554000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.006883523000000,0.000026455500000,0.000013028333333,0.000040269000000,0.000016184000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013291666667,0.000054096000000,0.000081751000000,0.000084516000000,0.000240960000000,0.000096368000000,0.000095578000000,0.006815968000000,0.000121257000000,0.000122837000000,0.000063183000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015393500000,0.007136758000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053702000000,0.000082146000000,0.000079380000000,0.000133899000000,0.000097553000000,0.000095973000000,0.006979128000000,0.000208566000000,0.000122047000000,0.000061998000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.007186140000000,0.000026258000000,0.000013028000000,0.000042244000000,0.000015986500000,0.000048961000000,0.000018357000000,0.000039875000000,0.000013159666667,0.000053306000000,0.000093207000000,0.000081355000000,0.000167479000000,0.000138245000000,0.000131923000000,0.006822288000000,0.000122047000000,0.000137454000000,0.000082540000000,0.000053701000000,0.000019147000000,0.000068319000000 +0.000015986500000,0.006916313000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000033961500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079775000000,0.000080961000000,0.000205404000000,0.000165899000000,0.000097158000000,0.006805301000000,0.000122442000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000015986500000,0.006897350000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000016381500000,0.000050936000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053702000000,0.000081750000000,0.000083331000000,0.000171035000000,0.000167479000000,0.000095972000000,0.006936856000000,0.000121257000000,0.000121652000000,0.000062392000000,0.000053701000000,0.000019739500000,0.000068318000000 +0.000016184000000,0.006923819000000,0.000026456000000,0.000013423000000,0.000040269000000,0.000015789000000,0.000050541000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000082936000000,0.000082540000000,0.000134293000000,0.000101109000000,0.000097948000000,0.007241844000000,0.000121652000000,0.000123627000000,0.000065553000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006918289000000,0.000028826000000,0.000013028333333,0.000040269000000,0.000016381500000,0.000050936000000,0.000018357000000,0.000040269000000,0.000013423000000,0.000054492000000,0.000082146000000,0.000115726000000,0.000169849000000,0.000110985000000,0.000096368000000,0.006979523000000,0.000122442000000,0.000121652000000,0.000092812000000,0.000054096000000,0.000018752000000,0.000086096000000 +0.000015986500000,0.006936857000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000017566500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000054096000000,0.000082146000000,0.000080566000000,0.000163924000000,0.000096763000000,0.000097553000000,0.007077103000000,0.000122442000000,0.000123627000000,0.000061998000000,0.000054492000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.007293992000000,0.000026653000000,0.000013291333333,0.000040269000000,0.000024085500000,0.000048566000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000054887000000,0.000080171000000,0.000080566000000,0.000132714000000,0.000097158000000,0.000098738000000,0.006779622000000,0.000169850000000,0.000122442000000,0.000080961000000,0.000053702000000,0.000019937500000,0.000067528000000 +0.000015591000000,0.006808067000000,0.000026258000000,0.000013160000000,0.000039874000000,0.000016776500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000057257000000,0.000078986000000,0.000079381000000,0.000213306000000,0.000095973000000,0.000095972000000,0.006943178000000,0.000120467000000,0.000206195000000,0.000076220000000,0.000053702000000,0.000018752000000,0.000068713000000 +0.000015591500000,0.006813202000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000017171500000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053701000000,0.000084121000000,0.000079776000000,0.000151676000000,0.000095973000000,0.000096763000000,0.006904462000000,0.000121652000000,0.000122837000000,0.000084911000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007095276000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000017369500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000079380000000,0.000084911000000,0.000165899000000,0.000132319000000,0.000131923000000,0.006887078000000,0.000121652000000,0.000122442000000,0.000062788000000,0.000115726000000,0.000020727500000,0.000067528000000 +0.000016184000000,0.006888264000000,0.000026653000000,0.000013159666667,0.000039875000000,0.000017369500000,0.000048565000000,0.000018357000000,0.000039479000000,0.000013686333333,0.000053306000000,0.000174590000000,0.000079775000000,0.000130738000000,0.000097158000000,0.000097158000000,0.007044313000000,0.000122047000000,0.000123627000000,0.000062393000000,0.000067134000000,0.000019147000000,0.000067528000000 +0.000015394000000,0.007148609000000,0.000026455500000,0.000013554666667,0.000040270000000,0.000016974500000,0.000051726000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000093603000000,0.000182492000000,0.000080170000000,0.000172615000000,0.000098739000000,0.000095973000000,0.006797795000000,0.000120862000000,0.000120861000000,0.000061997000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006971622000000,0.000045418500000,0.000013159666667,0.000040270000000,0.000016777000000,0.000082540000000,0.000018159000000,0.000040270000000,0.000025406666667,0.000054096000000,0.000101503000000,0.000078985000000,0.000164319000000,0.000097158000000,0.000097158000000,0.007262782000000,0.000121652000000,0.000122047000000,0.000061998000000,0.000053701000000,0.000019740000000,0.000067134000000 +0.000015394000000,0.006848363000000,0.000035147000000,0.000013159666667,0.000060813000000,0.000016579000000,0.000064368000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000059233000000,0.000096763000000,0.000080170000000,0.000185652000000,0.000097158000000,0.000096763000000,0.008790879000000,0.000203824000000,0.000121652000000,0.000063182000000,0.000053701000000,0.000018752000000,0.000066739000000 +0.000025665500000,0.006769746000000,0.000026455500000,0.000013159666667,0.000053701000000,0.000017369500000,0.000048565000000,0.000018357000000,0.000041059000000,0.000013159666667,0.000060812000000,0.000082541000000,0.000080960000000,0.000440072000000,0.000095973000000,0.000096763000000,0.007048659000000,0.000122442000000,0.000122837000000,0.000078195000000,0.000053701000000,0.000018554500000,0.000067923000000 +0.000040480500000,0.006733004000000,0.000026258500000,0.000013159666667,0.000039874000000,0.000017567000000,0.000049751000000,0.000018357000000,0.000039084000000,0.000013028000000,0.000055677000000,0.000081750000000,0.000123627000000,0.000130739000000,0.000096368000000,0.000096763000000,0.007515622000000,0.000122047000000,0.000122047000000,0.000077010000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000023493000000,0.006991375000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000026061000000,0.000049355000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000055677000000,0.000088072000000,0.000080171000000,0.000167084000000,0.000097159000000,0.000095973000000,0.007085399000000,0.000121257000000,0.000122837000000,0.000095973000000,0.000053306000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.007066041000000,0.000026653500000,0.000013159666667,0.000039875000000,0.000024085500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013818000000,0.000055282000000,0.000079776000000,0.000081356000000,0.000227134000000,0.000097158000000,0.000097158000000,0.007954930000000,0.000121256000000,0.000121652000000,0.000062393000000,0.000053306000000,0.000037912500000,0.000103875000000 +0.000015591500000,0.007028511000000,0.000028233500000,0.000013028000000,0.000039875000000,0.000017369000000,0.000050146000000,0.000018356500000,0.000039479000000,0.000013028000000,0.000053306000000,0.000081751000000,0.000080565000000,0.000167084000000,0.000167479000000,0.000138244000000,0.007412906000000,0.000122837000000,0.000122442000000,0.000080960000000,0.000053701000000,0.000026258000000,0.000067529000000 +0.000015591500000,0.006927770000000,0.000026258000000,0.000013818333333,0.000040270000000,0.000017369000000,0.000049751000000,0.000018357000000,0.000040270000000,0.000013160000000,0.000054096000000,0.000080170000000,0.000082145000000,0.000190393000000,0.000097158000000,0.000095973000000,0.006943968000000,0.000121651000000,0.000122837000000,0.000075825000000,0.000053701000000,0.000019147000000,0.000065948000000 +0.000016184000000,0.007379325000000,0.000026060500000,0.000013028000000,0.000039875000000,0.000015591500000,0.000049355000000,0.000028036000000,0.000039479000000,0.000013555000000,0.000054491000000,0.000080170000000,0.000079380000000,0.000133898000000,0.000096368000000,0.000095972000000,0.007216954000000,0.000193948000000,0.000120467000000,0.000062392000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015393500000,0.006774881000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000047775000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053307000000,0.000079775000000,0.000081750000000,0.000178936000000,0.000097158000000,0.000096763000000,0.006733400000000,0.000122837000000,0.000138640000000,0.000062393000000,0.000055281000000,0.000018554500000,0.000067134000000 +0.000015394000000,0.006799375000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000040664000000,0.000013159666667,0.000053701000000,0.000081355000000,0.000083726000000,0.000132318000000,0.000096763000000,0.000097158000000,0.007401054000000,0.000122442000000,0.000121652000000,0.000062788000000,0.000053306000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.006765795000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053702000000,0.000082146000000,0.000080566000000,0.000329059000000,0.000095972000000,0.000096763000000,0.006721153000000,0.000121652000000,0.000122047000000,0.000063183000000,0.000054096000000,0.000018949500000,0.000069899000000 +0.000015394000000,0.006905647000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000033962000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079775000000,0.000081356000000,0.000186837000000,0.000096368000000,0.000097158000000,0.006866536000000,0.000121257000000,0.000122442000000,0.000067133000000,0.000090047000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006892609000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000015789000000,0.000048961000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079775000000,0.000216467000000,0.000133898000000,0.000095973000000,0.000096763000000,0.006771326000000,0.000122047000000,0.000121652000000,0.000063183000000,0.000067528000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.007486782000000,0.000026258000000,0.000013159666667,0.000040664000000,0.000016184000000,0.000048565000000,0.000019147000000,0.000060812000000,0.000013423333333,0.000126787000000,0.000081751000000,0.000079775000000,0.000165109000000,0.000096763000000,0.000096763000000,0.007025350000000,0.000122047000000,0.000122047000000,0.000063182000000,0.000054096000000,0.000020727500000,0.000067924000000 +0.000015789000000,0.006667819000000,0.000044431000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000056071000000,0.000013291333333,0.000127972000000,0.000080566000000,0.000079380000000,0.000132713000000,0.000133504000000,0.000165109000000,0.006931720000000,0.000192763000000,0.000122442000000,0.000061998000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000015393500000,0.006801746000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000123627000000,0.000079775000000,0.000079775000000,0.000200664000000,0.000097158000000,0.000114145000000,0.006932510000000,0.000121652000000,0.000203430000000,0.000082146000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006898930000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015591500000,0.000081751000000,0.000018357000000,0.000039479000000,0.000013291333333,0.000057257000000,0.000080961000000,0.000079775000000,0.000132714000000,0.000096763000000,0.000097158000000,0.006936461000000,0.000122442000000,0.000122442000000,0.000075825000000,0.000053306000000,0.000029616500000,0.000086491000000 +0.000016184000000,0.006844412000000,0.000026455500000,0.000013028000000,0.000041060000000,0.000015986500000,0.000086887000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000060022000000,0.000082146000000,0.000079775000000,0.000165109000000,0.000097158000000,0.000097554000000,0.006870881000000,0.000122047000000,0.000121257000000,0.000061997000000,0.000053701000000,0.000019937500000,0.000127183000000 +0.000015394000000,0.006794240000000,0.000026060500000,0.000013028000000,0.000039875000000,0.000015789000000,0.000087281000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000067528000000,0.000082146000000,0.000081751000000,0.000165899000000,0.000095973000000,0.000097158000000,0.006848363000000,0.000120862000000,0.000122047000000,0.000062393000000,0.000053306000000,0.000026653500000,0.000067528000000 +0.000015591500000,0.007085400000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000052121000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000053306000000,0.000079775000000,0.000081751000000,0.000129949000000,0.000096763000000,0.000096763000000,0.007099227000000,0.000173800000000,0.000121257000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015789000000,0.007537745000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000015591000000,0.000080170000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000054492000000,0.000080171000000,0.000079381000000,0.000194739000000,0.000096763000000,0.000096763000000,0.006834141000000,0.000157207000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006866930000000,0.000026455500000,0.000013159666667,0.000059628000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000025406333333,0.000053307000000,0.000080171000000,0.000117307000000,0.000138639000000,0.000097158000000,0.000096368000000,0.006851523000000,0.000122442000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000016184000000,0.007171918000000,0.000026455500000,0.000013159666667,0.000056467000000,0.000015986500000,0.000048565000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000056862000000,0.000080566000000,0.000081356000000,0.000182491000000,0.000096763000000,0.000095973000000,0.006950289000000,0.000122047000000,0.000205405000000,0.000062392000000,0.000053701000000,0.000019344500000,0.000066343000000 +0.000015394000000,0.007129647000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016382000000,0.000049356000000,0.000018554000000,0.000039479000000,0.000013554666667,0.000058442000000,0.000079776000000,0.000082936000000,0.000179726000000,0.000203825000000,0.000113750000000,0.007226042000000,0.000122837000000,0.000123627000000,0.000065949000000,0.000053701000000,0.000053714500000,0.000067529000000 +0.000015986500000,0.006953449000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159000000,0.000039085000000,0.000013554666667,0.000093208000000,0.000079776000000,0.000080565000000,0.000143775000000,0.000096764000000,0.000096763000000,0.006860609000000,0.000122837000000,0.000122442000000,0.000062393000000,0.000054096000000,0.000025665000000,0.000067134000000 +0.000025468000000,0.006965301000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048961000000,0.000018554500000,0.000039084000000,0.000013159666667,0.000058442000000,0.000082146000000,0.000079380000000,0.000175380000000,0.000097158000000,0.000096763000000,0.006742092000000,0.000122442000000,0.000122047000000,0.000061997000000,0.000053306000000,0.000018752000000,0.000066343000000 +0.000031789000000,0.007382090000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050145000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000082146000000,0.000141800000000,0.000097554000000,0.000097948000000,0.006919868000000,0.000123627000000,0.000121651000000,0.000062393000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006807276000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000054887000000,0.000099923000000,0.000080170000000,0.000210936000000,0.000095973000000,0.000096368000000,0.007329547000000,0.000158393000000,0.000121652000000,0.000062392000000,0.000124812000000,0.000018752000000,0.000066738000000 +0.000016579000000,0.006848363000000,0.000026061000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000037122000000,0.000039084000000,0.000013423333333,0.000053307000000,0.000085702000000,0.000082936000000,0.000139429000000,0.000096763000000,0.000095973000000,0.006960165000000,0.000135479000000,0.000123628000000,0.000061998000000,0.000053702000000,0.000019344500000,0.000067528000000 +0.000015394000000,0.006669795000000,0.000052924500000,0.000013686666667,0.000040270000000,0.000016184000000,0.000048566000000,0.000033962000000,0.000039084000000,0.000013818333333,0.000052911000000,0.000078985000000,0.000080961000000,0.000175776000000,0.000097158000000,0.000095577000000,0.007248165000000,0.000123232000000,0.000157998000000,0.000061998000000,0.000053702000000,0.000019147000000,0.000084912000000 +0.000015591500000,0.006915918000000,0.000026060500000,0.000013160000000,0.000040665000000,0.000016381500000,0.000050145000000,0.000024875500000,0.000039479000000,0.000013686333333,0.000055282000000,0.000079775000000,0.000082936000000,0.000178541000000,0.000095577000000,0.000097158000000,0.006741696000000,0.000120862000000,0.000122047000000,0.000062788000000,0.000053702000000,0.000020332000000,0.000067528000000 +0.000015591000000,0.007105547000000,0.000026060500000,0.000013159666667,0.000039875000000,0.000015591000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000052911000000,0.000082541000000,0.000125602000000,0.000141405000000,0.000132714000000,0.000096763000000,0.006795029000000,0.000121257000000,0.000122442000000,0.000061998000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.007064066000000,0.000026060500000,0.000013028000000,0.000040270000000,0.000016579000000,0.000069109000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000053307000000,0.000081356000000,0.000079775000000,0.000187232000000,0.000097158000000,0.000133504000000,0.006944758000000,0.000122047000000,0.000121256000000,0.000063973000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007272264000000,0.000026060500000,0.000013555000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018554000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000082936000000,0.000081751000000,0.000140220000000,0.000099133000000,0.000097553000000,0.006788709000000,0.000121652000000,0.000121257000000,0.000078985000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006790288000000,0.000026456000000,0.000013555000000,0.000041455000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000054097000000,0.000082936000000,0.000081751000000,0.000188022000000,0.000097158000000,0.000097158000000,0.006914338000000,0.000158393000000,0.000121257000000,0.000062392000000,0.000053702000000,0.000018554500000,0.000067133000000 +0.000015591500000,0.006863375000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000053306000000,0.000082146000000,0.000080961000000,0.000141010000000,0.000097554000000,0.000096368000000,0.006843226000000,0.000122442000000,0.000122047000000,0.000062393000000,0.000054492000000,0.000018949500000,0.000067529000000 +0.000016184000000,0.006868116000000,0.000026456000000,0.000013554666667,0.000040664000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000054492000000,0.000082541000000,0.000081751000000,0.000260713000000,0.000095578000000,0.000096763000000,0.007164017000000,0.000122047000000,0.000164714000000,0.000063973000000,0.000053701000000,0.000019147000000,0.000067924000000 +0.000016184000000,0.006992165000000,0.000026455500000,0.000013818000000,0.000039874000000,0.000035542000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000124022000000,0.000083331000000,0.000177751000000,0.000097158000000,0.000096368000000,0.006762240000000,0.000121652000000,0.000122047000000,0.000062788000000,0.000053701000000,0.000018949500000,0.000066739000000 +0.000015986500000,0.006923030000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000023888000000,0.000049751000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000053307000000,0.000081750000000,0.000082541000000,0.000174590000000,0.000095973000000,0.000097158000000,0.006813202000000,0.000121652000000,0.000121257000000,0.000095973000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006934091000000,0.000026258000000,0.000013028000000,0.000041059000000,0.000022900000000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013291666667,0.000053306000000,0.000083331000000,0.000079776000000,0.000240960000000,0.000095578000000,0.000097158000000,0.006943572000000,0.000121652000000,0.000121652000000,0.000082540000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.007088165000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016776500000,0.000048171000000,0.000018159000000,0.000039479000000,0.000013554666667,0.000069504000000,0.000117306000000,0.000080961000000,0.000141800000000,0.000186442000000,0.000144171000000,0.006728659000000,0.000169454000000,0.000122837000000,0.000094788000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006870881000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000047775000000,0.000018159500000,0.000039479000000,0.000027908666667,0.000053702000000,0.000100318000000,0.000081356000000,0.000179331000000,0.000110590000000,0.000096763000000,0.006943572000000,0.000161158000000,0.000121652000000,0.000062392000000,0.000054096000000,0.000019147000000,0.000103875000000 +0.000015986500000,0.007292016000000,0.000026455500000,0.000013159666667,0.000041059000000,0.000015788500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000022246333333,0.000053307000000,0.000079775000000,0.000128368000000,0.000180516000000,0.000096368000000,0.000096763000000,0.006892214000000,0.000365405000000,0.000121652000000,0.000062393000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006957795000000,0.000026455500000,0.000013159666667,0.000059232000000,0.000016579000000,0.000047775000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000054096000000,0.000081750000000,0.000080960000000,0.000139825000000,0.000097553000000,0.000096367000000,0.006969251000000,0.000214491000000,0.000156023000000,0.000061997000000,0.000090047000000,0.000028826000000,0.000069899000000 +0.000016184000000,0.007362337000000,0.000044233500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053307000000,0.000081356000000,0.000080565000000,0.000256368000000,0.000097554000000,0.000097553000000,0.006918289000000,0.000137454000000,0.000136664000000,0.000062788000000,0.000053702000000,0.000034752000000,0.000065949000000 +0.000015986500000,0.006897746000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159000000,0.000041059000000,0.000013028000000,0.000053702000000,0.000081751000000,0.000081751000000,0.000141009000000,0.000095973000000,0.000098738000000,0.007276214000000,0.000122442000000,0.000122047000000,0.000067528000000,0.000053307000000,0.000025863000000,0.000067528000000 +0.000015591500000,0.006793054000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000052911000000,0.000084911000000,0.000082541000000,0.000182097000000,0.000095972000000,0.000095972000000,0.006690338000000,0.000164714000000,0.000122838000000,0.000062788000000,0.000053702000000,0.000018751500000,0.000067528000000 +0.000015986500000,0.007445695000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048960000000,0.000018357000000,0.000039479000000,0.000013423000000,0.000052912000000,0.000082541000000,0.000081751000000,0.000138640000000,0.000095973000000,0.000099133000000,0.006946733000000,0.000122047000000,0.000120862000000,0.000081355000000,0.000053702000000,0.000019344500000,0.000067923000000 +0.000015986500000,0.006793844000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000040665000000,0.000013686333333,0.000053306000000,0.000081356000000,0.000081750000000,0.000170244000000,0.000133109000000,0.000095973000000,0.006874437000000,0.000121652000000,0.000123233000000,0.000062788000000,0.000053702000000,0.000019344500000,0.000067528000000 +0.000015591500000,0.007183375000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039480000000,0.000013028000000,0.000058442000000,0.000080961000000,0.000079775000000,0.000226343000000,0.000097948000000,0.000133899000000,0.006876412000000,0.000121652000000,0.000122442000000,0.000069899000000,0.000053702000000,0.000018752000000,0.000067924000000 +0.000025073000000,0.006805301000000,0.000026456000000,0.000013686333333,0.000040270000000,0.000016381500000,0.000068713000000,0.000035344500000,0.000039479000000,0.000013160000000,0.000053307000000,0.000082145000000,0.000081355000000,0.000139430000000,0.000095973000000,0.000097158000000,0.007028906000000,0.000120862000000,0.000140219000000,0.000062393000000,0.000054491000000,0.000018752000000,0.000068319000000 +0.000041270000000,0.006863375000000,0.000026455500000,0.000025011666667,0.000039875000000,0.000016381500000,0.000049750000000,0.000027641000000,0.000039084000000,0.000013423333333,0.000056467000000,0.000079775000000,0.000083726000000,0.000201059000000,0.000096763000000,0.000099134000000,0.006883919000000,0.000122047000000,0.000185257000000,0.000062392000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000015986500000,0.006943967000000,0.000026258000000,0.000013423000000,0.000040270000000,0.000015789000000,0.000050541000000,0.000019344500000,0.000039084000000,0.000013423333333,0.000053701000000,0.000081750000000,0.000119282000000,0.000140615000000,0.000097159000000,0.000096763000000,0.006773696000000,0.000122442000000,0.000123627000000,0.000061998000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007199572000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048171000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000081750000000,0.000176170000000,0.000096763000000,0.000095578000000,0.007296362000000,0.000156813000000,0.000122837000000,0.000061997000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006786733000000,0.000026455500000,0.000013818000000,0.000040665000000,0.000015591500000,0.000048170000000,0.000024875500000,0.000039085000000,0.000013423000000,0.000114540000000,0.000083331000000,0.000082936000000,0.000139034000000,0.000097158000000,0.000096763000000,0.007254486000000,0.000121652000000,0.000165109000000,0.000066739000000,0.000053701000000,0.000018752000000,0.000084911000000 +0.000015591500000,0.006817548000000,0.000028628500000,0.000013423000000,0.000040665000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000068713000000,0.000084516000000,0.000080961000000,0.000172615000000,0.000096368000000,0.000096763000000,0.007207473000000,0.000122047000000,0.000139825000000,0.000062788000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.006964905000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000080170000000,0.000082541000000,0.000178541000000,0.000118096000000,0.000095972000000,0.007237498000000,0.000124418000000,0.000122837000000,0.000061998000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.006852709000000,0.000027048500000,0.000013160000000,0.000041060000000,0.000016184000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000055677000000,0.000119677000000,0.000080565000000,0.000141010000000,0.000140220000000,0.000095973000000,0.006972017000000,0.000121652000000,0.000172220000000,0.000062788000000,0.000053701000000,0.000018554000000,0.000084516000000 +0.000015789000000,0.007261597000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016579500000,0.000048960000000,0.000018159000000,0.000041059000000,0.000013423333333,0.000053306000000,0.000079776000000,0.000082145000000,0.000174195000000,0.000095973000000,0.000168269000000,0.006741696000000,0.000122443000000,0.000121652000000,0.000062392000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006847968000000,0.000036135000000,0.000014081333333,0.000040664000000,0.000043048500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000053702000000,0.000082146000000,0.000079775000000,0.000142590000000,0.000098344000000,0.000096368000000,0.006919474000000,0.000121257000000,0.000122047000000,0.000080171000000,0.000099923000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.007150980000000,0.000086900000000,0.000013159666667,0.000039874000000,0.000029023500000,0.000048566000000,0.000018357000000,0.000040664000000,0.000013554666667,0.000053306000000,0.000079776000000,0.000079380000000,0.000213306000000,0.000096368000000,0.000095578000000,0.006862190000000,0.000157603000000,0.000122047000000,0.000063182000000,0.000055677000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.006739326000000,0.000079789000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000053307000000,0.000018159500000,0.000040269000000,0.000024616666667,0.000052911000000,0.000082146000000,0.000083331000000,0.000176960000000,0.000096763000000,0.000097158000000,0.006949104000000,0.000122047000000,0.000121652000000,0.000061998000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000015591500000,0.006723918000000,0.000067937000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000050541000000,0.000018159000000,0.000039479000000,0.000017900666667,0.000052911000000,0.000081355000000,0.000082936000000,0.000141405000000,0.000097553000000,0.000096368000000,0.006862585000000,0.000121257000000,0.000120862000000,0.000063183000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006924610000000,0.000073073000000,0.000013159666667,0.000042640000000,0.000015789000000,0.000048565000000,0.000018554000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000080565000000,0.000097553000000,0.000178145000000,0.000097158000000,0.000096368000000,0.007144659000000,0.000121257000000,0.000121652000000,0.000065553000000,0.000054096000000,0.000018751500000,0.000067528000000 +0.000015591000000,0.007425548000000,0.000053122000000,0.000013160000000,0.000076220000000,0.000015789000000,0.000048171000000,0.000027245500000,0.000039874000000,0.000013159666667,0.000053307000000,0.000079775000000,0.000079775000000,0.000140615000000,0.000097158000000,0.000097158000000,0.006806486000000,0.000122442000000,0.000158393000000,0.000097158000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.006873646000000,0.000044233000000,0.000014213333333,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000079775000000,0.000080565000000,0.000176170000000,0.000133109000000,0.000096763000000,0.006719968000000,0.000122837000000,0.000122047000000,0.000061998000000,0.000053701000000,0.000046998500000,0.000144961000000 +0.000015591500000,0.007187326000000,0.000045616000000,0.000013291333333,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000081751000000,0.000079775000000,0.000141800000000,0.000096368000000,0.000096368000000,0.007215375000000,0.000121652000000,0.000122442000000,0.000062393000000,0.000054491000000,0.000046801500000,0.000080961000000 +0.000015394000000,0.007304659000000,0.000059048000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048565000000,0.000017962000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000080961000000,0.000083331000000,0.000170244000000,0.000096368000000,0.000133109000000,0.006667819000000,0.000154442000000,0.000120862000000,0.000062393000000,0.000053701000000,0.000061221000000,0.000067134000000 +0.000015986500000,0.006881153000000,0.000053122500000,0.000013159666667,0.000039875000000,0.000016579000000,0.000089257000000,0.000018751500000,0.000039084000000,0.000013159666667,0.000056467000000,0.000081751000000,0.000079380000000,0.000323924000000,0.000095973000000,0.000097553000000,0.006979918000000,0.000137059000000,0.000122047000000,0.000061603000000,0.000054096000000,0.000054900000000,0.000067924000000 +0.000015986500000,0.007053399000000,0.000038307500000,0.000013159666667,0.000041455000000,0.000016184000000,0.000062788000000,0.000036332000000,0.000039479000000,0.000013028000000,0.000092022000000,0.000081751000000,0.000082936000000,0.000139825000000,0.000095973000000,0.000097158000000,0.007180214000000,0.000122837000000,0.000121257000000,0.000061997000000,0.000054097000000,0.000054110000000,0.000067924000000 +0.000015789000000,0.006761845000000,0.000035937000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000053307000000,0.000079775000000,0.000082146000000,0.000179331000000,0.000095973000000,0.000095973000000,0.007057350000000,0.000122047000000,0.000122442000000,0.000062393000000,0.000054097000000,0.000044628500000,0.000067529000000 +0.000015986500000,0.006792264000000,0.000034949500000,0.000013159666667,0.000041060000000,0.000015789000000,0.000050541000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053701000000,0.000083726000000,0.000079775000000,0.000176565000000,0.000098738000000,0.000130738000000,0.006877203000000,0.000121652000000,0.000157998000000,0.000068713000000,0.000054097000000,0.000021320000000,0.000067528000000 +0.000015591500000,0.006895770000000,0.000028035500000,0.000013818333333,0.000040270000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000054492000000,0.000079380000000,0.000081356000000,0.000177356000000,0.000096368000000,0.000112170000000,0.006934881000000,0.000122837000000,0.000121652000000,0.000080566000000,0.000053702000000,0.000019937500000,0.000066738000000 +0.000016184000000,0.006981498000000,0.000037517000000,0.000013028000000,0.000040665000000,0.000015789000000,0.000048170000000,0.000018159500000,0.000040269000000,0.000013554666667,0.000054491000000,0.000082541000000,0.000134689000000,0.000139430000000,0.000096368000000,0.000096368000000,0.006774091000000,0.000121652000000,0.000120861000000,0.000075825000000,0.000055282000000,0.000019937500000,0.000067923000000 +0.000015196500000,0.006815968000000,0.000028036000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053702000000,0.000081356000000,0.000079380000000,0.000177355000000,0.000167084000000,0.000097158000000,0.006796214000000,0.000122047000000,0.000122442000000,0.000062393000000,0.000055282000000,0.000020925000000,0.000068318000000 +0.000015591500000,0.006905646000000,0.000028233000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018554000000,0.000039874000000,0.000013554666667,0.000053701000000,0.000080171000000,0.000081751000000,0.000192368000000,0.000109010000000,0.000133108000000,0.007571720000000,0.000139429000000,0.000122442000000,0.000062393000000,0.000108614000000,0.000018752000000,0.000067923000000 +0.000025468000000,0.007207869000000,0.000038110000000,0.000013159666667,0.000041060000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000054887000000,0.000079381000000,0.000081750000000,0.000173010000000,0.000096368000000,0.000096763000000,0.007202338000000,0.000120467000000,0.000121652000000,0.000062393000000,0.000069899000000,0.000018752000000,0.000067528000000 +0.000031789000000,0.006800560000000,0.000088085000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000047775000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000059232000000,0.000081356000000,0.000082145000000,0.000167479000000,0.000097159000000,0.000097158000000,0.006735375000000,0.000122442000000,0.000122047000000,0.000062788000000,0.000053701000000,0.000030406500000,0.000103874000000 +0.000015986500000,0.006767375000000,0.000059048000000,0.000014213333333,0.000040665000000,0.000015789000000,0.000048565000000,0.000018357000000,0.000041850000000,0.000013028333333,0.000053307000000,0.000080566000000,0.000080170000000,0.000133504000000,0.000096763000000,0.000098738000000,0.006805696000000,0.000121257000000,0.000121257000000,0.000067528000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006994140000000,0.000059443000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000050146000000,0.000018159500000,0.000039480000000,0.000013423000000,0.000055281000000,0.000081750000000,0.000081356000000,0.000207380000000,0.000096763000000,0.000096763000000,0.007006387000000,0.000121257000000,0.000342096000000,0.000061998000000,0.000054096000000,0.000018949000000,0.000068319000000 +0.000015394000000,0.006793449000000,0.000036332500000,0.000013028000000,0.000039874000000,0.000016579500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079380000000,0.000083331000000,0.000184861000000,0.000096763000000,0.000097553000000,0.006818338000000,0.000121652000000,0.000189997000000,0.000062788000000,0.000053306000000,0.000018949500000,0.000090837000000 +0.000015591000000,0.006734585000000,0.000028628500000,0.000013028000000,0.000040664000000,0.000015591500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013818000000,0.000054096000000,0.000082936000000,0.000082936000000,0.000132714000000,0.000095973000000,0.000097158000000,0.007135967000000,0.000122442000000,0.000138245000000,0.000063183000000,0.000054096000000,0.000019937000000,0.000068318000000 +0.000015394000000,0.006712857000000,0.000038110000000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048170000000,0.000018357000000,0.000039084000000,0.000028303666667,0.000054491000000,0.000081356000000,0.000082935000000,0.000437701000000,0.000095183000000,0.000096764000000,0.007066042000000,0.000138639000000,0.000122047000000,0.000063183000000,0.000053701000000,0.000019937500000,0.000065948000000 +0.000015591500000,0.006934881000000,0.000039493000000,0.000013159666667,0.000039874000000,0.000025270500000,0.000048566000000,0.000021912500000,0.000039479000000,0.000023563000000,0.000055677000000,0.000079380000000,0.000118491000000,0.000158393000000,0.000132714000000,0.000095973000000,0.007181794000000,0.000122442000000,0.000121652000000,0.000061998000000,0.000053306000000,0.000019739500000,0.000067529000000 +0.000015986500000,0.007197597000000,0.000035937000000,0.000013818000000,0.000040664000000,0.000024678000000,0.000048961000000,0.000018159000000,0.000039480000000,0.000013686333333,0.000072664000000,0.000079380000000,0.000080961000000,0.000180516000000,0.000096763000000,0.000133109000000,0.006778042000000,0.000122442000000,0.000158788000000,0.000067134000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006976363000000,0.000034752000000,0.000013159666667,0.000075825000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000041060000000,0.000013423000000,0.000053701000000,0.000082541000000,0.000082541000000,0.000131528000000,0.000096368000000,0.000096368000000,0.006939227000000,0.000122442000000,0.000122442000000,0.000078985000000,0.000053701000000,0.000019739500000,0.000067529000000 +0.000015591000000,0.006839276000000,0.000028628500000,0.000013159666667,0.000039875000000,0.000016184000000,0.000085306000000,0.000018357000000,0.000039479000000,0.000013423000000,0.000054097000000,0.000081356000000,0.000082541000000,0.000250837000000,0.000097158000000,0.000144565000000,0.006913943000000,0.000121652000000,0.000122047000000,0.000062392000000,0.000053701000000,0.000019345000000,0.000067528000000 +0.000015789000000,0.007358782000000,0.000029023500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000083331000000,0.000082936000000,0.000165503000000,0.000095973000000,0.000095578000000,0.006754733000000,0.000123627000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006677696000000,0.000028826000000,0.000013160000000,0.000040270000000,0.000015986500000,0.000049355000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053702000000,0.000079775000000,0.000079380000000,0.000134689000000,0.000097158000000,0.000095578000000,0.006777252000000,0.000121257000000,0.000121257000000,0.000063183000000,0.000053701000000,0.000019542000000,0.000103479000000 +0.000015591500000,0.006947128000000,0.000038110000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049751000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000115331000000,0.000082936000000,0.000164318000000,0.000096763000000,0.000095973000000,0.007172708000000,0.000193948000000,0.000121652000000,0.000069109000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006800560000000,0.000048184000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039084000000,0.000014608333333,0.000053306000000,0.000095973000000,0.000079381000000,0.000132319000000,0.000098343000000,0.000095973000000,0.007158091000000,0.000122047000000,0.000122442000000,0.000067133000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.008826435000000,0.000034752000000,0.000013159666667,0.000040664000000,0.000016382000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053702000000,0.000081751000000,0.000081751000000,0.000161949000000,0.000145750000000,0.000097948000000,0.006913943000000,0.000122442000000,0.000157602000000,0.000062788000000,0.000087677000000,0.000020135000000,0.000067134000000 +0.000015591500000,0.007265152000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049751000000,0.000044233500000,0.000039479000000,0.000013554666667,0.000058837000000,0.000081356000000,0.000080566000000,0.000149307000000,0.000112960000000,0.000134294000000,0.006972017000000,0.000124812000000,0.000123232000000,0.000061998000000,0.000069109000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007301498000000,0.000028035500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000050936000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000080565000000,0.000115726000000,0.000240171000000,0.000098343000000,0.000097553000000,0.007251325000000,0.000122442000000,0.000121651000000,0.000062392000000,0.000054096000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.007277399000000,0.000027838500000,0.000028172333333,0.000039874000000,0.000015789000000,0.000049356000000,0.000018159500000,0.000039479000000,0.000014476666667,0.000053702000000,0.000081355000000,0.000079775000000,0.000321553000000,0.000097158000000,0.000095973000000,0.006868511000000,0.000122047000000,0.000123232000000,0.000061998000000,0.000053306000000,0.000019542000000,0.000067528000000 +0.000015394000000,0.006859029000000,0.000028036000000,0.000027645333333,0.000040269000000,0.000015789000000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000056071000000,0.000084121000000,0.000082936000000,0.000133109000000,0.000097158000000,0.000097158000000,0.006993745000000,0.000122837000000,0.000121257000000,0.000063578000000,0.000053701000000,0.000019344500000,0.000067923000000 +0.000016184000000,0.007268313000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000125602000000,0.000081356000000,0.000205010000000,0.000097158000000,0.000095973000000,0.007233942000000,0.000171035000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015986500000,0.008162732000000,0.000027838500000,0.000013160000000,0.000039875000000,0.000016381500000,0.000048171000000,0.000018159500000,0.000039875000000,0.000013423000000,0.000054492000000,0.000081355000000,0.000079776000000,0.000134294000000,0.000097158000000,0.000097553000000,0.007026930000000,0.000122442000000,0.000122047000000,0.000065553000000,0.000053306000000,0.000018949500000,0.000067529000000 +0.000015591000000,0.007615177000000,0.000037319500000,0.000013028000000,0.000040270000000,0.000015591000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053701000000,0.000079380000000,0.000079381000000,0.000167084000000,0.000096763000000,0.000097948000000,0.006885499000000,0.000122838000000,0.000157603000000,0.000068714000000,0.000054096000000,0.000019147000000,0.000067529000000 +0.000015394000000,0.007426337000000,0.000051542000000,0.000013028000000,0.000040270000000,0.000015789000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000055282000000,0.000079380000000,0.000082541000000,0.000167479000000,0.000096763000000,0.000097158000000,0.006981498000000,0.000120467000000,0.000121257000000,0.000062393000000,0.000053701000000,0.000028628500000,0.000067924000000 +0.000015591500000,0.007183769000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000018356500000,0.000040269000000,0.000013554666667,0.000113751000000,0.000079380000000,0.000079776000000,0.000130738000000,0.000173010000000,0.000096763000000,0.006855869000000,0.000122443000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000027246000000,0.000067924000000 +0.000015986500000,0.007371424000000,0.000027838500000,0.000014213333333,0.000040269000000,0.000015789000000,0.000049356000000,0.000018752000000,0.000039084000000,0.000025406666667,0.000053306000000,0.000081355000000,0.000081751000000,0.000165504000000,0.000114146000000,0.000188812000000,0.006876412000000,0.000120862000000,0.000122442000000,0.000062392000000,0.000053701000000,0.000018752000000,0.000103874000000 +0.000025863000000,0.006677301000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000054492000000,0.000081355000000,0.000080566000000,0.000168270000000,0.000096763000000,0.000143775000000,0.006950289000000,0.000123233000000,0.000122047000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000037122000000,0.007010733000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000050936000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000054096000000,0.000082146000000,0.000086492000000,0.000240566000000,0.000096763000000,0.000113355000000,0.006905647000000,0.000157998000000,0.000123232000000,0.000065553000000,0.000055282000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.007049844000000,0.000028628500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000086492000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000079776000000,0.000118097000000,0.000133503000000,0.000097553000000,0.000095578000000,0.006787523000000,0.000120862000000,0.000121652000000,0.000069108000000,0.000054096000000,0.000019739500000,0.000067529000000 +0.000015591500000,0.006932510000000,0.000027838000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000014081666667,0.000054887000000,0.000079380000000,0.000083726000000,0.000163924000000,0.000097158000000,0.000096368000000,0.006768560000000,0.000122838000000,0.000161158000000,0.000065158000000,0.000054096000000,0.000018751500000,0.000067528000000 +0.000016184000000,0.006931720000000,0.000028233500000,0.000013028000000,0.000058837000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000080170000000,0.000080960000000,0.000244121000000,0.000100714000000,0.000096763000000,0.006919869000000,0.000122442000000,0.000122442000000,0.000127182000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.006827425000000,0.000028233500000,0.000013160000000,0.000056467000000,0.000015789000000,0.000082145000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000052911000000,0.000080565000000,0.000080566000000,0.000167084000000,0.000097158000000,0.000095578000000,0.006902881000000,0.000122047000000,0.000121652000000,0.000067529000000,0.000092418000000,0.000019542000000,0.000069108000000 +0.000016184000000,0.006790683000000,0.000028233500000,0.000013159666667,0.000054492000000,0.000026061000000,0.000054097000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000082541000000,0.000079380000000,0.000180516000000,0.000134689000000,0.000115331000000,0.007030091000000,0.000123232000000,0.000122047000000,0.000062393000000,0.000081355000000,0.000018949500000,0.000067923000000 +0.000015986500000,0.006910388000000,0.000028233500000,0.000013159666667,0.000040269000000,0.000024480500000,0.000065553000000,0.000028036000000,0.000039084000000,0.000013554666667,0.000093208000000,0.000079380000000,0.000080170000000,0.000131133000000,0.000127973000000,0.000113356000000,0.006856264000000,0.000122837000000,0.000122837000000,0.000062788000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.007089351000000,0.000028431000000,0.000013555000000,0.000039875000000,0.000016776500000,0.000048566000000,0.000026258000000,0.000039479000000,0.000013028000000,0.000056072000000,0.000082146000000,0.000081356000000,0.000167479000000,0.000095973000000,0.000097158000000,0.007196807000000,0.000195924000000,0.000121257000000,0.000062393000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006879177000000,0.000028035500000,0.000013159666667,0.000039875000000,0.000016579000000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013291333333,0.000067528000000,0.000079776000000,0.000082936000000,0.000131134000000,0.000095973000000,0.000096763000000,0.006849548000000,0.000156022000000,0.000122047000000,0.000062393000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015393500000,0.006906042000000,0.000045221000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000050145000000,0.000024678000000,0.000039085000000,0.000013950000000,0.000052912000000,0.000082541000000,0.000099134000000,0.000168269000000,0.000095973000000,0.000096763000000,0.006917103000000,0.000120862000000,0.000154837000000,0.000061998000000,0.000053701000000,0.000018949500000,0.000103874000000 +0.000015591500000,0.007186140000000,0.000028431000000,0.000013028000000,0.000040270000000,0.000015591500000,0.000048565000000,0.000039888000000,0.000039084000000,0.000013423333333,0.000090442000000,0.000086492000000,0.000116122000000,0.000205800000000,0.000097158000000,0.000097553000000,0.006835326000000,0.000121652000000,0.000120862000000,0.000061998000000,0.000053306000000,0.000019147000000,0.000067923000000 +0.000016184000000,0.006745647000000,0.000030209000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000050936000000,0.000018357000000,0.000039084000000,0.000013028000000,0.000055677000000,0.000080961000000,0.000185257000000,0.000173405000000,0.000097158000000,0.000095973000000,0.006780807000000,0.000121256000000,0.000120466000000,0.000061998000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000016184000000,0.006657153000000,0.000028431000000,0.000013818000000,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053701000000,0.000080961000000,0.000103084000000,0.000165109000000,0.000096368000000,0.000096763000000,0.006792659000000,0.000122837000000,0.000123627000000,0.000061997000000,0.000053701000000,0.000019542000000,0.000067133000000 +0.000015986500000,0.006835720000000,0.000028233500000,0.000019612333333,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000040664000000,0.000013028000000,0.000053306000000,0.000085702000000,0.000096763000000,0.000132713000000,0.000097553000000,0.000096763000000,0.008207374000000,0.000122047000000,0.000122047000000,0.000062393000000,0.000053306000000,0.000018751500000,0.000067924000000 +0.000015789000000,0.007009548000000,0.000028628500000,0.000020534333333,0.000040269000000,0.000016381500000,0.000050146000000,0.000017961500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000081356000000,0.000169849000000,0.000132713000000,0.000167874000000,0.006772906000000,0.000157208000000,0.000122442000000,0.000065159000000,0.000054492000000,0.000018752000000,0.000067134000000 +0.000015789000000,0.006919869000000,0.000027640500000,0.000013818000000,0.000040269000000,0.000015591000000,0.000048960000000,0.000018357000000,0.000039084000000,0.000013423333333,0.000054492000000,0.000080961000000,0.000079776000000,0.000165504000000,0.000097158000000,0.000096763000000,0.006973992000000,0.000122442000000,0.000122442000000,0.000062393000000,0.000053702000000,0.000018949000000,0.000066739000000 +0.000015986500000,0.007589893000000,0.000028035500000,0.000017900333333,0.000039874000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000057257000000,0.000085306000000,0.000083726000000,0.000168269000000,0.000096368000000,0.000097158000000,0.007015473000000,0.000122442000000,0.000122837000000,0.000064763000000,0.000053307000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.006857449000000,0.000028036000000,0.000013028333333,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000059232000000,0.000103479000000,0.000082145000000,0.000249652000000,0.000096368000000,0.000096763000000,0.006814387000000,0.000122047000000,0.000156812000000,0.000062393000000,0.000054097000000,0.000018751500000,0.000130343000000 +0.000015591500000,0.006733400000000,0.000028036000000,0.000013028000000,0.000040664000000,0.000015789000000,0.000065553000000,0.000018159000000,0.000039480000000,0.000013159666667,0.000053307000000,0.000115726000000,0.000083331000000,0.000135874000000,0.000097158000000,0.000096763000000,0.006791079000000,0.000121256000000,0.000121257000000,0.000062788000000,0.000053307000000,0.000035542000000,0.000066738000000 +0.000015591500000,0.007164017000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049356000000,0.000017961500000,0.000059627000000,0.000013159666667,0.000052911000000,0.000078985000000,0.000116516000000,0.000171430000000,0.000095578000000,0.000096368000000,0.006930931000000,0.000122442000000,0.000122837000000,0.000062787000000,0.000053702000000,0.000019937000000,0.000066738000000 +0.000015393500000,0.006722338000000,0.000028036000000,0.000014740000000,0.000040269000000,0.000015591500000,0.000048171000000,0.000018159000000,0.000055282000000,0.000025143000000,0.000052911000000,0.000081355000000,0.000082146000000,0.000136665000000,0.000095973000000,0.000095973000000,0.007402634000000,0.000124813000000,0.000121652000000,0.000061998000000,0.000089652000000,0.000025665500000,0.000067529000000 +0.000016184000000,0.006847968000000,0.000028036000000,0.000013159666667,0.000039875000000,0.000016382000000,0.000048566000000,0.000018159000000,0.000041849000000,0.000013159666667,0.000054492000000,0.000079775000000,0.000081751000000,0.000165899000000,0.000098343000000,0.000095973000000,0.007065647000000,0.000158393000000,0.000122047000000,0.000062392000000,0.000053701000000,0.000019739500000,0.000103479000000 +0.000015986500000,0.007197992000000,0.000027838500000,0.000013160000000,0.000060023000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000053306000000,0.000013818000000,0.000053701000000,0.000079380000000,0.000081356000000,0.000201059000000,0.000097159000000,0.000096764000000,0.007132807000000,0.000122442000000,0.000121257000000,0.000062393000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.007156905000000,0.000027838500000,0.000013159666667,0.000042640000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000057257000000,0.000080170000000,0.000081355000000,0.000132713000000,0.000225948000000,0.000179726000000,0.006806881000000,0.000123232000000,0.000122047000000,0.000061998000000,0.000053306000000,0.000018752000000,0.000066738000000 +0.000015196500000,0.006939227000000,0.000045221000000,0.000013028000000,0.000054491000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000054097000000,0.000082146000000,0.000081355000000,0.000238195000000,0.000236614000000,0.000098343000000,0.006985449000000,0.000122442000000,0.000157997000000,0.000062392000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000034949500000,0.007131622000000,0.000028431000000,0.000013686666667,0.000040269000000,0.000015788500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013028000000,0.000091232000000,0.000085306000000,0.000079380000000,0.000132714000000,0.000157997000000,0.000097158000000,0.007267128000000,0.000122837000000,0.000121652000000,0.000077405000000,0.000053701000000,0.000019542500000,0.000067529000000 +0.000023887500000,0.006748412000000,0.000027641000000,0.000013555000000,0.000040269000000,0.000016184000000,0.000050541000000,0.000018356500000,0.000058047000000,0.000013160000000,0.000053307000000,0.000081356000000,0.000079775000000,0.000164714000000,0.000189997000000,0.000096763000000,0.007263572000000,0.000122442000000,0.000122442000000,0.000061998000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006787918000000,0.000027641000000,0.000013159666667,0.000040664000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000055677000000,0.000013291333333,0.000053306000000,0.000080960000000,0.000081750000000,0.000153257000000,0.000573997000000,0.000095972000000,0.006885894000000,0.000121256000000,0.000122047000000,0.000082146000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000015986500000,0.006810437000000,0.000030209000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000073455000000,0.000013554666667,0.000053702000000,0.000082541000000,0.000082146000000,0.000175776000000,0.000201455000000,0.000097553000000,0.007175078000000,0.000158393000000,0.000123232000000,0.000076220000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000016184000000,0.007207473000000,0.000027641000000,0.000013291666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000054886000000,0.000013028000000,0.000053306000000,0.000079380000000,0.000083726000000,0.000178936000000,0.000201454000000,0.000095973000000,0.007024165000000,0.000121257000000,0.000121652000000,0.000062393000000,0.000054492000000,0.000018949500000,0.000067923000000 +0.000015986500000,0.006740510000000,0.000028431000000,0.000013554666667,0.000039874000000,0.000016184000000,0.000049355000000,0.000018357000000,0.000055282000000,0.000013291333333,0.000053306000000,0.000081356000000,0.000118491000000,0.000140220000000,0.000210541000000,0.000097158000000,0.006700610000000,0.000121651000000,0.000122442000000,0.000062392000000,0.000053702000000,0.000018751500000,0.000067133000000 +0.000015394000000,0.006729054000000,0.000028036000000,0.000013028000000,0.000039874000000,0.000016184000000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000081356000000,0.000081355000000,0.000176170000000,0.000253207000000,0.000158788000000,0.007073153000000,0.000122047000000,0.000158788000000,0.000082146000000,0.000053702000000,0.000018752000000,0.000066739000000 +0.000015394000000,0.006826635000000,0.000028233500000,0.000013028000000,0.000040664000000,0.000024283000000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000053306000000,0.000082146000000,0.000083331000000,0.000139825000000,0.000146146000000,0.000098739000000,0.006881943000000,0.000122443000000,0.000121652000000,0.000077405000000,0.000053306000000,0.000018751500000,0.000067924000000 +0.000016184000000,0.006986239000000,0.000028431000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053307000000,0.000078986000000,0.000081751000000,0.000178541000000,0.000149307000000,0.000099529000000,0.006957795000000,0.000121652000000,0.000121257000000,0.000061997000000,0.000054096000000,0.000018752000000,0.000144566000000 +0.000015394000000,0.007124511000000,0.000028233000000,0.000014345000000,0.000039875000000,0.000016579000000,0.000048171000000,0.000045616000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000080171000000,0.000080961000000,0.000173010000000,0.000120862000000,0.000095973000000,0.006730239000000,0.000122047000000,0.000123232000000,0.000062393000000,0.000053701000000,0.000018949500000,0.000084911000000 +0.000015986500000,0.007058930000000,0.000028431000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000067133000000,0.000018554500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000081356000000,0.000082541000000,0.000138639000000,0.000101504000000,0.000097158000000,0.006758288000000,0.000162343000000,0.000121256000000,0.000061997000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000015789000000,0.007297153000000,0.000028036000000,0.000013686333333,0.000040270000000,0.000015591500000,0.000065553000000,0.000018159000000,0.000039479000000,0.000013818000000,0.000055676000000,0.000079381000000,0.000082146000000,0.000171825000000,0.000103480000000,0.000097158000000,0.006882338000000,0.000122047000000,0.000123627000000,0.000062393000000,0.000073454000000,0.000018949000000,0.000067528000000 +0.000015394000000,0.006673746000000,0.000028036000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039875000000,0.000013554666667,0.000054492000000,0.000083726000000,0.000083331000000,0.000140219000000,0.000138245000000,0.000095973000000,0.006830190000000,0.000120861000000,0.000121652000000,0.000062788000000,0.000185652000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006810437000000,0.000045221000000,0.000013160000000,0.000039874000000,0.000016184000000,0.000049751000000,0.000018159500000,0.000041060000000,0.000013554666667,0.000054491000000,0.000086096000000,0.000080961000000,0.000172615000000,0.000297455000000,0.000096763000000,0.006699424000000,0.000122837000000,0.000121652000000,0.000063183000000,0.000125208000000,0.000018751500000,0.000067134000000 +0.000015393500000,0.006817547000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000016579500000,0.000048171000000,0.000018159500000,0.000039480000000,0.000013028000000,0.000053306000000,0.000081751000000,0.000081750000000,0.000138639000000,0.000270590000000,0.000096763000000,0.008969053000000,0.000122046000000,0.000172220000000,0.000062393000000,0.000105849000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006708906000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013160000000,0.000073849000000,0.000082146000000,0.000118886000000,0.000216072000000,0.000146541000000,0.000188023000000,0.007182980000000,0.000122442000000,0.000121652000000,0.000079380000000,0.000072269000000,0.000029023500000,0.000067529000000 +0.000016184000000,0.006657548000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000050541000000,0.000018554000000,0.000039479000000,0.000025406666667,0.000147331000000,0.000083331000000,0.000080170000000,0.000177356000000,0.000131528000000,0.000096763000000,0.006997696000000,0.000122442000000,0.000121257000000,0.000076220000000,0.000069504000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006953844000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000120072000000,0.000080565000000,0.000079380000000,0.000140220000000,0.000103084000000,0.000096368000000,0.006913153000000,0.000122837000000,0.000121256000000,0.000062393000000,0.000053702000000,0.000019147000000,0.000068714000000 +0.000015789000000,0.007028116000000,0.000028036000000,0.000014213333333,0.000039874000000,0.000015789000000,0.000048171000000,0.000018357000000,0.000039084000000,0.000013028000000,0.000136269000000,0.000090837000000,0.000080961000000,0.000256368000000,0.000106245000000,0.000098344000000,0.008130732000000,0.000123627000000,0.000121652000000,0.000062788000000,0.000053702000000,0.000019739500000,0.000083331000000 +0.000015591500000,0.006796215000000,0.000029221000000,0.000013159666667,0.000076615000000,0.000016184000000,0.000048171000000,0.000018357000000,0.000039479000000,0.000013555000000,0.000073454000000,0.000080171000000,0.000082540000000,0.000141010000000,0.000101899000000,0.000097158000000,0.007077103000000,0.000122047000000,0.000157603000000,0.000069504000000,0.000053702000000,0.000019147000000,0.000067134000000 +0.000015986500000,0.006730239000000,0.000037912500000,0.000013160000000,0.000040270000000,0.000015986500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000056862000000,0.000082146000000,0.000083726000000,0.000210936000000,0.000102294000000,0.000096763000000,0.006879573000000,0.000122047000000,0.000227134000000,0.000062787000000,0.000056467000000,0.000018949500000,0.000067924000000 +0.000015986500000,0.006828610000000,0.000028431000000,0.000013554666667,0.000039875000000,0.000015986500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000067924000000,0.000081355000000,0.000080960000000,0.000139035000000,0.000144565000000,0.000096368000000,0.007438584000000,0.000122442000000,0.000121652000000,0.000063578000000,0.000053701000000,0.000018752000000,0.000066738000000 +0.000015591000000,0.006842437000000,0.000034159500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048961000000,0.000017962000000,0.000039479000000,0.000013423333333,0.000054097000000,0.000082146000000,0.000081751000000,0.000172220000000,0.000101504000000,0.000096368000000,0.007016659000000,0.000123233000000,0.000123232000000,0.000061998000000,0.000053701000000,0.000018949500000,0.000085306000000 +0.000015394000000,0.007187721000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016776500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000052911000000,0.000080171000000,0.000081355000000,0.000178541000000,0.000103084000000,0.000115726000000,0.007160461000000,0.000122047000000,0.000122047000000,0.000062393000000,0.000089652000000,0.000018752000000,0.000067133000000 +0.000025468000000,0.006774486000000,0.000026258000000,0.000013555000000,0.000041059000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039085000000,0.000013028000000,0.000053702000000,0.000104664000000,0.000079380000000,0.000138639000000,0.000102689000000,0.000147331000000,0.006937251000000,0.000122047000000,0.000122047000000,0.000062392000000,0.000054887000000,0.000018949500000,0.000067133000000 +0.000031196000000,0.006957400000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018554000000,0.000039479000000,0.000013028000000,0.000054491000000,0.000258343000000,0.000080565000000,0.000248862000000,0.000102689000000,0.000096368000000,0.006948314000000,0.000164319000000,0.000121257000000,0.000063183000000,0.000053701000000,0.000020529500000,0.000067134000000 +0.000026060500000,0.006963721000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016776500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000135874000000,0.000133899000000,0.000151281000000,0.000141010000000,0.000103084000000,0.000096763000000,0.007039967000000,0.000122442000000,0.000122837000000,0.000061997000000,0.000053306000000,0.000019344500000,0.000067529000000 +0.000033171500000,0.007197202000000,0.000044825500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048171000000,0.000018159500000,0.000039874000000,0.000013028000000,0.000052911000000,0.000101504000000,0.000080565000000,0.000173010000000,0.000103085000000,0.000096763000000,0.007051424000000,0.000121652000000,0.000159973000000,0.000078590000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000023295000000,0.006830980000000,0.000033171500000,0.000014345000000,0.000039875000000,0.000016381500000,0.000066343000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000086097000000,0.000079380000000,0.000174590000000,0.000102294000000,0.000096368000000,0.007121746000000,0.000122443000000,0.000121257000000,0.000075825000000,0.000053701000000,0.000018949500000,0.000105454000000 +0.000016579000000,0.006695869000000,0.000026456000000,0.000013159666667,0.000039875000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000055677000000,0.000079380000000,0.000081355000000,0.000139035000000,0.000116516000000,0.000097948000000,0.006843227000000,0.000122442000000,0.000122442000000,0.000061997000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000030998500000,0.007042733000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048171000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000057257000000,0.000079380000000,0.000084121000000,0.000176566000000,0.000102294000000,0.000097553000000,0.006707721000000,0.000121651000000,0.000122442000000,0.000061998000000,0.000053306000000,0.000018949500000,0.000066738000000 +0.000016381500000,0.006840067000000,0.000026455500000,0.000013686333333,0.000039874000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000052911000000,0.000082936000000,0.000081356000000,0.000138639000000,0.000103874000000,0.000096763000000,0.006941202000000,0.000122047000000,0.000122837000000,0.000063578000000,0.000053701000000,0.000019146500000,0.000068318000000 +0.000016184500000,0.007072758000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000046801000000,0.000049355000000,0.000041468000000,0.000039084000000,0.000013423000000,0.000054491000000,0.000082541000000,0.000081356000000,0.000178146000000,0.000101899000000,0.000168269000000,0.007095672000000,0.000193948000000,0.000120467000000,0.000062393000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006745646000000,0.000026061000000,0.000013159666667,0.000040269000000,0.000044233500000,0.000048961000000,0.000018159500000,0.000040664000000,0.000013554666667,0.000052911000000,0.000081751000000,0.000079380000000,0.000141405000000,0.000103084000000,0.000097948000000,0.006940017000000,0.000122442000000,0.000122442000000,0.000074245000000,0.000054096000000,0.000018752000000,0.000067134000000 +0.000015789000000,0.006716807000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000051344500000,0.000048961000000,0.000018159000000,0.000040664000000,0.000013028000000,0.000053306000000,0.000081750000000,0.000081356000000,0.000174986000000,0.000101899000000,0.000095973000000,0.006996510000000,0.000122047000000,0.000156812000000,0.000065553000000,0.000053306000000,0.000019344500000,0.000067134000000 +0.000015591500000,0.006878387000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000050949500000,0.000048960000000,0.000018159000000,0.000039874000000,0.000013423000000,0.000053306000000,0.000079775000000,0.000081751000000,0.000175776000000,0.000101504000000,0.000095973000000,0.006775276000000,0.000122442000000,0.000121651000000,0.000065553000000,0.000053702000000,0.000018949500000,0.000066343000000 +0.000015591500000,0.007024560000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000032974000000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000081750000000,0.000129948000000,0.000137849000000,0.000102294000000,0.000097158000000,0.006846387000000,0.000121652000000,0.000122837000000,0.000062392000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.006891029000000,0.000026850500000,0.000013554666667,0.000039874000000,0.000017962000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000038443666667,0.000053306000000,0.000079775000000,0.000078986000000,0.000186047000000,0.000103479000000,0.000096763000000,0.006881943000000,0.000123627000000,0.000122047000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.007034832000000,0.000026653500000,0.000013028000000,0.000041059000000,0.000023888000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013818333333,0.000052517000000,0.000082146000000,0.000079381000000,0.000140614000000,0.000129949000000,0.000096763000000,0.006734190000000,0.000122442000000,0.000124417000000,0.000062392000000,0.000090047000000,0.000037122500000,0.000067133000000 +0.000015986500000,0.006793054000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016579500000,0.000049751000000,0.000018159000000,0.000039479000000,0.000018032333333,0.000053306000000,0.000082146000000,0.000083331000000,0.000198689000000,0.000102294000000,0.000097948000000,0.006886684000000,0.000158393000000,0.000123627000000,0.000061998000000,0.000053307000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.006932511000000,0.000026456000000,0.000013159666667,0.000076220000000,0.000015789000000,0.000048565000000,0.000018159000000,0.000040269000000,0.000013555000000,0.000053701000000,0.000079381000000,0.000081356000000,0.000139430000000,0.000102294000000,0.000096368000000,0.006947523000000,0.000122837000000,0.000121257000000,0.000062393000000,0.000054097000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.006970437000000,0.000035937000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000042244000000,0.000013160000000,0.000121651000000,0.000082936000000,0.000079380000000,0.000174986000000,0.000152861000000,0.000133109000000,0.007689054000000,0.000122837000000,0.000121257000000,0.000062788000000,0.000053702000000,0.000018949500000,0.000103874000000 +0.000015591500000,0.006872462000000,0.000034554000000,0.000013028333333,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000068318000000,0.000081355000000,0.000081355000000,0.000176566000000,0.000103084000000,0.000097158000000,0.006850338000000,0.000121652000000,0.000193158000000,0.000064368000000,0.000053702000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006681251000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000055676000000,0.000084516000000,0.000079775000000,0.000141010000000,0.000103084000000,0.000095973000000,0.006787524000000,0.000122442000000,0.000122837000000,0.000061998000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.007439375000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000016381500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000056072000000,0.000081355000000,0.000084516000000,0.000172220000000,0.000103479000000,0.000097158000000,0.006886683000000,0.000122047000000,0.000123628000000,0.000062787000000,0.000053702000000,0.000018752000000,0.000068319000000 +0.000015591500000,0.007267522000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000088072000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000079380000000,0.000080170000000,0.000139430000000,0.000102689000000,0.000097553000000,0.006766190000000,0.000122442000000,0.000123232000000,0.000064368000000,0.000053702000000,0.000018949500000,0.000067923000000 +0.000015986500000,0.007309004000000,0.000026850500000,0.000013291333333,0.000040269000000,0.000015789000000,0.000084121000000,0.000018554500000,0.000039480000000,0.000013159666667,0.000056071000000,0.000082145000000,0.000120466000000,0.000180121000000,0.000130738000000,0.000096368000000,0.007219325000000,0.000158392000000,0.000122047000000,0.000066738000000,0.000054097000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.007120165000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053307000000,0.000081355000000,0.000081356000000,0.000171430000000,0.000102294000000,0.000095183000000,0.006834930000000,0.000121652000000,0.000122442000000,0.000077405000000,0.000053702000000,0.000018949500000,0.000067529000000 +0.000024480000000,0.006863375000000,0.000026455500000,0.000013028333333,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000042245000000,0.000013423333333,0.000053306000000,0.000081356000000,0.000082146000000,0.000141010000000,0.000102689000000,0.000096368000000,0.007546041000000,0.000121652000000,0.000122837000000,0.000075825000000,0.000053702000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.006968462000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000026060500000,0.000049751000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000058047000000,0.000078985000000,0.000082145000000,0.000178936000000,0.000103084000000,0.000096368000000,0.006829005000000,0.000120862000000,0.000172615000000,0.000063973000000,0.000054492000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.006987029000000,0.000026456000000,0.000013291333333,0.000040664000000,0.000024282500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000013555000000,0.000053307000000,0.000119677000000,0.000081751000000,0.000140615000000,0.000101504000000,0.000167479000000,0.007104362000000,0.000122047000000,0.000122442000000,0.000062392000000,0.000053306000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.007115029000000,0.000026455500000,0.000014213000000,0.000040269000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000095578000000,0.000079776000000,0.000178145000000,0.000103084000000,0.000097158000000,0.006717597000000,0.000122047000000,0.000122442000000,0.000061998000000,0.000053702000000,0.000019739500000,0.000066738000000 +0.000016184000000,0.007134387000000,0.000075246000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000049750000000,0.000018357000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000083726000000,0.000082541000000,0.000140615000000,0.000102689000000,0.000096763000000,0.006746832000000,0.000122442000000,0.000121652000000,0.000063577000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006972807000000,0.000026456000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000041059000000,0.000013423000000,0.000053306000000,0.000089257000000,0.000082146000000,0.000174985000000,0.000102689000000,0.000096763000000,0.007017054000000,0.000288367000000,0.000120467000000,0.000066739000000,0.000053701000000,0.000018752000000,0.000121652000000 +0.000015591500000,0.006863375000000,0.000026455500000,0.000020139000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054887000000,0.000080170000000,0.000079380000000,0.000236615000000,0.000101504000000,0.000096763000000,0.008005498000000,0.000256763000000,0.000122047000000,0.000062392000000,0.000053701000000,0.000019147000000,0.000120466000000 +0.000015591500000,0.006973992000000,0.000036332500000,0.000018690666667,0.000039875000000,0.000016579000000,0.000048565000000,0.000028036000000,0.000039479000000,0.000013159666667,0.000073849000000,0.000079380000000,0.000082145000000,0.000142985000000,0.000143380000000,0.000095973000000,0.007130041000000,0.000158788000000,0.000122047000000,0.000063973000000,0.000089651000000,0.000020925000000,0.000086096000000 +0.000015394000000,0.006770931000000,0.000042850500000,0.000013028000000,0.000040270000000,0.000016579000000,0.000048565000000,0.000051739500000,0.000039874000000,0.000013291333333,0.000107430000000,0.000082146000000,0.000125602000000,0.000176170000000,0.000103874000000,0.000096763000000,0.007489152000000,0.000215676000000,0.000158393000000,0.000062392000000,0.000053702000000,0.000018752000000,0.000082541000000 +0.000015591500000,0.007109499000000,0.000026258000000,0.000013159666667,0.000041060000000,0.000016381500000,0.000050540000000,0.000018159500000,0.000039084000000,0.000025406333333,0.000054097000000,0.000080960000000,0.000081751000000,0.000182886000000,0.000102294000000,0.000149306000000,0.007522733000000,0.000562541000000,0.000122837000000,0.000064368000000,0.000055282000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007582782000000,0.000026258000000,0.000013028000000,0.000039875000000,0.000016381500000,0.000049751000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000079380000000,0.000081356000000,0.000174195000000,0.000101899000000,0.000240566000000,0.007213795000000,0.000261108000000,0.000121652000000,0.000062393000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006738141000000,0.000026258500000,0.000014213333333,0.000040665000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000079775000000,0.000082146000000,0.000157602000000,0.000103479000000,0.000298244000000,0.007585152000000,0.000208566000000,0.000122837000000,0.000061997000000,0.000053702000000,0.000036332000000,0.000067528000000 +0.000015393500000,0.006751573000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039085000000,0.000013423000000,0.000053701000000,0.000081356000000,0.000081355000000,0.000165504000000,0.000133504000000,0.000137454000000,0.008269794000000,0.000144170000000,0.000121652000000,0.000062393000000,0.000054097000000,0.000020925000000,0.000067923000000 +0.000015394000000,0.007020609000000,0.000026258500000,0.000013159666667,0.000082541000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000079775000000,0.000083331000000,0.000366590000000,0.000103084000000,0.000110195000000,0.008096361000000,0.000164713000000,0.000120861000000,0.000062788000000,0.000054097000000,0.000019937500000,0.000067133000000 +0.000015591500000,0.006924610000000,0.000027245500000,0.000013686333333,0.000039874000000,0.000016381500000,0.000103479000000,0.000018356500000,0.000039479000000,0.000013554666667,0.000052912000000,0.000081356000000,0.000084121000000,0.000152861000000,0.000117306000000,0.000133109000000,0.007788213000000,0.000130343000000,0.000120862000000,0.000061998000000,0.000053701000000,0.000025863000000,0.000067923000000 +0.000015591000000,0.007298337000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000061998000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000080565000000,0.000079775000000,0.000166689000000,0.000131529000000,0.000097158000000,0.007022189000000,0.000131529000000,0.000157603000000,0.000063973000000,0.000054096000000,0.000018949500000,0.000067133000000 +0.000015789000000,0.007001251000000,0.000026653000000,0.000013160000000,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000040269000000,0.000013291333333,0.000053306000000,0.000084121000000,0.000079380000000,0.000133503000000,0.000101899000000,0.000096763000000,0.006840462000000,0.000165109000000,0.000121257000000,0.000061998000000,0.000053701000000,0.000018751500000,0.000121652000000 +0.000015394000000,0.007136757000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000015789000000,0.000050936000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000082936000000,0.000080960000000,0.000204615000000,0.000178541000000,0.000096368000000,0.006719178000000,0.000223183000000,0.000121256000000,0.000062788000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.007258436000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048171000000,0.000018159500000,0.000039479000000,0.000014344666667,0.000053306000000,0.000082541000000,0.000079775000000,0.000165108000000,0.000162738000000,0.000097158000000,0.006927375000000,0.000175776000000,0.000122442000000,0.000089257000000,0.000053306000000,0.000018949000000,0.000067134000000 +0.000015591500000,0.006695474000000,0.000026455500000,0.000013160000000,0.000041059000000,0.000016579500000,0.000049356000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000081356000000,0.000464565000000,0.000135874000000,0.000101899000000,0.000096368000000,0.006935276000000,0.000197109000000,0.000122047000000,0.000063973000000,0.000054491000000,0.000018949500000,0.000067924000000 +0.000015393500000,0.006954239000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000050935000000,0.000018159500000,0.000039874000000,0.000013950000000,0.000053306000000,0.000079381000000,0.000101108000000,0.000172615000000,0.000103085000000,0.000096368000000,0.006794634000000,0.000225158000000,0.000122047000000,0.000067133000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015591500000,0.006843227000000,0.000026653500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000082541000000,0.000117307000000,0.000131528000000,0.000187232000000,0.000097553000000,0.006822683000000,0.000121257000000,0.000123232000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006982684000000,0.000033764500000,0.000013160000000,0.000040270000000,0.000016184000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079381000000,0.000079775000000,0.000171824000000,0.000102689000000,0.000096368000000,0.006889449000000,0.000229503000000,0.000245701000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006846387000000,0.000028036000000,0.000013028000000,0.000041060000000,0.000016579000000,0.000049356000000,0.000018356500000,0.000039084000000,0.000013159666667,0.000125208000000,0.000080171000000,0.000081356000000,0.000167084000000,0.000103084000000,0.000116121000000,0.006710882000000,0.000190787000000,0.000121257000000,0.000061998000000,0.000089257000000,0.000018949500000,0.000067924000000 +0.000015986500000,0.007411325000000,0.000028431000000,0.000013028000000,0.000040270000000,0.000015986500000,0.000051331000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000056467000000,0.000081356000000,0.000101504000000,0.000169849000000,0.000102689000000,0.000096763000000,0.007233943000000,0.000121652000000,0.000120861000000,0.000062392000000,0.000053701000000,0.000020134500000,0.000067924000000 +0.000016184000000,0.006842832000000,0.000027838500000,0.000013160000000,0.000040270000000,0.000016579000000,0.000050146000000,0.000018159500000,0.000039479000000,0.000013028333333,0.000056071000000,0.000080566000000,0.000110985000000,0.000169454000000,0.000102294000000,0.000097158000000,0.006818338000000,0.000122838000000,0.000122442000000,0.000062788000000,0.000054097000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006892609000000,0.000028036000000,0.000013028000000,0.000060023000000,0.000016184000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053701000000,0.000079776000000,0.000078985000000,0.000130343000000,0.000116121000000,0.000096368000000,0.007265153000000,0.000122837000000,0.000121651000000,0.000062393000000,0.000053702000000,0.000018752000000,0.000067923000000 +0.000033369000000,0.006755523000000,0.000027838500000,0.000026065333333,0.000058047000000,0.000034949500000,0.000049356000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000052911000000,0.000082936000000,0.000080171000000,0.000171430000000,0.000103084000000,0.000095183000000,0.007052609000000,0.000121652000000,0.000122047000000,0.000063183000000,0.000093603000000,0.000019344500000,0.000142195000000 +0.000015986500000,0.007062881000000,0.000028628500000,0.000013159666667,0.000054492000000,0.000036332000000,0.000048961000000,0.000018554000000,0.000039084000000,0.000013423000000,0.000053307000000,0.000079775000000,0.000079776000000,0.000129948000000,0.000102294000000,0.000096763000000,0.007039967000000,0.000192368000000,0.000142196000000,0.000062393000000,0.000057257000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.006875227000000,0.000028035500000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048171000000,0.000036332000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082146000000,0.000081751000000,0.000263479000000,0.000137455000000,0.000096368000000,0.007283325000000,0.000138640000000,0.000121652000000,0.000062788000000,0.000069109000000,0.000019344500000,0.000068713000000 +0.000016184000000,0.008029991000000,0.000027640500000,0.000013160000000,0.000040270000000,0.000015986500000,0.000068713000000,0.000018159500000,0.000039875000000,0.000026065000000,0.000054887000000,0.000079380000000,0.000082541000000,0.000131529000000,0.000101899000000,0.000101109000000,0.006842832000000,0.000121652000000,0.000122837000000,0.000062393000000,0.000053701000000,0.000018949000000,0.000066738000000 +0.000015591500000,0.006905647000000,0.000028035500000,0.000013159666667,0.000040270000000,0.000016579500000,0.000064763000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081751000000,0.000084516000000,0.000244121000000,0.000102689000000,0.000095973000000,0.007270288000000,0.000121651000000,0.000121257000000,0.000061602000000,0.000053701000000,0.000018554500000,0.000068318000000 +0.000015394000000,0.007489152000000,0.000028628500000,0.000013423000000,0.000039874000000,0.000016381500000,0.000048960000000,0.000017962000000,0.000039084000000,0.000013554666667,0.000053307000000,0.000079381000000,0.000079381000000,0.000243726000000,0.000103480000000,0.000132318000000,0.007078684000000,0.000122047000000,0.000122442000000,0.000062788000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006851128000000,0.000028036000000,0.000013028000000,0.000078985000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013160000000,0.000054491000000,0.000082146000000,0.000079381000000,0.000131134000000,0.000103084000000,0.000097158000000,0.006813597000000,0.000122837000000,0.000122047000000,0.000061998000000,0.000053701000000,0.000029813500000,0.000066739000000 +0.000015393500000,0.006971226000000,0.000027641000000,0.000013159666667,0.000073454000000,0.000016776500000,0.000050936000000,0.000018159000000,0.000039084000000,0.000013423333333,0.000052912000000,0.000079776000000,0.000081356000000,0.000201059000000,0.000104269000000,0.000095973000000,0.006779622000000,0.000122837000000,0.000122837000000,0.000082541000000,0.000053306000000,0.000044826000000,0.000067924000000 +0.000015591500000,0.006854288000000,0.000027838500000,0.000013028000000,0.000054096000000,0.000035146500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000054096000000,0.000079776000000,0.000189603000000,0.000130344000000,0.000101503000000,0.000097158000000,0.006921844000000,0.000158393000000,0.000121652000000,0.000072664000000,0.000054096000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006903277000000,0.000028036000000,0.000013686333333,0.000039874000000,0.000016579000000,0.000048565000000,0.000034949000000,0.000039479000000,0.000013423000000,0.000055282000000,0.000082146000000,0.000100713000000,0.000167874000000,0.000102294000000,0.000098343000000,0.006919078000000,0.000122442000000,0.000171825000000,0.000094393000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000016184000000,0.007342980000000,0.000028036000000,0.000013160000000,0.000040269000000,0.000017369500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000086887000000,0.000082936000000,0.000098738000000,0.000163924000000,0.000101504000000,0.000096368000000,0.007057350000000,0.000120862000000,0.000122838000000,0.000074639000000,0.000054096000000,0.000019146500000,0.000067528000000 +0.000015394000000,0.006731425000000,0.000028036000000,0.000013554666667,0.000041850000000,0.000023690500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000070294000000,0.000081751000000,0.000082146000000,0.000130739000000,0.000175775000000,0.000095973000000,0.006796609000000,0.000120862000000,0.000122047000000,0.000065554000000,0.000090047000000,0.000019147000000,0.000067923000000 +0.000015986500000,0.007122141000000,0.000028233500000,0.000013028000000,0.000040665000000,0.000015591500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000052911000000,0.000082541000000,0.000079775000000,0.000174986000000,0.000103479000000,0.000095973000000,0.007266733000000,0.000121652000000,0.000121652000000,0.000075825000000,0.000053701000000,0.000019739500000,0.000139034000000 +0.000015986500000,0.006777252000000,0.000028036000000,0.000013028000000,0.000040270000000,0.000015789000000,0.000050146000000,0.000018356500000,0.000039084000000,0.000013554666667,0.000055282000000,0.000082146000000,0.000085701000000,0.000169059000000,0.000105849000000,0.000097553000000,0.006710486000000,0.000122046000000,0.000122442000000,0.000062788000000,0.000053701000000,0.000018751500000,0.000067923000000 +0.000016382000000,0.007045893000000,0.000027641000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039480000000,0.000013159666667,0.000057257000000,0.000081750000000,0.000083726000000,0.000176566000000,0.000102689000000,0.000115331000000,0.006856659000000,0.000122442000000,0.000122047000000,0.000062393000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000015986500000,0.007254881000000,0.000028233500000,0.000013554666667,0.000039874000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000056467000000,0.000081751000000,0.000080961000000,0.000133503000000,0.000101899000000,0.000096763000000,0.006895770000000,0.000244911000000,0.000122837000000,0.000062393000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.007263177000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000018159500000,0.000039874000000,0.000013555000000,0.000053701000000,0.000082541000000,0.000079776000000,0.000167084000000,0.000103084000000,0.000095973000000,0.006760264000000,0.000139825000000,0.000246886000000,0.000063578000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015986500000,0.006683622000000,0.000028233500000,0.000013160000000,0.000040664000000,0.000016382000000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000053306000000,0.000080961000000,0.000093998000000,0.000251232000000,0.000104269000000,0.000095973000000,0.006816758000000,0.000122047000000,0.000145355000000,0.000062393000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006811622000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049355000000,0.000018159000000,0.000039479000000,0.000013555000000,0.000053701000000,0.000078985000000,0.000080171000000,0.000133898000000,0.000122442000000,0.000096368000000,0.006811227000000,0.000122838000000,0.000123627000000,0.000062787000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006864165000000,0.000028036000000,0.000014213000000,0.000040269000000,0.000017172000000,0.000048961000000,0.000018159500000,0.000039480000000,0.000013555000000,0.000052911000000,0.000082146000000,0.000081356000000,0.000200269000000,0.000102689000000,0.000097158000000,0.007194042000000,0.000121257000000,0.000122047000000,0.000063973000000,0.000053701000000,0.000018751500000,0.000067529000000 +0.000016184000000,0.006736955000000,0.000027640500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000017962000000,0.000039084000000,0.000013423333333,0.000053306000000,0.000087677000000,0.000079775000000,0.000130343000000,0.000102294000000,0.000096368000000,0.006665844000000,0.000122047000000,0.000122442000000,0.000102294000000,0.000054491000000,0.000018752000000,0.000067924000000 +0.000016184500000,0.006776857000000,0.000028233000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000069109000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053307000000,0.000119282000000,0.000084911000000,0.000168664000000,0.000105850000000,0.000096368000000,0.006836116000000,0.000191578000000,0.000122047000000,0.000075430000000,0.000055677000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.007005202000000,0.000028035500000,0.000013028000000,0.000040269000000,0.000024283000000,0.000048566000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000096368000000,0.000081751000000,0.000135084000000,0.000103084000000,0.000095973000000,0.007280560000000,0.000136664000000,0.000193948000000,0.000062393000000,0.000055282000000,0.000018949500000,0.000067528000000 +0.000015591000000,0.007238684000000,0.000028233000000,0.000013686333333,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039479000000,0.000013028000000,0.000055282000000,0.000080170000000,0.000083331000000,0.000166294000000,0.000103479000000,0.000137060000000,0.007103967000000,0.000121652000000,0.000122837000000,0.000064368000000,0.000054097000000,0.000018751500000,0.000067133000000 +0.000015591500000,0.006809646000000,0.000046011000000,0.000013423000000,0.000041059000000,0.000017566500000,0.000049355000000,0.000056085000000,0.000039085000000,0.000019744000000,0.000073849000000,0.000082146000000,0.000080565000000,0.000173010000000,0.000103479000000,0.000095973000000,0.006868511000000,0.000122837000000,0.000121652000000,0.000066739000000,0.000054096000000,0.000019937000000,0.000150096000000 +0.000015789000000,0.006849943000000,0.000028233000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049751000000,0.000034554000000,0.000039874000000,0.000013423000000,0.000086887000000,0.000079775000000,0.000079380000000,0.000168664000000,0.000101899000000,0.000097553000000,0.007231177000000,0.000121651000000,0.000121652000000,0.000063577000000,0.000054096000000,0.000018554500000,0.000067529000000 +0.000015789000000,0.006879178000000,0.000027838000000,0.000013160000000,0.000040269000000,0.000015789000000,0.000050146000000,0.000036925000000,0.000076615000000,0.000013159666667,0.000052911000000,0.000083726000000,0.000081355000000,0.000226738000000,0.000104664000000,0.000096368000000,0.006842042000000,0.000122047000000,0.000123233000000,0.000078195000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000033962000000,0.006752757000000,0.000028036000000,0.000013028000000,0.000098344000000,0.000015986500000,0.000049750000000,0.000054307500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000080565000000,0.000152072000000,0.000132319000000,0.000138244000000,0.000097553000000,0.006809252000000,0.000123233000000,0.000122442000000,0.000062392000000,0.000073849000000,0.000018752000000,0.000067134000000 +0.000016579500000,0.007045103000000,0.000028036000000,0.000013028000000,0.000094393000000,0.000016579000000,0.000048170000000,0.000056085000000,0.000039479000000,0.000013159666667,0.000055281000000,0.000081750000000,0.000079775000000,0.000172220000000,0.000103084000000,0.000096763000000,0.006901696000000,0.000157998000000,0.000123232000000,0.000061998000000,0.000053702000000,0.000037122000000,0.000067529000000 +0.000015789000000,0.007062486000000,0.000045418500000,0.000013160000000,0.000093998000000,0.000016381500000,0.000048961000000,0.000056875500000,0.000039084000000,0.000013028000000,0.000052912000000,0.000080565000000,0.000079775000000,0.000176170000000,0.000103084000000,0.000096763000000,0.006776461000000,0.000121652000000,0.000158393000000,0.000062392000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015591000000,0.008961547000000,0.000063196500000,0.000013159666667,0.000071084000000,0.000016184000000,0.000048171000000,0.000066752000000,0.000039479000000,0.000013423333333,0.000054096000000,0.000080170000000,0.000082146000000,0.000154837000000,0.000102294000000,0.000097159000000,0.006755918000000,0.000121652000000,0.000136269000000,0.000062393000000,0.000053306000000,0.000019542000000,0.000067528000000 +0.000015394000000,0.007310190000000,0.000027838500000,0.000013160000000,0.000042640000000,0.000016381500000,0.000048171000000,0.000053714500000,0.000039874000000,0.000013291333333,0.000054492000000,0.000083331000000,0.000079380000000,0.000223578000000,0.000101504000000,0.000098343000000,0.007440165000000,0.000121652000000,0.000122837000000,0.000063183000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.007123325000000,0.000028036000000,0.000013028000000,0.000042640000000,0.000016381500000,0.000049356000000,0.000032776500000,0.000039084000000,0.000013028000000,0.000053306000000,0.000081751000000,0.000082146000000,0.000130739000000,0.000102689000000,0.000132714000000,0.007096066000000,0.000122047000000,0.000123232000000,0.000062788000000,0.000054096000000,0.000019147000000,0.000066739000000 +0.000015591500000,0.007344165000000,0.000028233000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000029813500000,0.000039479000000,0.000013423000000,0.000053702000000,0.000079380000000,0.000080961000000,0.000168665000000,0.000102294000000,0.000097158000000,0.006777647000000,0.000121257000000,0.000121652000000,0.000062393000000,0.000053701000000,0.000019937000000,0.000067529000000 +0.000015591500000,0.006876017000000,0.000028431000000,0.000013160000000,0.000040270000000,0.000015591000000,0.000048961000000,0.000027443500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081356000000,0.000081751000000,0.000169454000000,0.000103084000000,0.000096763000000,0.006674535000000,0.000127182000000,0.000121652000000,0.000061998000000,0.000055676000000,0.000018752000000,0.000068319000000 +0.000015394000000,0.007962831000000,0.000028036000000,0.000013028000000,0.000040270000000,0.000016579000000,0.000051726000000,0.000019147000000,0.000039479000000,0.000013554666667,0.000053702000000,0.000084121000000,0.000082541000000,0.000244911000000,0.000156812000000,0.000095973000000,0.007046288000000,0.000141800000000,0.000121652000000,0.000062393000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.007172708000000,0.000037320000000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048170000000,0.000053912000000,0.000039084000000,0.000013291333333,0.000052911000000,0.000080961000000,0.000084912000000,0.000174985000000,0.000103874000000,0.000095973000000,0.006844017000000,0.000122442000000,0.000142590000000,0.000062392000000,0.000053701000000,0.000018554500000,0.000145751000000 +0.000015394000000,0.006740511000000,0.000028826000000,0.000013160000000,0.000040270000000,0.000015788500000,0.000048961000000,0.000026653000000,0.000039479000000,0.000013423000000,0.000053307000000,0.000084121000000,0.000115726000000,0.000134293000000,0.000102689000000,0.000097158000000,0.007325992000000,0.000124022000000,0.000189998000000,0.000061998000000,0.000054097000000,0.000018949500000,0.000067529000000 +0.000016184000000,0.007244214000000,0.000034356500000,0.000013554666667,0.000040270000000,0.000016579000000,0.000048961000000,0.000034752000000,0.000039084000000,0.000013555000000,0.000052911000000,0.000079775000000,0.000116121000000,0.000173010000000,0.000101899000000,0.000097553000000,0.007088165000000,0.000122442000000,0.000137849000000,0.000065553000000,0.000054097000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007068017000000,0.000027641000000,0.000013028000000,0.000039875000000,0.000016381500000,0.000049355000000,0.000033764500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000081356000000,0.000103479000000,0.000133899000000,0.000103084000000,0.000097158000000,0.006872856000000,0.000122047000000,0.000122442000000,0.000063183000000,0.000053702000000,0.000018949500000,0.000068319000000 +0.000015986500000,0.007223671000000,0.000028036000000,0.000013554666667,0.000040269000000,0.000016381500000,0.000076220000000,0.000044628500000,0.000039479000000,0.000013423333333,0.000124417000000,0.000079380000000,0.000082936000000,0.000169850000000,0.000102294000000,0.000097158000000,0.006933301000000,0.000122837000000,0.000123627000000,0.000061998000000,0.000055282000000,0.000018752000000,0.000066343000000 +0.000015394000000,0.006803326000000,0.000028036000000,0.000013818000000,0.000040269000000,0.000016381500000,0.000050541000000,0.000052727000000,0.000039479000000,0.000013555000000,0.000053701000000,0.000078985000000,0.000084121000000,0.000208566000000,0.000103479000000,0.000116911000000,0.006681647000000,0.000121652000000,0.000122047000000,0.000062392000000,0.000053306000000,0.000018752000000,0.000066739000000 +0.000015394000000,0.007049844000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000015789000000,0.000049355000000,0.000045023500000,0.000041059000000,0.000013028000000,0.000053307000000,0.000083331000000,0.000080170000000,0.000171034000000,0.000102689000000,0.000100319000000,0.006926584000000,0.000122442000000,0.000122442000000,0.000062393000000,0.000053702000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.007455967000000,0.000028036000000,0.000013159666667,0.000076220000000,0.000016579000000,0.000048565000000,0.000043641000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081355000000,0.000079380000000,0.000165504000000,0.000121652000000,0.000097553000000,0.006785152000000,0.000149702000000,0.000228318000000,0.000061997000000,0.000053306000000,0.000018752000000,0.000066738000000 +0.000015591500000,0.007299128000000,0.000027838500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048961000000,0.000035542000000,0.000039084000000,0.000013554666667,0.000052912000000,0.000083726000000,0.000081356000000,0.000132318000000,0.000205800000000,0.000107429000000,0.006968066000000,0.000122837000000,0.000122442000000,0.000062393000000,0.000089651000000,0.000018752000000,0.000067133000000 +0.000015788500000,0.007091720000000,0.000027838500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000045023500000,0.000039479000000,0.000013159666667,0.000054491000000,0.000080961000000,0.000080170000000,0.000168269000000,0.000134294000000,0.000095578000000,0.006856264000000,0.000122442000000,0.000121257000000,0.000062392000000,0.000054097000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.007071967000000,0.000027838500000,0.000013686666667,0.000040270000000,0.000016381500000,0.000048961000000,0.000035937000000,0.000039479000000,0.000037916666667,0.000053307000000,0.000082936000000,0.000081750000000,0.000136664000000,0.000104270000000,0.000097158000000,0.007263177000000,0.000123232000000,0.000122837000000,0.000061998000000,0.000053307000000,0.000018752000000,0.000067923000000 +0.000015591000000,0.007117794000000,0.000028628500000,0.000013159666667,0.000040270000000,0.000016579000000,0.000049750000000,0.000019937000000,0.000039479000000,0.000024616333333,0.000052911000000,0.000082541000000,0.000163528000000,0.000212121000000,0.000101899000000,0.000096763000000,0.006853103000000,0.000122442000000,0.000122442000000,0.000061998000000,0.000054097000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.006870091000000,0.000027838500000,0.000013028000000,0.000040270000000,0.000040875500000,0.000048566000000,0.000025863000000,0.000039084000000,0.000019744000000,0.000053306000000,0.000081751000000,0.000093207000000,0.000163134000000,0.000101899000000,0.000096368000000,0.006890239000000,0.000122047000000,0.000121652000000,0.000061998000000,0.000053702000000,0.000020332000000,0.000118887000000 +0.000015591500000,0.007101597000000,0.000028036000000,0.000013160000000,0.000039874000000,0.000017566500000,0.000049751000000,0.000019344500000,0.000039084000000,0.000014608333333,0.000054887000000,0.000080961000000,0.000081355000000,0.000133504000000,0.000102294000000,0.000096763000000,0.006847968000000,0.000122442000000,0.000159973000000,0.000061998000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006851918000000,0.000028036000000,0.000013554666667,0.000040269000000,0.000016381500000,0.000049355000000,0.000019739500000,0.000039084000000,0.000013818333333,0.000053306000000,0.000081355000000,0.000127183000000,0.000169849000000,0.000103479000000,0.000129949000000,0.006971227000000,0.000306146000000,0.000188417000000,0.000062392000000,0.000054097000000,0.000028628500000,0.000067924000000 +0.000015789000000,0.006865745000000,0.000028233000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000050146000000,0.000019344500000,0.000039084000000,0.000017768666667,0.000054492000000,0.000081355000000,0.000082936000000,0.000133899000000,0.000138640000000,0.000096368000000,0.006854683000000,0.000174195000000,0.000121257000000,0.000062393000000,0.000053702000000,0.000044826000000,0.000067924000000 +0.000015394000000,0.006827029000000,0.000028431000000,0.000013028000000,0.000040269000000,0.000016382000000,0.000049356000000,0.000037122000000,0.000039479000000,0.000013291666667,0.000052911000000,0.000120072000000,0.000079380000000,0.000274935000000,0.000101899000000,0.000097553000000,0.007394732000000,0.000136664000000,0.000122442000000,0.000062392000000,0.000054096000000,0.000018751500000,0.000068714000000 +0.000033567000000,0.006827424000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049750000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000081356000000,0.000079380000000,0.000135479000000,0.000103479000000,0.000097159000000,0.006899326000000,0.000121652000000,0.000122047000000,0.000062393000000,0.000053701000000,0.000018554500000,0.000068319000000 +0.000015986500000,0.006773301000000,0.000028431000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000084122000000,0.000080961000000,0.000172220000000,0.000105454000000,0.000097553000000,0.007228807000000,0.000122837000000,0.000121652000000,0.000068318000000,0.000054096000000,0.000018751500000,0.000067924000000 +0.000015986500000,0.006876412000000,0.000027838500000,0.000013554666667,0.000039874000000,0.000015986500000,0.000049356000000,0.000019344500000,0.000039479000000,0.000013159666667,0.000161553000000,0.000082541000000,0.000081355000000,0.000171825000000,0.000102294000000,0.000096368000000,0.006708116000000,0.000176566000000,0.000122442000000,0.000063578000000,0.000053701000000,0.000018554500000,0.000067529000000 +0.000015789000000,0.007251720000000,0.000028036000000,0.000013160000000,0.000041059000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000041059000000,0.000013159666667,0.000053306000000,0.000083331000000,0.000116516000000,0.000131923000000,0.000102294000000,0.000096763000000,0.006832166000000,0.000122047000000,0.000191578000000,0.000062393000000,0.000054096000000,0.000019146500000,0.000067528000000 +0.000015394000000,0.006799770000000,0.000028233500000,0.000013159666667,0.000039874000000,0.000016184000000,0.000084121000000,0.000029023500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000084121000000,0.000080171000000,0.000166689000000,0.000103084000000,0.000096763000000,0.007056956000000,0.000122442000000,0.000134688000000,0.000061997000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015986500000,0.007274239000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000027838500000,0.000039479000000,0.000013818333333,0.000053306000000,0.000079776000000,0.000087677000000,0.000165109000000,0.000101899000000,0.000095578000000,0.006830585000000,0.000121257000000,0.000125997000000,0.000061998000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.006734190000000,0.000028233500000,0.000013028000000,0.000041849000000,0.000016381500000,0.000048565000000,0.000019147000000,0.000039084000000,0.000013028333333,0.000053701000000,0.000081356000000,0.000079380000000,0.000264664000000,0.000137454000000,0.000139824000000,0.007281745000000,0.000122838000000,0.000121652000000,0.000063578000000,0.000089652000000,0.000018949500000,0.000067133000000 +0.000016184000000,0.006652412000000,0.000028233500000,0.000013686333333,0.000040269000000,0.000016381500000,0.000048565000000,0.000019147000000,0.000039084000000,0.000013555000000,0.000054492000000,0.000079380000000,0.000080171000000,0.000132714000000,0.000101899000000,0.000096763000000,0.006698239000000,0.000122047000000,0.000121256000000,0.000079380000000,0.000053307000000,0.000018949500000,0.000138245000000 +0.000015789000000,0.007035226000000,0.000027641000000,0.000013159666667,0.000039874000000,0.000016184000000,0.000048565000000,0.000019344500000,0.000040664000000,0.000013028000000,0.000053306000000,0.000079776000000,0.000081356000000,0.000240565000000,0.000101504000000,0.000095973000000,0.006832955000000,0.000122442000000,0.000120467000000,0.000077800000000,0.000053307000000,0.000019147000000,0.000067529000000 +0.000015393500000,0.007317300000000,0.000027838500000,0.000013159666667,0.000041455000000,0.000015591500000,0.000048171000000,0.000019344500000,0.000039479000000,0.000013028000000,0.000054491000000,0.000079381000000,0.000079775000000,0.000171034000000,0.000102689000000,0.000097158000000,0.006956609000000,0.000190788000000,0.000122837000000,0.000061998000000,0.000053702000000,0.000018949500000,0.000066343000000 +0.000015986500000,0.006765400000000,0.000027838500000,0.000014081333333,0.000040269000000,0.000016381500000,0.000050146000000,0.000035937500000,0.000039874000000,0.000013554666667,0.000057652000000,0.000080566000000,0.000080961000000,0.000171825000000,0.000101899000000,0.000097554000000,0.006851128000000,0.000122837000000,0.000206590000000,0.000062392000000,0.000053702000000,0.000018949500000,0.000067923000000 +0.000015591000000,0.006813597000000,0.000028036000000,0.000013291333333,0.000095182000000,0.000016579000000,0.000048565000000,0.000046209000000,0.000039479000000,0.000020007333333,0.000054096000000,0.000079776000000,0.000081751000000,0.000184467000000,0.000102689000000,0.000096368000000,0.007145448000000,0.000156022000000,0.000122837000000,0.000061998000000,0.000053702000000,0.000019937000000,0.000067529000000 +0.000015394000000,0.006951473000000,0.000027838500000,0.000013554666667,0.000039874000000,0.000016381500000,0.000048170000000,0.000053517500000,0.000039084000000,0.000065571000000,0.000060418000000,0.000081356000000,0.000079380000000,0.000134689000000,0.000102294000000,0.000097158000000,0.006802141000000,0.000122047000000,0.000122442000000,0.000076615000000,0.000054886000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007143078000000,0.000055690500000,0.000013160000000,0.000040269000000,0.000016184000000,0.000048170000000,0.000046604000000,0.000039479000000,0.000013159666667,0.000060812000000,0.000079381000000,0.000079776000000,0.000171825000000,0.000103084000000,0.000096763000000,0.006892610000000,0.000122442000000,0.000122047000000,0.000078590000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015393500000,0.007072363000000,0.000046011000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000051937000000,0.000039084000000,0.000013818000000,0.000052911000000,0.000081751000000,0.000130344000000,0.000167874000000,0.000101899000000,0.000096368000000,0.006871671000000,0.000122442000000,0.000122837000000,0.000061998000000,0.000056072000000,0.000019147000000,0.000067923000000 +0.000015591500000,0.007029301000000,0.000036727000000,0.000013818000000,0.000039874000000,0.000016184500000,0.000048566000000,0.000042455500000,0.000040269000000,0.000013554666667,0.000092022000000,0.000081751000000,0.000082541000000,0.000131528000000,0.000139430000000,0.000166689000000,0.006867721000000,0.000122047000000,0.000121257000000,0.000089651000000,0.000053702000000,0.000019937000000,0.000066738000000 +0.000016184000000,0.007030091000000,0.000028431000000,0.000013159666667,0.000040270000000,0.000016579000000,0.000050541000000,0.000028233500000,0.000041059000000,0.000013159666667,0.000070294000000,0.000080170000000,0.000080171000000,0.000205405000000,0.000102689000000,0.000097159000000,0.006800956000000,0.000158393000000,0.000121652000000,0.000062392000000,0.000054097000000,0.000018752000000,0.000066739000000 +0.000015394000000,0.006953449000000,0.000027838500000,0.000013160000000,0.000040270000000,0.000016381500000,0.000049355000000,0.000026653000000,0.000039084000000,0.000013554666667,0.000053306000000,0.000079775000000,0.000080961000000,0.000133504000000,0.000102294000000,0.000097158000000,0.006768955000000,0.000122047000000,0.000186442000000,0.000063183000000,0.000053702000000,0.000018752000000,0.000066739000000 +0.000015591500000,0.006739326000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000049751000000,0.000026060500000,0.000039085000000,0.000013554666667,0.000056072000000,0.000082145000000,0.000080171000000,0.000164714000000,0.000101899000000,0.000096763000000,0.006973202000000,0.000122047000000,0.000123232000000,0.000063973000000,0.000053307000000,0.000019740000000,0.000068319000000 +0.000015591000000,0.006905647000000,0.000027838500000,0.000013818000000,0.000039874000000,0.000026061000000,0.000048566000000,0.000028826000000,0.000039480000000,0.000013159666667,0.000052911000000,0.000083330000000,0.000083331000000,0.000131134000000,0.000101899000000,0.000095973000000,0.007045104000000,0.000122442000000,0.000122837000000,0.000062392000000,0.000055677000000,0.000040480500000,0.000139430000000 +0.000015394000000,0.006753153000000,0.000027838500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000025073000000,0.000039479000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000078985000000,0.000165109000000,0.000102294000000,0.000096763000000,0.006784362000000,0.000121257000000,0.000122442000000,0.000062393000000,0.000053701000000,0.000018751500000,0.000067528000000 +0.000015591500000,0.007037992000000,0.000028233500000,0.000013160000000,0.000039874000000,0.000015789000000,0.000048960000000,0.000018159000000,0.000039479000000,0.000014081333333,0.000054096000000,0.000081751000000,0.000082541000000,0.000161948000000,0.000103084000000,0.000096763000000,0.006825449000000,0.000121257000000,0.000122837000000,0.000063183000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015789000000,0.006887078000000,0.000027838500000,0.000013423000000,0.000039874000000,0.000015591500000,0.000084516000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080171000000,0.000082145000000,0.000150886000000,0.000103084000000,0.000097948000000,0.007271474000000,0.000121652000000,0.000122442000000,0.000123232000000,0.000053306000000,0.000019344500000,0.000067133000000 +0.000015591500000,0.007246190000000,0.000027640500000,0.000013159666667,0.000040269000000,0.000016579500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000054096000000,0.000079776000000,0.000081750000000,0.000165898000000,0.000138639000000,0.000116516000000,0.007013893000000,0.000177355000000,0.000142590000000,0.000095182000000,0.000090442000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006803720000000,0.000028036000000,0.000013160000000,0.000042244000000,0.000015591500000,0.000048565000000,0.000018159500000,0.000039085000000,0.000013028000000,0.000052912000000,0.000081356000000,0.000130343000000,0.000133899000000,0.000102689000000,0.000097948000000,0.006784758000000,0.000121652000000,0.000155627000000,0.000078195000000,0.000053307000000,0.000018752000000,0.000067134000000 +0.000016184000000,0.006836906000000,0.000028035500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053701000000,0.000081356000000,0.000081751000000,0.000245701000000,0.000101503000000,0.000098343000000,0.007471375000000,0.000171035000000,0.000121257000000,0.000067134000000,0.000054491000000,0.000018752000000,0.000067924000000 +0.000042851000000,0.006848758000000,0.000027838000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048961000000,0.000018356500000,0.000039084000000,0.000013291666667,0.000053307000000,0.000081751000000,0.000082541000000,0.000131923000000,0.000103084000000,0.000096763000000,0.009370434000000,0.000122442000000,0.000121652000000,0.000068713000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000023690500000,0.007000856000000,0.000032579000000,0.000013028000000,0.000040664000000,0.000015591500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000054096000000,0.000082145000000,0.000080171000000,0.000170639000000,0.000101899000000,0.000095973000000,0.007267523000000,0.000141800000000,0.000121652000000,0.000067924000000,0.000053701000000,0.000018752000000,0.000065948000000 +0.000015789000000,0.006868115000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000015591500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000053307000000,0.000082936000000,0.000081751000000,0.000204615000000,0.000101899000000,0.000096368000000,0.006986239000000,0.000186442000000,0.000122442000000,0.000080960000000,0.000054096000000,0.000018751500000,0.000067528000000 +0.000015394000000,0.007245400000000,0.000027838500000,0.000014871666667,0.000041849000000,0.000016184000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000056862000000,0.000081751000000,0.000082936000000,0.000133109000000,0.000102689000000,0.000096763000000,0.007220905000000,0.000129158000000,0.000122047000000,0.000065948000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006753548000000,0.000027838000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000040269000000,0.000031464000000,0.000107824000000,0.000079380000000,0.000079380000000,0.000165503000000,0.000105060000000,0.000096368000000,0.006854289000000,0.000129553000000,0.000121652000000,0.000079776000000,0.000053306000000,0.000018751500000,0.000094393000000 +0.000015393500000,0.006896560000000,0.000028035500000,0.000013159666667,0.000058047000000,0.000016381500000,0.000048566000000,0.000017961500000,0.000039084000000,0.000013159666667,0.000068318000000,0.000079776000000,0.000083726000000,0.000131529000000,0.000101899000000,0.000097158000000,0.007184955000000,0.000299430000000,0.000368960000000,0.000099529000000,0.000053702000000,0.000018752000000,0.000118491000000 +0.000015394000000,0.007036017000000,0.000028233000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000054886000000,0.000085702000000,0.000080170000000,0.000163134000000,0.000172614000000,0.000098739000000,0.007086980000000,0.000134294000000,0.000246096000000,0.000115726000000,0.000053306000000,0.000018751500000,0.000066739000000 +0.000015591500000,0.006738140000000,0.000028233500000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000079381000000,0.000079381000000,0.000165503000000,0.000101899000000,0.000113751000000,0.006853894000000,0.000135479000000,0.000122837000000,0.000115331000000,0.000053306000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.006743672000000,0.000027838500000,0.000013159666667,0.000039875000000,0.000016381500000,0.000050146000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000055281000000,0.000080171000000,0.000133899000000,0.000170244000000,0.000103084000000,0.000095577000000,0.007651127000000,0.000120862000000,0.000122442000000,0.000100714000000,0.000053701000000,0.000018751500000,0.000096763000000 +0.000015789000000,0.007075523000000,0.000028431000000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048566000000,0.000018356500000,0.000060812000000,0.000013423000000,0.000054097000000,0.000079776000000,0.000081750000000,0.000162343000000,0.000102294000000,0.000097158000000,0.006979918000000,0.000194739000000,0.000160763000000,0.000099133000000,0.000053702000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.007250141000000,0.000027838500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048566000000,0.000018357000000,0.000056072000000,0.000013818000000,0.000052911000000,0.000079381000000,0.000079380000000,0.000131134000000,0.000101503000000,0.000095973000000,0.007245794000000,0.000154837000000,0.000122837000000,0.000060022000000,0.000053702000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.006911967000000,0.000028233500000,0.000013818000000,0.000040269000000,0.000015986500000,0.000049355000000,0.000018159500000,0.000039085000000,0.000013554666667,0.000054492000000,0.000082146000000,0.000079380000000,0.000167874000000,0.000103874000000,0.000095973000000,0.007370239000000,0.000122047000000,0.000122442000000,0.000106245000000,0.000054097000000,0.000029023500000,0.000066738000000 +0.000015986500000,0.006768165000000,0.000028233000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000054096000000,0.000082541000000,0.000082146000000,0.000133899000000,0.000101899000000,0.000097553000000,0.007533795000000,0.000122442000000,0.000121652000000,0.000066738000000,0.000129158000000,0.000027048000000,0.000067134000000 +0.000015394000000,0.006808857000000,0.000028035500000,0.000013028333333,0.000040269000000,0.000016579000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000080565000000,0.000079775000000,0.000348812000000,0.000102689000000,0.000097158000000,0.006980313000000,0.000121652000000,0.000122047000000,0.000092417000000,0.000067923000000,0.000034357000000,0.000067134000000 +0.000015591500000,0.006887869000000,0.000027838000000,0.000013686333333,0.000041059000000,0.000015789000000,0.000067924000000,0.000018751500000,0.000039479000000,0.000013160000000,0.000054491000000,0.000080170000000,0.000082145000000,0.000167084000000,0.000101504000000,0.000096368000000,0.006936066000000,0.000122047000000,0.000122047000000,0.000098343000000,0.000053306000000,0.000018949000000,0.000067133000000 +0.000015394000000,0.007135967000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000099529000000,0.000046011000000,0.000039479000000,0.000013159666667,0.000056072000000,0.000081751000000,0.000079380000000,0.000131529000000,0.000102689000000,0.000115726000000,0.006896956000000,0.000158393000000,0.000122442000000,0.000073454000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.007056560000000,0.000028431000000,0.000013686333333,0.000042639000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039085000000,0.000013423000000,0.000052912000000,0.000080566000000,0.000081750000000,0.000165898000000,0.000101899000000,0.000130738000000,0.006952659000000,0.000137850000000,0.000159183000000,0.000060022000000,0.000053306000000,0.000018752000000,0.000137849000000 +0.000016184000000,0.006894980000000,0.000028036000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048960000000,0.000017962000000,0.000039479000000,0.000013291333333,0.000053306000000,0.000085701000000,0.000082146000000,0.000133109000000,0.000102689000000,0.000113751000000,0.006794239000000,0.000128368000000,0.000121652000000,0.000078590000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006815573000000,0.000028431000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048170000000,0.000018357000000,0.000039084000000,0.000013291333333,0.000053306000000,0.000082541000000,0.000119282000000,0.000171034000000,0.000101899000000,0.000097948000000,0.007093301000000,0.000129948000000,0.000123232000000,0.000063183000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.006621992000000,0.000028431000000,0.000013818000000,0.000039874000000,0.000025468000000,0.000048566000000,0.000018356500000,0.000039874000000,0.000013423000000,0.000118492000000,0.000080961000000,0.000086097000000,0.000135084000000,0.000205800000000,0.000096763000000,0.007256856000000,0.000129948000000,0.000120862000000,0.000129949000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007128067000000,0.000027838000000,0.000013159666667,0.000040269000000,0.000031394000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000072664000000,0.000081751000000,0.000079381000000,0.000308911000000,0.000106244000000,0.000097158000000,0.006795030000000,0.000129948000000,0.000122046000000,0.000124023000000,0.000054096000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006720363000000,0.000027640500000,0.000013159666667,0.000041454000000,0.000023098000000,0.000048566000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000068318000000,0.000079380000000,0.000079776000000,0.000226344000000,0.000106245000000,0.000096368000000,0.006803720000000,0.000129158000000,0.000122442000000,0.000066344000000,0.000053306000000,0.000018752000000,0.000066344000000 +0.000016381500000,0.006813597000000,0.000027838000000,0.000013028000000,0.000039874000000,0.000015986500000,0.000048565000000,0.000018159500000,0.000039085000000,0.000013423000000,0.000053702000000,0.000081750000000,0.000080566000000,0.000149702000000,0.000270985000000,0.000096368000000,0.006855079000000,0.000165899000000,0.000122442000000,0.000093998000000,0.000054096000000,0.000018751500000,0.000067528000000 +0.000016184000000,0.006988610000000,0.000027640500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000058442000000,0.000080170000000,0.000082146000000,0.000169060000000,0.000184071000000,0.000097158000000,0.006869301000000,0.000129553000000,0.000159973000000,0.000099133000000,0.000054096000000,0.000018949500000,0.000066738000000 +0.000025270500000,0.007135572000000,0.000027838500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000048961000000,0.000018356500000,0.000039479000000,0.000019349000000,0.000052911000000,0.000081355000000,0.000079380000000,0.000153257000000,0.000102294000000,0.000133504000000,0.006985449000000,0.000128763000000,0.000121256000000,0.000131924000000,0.000053701000000,0.000018949500000,0.000065948000000 +0.000023887500000,0.006776462000000,0.000027838500000,0.000014345000000,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000039084000000,0.000018954000000,0.000053702000000,0.000081356000000,0.000081751000000,0.000167479000000,0.000101899000000,0.000096763000000,0.006858634000000,0.000128763000000,0.000123627000000,0.000095183000000,0.000055282000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.007022189000000,0.000028036000000,0.000013159666667,0.000095182000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053306000000,0.000082146000000,0.000079381000000,0.000167479000000,0.000137849000000,0.000097948000000,0.006968066000000,0.000129948000000,0.000121652000000,0.000081356000000,0.000053702000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006678882000000,0.000028431000000,0.000013159666667,0.000040269000000,0.000015788500000,0.000048565000000,0.000018159500000,0.000039084000000,0.000013160000000,0.000053701000000,0.000080566000000,0.000082541000000,0.000135084000000,0.000134294000000,0.000096763000000,0.006869696000000,0.000130343000000,0.000121257000000,0.000101504000000,0.000054097000000,0.000018752000000,0.000067133000000 +0.000015789000000,0.006784363000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053701000000,0.000079381000000,0.000099924000000,0.000162738000000,0.000102294000000,0.000096368000000,0.006778437000000,0.000128763000000,0.000123627000000,0.000100319000000,0.000054097000000,0.000018752000000,0.000088862000000 +0.000024875500000,0.006966091000000,0.000028233500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048961000000,0.000018356500000,0.000039479000000,0.000013554666667,0.000052911000000,0.000081356000000,0.000125603000000,0.000135084000000,0.000102293000000,0.000096368000000,0.006987029000000,0.000129553000000,0.000121652000000,0.000062788000000,0.000053702000000,0.000019147000000,0.000174985000000 +0.000023098000000,0.007090140000000,0.000027641000000,0.000013686333333,0.000040269000000,0.000016382000000,0.000049355000000,0.000018752000000,0.000039084000000,0.000013028000000,0.000054887000000,0.000079776000000,0.000079380000000,0.000238590000000,0.000101504000000,0.000095578000000,0.007137943000000,0.000129949000000,0.000122838000000,0.000116121000000,0.000053306000000,0.000018752000000,0.000185257000000 +0.000016579000000,0.006820708000000,0.000028826000000,0.000013159666667,0.000040269000000,0.000015788500000,0.000084516000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000053307000000,0.000079381000000,0.000081356000000,0.000135479000000,0.000101503000000,0.000095973000000,0.006849943000000,0.000129158000000,0.000152862000000,0.000115331000000,0.000053307000000,0.000019147000000,0.000072269000000 +0.000016579000000,0.006706931000000,0.000028233500000,0.000013028333333,0.000040270000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000082541000000,0.000081356000000,0.000242146000000,0.000102689000000,0.000096368000000,0.006826239000000,0.000128763000000,0.000121652000000,0.000099923000000,0.000053702000000,0.000018752000000,0.000096764000000 +0.000016776500000,0.006934881000000,0.000028036000000,0.000013159666667,0.000040270000000,0.000015986500000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000077405000000,0.000082145000000,0.000081750000000,0.000304961000000,0.000103874000000,0.000133109000000,0.007286881000000,0.000128368000000,0.000121257000000,0.000096368000000,0.000053702000000,0.000018751500000,0.000068319000000 +0.000016579500000,0.006752758000000,0.000028036000000,0.000026591666667,0.000040270000000,0.000015789000000,0.000049751000000,0.000018159000000,0.000039480000000,0.000013423333333,0.000105455000000,0.000083331000000,0.000082146000000,0.000154047000000,0.000122047000000,0.000095578000000,0.006822289000000,0.000129948000000,0.000122837000000,0.000061997000000,0.000053307000000,0.000018752000000,0.000103479000000 +0.000016776500000,0.007184165000000,0.000028628500000,0.000025406666667,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013291666667,0.000053701000000,0.000080171000000,0.000081356000000,0.000169060000000,0.000102294000000,0.000097553000000,0.006784758000000,0.000129948000000,0.000122837000000,0.000110590000000,0.000054097000000,0.000036727000000,0.000066738000000 +0.000016579000000,0.006896165000000,0.000028035500000,0.000023431333333,0.000040664000000,0.000016381500000,0.000049355000000,0.000018554500000,0.000039479000000,0.000013291333333,0.000056071000000,0.000082146000000,0.000081356000000,0.000131134000000,0.000101899000000,0.000096763000000,0.006856659000000,0.000165504000000,0.000121257000000,0.000062393000000,0.000055282000000,0.000018554000000,0.000067134000000 +0.000016381500000,0.007329943000000,0.000028628500000,0.000018427000000,0.000040269000000,0.000016184000000,0.000051331000000,0.000018357000000,0.000040269000000,0.000013159666667,0.000055676000000,0.000101503000000,0.000083331000000,0.000250441000000,0.000103084000000,0.000097158000000,0.007067227000000,0.000129553000000,0.000121256000000,0.000093207000000,0.000055676000000,0.000018752000000,0.000068319000000 +0.000016382000000,0.006828215000000,0.000027838000000,0.000017900333333,0.000040269000000,0.000016579000000,0.000049750000000,0.000047196000000,0.000039479000000,0.000013554666667,0.000053307000000,0.000086097000000,0.000115726000000,0.000137850000000,0.000102689000000,0.000095973000000,0.006830190000000,0.000131133000000,0.000157207000000,0.000093208000000,0.000055282000000,0.000019147000000,0.000067924000000 +0.000016381500000,0.006758288000000,0.000027640500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049356000000,0.000048184000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000093603000000,0.000080961000000,0.000168665000000,0.000101504000000,0.000096368000000,0.007003622000000,0.000129158000000,0.000122047000000,0.000093603000000,0.000053702000000,0.000018752000000,0.000067529000000 +0.000016776500000,0.007218140000000,0.000028035500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000048566000000,0.000034949000000,0.000039480000000,0.000013291333333,0.000059232000000,0.000080171000000,0.000079380000000,0.000235824000000,0.000101503000000,0.000095973000000,0.006762239000000,0.000129553000000,0.000123627000000,0.000085701000000,0.000055282000000,0.000018949500000,0.000067528000000 +0.000016184000000,0.007172313000000,0.000027640500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000052911000000,0.000079380000000,0.000079776000000,0.000133109000000,0.000102294000000,0.000097553000000,0.006781597000000,0.000130344000000,0.000120862000000,0.000065158000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000016579000000,0.006975572000000,0.000028233500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000055677000000,0.000082146000000,0.000081751000000,0.000166689000000,0.000102689000000,0.000132714000000,0.006952659000000,0.000129158000000,0.000122047000000,0.000063973000000,0.000054096000000,0.000018752000000,0.000067133000000 +0.000016381500000,0.007331917000000,0.000028036000000,0.000013291333333,0.000040269000000,0.000024480000000,0.000048170000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079381000000,0.000082936000000,0.000133504000000,0.000173800000000,0.000097159000000,0.006740116000000,0.000129948000000,0.000122047000000,0.000090442000000,0.000090047000000,0.000018752000000,0.000066738000000 +0.000016579000000,0.007148214000000,0.000028233500000,0.000013554666667,0.000040664000000,0.000015789000000,0.000048565000000,0.000017961500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000083726000000,0.000084516000000,0.000167479000000,0.000103084000000,0.000097158000000,0.007127276000000,0.000129948000000,0.000123232000000,0.000067924000000,0.000054491000000,0.000019147000000,0.000068714000000 +0.000016381500000,0.006957794000000,0.000030406500000,0.000013159666667,0.000040269000000,0.000016382000000,0.000048566000000,0.000018159000000,0.000039085000000,0.000025406666667,0.000053701000000,0.000082936000000,0.000079380000000,0.000167479000000,0.000102689000000,0.000144565000000,0.006944362000000,0.000129553000000,0.000158393000000,0.000077800000000,0.000054096000000,0.000019739500000,0.000067134000000 +0.000016381500000,0.006900905000000,0.000028233500000,0.000013159666667,0.000076614000000,0.000016381500000,0.000050936000000,0.000018357000000,0.000039479000000,0.000019217333333,0.000052911000000,0.000079775000000,0.000079381000000,0.000170244000000,0.000102689000000,0.000095973000000,0.007219325000000,0.000129158000000,0.000122838000000,0.000083331000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000016579000000,0.006926585000000,0.000027641000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000053306000000,0.000018159500000,0.000039874000000,0.000013423000000,0.000054492000000,0.000081355000000,0.000078985000000,0.000250047000000,0.000103479000000,0.000096763000000,0.006721943000000,0.000129948000000,0.000122442000000,0.000088861000000,0.000053701000000,0.000018752000000,0.000103479000000 +0.000016776500000,0.006874042000000,0.000028036000000,0.000013554666667,0.000040269000000,0.000016381500000,0.000049750000000,0.000033369000000,0.000039084000000,0.000013028000000,0.000096763000000,0.000084121000000,0.000079775000000,0.000152071000000,0.000102294000000,0.000097553000000,0.006850338000000,0.000130343000000,0.000156812000000,0.000083331000000,0.000053701000000,0.000019542000000,0.000067133000000 +0.000017172000000,0.006965696000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016382000000,0.000090837000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000069109000000,0.000081355000000,0.000144960000000,0.000171035000000,0.000103480000000,0.000096764000000,0.008079374000000,0.000129553000000,0.000139429000000,0.000069504000000,0.000053701000000,0.000019344500000,0.000066739000000 +0.000026060500000,0.007314535000000,0.000027641000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053701000000,0.000081356000000,0.000093208000000,0.000134293000000,0.000102689000000,0.000133898000000,0.006851523000000,0.000165108000000,0.000120862000000,0.000069503000000,0.000053701000000,0.000018949000000,0.000067529000000 +0.000032579000000,0.006790289000000,0.000028431000000,0.000013028000000,0.000040664000000,0.000016579000000,0.000049751000000,0.000018159000000,0.000039084000000,0.000013159666667,0.000054097000000,0.000080961000000,0.000082541000000,0.000250047000000,0.000210936000000,0.000096368000000,0.006818733000000,0.000128763000000,0.000122837000000,0.000066739000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000016974000000,0.006952659000000,0.000028233500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053306000000,0.000079380000000,0.000079775000000,0.000167084000000,0.000103479000000,0.000096368000000,0.006962930000000,0.000129948000000,0.000158787000000,0.000065158000000,0.000054096000000,0.000019147000000,0.000067528000000 +0.000022505000000,0.006995325000000,0.000027838000000,0.000013423000000,0.000040269000000,0.000015591500000,0.000049355000000,0.000018357000000,0.000040664000000,0.000013423000000,0.000052911000000,0.000084911000000,0.000083331000000,0.000133503000000,0.000102294000000,0.000096763000000,0.007068807000000,0.000129948000000,0.000122442000000,0.000066739000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.006793844000000,0.000028233000000,0.000013818333333,0.000040269000000,0.000016381500000,0.000049751000000,0.000018752000000,0.000093603000000,0.000013423000000,0.000052911000000,0.000082541000000,0.000081355000000,0.000297059000000,0.000124417000000,0.000096764000000,0.006864560000000,0.000129553000000,0.000121257000000,0.000064763000000,0.000054096000000,0.000019739500000,0.000066738000000 +0.000015986500000,0.006921844000000,0.000028035500000,0.000013159666667,0.000040269000000,0.000016776500000,0.000048171000000,0.000018159500000,0.000074244000000,0.000013423000000,0.000057652000000,0.000126788000000,0.000080170000000,0.000133504000000,0.000105849000000,0.000135084000000,0.007075523000000,0.000131134000000,0.000122442000000,0.000081750000000,0.000054096000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006937647000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000017567000000,0.000048171000000,0.000027048000000,0.000057652000000,0.000013423000000,0.000052911000000,0.000081356000000,0.000081356000000,0.000255577000000,0.000105454000000,0.000136664000000,0.006896955000000,0.000129554000000,0.000122442000000,0.000065553000000,0.000053306000000,0.000019344500000,0.000067924000000 +0.000015986500000,0.007305449000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016382000000,0.000067923000000,0.000018159500000,0.000041849000000,0.000013423000000,0.000052912000000,0.000082936000000,0.000080566000000,0.000130739000000,0.000105455000000,0.000110986000000,0.006878782000000,0.000174985000000,0.000121652000000,0.000067529000000,0.000053701000000,0.000036727000000,0.000066739000000 +0.000015591500000,0.007050634000000,0.000028036000000,0.000013291333333,0.000039875000000,0.000015591500000,0.000051331000000,0.000018159500000,0.000041849000000,0.000013291333333,0.000053306000000,0.000083331000000,0.000081751000000,0.000168270000000,0.000120467000000,0.000115726000000,0.007139523000000,0.000129158000000,0.000122838000000,0.000071874000000,0.000055282000000,0.000018752000000,0.000067133000000 +0.000015591000000,0.006848362000000,0.000028036000000,0.000013159666667,0.000040270000000,0.000016184000000,0.000054097000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000089652000000,0.000086492000000,0.000241751000000,0.000105059000000,0.000095973000000,0.007319671000000,0.000129948000000,0.000158393000000,0.000105454000000,0.000090047000000,0.000019147000000,0.000103479000000 +0.000015986500000,0.006814388000000,0.000028233500000,0.000013159666667,0.000040665000000,0.000016381500000,0.000061997000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000052911000000,0.000083331000000,0.000079776000000,0.000135479000000,0.000119677000000,0.000098343000000,0.006659128000000,0.000130343000000,0.000122047000000,0.000067133000000,0.000053306000000,0.000019344500000,0.000067134000000 +0.000015788500000,0.006730634000000,0.000045814000000,0.000013686666667,0.000040270000000,0.000016382000000,0.000048960000000,0.000018356500000,0.000040664000000,0.000013555000000,0.000053701000000,0.000081751000000,0.000080171000000,0.000263084000000,0.000102294000000,0.000096763000000,0.006941597000000,0.000129948000000,0.000121652000000,0.000061998000000,0.000053307000000,0.000018751500000,0.000067924000000 +0.000015986500000,0.006963721000000,0.000033962000000,0.000013028000000,0.000040270000000,0.000016184000000,0.000050146000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000054097000000,0.000082146000000,0.000079776000000,0.000132714000000,0.000101504000000,0.000096368000000,0.006981498000000,0.000131923000000,0.000120862000000,0.000076220000000,0.000053307000000,0.000019937000000,0.000067529000000 +0.000015789000000,0.007794929000000,0.000026258000000,0.000013818000000,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000122047000000,0.000079380000000,0.000084121000000,0.000164713000000,0.000105849000000,0.000096368000000,0.006821104000000,0.000128763000000,0.000123232000000,0.000061603000000,0.000054097000000,0.000020332000000,0.000067529000000 +0.000015591500000,0.006762239000000,0.000026851000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000068319000000,0.000082936000000,0.000081355000000,0.000163923000000,0.000103084000000,0.000097158000000,0.007132017000000,0.000306540000000,0.000122047000000,0.000060813000000,0.000053702000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006875622000000,0.000026653000000,0.000013028000000,0.000040664000000,0.000016381500000,0.000049356000000,0.000036134500000,0.000039084000000,0.000025143000000,0.000055677000000,0.000079775000000,0.000079380000000,0.000133504000000,0.000101899000000,0.000096368000000,0.007102782000000,0.000251232000000,0.000122047000000,0.000060417000000,0.000053702000000,0.000019147000000,0.000067529000000 +0.000015394000000,0.007440164000000,0.000026653000000,0.000013423000000,0.000040269000000,0.000016381500000,0.000066344000000,0.000018554500000,0.000041059000000,0.000018032000000,0.000054886000000,0.000081355000000,0.000079775000000,0.000165503000000,0.000103084000000,0.000097553000000,0.007306634000000,0.000129158000000,0.000122047000000,0.000060417000000,0.000053702000000,0.000018752000000,0.000066343000000 +0.000015591500000,0.006916708000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000052912000000,0.000080565000000,0.000082540000000,0.000206195000000,0.000154047000000,0.000132318000000,0.006901696000000,0.000129949000000,0.000139429000000,0.000106244000000,0.000054492000000,0.000018751500000,0.000067923000000 +0.000015789000000,0.007655078000000,0.000026060500000,0.000013160000000,0.000112170000000,0.000025467500000,0.000048170000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000055677000000,0.000079380000000,0.000080961000000,0.000475627000000,0.000101898000000,0.000096763000000,0.006689153000000,0.000133899000000,0.000122442000000,0.000061603000000,0.000054492000000,0.000018752000000,0.000068318000000 +0.000015986500000,0.007124511000000,0.000028036000000,0.000013159666667,0.000039874000000,0.000041665500000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000055676000000,0.000080565000000,0.000152072000000,0.000162738000000,0.000102294000000,0.000096368000000,0.006883523000000,0.000129158000000,0.000121652000000,0.000062392000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007371029000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000016184000000,0.000048961000000,0.000018159500000,0.000039480000000,0.000019875666667,0.000053307000000,0.000083726000000,0.000081356000000,0.000170640000000,0.000103479000000,0.000096763000000,0.006794634000000,0.000128763000000,0.000122837000000,0.000060812000000,0.000053306000000,0.000018752000000,0.000087676000000 +0.000015394000000,0.006968856000000,0.000027048500000,0.000013159666667,0.000040269000000,0.000015788500000,0.000048961000000,0.000018357000000,0.000039084000000,0.000018295666667,0.000052911000000,0.000083331000000,0.000079776000000,0.000236615000000,0.000103479000000,0.000096764000000,0.006756708000000,0.000129949000000,0.000122047000000,0.000060023000000,0.000054491000000,0.000018949500000,0.000099528000000 +0.000016184000000,0.006919869000000,0.000027048000000,0.000013159666667,0.000041849000000,0.000016776500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000014081666667,0.000053307000000,0.000083726000000,0.000079381000000,0.000140220000000,0.000101899000000,0.000095973000000,0.007250140000000,0.000128763000000,0.000122047000000,0.000060418000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006972017000000,0.000026060500000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000040269000000,0.000013555000000,0.000054886000000,0.000080960000000,0.000079776000000,0.000235825000000,0.000102689000000,0.000097159000000,0.007746732000000,0.000128763000000,0.000121652000000,0.000060418000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.006696264000000,0.000036332000000,0.000013159666667,0.000039874000000,0.000015591500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000053702000000,0.000079380000000,0.000080961000000,0.000139429000000,0.000101109000000,0.000095973000000,0.006939622000000,0.000129949000000,0.000214096000000,0.000060418000000,0.000053701000000,0.000019542000000,0.000066344000000 +0.000025270500000,0.006962931000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000081355000000,0.000080171000000,0.000174195000000,0.000137454000000,0.000095973000000,0.007266732000000,0.000128368000000,0.000123232000000,0.000064368000000,0.000053701000000,0.000018751500000,0.000067134000000 +0.000023690500000,0.006830190000000,0.000026653000000,0.000013818000000,0.000040269000000,0.000015986500000,0.000048960000000,0.000018356500000,0.000039084000000,0.000013555000000,0.000054887000000,0.000081356000000,0.000081356000000,0.000139034000000,0.000102689000000,0.000173405000000,0.007008757000000,0.000129553000000,0.000122442000000,0.000060023000000,0.000091627000000,0.000019147000000,0.000066739000000 +0.000015394000000,0.007194436000000,0.000026653000000,0.000018822000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000028036000000,0.000039084000000,0.000013159666667,0.000055281000000,0.000079775000000,0.000081356000000,0.000179726000000,0.000101504000000,0.000206985000000,0.006859029000000,0.000129553000000,0.000122047000000,0.000063183000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.006823869000000,0.000027048000000,0.000013949666667,0.000041850000000,0.000016382000000,0.000048961000000,0.000043048500000,0.000039479000000,0.000013291333333,0.000105060000000,0.000079380000000,0.000084911000000,0.000176565000000,0.000103479000000,0.000299825000000,0.006930141000000,0.000128368000000,0.000121652000000,0.000060417000000,0.000053306000000,0.000018949500000,0.000068714000000 +0.000015591500000,0.006796215000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000015789000000,0.000047776000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000068714000000,0.000082541000000,0.000115331000000,0.000141405000000,0.000103084000000,0.000287183000000,0.007497449000000,0.000129158000000,0.000122047000000,0.000060417000000,0.000053701000000,0.000018751500000,0.000196319000000 +0.000015591500000,0.006884313000000,0.000026851000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048961000000,0.000034356500000,0.000039084000000,0.000013159666667,0.000053701000000,0.000100319000000,0.000080961000000,0.000175775000000,0.000101899000000,0.000206985000000,0.006932906000000,0.000129554000000,0.000122442000000,0.000060022000000,0.000054096000000,0.000045221000000,0.000067134000000 +0.000015591500000,0.006817153000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049356000000,0.000045023500000,0.000039085000000,0.000013423000000,0.000053307000000,0.000152862000000,0.000084516000000,0.000143380000000,0.000102689000000,0.000273750000000,0.006868511000000,0.000129553000000,0.000185652000000,0.000078985000000,0.000053701000000,0.000019542000000,0.000066738000000 +0.000015986500000,0.006927770000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049355000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000054491000000,0.000098738000000,0.000082936000000,0.000176566000000,0.000103084000000,0.000142195000000,0.006809252000000,0.000130343000000,0.000121651000000,0.000090837000000,0.000054096000000,0.000019147000000,0.000068318000000 +0.000015394000000,0.007178634000000,0.000026060500000,0.000013159666667,0.000039875000000,0.000016579000000,0.000069504000000,0.000019147000000,0.000039874000000,0.000013423000000,0.000053702000000,0.000081750000000,0.000079776000000,0.000178541000000,0.000139034000000,0.000112565000000,0.006710091000000,0.000141405000000,0.000122442000000,0.000060417000000,0.000053306000000,0.000018752000000,0.000067528000000 +0.000015394000000,0.006782782000000,0.000026455500000,0.000013159666667,0.000041455000000,0.000016184000000,0.000115331000000,0.000025665500000,0.000040269000000,0.000013423333333,0.000052911000000,0.000081751000000,0.000079776000000,0.000139035000000,0.000103084000000,0.000095578000000,0.006958585000000,0.000122838000000,0.000122046000000,0.000060022000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000016184000000,0.006775671000000,0.000027245500000,0.000013028000000,0.000039874000000,0.000015789000000,0.000087282000000,0.000018159500000,0.000039084000000,0.000026328666667,0.000053307000000,0.000082541000000,0.000081356000000,0.000176566000000,0.000103874000000,0.000129553000000,0.006828214000000,0.000122047000000,0.000121652000000,0.000060022000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000016184000000,0.007202733000000,0.000026456000000,0.000013686333333,0.000039875000000,0.000015789000000,0.000052516000000,0.000018159500000,0.000039084000000,0.000018690666667,0.000054096000000,0.000079776000000,0.000081356000000,0.000139824000000,0.000102294000000,0.000097553000000,0.007260807000000,0.000120861000000,0.000121257000000,0.000060022000000,0.000053306000000,0.000018751500000,0.000068319000000 +0.000015591500000,0.006786338000000,0.000026455500000,0.000013818333333,0.000075825000000,0.000016381500000,0.000080961000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000053307000000,0.000092418000000,0.000082541000000,0.000175380000000,0.000101899000000,0.000097158000000,0.006748807000000,0.000121257000000,0.000158788000000,0.000060417000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.007015079000000,0.000026258500000,0.000013160000000,0.000040269000000,0.000015591500000,0.000050541000000,0.000018356500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000080171000000,0.000079775000000,0.000140220000000,0.000103084000000,0.000096368000000,0.006879572000000,0.000122837000000,0.000122047000000,0.000060022000000,0.000053701000000,0.000019542500000,0.000067134000000 +0.000015986500000,0.006895375000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000016382000000,0.000050541000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000080961000000,0.000082541000000,0.000174195000000,0.000102294000000,0.000096763000000,0.006943573000000,0.000122047000000,0.000122837000000,0.000060812000000,0.000054096000000,0.000018949500000,0.000067924000000 +0.000015591000000,0.007207079000000,0.000044431000000,0.000013159666667,0.000040269000000,0.000015591500000,0.000048566000000,0.000028036000000,0.000039479000000,0.000013028000000,0.000053306000000,0.000086886000000,0.000156812000000,0.000174590000000,0.000102689000000,0.000098343000000,0.006774486000000,0.000238195000000,0.000121652000000,0.000060022000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.006684017000000,0.000026455500000,0.000013818333333,0.000040269000000,0.000016184000000,0.000048566000000,0.000043048500000,0.000040664000000,0.000013159666667,0.000055282000000,0.000080565000000,0.000192368000000,0.000141405000000,0.000103480000000,0.000095973000000,0.007533794000000,0.000140615000000,0.000122837000000,0.000060023000000,0.000053701000000,0.000018752000000,0.000103084000000 +0.000015986500000,0.006818733000000,0.000026653000000,0.000013160000000,0.000039874000000,0.000025863500000,0.000048960000000,0.000046406500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000079775000000,0.000083726000000,0.000174985000000,0.000139035000000,0.000095973000000,0.007355622000000,0.000122047000000,0.000121652000000,0.000060418000000,0.000110985000000,0.000018752000000,0.000067134000000 +0.000015394000000,0.008861991000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000023888000000,0.000048565000000,0.000026456000000,0.000039084000000,0.000013028000000,0.000154837000000,0.000082145000000,0.000116121000000,0.000138245000000,0.000102294000000,0.000098343000000,0.006747622000000,0.000122442000000,0.000121257000000,0.000060418000000,0.000070294000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.006968856000000,0.000026851000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000047776000000,0.000026258000000,0.000039479000000,0.000013159666667,0.000159973000000,0.000082146000000,0.000099923000000,0.000173404000000,0.000101899000000,0.000116912000000,0.007446881000000,0.000122837000000,0.000122442000000,0.000060417000000,0.000058443000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.007626238000000,0.000027048000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048961000000,0.000018357000000,0.000040269000000,0.000013423333333,0.000149701000000,0.000081751000000,0.000079380000000,0.000142195000000,0.000102293000000,0.000110590000000,0.006883128000000,0.000122047000000,0.000157602000000,0.000130343000000,0.000056862000000,0.000018752000000,0.000067134000000 +0.000016184000000,0.007088560000000,0.000026455500000,0.000013159666667,0.000040664000000,0.000015789000000,0.000048961000000,0.000018159500000,0.000039480000000,0.000013555000000,0.000101899000000,0.000080961000000,0.000079380000000,0.000250047000000,0.000103479000000,0.000096763000000,0.006675721000000,0.000121257000000,0.000121652000000,0.000060812000000,0.000057257000000,0.000018949500000,0.000067529000000 +0.000015789000000,0.006928560000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016579500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013423333333,0.000060417000000,0.000082541000000,0.000082146000000,0.000244911000000,0.000102294000000,0.000097158000000,0.007213794000000,0.000138640000000,0.000122442000000,0.000060022000000,0.000056862000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006711276000000,0.000026653000000,0.000014081666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013291333333,0.000084121000000,0.000080960000000,0.000117701000000,0.000139430000000,0.000102689000000,0.000095578000000,0.007134782000000,0.000122837000000,0.000122442000000,0.000060022000000,0.000058837000000,0.000018752000000,0.000067923000000 +0.000015986500000,0.006846783000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000084121000000,0.000020134500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000081750000000,0.000260319000000,0.000103084000000,0.000095973000000,0.007212610000000,0.000121652000000,0.000120467000000,0.000061208000000,0.000057257000000,0.000018752000000,0.000067133000000 +0.000015789000000,0.006718782000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048170000000,0.000018159000000,0.000039479000000,0.000013423000000,0.000057257000000,0.000079380000000,0.000079380000000,0.000142195000000,0.000137850000000,0.000096763000000,0.006681251000000,0.000122442000000,0.000121652000000,0.000060023000000,0.000056862000000,0.000018752000000,0.000067529000000 +0.000015393500000,0.006824658000000,0.000027838500000,0.000013028333333,0.000040269000000,0.000015591500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000089257000000,0.000115726000000,0.000080565000000,0.000238985000000,0.000101899000000,0.000096368000000,0.006881943000000,0.000122442000000,0.000122047000000,0.000060418000000,0.000057257000000,0.000038110000000,0.000067529000000 +0.000016184000000,0.007776757000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048171000000,0.000018357000000,0.000039875000000,0.000013554666667,0.000053306000000,0.000079380000000,0.000079380000000,0.000176960000000,0.000102689000000,0.000095973000000,0.006809646000000,0.000121652000000,0.000157208000000,0.000060418000000,0.000057257000000,0.000027048000000,0.000086492000000 +0.000036924500000,0.007384066000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000047776000000,0.000018159500000,0.000039084000000,0.000013686333333,0.000058837000000,0.000081751000000,0.000083331000000,0.000143775000000,0.000103084000000,0.000139035000000,0.006769351000000,0.000121652000000,0.000122047000000,0.000060418000000,0.000056862000000,0.000018751500000,0.000118887000000 +0.000015591500000,0.006783968000000,0.000026851000000,0.000013160000000,0.000039874000000,0.000016381500000,0.000048566000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000052911000000,0.000080961000000,0.000083331000000,0.000172220000000,0.000103084000000,0.000095973000000,0.007004807000000,0.000158788000000,0.000122442000000,0.000060418000000,0.000057257000000,0.000018949500000,0.000067134000000 +0.000015394000000,0.007397103000000,0.000045813500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000054492000000,0.000082146000000,0.000081750000000,0.000138639000000,0.000101899000000,0.000097948000000,0.007011128000000,0.000121256000000,0.000121257000000,0.000060417000000,0.000057257000000,0.000018752000000,0.000067134000000 +0.000015986500000,0.007069597000000,0.000026258000000,0.000013423000000,0.000040269000000,0.000016382000000,0.000049751000000,0.000018159000000,0.000039084000000,0.000025406666667,0.000053701000000,0.000082936000000,0.000081355000000,0.000175380000000,0.000103084000000,0.000097158000000,0.006769350000000,0.000122442000000,0.000121652000000,0.000060022000000,0.000056862000000,0.000018949500000,0.000067528000000 +0.000015591500000,0.006797794000000,0.000026258500000,0.000014081333333,0.000078985000000,0.000016381500000,0.000049751000000,0.000018159500000,0.000039085000000,0.000013555000000,0.000053307000000,0.000081751000000,0.000079775000000,0.000140220000000,0.000102689000000,0.000099528000000,0.006861004000000,0.000121652000000,0.000120862000000,0.000060417000000,0.000103479000000,0.000019146500000,0.000067133000000 +0.000015591500000,0.006761449000000,0.000026455500000,0.000013028000000,0.000056862000000,0.000015591500000,0.000048960000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000054491000000,0.000081356000000,0.000119676000000,0.000180517000000,0.000118096000000,0.000096368000000,0.007061696000000,0.000121257000000,0.000122837000000,0.000060417000000,0.000060812000000,0.000019147000000,0.000067528000000 +0.000015986500000,0.006964116000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013291333333,0.000053701000000,0.000080170000000,0.000079380000000,0.000171430000000,0.000117701000000,0.000097553000000,0.006767375000000,0.000121257000000,0.000168269000000,0.000105454000000,0.000057257000000,0.000019147000000,0.000067529000000 +0.000015394000000,0.007199572000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080566000000,0.000082541000000,0.000141010000000,0.000101108000000,0.000096763000000,0.006838486000000,0.000122047000000,0.000122837000000,0.000060022000000,0.000058442000000,0.000018949500000,0.000082936000000 +0.000015591000000,0.006713252000000,0.000026653500000,0.000013159666667,0.000040664000000,0.000016579000000,0.000049356000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000054887000000,0.000081356000000,0.000082146000000,0.000253998000000,0.000102294000000,0.000097158000000,0.006908807000000,0.000157603000000,0.000122838000000,0.000061208000000,0.000057257000000,0.000019147000000,0.000071479000000 +0.000015591500000,0.006938832000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082936000000,0.000079381000000,0.000142590000000,0.000103084000000,0.000133504000000,0.006988215000000,0.000122442000000,0.000122047000000,0.000063973000000,0.000068319000000,0.000019147000000,0.000071874000000 +0.000015196500000,0.006715227000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000016382000000,0.000048565000000,0.000018159500000,0.000039874000000,0.000013291333333,0.000053307000000,0.000084516000000,0.000081356000000,0.000184862000000,0.000102689000000,0.000097158000000,0.006805301000000,0.000122047000000,0.000121256000000,0.000060022000000,0.000054097000000,0.000020332000000,0.000071874000000 +0.000015986500000,0.006815968000000,0.000026060500000,0.000013028000000,0.000040664000000,0.000015986500000,0.000048565000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000052911000000,0.000082936000000,0.000083726000000,0.000139430000000,0.000101899000000,0.000096368000000,0.006838881000000,0.000122047000000,0.000120862000000,0.000056861000000,0.000053702000000,0.000019937000000,0.000071874000000 +0.000015393500000,0.007016264000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000049356000000,0.000018159000000,0.000039874000000,0.000013423333333,0.000052912000000,0.000079380000000,0.000082146000000,0.000174195000000,0.000102294000000,0.000095973000000,0.006620807000000,0.000122837000000,0.000122837000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000070689000000 +0.000015591500000,0.007519177000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048566000000,0.000018159500000,0.000040270000000,0.000013160000000,0.000055281000000,0.000080170000000,0.000080566000000,0.000181306000000,0.000101899000000,0.000128368000000,0.007418831000000,0.000122047000000,0.000141800000000,0.000057256000000,0.000053702000000,0.000019147000000,0.000071084000000 +0.000015986500000,0.006785548000000,0.000026456000000,0.000013554666667,0.000040269000000,0.000025863000000,0.000118887000000,0.000018159500000,0.000040665000000,0.000013159666667,0.000069503000000,0.000079380000000,0.000080171000000,0.000142195000000,0.000137455000000,0.000096368000000,0.007447671000000,0.000121652000000,0.000122442000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000072269000000 +0.000015986500000,0.007171128000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000032381500000,0.000061997000000,0.000042456000000,0.000039480000000,0.000013159666667,0.000052911000000,0.000082146000000,0.000079381000000,0.000206985000000,0.000101899000000,0.000097948000000,0.007131226000000,0.000158788000000,0.000120862000000,0.000056861000000,0.000054096000000,0.000018949000000,0.000071874000000 +0.000015591500000,0.006802535000000,0.000026258500000,0.000013818000000,0.000040269000000,0.000015591500000,0.000064763000000,0.000027443000000,0.000039084000000,0.000013554666667,0.000052911000000,0.000082145000000,0.000116516000000,0.000141010000000,0.000101899000000,0.000096763000000,0.007332313000000,0.000122442000000,0.000122837000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000071875000000 +0.000015591500000,0.006934486000000,0.000044628500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049355000000,0.000017961500000,0.000039084000000,0.000013423000000,0.000055282000000,0.000082541000000,0.000081355000000,0.000176170000000,0.000102689000000,0.000116121000000,0.007056560000000,0.000122047000000,0.000120862000000,0.000056862000000,0.000054096000000,0.000018751500000,0.000071084000000 +0.000015986500000,0.007303868000000,0.000026258000000,0.000013818000000,0.000039875000000,0.000016381500000,0.000049356000000,0.000017962000000,0.000039084000000,0.000013554666667,0.000055282000000,0.000083331000000,0.000081355000000,0.000208170000000,0.000102689000000,0.000127182000000,0.006798190000000,0.000122442000000,0.000122837000000,0.000056862000000,0.000053701000000,0.000019344500000,0.000071874000000 +0.000015393500000,0.006956215000000,0.000026258000000,0.000018822000000,0.000040270000000,0.000015591000000,0.000048566000000,0.000017962000000,0.000039084000000,0.000013818333333,0.000053701000000,0.000110985000000,0.000080170000000,0.000138245000000,0.000102294000000,0.000097158000000,0.006983868000000,0.000122442000000,0.000122838000000,0.000057256000000,0.000053701000000,0.000019147000000,0.000071479000000 +0.000015591500000,0.007271868000000,0.000026455500000,0.000013291333333,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039874000000,0.000013554666667,0.000053702000000,0.000081751000000,0.000080170000000,0.000171429000000,0.000101899000000,0.000096368000000,0.006774092000000,0.000122047000000,0.000120467000000,0.000057257000000,0.000089652000000,0.000027246000000,0.000071874000000 +0.000015394000000,0.006905647000000,0.000026455500000,0.000013159666667,0.000039875000000,0.000016381500000,0.000050936000000,0.000017962000000,0.000039479000000,0.000013028000000,0.000053306000000,0.000081750000000,0.000079775000000,0.000138640000000,0.000102689000000,0.000128763000000,0.006741301000000,0.000122837000000,0.000158393000000,0.000093602000000,0.000066344000000,0.000018751500000,0.000071480000000 +0.000015591500000,0.006753943000000,0.000026455500000,0.000013291666667,0.000040664000000,0.000016381500000,0.000048566000000,0.000017962000000,0.000039084000000,0.000013555000000,0.000052911000000,0.000081751000000,0.000081750000000,0.000190788000000,0.000258738000000,0.000110590000000,0.006831375000000,0.000122837000000,0.000122047000000,0.000057652000000,0.000053702000000,0.000018949500000,0.000076220000000 +0.000015394000000,0.006792659000000,0.000026258000000,0.000013554666667,0.000040664000000,0.000015789000000,0.000048961000000,0.000017961500000,0.000039084000000,0.000013555000000,0.000053306000000,0.000079776000000,0.000079775000000,0.000133108000000,0.000111775000000,0.000096763000000,0.007220511000000,0.000151677000000,0.000121257000000,0.000056862000000,0.000053702000000,0.000019542000000,0.000086096000000 +0.000015591000000,0.006674930000000,0.000026455500000,0.000013159666667,0.000058047000000,0.000016381500000,0.000048565000000,0.000017961500000,0.000039084000000,0.000026196666667,0.000053307000000,0.000081356000000,0.000082146000000,0.000204615000000,0.000148516000000,0.000096368000000,0.006674140000000,0.000120862000000,0.000122046000000,0.000056862000000,0.000054492000000,0.000018949500000,0.000071875000000 +0.000015394000000,0.006889449000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048565000000,0.000017961500000,0.000039084000000,0.000027513333333,0.000053306000000,0.000082146000000,0.000080566000000,0.000180516000000,0.000256368000000,0.000096764000000,0.006770536000000,0.000122442000000,0.000121257000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000072664000000 +0.000015789000000,0.006926980000000,0.000026258000000,0.000018295333333,0.000040269000000,0.000016579000000,0.000048961000000,0.000017962000000,0.000057257000000,0.000014871666667,0.000053306000000,0.000081355000000,0.000118492000000,0.000131133000000,0.000103084000000,0.000199084000000,0.007001646000000,0.000122047000000,0.000122838000000,0.000057652000000,0.000053701000000,0.000018752000000,0.000071874000000 +0.000040677500000,0.006994140000000,0.000026455500000,0.000013818000000,0.000040269000000,0.000015986500000,0.000048566000000,0.000017962000000,0.000041849000000,0.000036336666667,0.000053306000000,0.000083726000000,0.000097158000000,0.000173010000000,0.000103084000000,0.000096368000000,0.006828214000000,0.000122442000000,0.000121652000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000071874000000 +0.000023097500000,0.006730240000000,0.000027048500000,0.000013159666667,0.000040269000000,0.000015591500000,0.000049356000000,0.000017962000000,0.000052121000000,0.000036995333333,0.000052911000000,0.000083726000000,0.000079381000000,0.000132319000000,0.000165109000000,0.000097553000000,0.006962141000000,0.000121652000000,0.000138640000000,0.000058047000000,0.000053306000000,0.000018949500000,0.000071479000000 +0.000016184000000,0.006804511000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000016382000000,0.000048565000000,0.000018159500000,0.000039084000000,0.000045159666667,0.000125603000000,0.000119281000000,0.000082541000000,0.000167084000000,0.000102689000000,0.000096763000000,0.007060510000000,0.000121652000000,0.000122442000000,0.000057652000000,0.000073849000000,0.000018949500000,0.000071479000000 +0.000015986500000,0.006842831000000,0.000030406000000,0.000013160000000,0.000039874000000,0.000016381500000,0.000048565000000,0.000017962000000,0.000039084000000,0.000037258666667,0.000053306000000,0.000095973000000,0.000080171000000,0.000193948000000,0.000101899000000,0.000095973000000,0.007343770000000,0.000301800000000,0.000121652000000,0.000056466000000,0.000070294000000,0.000019344500000,0.000073060000000 +0.000015591500000,0.007118979000000,0.000026456000000,0.000013291333333,0.000039875000000,0.000016381500000,0.000085306000000,0.000017961500000,0.000039084000000,0.000043184333333,0.000053307000000,0.000080565000000,0.000084121000000,0.000321553000000,0.000103084000000,0.000096368000000,0.006794239000000,0.000134689000000,0.000122442000000,0.000056862000000,0.000067134000000,0.000018752000000,0.000071479000000 +0.000015591500000,0.006834931000000,0.000046208500000,0.000013028000000,0.000040270000000,0.000016579000000,0.000048961000000,0.000017961500000,0.000060022000000,0.000044501333333,0.000053701000000,0.000082540000000,0.000080961000000,0.000166294000000,0.000107430000000,0.000096368000000,0.007165597000000,0.000121257000000,0.000121652000000,0.000056861000000,0.000053701000000,0.000018949000000,0.000071479000000 +0.000015394000000,0.006859819000000,0.000041270500000,0.000013160000000,0.000040270000000,0.000016381500000,0.000050146000000,0.000035739500000,0.000055677000000,0.000041867666667,0.000053702000000,0.000082936000000,0.000083726000000,0.000132713000000,0.000103084000000,0.000096368000000,0.006684808000000,0.000123232000000,0.000122837000000,0.000058047000000,0.000053306000000,0.000018949500000,0.000071874000000 +0.000015986500000,0.007215374000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000039480000000,0.000041341000000,0.000053306000000,0.000083726000000,0.000080170000000,0.000171035000000,0.000102688000000,0.000132319000000,0.006814783000000,0.000122838000000,0.000122047000000,0.000056862000000,0.000054096000000,0.000019147000000,0.000071874000000 +0.000015789000000,0.007124906000000,0.000026455500000,0.000013554666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000027640500000,0.000039480000000,0.000042262666667,0.000052912000000,0.000082146000000,0.000079775000000,0.000214887000000,0.000102689000000,0.000097553000000,0.007270288000000,0.000122047000000,0.000157602000000,0.000059628000000,0.000100318000000,0.000018752000000,0.000071874000000 +0.000015394000000,0.007115820000000,0.000058258500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000018356500000,0.000041060000000,0.000035810000000,0.000054491000000,0.000082146000000,0.000081355000000,0.000164714000000,0.000173010000000,0.000096763000000,0.007206289000000,0.000187628000000,0.000122837000000,0.000127973000000,0.000053701000000,0.000018751500000,0.000071084000000 +0.000015394000000,0.006842437000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000026855333333,0.000054492000000,0.000079381000000,0.000097948000000,0.000174590000000,0.000101503000000,0.000097158000000,0.006684017000000,0.000122837000000,0.000121257000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000071084000000 +0.000016184000000,0.006739325000000,0.000026258000000,0.000015793333333,0.000039874000000,0.000016777000000,0.000048171000000,0.000018159500000,0.000039084000000,0.000017768666667,0.000056467000000,0.000079776000000,0.000079775000000,0.000199479000000,0.000103874000000,0.000097554000000,0.006829795000000,0.000122442000000,0.000122442000000,0.000056862000000,0.000054097000000,0.000018751500000,0.000071479000000 +0.000016184000000,0.006838486000000,0.000043641000000,0.000013159666667,0.000040269000000,0.000032184000000,0.000049750000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000117701000000,0.000097553000000,0.000170245000000,0.000102294000000,0.000095973000000,0.008764411000000,0.000122047000000,0.000122047000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000072269000000 +0.000016184000000,0.006888264000000,0.000060036000000,0.000013028000000,0.000040269000000,0.000017369000000,0.000050541000000,0.000018159000000,0.000039479000000,0.000013028333333,0.000052912000000,0.000082146000000,0.000080171000000,0.000171825000000,0.000103479000000,0.000096763000000,0.006876807000000,0.000122837000000,0.000142590000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000072269000000 +0.000015394000000,0.006723523000000,0.000028036000000,0.000013028000000,0.000040269000000,0.000022307500000,0.000049751000000,0.000018159000000,0.000039480000000,0.000013555000000,0.000053701000000,0.000082146000000,0.000079776000000,0.000171429000000,0.000104269000000,0.000098739000000,0.007293992000000,0.000122047000000,0.000152071000000,0.000056862000000,0.000053702000000,0.000018752000000,0.000071480000000 +0.000015591500000,0.006727079000000,0.000029418500000,0.000013028000000,0.000040269000000,0.000016579000000,0.000049355000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053702000000,0.000080565000000,0.000079776000000,0.000132714000000,0.000103479000000,0.000096763000000,0.007027326000000,0.000142985000000,0.000247281000000,0.000056862000000,0.000053702000000,0.000036727000000,0.000071874000000 +0.000015393500000,0.006830190000000,0.000028233500000,0.000013159666667,0.000039875000000,0.000015986500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000057652000000,0.000081750000000,0.000082541000000,0.000167479000000,0.000101899000000,0.000180516000000,0.007641251000000,0.000154837000000,0.000141800000000,0.000056467000000,0.000054097000000,0.000019147000000,0.000071874000000 +0.000015394000000,0.006855868000000,0.000028036000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000079380000000,0.000079380000000,0.000170245000000,0.000171825000000,0.000096368000000,0.006926585000000,0.000122047000000,0.000122442000000,0.000056467000000,0.000053701000000,0.000019147000000,0.000071479000000 +0.000015591500000,0.006977547000000,0.000028233000000,0.000013028000000,0.000095183000000,0.000021517000000,0.000048565000000,0.000018159500000,0.000039479000000,0.000025143333333,0.000057257000000,0.000079381000000,0.000082146000000,0.000131133000000,0.000115331000000,0.000096368000000,0.007169942000000,0.000122837000000,0.000121652000000,0.000056862000000,0.000054096000000,0.000019147000000,0.000073454000000 +0.000015789000000,0.006819918000000,0.000046998500000,0.000013028000000,0.000068714000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039085000000,0.000013291333333,0.000053307000000,0.000082936000000,0.000079775000000,0.000202244000000,0.000103479000000,0.000095973000000,0.008146535000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000019147000000,0.000071874000000 +0.000015986500000,0.006994535000000,0.000036332500000,0.000013159666667,0.000042245000000,0.000016184000000,0.000049356000000,0.000018554000000,0.000039479000000,0.000013949666667,0.000052911000000,0.000082540000000,0.000120071000000,0.000130738000000,0.000104664000000,0.000095182000000,0.007263967000000,0.000121652000000,0.000122837000000,0.000056862000000,0.000054096000000,0.000018752000000,0.000071479000000 +0.000015394000000,0.006704560000000,0.000028826000000,0.000014345000000,0.000041454000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013686666667,0.000054491000000,0.000078985000000,0.000094788000000,0.000171034000000,0.000101899000000,0.000096763000000,0.007006782000000,0.000122047000000,0.000158393000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000071084000000 +0.000015393500000,0.006827819000000,0.000049171500000,0.000013686333333,0.000040269000000,0.000015789000000,0.000120466000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000081750000000,0.000078986000000,0.000133899000000,0.000101899000000,0.000097949000000,0.007593449000000,0.000185652000000,0.000121651000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000071479000000 +0.000025468000000,0.006846783000000,0.000026653500000,0.000013159666667,0.000041060000000,0.000016381500000,0.000050146000000,0.000019147000000,0.000039084000000,0.000013554666667,0.000053306000000,0.000080170000000,0.000080566000000,0.000163528000000,0.000102294000000,0.000097158000000,0.007064857000000,0.000226343000000,0.000122047000000,0.000056467000000,0.000053306000000,0.000018949000000,0.000072269000000 +0.000041863000000,0.006864955000000,0.000026455500000,0.000013028000000,0.000041455000000,0.000016381500000,0.000048961000000,0.000018159000000,0.000039084000000,0.000013554666667,0.000052911000000,0.000080171000000,0.000081751000000,0.000256763000000,0.000101899000000,0.000133108000000,0.006870486000000,0.000165504000000,0.000122838000000,0.000134294000000,0.000089652000000,0.000019739500000,0.000072269000000 +0.000015591500000,0.006883128000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048170000000,0.000018159500000,0.000039479000000,0.000013159666667,0.000057257000000,0.000079380000000,0.000079776000000,0.000200269000000,0.000138640000000,0.000096763000000,0.006900511000000,0.000129948000000,0.000122047000000,0.000088467000000,0.000054096000000,0.000018554500000,0.000071874000000 +0.000015591500000,0.006880758000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016579000000,0.000049355000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000082146000000,0.000081356000000,0.000244516000000,0.000115726000000,0.000097554000000,0.006715227000000,0.000128763000000,0.000122838000000,0.000056862000000,0.000054096000000,0.000019937500000,0.000071479000000 +0.000015591500000,0.007037992000000,0.000026455500000,0.000013291666667,0.000040270000000,0.000015789000000,0.000050146000000,0.000018159500000,0.000039479000000,0.000013949666667,0.000054097000000,0.000079775000000,0.000081355000000,0.000131134000000,0.000103084000000,0.000097158000000,0.006730634000000,0.000187627000000,0.000179331000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000074639000000 +0.000015986500000,0.007000856000000,0.000044430500000,0.000013159666667,0.000040270000000,0.000016382000000,0.000050146000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000079380000000,0.000167480000000,0.000102689000000,0.000097158000000,0.007045104000000,0.000331824000000,0.000158392000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000071084000000 +0.000015394000000,0.006866930000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000054492000000,0.000081356000000,0.000082540000000,0.000166294000000,0.000101899000000,0.000096368000000,0.006872856000000,0.000133109000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000071479000000 +0.000015986500000,0.006846387000000,0.000035344500000,0.000013159666667,0.000041059000000,0.000016579000000,0.000048566000000,0.000018357000000,0.000039480000000,0.000013028000000,0.000052911000000,0.000079775000000,0.000116516000000,0.000166689000000,0.000103874000000,0.000096763000000,0.006765004000000,0.000317602000000,0.000122047000000,0.000059233000000,0.000053701000000,0.000018752000000,0.000071479000000 +0.000015591500000,0.006717597000000,0.000032974000000,0.000013028000000,0.000041060000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000081356000000,0.000080170000000,0.000165503000000,0.000101899000000,0.000096763000000,0.006914733000000,0.000189208000000,0.000123232000000,0.000056467000000,0.000054096000000,0.000019739500000,0.000072270000000 +0.000015196500000,0.006774881000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000015986000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423333333,0.000070689000000,0.000082146000000,0.000079380000000,0.000132319000000,0.000101898000000,0.000097553000000,0.006737351000000,0.000275725000000,0.000121257000000,0.000057257000000,0.000054491000000,0.000019344500000,0.000071479000000 +0.000015591500000,0.007046289000000,0.000026258000000,0.000025802000000,0.000040269000000,0.000015789000000,0.000048960000000,0.000036134500000,0.000042244000000,0.000013555000000,0.000073850000000,0.000078986000000,0.000079776000000,0.000166294000000,0.000120862000000,0.000132714000000,0.006795819000000,0.000142985000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000071874000000 +0.000016184000000,0.007310189000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049751000000,0.000018159500000,0.000039084000000,0.000013555000000,0.000104664000000,0.000118096000000,0.000079776000000,0.000134689000000,0.000117306000000,0.000097553000000,0.007153746000000,0.000128763000000,0.000121257000000,0.000056466000000,0.000053701000000,0.000018949500000,0.000071875000000 +0.000015591500000,0.006843227000000,0.000026060500000,0.000013028000000,0.000039874000000,0.000015591500000,0.000048171000000,0.000018159000000,0.000041059000000,0.000013423000000,0.000053702000000,0.000083331000000,0.000082541000000,0.000165109000000,0.000103084000000,0.000097158000000,0.007356017000000,0.000129948000000,0.000176566000000,0.000056862000000,0.000053701000000,0.000018949000000,0.000071479000000 +0.000015394000000,0.007195227000000,0.000026653000000,0.000013160000000,0.000041454000000,0.000015591500000,0.000047775000000,0.000026653000000,0.000039874000000,0.000013028000000,0.000052911000000,0.000081751000000,0.000081750000000,0.000348022000000,0.000101899000000,0.000096763000000,0.006769745000000,0.000175775000000,0.000136269000000,0.000056861000000,0.000054096000000,0.000029418500000,0.000070689000000 +0.000015591500000,0.006774091000000,0.000026258000000,0.000013159666667,0.000076220000000,0.000016381500000,0.000047775000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000053307000000,0.000080566000000,0.000082936000000,0.000147331000000,0.000103084000000,0.000097553000000,0.006731425000000,0.000162738000000,0.000121257000000,0.000056862000000,0.000053702000000,0.000018949000000,0.000071874000000 +0.000015394000000,0.006722733000000,0.000026455500000,0.000013028000000,0.000041454000000,0.000034949500000,0.000081750000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000052911000000,0.000079380000000,0.000079776000000,0.000252417000000,0.000103874000000,0.000096763000000,0.006787128000000,0.000130343000000,0.000121652000000,0.000092812000000,0.000054097000000,0.000018752000000,0.000072269000000 +0.000015986500000,0.006985449000000,0.000026850500000,0.000013159666667,0.000040664000000,0.000032579000000,0.000064368000000,0.000018159500000,0.000039084000000,0.000037653333333,0.000054096000000,0.000083726000000,0.000084912000000,0.000136664000000,0.000101899000000,0.000096763000000,0.006814388000000,0.000131133000000,0.000121257000000,0.000056861000000,0.000054097000000,0.000018949500000,0.000071084000000 +0.000015986500000,0.007171127000000,0.000026653500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000050541000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000080171000000,0.000079380000000,0.000253602000000,0.000101899000000,0.000097158000000,0.007058931000000,0.000129553000000,0.000122047000000,0.000057257000000,0.000054492000000,0.000018752000000,0.000071874000000 +0.000015394000000,0.006893004000000,0.000026258000000,0.000013291333333,0.000040664000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013028000000,0.000054491000000,0.000080566000000,0.000154047000000,0.000135479000000,0.000102294000000,0.000097159000000,0.007122536000000,0.000130343000000,0.000122047000000,0.000056861000000,0.000147330000000,0.000018949500000,0.000072270000000 +0.000015591500000,0.006664264000000,0.000026258500000,0.000013028333333,0.000040269000000,0.000015591500000,0.000050540000000,0.000018159000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000081751000000,0.000080566000000,0.000169849000000,0.000138245000000,0.000135084000000,0.007693399000000,0.000128763000000,0.000211726000000,0.000057257000000,0.000091627000000,0.000018949500000,0.000071479000000 +0.000015591500000,0.006835721000000,0.000044826000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000026851000000,0.000039479000000,0.000013423000000,0.000052911000000,0.000079381000000,0.000080565000000,0.000165108000000,0.000102688000000,0.000169850000000,0.006726289000000,0.000156812000000,0.000121652000000,0.000056861000000,0.000073455000000,0.000019147000000,0.000071874000000 +0.000015986500000,0.006763424000000,0.000026851000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000018159500000,0.000039084000000,0.000013291333333,0.000056466000000,0.000081356000000,0.000081355000000,0.000130739000000,0.000102294000000,0.000289553000000,0.006791078000000,0.000143380000000,0.000122047000000,0.000057257000000,0.000069109000000,0.000019147000000,0.000071479000000 +0.000016579500000,0.007164807000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000089257000000,0.000082541000000,0.000080170000000,0.000162343000000,0.000101899000000,0.000304170000000,0.006898931000000,0.000218442000000,0.000121257000000,0.000061207000000,0.000054096000000,0.000018949500000,0.000072664000000 +0.000015394000000,0.006931326000000,0.000027246000000,0.000013159666667,0.000040270000000,0.000015789000000,0.000049355000000,0.000018356500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000102293000000,0.000080565000000,0.000136269000000,0.000102689000000,0.000133504000000,0.006796215000000,0.000128763000000,0.000122442000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000071479000000 +0.000015591500000,0.007117795000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000016381500000,0.000048565000000,0.000034949500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000098738000000,0.000081355000000,0.000292319000000,0.000104664000000,0.000097158000000,0.006748412000000,0.000196318000000,0.000123232000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000071875000000 +0.000015394000000,0.006775276000000,0.000026258500000,0.000013028000000,0.000040270000000,0.000015986500000,0.000048566000000,0.000019542000000,0.000039084000000,0.000013423333333,0.000052912000000,0.000097553000000,0.000080960000000,0.000204220000000,0.000101898000000,0.000096763000000,0.006989794000000,0.000161158000000,0.000121652000000,0.000056861000000,0.000054096000000,0.000018752000000,0.000071084000000 +0.000015789000000,0.006727079000000,0.000026455500000,0.000013686333333,0.000040269000000,0.000015789000000,0.000048171000000,0.000024875500000,0.000040664000000,0.000013555000000,0.000053306000000,0.000083331000000,0.000079380000000,0.000132319000000,0.000103084000000,0.000096763000000,0.007278190000000,0.000129948000000,0.000157997000000,0.000056862000000,0.000055282000000,0.000019147000000,0.000071874000000 +0.000015986500000,0.006836906000000,0.000027246000000,0.000013028000000,0.000039874000000,0.000015591500000,0.000048171000000,0.000017962000000,0.000040664000000,0.000013423000000,0.000052911000000,0.000081751000000,0.000079380000000,0.000305356000000,0.000148912000000,0.000095973000000,0.006928955000000,0.000129553000000,0.000121652000000,0.000056862000000,0.000054097000000,0.000019147000000,0.000072269000000 +0.000015591000000,0.007107918000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048961000000,0.000018159500000,0.000039479000000,0.000013554666667,0.000053701000000,0.000079775000000,0.000117701000000,0.000157207000000,0.000101504000000,0.000095973000000,0.006879572000000,0.000144565000000,0.000122047000000,0.000057257000000,0.000054492000000,0.000018949500000,0.000082146000000 +0.000015394000000,0.006938437000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000018159000000,0.000039479000000,0.000013159666667,0.000054491000000,0.000082146000000,0.000081355000000,0.000164714000000,0.000102294000000,0.000096763000000,0.006746437000000,0.000122442000000,0.000122442000000,0.000057652000000,0.000053702000000,0.000019147000000,0.000071084000000 +0.000015591500000,0.006917498000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016579000000,0.000048961000000,0.000018159000000,0.000039480000000,0.000013423000000,0.000053306000000,0.000082936000000,0.000080170000000,0.000130739000000,0.000105060000000,0.000096763000000,0.006777252000000,0.000122047000000,0.000121652000000,0.000056072000000,0.000053306000000,0.000018752000000,0.000071084000000 +0.000015986500000,0.006958584000000,0.000026060500000,0.000013950000000,0.000040269000000,0.000015591500000,0.000050936000000,0.000018357000000,0.000039084000000,0.000013423000000,0.000053307000000,0.000117702000000,0.000082146000000,0.000166294000000,0.000102294000000,0.000096763000000,0.006861795000000,0.000122837000000,0.000122837000000,0.000131924000000,0.000054097000000,0.000018949500000,0.000071874000000 +0.000015394000000,0.006836511000000,0.000026258000000,0.000014871666667,0.000039874000000,0.000016381500000,0.000048565000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000079776000000,0.000080961000000,0.000166294000000,0.000104269000000,0.000135479000000,0.007017844000000,0.000157997000000,0.000122047000000,0.000157997000000,0.000125207000000,0.000018949500000,0.000071084000000 +0.000015591500000,0.006764214000000,0.000026455500000,0.000013555000000,0.000060022000000,0.000016579000000,0.000118096000000,0.000018159000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000082541000000,0.000080566000000,0.000131133000000,0.000101899000000,0.000113356000000,0.006905251000000,0.000121257000000,0.000193948000000,0.000142985000000,0.000053701000000,0.000019147000000,0.000109405000000 +0.000015591500000,0.007253300000000,0.000044628500000,0.000013028000000,0.000075429000000,0.000016381500000,0.000061998000000,0.000018159000000,0.000039479000000,0.000014081666667,0.000053306000000,0.000081356000000,0.000081751000000,0.000199084000000,0.000116121000000,0.000097948000000,0.006992956000000,0.000122442000000,0.000122047000000,0.000077010000000,0.000053701000000,0.000018949500000,0.000071084000000 +0.000015394000000,0.006827030000000,0.000026456000000,0.000013160000000,0.000077010000000,0.000016579000000,0.000050936000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081355000000,0.000082936000000,0.000131133000000,0.000139035000000,0.000096763000000,0.007134782000000,0.000122047000000,0.000125998000000,0.000060418000000,0.000053701000000,0.000018752000000,0.000071480000000 +0.000015394000000,0.006932115000000,0.000026455500000,0.000013950000000,0.000110195000000,0.000016382000000,0.000048960000000,0.000018159500000,0.000039479000000,0.000019875666667,0.000054492000000,0.000079380000000,0.000081355000000,0.000161948000000,0.000101899000000,0.000096763000000,0.006758288000000,0.000122046000000,0.000121257000000,0.000060022000000,0.000053306000000,0.000028826000000,0.000071084000000 +0.000015591500000,0.007310189000000,0.000026258500000,0.000013159666667,0.000114541000000,0.000015986500000,0.000048566000000,0.000018159000000,0.000039084000000,0.000018690333333,0.000095973000000,0.000084911000000,0.000082146000000,0.000131133000000,0.000103479000000,0.000096368000000,0.006840856000000,0.000122442000000,0.000122442000000,0.000060417000000,0.000053306000000,0.000018751500000,0.000070689000000 +0.000015591000000,0.007084610000000,0.000026060500000,0.000013423000000,0.000122837000000,0.000016381500000,0.000048960000000,0.000018159500000,0.000039479000000,0.000013423000000,0.000053702000000,0.000078986000000,0.000115726000000,0.000240171000000,0.000103084000000,0.000097158000000,0.006959770000000,0.000122442000000,0.000122047000000,0.000060417000000,0.000053306000000,0.000018554500000,0.000071874000000 +0.000015394000000,0.007207079000000,0.000026455500000,0.000013159666667,0.000124813000000,0.000015591000000,0.000048960000000,0.000018357000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000087282000000,0.000081356000000,0.000302985000000,0.000101899000000,0.000095973000000,0.007153745000000,0.000141405000000,0.000121652000000,0.000060417000000,0.000054886000000,0.000018752000000,0.000071874000000 +0.000015591500000,0.006699820000000,0.000026258000000,0.000013159666667,0.000077800000000,0.000034159500000,0.000048961000000,0.000018159500000,0.000039480000000,0.000013028000000,0.000052911000000,0.000079776000000,0.000081750000000,0.000131134000000,0.000104665000000,0.000096763000000,0.006655177000000,0.000123627000000,0.000158393000000,0.000060022000000,0.000054886000000,0.000018752000000,0.000071084000000 +0.000015591500000,0.006824659000000,0.000026455500000,0.000013159666667,0.000056467000000,0.000016382000000,0.000048566000000,0.000018159500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000084121000000,0.000082145000000,0.000170245000000,0.000101504000000,0.000162343000000,0.006769350000000,0.000122442000000,0.000121651000000,0.000060417000000,0.000053701000000,0.000018752000000,0.000072270000000 +0.000015591500000,0.006910783000000,0.000026258000000,0.000013159666667,0.000054886000000,0.000016381500000,0.000048961000000,0.000027245500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000081750000000,0.000081356000000,0.000135479000000,0.000103084000000,0.000110986000000,0.006962535000000,0.000122837000000,0.000122837000000,0.000060812000000,0.000054097000000,0.000018752000000,0.000071874000000 +0.000016184500000,0.006899325000000,0.000026258000000,0.000013555000000,0.000039874000000,0.000015591500000,0.000048565000000,0.000027443500000,0.000039084000000,0.000013423000000,0.000056072000000,0.000081751000000,0.000081356000000,0.000163134000000,0.000101899000000,0.000097158000000,0.006820313000000,0.000121652000000,0.000122442000000,0.000060418000000,0.000053702000000,0.000019344500000,0.000070689000000 +0.000015591500000,0.007044708000000,0.000030801000000,0.000013159666667,0.000040269000000,0.000015788500000,0.000048961000000,0.000018752000000,0.000039084000000,0.000013028333333,0.000053306000000,0.000082541000000,0.000079381000000,0.000166688000000,0.000139034000000,0.000097158000000,0.007339029000000,0.000122442000000,0.000122442000000,0.000060813000000,0.000054097000000,0.000018751500000,0.000070689000000 +0.000016381500000,0.006762239000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000018159000000,0.000039084000000,0.000013291333333,0.000054887000000,0.000082146000000,0.000081356000000,0.000133899000000,0.000101899000000,0.000095973000000,0.006972412000000,0.000121652000000,0.000121652000000,0.000060023000000,0.000054097000000,0.000018752000000,0.000072269000000 +0.000015789000000,0.006713251000000,0.000026258000000,0.000013160000000,0.000081356000000,0.000016184000000,0.000048566000000,0.000019344500000,0.000040664000000,0.000013291333333,0.000053701000000,0.000081750000000,0.000080566000000,0.000276911000000,0.000101109000000,0.000097554000000,0.007382091000000,0.000122442000000,0.000122837000000,0.000060022000000,0.000053307000000,0.000018751500000,0.000072270000000 +0.000015394000000,0.006874437000000,0.000026653500000,0.000014213333333,0.000054097000000,0.000017567000000,0.000048566000000,0.000019344500000,0.000041455000000,0.000013291333333,0.000058047000000,0.000080170000000,0.000082146000000,0.000136664000000,0.000102689000000,0.000097158000000,0.006792659000000,0.000193948000000,0.000157602000000,0.000060022000000,0.000054097000000,0.000018949500000,0.000072269000000 +0.000016184000000,0.006756313000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000019542000000,0.000042245000000,0.000013291333333,0.000052912000000,0.000080170000000,0.000086886000000,0.000167479000000,0.000101899000000,0.000096763000000,0.006815967000000,0.000121652000000,0.000121257000000,0.000060022000000,0.000135084000000,0.000018949500000,0.000071874000000 +0.000015591500000,0.007213795000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000015986500000,0.000086886000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082146000000,0.000124417000000,0.000132319000000,0.000101898000000,0.000116911000000,0.006834536000000,0.000122442000000,0.000123232000000,0.000060022000000,0.000053702000000,0.000019147000000,0.000071875000000 +0.000015393500000,0.006902486000000,0.000044826000000,0.000013028000000,0.000039875000000,0.000016184000000,0.000049355000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000052912000000,0.000082541000000,0.000081751000000,0.000163528000000,0.000103479000000,0.000127973000000,0.006846387000000,0.000122442000000,0.000122047000000,0.000060022000000,0.000053702000000,0.000018751500000,0.000071084000000 +0.000025270500000,0.007034437000000,0.000026653000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048566000000,0.000019147000000,0.000039084000000,0.000013291666667,0.000053306000000,0.000082146000000,0.000080960000000,0.000200664000000,0.000101503000000,0.000096763000000,0.006702190000000,0.000122837000000,0.000122837000000,0.000060022000000,0.000053307000000,0.000018752000000,0.000072270000000 +0.000023690500000,0.006744857000000,0.000026653000000,0.000013291333333,0.000039875000000,0.000015789000000,0.000048171000000,0.000019344500000,0.000039084000000,0.000013423333333,0.000089652000000,0.000141800000000,0.000082936000000,0.000132713000000,0.000122837000000,0.000096763000000,0.007257251000000,0.000121652000000,0.000122047000000,0.000060417000000,0.000053701000000,0.000018751500000,0.000071084000000 +0.000016184000000,0.006809647000000,0.000026258000000,0.000013159666667,0.000041850000000,0.000016579000000,0.000048171000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000221207000000,0.000080171000000,0.000243331000000,0.000293503000000,0.000097158000000,0.006732215000000,0.000122837000000,0.000122837000000,0.000061602000000,0.000053306000000,0.000018949500000,0.000070689000000 +0.000015394000000,0.006835720000000,0.000026258000000,0.000021456000000,0.000039875000000,0.000016579000000,0.000048960000000,0.000019147000000,0.000042639000000,0.000013028000000,0.000054886000000,0.000103874000000,0.000081356000000,0.000131133000000,0.000156417000000,0.000095973000000,0.006894585000000,0.000171825000000,0.000141010000000,0.000060813000000,0.000054096000000,0.000018949000000,0.000071084000000 +0.000015591500000,0.006768166000000,0.000026851000000,0.000033307666667,0.000040270000000,0.000016579000000,0.000048960000000,0.000019344500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000099134000000,0.000086097000000,0.000168269000000,0.000119677000000,0.000098739000000,0.006887078000000,0.000122047000000,0.000185257000000,0.000060418000000,0.000053701000000,0.000018752000000,0.000075429000000 +0.000015393500000,0.008109003000000,0.000026258000000,0.000041735666667,0.000040270000000,0.000016184000000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000075429000000,0.000079381000000,0.000081751000000,0.000130738000000,0.000101899000000,0.000097158000000,0.006906832000000,0.000123232000000,0.000123232000000,0.000060418000000,0.000054492000000,0.000018554000000,0.000071479000000 +0.000015394000000,0.007596214000000,0.000026258000000,0.000036205000000,0.000039874000000,0.000015986500000,0.000048566000000,0.000019344500000,0.000039084000000,0.000025274666667,0.000069503000000,0.000081356000000,0.000080171000000,0.000547133000000,0.000101899000000,0.000096368000000,0.006809252000000,0.000122047000000,0.000121652000000,0.000095973000000,0.000053702000000,0.000018949500000,0.000071479000000 +0.000026258000000,0.006806486000000,0.000026060500000,0.000036995000000,0.000039874000000,0.000016381500000,0.000048171000000,0.000019147000000,0.000039480000000,0.000013818333333,0.000056071000000,0.000080566000000,0.000082146000000,0.000241750000000,0.000139034000000,0.000133899000000,0.006898141000000,0.000122837000000,0.000121257000000,0.000060417000000,0.000053307000000,0.000018949000000,0.000072269000000 +0.000017369000000,0.006928955000000,0.000026455500000,0.000024880000000,0.000040269000000,0.000015591500000,0.000048565000000,0.000019344500000,0.000039084000000,0.000013423333333,0.000066343000000,0.000079381000000,0.000178540000000,0.000135874000000,0.000102689000000,0.000096763000000,0.007204708000000,0.000121257000000,0.000121651000000,0.000060022000000,0.000053702000000,0.000036332000000,0.000071874000000 +0.000022702500000,0.006991375000000,0.000026653000000,0.000019217333333,0.000040269000000,0.000016184500000,0.000050541000000,0.000019344500000,0.000039874000000,0.000013159666667,0.000052911000000,0.000090442000000,0.000082146000000,0.000213306000000,0.000103479000000,0.000097158000000,0.006801350000000,0.000121652000000,0.000124022000000,0.000060417000000,0.000053702000000,0.000026258000000,0.000071479000000 +0.000015986500000,0.006708906000000,0.000026456000000,0.000013818000000,0.000041059000000,0.000015789000000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053701000000,0.000079380000000,0.000080171000000,0.000131923000000,0.000102689000000,0.000096368000000,0.006917104000000,0.000214096000000,0.000142590000000,0.000060022000000,0.000054097000000,0.000018752000000,0.000071084000000 +0.000015591500000,0.006785943000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048171000000,0.000019147000000,0.000039084000000,0.000013159666667,0.000054492000000,0.000081355000000,0.000084121000000,0.000241355000000,0.000103084000000,0.000095973000000,0.006981893000000,0.000146145000000,0.000138244000000,0.000060812000000,0.000109010000000,0.000018752000000,0.000071874000000 +0.000015591000000,0.007012709000000,0.000026456000000,0.000013028000000,0.000042244000000,0.000015986500000,0.000048566000000,0.000019147000000,0.000039479000000,0.000013159666667,0.000056072000000,0.000081751000000,0.000083726000000,0.000165504000000,0.000102294000000,0.000097553000000,0.006876017000000,0.000129553000000,0.000122047000000,0.000061998000000,0.000067134000000,0.000018752000000,0.000070689000000 +0.000015394000000,0.007164807000000,0.000026258000000,0.000013818000000,0.000039874000000,0.000016381500000,0.000048170000000,0.000019344500000,0.000039480000000,0.000013028000000,0.000054491000000,0.000084911000000,0.000079776000000,0.000132318000000,0.000102689000000,0.000097158000000,0.006665449000000,0.000129948000000,0.000122442000000,0.000060418000000,0.000053702000000,0.000019147000000,0.000071874000000 +0.000015394000000,0.006781203000000,0.000068727500000,0.000013291333333,0.000039874000000,0.000016579000000,0.000047775000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000079775000000,0.000084517000000,0.000263084000000,0.000103084000000,0.000102294000000,0.007122930000000,0.000129158000000,0.000122047000000,0.000060417000000,0.000053702000000,0.000019937000000,0.000071874000000 +0.000015394000000,0.006998486000000,0.000069912000000,0.000013028000000,0.000059627000000,0.000040875000000,0.000049750000000,0.000019344500000,0.000039874000000,0.000017768666667,0.000058047000000,0.000080566000000,0.000082146000000,0.000131133000000,0.000102294000000,0.000101504000000,0.006939622000000,0.000129158000000,0.000121257000000,0.000060022000000,0.000054097000000,0.000018752000000,0.000072270000000 +0.000016184000000,0.006747622000000,0.000034159500000,0.000013686666667,0.000091627000000,0.000016579000000,0.000068714000000,0.000037320000000,0.000039479000000,0.000013423000000,0.000070294000000,0.000081751000000,0.000082541000000,0.000166294000000,0.000137059000000,0.000139034000000,0.006776067000000,0.000129553000000,0.000121652000000,0.000060022000000,0.000053701000000,0.000019146500000,0.000071874000000 +0.000015789000000,0.006821498000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000022900000000,0.000141801000000,0.000029221000000,0.000039084000000,0.000013291333333,0.000053306000000,0.000081751000000,0.000099923000000,0.000132318000000,0.000101899000000,0.000102689000000,0.006694683000000,0.000129948000000,0.000122442000000,0.000060417000000,0.000053306000000,0.000018752000000,0.000070689000000 +0.000015394000000,0.007010338000000,0.000026060500000,0.000013554666667,0.000039874000000,0.000016381500000,0.000152467000000,0.000055097500000,0.000039480000000,0.000013159666667,0.000053307000000,0.000079381000000,0.000083726000000,0.000169454000000,0.000102689000000,0.000102689000000,0.007466238000000,0.000129159000000,0.000158392000000,0.000060812000000,0.000053701000000,0.000018949500000,0.000071875000000 +0.000015591000000,0.006958190000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000137849000000,0.000054307000000,0.000076615000000,0.000013291333333,0.000053306000000,0.000081356000000,0.000078985000000,0.000167084000000,0.000101504000000,0.000103479000000,0.006716412000000,0.000129948000000,0.000122047000000,0.000060022000000,0.000053306000000,0.000018752000000,0.000071084000000 +0.000015591500000,0.007146239000000,0.000026258000000,0.000013555000000,0.000039875000000,0.000016381500000,0.000084516000000,0.000029023500000,0.000039479000000,0.000013291333333,0.000052911000000,0.000081356000000,0.000082541000000,0.000132318000000,0.000101899000000,0.000101899000000,0.007698140000000,0.000129553000000,0.000121257000000,0.000079775000000,0.000054097000000,0.000018752000000,0.000071479000000 +0.000015394000000,0.006823474000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015986500000,0.000069109000000,0.000027640500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000080960000000,0.000082541000000,0.000333010000000,0.000103084000000,0.000103084000000,0.007240263000000,0.000129158000000,0.000121651000000,0.000077010000000,0.000054096000000,0.000018949500000,0.000071874000000 +0.000015789000000,0.006779622000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015591500000,0.000051331000000,0.000019344500000,0.000039479000000,0.000013159666667,0.000054096000000,0.000079775000000,0.000079776000000,0.000133503000000,0.000104664000000,0.000102689000000,0.006995721000000,0.000129158000000,0.000122837000000,0.000060417000000,0.000053701000000,0.000018949500000,0.000071479000000 +0.000015394000000,0.006770536000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000015591500000,0.000062788000000,0.000019147000000,0.000039479000000,0.000013028000000,0.000052911000000,0.000079775000000,0.000079381000000,0.000167084000000,0.000102689000000,0.000101899000000,0.006793054000000,0.000130343000000,0.000122442000000,0.000060417000000,0.000053701000000,0.000018949500000,0.000085702000000 +0.000015986500000,0.006855869000000,0.000026258000000,0.000013291666667,0.000039874000000,0.000016579000000,0.000051331000000,0.000019344500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000081356000000,0.000079776000000,0.000132713000000,0.000137454000000,0.000101899000000,0.007017449000000,0.000130343000000,0.000122442000000,0.000060022000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000015591500000,0.006959770000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000015986500000,0.000048565000000,0.000019937000000,0.000039084000000,0.000013423000000,0.000053307000000,0.000080565000000,0.000116121000000,0.000163529000000,0.000102689000000,0.000137850000000,0.006689943000000,0.000128763000000,0.000281651000000,0.000060417000000,0.000053701000000,0.000019740000000,0.000067133000000 +0.000033369500000,0.007062486000000,0.000026455500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000049356000000,0.000019344500000,0.000039084000000,0.000031596000000,0.000055281000000,0.000079775000000,0.000097158000000,0.000360664000000,0.000169849000000,0.000102294000000,0.006848758000000,0.000128368000000,0.000212121000000,0.000059627000000,0.000116911000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006629499000000,0.000044826000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000085701000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000053307000000,0.000080171000000,0.000153257000000,0.000210541000000,0.000106245000000,0.000102689000000,0.006875227000000,0.000129948000000,0.000139035000000,0.000060417000000,0.000082935000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006993745000000,0.000026653000000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048171000000,0.000019147000000,0.000039875000000,0.000013554666667,0.000053306000000,0.000080171000000,0.000082936000000,0.000319578000000,0.000106245000000,0.000102294000000,0.007368263000000,0.000128763000000,0.000122837000000,0.000060812000000,0.000053701000000,0.000018949500000,0.000082936000000 +0.000015591500000,0.006838881000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000016579500000,0.000048960000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053702000000,0.000079381000000,0.000079381000000,0.000142591000000,0.000263479000000,0.000102294000000,0.006746832000000,0.000129554000000,0.000122047000000,0.000060417000000,0.000053701000000,0.000018949500000,0.000067134000000 +0.000015591500000,0.006733795000000,0.000027048500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049355000000,0.000019542000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000081356000000,0.000082146000000,0.000183677000000,0.000201455000000,0.000101899000000,0.006693894000000,0.000130343000000,0.000163134000000,0.000060022000000,0.000054492000000,0.000046406500000,0.000067529000000 +0.000015986500000,0.006760659000000,0.000026456000000,0.000013028000000,0.000039479000000,0.000016381500000,0.000048566000000,0.000019542000000,0.000040270000000,0.000013423000000,0.000092417000000,0.000082146000000,0.000079381000000,0.000175380000000,0.000102689000000,0.000103084000000,0.006841646000000,0.000129948000000,0.000168269000000,0.000060418000000,0.000053701000000,0.000030011500000,0.000067923000000 +0.000015789000000,0.008241349000000,0.000026850500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013291666667,0.000070689000000,0.000080960000000,0.000082936000000,0.000140615000000,0.000102689000000,0.000101899000000,0.007144263000000,0.000129158000000,0.000121652000000,0.000060418000000,0.000053307000000,0.000054110000000,0.000067923000000 +0.000015591000000,0.006948708000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000051331000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000054492000000,0.000079380000000,0.000079380000000,0.000176961000000,0.000103084000000,0.000102294000000,0.007045894000000,0.000128763000000,0.000122442000000,0.000061208000000,0.000053702000000,0.000043048500000,0.000067528000000 +0.000015394000000,0.006842042000000,0.000026455500000,0.000013159666667,0.000039875000000,0.000015591500000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013818000000,0.000052912000000,0.000081750000000,0.000086492000000,0.000144960000000,0.000103084000000,0.000103479000000,0.006983869000000,0.000129553000000,0.000122047000000,0.000062393000000,0.000053307000000,0.000026850500000,0.000067923000000 +0.000015591500000,0.006787523000000,0.000026060500000,0.000013160000000,0.000039480000000,0.000016381500000,0.000048171000000,0.000019344500000,0.000040269000000,0.000013423000000,0.000053701000000,0.000079775000000,0.000081356000000,0.000180516000000,0.000130738000000,0.000102689000000,0.007169152000000,0.000128763000000,0.000122442000000,0.000079775000000,0.000053702000000,0.000019937000000,0.000067923000000 +0.000015986500000,0.007040757000000,0.000026258000000,0.000013159666667,0.000076220000000,0.000016381500000,0.000049751000000,0.000019344500000,0.000040664000000,0.000013159666667,0.000054887000000,0.000084121000000,0.000083331000000,0.000140615000000,0.000103084000000,0.000103084000000,0.006802141000000,0.000179726000000,0.000121257000000,0.000084516000000,0.000054492000000,0.000019937500000,0.000067528000000 +0.000015591500000,0.006534289000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016579500000,0.000049355000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000081751000000,0.000115726000000,0.000250837000000,0.000102689000000,0.000101504000000,0.007039572000000,0.000129553000000,0.000192368000000,0.000060417000000,0.000054097000000,0.000025468000000,0.000066344000000 +0.000015393500000,0.006723129000000,0.000026653000000,0.000013028333333,0.000039874000000,0.000015591500000,0.000048171000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000053306000000,0.000080170000000,0.000080171000000,0.000174195000000,0.000137059000000,0.000101899000000,0.006755128000000,0.000129948000000,0.000135479000000,0.000060417000000,0.000054492000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006822289000000,0.000026060500000,0.000014740000000,0.000040269000000,0.000037122000000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000054096000000,0.000080960000000,0.000079381000000,0.000140615000000,0.000101504000000,0.000102689000000,0.006957005000000,0.000128368000000,0.000122047000000,0.000060022000000,0.000053701000000,0.000018751500000,0.000067923000000 +0.000015591500000,0.008079374000000,0.000026455500000,0.000013028000000,0.000040664000000,0.000015591500000,0.000048961000000,0.000019344500000,0.000040269000000,0.000013291333333,0.000052912000000,0.000080960000000,0.000081356000000,0.000238590000000,0.000101899000000,0.000102689000000,0.007280560000000,0.000128368000000,0.000121652000000,0.000060023000000,0.000054096000000,0.000018949500000,0.000102689000000 +0.000016184000000,0.006651622000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000019344500000,0.000039479000000,0.000013423333333,0.000053306000000,0.000079775000000,0.000082541000000,0.000139035000000,0.000102294000000,0.000101504000000,0.006865745000000,0.000129158000000,0.000121652000000,0.000060023000000,0.000114936000000,0.000019542000000,0.000080171000000 +0.000015394000000,0.007365103000000,0.000035147000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049751000000,0.000019344500000,0.000039479000000,0.000013291666667,0.000052912000000,0.000083726000000,0.000082936000000,0.000174591000000,0.000103874000000,0.000139035000000,0.007131226000000,0.000129553000000,0.000122047000000,0.000060418000000,0.000069504000000,0.000018752000000,0.000067529000000 +0.000015789000000,0.006430388000000,0.000026060500000,0.000013159666667,0.000039875000000,0.000016381500000,0.000048566000000,0.000019147000000,0.000039084000000,0.000013423333333,0.000056071000000,0.000083726000000,0.000081356000000,0.000137850000000,0.000103480000000,0.000102293000000,0.006910783000000,0.000129553000000,0.000122837000000,0.000062393000000,0.000054886000000,0.000018949500000,0.000069109000000 +0.000015394000000,0.007069597000000,0.000026258000000,0.000013555000000,0.000040270000000,0.000015789000000,0.000047776000000,0.000019147000000,0.000039084000000,0.000014608333333,0.000054096000000,0.000079775000000,0.000079380000000,0.000238195000000,0.000102689000000,0.000103479000000,0.006786338000000,0.000129158000000,0.000158788000000,0.000060812000000,0.000054096000000,0.000018752000000,0.000067134000000 +0.000015393500000,0.006817943000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015789000000,0.000068714000000,0.000019344500000,0.000039480000000,0.000013423000000,0.000052911000000,0.000082146000000,0.000083331000000,0.000174591000000,0.000101899000000,0.000102689000000,0.006981498000000,0.000129553000000,0.000122442000000,0.000060417000000,0.000054492000000,0.000019739500000,0.000067923000000 +0.000015591500000,0.006920264000000,0.000027048000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000064368000000,0.000019344500000,0.000039084000000,0.000020402333333,0.000089652000000,0.000079775000000,0.000083331000000,0.000142591000000,0.000137849000000,0.000102689000000,0.007038783000000,0.000129553000000,0.000121652000000,0.000060417000000,0.000054097000000,0.000038307500000,0.000067528000000 +0.000015394000000,0.006831375000000,0.000026258500000,0.000013028333333,0.000040269000000,0.000015986500000,0.000048565000000,0.000019542000000,0.000039479000000,0.000023958000000,0.000056861000000,0.000083331000000,0.000159578000000,0.000174986000000,0.000102689000000,0.000101899000000,0.007647967000000,0.000129158000000,0.000122442000000,0.000060812000000,0.000054097000000,0.000027246000000,0.000067528000000 +0.000015986500000,0.006575375000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015788500000,0.000048565000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000056466000000,0.000079776000000,0.000133109000000,0.000141405000000,0.000101504000000,0.000102689000000,0.006958584000000,0.000128763000000,0.000122047000000,0.000060022000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015591500000,0.006754734000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000049356000000,0.000019147000000,0.000039479000000,0.000013554666667,0.000055282000000,0.000080566000000,0.000098738000000,0.000173800000000,0.000101899000000,0.000101898000000,0.006723918000000,0.000130343000000,0.000121256000000,0.000061602000000,0.000055676000000,0.000019937000000,0.000065949000000 +0.000015393500000,0.006629498000000,0.000026258000000,0.000013686666667,0.000040269000000,0.000016184000000,0.000048171000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000054097000000,0.000081751000000,0.000081751000000,0.000193948000000,0.000102294000000,0.000138245000000,0.006870486000000,0.000129158000000,0.000122837000000,0.000060417000000,0.000053306000000,0.000018751500000,0.000067529000000 +0.000015986500000,0.006805696000000,0.000026455500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000019147000000,0.000039084000000,0.000013555000000,0.000053306000000,0.000081356000000,0.000084121000000,0.000141010000000,0.000102689000000,0.000103084000000,0.006881153000000,0.000140220000000,0.000201849000000,0.000060022000000,0.000054491000000,0.000018752000000,0.000067528000000 +0.000024677500000,0.006614486000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048960000000,0.000019344500000,0.000043035000000,0.000013423333333,0.000053307000000,0.000080566000000,0.000084911000000,0.000210935000000,0.000101504000000,0.000102689000000,0.006825449000000,0.000130343000000,0.000122046000000,0.000060813000000,0.000053701000000,0.000019147000000,0.000086886000000 +0.000015394000000,0.006949103000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000047775000000,0.000019542000000,0.000039084000000,0.000013159666667,0.000053701000000,0.000081751000000,0.000081751000000,0.000138245000000,0.000103479000000,0.000163529000000,0.006725499000000,0.000128763000000,0.000122047000000,0.000060813000000,0.000054491000000,0.000019542000000,0.000067529000000 +0.000015789000000,0.006504659000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048960000000,0.000019542000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079380000000,0.000079380000000,0.000173800000000,0.000102294000000,0.000103084000000,0.007420016000000,0.000129158000000,0.000122442000000,0.000062393000000,0.000054887000000,0.000019147000000,0.000068714000000 +0.000015986500000,0.006599079000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000041059000000,0.000013554666667,0.000053307000000,0.000081750000000,0.000080170000000,0.000141009000000,0.000137849000000,0.000102293000000,0.007657843000000,0.000129949000000,0.000123232000000,0.000060417000000,0.000053307000000,0.000018949500000,0.000067924000000 +0.000015591000000,0.006593548000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000032776500000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081750000000,0.000158788000000,0.000173405000000,0.000102689000000,0.000102689000000,0.006899326000000,0.000129553000000,0.000121256000000,0.000061207000000,0.000053307000000,0.000018752000000,0.000067529000000 +0.000015394000000,0.006602634000000,0.000044826000000,0.000013160000000,0.000040270000000,0.000017369000000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053702000000,0.000083726000000,0.000083726000000,0.000174590000000,0.000104664000000,0.000102689000000,0.006896955000000,0.000129553000000,0.000120862000000,0.000060417000000,0.000088862000000,0.000018949500000,0.000068319000000 +0.000015394000000,0.006508215000000,0.000026258000000,0.000013686333333,0.000076220000000,0.000023097500000,0.000048170000000,0.000019344500000,0.000039085000000,0.000013554666667,0.000053701000000,0.000079381000000,0.000080960000000,0.000143380000000,0.000101899000000,0.000138640000000,0.007018634000000,0.000129158000000,0.000193158000000,0.000060418000000,0.000069109000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006660313000000,0.000026653500000,0.000013159666667,0.000039874000000,0.000016381500000,0.000049355000000,0.000019344500000,0.000039084000000,0.000014476333333,0.000053306000000,0.000084911000000,0.000080961000000,0.000173405000000,0.000102294000000,0.000103479000000,0.006764214000000,0.000129948000000,0.000121652000000,0.000060418000000,0.000053702000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.007071572000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000053702000000,0.000081356000000,0.000079380000000,0.000138639000000,0.000101899000000,0.000101899000000,0.006971622000000,0.000128368000000,0.000121652000000,0.000060813000000,0.000053701000000,0.000018949500000,0.000067133000000 +0.000015393500000,0.006559572000000,0.000026258000000,0.000013818333333,0.000039874000000,0.000015591500000,0.000048961000000,0.000019344500000,0.000039085000000,0.000013423000000,0.000090047000000,0.000081751000000,0.000082145000000,0.000176961000000,0.000102294000000,0.000103084000000,0.007015474000000,0.000129158000000,0.000122047000000,0.000060418000000,0.000053306000000,0.000018751500000,0.000067923000000 +0.000015591500000,0.006869696000000,0.000026456000000,0.000013159666667,0.000041059000000,0.000032579000000,0.000049751000000,0.000019147000000,0.000039084000000,0.000013028000000,0.000053306000000,0.000080170000000,0.000081356000000,0.000142590000000,0.000103084000000,0.000104269000000,0.006806881000000,0.000129949000000,0.000121652000000,0.000060418000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.007147819000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000026455500000,0.000068713000000,0.000019344500000,0.000040269000000,0.000013423000000,0.000054096000000,0.000080961000000,0.000079380000000,0.000174590000000,0.000178145000000,0.000103479000000,0.006969252000000,0.000173010000000,0.000122047000000,0.000060022000000,0.000054491000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006647671000000,0.000026653500000,0.000013949666667,0.000040269000000,0.000034752000000,0.000081751000000,0.000019147000000,0.000040664000000,0.000013160000000,0.000052911000000,0.000079381000000,0.000081356000000,0.000376862000000,0.000156417000000,0.000102293000000,0.007030091000000,0.000129158000000,0.000122047000000,0.000079775000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.007008363000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000039888000000,0.000048961000000,0.000019147000000,0.000039479000000,0.000013291333333,0.000053307000000,0.000080171000000,0.000079775000000,0.000141010000000,0.000101899000000,0.000103479000000,0.006913942000000,0.000130738000000,0.000192368000000,0.000060022000000,0.000053306000000,0.000019146500000,0.000161553000000 +0.000015393500000,0.006715622000000,0.000026456000000,0.000013159666667,0.000039874000000,0.000051147000000,0.000049355000000,0.000019147000000,0.000039874000000,0.000013554666667,0.000054886000000,0.000085306000000,0.000117306000000,0.000178936000000,0.000102294000000,0.000121652000000,0.006636215000000,0.000328664000000,0.000123233000000,0.000060418000000,0.000053701000000,0.000019147000000,0.000205405000000 +0.000015394000000,0.007093301000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000049171500000,0.000048565000000,0.000019344500000,0.000039084000000,0.000026065000000,0.000053306000000,0.000079775000000,0.000079380000000,0.000142590000000,0.000103084000000,0.000102294000000,0.007142289000000,0.000127973000000,0.000121257000000,0.000060418000000,0.000053306000000,0.000037122000000,0.000225553000000 +0.000015591500000,0.006611326000000,0.000027048500000,0.000013159666667,0.000040270000000,0.000040678000000,0.000050936000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053701000000,0.000079380000000,0.000080566000000,0.000177751000000,0.000103084000000,0.000103480000000,0.007288066000000,0.000128368000000,0.000121257000000,0.000060812000000,0.000053306000000,0.000019739500000,0.000206195000000 +0.000015393500000,0.006682042000000,0.000026455500000,0.000013028000000,0.000039875000000,0.000035147000000,0.000048170000000,0.000019344500000,0.000040270000000,0.000013423000000,0.000052912000000,0.000082936000000,0.000080170000000,0.000175776000000,0.000102689000000,0.000103084000000,0.006808856000000,0.000127973000000,0.000123627000000,0.000060417000000,0.000053701000000,0.000018949500000,0.000122837000000 +0.000015591500000,0.006694288000000,0.000026456000000,0.000013159666667,0.000040270000000,0.000016579500000,0.000049750000000,0.000019147000000,0.000039084000000,0.000013554666667,0.000054096000000,0.000081355000000,0.000082146000000,0.000141405000000,0.000101899000000,0.000102689000000,0.006787918000000,0.000129949000000,0.000122047000000,0.000060813000000,0.000053701000000,0.000018752000000,0.000085701000000 +0.000015591500000,0.006655572000000,0.000026258000000,0.000013291333333,0.000040270000000,0.000016579000000,0.000049356000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000080960000000,0.000082541000000,0.000177751000000,0.000113751000000,0.000103084000000,0.006870091000000,0.000173010000000,0.000122442000000,0.000060023000000,0.000053701000000,0.000018949500000,0.000080961000000 +0.000016184000000,0.006769351000000,0.000063591500000,0.000013028000000,0.000039874000000,0.000017369000000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000052911000000,0.000080170000000,0.000081751000000,0.000142195000000,0.000103479000000,0.000103874000000,0.006852708000000,0.000129553000000,0.000198689000000,0.000060418000000,0.000090837000000,0.000018949500000,0.000068319000000 +0.000015986500000,0.006894189000000,0.000038702500000,0.000013028333333,0.000040664000000,0.000032974000000,0.000048960000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000080170000000,0.000080566000000,0.000180516000000,0.000103084000000,0.000101503000000,0.007321251000000,0.000128763000000,0.000136665000000,0.000062393000000,0.000068713000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.006776857000000,0.000028826000000,0.000013291333333,0.000039874000000,0.000017764500000,0.000049355000000,0.000019344500000,0.000039480000000,0.000013159666667,0.000053307000000,0.000082146000000,0.000079380000000,0.000142195000000,0.000103084000000,0.000101899000000,0.006953844000000,0.000129554000000,0.000124418000000,0.000060417000000,0.000053306000000,0.000018949000000,0.000067528000000 +0.000015591500000,0.006543770000000,0.000027838500000,0.000013028000000,0.000040664000000,0.000032777000000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000080566000000,0.000079380000000,0.000330640000000,0.000101899000000,0.000138640000000,0.007152955000000,0.000129948000000,0.000121652000000,0.000060417000000,0.000054096000000,0.000018949500000,0.000067923000000 +0.000015591500000,0.006577745000000,0.000033764500000,0.000013159666667,0.000039874000000,0.000023690500000,0.000049751000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000079775000000,0.000081750000000,0.000238590000000,0.000101899000000,0.000101109000000,0.006781202000000,0.000129948000000,0.000124022000000,0.000062788000000,0.000053701000000,0.000018751500000,0.000066738000000 +0.000015789000000,0.006711277000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000024283000000,0.000067923000000,0.000019542000000,0.000041059000000,0.000013291333333,0.000126787000000,0.000082541000000,0.000099528000000,0.000162344000000,0.000103084000000,0.000102294000000,0.006780017000000,0.000129158000000,0.000122837000000,0.000060813000000,0.000054097000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006556807000000,0.000026258000000,0.000013028000000,0.000040664000000,0.000016381500000,0.000065948000000,0.000019344500000,0.000040664000000,0.000013423000000,0.000053701000000,0.000079776000000,0.000080170000000,0.000176565000000,0.000103084000000,0.000102294000000,0.006855473000000,0.000237800000000,0.000122837000000,0.000060418000000,0.000054097000000,0.000018751500000,0.000067924000000 +0.000015591500000,0.006932116000000,0.000026455500000,0.000013159666667,0.000073849000000,0.000016381500000,0.000065553000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000053306000000,0.000081751000000,0.000082936000000,0.000140220000000,0.000102689000000,0.000103479000000,0.006749202000000,0.000140614000000,0.000194343000000,0.000105059000000,0.000053307000000,0.000018752000000,0.000067134000000 +0.000042850500000,0.006764215000000,0.000026455500000,0.000013159666667,0.000055282000000,0.000016381500000,0.000082540000000,0.000019344500000,0.000039084000000,0.000013555000000,0.000053307000000,0.000082146000000,0.000081751000000,0.000261899000000,0.000102689000000,0.000101899000000,0.006813203000000,0.000122442000000,0.000122047000000,0.000060417000000,0.000053702000000,0.000018949500000,0.000067924000000 +0.000029221000000,0.007002042000000,0.000026060500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000062788000000,0.000019146500000,0.000039479000000,0.000013555000000,0.000053306000000,0.000081750000000,0.000080171000000,0.000144565000000,0.000101899000000,0.000101504000000,0.008439275000000,0.000122047000000,0.000122047000000,0.000060417000000,0.000053702000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006556807000000,0.000026455500000,0.000013555000000,0.000040269000000,0.000015789000000,0.000048566000000,0.000019542000000,0.000039085000000,0.000013555000000,0.000053306000000,0.000079380000000,0.000079776000000,0.000178146000000,0.000102689000000,0.000152467000000,0.006960955000000,0.000121652000000,0.000122837000000,0.000066343000000,0.000054097000000,0.000018949500000,0.000104269000000 +0.000015986500000,0.006456462000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016776500000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000056072000000,0.000079775000000,0.000079776000000,0.000177355000000,0.000102689000000,0.000190392000000,0.006611326000000,0.000122047000000,0.000121257000000,0.000060812000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.006627523000000,0.000026258000000,0.000013291333333,0.000040269000000,0.000016381500000,0.000048960000000,0.000019344500000,0.000047775000000,0.000013423000000,0.000053307000000,0.000084122000000,0.000083331000000,0.000179726000000,0.000101898000000,0.000135874000000,0.007030486000000,0.000158393000000,0.000120861000000,0.000061207000000,0.000054097000000,0.000019147000000,0.000067923000000 +0.000015986500000,0.006593943000000,0.000026455500000,0.000013686333333,0.000040269000000,0.000016381500000,0.000049356000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000053701000000,0.000079380000000,0.000081355000000,0.000262294000000,0.000103084000000,0.000280862000000,0.006562733000000,0.000121257000000,0.000121257000000,0.000060022000000,0.000053701000000,0.000019147000000,0.000069108000000 +0.000015394000000,0.006417351000000,0.000044431000000,0.000013554666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000081356000000,0.000081750000000,0.000143775000000,0.000102689000000,0.000120071000000,0.006837301000000,0.000123232000000,0.000193158000000,0.000060022000000,0.000053306000000,0.000019147000000,0.000067133000000 +0.000015591500000,0.006797795000000,0.000033369500000,0.000013159666667,0.000039874000000,0.000015591500000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000116121000000,0.000181701000000,0.000101504000000,0.000102294000000,0.008093991000000,0.000122442000000,0.000122442000000,0.000060417000000,0.000054492000000,0.000019147000000,0.000067133000000 +0.000015394000000,0.007359967000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000049355000000,0.000019344500000,0.000039875000000,0.000013159666667,0.000053306000000,0.000078985000000,0.000081356000000,0.000173405000000,0.000137454000000,0.000103480000000,0.007117005000000,0.000122047000000,0.000122442000000,0.000061208000000,0.000073059000000,0.000019147000000,0.000066738000000 +0.000015591500000,0.006576560000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000015986500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000030674333333,0.000055282000000,0.000081750000000,0.000079776000000,0.000188812000000,0.000102294000000,0.000104269000000,0.006623968000000,0.000121257000000,0.000121257000000,0.000060813000000,0.000105059000000,0.000028826000000,0.000067134000000 +0.000015393500000,0.006503474000000,0.000026455500000,0.000013291333333,0.000040269000000,0.000015789000000,0.000049356000000,0.000019147000000,0.000039084000000,0.000013423000000,0.000055282000000,0.000082936000000,0.000079381000000,0.000175775000000,0.000103084000000,0.000102689000000,0.007051424000000,0.000122047000000,0.000123232000000,0.000060418000000,0.000053701000000,0.000049962000000,0.000067529000000 +0.000015394000000,0.006660709000000,0.000026258000000,0.000013423333333,0.000040269000000,0.000016381500000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000081356000000,0.000138639000000,0.000102689000000,0.000101899000000,0.006764610000000,0.000205405000000,0.000123232000000,0.000060418000000,0.000053701000000,0.000018751500000,0.000067924000000 +0.000015394000000,0.006672165000000,0.000026653500000,0.000014871666667,0.000039874000000,0.000016381500000,0.000048960000000,0.000019344500000,0.000039085000000,0.000013159666667,0.000088862000000,0.000125207000000,0.000082541000000,0.000175775000000,0.000103084000000,0.000102294000000,0.006633054000000,0.000123627000000,0.000177355000000,0.000060418000000,0.000053306000000,0.000038307500000,0.000067134000000 +0.000015393500000,0.006697449000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000049356000000,0.000019542000000,0.000039084000000,0.000013423000000,0.000053702000000,0.000079380000000,0.000079380000000,0.000139430000000,0.000103479000000,0.000102689000000,0.006855079000000,0.000122047000000,0.000121256000000,0.000060812000000,0.000054491000000,0.000020134500000,0.000109010000000 +0.000015591500000,0.006569449000000,0.000026456000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000050541000000,0.000019147000000,0.000039084000000,0.000013423000000,0.000053701000000,0.000082936000000,0.000080565000000,0.000181306000000,0.000103084000000,0.000102689000000,0.006983079000000,0.000122442000000,0.000121257000000,0.000095973000000,0.000054097000000,0.000020332000000,0.000067134000000 +0.000015789000000,0.007035622000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000050145000000,0.000019344500000,0.000041059000000,0.000013159666667,0.000053306000000,0.000080961000000,0.000080170000000,0.000217651000000,0.000102294000000,0.000102689000000,0.006969647000000,0.000122442000000,0.000121257000000,0.000060418000000,0.000053307000000,0.000025468000000,0.000067924000000 +0.000015591500000,0.006510980000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000050146000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000081751000000,0.000083331000000,0.000139035000000,0.000101109000000,0.000102294000000,0.007107918000000,0.000123232000000,0.000121257000000,0.000060418000000,0.000053702000000,0.000020332500000,0.000067529000000 +0.000015591500000,0.006942782000000,0.000026258000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000066738000000,0.000019739500000,0.000039479000000,0.000013159666667,0.000055282000000,0.000079380000000,0.000079380000000,0.000235034000000,0.000103875000000,0.000102294000000,0.006521252000000,0.000123232000000,0.000121652000000,0.000060418000000,0.000054097000000,0.000019147000000,0.000067924000000 +0.000015591000000,0.006448560000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000065158000000,0.000019147000000,0.000039084000000,0.000013423000000,0.000054096000000,0.000082936000000,0.000118096000000,0.000140220000000,0.000101504000000,0.000102293000000,0.006789894000000,0.000157998000000,0.000121652000000,0.000060023000000,0.000053307000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006596313000000,0.000026653000000,0.000013291333333,0.000041059000000,0.000015789000000,0.000047775000000,0.000019344500000,0.000039874000000,0.000013291333333,0.000053307000000,0.000081751000000,0.000081355000000,0.000239775000000,0.000101504000000,0.000102294000000,0.006553647000000,0.000122837000000,0.000160763000000,0.000060418000000,0.000053702000000,0.000019147000000,0.000067529000000 +0.000015591500000,0.006702585000000,0.000026653000000,0.000013028000000,0.000076220000000,0.000015789000000,0.000048960000000,0.000019739500000,0.000039084000000,0.000014213000000,0.000060417000000,0.000090837000000,0.000081750000000,0.000142985000000,0.000103874000000,0.000101898000000,0.006964906000000,0.000122047000000,0.000151677000000,0.000060023000000,0.000057257000000,0.000018949500000,0.000067528000000 +0.000015394000000,0.006588017000000,0.000062208500000,0.000013160000000,0.000040269000000,0.000034159500000,0.000049751000000,0.000019344500000,0.000039084000000,0.000013686333333,0.000052911000000,0.000079380000000,0.000082936000000,0.000176170000000,0.000101504000000,0.000103479000000,0.006555623000000,0.000122442000000,0.000122442000000,0.000060418000000,0.000053701000000,0.000018751500000,0.000067133000000 +0.000015591500000,0.006901696000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016382000000,0.000049356000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000055281000000,0.000079380000000,0.000080961000000,0.000181306000000,0.000102689000000,0.000101504000000,0.006858239000000,0.000125997000000,0.000122837000000,0.000060418000000,0.000053306000000,0.000018752000000,0.000066738000000 +0.000015986500000,0.006565103000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048565000000,0.000019937000000,0.000039480000000,0.000013423000000,0.000053702000000,0.000086492000000,0.000079776000000,0.000140615000000,0.000101899000000,0.000102689000000,0.006541400000000,0.000122047000000,0.000122047000000,0.000060417000000,0.000054097000000,0.000018751500000,0.000066344000000 +0.000016184000000,0.006732610000000,0.000026456000000,0.000013160000000,0.000039874000000,0.000016184000000,0.000048960000000,0.000019147000000,0.000039479000000,0.000013554666667,0.000053306000000,0.000081751000000,0.000082541000000,0.000182096000000,0.000103084000000,0.000103084000000,0.006508215000000,0.000122442000000,0.000121257000000,0.000060812000000,0.000109010000000,0.000018752000000,0.000086491000000 +0.000015393500000,0.006504659000000,0.000026258000000,0.000013686666667,0.000040270000000,0.000015789000000,0.000050146000000,0.000019147000000,0.000039084000000,0.000014344666667,0.000053306000000,0.000081751000000,0.000080960000000,0.000139430000000,0.000115331000000,0.000103084000000,0.006809647000000,0.000202245000000,0.000124418000000,0.000060022000000,0.000056467000000,0.000019937000000,0.000140615000000 +0.000029221000000,0.006717993000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000016381500000,0.000048171000000,0.000019344500000,0.000078985000000,0.000013028000000,0.000053307000000,0.000130738000000,0.000079775000000,0.000225553000000,0.000173010000000,0.000103479000000,0.006655573000000,0.000123232000000,0.000177751000000,0.000060812000000,0.000053306000000,0.000018949500000,0.000081751000000 +0.000015393500000,0.006762240000000,0.000026060500000,0.000013949666667,0.000040270000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000077010000000,0.000013159666667,0.000071084000000,0.000083331000000,0.000082936000000,0.000192763000000,0.000101899000000,0.000102294000000,0.006612511000000,0.000122442000000,0.000135084000000,0.000060417000000,0.000053701000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006575375000000,0.000026258500000,0.000013818000000,0.000039874000000,0.000015986500000,0.000048565000000,0.000019147000000,0.000129948000000,0.000025406666667,0.000052912000000,0.000082541000000,0.000128368000000,0.000144566000000,0.000102294000000,0.000102689000000,0.006612511000000,0.000122047000000,0.000122047000000,0.000095973000000,0.000053306000000,0.000018949000000,0.000067133000000 +0.000015591500000,0.006978733000000,0.000026455500000,0.000013028000000,0.000040664000000,0.000016184000000,0.000048170000000,0.000019146500000,0.000089256000000,0.000013423000000,0.000053306000000,0.000080961000000,0.000081356000000,0.000341702000000,0.000101504000000,0.000102689000000,0.006846387000000,0.000122442000000,0.000121652000000,0.000062788000000,0.000053306000000,0.000019344500000,0.000065948000000 +0.000015394000000,0.006508610000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000050936000000,0.000019344500000,0.000053702000000,0.000013423000000,0.000053307000000,0.000082936000000,0.000080565000000,0.000144961000000,0.000102689000000,0.000103084000000,0.006575771000000,0.000122047000000,0.000122047000000,0.000060812000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006573400000000,0.000026455500000,0.000015003333333,0.000041850000000,0.000016381500000,0.000048960000000,0.000019344500000,0.000039479000000,0.000013028333333,0.000058047000000,0.000122047000000,0.000079775000000,0.000176960000000,0.000101899000000,0.000101503000000,0.006521647000000,0.000121652000000,0.000123232000000,0.000060812000000,0.000053701000000,0.000018751500000,0.000067924000000 +0.000016184000000,0.006798585000000,0.000026258500000,0.000013160000000,0.000039874000000,0.000017567000000,0.000049750000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000058837000000,0.000097159000000,0.000081356000000,0.000141800000000,0.000101504000000,0.000101504000000,0.006719573000000,0.000157603000000,0.000122442000000,0.000061603000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000015986500000,0.006551276000000,0.000026258000000,0.000014608333333,0.000039874000000,0.000017369500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000057652000000,0.000082541000000,0.000081355000000,0.000237010000000,0.000102294000000,0.000102294000000,0.006562733000000,0.000121651000000,0.000193948000000,0.000060418000000,0.000053701000000,0.000018751500000,0.000066738000000 +0.000015591000000,0.006667820000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000016579500000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000055677000000,0.000082541000000,0.000081355000000,0.000180121000000,0.000137849000000,0.000102689000000,0.006760659000000,0.000122047000000,0.000122442000000,0.000060418000000,0.000053306000000,0.000019147000000,0.000067528000000 +0.000015986500000,0.006669795000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000068713000000,0.000020332000000,0.000039479000000,0.000013291333333,0.000058047000000,0.000082145000000,0.000080170000000,0.000141405000000,0.000103479000000,0.000103479000000,0.006680857000000,0.000123628000000,0.000121257000000,0.000060023000000,0.000053701000000,0.000018752000000,0.000114936000000 +0.000016184500000,0.006940412000000,0.000053517000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000081355000000,0.000019147000000,0.000039084000000,0.000013423000000,0.000052911000000,0.000079775000000,0.000082146000000,0.000410837000000,0.000102688000000,0.000102689000000,0.006766585000000,0.000121652000000,0.000122047000000,0.000060418000000,0.000054096000000,0.000018752000000,0.000340121000000 +0.000015986500000,0.006571819000000,0.000034554500000,0.000014081666667,0.000041059000000,0.000015789000000,0.000061208000000,0.000019344500000,0.000039479000000,0.000013291333333,0.000054491000000,0.000082541000000,0.000085701000000,0.000278886000000,0.000103084000000,0.000103874000000,0.007093301000000,0.000122837000000,0.000122047000000,0.000060417000000,0.000053306000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006794239000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048171000000,0.000019344500000,0.000039085000000,0.000013423000000,0.000053307000000,0.000082936000000,0.000079775000000,0.000193158000000,0.000101899000000,0.000106244000000,0.006881943000000,0.000122442000000,0.000122047000000,0.000060417000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006601844000000,0.000026258500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000047776000000,0.000019344500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000118096000000,0.000139430000000,0.000101504000000,0.000102689000000,0.006518486000000,0.000207380000000,0.000121652000000,0.000060417000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015591500000,0.006981104000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048171000000,0.000019344500000,0.000040269000000,0.000019875666667,0.000053306000000,0.000079381000000,0.000082540000000,0.000188813000000,0.000101898000000,0.000102689000000,0.006421301000000,0.000122442000000,0.000199084000000,0.000060417000000,0.000148121000000,0.000018752000000,0.000066739000000 +0.000015591500000,0.006587622000000,0.000026653000000,0.000013423333333,0.000040270000000,0.000016184000000,0.000049356000000,0.000019542000000,0.000039084000000,0.000018427000000,0.000058443000000,0.000081751000000,0.000082146000000,0.000175775000000,0.000103084000000,0.000102689000000,0.006746437000000,0.000121257000000,0.000270590000000,0.000060417000000,0.000110985000000,0.000018949000000,0.000067134000000 +0.000015591500000,0.006764215000000,0.000026455500000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000039084000000,0.000018295666667,0.000094787000000,0.000079775000000,0.000080171000000,0.000138639000000,0.000103479000000,0.000136665000000,0.006870486000000,0.000121652000000,0.000141801000000,0.000060022000000,0.000118096000000,0.000018949500000,0.000067528000000 +0.000015789000000,0.006949498000000,0.000026850500000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000040269000000,0.000013291666667,0.000054886000000,0.000079381000000,0.000081751000000,0.000255973000000,0.000102294000000,0.000103479000000,0.006926585000000,0.000120862000000,0.000122837000000,0.000095973000000,0.000074244000000,0.000019147000000,0.000066738000000 +0.000015986500000,0.006627524000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000058047000000,0.000082541000000,0.000080961000000,0.000178540000000,0.000101109000000,0.000102689000000,0.006551276000000,0.000121257000000,0.000121652000000,0.000060417000000,0.000056862000000,0.000018752000000,0.000103874000000 +0.000015789000000,0.006833351000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015986500000,0.000049356000000,0.000019344500000,0.000039480000000,0.000013686333333,0.000053307000000,0.000081751000000,0.000080171000000,0.000179726000000,0.000101899000000,0.000102689000000,0.006660708000000,0.000121257000000,0.000168269000000,0.000060417000000,0.000068318000000,0.000019344500000,0.000067924000000 +0.000016184000000,0.006570634000000,0.000026258000000,0.000013291333333,0.000040269000000,0.000026258000000,0.000048960000000,0.000019147000000,0.000040269000000,0.000013423000000,0.000052911000000,0.000080170000000,0.000080566000000,0.000182096000000,0.000101504000000,0.000103479000000,0.006718782000000,0.000158393000000,0.000122047000000,0.000061997000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006525992000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000029616000000,0.000048960000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000052911000000,0.000083331000000,0.000081751000000,0.000141800000000,0.000102294000000,0.000101899000000,0.006887079000000,0.000121652000000,0.000121652000000,0.000060417000000,0.000053701000000,0.000018752000000,0.000066343000000 +0.000015591500000,0.006776462000000,0.000026455500000,0.000013818333333,0.000040269000000,0.000015591500000,0.000048171000000,0.000019344500000,0.000039874000000,0.000020007333333,0.000053306000000,0.000080566000000,0.000082146000000,0.000243726000000,0.000103479000000,0.000103084000000,0.006692708000000,0.000122047000000,0.000122047000000,0.000061208000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.007563029000000,0.000026258000000,0.000013159666667,0.000040664000000,0.000015789000000,0.000048566000000,0.000019147000000,0.000039084000000,0.000013291666667,0.000053306000000,0.000081751000000,0.000117701000000,0.000142590000000,0.000102689000000,0.000102294000000,0.007277400000000,0.000122837000000,0.000121652000000,0.000060418000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000015986500000,0.006463968000000,0.000036529500000,0.000013159666667,0.000040269000000,0.000015789000000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013160000000,0.000057256000000,0.000080171000000,0.000080170000000,0.000192368000000,0.000103084000000,0.000102689000000,0.006560363000000,0.000120862000000,0.000122837000000,0.000072665000000,0.000073850000000,0.000018949500000,0.000067923000000 +0.000015591000000,0.006528757000000,0.000070900000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000052516000000,0.000019344500000,0.000039480000000,0.000013554666667,0.000056466000000,0.000079776000000,0.000081356000000,0.000141010000000,0.000102688000000,0.000103084000000,0.006606190000000,0.000122047000000,0.000122837000000,0.000058047000000,0.000121257000000,0.000037122000000,0.000067133000000 +0.000031789000000,0.006855078000000,0.000035344500000,0.000013159666667,0.000041849000000,0.000016381500000,0.000049356000000,0.000019147000000,0.000041455000000,0.000013291333333,0.000053306000000,0.000082146000000,0.000083331000000,0.000193948000000,0.000101899000000,0.000105059000000,0.006599474000000,0.000122442000000,0.000157997000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000022505000000,0.006798980000000,0.000028036000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000066738000000,0.000019147000000,0.000039084000000,0.000013554666667,0.000056072000000,0.000080961000000,0.000078985000000,0.000184072000000,0.000101503000000,0.000103084000000,0.006639770000000,0.000209751000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000066344000000 +0.000016184000000,0.007208264000000,0.000033369500000,0.000013554666667,0.000040269000000,0.000016381500000,0.000048960000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053701000000,0.000081356000000,0.000081355000000,0.000141010000000,0.000101898000000,0.000101899000000,0.006674536000000,0.000121652000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000066739000000 +0.000015394000000,0.006808066000000,0.000026455500000,0.000013686666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000053307000000,0.000081355000000,0.000082146000000,0.000254788000000,0.000155627000000,0.000102294000000,0.006750388000000,0.000123232000000,0.000122837000000,0.000057652000000,0.000053306000000,0.000018752000000,0.000087677000000 +0.000015986500000,0.007245399000000,0.000026850500000,0.000013028000000,0.000041455000000,0.000015591500000,0.000049356000000,0.000019147000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000079775000000,0.000082936000000,0.000145355000000,0.000144961000000,0.000102689000000,0.006979128000000,0.000122047000000,0.000121257000000,0.000056862000000,0.000054491000000,0.000018949500000,0.000104664000000 +0.000015591000000,0.006484511000000,0.000026456000000,0.000013028000000,0.000040270000000,0.000016184500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000090837000000,0.000080170000000,0.000081750000000,0.000263084000000,0.000103479000000,0.000101898000000,0.006557202000000,0.000122442000000,0.000122047000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000016579000000,0.006537055000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048565000000,0.000019147000000,0.000039479000000,0.000013423000000,0.000053702000000,0.000085306000000,0.000083726000000,0.000151676000000,0.000101899000000,0.000102294000000,0.006485301000000,0.000122047000000,0.000122442000000,0.000128368000000,0.000055282000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.006810437000000,0.000026653500000,0.000013028000000,0.000040269000000,0.000015591500000,0.000048565000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000054096000000,0.000080171000000,0.000080566000000,0.000237405000000,0.000102294000000,0.000101503000000,0.006595524000000,0.000122047000000,0.000177355000000,0.000056861000000,0.000056072000000,0.000019542000000,0.000066739000000 +0.000015394000000,0.006559177000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016579500000,0.000049356000000,0.000019542000000,0.000039084000000,0.000013160000000,0.000053307000000,0.000081751000000,0.000118097000000,0.000234640000000,0.000101899000000,0.000154442000000,0.006443819000000,0.000158788000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015394000000,0.006474634000000,0.000026258500000,0.000013160000000,0.000068319000000,0.000015789000000,0.000049751000000,0.000019344500000,0.000039084000000,0.000014213333333,0.000052911000000,0.000081356000000,0.000082146000000,0.000141800000000,0.000101503000000,0.000103479000000,0.006549301000000,0.000121651000000,0.000122837000000,0.000056861000000,0.000053701000000,0.000018752000000,0.000068318000000 +0.000016184000000,0.007048659000000,0.000026455500000,0.000014345000000,0.000041850000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000054096000000,0.000083331000000,0.000084122000000,0.000179331000000,0.000101899000000,0.000103479000000,0.006656362000000,0.000124022000000,0.000122047000000,0.000092417000000,0.000054096000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.007066041000000,0.000026456000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000049355000000,0.000019542000000,0.000039084000000,0.000013291333333,0.000053307000000,0.000082936000000,0.000080170000000,0.000139430000000,0.000103479000000,0.000102689000000,0.006559573000000,0.000122047000000,0.000122442000000,0.000088862000000,0.000054491000000,0.000018752000000,0.000067924000000 +0.000015394000000,0.006874832000000,0.000026653000000,0.000013554666667,0.000040269000000,0.000016381500000,0.000048565000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000083331000000,0.000095973000000,0.000181702000000,0.000102294000000,0.000102689000000,0.006853103000000,0.000122443000000,0.000121256000000,0.000056861000000,0.000053306000000,0.000018949500000,0.000067924000000 +0.000015591500000,0.006543375000000,0.000044628500000,0.000013554666667,0.000040270000000,0.000016184000000,0.000048171000000,0.000019147000000,0.000060022000000,0.000013291333333,0.000053306000000,0.000081355000000,0.000084911000000,0.000173800000000,0.000114936000000,0.000102689000000,0.006635425000000,0.000120862000000,0.000122837000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015986500000,0.007130041000000,0.000026653500000,0.000014871666667,0.000041060000000,0.000016184000000,0.000048565000000,0.000019147000000,0.000055677000000,0.000013159666667,0.000053307000000,0.000083726000000,0.000082146000000,0.000180516000000,0.000097158000000,0.000103480000000,0.006793449000000,0.000121257000000,0.000157998000000,0.000056861000000,0.000054096000000,0.000018752000000,0.000067529000000 +0.000016184000000,0.006706930000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000016184000000,0.000048170000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000054886000000,0.000082541000000,0.000082936000000,0.000305750000000,0.000133108000000,0.000102294000000,0.006623573000000,0.000199479000000,0.000122442000000,0.000057257000000,0.000086887000000,0.000018554500000,0.000087677000000 +0.000015393500000,0.006926980000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000033171500000,0.000048566000000,0.000020529500000,0.000040664000000,0.000014081333333,0.000054096000000,0.000080566000000,0.000079775000000,0.000145356000000,0.000110590000000,0.000110195000000,0.006472264000000,0.000122046000000,0.000122047000000,0.000056861000000,0.000070294000000,0.000018949500000,0.000067923000000 +0.000015394000000,0.006875622000000,0.000026258000000,0.000013159666667,0.000042245000000,0.000024678000000,0.000048171000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000055282000000,0.000079381000000,0.000082146000000,0.000175775000000,0.000096368000000,0.000101898000000,0.006886683000000,0.000120467000000,0.000122442000000,0.000058047000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015591500000,0.007896856000000,0.000026258500000,0.000013028000000,0.000039875000000,0.000016382000000,0.000084912000000,0.000019147000000,0.000041059000000,0.000029883666667,0.000053306000000,0.000081356000000,0.000158392000000,0.000141405000000,0.000097553000000,0.000101504000000,0.006644906000000,0.000122837000000,0.000122047000000,0.000056862000000,0.000053306000000,0.000019147000000,0.000067528000000 +0.000015789000000,0.006671770000000,0.000026258000000,0.000013686333333,0.000039875000000,0.000016381500000,0.000048566000000,0.000019344500000,0.000039084000000,0.000017900666667,0.000053307000000,0.000079776000000,0.000085701000000,0.000180121000000,0.000096368000000,0.000103084000000,0.006642141000000,0.000126788000000,0.000121652000000,0.000057652000000,0.000054096000000,0.000019147000000,0.000067528000000 +0.000015591500000,0.007996016000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048960000000,0.000019147000000,0.000039084000000,0.000013555000000,0.000052911000000,0.000081751000000,0.000082541000000,0.000175776000000,0.000096763000000,0.000103874000000,0.006533894000000,0.000120862000000,0.000120862000000,0.000092812000000,0.000053701000000,0.000018752000000,0.000070294000000 +0.000015591000000,0.006594734000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048565000000,0.000019147000000,0.000039084000000,0.000013291333333,0.000090837000000,0.000080170000000,0.000088072000000,0.000139430000000,0.000097158000000,0.000102294000000,0.006721153000000,0.000227529000000,0.000122837000000,0.000056862000000,0.000053701000000,0.000027838500000,0.000067923000000 +0.000015394000000,0.006602239000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000015986500000,0.000048961000000,0.000019344500000,0.000039479000000,0.000014081666667,0.000058838000000,0.000079380000000,0.000081356000000,0.000172615000000,0.000098343000000,0.000102294000000,0.006529943000000,0.000159973000000,0.000158788000000,0.000057257000000,0.000053306000000,0.000043838500000,0.000067133000000 +0.000015591500000,0.006725894000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048961000000,0.000028628500000,0.000039874000000,0.000013291666667,0.000052911000000,0.000079381000000,0.000079776000000,0.000141010000000,0.000096368000000,0.000101899000000,0.006965695000000,0.000121652000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000026060500000,0.000067528000000 +0.000015986500000,0.006691129000000,0.000026456000000,0.000013291333333,0.000040269000000,0.000016381500000,0.000049751000000,0.000029023500000,0.000039084000000,0.000013028000000,0.000052911000000,0.000082146000000,0.000082541000000,0.000178541000000,0.000177355000000,0.000103084000000,0.006663474000000,0.000122442000000,0.000121257000000,0.000056862000000,0.000053306000000,0.000019147000000,0.000067528000000 +0.000015789000000,0.006965301000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016579000000,0.000048565000000,0.000019542000000,0.000039479000000,0.000014213333333,0.000053307000000,0.000082145000000,0.000079775000000,0.000141800000000,0.000096368000000,0.000137059000000,0.007042338000000,0.000121651000000,0.000123232000000,0.000056466000000,0.000053701000000,0.000019344500000,0.000067923000000 +0.000032381500000,0.006488857000000,0.000026653500000,0.000013423000000,0.000040269000000,0.000016381500000,0.000048566000000,0.000019147000000,0.000039084000000,0.000014081666667,0.000052911000000,0.000080565000000,0.000080961000000,0.000176565000000,0.000097158000000,0.000102294000000,0.006444215000000,0.000121257000000,0.000121652000000,0.000056862000000,0.000054886000000,0.000018949500000,0.000067133000000 +0.000016974500000,0.006566684000000,0.000026653000000,0.000013686666667,0.000040269000000,0.000016381500000,0.000049356000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000052911000000,0.000118886000000,0.000081355000000,0.000180121000000,0.000096763000000,0.000102294000000,0.006721153000000,0.000120862000000,0.000123232000000,0.000056861000000,0.000053701000000,0.000018752000000,0.000103479000000 +0.000015591500000,0.006599079000000,0.000036530000000,0.000013159666667,0.000041059000000,0.000016579000000,0.000048960000000,0.000019147000000,0.000039479000000,0.000013423000000,0.000052911000000,0.000079775000000,0.000151676000000,0.000143380000000,0.000096763000000,0.000102294000000,0.006623968000000,0.000199874000000,0.000122047000000,0.000058047000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000016184000000,0.006821104000000,0.000026653000000,0.000013159666667,0.000058837000000,0.000015789000000,0.000048170000000,0.000019146500000,0.000039084000000,0.000013291333333,0.000053306000000,0.000080170000000,0.000137454000000,0.000253997000000,0.000095973000000,0.000102689000000,0.006546536000000,0.000190393000000,0.000158393000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015394000000,0.006773696000000,0.000026653500000,0.000013028000000,0.000056467000000,0.000016579000000,0.000048171000000,0.000019344500000,0.000039479000000,0.000013555000000,0.000056467000000,0.000081355000000,0.000080566000000,0.000178541000000,0.000096763000000,0.000102294000000,0.006593943000000,0.000122047000000,0.000123232000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006991770000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049356000000,0.000019344500000,0.000039084000000,0.000013423333333,0.000052912000000,0.000081750000000,0.000079381000000,0.000180912000000,0.000098344000000,0.000101899000000,0.006668610000000,0.000120862000000,0.000121257000000,0.000059232000000,0.000089652000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006706930000000,0.000026258500000,0.000013028000000,0.000040664000000,0.000016381500000,0.000049355000000,0.000019344500000,0.000039084000000,0.000013423333333,0.000052911000000,0.000079775000000,0.000079380000000,0.000235430000000,0.000116516000000,0.000101899000000,0.007039177000000,0.000157997000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000067528000000 +0.000016184000000,0.006648461000000,0.000026653000000,0.000013159666667,0.000041060000000,0.000015789000000,0.000048960000000,0.000019147000000,0.000041060000000,0.000013423000000,0.000052911000000,0.000083331000000,0.000080565000000,0.000143380000000,0.000217256000000,0.000101899000000,0.006586832000000,0.000122047000000,0.000122047000000,0.000057652000000,0.000054096000000,0.000019147000000,0.000066738000000 +0.000015393500000,0.006987819000000,0.000026456000000,0.000013159666667,0.000040269000000,0.000016579000000,0.000052121000000,0.000038505000000,0.000039875000000,0.000013159666667,0.000053702000000,0.000080566000000,0.000081751000000,0.000182096000000,0.000096368000000,0.000140220000000,0.006446190000000,0.000158787000000,0.000121257000000,0.000060022000000,0.000054491000000,0.000018752000000,0.000068714000000 +0.000015394000000,0.006721943000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000085306000000,0.000035937000000,0.000039479000000,0.000013028000000,0.000056467000000,0.000083331000000,0.000081356000000,0.000142985000000,0.000095973000000,0.000103084000000,0.006806091000000,0.000121652000000,0.000121257000000,0.000111381000000,0.000053701000000,0.000018752000000,0.000066739000000 +0.000015986500000,0.006765005000000,0.000026258000000,0.000013159666667,0.000041059000000,0.000016381500000,0.000048565000000,0.000035542000000,0.000039084000000,0.000013291333333,0.000089257000000,0.000079775000000,0.000081356000000,0.000192368000000,0.000095578000000,0.000101899000000,0.006546141000000,0.000121257000000,0.000157207000000,0.000073059000000,0.000054096000000,0.000019147000000,0.000067134000000 +0.000015986500000,0.006805696000000,0.000026653000000,0.000013159666667,0.000039874000000,0.000016184000000,0.000049751000000,0.000028036000000,0.000040664000000,0.000025275000000,0.000053701000000,0.000086097000000,0.000150492000000,0.000145355000000,0.000096368000000,0.000102689000000,0.006603819000000,0.000122837000000,0.000122837000000,0.000056862000000,0.000053306000000,0.000019147000000,0.000068319000000 +0.000016184000000,0.007169943000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016381500000,0.000050936000000,0.000019147000000,0.000039874000000,0.000014213333333,0.000055677000000,0.000086492000000,0.000093208000000,0.000174985000000,0.000095578000000,0.000101504000000,0.006736165000000,0.000122442000000,0.000121257000000,0.000056467000000,0.000053701000000,0.000019147000000,0.000067923000000 +0.000015394000000,0.006656758000000,0.000026258000000,0.000013028000000,0.000040269000000,0.000016579500000,0.000048961000000,0.000019542000000,0.000040269000000,0.000013028000000,0.000054492000000,0.000080171000000,0.000079776000000,0.000176170000000,0.000095973000000,0.000101899000000,0.007141498000000,0.000121652000000,0.000122837000000,0.000057257000000,0.000054097000000,0.000018752000000,0.000067528000000 +0.000015591500000,0.006629103000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000026060500000,0.000048960000000,0.000019147000000,0.000039479000000,0.000013028000000,0.000053306000000,0.000080171000000,0.000082146000000,0.000142590000000,0.000131133000000,0.000103084000000,0.006484116000000,0.000122047000000,0.000122837000000,0.000056862000000,0.000054097000000,0.000018949500000,0.000180516000000 +0.000015393500000,0.006770140000000,0.000027048000000,0.000013159666667,0.000040269000000,0.000023097500000,0.000048565000000,0.000019344500000,0.000039480000000,0.000013028000000,0.000053701000000,0.000082541000000,0.000081356000000,0.000251627000000,0.000152466000000,0.000102689000000,0.006882733000000,0.000122837000000,0.000120862000000,0.000056862000000,0.000053307000000,0.000018949500000,0.000208171000000 +0.000015394000000,0.006420906000000,0.000026455500000,0.000013818333333,0.000039874000000,0.000016381500000,0.000049356000000,0.000019345000000,0.000039084000000,0.000013159666667,0.000053306000000,0.000081355000000,0.000079380000000,0.000142195000000,0.000147726000000,0.000103084000000,0.006848757000000,0.000376071000000,0.000121652000000,0.000056862000000,0.000053702000000,0.000037122500000,0.000221997000000 +0.000015591500000,0.006743672000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048961000000,0.000019542000000,0.000039874000000,0.000013423333333,0.000053306000000,0.000081355000000,0.000117307000000,0.000181701000000,0.000097158000000,0.000104270000000,0.007072362000000,0.000311282000000,0.000165899000000,0.000056467000000,0.000053702000000,0.000019146500000,0.000184862000000 +0.000015394000000,0.006561548000000,0.000075443000000,0.000013159666667,0.000040270000000,0.000015788500000,0.000048960000000,0.000019344500000,0.000039479000000,0.000013028000000,0.000054887000000,0.000079380000000,0.000085306000000,0.000143775000000,0.000096368000000,0.000102689000000,0.006413005000000,0.000157603000000,0.000122047000000,0.000056862000000,0.000053702000000,0.000018949500000,0.000071084000000 +0.000016579000000,0.008555423000000,0.000026455500000,0.000014739666667,0.000041455000000,0.000016579000000,0.000048170000000,0.000019542000000,0.000039084000000,0.000013291333333,0.000057652000000,0.000079380000000,0.000120862000000,0.000252022000000,0.000096763000000,0.000102689000000,0.007454387000000,0.000144565000000,0.000122442000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000084911000000 +0.000017369000000,0.007514437000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048566000000,0.000019147000000,0.000039084000000,0.000013818000000,0.000052911000000,0.000080170000000,0.000174195000000,0.000178936000000,0.000097159000000,0.000103084000000,0.006975177000000,0.000123232000000,0.000121652000000,0.000056862000000,0.000073059000000,0.000018752000000,0.000067133000000 +0.000016579000000,0.006612906000000,0.000026850500000,0.000013159666667,0.000040665000000,0.000016381500000,0.000048566000000,0.000019344500000,0.000039874000000,0.000013423000000,0.000053306000000,0.000084911000000,0.000086886000000,0.000145750000000,0.000096368000000,0.000105454000000,0.006501894000000,0.000122837000000,0.000122442000000,0.000058047000000,0.000069899000000,0.000018752000000,0.000067528000000 +0.000017172000000,0.007085400000000,0.000026653500000,0.000013028000000,0.000040665000000,0.000016579000000,0.000048171000000,0.000019344500000,0.000039479000000,0.000013028000000,0.000055281000000,0.000082541000000,0.000094788000000,0.000182097000000,0.000176171000000,0.000110590000000,0.006626733000000,0.000122047000000,0.000122442000000,0.000057257000000,0.000053701000000,0.000019147000000,0.000067528000000 +0.000015986500000,0.006570240000000,0.000026060500000,0.000013159666667,0.000039874000000,0.000015789000000,0.000049356000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082935000000,0.000080566000000,0.000146936000000,0.000113356000000,0.000096763000000,0.006714041000000,0.000121652000000,0.000122442000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000067923000000 +0.000015394000000,0.007744757000000,0.000026060500000,0.000013291333333,0.000040269000000,0.000016579000000,0.000049355000000,0.000019344500000,0.000039084000000,0.000013160000000,0.000053307000000,0.000083331000000,0.000080171000000,0.000181306000000,0.000100713000000,0.000097553000000,0.006629894000000,0.000121651000000,0.000158393000000,0.000090837000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.009015670000000,0.000026455500000,0.000013028000000,0.000109405000000,0.000016381500000,0.000048566000000,0.000019147000000,0.000039084000000,0.000013291666667,0.000053306000000,0.000082936000000,0.000081750000000,0.000175775000000,0.000097948000000,0.000132318000000,0.007178239000000,0.000122442000000,0.000121652000000,0.000080170000000,0.000053701000000,0.000018752000000,0.000067134000000 +0.000025468000000,0.006710882000000,0.000026455500000,0.000013159666667,0.000055677000000,0.000016381500000,0.000049751000000,0.000020135000000,0.000042245000000,0.000013291333333,0.000112566000000,0.000082146000000,0.000093998000000,0.000178936000000,0.000095973000000,0.000096368000000,0.006886683000000,0.000141405000000,0.000122442000000,0.000162738000000,0.000053306000000,0.000018949500000,0.000067924000000 +0.000051147000000,0.008177744000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000016381500000,0.000084516000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000107430000000,0.000079380000000,0.000080961000000,0.000177355000000,0.000095973000000,0.000096763000000,0.007016659000000,0.000154837000000,0.000120467000000,0.000175380000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000045418500000,0.006895770000000,0.000026653500000,0.000013291333333,0.000040269000000,0.000015789000000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000056862000000,0.000079775000000,0.000102688000000,0.000143381000000,0.000096368000000,0.000097158000000,0.006627523000000,0.000122442000000,0.000121257000000,0.000077010000000,0.000054096000000,0.000018751500000,0.000067528000000 +0.000048974500000,0.007349300000000,0.000027640500000,0.000013159666667,0.000039874000000,0.000016579000000,0.000048961000000,0.000019344500000,0.000040269000000,0.000013554666667,0.000084122000000,0.000081750000000,0.000089652000000,0.000242936000000,0.000095973000000,0.000097948000000,0.006503869000000,0.000122442000000,0.000121652000000,0.000060417000000,0.000053701000000,0.000018554500000,0.000067528000000 +0.000040875500000,0.006957795000000,0.000026258000000,0.000013423000000,0.000039874000000,0.000016381500000,0.000049355000000,0.000019542000000,0.000059627000000,0.000013554666667,0.000052911000000,0.000080961000000,0.000079776000000,0.000144170000000,0.000116121000000,0.000096368000000,0.006647276000000,0.000122442000000,0.000122047000000,0.000109405000000,0.000053701000000,0.000019146500000,0.000067528000000 +0.000039887500000,0.007573300000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048961000000,0.000019147000000,0.000083331000000,0.000013159666667,0.000053306000000,0.000079380000000,0.000082541000000,0.000180121000000,0.000097159000000,0.000098343000000,0.006495967000000,0.000120862000000,0.000193553000000,0.000108614000000,0.000053701000000,0.000018949500000,0.000143775000000 +0.000050752000000,0.007039572000000,0.000044035500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000047776000000,0.000019147000000,0.000039084000000,0.000019875666667,0.000053306000000,0.000080961000000,0.000079381000000,0.000182096000000,0.000096368000000,0.000097159000000,0.006542980000000,0.000121652000000,0.000135084000000,0.000060418000000,0.000053306000000,0.000019344500000,0.000082540000000 +0.000048776500000,0.006823868000000,0.000033171500000,0.000013028333333,0.000040269000000,0.000015986500000,0.000048171000000,0.000019147000000,0.000039479000000,0.000018690333333,0.000055282000000,0.000080171000000,0.000079776000000,0.000144961000000,0.000097553000000,0.000096368000000,0.006621993000000,0.000158392000000,0.000123232000000,0.000074640000000,0.000053701000000,0.000019344500000,0.000067528000000 +0.000041863000000,0.006926190000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000049356000000,0.000019147000000,0.000039085000000,0.000013423000000,0.000053306000000,0.000080961000000,0.000079381000000,0.000183676000000,0.000095973000000,0.000132713000000,0.006873251000000,0.000122442000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067923000000 +0.000039097500000,0.006601844000000,0.000026653000000,0.000013423000000,0.000040269000000,0.000016184000000,0.000048565000000,0.000019344500000,0.000039479000000,0.000013028000000,0.000054097000000,0.000081356000000,0.000082146000000,0.000145356000000,0.000097158000000,0.000097158000000,0.006728659000000,0.000122047000000,0.000121652000000,0.000057257000000,0.000053701000000,0.000018949500000,0.000067528000000 +0.000033172000000,0.006623178000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016184000000,0.000048565000000,0.000019146500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080171000000,0.000081356000000,0.000199084000000,0.000095973000000,0.000096763000000,0.006541795000000,0.000121652000000,0.000173010000000,0.000057256000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000036727500000,0.006630684000000,0.000026258000000,0.000013028000000,0.000040270000000,0.000016381500000,0.000048961000000,0.000019147000000,0.000039084000000,0.000013423000000,0.000053306000000,0.000082936000000,0.000082145000000,0.000144960000000,0.000096763000000,0.000096763000000,0.007042733000000,0.000122047000000,0.000122442000000,0.000056862000000,0.000089652000000,0.000018949500000,0.000067923000000 +0.000050159500000,0.006884313000000,0.000026851000000,0.000013159666667,0.000040270000000,0.000015789000000,0.000049356000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000052912000000,0.000081355000000,0.000081356000000,0.000176961000000,0.000095973000000,0.000096763000000,0.006667030000000,0.000121652000000,0.000157602000000,0.000056861000000,0.000053701000000,0.000018949500000,0.000066738000000 +0.000043245500000,0.006854288000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016579000000,0.000048960000000,0.000019344500000,0.000039084000000,0.000013291333333,0.000089257000000,0.000080960000000,0.000116911000000,0.000180516000000,0.000159972000000,0.000095973000000,0.006559968000000,0.000123627000000,0.000122837000000,0.000057257000000,0.000054096000000,0.000037122500000,0.000066738000000 +0.000050554000000,0.006543770000000,0.000041863000000,0.000013818333333,0.000040270000000,0.000016776500000,0.000048565000000,0.000019344500000,0.000039479000000,0.000013423333333,0.000053306000000,0.000079380000000,0.000080170000000,0.000146146000000,0.000116516000000,0.000097159000000,0.006738535000000,0.000157207000000,0.000121257000000,0.000057257000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000050159500000,0.006842831000000,0.000027048000000,0.000013160000000,0.000040269000000,0.000023295000000,0.000048566000000,0.000019147000000,0.000039874000000,0.000013423333333,0.000052912000000,0.000079775000000,0.000080960000000,0.000180121000000,0.000096763000000,0.000096763000000,0.007667325000000,0.000122837000000,0.000122837000000,0.000056467000000,0.000054096000000,0.000018752000000,0.000068319000000 +0.000023098000000,0.006458833000000,0.000026258000000,0.000013028000000,0.000039874000000,0.000015591500000,0.000048961000000,0.000019542000000,0.000039479000000,0.000013423333333,0.000053306000000,0.000081750000000,0.000083331000000,0.000141405000000,0.000096368000000,0.000096368000000,0.006686387000000,0.000121652000000,0.000122047000000,0.000057256000000,0.000053701000000,0.000018949000000,0.000095577000000 +0.000016579000000,0.006571820000000,0.000026060500000,0.000013159666667,0.000040269000000,0.000016184000000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013028000000,0.000053307000000,0.000081751000000,0.000081356000000,0.000227529000000,0.000096763000000,0.000133109000000,0.007126091000000,0.000120861000000,0.000121652000000,0.000056862000000,0.000053306000000,0.000019147000000,0.000066738000000 +0.000016381500000,0.006624363000000,0.000027641000000,0.000013160000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000041060000000,0.000014476666667,0.000053306000000,0.000080961000000,0.000080171000000,0.000176961000000,0.000095973000000,0.000096763000000,0.006827819000000,0.000121257000000,0.000122442000000,0.000056861000000,0.000053701000000,0.000018752000000,0.000067133000000 +0.000016381500000,0.006795819000000,0.000026653500000,0.000013159666667,0.000076220000000,0.000016381500000,0.000085701000000,0.000019344500000,0.000039479000000,0.000013291333333,0.000053306000000,0.000079776000000,0.000082936000000,0.000143775000000,0.000095973000000,0.000096763000000,0.006790289000000,0.000122047000000,0.000193158000000,0.000056467000000,0.000053701000000,0.000018752000000,0.000067924000000 +0.000016381500000,0.007018635000000,0.000073270500000,0.000013028000000,0.000041455000000,0.000015591500000,0.000048565000000,0.000019344500000,0.000039084000000,0.000013160000000,0.000052911000000,0.000079380000000,0.000082541000000,0.000179331000000,0.000096763000000,0.000096763000000,0.006818338000000,0.000122442000000,0.000122837000000,0.000057256000000,0.000053306000000,0.000019344500000,0.000067529000000 +0.000016974000000,0.006674141000000,0.000079591000000,0.000013950000000,0.000040270000000,0.000016382000000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000054491000000,0.000081750000000,0.000082541000000,0.000146145000000,0.000096763000000,0.000096763000000,0.006633844000000,0.000157603000000,0.000122047000000,0.000057257000000,0.000055676000000,0.000018752000000,0.000067134000000 +0.000022505000000,0.006747622000000,0.000089072500000,0.000013686666667,0.000039875000000,0.000016381500000,0.000048171000000,0.000019542000000,0.000039084000000,0.000013554666667,0.000072665000000,0.000080170000000,0.000086096000000,0.000180121000000,0.000132318000000,0.000096368000000,0.006861400000000,0.000120862000000,0.000122047000000,0.000056466000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006562338000000,0.000036529500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013159666667,0.000057652000000,0.000080960000000,0.000120072000000,0.000231084000000,0.000096763000000,0.000096763000000,0.006591968000000,0.000121651000000,0.000122442000000,0.000093208000000,0.000053701000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006867720000000,0.000027641000000,0.000013028000000,0.000039874000000,0.000016579000000,0.000048960000000,0.000019542000000,0.000058047000000,0.000013423000000,0.000069898000000,0.000079380000000,0.000080565000000,0.000173800000000,0.000097554000000,0.000097158000000,0.006803325000000,0.000121652000000,0.000122047000000,0.000058047000000,0.000054492000000,0.000018949500000,0.000066738000000 +0.000015986500000,0.007083424000000,0.000026653500000,0.000013159666667,0.000040269000000,0.000016579500000,0.000048961000000,0.000019344500000,0.000056072000000,0.000013423333333,0.000052911000000,0.000080565000000,0.000081355000000,0.000176565000000,0.000095973000000,0.000096368000000,0.006530338000000,0.000121652000000,0.000123627000000,0.000057652000000,0.000053702000000,0.000018752000000,0.000067528000000 +0.000033369500000,0.006919474000000,0.000026653000000,0.000013159666667,0.000041059000000,0.000015789000000,0.000048961000000,0.000019147000000,0.000041454000000,0.000013423333333,0.000055677000000,0.000083331000000,0.000079775000000,0.000141405000000,0.000096368000000,0.000133503000000,0.006827424000000,0.000121652000000,0.000159183000000,0.000056861000000,0.000053702000000,0.000020134500000,0.000067528000000 +0.000015986500000,0.006564708000000,0.000026258500000,0.000013159666667,0.000040269000000,0.000016381500000,0.000049750000000,0.000019344500000,0.000052121000000,0.000013291333333,0.000053701000000,0.000082541000000,0.000082936000000,0.000178935000000,0.000095973000000,0.000096763000000,0.006688758000000,0.000122047000000,0.000121652000000,0.000057257000000,0.000088071000000,0.000019147000000,0.000087282000000 +0.000015986500000,0.006448166000000,0.000026060500000,0.000019744000000,0.000040269000000,0.000015789000000,0.000049751000000,0.000019147000000,0.000039084000000,0.000038575333333,0.000069504000000,0.000081751000000,0.000079776000000,0.000146541000000,0.000095973000000,0.000097553000000,0.006841647000000,0.000122442000000,0.000120861000000,0.000056467000000,0.000069504000000,0.000018949500000,0.000099924000000 +0.000016184000000,0.006712066000000,0.000046011000000,0.000018295666667,0.000040269000000,0.000016579000000,0.000048566000000,0.000019344500000,0.000040270000000,0.000036336666667,0.000053702000000,0.000102689000000,0.000080961000000,0.000333405000000,0.000095578000000,0.000098738000000,0.006569845000000,0.000162343000000,0.000121257000000,0.000057257000000,0.000053702000000,0.000018949500000,0.000067529000000 +0.000016974000000,0.007742386000000,0.000034752000000,0.000013949666667,0.000040269000000,0.000016579000000,0.000048170000000,0.000019542000000,0.000039084000000,0.000041867333333,0.000052911000000,0.000149701000000,0.000082541000000,0.000144170000000,0.000095578000000,0.000097158000000,0.006631079000000,0.000129159000000,0.000141010000000,0.000056862000000,0.000055281000000,0.000018949000000,0.000067924000000 +0.000015393500000,0.006601449000000,0.000026060500000,0.000013291333333,0.000042244000000,0.000016382000000,0.000048565000000,0.000019147000000,0.000039479000000,0.000025011666667,0.000053306000000,0.000088072000000,0.000082541000000,0.000179726000000,0.000133504000000,0.000097553000000,0.006703375000000,0.000128763000000,0.000154442000000,0.000056862000000,0.000054096000000,0.000019542000000,0.000067134000000 +0.000016184000000,0.006720758000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000016184000000,0.000049751000000,0.000019147000000,0.000039479000000,0.000043052666667,0.000052911000000,0.000095973000000,0.000082145000000,0.000183281000000,0.000095973000000,0.000097948000000,0.006446190000000,0.000129158000000,0.000120862000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000065948000000 +0.000015591500000,0.006828610000000,0.000026850500000,0.000013028000000,0.000040269000000,0.000016381500000,0.000051331000000,0.000019147000000,0.000039084000000,0.000036995333333,0.000053306000000,0.000084516000000,0.000079775000000,0.000143381000000,0.000096763000000,0.000095973000000,0.006450536000000,0.000128368000000,0.000159182000000,0.000056862000000,0.000053306000000,0.000019542000000,0.000068318000000 +0.000015394000000,0.006910782000000,0.000026060500000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048961000000,0.000019542500000,0.000039084000000,0.000030279000000,0.000053307000000,0.000080960000000,0.000117701000000,0.000182097000000,0.000095973000000,0.000132319000000,0.006666635000000,0.000129158000000,0.000122837000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000067133000000 +0.000015394000000,0.006673350000000,0.000026258000000,0.000018690666667,0.000040664000000,0.000016184000000,0.000068713000000,0.000019344500000,0.000039479000000,0.000020402666667,0.000055281000000,0.000079380000000,0.000082936000000,0.000141010000000,0.000096368000000,0.000109800000000,0.006957399000000,0.000127973000000,0.000123232000000,0.000057652000000,0.000053701000000,0.000054900000000,0.000065949000000 +0.000015591000000,0.007228016000000,0.000026455500000,0.000013160000000,0.000040269000000,0.000015789000000,0.000080961000000,0.000019147000000,0.000039084000000,0.000023694666667,0.000053701000000,0.000081355000000,0.000080171000000,0.000174590000000,0.000096368000000,0.000097158000000,0.006644115000000,0.000129553000000,0.000121257000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000015986500000,0.006608165000000,0.000026455500000,0.000013423000000,0.000040269000000,0.000024282500000,0.000061998000000,0.000019344500000,0.000039479000000,0.000025801666667,0.000054887000000,0.000080565000000,0.000081751000000,0.000176171000000,0.000097158000000,0.000097159000000,0.006537055000000,0.000129158000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067924000000 +0.000015394000000,0.006746832000000,0.000026258000000,0.000013159666667,0.000040269000000,0.000015789000000,0.000049750000000,0.000019147000000,0.000039479000000,0.000018163666667,0.000053306000000,0.000079380000000,0.000079776000000,0.000145751000000,0.000097158000000,0.000097158000000,0.006738140000000,0.000129948000000,0.000122047000000,0.000093207000000,0.000053306000000,0.000018752000000,0.000067133000000 +0.000015986500000,0.006770140000000,0.000028430500000,0.000013159666667,0.000039874000000,0.000016184000000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000054097000000,0.000080565000000,0.000083331000000,0.000178541000000,0.000095578000000,0.000097158000000,0.006902881000000,0.000128763000000,0.000121652000000,0.000058442000000,0.000053701000000,0.000018752000000,0.000107034000000 +0.000015591500000,0.006748017000000,0.000026258000000,0.000013159666667,0.000058837000000,0.000016579000000,0.000048961000000,0.000019344500000,0.000039084000000,0.000013554666667,0.000052911000000,0.000079380000000,0.000080566000000,0.000143776000000,0.000166689000000,0.000097553000000,0.006608561000000,0.000130343000000,0.000193949000000,0.000056862000000,0.000054887000000,0.000018554500000,0.000084122000000 +0.000015986500000,0.006590783000000,0.000026258000000,0.000013159666667,0.000090047000000,0.000016579000000,0.000048566000000,0.000019542500000,0.000039084000000,0.000013159666667,0.000054492000000,0.000081355000000,0.000081751000000,0.000349997000000,0.000111380000000,0.000096368000000,0.006567078000000,0.000129553000000,0.000122442000000,0.000056467000000,0.000054097000000,0.000018752000000,0.000067923000000 +0.000015591500000,0.006558387000000,0.000027443000000,0.000013291333333,0.000054492000000,0.000016184000000,0.000049355000000,0.000019344500000,0.000039084000000,0.000014213000000,0.000054096000000,0.000079380000000,0.000080170000000,0.000141010000000,0.000097158000000,0.000098739000000,0.007972312000000,0.000129553000000,0.000121257000000,0.000056861000000,0.000053702000000,0.000018752000000,0.000067923000000 +0.000015789000000,0.006687968000000,0.000026258500000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048960000000,0.000019344500000,0.000039874000000,0.000013423000000,0.000092812000000,0.000080171000000,0.000085701000000,0.000180121000000,0.000097158000000,0.000167479000000,0.007415276000000,0.000201849000000,0.000122442000000,0.000057257000000,0.000053702000000,0.000019344500000,0.000067528000000 +0.000015394000000,0.006565499000000,0.000048974000000,0.000013159666667,0.000040270000000,0.000016184000000,0.000048961000000,0.000019147000000,0.000039479000000,0.000013554666667,0.000052912000000,0.000087282000000,0.000116517000000,0.000178146000000,0.000097554000000,0.000095973000000,0.008100707000000,0.000130344000000,0.000121652000000,0.000056862000000,0.000070689000000,0.000018752000000,0.000067528000000 +0.000015986500000,0.006689548000000,0.000026456000000,0.000013028000000,0.000040270000000,0.000016579000000,0.000048961000000,0.000042455500000,0.000039479000000,0.000013159666667,0.000053306000000,0.000079776000000,0.000081751000000,0.000139430000000,0.000095973000000,0.000096368000000,0.007322831000000,0.000131528000000,0.000122442000000,0.000057257000000,0.000054097000000,0.000018949500000,0.000069503000000 +0.000015394000000,0.006700610000000,0.000026653000000,0.000013159666667,0.000040270000000,0.000015789000000,0.000048170000000,0.000019147000000,0.000040664000000,0.000013159666667,0.000053702000000,0.000079380000000,0.000080171000000,0.000174195000000,0.000098738000000,0.000096368000000,0.006902881000000,0.000129948000000,0.000121257000000,0.000057652000000,0.000054097000000,0.000018949500000,0.000066738000000 +0.000015986500000,0.006787128000000,0.000026258000000,0.000013949666667,0.000039874000000,0.000016184000000,0.000048960000000,0.000019147000000,0.000075035000000,0.000013555000000,0.000054096000000,0.000081751000000,0.000081356000000,0.000141405000000,0.000130343000000,0.000097553000000,0.007452412000000,0.000130343000000,0.000164319000000,0.000057257000000,0.000053702000000,0.000018752000000,0.000067133000000 +0.000015394000000,0.006632660000000,0.000026258000000,0.000013028000000,0.000041849000000,0.000015986500000,0.000048565000000,0.000019344500000,0.000039875000000,0.000013423333333,0.000054097000000,0.000081751000000,0.000083330000000,0.000173405000000,0.000112565000000,0.000095973000000,0.007366288000000,0.000128763000000,0.000122837000000,0.000057652000000,0.000053702000000,0.000019147000000,0.000066739000000 +0.000015789000000,0.006599474000000,0.000026258000000,0.000019875666667,0.000041454000000,0.000016381500000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013555000000,0.000055282000000,0.000084121000000,0.000082541000000,0.000139825000000,0.000095973000000,0.000096368000000,0.006541005000000,0.000129948000000,0.000122442000000,0.000058443000000,0.000053702000000,0.000018752000000,0.000067529000000 +0.000015591500000,0.006579720000000,0.000026258000000,0.000030674333333,0.000041455000000,0.000015789000000,0.000048566000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000081751000000,0.000080566000000,0.000177751000000,0.000097158000000,0.000099529000000,0.006631474000000,0.000128763000000,0.000122837000000,0.000056862000000,0.000053307000000,0.000018949500000,0.000067924000000 +0.000015394000000,0.006599474000000,0.000026258000000,0.000017900666667,0.000040270000000,0.000016381500000,0.000048171000000,0.000019147000000,0.000039479000000,0.000013159666667,0.000053306000000,0.000081751000000,0.000079381000000,0.000173405000000,0.000096368000000,0.000097553000000,0.006628709000000,0.000129553000000,0.000123233000000,0.000056861000000,0.000054097000000,0.000018752000000,0.000086886000000 +0.000015196500000,0.006725894000000,0.000026455500000,0.000013159666667,0.000040270000000,0.000016579500000,0.000069108000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053306000000,0.000081751000000,0.000081356000000,0.000139429000000,0.000098343000000,0.000112960000000,0.006550091000000,0.000128763000000,0.000122442000000,0.000057257000000,0.000053307000000,0.000019937000000,0.000104269000000 +0.000025468000000,0.006770930000000,0.000026653000000,0.000013159666667,0.000040665000000,0.000016381500000,0.000100319000000,0.000019344500000,0.000040269000000,0.000013423000000,0.000059232000000,0.000079776000000,0.000087282000000,0.000175380000000,0.000095973000000,0.000097553000000,0.006985449000000,0.000129948000000,0.000122442000000,0.000076219000000,0.000054096000000,0.000018949500000,0.000067528000000 +0.000031986500000,0.007035227000000,0.000026851000000,0.000013554666667,0.000040269000000,0.000016381500000,0.000061603000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000053307000000,0.000080171000000,0.000079776000000,0.000141405000000,0.000096763000000,0.000095577000000,0.006763424000000,0.000128763000000,0.000157998000000,0.000056862000000,0.000054096000000,0.000018949000000,0.000067924000000 +0.000015789000000,0.006480955000000,0.000026258000000,0.000025143000000,0.000040269000000,0.000016579000000,0.000048960000000,0.000019147000000,0.000039084000000,0.000013028333333,0.000053701000000,0.000079775000000,0.000116121000000,0.000240170000000,0.000095973000000,0.000095973000000,0.006961351000000,0.000129949000000,0.000122047000000,0.000056862000000,0.000053701000000,0.000018949500000,0.000067529000000 +0.000016184000000,0.006564313000000,0.000026653000000,0.000013159666667,0.000040269000000,0.000015788500000,0.000050541000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053306000000,0.000080170000000,0.000079775000000,0.000197504000000,0.000128763000000,0.000095973000000,0.006578535000000,0.000131134000000,0.000122837000000,0.000056862000000,0.000054096000000,0.000028628500000,0.000067529000000 +0.000015591500000,0.007104758000000,0.000026060500000,0.000013423000000,0.000040664000000,0.000016579000000,0.000048961000000,0.000019147000000,0.000040269000000,0.000025406666667,0.000052912000000,0.000081356000000,0.000082146000000,0.000143775000000,0.000114936000000,0.000097158000000,0.006583277000000,0.000144171000000,0.000120862000000,0.000056467000000,0.000054096000000,0.000018949500000,0.000067529000000 +0.000015788500000,0.006740906000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000089257000000,0.000081751000000,0.000081751000000,0.000182886000000,0.000095973000000,0.000096763000000,0.006750387000000,0.000164319000000,0.000122837000000,0.000056466000000,0.000054096000000,0.000018752000000,0.000081355000000 +0.000015986500000,0.007184165000000,0.000044826000000,0.000013159666667,0.000040664000000,0.000016381500000,0.000048960000000,0.000019344500000,0.000039084000000,0.000013028000000,0.000053307000000,0.000082936000000,0.000081356000000,0.000130738000000,0.000096763000000,0.000096763000000,0.006612906000000,0.000129158000000,0.000121652000000,0.000056862000000,0.000053701000000,0.000018752000000,0.000071479000000 +0.000015789000000,0.006900906000000,0.000026653000000,0.000013028000000,0.000040269000000,0.000015986500000,0.000048565000000,0.000019147000000,0.000039480000000,0.000013686666667,0.000054491000000,0.000082540000000,0.000080961000000,0.000163923000000,0.000095973000000,0.000097554000000,0.006622388000000,0.000130344000000,0.000121652000000,0.000057652000000,0.000090047000000,0.000018949500000,0.000071874000000 +0.000015394000000,0.007436214000000,0.000026258500000,0.000013028000000,0.000057257000000,0.000016381500000,0.000051726000000,0.000019147000000,0.000039084000000,0.000013423333333,0.000053307000000,0.000081356000000,0.000079381000000,0.000214886000000,0.000095973000000,0.000097554000000,0.006659919000000,0.000128763000000,0.000157603000000,0.000056862000000,0.000053306000000,0.000018949500000,0.000071479000000 +0.000015591500000,0.006576560000000,0.000026455500000,0.000013159666667,0.000040269000000,0.000032974000000,0.000048960000000,0.000019344500000,0.000039084000000,0.000013159666667,0.000055677000000,0.000079380000000,0.000080171000000,0.000214096000000,0.000095973000000,0.000102689000000,0.007254091000000,0.000129158000000,0.000124022000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000071479000000 +0.000015394000000,0.006812412000000,0.000026456000000,0.000013159666667,0.000040270000000,0.000017369000000,0.000048566000000,0.000019344500000,0.000039479000000,0.000013554666667,0.000054491000000,0.000080170000000,0.000079776000000,0.000179726000000,0.000095973000000,0.000096368000000,0.006422092000000,0.000130343000000,0.000122047000000,0.000057257000000,0.000053306000000,0.000018752000000,0.000071874000000 +0.000015591500000,0.006529153000000,0.000026850500000,0.000013159666667,0.000059628000000,0.000022110000000,0.000050146000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000082146000000,0.000086097000000,0.000130738000000,0.000178146000000,0.000095973000000,0.006621597000000,0.000129159000000,0.000122837000000,0.000056467000000,0.000053701000000,0.000018949500000,0.000071479000000 +0.000015196500000,0.006621993000000,0.000026455500000,0.000013818000000,0.000056467000000,0.000016382000000,0.000048960000000,0.000019344500000,0.000039480000000,0.000013291333333,0.000054491000000,0.000081356000000,0.000239775000000,0.000229109000000,0.000135874000000,0.000097158000000,0.006973597000000,0.000128763000000,0.000121257000000,0.000056862000000,0.000054096000000,0.000019344500000,0.000071479000000 +0.000015986500000,0.006740116000000,0.000026060500000,0.000013159666667,0.000054886000000,0.000016381500000,0.000050541000000,0.000019344500000,0.000039084000000,0.000013423000000,0.000053307000000,0.000078986000000,0.000100714000000,0.000163134000000,0.000109800000000,0.000097553000000,0.006986239000000,0.000130343000000,0.000121257000000,0.000058442000000,0.000054096000000,0.000018949000000,0.000072269000000 +0.000015591500000,0.006687572000000,0.000026653000000,0.000013028000000,0.000039874000000,0.000016381500000,0.000048961000000,0.000019344500000,0.000040269000000,0.000013818000000,0.000052911000000,0.000082146000000,0.000093998000000,0.000164713000000,0.000186047000000,0.000097553000000,0.006528363000000,0.000129553000000,0.000121257000000,0.000057257000000,0.000053701000000,0.000018752000000,0.000071874000000 +0.000015789000000,0.006926584000000,0.000026455500000,0.000013159666667,0.000039874000000,0.000015986500000,0.000048961000000,0.000019542000000,0.000039479000000,0.000013028000000,0.000058837000000,0.000081751000000,0.000079380000000,0.000130343000000,0.000095973000000,0.000096763000000,0.007108708000000,0.000129948000000,0.000122442000000,0.000093997000000,0.000053306000000,0.000018949000000,0.000073060000000 +0.000015591500000,0.006480955000000,0.000026258000000,0.000013159666667,0.000039874000000,0.000016579500000,0.000048565000000,0.000019344500000,0.000039479000000,0.000013423000000,0.000053307000000,0.000118886000000,0.000080566000000,0.000166294000000,0.000097553000000,0.000187627000000,0.006921845000000,0.000129554000000,0.000122837000000,0.000056862000000,0.000053306000000,0.000018752000000,0.000072269000000 diff --git a/docs/source/media/bench/lua bench tests selene.csv b/docs/source/media/bench/lua bench tests selene.csv new file mode 100644 index 00000000..3675f46c --- /dev/null +++ b/docs/source/media/bench/lua bench tests selene.csv @@ -0,0 +1,2001 @@ +"selene - global get","selene - stateful c function","selene - c function","selene - global set","selene - table get","selene - table chained get","selene - c function through lua","selene - table set","selene - table chained set","selene - lua function","selene - member function calls","selene - member function calls (simple)","selene - multi return","selene - return userdata","selene - get optional" +0.000294293000000,0.000106638000000,0.000093602000000,0.000218836000000,0.000625355000000,0.001045699000000,0.000073059000000,0.000578737000000,0.001038193000000,0.000055676000000,0.000188416000000,0.000208564000000,0.000082145000000,0.000237404000000,0.000675527000000 +0.000276911000000,0.000069503000000,0.000048170000000,0.000221996000000,0.000553453000000,0.001163823000000,0.000069108000000,0.000572811000000,0.001031477000000,0.000055280000000,0.000203428000000,0.000182491000000,0.000079380000000,0.000213700000000,0.000643922000000 +0.000246490000000,0.000069108000000,0.000047775000000,0.000221602000000,0.000606786000000,0.001043329000000,0.000068712000000,0.000536466000000,0.001009749000000,0.000056861000000,0.000203034000000,0.000218441000000,0.000080960000000,0.000211725000000,0.000598490000000 +0.000248465000000,0.000072268000000,0.000046985000000,0.000251231000000,0.000589009000000,0.001029897000000,0.000107428000000,0.000570836000000,0.001008564000000,0.000056071000000,0.000240565000000,0.000203429000000,0.000078194000000,0.000214490000000,0.000628120000000 +0.000324713000000,0.000069503000000,0.000047774000000,0.000215280000000,0.000561750000000,0.001042934000000,0.000069503000000,0.000538836000000,0.001025157000000,0.000090046000000,0.000208169000000,0.000271380000000,0.000078984000000,0.000212120000000,0.000627330000000 +0.000248071000000,0.000068713000000,0.000048564000000,0.000222787000000,0.001095872000000,0.001029107000000,0.000068713000000,0.000581898000000,0.001009354000000,0.000071478000000,0.000186836000000,0.000189207000000,0.000078590000000,0.000211330000000,0.000599280000000 +0.000243330000000,0.000069108000000,0.000047379000000,0.000224367000000,0.000676712000000,0.001042539000000,0.000069503000000,0.000611527000000,0.001064267000000,0.000056071000000,0.000206194000000,0.000235429000000,0.000078589000000,0.000214095000000,0.000628515000000 +0.000248071000000,0.000071478000000,0.000047380000000,0.000362638000000,0.000636811000000,0.001029107000000,0.000069503000000,0.000541601000000,0.001057947000000,0.000054885000000,0.000297453000000,0.000203824000000,0.000078589000000,0.000212515000000,0.000586638000000 +0.000280860000000,0.000068713000000,0.000046589000000,0.000242935000000,0.000568465000000,0.001049650000000,0.000069108000000,0.000644317000000,0.001033057000000,0.000056071000000,0.000546342000000,0.000203034000000,0.000078985000000,0.000211725000000,0.000626935000000 +0.000245305000000,0.000069108000000,0.000046984000000,0.000223182000000,0.000641947000000,0.001029107000000,0.000068713000000,0.000542391000000,0.001008169000000,0.000055676000000,0.000217256000000,0.000183281000000,0.000151280000000,0.000210540000000,0.000822885000000 +0.000248466000000,0.000069503000000,0.000047774000000,0.000218441000000,0.000554243000000,0.001128268000000,0.000073058000000,0.000614292000000,0.001022786000000,0.000055280000000,0.000241354000000,0.000185651000000,0.000078589000000,0.000261107000000,0.000696070000000 +0.000280465000000,0.000069108000000,0.000047775000000,0.000270984000000,0.000623379000000,0.001077700000000,0.000071083000000,0.000581898000000,0.001070984000000,0.000055676000000,0.000202243000000,0.000220021000000,0.000078590000000,0.000211725000000,0.000586243000000 +0.000244120000000,0.000105453000000,0.000046589000000,0.000220812000000,0.000648663000000,0.001042934000000,0.000069502000000,0.000540021000000,0.001030687000000,0.000056465000000,0.000255576000000,0.000205009000000,0.000078984000000,0.000210935000000,0.000662095000000 +0.000238589000000,0.000069898000000,0.000046589000000,0.000214491000000,0.000555823000000,0.001029107000000,0.000069108000000,0.000575181000000,0.001083231000000,0.000056071000000,0.000191972000000,0.000202638000000,0.000078590000000,0.000269404000000,0.000595329000000 +0.000238589000000,0.000069108000000,0.000046985000000,0.000214490000000,0.000604415000000,0.001044119000000,0.000068318000000,0.000534886000000,0.001042144000000,0.000054885000000,0.000223577000000,0.000184860000000,0.000078589000000,0.000211725000000,0.000634836000000 +0.000280861000000,0.000069108000000,0.000046589000000,0.000255972000000,0.000587033000000,0.001029502000000,0.000105848000000,0.000573601000000,0.001024366000000,0.000055676000000,0.000182886000000,0.000293897000000,0.000078984000000,0.000211330000000,0.000663280000000 +0.000250046000000,0.000068713000000,0.000046985000000,0.000220021000000,0.000637997000000,0.001042934000000,0.000083725000000,0.000537256000000,0.001036613000000,0.000055280000000,0.000186441000000,0.000260713000000,0.000078985000000,0.000245700000000,0.000598885000000 +0.000246490000000,0.000070688000000,0.000066343000000,0.000218046000000,0.000627330000000,0.001042934000000,0.000069108000000,0.000573206000000,0.001181206000000,0.000055281000000,0.000185256000000,0.000187231000000,0.000079774000000,0.000212910000000,0.000630885000000 +0.000243724000000,0.000069107000000,0.000046985000000,0.000217256000000,0.000589404000000,0.001079675000000,0.000069108000000,0.000541206000000,0.001026342000000,0.000088861000000,0.000189996000000,0.000186836000000,0.000078984000000,0.000210935000000,0.000721355000000 +0.000284811000000,0.000069108000000,0.000046984000000,0.000284021000000,0.000630885000000,0.001095477000000,0.000069108000000,0.000571626000000,0.001024366000000,0.000071873000000,0.000290342000000,0.000212120000000,0.000084120000000,0.000288367000000,0.000590984000000 +0.000244910000000,0.000069898000000,0.000046984000000,0.000235034000000,0.000624169000000,0.001100613000000,0.000068713000000,0.000570836000000,0.001016465000000,0.000055281000000,0.000187626000000,0.000312860000000,0.000160366000000,0.000343280000000,0.000677502000000 +0.000239379000000,0.000069108000000,0.000049355000000,0.000222391000000,0.000592564000000,0.001064268000000,0.000069108000000,0.000538441000000,0.001024761000000,0.000055281000000,0.000203034000000,0.000210145000000,0.000078589000000,0.000228318000000,0.000669996000000 +0.000248071000000,0.000071478000000,0.000047380000000,0.000226738000000,0.000636811000000,0.001076119000000,0.000070293000000,0.000576367000000,0.001056367000000,0.000055676000000,0.000205009000000,0.000182885000000,0.000078985000000,0.000209750000000,0.000592169000000 +0.000285602000000,0.000071873000000,0.000046984000000,0.000263873000000,0.000590984000000,0.001096267000000,0.000069503000000,0.000541601000000,0.001024366000000,0.000056071000000,0.000226342000000,0.000238589000000,0.000079379000000,0.000212515000000,0.000622194000000 +0.000239774000000,0.000069108000000,0.000046589000000,0.000285601000000,0.000621799000000,0.001056366000000,0.000069503000000,0.000698441000000,0.001007379000000,0.000055280000000,0.000203429000000,0.000204614000000,0.000079775000000,0.000212515000000,0.000590589000000 +0.000248071000000,0.000086096000000,0.000047380000000,0.000223182000000,0.000627724000000,0.001095873000000,0.000069107000000,0.000607576000000,0.001031477000000,0.000056071000000,0.000183281000000,0.000203428000000,0.000079775000000,0.000209750000000,0.000657354000000 +0.000246490000000,0.000069108000000,0.000048170000000,0.000225552000000,0.000592169000000,0.001044514000000,0.000072268000000,0.000542787000000,0.001146045000000,0.000056465000000,0.000182491000000,0.000205403000000,0.000078984000000,0.000208959000000,0.000623774000000 +0.000334589000000,0.000069108000000,0.000046984000000,0.000259922000000,0.000628120000000,0.001466835000000,0.000103478000000,0.000571626000000,0.001037403000000,0.000055676000000,0.000181305000000,0.000191182000000,0.000078590000000,0.000208960000000,0.000586638000000 +0.000242145000000,0.000069503000000,0.000047379000000,0.000214491000000,0.000643527000000,0.001042934000000,0.000084120000000,0.000539626000000,0.001070588000000,0.000054885000000,0.000239774000000,0.000277700000000,0.000078589000000,0.000324712000000,0.000658145000000 +0.000247676000000,0.000069108000000,0.000046985000000,0.000221996000000,0.000771922000000,0.001029502000000,0.000069108000000,0.000605206000000,0.001013700000000,0.000055675000000,0.000183676000000,0.000184070000000,0.000078985000000,0.000411626000000,0.000631675000000 +0.000284416000000,0.000069108000000,0.000046984000000,0.000224367000000,0.000586639000000,0.001078885000000,0.000069503000000,0.000538836000000,0.001062687000000,0.000056071000000,0.000191182000000,0.000203033000000,0.000134688000000,0.000223972000000,0.000591379000000 +0.000246886000000,0.000072664000000,0.000046589000000,0.000260713000000,0.000588613000000,0.001029107000000,0.000075429000000,0.000636811000000,0.001023181000000,0.000054885000000,0.000202639000000,0.000181700000000,0.000092022000000,0.000285997000000,0.001070588000000 +0.000248860000000,0.000069108000000,0.000047379000000,0.000253996000000,0.000586638000000,0.001042934000000,0.000069898000000,0.000575182000000,0.001068613000000,0.000074639000000,0.000274935000000,0.000231083000000,0.000080960000000,0.000279675000000,0.000689354000000 +0.000247676000000,0.000072268000000,0.000047379000000,0.000220021000000,0.000587824000000,0.001029107000000,0.000073454000000,0.000541206000000,0.001029502000000,0.000056071000000,0.000207379000000,0.000186441000000,0.000078194000000,0.000223576000000,0.000630490000000 +0.000282441000000,0.000069108000000,0.000086096000000,0.000216071000000,0.000587823000000,0.001092317000000,0.000090441000000,0.000619033000000,0.001059132000000,0.000054095000000,0.000203824000000,0.000206589000000,0.000081750000000,0.000225947000000,0.000598490000000 +0.000251231000000,0.000074243000000,0.000063577000000,0.000221601000000,0.000586638000000,0.001067823000000,0.000137849000000,0.000534885000000,0.001011724000000,0.000055281000000,0.000181305000000,0.000205404000000,0.000078590000000,0.000224762000000,0.000662885000000 +0.000248071000000,0.000070688000000,0.000046984000000,0.000271775000000,0.000596515000000,0.001097057000000,0.000069503000000,0.000573602000000,0.001067428000000,0.000055676000000,0.000225552000000,0.000203824000000,0.000078589000000,0.000222392000000,0.000630095000000 +0.000248071000000,0.000109404000000,0.000047380000000,0.000218441000000,0.000591379000000,0.001029897000000,0.000070293000000,0.000554243000000,0.001011329000000,0.000056070000000,0.000235034000000,0.000244120000000,0.000079380000000,0.000223972000000,0.000614292000000 +0.000323527000000,0.000069108000000,0.000046589000000,0.000219626000000,0.000591774000000,0.001078095000000,0.000138639000000,0.000534490000000,0.001163823000000,0.000055281000000,0.000181305000000,0.000206194000000,0.000078589000000,0.000227922000000,0.000676318000000 +0.000248466000000,0.000069108000000,0.000046194000000,0.000221206000000,0.000599675000000,0.001029502000000,0.000086096000000,0.000604811000000,0.001053996000000,0.000055280000000,0.000203428000000,0.000189206000000,0.000078984000000,0.000224366000000,0.000586243000000 +0.000240169000000,0.000071083000000,0.000047775000000,0.000250836000000,0.000596909000000,0.001043724000000,0.000069503000000,0.000542786000000,0.001023576000000,0.000054885000000,0.000205009000000,0.000203824000000,0.000078984000000,0.000222391000000,0.000662490000000 +0.000247676000000,0.000068713000000,0.000047774000000,0.000214095000000,0.000594539000000,0.001083626000000,0.000069898000000,0.000587824000000,0.001435625000000,0.000055281000000,0.000237009000000,0.000242145000000,0.000150095000000,0.000221996000000,0.000635626000000 +0.000399379000000,0.000071083000000,0.000046984000000,0.000220021000000,0.000587428000000,0.001531230000000,0.000069898000000,0.000534095000000,0.001050441000000,0.000056465000000,0.000187231000000,0.000209355000000,0.000093602000000,0.000223182000000,0.000587428000000 +0.000238589000000,0.000071873000000,0.000047380000000,0.000224761000000,0.000587033000000,0.001029107000000,0.000069898000000,0.000574786000000,0.001012514000000,0.000054096000000,0.000185651000000,0.000182096000000,0.000078589000000,0.000225552000000,0.000621799000000 +0.000246490000000,0.000069503000000,0.000046984000000,0.000304565000000,0.000596119000000,0.001043330000000,0.000069503000000,0.000558983000000,0.001070984000000,0.000055281000000,0.000203823000000,0.000205404000000,0.000079379000000,0.000223182000000,0.000657354000000 +0.000274935000000,0.000069503000000,0.000046985000000,0.000214095000000,0.000625354000000,0.001042144000000,0.000069898000000,0.000874243000000,0.001019230000000,0.000054490000000,0.000242934000000,0.000201454000000,0.000115330000000,0.000225157000000,0.000608367000000 +0.000241749000000,0.000068713000000,0.000046589000000,0.000213700000000,0.000620219000000,0.001043329000000,0.000069898000000,0.000616663000000,0.001023576000000,0.000056071000000,0.000184071000000,0.000217256000000,0.000094391000000,0.000223182000000,0.000626934000000 +0.000248861000000,0.000070688000000,0.000046984000000,0.000217651000000,0.000552663000000,0.001081255000000,0.000068712000000,0.000609156000000,0.001058341000000,0.000125207000000,0.000184466000000,0.000189602000000,0.000078589000000,0.000262688000000,0.000591379000000 +0.000247281000000,0.000068713000000,0.000046985000000,0.000255972000000,0.000640367000000,0.001043329000000,0.000068712000000,0.000551082000000,0.001014095000000,0.000070293000000,0.000182095000000,0.000184466000000,0.000079379000000,0.000225947000000,0.000634836000000 +0.000285206000000,0.000105454000000,0.000046589000000,0.000215280000000,0.000608367000000,0.001028712000000,0.000069108000000,0.000574392000000,0.001067428000000,0.000056466000000,0.000186441000000,0.000189997000000,0.000079774000000,0.000221997000000,0.000665650000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000219627000000,0.000592169000000,0.001076120000000,0.000109799000000,0.000539231000000,0.001091132000000,0.000054490000000,0.000221602000000,0.000208169000000,0.000079775000000,0.000224762000000,0.000598885000000 +0.000245700000000,0.000069503000000,0.000122441000000,0.000214885000000,0.000590194000000,0.001045305000000,0.000071873000000,0.000614292000000,0.001120366000000,0.000055281000000,0.000188021000000,0.000185256000000,0.000156021000000,0.000225947000000,0.000637997000000 +0.000243330000000,0.000069108000000,0.000049355000000,0.000214095000000,0.000554639000000,0.001043724000000,0.000069502000000,0.000535676000000,0.001044119000000,0.000056070000000,0.000184071000000,0.000204614000000,0.000079379000000,0.000222786000000,0.000683823000000 +0.000316811000000,0.000069503000000,0.000046589000000,0.000252416000000,0.000594934000000,0.001064267000000,0.000073058000000,0.000654193000000,0.001045305000000,0.000055676000000,0.000183281000000,0.000202638000000,0.000078590000000,0.000236219000000,0.000661305000000 +0.000248861000000,0.000068713000000,0.000048564000000,0.000224367000000,0.000558984000000,0.001043724000000,0.000069108000000,0.000636811000000,0.001009749000000,0.000055281000000,0.000186836000000,0.000204218000000,0.000078984000000,0.000225552000000,0.000941798000000 +0.000248466000000,0.000069108000000,0.000046984000000,0.000214491000000,0.000593749000000,0.001029502000000,0.000069503000000,0.000535675000000,0.001302884000000,0.000056466000000,0.000220417000000,0.000277305000000,0.000079380000000,0.000223972000000,0.000622194000000 +0.000282441000000,0.000069108000000,0.000046985000000,0.000215675000000,0.000588614000000,0.001042934000000,0.000068713000000,0.000633651000000,0.001016070000000,0.000075034000000,0.000184861000000,0.000182095000000,0.000078984000000,0.000225947000000,0.000626935000000 +0.000254392000000,0.000070688000000,0.000047379000000,0.000575972000000,0.000557009000000,0.001062688000000,0.000068713000000,0.000557008000000,0.001008959000000,0.000072663000000,0.000182886000000,0.000207379000000,0.000078984000000,0.000225552000000,0.000586638000000 +0.000243330000000,0.000069107000000,0.000049355000000,0.000305750000000,0.000594144000000,0.001059527000000,0.000069503000000,0.000607577000000,0.001032268000000,0.000056861000000,0.000203429000000,0.000184465000000,0.000079775000000,0.000225552000000,0.000659329000000 +0.000244120000000,0.000068712000000,0.000046985000000,0.000286391000000,0.000558194000000,0.001095477000000,0.000069502000000,0.000620218000000,0.001008959000000,0.000055675000000,0.000186836000000,0.000242934000000,0.000082540000000,0.000259528000000,0.000602045000000 +0.000283231000000,0.000069502000000,0.000047379000000,0.000219627000000,0.000647873000000,0.001180415000000,0.000069502000000,0.000534885000000,0.001018045000000,0.000092811000000,0.000275330000000,0.000190786000000,0.000078984000000,0.000225157000000,0.000628910000000 +0.000247676000000,0.000069107000000,0.000047379000000,0.000228317000000,0.000651428000000,0.001029107000000,0.000068712000000,0.000661305000000,0.001020021000000,0.000054096000000,0.000205403000000,0.000203428000000,0.000147725000000,0.000223181000000,0.000631280000000 +0.000239774000000,0.000088860000000,0.000046590000000,0.000221997000000,0.000611923000000,0.001061502000000,0.000141799000000,0.000576761000000,0.001020415000000,0.000055281000000,0.000205009000000,0.000206194000000,0.000078589000000,0.000223972000000,0.000591379000000 +0.000247676000000,0.000072663000000,0.000047379000000,0.000290737000000,0.000589799000000,0.001137353000000,0.000179330000000,0.000551478000000,0.001066638000000,0.000055675000000,0.000203034000000,0.000260713000000,0.000078590000000,0.000208959000000,0.000627725000000 +0.000323527000000,0.000069108000000,0.000046985000000,0.000214095000000,0.000552663000000,0.001094292000000,0.000231478000000,0.000619428000000,0.001022391000000,0.000056071000000,0.000257947000000,0.000222787000000,0.000079379000000,0.000212120000000,0.000669996000000 +0.000246095000000,0.000069503000000,0.000046589000000,0.000214490000000,0.000595330000000,0.001063872000000,0.000123231000000,0.000534490000000,0.001089157000000,0.000056465000000,0.000203824000000,0.000208564000000,0.000078590000000,0.000214095000000,0.000594144000000 +0.000248465000000,0.000069108000000,0.000047379000000,0.000215676000000,0.000590194000000,0.001078885000000,0.000103083000000,0.000614293000000,0.001007378000000,0.000059231000000,0.000181700000000,0.000204218000000,0.000078589000000,0.000299824000000,0.000635231000000 +0.000247281000000,0.000068712000000,0.000067133000000,0.000233848000000,0.000552663000000,0.001028712000000,0.000069503000000,0.000536465000000,0.001012120000000,0.000055676000000,0.000183281000000,0.000192762000000,0.000078590000000,0.000250441000000,0.000591379000000 +0.000284416000000,0.000069897000000,0.000047379000000,0.000278886000000,0.000608762000000,0.001079280000000,0.000069503000000,0.001035032000000,0.001025156000000,0.000056466000000,0.000241355000000,0.000311280000000,0.000079379000000,0.000211330000000,0.000626934000000 +0.000248071000000,0.000069107000000,0.000046985000000,0.000214096000000,0.000557009000000,0.001403625000000,0.000140614000000,0.000561750000000,0.001060712000000,0.000057651000000,0.000201848000000,0.000197108000000,0.000078589000000,0.000208959000000,0.000671182000000 +0.000247675000000,0.000069108000000,0.000047379000000,0.000214095000000,0.000592959000000,0.001043724000000,0.000069503000000,0.000573601000000,0.001038589000000,0.000055675000000,0.000180910000000,0.000205799000000,0.000078984000000,0.000261503000000,0.000592169000000 +0.000275724000000,0.000072268000000,0.000048169000000,0.000214095000000,0.000654589000000,0.001248761000000,0.000075824000000,0.000540021000000,0.001039378000000,0.000056466000000,0.000182886000000,0.000204219000000,0.000078984000000,0.000231478000000,0.000622589000000 +0.000248070000000,0.000069108000000,0.000046985000000,0.000305355000000,0.000554639000000,0.001042934000000,0.000069503000000,0.000571626000000,0.001018836000000,0.000055675000000,0.000242540000000,0.000257947000000,0.000153651000000,0.000209749000000,0.000626539000000 +0.000246096000000,0.000071873000000,0.000046589000000,0.000216860000000,0.000590589000000,0.001029502000000,0.000073058000000,0.000538836000000,0.001023576000000,0.000056466000000,0.000469700000000,0.000185651000000,0.000078589000000,0.000247280000000,0.000586638000000 +0.000249650000000,0.000169848000000,0.000047380000000,0.000220022000000,0.000553848000000,0.001043329000000,0.000068713000000,0.000570836000000,0.001152366000000,0.000092811000000,0.000286787000000,0.000182886000000,0.000082540000000,0.000210145000000,0.000623379000000 +0.000309305000000,0.000114144000000,0.000048170000000,0.000223972000000,0.000589404000000,0.001028316000000,0.000069503000000,0.000570441000000,0.001008959000000,0.000056071000000,0.000203034000000,0.000183281000000,0.000078984000000,0.000210540000000,0.000586638000000 +0.000289947000000,0.000087675000000,0.000046984000000,0.000304170000000,0.000562144000000,0.001042934000000,0.000068713000000,0.000589403000000,0.001122342000000,0.000055676000000,0.000249256000000,0.000184861000000,0.000078589000000,0.000339330000000,0.000621799000000 +0.000264268000000,0.000073058000000,0.000046984000000,0.000242144000000,0.000626934000000,0.001035428000000,0.000069898000000,0.000570046000000,0.001010934000000,0.000055280000000,0.000203429000000,0.000220021000000,0.000078589000000,0.000227132000000,0.000631675000000 +0.000241355000000,0.000069108000000,0.000046590000000,0.000257947000000,0.000628515000000,0.001078490000000,0.000069503000000,0.000534885000000,0.001034638000000,0.000054491000000,0.000206984000000,0.000193552000000,0.000079774000000,0.000210145000000,0.000591379000000 +0.000274935000000,0.000069108000000,0.000046194000000,0.000254787000000,0.000553058000000,0.001029502000000,0.000069503000000,0.000605997000000,0.001063082000000,0.000054096000000,0.000184070000000,0.000183281000000,0.000078590000000,0.000213305000000,0.000663280000000 +0.000245305000000,0.000071479000000,0.000046985000000,0.000320762000000,0.000602835000000,0.001043725000000,0.000069108000000,0.000543971000000,0.001058342000000,0.000055280000000,0.000220811000000,0.000182491000000,0.000079379000000,0.000208960000000,0.000687379000000 +0.000244515000000,0.000069503000000,0.000048169000000,0.000224367000000,0.000557403000000,0.001029502000000,0.000093602000000,0.000589799000000,0.001017650000000,0.000056071000000,0.000219626000000,0.000203429000000,0.000078985000000,0.000210540000000,0.000594145000000 +0.000268614000000,0.000072268000000,0.000046589000000,0.000223972000000,0.000591774000000,0.001042934000000,0.000069503000000,0.000538441000000,0.001060317000000,0.000056861000000,0.000203034000000,0.000240169000000,0.000119280000000,0.000247280000000,0.000635230000000 +0.000259923000000,0.000072269000000,0.000046985000000,0.000304564000000,0.000589799000000,0.001029502000000,0.000103874000000,0.000573996000000,0.001062292000000,0.000056466000000,0.000188812000000,0.000205009000000,0.000108614000000,0.000210539000000,0.000590984000000 +0.000248861000000,0.000113750000000,0.000046589000000,0.000214490000000,0.000555033000000,0.001109304000000,0.000084120000000,0.000631676000000,0.001093897000000,0.000055280000000,0.000203429000000,0.000182885000000,0.000078985000000,0.000212910000000,0.000604021000000 +0.000238984000000,0.000091231000000,0.000063972000000,0.000214491000000,0.000594539000000,0.001029503000000,0.000069503000000,0.000667625000000,0.001092712000000,0.000056071000000,0.000248070000000,0.000205404000000,0.000078984000000,0.000259133000000,0.000747823000000 +0.000342095000000,0.000069107000000,0.000046984000000,0.000214490000000,0.000559379000000,0.001043724000000,0.000069108000000,0.000583477000000,0.001260218000000,0.000054491000000,0.000184071000000,0.000275725000000,0.000078984000000,0.000208959000000,0.000642342000000 +0.000458638000000,0.000071478000000,0.000046985000000,0.000285601000000,0.000594540000000,0.001028712000000,0.000069108000000,0.000554639000000,0.001039774000000,0.000055280000000,0.000205404000000,0.000206590000000,0.000079380000000,0.000209354000000,0.000586638000000 +0.000248071000000,0.000069503000000,0.000047774000000,0.000241354000000,0.000589009000000,0.001455773000000,0.000069107000000,0.000538836000000,0.001048465000000,0.000055281000000,0.000185651000000,0.000202638000000,0.000078984000000,0.000285996000000,0.000672367000000 +0.000321157000000,0.000069108000000,0.000046984000000,0.000214490000000,0.000557799000000,0.001029502000000,0.000069107000000,0.000575576000000,0.001005008000000,0.000072664000000,0.000239774000000,0.000205799000000,0.000078985000000,0.000211330000000,0.000586243000000 +0.000248071000000,0.000069503000000,0.000047380000000,0.000221602000000,0.000600465000000,0.001090737000000,0.000074638000000,0.000538440000000,0.001012515000000,0.000055676000000,0.000203034000000,0.000274935000000,0.000078984000000,0.000209355000000,0.000658934000000 +0.000244120000000,0.000069108000000,0.000047774000000,0.000289157000000,0.000558194000000,0.001035033000000,0.000071083000000,0.000575577000000,0.001006588000000,0.000055280000000,0.000180910000000,0.000205799000000,0.000078590000000,0.000259527000000,0.000670786000000 +0.000246095000000,0.000069108000000,0.000047379000000,0.000231083000000,0.000602441000000,0.001053600000000,0.000105058000000,0.000536860000000,0.001024367000000,0.000056466000000,0.000206194000000,0.000205404000000,0.000078589000000,0.000213305000000,0.000586244000000 +0.000327873000000,0.000069898000000,0.000046195000000,0.000220416000000,0.000592960000000,0.001078885000000,0.000073059000000,0.000572416000000,0.001014489000000,0.000055675000000,0.000202639000000,0.000205009000000,0.000149306000000,0.000210540000000,0.000631280000000 +0.000244910000000,0.000069108000000,0.000047379000000,0.000214490000000,0.000609947000000,0.001043329000000,0.000069898000000,0.000538440000000,0.001025157000000,0.000055676000000,0.000262293000000,0.000256762000000,0.000092416000000,0.000281256000000,0.000662095000000 +0.000243724000000,0.000069108000000,0.000046589000000,0.000241355000000,0.000740317000000,0.001029502000000,0.000069503000000,0.000573997000000,0.001065848000000,0.000054886000000,0.000185651000000,0.000203824000000,0.000079774000000,0.000210144000000,0.000591379000000 +0.000310095000000,0.000105059000000,0.000046985000000,0.000264268000000,0.000553058000000,0.001136564000000,0.000069898000000,0.000581107000000,0.001022391000000,0.000056861000000,0.000202639000000,0.000206984000000,0.000079380000000,0.000211330000000,0.000635230000000 +0.000238984000000,0.000070688000000,0.000046589000000,0.000221206000000,0.000589404000000,0.001046885000000,0.000069503000000,0.000539231000000,0.001005798000000,0.000055281000000,0.000203824000000,0.000186045000000,0.000079379000000,0.000212515000000,0.000594540000000 +0.000241750000000,0.000069108000000,0.000048564000000,0.000224367000000,0.000713848000000,0.001122342000000,0.000068712000000,0.000621009000000,0.001014490000000,0.000056861000000,0.000220811000000,0.000183280000000,0.000079379000000,0.000209354000000,0.000670786000000 +0.000238984000000,0.000069108000000,0.000046985000000,0.000238589000000,0.000552663000000,0.001290638000000,0.000069502000000,0.000538045000000,0.001008959000000,0.000054491000000,0.000206984000000,0.000280070000000,0.000082540000000,0.000208960000000,0.000627330000000 +0.000319182000000,0.000069898000000,0.000047774000000,0.000278491000000,0.000632860000000,0.001043330000000,0.000069107000000,0.000570441000000,0.001010144000000,0.000055281000000,0.000203429000000,0.000188811000000,0.000078590000000,0.000295083000000,0.000626144000000 +0.000244120000000,0.000069108000000,0.000048169000000,0.000214490000000,0.000628514000000,0.001064662000000,0.000069107000000,0.000534490000000,0.001121156000000,0.000055675000000,0.000205009000000,0.000183280000000,0.000079379000000,0.000210145000000,0.000686194000000 +0.000247280000000,0.000071479000000,0.000082935000000,0.000221997000000,0.000557404000000,0.001078094000000,0.000069898000000,0.000705947000000,0.001048465000000,0.000055676000000,0.000206195000000,0.000203429000000,0.000078985000000,0.000211330000000,0.000628119000000 +0.000243724000000,0.000072268000000,0.000047774000000,0.000219626000000,0.000636811000000,0.001073749000000,0.000069108000000,0.000575577000000,0.001005403000000,0.000092021000000,0.000222787000000,0.000260318000000,0.000117700000000,0.000212910000000,0.000586243000000 +0.000319971000000,0.000068713000000,0.000046984000000,0.000308515000000,0.000554243000000,0.001078885000000,0.000068317000000,0.000534095000000,0.001041748000000,0.000055280000000,0.000182095000000,0.000190392000000,0.000108614000000,0.000212515000000,0.001027131000000 +0.000247281000000,0.000069108000000,0.000046984000000,0.000219626000000,0.000597305000000,0.001108515000000,0.000087675000000,0.000583478000000,0.001190293000000,0.000056466000000,0.000186046000000,0.000186441000000,0.000078985000000,0.000333009000000,0.000622589000000 +0.000248070000000,0.000069108000000,0.000047774000000,0.000214885000000,0.000683034000000,0.001127082000000,0.000086490000000,0.000538835000000,0.001027921000000,0.000055675000000,0.000203824000000,0.000203823000000,0.000078589000000,0.000212120000000,0.000676712000000 +0.000285996000000,0.000069108000000,0.000046589000000,0.000225552000000,0.000768761000000,0.001064267000000,0.000069108000000,0.000587033000000,0.001017651000000,0.000056466000000,0.000243330000000,0.000204218000000,0.000078590000000,0.000210145000000,0.000586244000000 +0.000262688000000,0.000088071000000,0.000046984000000,0.000303379000000,0.000598490000000,0.001135773000000,0.000069503000000,0.000581502000000,0.001042144000000,0.000055281000000,0.000206589000000,0.000253206000000,0.000079379000000,0.000213305000000,0.000622983000000 +0.000246490000000,0.000085700000000,0.000046589000000,0.000220022000000,0.000592169000000,0.001064662000000,0.000069502000000,0.000540811000000,0.001008564000000,0.000055675000000,0.000188416000000,0.000179725000000,0.000078985000000,0.000209750000000,0.000614688000000 +0.000248860000000,0.000069108000000,0.000046589000000,0.000214885000000,0.000557009000000,0.001078884000000,0.000070292000000,0.000613107000000,0.001019625000000,0.000056071000000,0.000205404000000,0.000205404000000,0.000079379000000,0.000210144000000,0.000642342000000 +0.000321947000000,0.000070688000000,0.000047379000000,0.000229108000000,0.000598885000000,0.001028712000000,0.000076219000000,0.000544762000000,0.001018836000000,0.000056070000000,0.000205404000000,0.000184071000000,0.000078589000000,0.000215280000000,0.000628120000000 +0.000250046000000,0.000069502000000,0.000048170000000,0.000596119000000,0.000556613000000,0.001435625000000,0.000069898000000,0.000585848000000,0.001075724000000,0.000056071000000,0.000219231000000,0.000270194000000,0.000080960000000,0.000325898000000,0.000599280000000 +0.000242934000000,0.000072268000000,0.000046590000000,0.000294293000000,0.000593749000000,0.001029502000000,0.000074244000000,0.000538836000000,0.001034638000000,0.000055675000000,0.000182491000000,0.000182491000000,0.000078984000000,0.000209354000000,0.000630095000000 +0.000246490000000,0.000069503000000,0.000046589000000,0.000305750000000,0.000597700000000,0.001094687000000,0.000069108000000,0.000585453000000,0.001090736000000,0.000053700000000,0.000198688000000,0.000206194000000,0.000117701000000,0.000245306000000,0.000634440000000 +0.000317997000000,0.000074244000000,0.000046590000000,0.000221601000000,0.000609947000000,0.001028712000000,0.000069108000000,0.000572811000000,0.001028712000000,0.000056071000000,0.000189602000000,0.000186837000000,0.000079379000000,0.000208959000000,0.000591379000000 +0.000246885000000,0.000071478000000,0.000046589000000,0.000214095000000,0.000626539000000,0.001076120000000,0.000068317000000,0.000538836000000,0.001349106000000,0.000055676000000,0.000184861000000,0.000188811000000,0.000078984000000,0.000212910000000,0.000626540000000 +0.000250441000000,0.000073454000000,0.000047380000000,0.000223577000000,0.000558194000000,0.001029502000000,0.000106243000000,0.000578342000000,0.001115231000000,0.000055281000000,0.000237009000000,0.000276910000000,0.000078985000000,0.000293503000000,0.000635626000000 +0.000317207000000,0.000068713000000,0.000046984000000,0.000255972000000,0.000594540000000,0.001048860000000,0.000068712000000,0.000534490000000,0.001012515000000,0.000071478000000,0.000185651000000,0.000203824000000,0.000078589000000,0.000209355000000,0.000592169000000 +0.000257552000000,0.000068713000000,0.000065947000000,0.000215280000000,0.000593354000000,0.001029107000000,0.000069502000000,0.000605997000000,0.001059526000000,0.000055281000000,0.000203429000000,0.000203824000000,0.000078590000000,0.000212910000000,0.000670786000000 +0.000245700000000,0.000071478000000,0.000046589000000,0.000218046000000,0.000552663000000,0.001098638000000,0.000069502000000,0.000537650000000,0.001020415000000,0.000055675000000,0.000186046000000,0.000181305000000,0.000078984000000,0.000248860000000,0.000590589000000 +0.000244515000000,0.000105059000000,0.000046590000000,0.000214886000000,0.000593749000000,0.001063872000000,0.000069898000000,0.000622984000000,0.001059922000000,0.000056466000000,0.000239379000000,0.000244120000000,0.000078985000000,0.000210540000000,0.000675527000000 +0.000331033000000,0.000071873000000,0.000046589000000,0.000257552000000,0.000558589000000,0.001042934000000,0.000069898000000,0.000591774000000,0.001026737000000,0.000054885000000,0.000203824000000,0.000193157000000,0.000080564000000,0.000210935000000,0.000623379000000 +0.000247676000000,0.000072269000000,0.000047379000000,0.000214490000000,0.000598095000000,0.001029502000000,0.000069503000000,0.000540417000000,0.001031872000000,0.000056466000000,0.000185651000000,0.000182886000000,0.000079379000000,0.000281651000000,0.000586243000000 +0.000270194000000,0.000069898000000,0.000046985000000,0.000214095000000,0.000588613000000,0.001042935000000,0.000069108000000,0.000590588000000,0.001008564000000,0.000054886000000,0.000204218000000,0.000193552000000,0.000078985000000,0.000209355000000,0.000622194000000 +0.000284416000000,0.000069503000000,0.000046589000000,0.000224367000000,0.000557009000000,0.001029502000000,0.000069503000000,0.000537651000000,0.001065848000000,0.000055675000000,0.000202638000000,0.000193552000000,0.000203428000000,0.000209749000000,0.000642341000000 +0.000299824000000,0.000068713000000,0.000046985000000,0.000221207000000,0.000624564000000,0.001053206000000,0.000068713000000,0.000574787000000,0.001054391000000,0.000055281000000,0.000219626000000,0.000275330000000,0.000216861000000,0.000247280000000,0.000591378000000 +0.000248071000000,0.000071873000000,0.000046194000000,0.000270194000000,0.000553848000000,0.001029502000000,0.000069503000000,0.000538045000000,0.001060317000000,0.000055281000000,0.000188811000000,0.000203824000000,0.000216861000000,0.000212515000000,0.000628119000000 +0.000246490000000,0.000069107000000,0.000046984000000,0.000225157000000,0.000589009000000,0.001043724000000,0.000069503000000,0.000570441000000,0.001022786000000,0.000056465000000,0.000183280000000,0.000206589000000,0.000100712000000,0.000210540000000,0.000599675000000 +0.000323528000000,0.000069107000000,0.000047380000000,0.000214490000000,0.000553848000000,0.001029502000000,0.000107824000000,0.000585058000000,0.001532415000000,0.000056071000000,0.000203033000000,0.000184465000000,0.000093601000000,0.000280070000000,0.000634836000000 +0.000247280000000,0.000069898000000,0.000046984000000,0.000269009000000,0.000601256000000,0.001091132000000,0.000091626000000,0.000536071000000,0.001055971000000,0.000055675000000,0.000276515000000,0.000276120000000,0.000078985000000,0.000209354000000,0.000636021000000 +0.000244120000000,0.000068712000000,0.000046985000000,0.000275725000000,0.000623774000000,0.001190687000000,0.000084120000000,0.000578342000000,0.001016465000000,0.000054885000000,0.000203034000000,0.000181305000000,0.000125997000000,0.000214095000000,0.000591379000000 +0.000250836000000,0.000068712000000,0.000046984000000,0.000214095000000,0.000561354000000,0.001067823000000,0.000069503000000,0.000539230000000,0.001009354000000,0.000109404000000,0.000188811000000,0.000205404000000,0.000078589000000,0.000259132000000,0.000626934000000 +0.000322737000000,0.000105848000000,0.000047379000000,0.000214490000000,0.000593354000000,0.001048860000000,0.000072663000000,0.000583872000000,0.001009749000000,0.000055676000000,0.000203824000000,0.000204614000000,0.000078195000000,0.000211725000000,0.000635231000000 +0.000244515000000,0.000068713000000,0.000046589000000,0.000216071000000,0.000557009000000,0.001078489000000,0.000070293000000,0.000541997000000,0.001029502000000,0.000054885000000,0.000241750000000,0.000224367000000,0.000078194000000,0.000210935000000,0.000592169000000 +0.000244515000000,0.000068713000000,0.000046589000000,0.000254786000000,0.000600860000000,0.001029107000000,0.000069108000000,0.000572021000000,0.001025947000000,0.000056466000000,0.000206589000000,0.000545552000000,0.000079380000000,0.000283626000000,0.000726095000000 +0.000280861000000,0.000068713000000,0.000046985000000,0.000214491000000,0.000766786000000,0.001078490000000,0.000068712000000,0.000659329000000,0.001021206000000,0.000055281000000,0.000183675000000,0.000258342000000,0.000079379000000,0.000211725000000,0.000590984000000 +0.000240959000000,0.000070293000000,0.000083330000000,0.000221601000000,0.000732021000000,0.001029502000000,0.000069503000000,0.000586638000000,0.001024366000000,0.000055675000000,0.000203428000000,0.000238984000000,0.000079380000000,0.000210145000000,0.000603231000000 +0.000244515000000,0.000069107000000,0.000047380000000,0.000225552000000,0.000554243000000,0.001042934000000,0.000069108000000,0.000570836000000,0.001112465000000,0.000054886000000,0.000188416000000,0.000205404000000,0.000079774000000,0.000282441000000,0.000658934000000 +0.000246095000000,0.000069502000000,0.000047775000000,0.000259923000000,0.000685403000000,0.001029107000000,0.000069108000000,0.000534885000000,0.001037008000000,0.000055676000000,0.000239380000000,0.000207774000000,0.000084120000000,0.000210540000000,0.000586639000000 +0.000376861000000,0.000069502000000,0.000046589000000,0.000219231000000,0.000562934000000,0.001042934000000,0.000069108000000,0.000626144000000,0.001018441000000,0.000056070000000,0.000183281000000,0.000193552000000,0.000078984000000,0.000210144000000,0.000657749000000 +0.000598095000000,0.000068712000000,0.000046195000000,0.000220021000000,0.000592169000000,0.001029502000000,0.000105453000000,0.000574786000000,0.001039774000000,0.000057651000000,0.000184071000000,0.000242539000000,0.000079774000000,0.000301404000000,0.000679873000000 +0.000315231000000,0.000071478000000,0.000046194000000,0.000214095000000,0.000593749000000,0.001224662000000,0.000070292000000,0.000548317000000,0.001023181000000,0.000055280000000,0.000202243000000,0.000182490000000,0.000115725000000,0.000213305000000,0.000643527000000 +0.000245305000000,0.000071873000000,0.000047380000000,0.000242935000000,0.000553058000000,0.001048861000000,0.000069503000000,0.000630490000000,0.001043725000000,0.000054886000000,0.000184465000000,0.000205403000000,0.000078589000000,0.000212910000000,0.000663280000000 +0.000250046000000,0.000068712000000,0.000046984000000,0.000221601000000,0.000606392000000,0.001078885000000,0.000069503000000,0.000583083000000,0.001025946000000,0.000055675000000,0.000240959000000,0.000205799000000,0.000079774000000,0.000340119000000,0.000686589000000 +0.000238589000000,0.000069107000000,0.000046589000000,0.000224762000000,0.000557404000000,0.001128267000000,0.000069108000000,0.000590194000000,0.001020416000000,0.000054885000000,0.000205799000000,0.000184071000000,0.000078589000000,0.000212120000000,0.000593749000000 +0.000283231000000,0.000133107000000,0.000046984000000,0.000220416000000,0.000640367000000,0.001084021000000,0.000072268000000,0.000605601000000,0.001020416000000,0.000092022000000,0.000193947000000,0.000220416000000,0.000078984000000,0.000210935000000,0.000670391000000 +0.000238589000000,0.000068317000000,0.000046589000000,0.000216861000000,0.000589403000000,0.001029107000000,0.000068713000000,0.000545157000000,0.001021205000000,0.000056071000000,0.000186441000000,0.000203824000000,0.000079774000000,0.000213305000000,0.000676317000000 +0.000238984000000,0.000069502000000,0.000046590000000,0.000403725000000,0.000554638000000,0.001076514000000,0.000069503000000,0.000571626000000,0.001110490000000,0.000055280000000,0.000242934000000,0.000183675000000,0.000078195000000,0.000210145000000,0.000590589000000 +0.000238589000000,0.000069502000000,0.000048959000000,0.000223972000000,0.000594539000000,0.001064662000000,0.000068712000000,0.000534095000000,0.001009749000000,0.000059626000000,0.000185651000000,0.000182095000000,0.000078984000000,0.000210145000000,0.000634836000000 +0.000299034000000,0.000068712000000,0.000047379000000,0.000214095000000,0.000558589000000,0.001078884000000,0.000069502000000,0.001055972000000,0.001021996000000,0.000056466000000,0.000206589000000,0.000223577000000,0.000080170000000,0.000210144000000,0.000628120000000 +0.000248071000000,0.000071873000000,0.000046985000000,0.000290342000000,0.000593749000000,0.001029502000000,0.000075428000000,0.000586638000000,0.001075724000000,0.000055280000000,0.000191972000000,0.000204614000000,0.000078589000000,0.000211330000000,0.000586638000000 +0.000239379000000,0.000069108000000,0.000046984000000,0.000229108000000,0.000552663000000,0.001078095000000,0.000069897000000,0.000538046000000,0.001108515000000,0.000056071000000,0.000202639000000,0.000183281000000,0.000081749000000,0.000209355000000,0.000646687000000 +0.000243725000000,0.000072268000000,0.000046194000000,0.000221206000000,0.000629304000000,0.001029107000000,0.000109799000000,0.000611527000000,0.001005403000000,0.000055676000000,0.000264663000000,0.000195528000000,0.000115725000000,0.000543577000000,0.000586244000000 +0.000316021000000,0.000068712000000,0.000068318000000,0.000219626000000,0.000629700000000,0.001043724000000,0.000069898000000,0.000583873000000,0.001036218000000,0.000055280000000,0.000181305000000,0.000200663000000,0.000082145000000,0.000247675000000,0.000927971000000 +0.000238590000000,0.000074638000000,0.000046984000000,0.000254787000000,0.000558194000000,0.001364119000000,0.000069108000000,0.000538441000000,0.001009354000000,0.000054886000000,0.000206984000000,0.000255181000000,0.000078194000000,0.000209750000000,0.000622589000000 +0.000239379000000,0.000071084000000,0.000046590000000,0.000223577000000,0.000588613000000,0.001043329000000,0.000069108000000,0.000579922000000,0.001023181000000,0.000058046000000,0.000184861000000,0.000183675000000,0.000078985000000,0.000214885000000,0.000622193000000 +0.000258342000000,0.000109404000000,0.000046984000000,0.000214095000000,0.000561354000000,0.001086786000000,0.000069503000000,0.000536070000000,0.001075330000000,0.000055281000000,0.000242935000000,0.000189206000000,0.000078984000000,0.000250836000000,0.000609157000000 +0.000255972000000,0.000069108000000,0.000047379000000,0.000218441000000,0.000588614000000,0.001043724000000,0.000069108000000,0.000581898000000,0.001025946000000,0.000054885000000,0.000202639000000,0.000207380000000,0.000078590000000,0.000211725000000,0.000641157000000 +0.000244910000000,0.000069108000000,0.000046589000000,0.000219626000000,0.000628515000000,0.001029107000000,0.000068713000000,0.000538441000000,0.001078095000000,0.000054885000000,0.000203034000000,0.000203824000000,0.000078589000000,0.000209749000000,0.000591774000000 +0.000248466000000,0.000071478000000,0.000046589000000,0.000252021000000,0.000552663000000,0.001048860000000,0.000068713000000,0.000558984000000,0.001009354000000,0.000055676000000,0.000184466000000,0.000202638000000,0.000078195000000,0.000248070000000,0.000684218000000 +0.000313256000000,0.000068713000000,0.000046589000000,0.000220021000000,0.000589799000000,0.001028712000000,0.000070293000000,0.000570440000000,0.001011329000000,0.000071873000000,0.000204614000000,0.000204219000000,0.000079379000000,0.000213306000000,0.000630490000000 +0.000263478000000,0.000071874000000,0.000046589000000,0.000221997000000,0.000554638000000,0.001043724000000,0.000069503000000,0.000534095000000,0.001016860000000,0.000056070000000,0.000348812000000,0.000202639000000,0.000080564000000,0.000212515000000,0.000650243000000 +0.000244120000000,0.000071873000000,0.000046590000000,0.000220021000000,0.000598885000000,0.001064663000000,0.000069107000000,0.000573996000000,0.001030687000000,0.000055281000000,0.000201848000000,0.000204614000000,0.000079380000000,0.000299429000000,0.000675527000000 +0.000249651000000,0.000069898000000,0.000046984000000,0.000264663000000,0.000604021000000,0.001089157000000,0.000069107000000,0.000535280000000,0.001127083000000,0.000056466000000,0.000187626000000,0.000245306000000,0.000115725000000,0.000213305000000,0.000627330000000 +0.000286787000000,0.000069502000000,0.000046589000000,0.000214885000000,0.000557009000000,0.001029107000000,0.000069107000000,0.000611132000000,0.001029107000000,0.000054885000000,0.000184466000000,0.000204614000000,0.000079379000000,0.000209750000000,0.000599280000000 +0.000246490000000,0.000068317000000,0.000046589000000,0.000214491000000,0.000593749000000,0.001043330000000,0.000086095000000,0.000539231000000,0.001017650000000,0.000056071000000,0.000244120000000,0.000188417000000,0.000078589000000,0.000256367000000,0.000664070000000 +0.000250441000000,0.000071478000000,0.000046589000000,0.000225157000000,0.000564909000000,0.001028712000000,0.000069108000000,0.000625750000000,0.001145650000000,0.000054490000000,0.000187231000000,0.000180910000000,0.000078590000000,0.000211330000000,0.000657355000000 +0.000239380000000,0.000069503000000,0.000047775000000,0.000250441000000,0.000590984000000,0.001042934000000,0.000069108000000,0.000570835000000,0.001032268000000,0.000055676000000,0.000203429000000,0.000225947000000,0.000078589000000,0.000208959000000,0.000590983000000 +0.000284416000000,0.000069503000000,0.000047379000000,0.000214490000000,0.000609552000000,0.001029502000000,0.000069108000000,0.000534886000000,0.001063477000000,0.000055281000000,0.000205009000000,0.000203034000000,0.000078985000000,0.000250046000000,0.000657355000000 +0.000248071000000,0.000096762000000,0.000046194000000,0.000214885000000,0.000642737000000,0.001147626000000,0.000073454000000,0.000592169000000,0.001013305000000,0.000054095000000,0.000241355000000,0.000203824000000,0.000078589000000,0.000212910000000,0.000623379000000 +0.000238589000000,0.000069503000000,0.000046985000000,0.000220812000000,0.000599675000000,0.001029107000000,0.000071873000000,0.000534885000000,0.001059922000000,0.000056861000000,0.000183280000000,0.000183676000000,0.000078985000000,0.000210540000000,0.000585453000000 +0.000283231000000,0.000069108000000,0.000090441000000,0.000219626000000,0.000562145000000,0.001043724000000,0.000069107000000,0.000579922000000,0.001019625000000,0.000054886000000,0.000203034000000,0.000188811000000,0.000078984000000,0.000245305000000,0.000657749000000 +0.000290342000000,0.000069898000000,0.000046985000000,0.000251231000000,0.000637206000000,0.001140515000000,0.000071873000000,0.000540416000000,0.001145650000000,0.000056861000000,0.000189997000000,0.000220811000000,0.000078590000000,0.000214095000000,0.000595725000000 +0.000244515000000,0.000069108000000,0.000046984000000,0.000214490000000,0.000592959000000,0.001048860000000,0.000070293000000,0.000575577000000,0.001133008000000,0.000058441000000,0.000205799000000,0.000204219000000,0.000078589000000,0.000212910000000,0.000626934000000 +0.000244120000000,0.000068713000000,0.000047379000000,0.000223577000000,0.000553058000000,0.001028712000000,0.000069108000000,0.000618638000000,0.001131428000000,0.000090836000000,0.000239379000000,0.000204613000000,0.000132318000000,0.000254392000000,0.000715033000000 +0.000290342000000,0.000069108000000,0.000046985000000,0.000214095000000,0.000639182000000,0.001042934000000,0.000069898000000,0.000585058000000,0.001074144000000,0.000056466000000,0.000182886000000,0.000205404000000,0.000078984000000,0.000211725000000,0.000686984000000 +0.000250046000000,0.000071083000000,0.000046589000000,0.000264663000000,0.000557008000000,0.001042144000000,0.000068318000000,0.000607576000000,0.001044119000000,0.000055675000000,0.000186441000000,0.000204614000000,0.000078985000000,0.000306145000000,0.000630490000000 +0.000251626000000,0.000068712000000,0.000046589000000,0.000214491000000,0.000592169000000,0.001042934000000,0.000116120000000,0.000544762000000,0.001024367000000,0.000055676000000,0.000204219000000,0.000237799000000,0.000079379000000,0.000248465000000,0.000634836000000 +0.000244120000000,0.000069107000000,0.000050145000000,0.000216465000000,0.000624564000000,0.001028316000000,0.000069107000000,0.000570441000000,0.001051230000000,0.000055281000000,0.000275725000000,0.000256367000000,0.000083726000000,0.000212910000000,0.000591379000000 +0.000275330000000,0.000069502000000,0.000049750000000,0.000227528000000,0.000555034000000,0.001458144000000,0.000069107000000,0.000575181000000,0.001056761000000,0.000056070000000,0.000218836000000,0.000205799000000,0.000078984000000,0.000210145000000,0.000626934000000 +0.000249256000000,0.000069108000000,0.000046590000000,0.000259922000000,0.000614292000000,0.001029502000000,0.000068317000000,0.000534886000000,0.001034638000000,0.000056071000000,0.000202639000000,0.000186441000000,0.000078985000000,0.000249255000000,0.000635231000000 +0.000246491000000,0.000107824000000,0.000048959000000,0.000219626000000,0.000575576000000,0.001148020000000,0.000069502000000,0.000575181000000,0.001026342000000,0.000055280000000,0.000202638000000,0.000240564000000,0.000078984000000,0.000267034000000,0.000591774000000 +0.000248070000000,0.000070688000000,0.000046984000000,0.000221207000000,0.000945354000000,0.001029502000000,0.000068712000000,0.000534490000000,0.001021601000000,0.000056466000000,0.000188416000000,0.000193552000000,0.000116516000000,0.000212515000000,0.000717404000000 +0.000333799000000,0.000069108000000,0.000046985000000,0.000224367000000,0.000623774000000,0.001043329000000,0.000069502000000,0.000668811000000,0.001009749000000,0.000056071000000,0.000221997000000,0.000185651000000,0.000092811000000,0.000253602000000,0.000609157000000 +0.000238194000000,0.000069503000000,0.000046589000000,0.000255576000000,0.000593749000000,0.001084811000000,0.000068317000000,0.000571230000000,0.001032662000000,0.000055280000000,0.000202639000000,0.000198293000000,0.000133502000000,0.000209750000000,0.000602440000000 +0.000241749000000,0.000068713000000,0.000048960000000,0.000266244000000,0.000558193000000,0.001044119000000,0.000071873000000,0.000540020000000,0.001082046000000,0.000054886000000,0.000183280000000,0.000218441000000,0.000094786000000,0.000210145000000,0.000622984000000 +0.000284416000000,0.000069108000000,0.000046590000000,0.000257157000000,0.000629305000000,0.001029107000000,0.000069503000000,0.000574786000000,0.001021205000000,0.000056465000000,0.000204614000000,0.000204218000000,0.000079379000000,0.000295873000000,0.000586243000000 +0.000248070000000,0.000069898000000,0.000046589000000,0.000214885000000,0.000552663000000,0.001049255000000,0.000069898000000,0.000543182000000,0.001012910000000,0.000056071000000,0.000276515000000,0.000191182000000,0.000078590000000,0.000208959000000,0.000636021000000 +0.000246886000000,0.000069107000000,0.000083329000000,0.000258342000000,0.000598885000000,0.001029107000000,0.000069503000000,0.000575181000000,0.001118391000000,0.000075823000000,0.000267824000000,0.000202243000000,0.000079379000000,0.000210540000000,0.000631280000000 +0.000249255000000,0.000069502000000,0.000046589000000,0.000219231000000,0.000589009000000,0.001042539000000,0.000105454000000,0.000595330000000,0.001023181000000,0.000144170000000,0.000222786000000,0.000205008000000,0.000079379000000,0.000251231000000,0.000591379000000 +0.000291922000000,0.000072268000000,0.000047380000000,0.000218836000000,0.000554243000000,0.001028712000000,0.000076219000000,0.000571626000000,0.001191477000000,0.000076614000000,0.000183280000000,0.000221206000000,0.000078984000000,0.000208960000000,0.000678293000000 +0.000250046000000,0.000069108000000,0.000046589000000,0.000216071000000,0.000623774000000,0.001168169000000,0.000069503000000,0.000574786000000,0.001088367000000,0.000058441000000,0.000221997000000,0.000186441000000,0.000081354000000,0.000210539000000,0.000635231000000 +0.000249256000000,0.000071873000000,0.000046984000000,0.000216071000000,0.000553848000000,0.001028712000000,0.000074244000000,0.000541602000000,0.001018045000000,0.000069108000000,0.000203034000000,0.000205799000000,0.000078589000000,0.000248861000000,0.000594539000000 +0.000239774000000,0.000124021000000,0.000046589000000,0.000361058000000,0.000590984000000,0.001164218000000,0.000068713000000,0.000570440000000,0.001006193000000,0.000055675000000,0.000183281000000,0.000203824000000,0.000081355000000,0.000212910000000,0.000635231000000 +0.000370145000000,0.000142589000000,0.000046589000000,0.000214095000000,0.000553058000000,0.001084020000000,0.000069108000000,0.000542787000000,0.001050441000000,0.000056071000000,0.000185651000000,0.000238194000000,0.000079379000000,0.000209355000000,0.000590984000000 +0.000248071000000,0.000075429000000,0.000046985000000,0.000213700000000,0.000578342000000,0.001056761000000,0.000069503000000,0.000628120000000,0.001023971000000,0.000056070000000,0.000187626000000,0.000193157000000,0.000115330000000,0.000244910000000,0.000626539000000 +0.000250046000000,0.000071083000000,0.000046984000000,0.000255972000000,0.000641551000000,0.001064268000000,0.000069503000000,0.000536070000000,0.001046490000000,0.000055676000000,0.000259132000000,0.000205009000000,0.000078984000000,0.000210540000000,0.000634836000000 +0.000261503000000,0.000069502000000,0.000046589000000,0.000214490000000,0.000557008000000,0.001043725000000,0.000068713000000,0.000570836000000,0.001016860000000,0.000055676000000,0.000181306000000,0.000182886000000,0.000078590000000,0.000212120000000,0.000591774000000 +0.000250046000000,0.000069502000000,0.000047775000000,0.000227923000000,0.000601255000000,0.001437205000000,0.000069503000000,0.000585058000000,0.001024761000000,0.000056466000000,0.000203033000000,0.000203429000000,0.000078589000000,0.000370539000000,0.000628910000000 +0.000243725000000,0.000071478000000,0.000046984000000,0.000218046000000,0.000554244000000,0.001043724000000,0.000068713000000,0.000534885000000,0.001067033000000,0.000055281000000,0.000204219000000,0.000222392000000,0.000078985000000,0.000229502000000,0.000591379000000 +0.000244120000000,0.000068713000000,0.000046589000000,0.000214490000000,0.000597700000000,0.001028317000000,0.000070293000000,0.000649848000000,0.001137749000000,0.000056070000000,0.000219626000000,0.000201058000000,0.000078984000000,0.000250836000000,0.000622193000000 +0.000280466000000,0.000072268000000,0.000046984000000,0.000257552000000,0.000625749000000,0.001117600000000,0.000069503000000,0.000558194000000,0.001022786000000,0.000091231000000,0.000183676000000,0.000205009000000,0.000080960000000,0.000210540000000,0.000623378000000 +0.000243725000000,0.000072269000000,0.000048169000000,0.000217651000000,0.000604416000000,0.001029502000000,0.000120861000000,0.000583478000000,0.001024762000000,0.000055676000000,0.000186836000000,0.000205799000000,0.000078589000000,0.000212120000000,0.000585849000000 +0.000250046000000,0.000069898000000,0.000045799000000,0.000214095000000,0.000598885000000,0.001057551000000,0.000084516000000,0.000536071000000,0.001023971000000,0.000054885000000,0.000203428000000,0.000222392000000,0.000078984000000,0.000246491000000,0.000679477000000 +0.000238984000000,0.000105849000000,0.000046589000000,0.000214095000000,0.000555823000000,0.001039773000000,0.000069898000000,0.000605601000000,0.001008959000000,0.000055676000000,0.000184071000000,0.000205799000000,0.000079775000000,0.000213305000000,0.000631675000000 +0.000421503000000,0.000069503000000,0.000082935000000,0.000271380000000,0.000573996000000,0.001099823000000,0.000068318000000,0.000570441000000,0.001022786000000,0.000056466000000,0.000269799000000,0.000193157000000,0.000078984000000,0.000209749000000,0.000591379000000 +0.000318786000000,0.000071478000000,0.000046984000000,0.000221206000000,0.000623774000000,0.001064663000000,0.000069503000000,0.000538835000000,0.001024366000000,0.000056466000000,0.000182885000000,0.000205799000000,0.000121256000000,0.000247675000000,0.000752169000000 +0.000245305000000,0.000069108000000,0.000046984000000,0.000223972000000,0.000556613000000,0.001057552000000,0.000069503000000,0.000621799000000,0.001065453000000,0.000055676000000,0.000186836000000,0.000186836000000,0.000079774000000,0.000213305000000,0.000634836000000 +0.000310886000000,0.000069108000000,0.000046984000000,0.000223972000000,0.000594145000000,0.001064267000000,0.000069503000000,0.000541206000000,0.001027132000000,0.000055280000000,0.000186046000000,0.000251626000000,0.000079380000000,0.000210539000000,0.000593749000000 +0.000248071000000,0.000069503000000,0.000046984000000,0.000255576000000,0.000555428000000,0.001091132000000,0.000073849000000,0.000582292000000,0.001089946000000,0.000055676000000,0.000181305000000,0.000189601000000,0.000079379000000,0.000229503000000,0.000634046000000 +0.000246095000000,0.000069108000000,0.000046590000000,0.000214491000000,0.000589008000000,0.001029107000000,0.000071873000000,0.000552663000000,0.001092317000000,0.000055675000000,0.000240169000000,0.000205799000000,0.000078589000000,0.000210145000000,0.000591774000000 +0.000245305000000,0.000069108000000,0.000046984000000,0.000223181000000,0.000681057000000,0.001044515000000,0.000069502000000,0.000603231000000,0.001049650000000,0.000056071000000,0.000205009000000,0.000183676000000,0.000078194000000,0.000212910000000,0.000626539000000 +0.000280861000000,0.000069503000000,0.000046984000000,0.000215281000000,0.000727675000000,0.001400465000000,0.000072268000000,0.000621799000000,0.001060317000000,0.000055280000000,0.000180911000000,0.000225157000000,0.000078590000000,0.000209750000000,0.000634836000000 +0.000248071000000,0.000069107000000,0.000046194000000,0.000259527000000,0.000637996000000,0.001043329000000,0.000124812000000,0.000540416000000,0.001079675000000,0.000055676000000,0.000202243000000,0.000477996000000,0.000078984000000,0.000210540000000,0.000592564000000 +0.000238589000000,0.000068318000000,0.000047379000000,0.000224367000000,0.000593749000000,0.001048070000000,0.000073058000000,0.000606786000000,0.001055576000000,0.000055281000000,0.000276910000000,0.000271775000000,0.000080169000000,0.000208959000000,0.000622589000000 +0.000238589000000,0.000069108000000,0.000047380000000,0.000223972000000,0.000552663000000,0.001044120000000,0.000082935000000,0.000548317000000,0.001027132000000,0.000087675000000,0.000565305000000,0.000203034000000,0.000078985000000,0.000209749000000,0.000627725000000 +0.000277701000000,0.000125602000000,0.000046589000000,0.000214490000000,0.000598095000000,0.001028712000000,0.000069503000000,0.000583873000000,0.001045699000000,0.000070293000000,0.000214490000000,0.000203033000000,0.000079379000000,0.000209750000000,0.000585848000000 +0.000254786000000,0.000084516000000,0.000046589000000,0.000219626000000,0.000558588000000,0.001080070000000,0.000068713000000,0.000626144000000,0.001019625000000,0.000056070000000,0.000245305000000,0.000203823000000,0.000115330000000,0.000210145000000,0.000636811000000 +0.000245306000000,0.000069108000000,0.000046589000000,0.000252417000000,0.000599675000000,0.001057551000000,0.000069898000000,0.000534490000000,0.001475131000000,0.000056071000000,0.000187231000000,0.000205008000000,0.000083725000000,0.000212515000000,0.000586243000000 +0.000300613000000,0.000069898000000,0.000047774000000,0.000221601000000,0.000589009000000,0.001043329000000,0.000069503000000,0.000575576000000,0.001016861000000,0.000055280000000,0.000184861000000,0.000203823000000,0.000078984000000,0.000210935000000,0.000622194000000 +0.000317207000000,0.000069108000000,0.000046590000000,0.000223972000000,0.000557009000000,0.001028712000000,0.000068713000000,0.000540021000000,0.001028316000000,0.000056466000000,0.000183675000000,0.000334589000000,0.000079775000000,0.000210935000000,0.000754934000000 +0.000248070000000,0.000071478000000,0.000047774000000,0.000213700000000,0.000623774000000,0.001089946000000,0.000069503000000,0.000698441000000,0.001068614000000,0.000054886000000,0.000205404000000,0.000208170000000,0.000078589000000,0.000221997000000,0.000591774000000 +0.000247676000000,0.000071874000000,0.000046589000000,0.000257552000000,0.000554243000000,0.001029502000000,0.000069898000000,0.000605206000000,0.001023576000000,0.000056465000000,0.000187231000000,0.000204219000000,0.000079379000000,0.000208564000000,0.000680268000000 +0.000290737000000,0.000068713000000,0.000101108000000,0.000218836000000,0.000599281000000,0.001043329000000,0.000069108000000,0.000534885000000,0.001052415000000,0.000054096000000,0.000205009000000,0.000187231000000,0.000079775000000,0.000211329000000,0.000635231000000 +0.000249651000000,0.000069107000000,0.000069503000000,0.000220416000000,0.000625749000000,0.001029107000000,0.000067923000000,0.000608367000000,0.001031478000000,0.000056071000000,0.000186441000000,0.000224762000000,0.000078984000000,0.000213700000000,0.000646292000000 +0.000247676000000,0.000069107000000,0.000067528000000,0.000214491000000,0.000554244000000,0.001112070000000,0.000108219000000,0.000534095000000,0.001138144000000,0.000054490000000,0.000185255000000,0.000203033000000,0.000079380000000,0.000211725000000,0.000635626000000 +0.000238589000000,0.000069108000000,0.000078985000000,0.000255577000000,0.000588218000000,0.001089947000000,0.000068713000000,0.000570441000000,0.001026736000000,0.000054886000000,0.000238589000000,0.000190786000000,0.000078589000000,0.000209750000000,0.000627725000000 +0.000284416000000,0.000069503000000,0.000047379000000,0.000224367000000,0.000561749000000,0.001061502000000,0.000069108000000,0.000534885000000,0.001072959000000,0.000056466000000,0.000185651000000,0.000203033000000,0.000078589000000,0.000212120000000,0.000590589000000 +0.000247676000000,0.000105453000000,0.000048169000000,0.000223182000000,0.000641157000000,0.001085600000000,0.000069108000000,0.001466835000000,0.001013700000000,0.000055676000000,0.000203429000000,0.000193552000000,0.000115725000000,0.000224367000000,0.000634835000000 +0.000244910000000,0.000068712000000,0.000046194000000,0.000224367000000,0.000592959000000,0.001070194000000,0.000069898000000,0.000845798000000,0.001070588000000,0.000055676000000,0.000204219000000,0.000202244000000,0.000078985000000,0.000208564000000,0.000592169000000 +0.000285602000000,0.000071478000000,0.000046984000000,0.000255181000000,0.000566095000000,0.001213996000000,0.000075824000000,0.000592959000000,0.001031873000000,0.000071478000000,0.000202639000000,0.000203429000000,0.000078984000000,0.000211725000000,0.000603230000000 +0.000246095000000,0.000069108000000,0.000046194000000,0.000225157000000,0.000591379000000,0.001042934000000,0.000069898000000,0.000625354000000,0.001023181000000,0.000056070000000,0.000240565000000,0.000204614000000,0.000081354000000,0.000209355000000,0.000626540000000 +0.000248071000000,0.000072663000000,0.000047379000000,0.000214886000000,0.000554638000000,0.001092712000000,0.000073454000000,0.000667625000000,0.001018835000000,0.000055676000000,0.000186441000000,0.000183676000000,0.000078590000000,0.000208565000000,0.000586638000000 +0.000249651000000,0.000069107000000,0.000046194000000,0.000222786000000,0.000600466000000,0.001056761000000,0.000069108000000,0.000561750000000,0.001412317000000,0.000054885000000,0.000188021000000,0.000242145000000,0.000081355000000,0.000209750000000,0.000623379000000 +0.000286391000000,0.000074638000000,0.000046589000000,0.000220812000000,0.000588614000000,0.001075329000000,0.000069898000000,0.000584268000000,0.001020021000000,0.000054885000000,0.000202243000000,0.000203824000000,0.000079379000000,0.000227132000000,0.000656959000000 +0.000247676000000,0.000071083000000,0.000046589000000,0.000291132000000,0.000562539000000,0.001042934000000,0.000068713000000,0.000541601000000,0.001025946000000,0.000054886000000,0.000237403000000,0.000181305000000,0.000078985000000,0.000211725000000,0.000586243000000 +0.000238984000000,0.000073058000000,0.000046590000000,0.000221206000000,0.000639576000000,0.001132613000000,0.000070293000000,0.000588614000000,0.001016465000000,0.000054886000000,0.000203824000000,0.000233848000000,0.000078589000000,0.000212120000000,0.000631280000000 +0.000244910000000,0.000068318000000,0.000046194000000,0.000224762000000,0.000557404000000,0.001116416000000,0.000069108000000,0.000594144000000,0.001022786000000,0.000056070000000,0.000203428000000,0.000253996000000,0.000078985000000,0.000210145000000,0.000591379000000 +0.000285602000000,0.000069503000000,0.000083725000000,0.000223972000000,0.000595330000000,0.001062292000000,0.000086096000000,0.000534490000000,0.001111280000000,0.000055676000000,0.000206194000000,0.000203033000000,0.000078589000000,0.000208564000000,0.000764021000000 +0.000247280000000,0.000071083000000,0.000048959000000,0.000258342000000,0.000577157000000,0.001058342000000,0.000069898000000,0.000588219000000,0.001037008000000,0.000055675000000,0.000183281000000,0.000205009000000,0.000116121000000,0.000210145000000,0.000636021000000 +0.000242539000000,0.000105058000000,0.000047379000000,0.000255972000000,0.000557403000000,0.001330144000000,0.000069898000000,0.000534095000000,0.001020811000000,0.000054490000000,0.000281651000000,0.000205008000000,0.000079379000000,0.000208959000000,0.000594144000000 +0.000241750000000,0.000072269000000,0.000046590000000,0.000242935000000,0.000605601000000,0.001134194000000,0.000069503000000,0.000614688000000,0.001051230000000,0.000055676000000,0.000203034000000,0.000180120000000,0.000080960000000,0.000211330000000,0.000668811000000 +0.000316416000000,0.000071873000000,0.000046589000000,0.000215675000000,0.000553058000000,0.001084021000000,0.000069503000000,0.000534885000000,0.001074934000000,0.000056070000000,0.000188416000000,0.000274540000000,0.000078985000000,0.000208565000000,0.000643132000000 +0.000244120000000,0.000088861000000,0.000046984000000,0.000255972000000,0.000590984000000,0.001042539000000,0.000069503000000,0.000574786000000,0.001021205000000,0.000054886000000,0.000187626000000,0.000205009000000,0.000078984000000,0.000209749000000,0.000590589000000 +0.000238985000000,0.000089256000000,0.000046589000000,0.000227923000000,0.000558194000000,0.001041749000000,0.000103874000000,0.000580317000000,0.001016069000000,0.000130343000000,0.000240565000000,0.000203429000000,0.000078195000000,0.000211330000000,0.000670391000000 +0.000249256000000,0.000069503000000,0.000046589000000,0.000219626000000,0.000732416000000,0.001042144000000,0.000083725000000,0.000537650000000,0.001044909000000,0.000090442000000,0.000206589000000,0.000201059000000,0.000078589000000,0.000209750000000,0.000718984000000 +0.000256367000000,0.000071083000000,0.000046590000000,0.000219626000000,0.000663280000000,0.001029502000000,0.000069503000000,0.000617848000000,0.001031082000000,0.000055676000000,0.000189602000000,0.000274145000000,0.000078590000000,0.000248861000000,0.000586638000000 +0.000254391000000,0.000069108000000,0.000046984000000,0.000287577000000,0.000552268000000,0.001043724000000,0.000069108000000,0.000539626000000,0.001018441000000,0.000055675000000,0.000239774000000,0.000184071000000,0.000078984000000,0.000209355000000,0.000662490000000 +0.000250441000000,0.000069108000000,0.000046984000000,0.000219626000000,0.000607972000000,0.001056366000000,0.000069503000000,0.000611132000000,0.001019625000000,0.000056466000000,0.000212910000000,0.000203429000000,0.000080565000000,0.000211724000000,0.000622589000000 +0.000284021000000,0.000069108000000,0.000046589000000,0.000220021000000,0.000608366000000,0.001091132000000,0.000107823000000,0.000539626000000,0.001016070000000,0.000056070000000,0.000206589000000,0.000200663000000,0.000078985000000,0.000247675000000,0.000587033000000 +0.000244120000000,0.000068713000000,0.000047379000000,0.000227132000000,0.000557798000000,0.001029502000000,0.000076219000000,0.000555033000000,0.001048860000000,0.000056071000000,0.000208170000000,0.000206984000000,0.000148120000000,0.000212120000000,0.000972219000000 +0.000238984000000,0.000069503000000,0.000046985000000,0.000256367000000,0.000624169000000,0.001043724000000,0.000082540000000,0.000609947000000,0.001034638000000,0.000055280000000,0.000188811000000,0.000204613000000,0.000093602000000,0.000208564000000,0.000622588000000 +0.000244515000000,0.000147330000000,0.000046984000000,0.000219626000000,0.000557009000000,0.001029107000000,0.000072268000000,0.000542786000000,0.001224268000000,0.000056071000000,0.000183280000000,0.000182490000000,0.000078589000000,0.000248466000000,0.000595330000000 +0.000280861000000,0.000069108000000,0.000047379000000,0.000223182000000,0.000588613000000,0.001043724000000,0.000070293000000,0.000605997000000,0.001021205000000,0.000055676000000,0.000222392000000,0.000203034000000,0.000078984000000,0.000208565000000,0.000627329000000 +0.000248070000000,0.000069108000000,0.000046589000000,0.000221601000000,0.000623773000000,0.001116416000000,0.000069108000000,0.000540021000000,0.001051231000000,0.000053700000000,0.000205404000000,0.000203824000000,0.000078984000000,0.000212910000000,0.000627725000000 +0.000248070000000,0.000067923000000,0.000046984000000,0.000251232000000,0.000567280000000,0.001043725000000,0.000069503000000,0.000654984000000,0.001067823000000,0.000055280000000,0.000188021000000,0.000238985000000,0.000079379000000,0.000246095000000,0.000598885000000 +0.000248071000000,0.000071083000000,0.000094392000000,0.000221996000000,0.000589799000000,0.001035033000000,0.000069108000000,0.000731625000000,0.001078885000000,0.000054886000000,0.000202639000000,0.000182095000000,0.000078985000000,0.000210144000000,0.000630095000000 +0.000295873000000,0.000069108000000,0.000046985000000,0.000221206000000,0.000554638000000,0.001042935000000,0.000069898000000,0.001042539000000,0.001073354000000,0.000075824000000,0.000204614000000,0.000180120000000,0.000078984000000,0.000209750000000,0.000634836000000 +0.000248466000000,0.000068712000000,0.000046589000000,0.000214491000000,0.000636811000000,0.001029107000000,0.000069108000000,0.000535280000000,0.001023181000000,0.000056070000000,0.000278885000000,0.000203823000000,0.000083725000000,0.000357107000000,0.000591379000000 +0.000240564000000,0.000069502000000,0.000086490000000,0.000214490000000,0.000597305000000,0.001242836000000,0.000069503000000,0.000575182000000,0.001067823000000,0.000056071000000,0.000207379000000,0.000202638000000,0.000078589000000,0.000210540000000,0.000626144000000 +0.000247676000000,0.000069107000000,0.000050540000000,0.000259923000000,0.000557009000000,0.001029107000000,0.000068318000000,0.000573996000000,0.001513057000000,0.000055280000000,0.000186836000000,0.000240564000000,0.000078589000000,0.000210144000000,0.000598885000000 +0.000279675000000,0.000071873000000,0.000061601000000,0.000223577000000,0.000999082000000,0.001075330000000,0.000095972000000,0.000555824000000,0.001040959000000,0.000055676000000,0.000204614000000,0.000202639000000,0.000150490000000,0.000214096000000,0.000627725000000 +0.000248070000000,0.000072268000000,0.000046590000000,0.000219626000000,0.000643132000000,0.001062687000000,0.000069898000000,0.000590983000000,0.001043724000000,0.000055281000000,0.000228317000000,0.000202639000000,0.000078985000000,0.000212516000000,0.000622589000000 +0.000244515000000,0.000069107000000,0.000046589000000,0.000223182000000,0.000554243000000,0.001057157000000,0.000069108000000,0.000569650000000,0.001044514000000,0.000055675000000,0.000189206000000,0.000203429000000,0.000079379000000,0.000210935000000,0.000590589000000 +0.000245305000000,0.000116120000000,0.000046589000000,0.000259527000000,0.000595725000000,0.001029502000000,0.000069108000000,0.000575972000000,0.001016070000000,0.000056071000000,0.000183280000000,0.000254787000000,0.000078589000000,0.000223181000000,0.000622193000000 +0.000284416000000,0.000069503000000,0.000046985000000,0.000218046000000,0.000595725000000,0.001043724000000,0.000071873000000,0.000575577000000,0.001025156000000,0.000056465000000,0.000205009000000,0.000185651000000,0.000079379000000,0.000213305000000,0.000628910000000 +0.000243725000000,0.000069108000000,0.000046984000000,0.000223972000000,0.000566490000000,0.001064663000000,0.000069107000000,0.000568465000000,0.001006589000000,0.000056466000000,0.000220416000000,0.000183676000000,0.000078984000000,0.000210145000000,0.000683033000000 +0.000244120000000,0.000069503000000,0.000045799000000,0.000220416000000,0.000611132000000,0.001101403000000,0.000069502000000,0.000572811000000,0.001017255000000,0.000055675000000,0.000219626000000,0.000204614000000,0.000078589000000,0.000210144000000,0.000621799000000 +0.000285601000000,0.000069108000000,0.000046589000000,0.000256762000000,0.000623774000000,0.001042144000000,0.000069107000000,0.000571626000000,0.001027922000000,0.000054490000000,0.000191577000000,0.000202639000000,0.000079379000000,0.000214095000000,0.000595724000000 +0.000238984000000,0.000069108000000,0.000046985000000,0.000214096000000,0.000593749000000,0.001043329000000,0.000069107000000,0.000567676000000,0.001072169000000,0.000054886000000,0.000186836000000,0.000220811000000,0.000079775000000,0.000265453000000,0.000633256000000 +0.000265058000000,0.000072663000000,0.000046984000000,0.000219626000000,0.000589008000000,0.001302489000000,0.000074243000000,0.000570045000000,0.001060317000000,0.000055280000000,0.000182095000000,0.000202638000000,0.000079379000000,0.000210540000000,0.000627724000000 +0.000268614000000,0.000068712000000,0.000066342000000,0.000220021000000,0.000556613000000,0.001042934000000,0.000069502000000,0.000570835000000,0.001019625000000,0.000054885000000,0.000222392000000,0.000191971000000,0.000118095000000,0.000208565000000,0.000599281000000 +0.000291923000000,0.000071873000000,0.000047379000000,0.000254391000000,0.000593750000000,0.001082046000000,0.000073058000000,0.000570046000000,0.001131428000000,0.000126787000000,0.000184861000000,0.000186836000000,0.000078985000000,0.000303379000000,0.000630490000000 +0.000244120000000,0.000069108000000,0.000046194000000,0.000216861000000,0.000555823000000,0.001114835000000,0.000069108000000,0.000609947000000,0.001018440000000,0.000054885000000,0.000189997000000,0.000223577000000,0.000082145000000,0.000210935000000,0.000634440000000 +0.000248070000000,0.000074244000000,0.000046984000000,0.000214885000000,0.000589008000000,0.001029897000000,0.000198293000000,0.000603626000000,0.001016860000000,0.000056466000000,0.000203429000000,0.000191182000000,0.000078984000000,0.000212120000000,0.000591379000000 +0.000244910000000,0.000071083000000,0.000046194000000,0.000220417000000,0.000555033000000,0.001088366000000,0.000157602000000,0.000567280000000,0.001084810000000,0.000056466000000,0.000189207000000,0.000204613000000,0.000079775000000,0.000280861000000,0.000627330000000 +0.000316021000000,0.000144565000000,0.000049355000000,0.000222786000000,0.000594144000000,0.001065057000000,0.000088861000000,0.000571625000000,0.001015280000000,0.000055280000000,0.000240959000000,0.000204218000000,0.000078589000000,0.000208564000000,0.000598885000000 +0.000248071000000,0.000069108000000,0.000046984000000,0.000373305000000,0.000629305000000,0.001090736000000,0.000082539000000,0.000573601000000,0.001015675000000,0.000054096000000,0.000205799000000,0.000182885000000,0.000078589000000,0.000209354000000,0.000628120000000 +0.000248070000000,0.000069108000000,0.000046194000000,0.000235034000000,0.000557799000000,0.001028712000000,0.000069502000000,0.000610342000000,0.001020020000000,0.000055676000000,0.000189602000000,0.000252416000000,0.000078984000000,0.000284416000000,0.000622589000000 +0.000260318000000,0.000071873000000,0.000046590000000,0.000218836000000,0.000602440000000,0.001142490000000,0.000068712000000,0.000568860000000,0.001110884000000,0.000054490000000,0.000203824000000,0.000203034000000,0.000078984000000,0.000212911000000,0.000590589000000 +0.000368564000000,0.000069503000000,0.000046194000000,0.000257947000000,0.000558193000000,0.001028712000000,0.000069502000000,0.000550687000000,0.001024762000000,0.000055281000000,0.000220416000000,0.000203429000000,0.000079380000000,0.000209354000000,0.000622194000000 +0.000246096000000,0.000072268000000,0.000048170000000,0.000242145000000,0.000594934000000,0.001078094000000,0.000069503000000,0.000614293000000,0.001085600000000,0.000056071000000,0.000182490000000,0.000204614000000,0.000080959000000,0.000259923000000,0.000677897000000 +0.000248070000000,0.000071873000000,0.000046984000000,0.000223181000000,0.000593750000000,0.001042144000000,0.000069108000000,0.000535675000000,0.001025156000000,0.000056861000000,0.000181306000000,0.000227527000000,0.000148515000000,0.000209354000000,0.000656564000000 +0.000291528000000,0.000069898000000,0.000046984000000,0.000214491000000,0.000552663000000,0.001087971000000,0.000140614000000,0.000594935000000,0.001031477000000,0.000054491000000,0.000202638000000,0.000185651000000,0.000092416000000,0.000213701000000,0.000622589000000 +0.000248070000000,0.000069107000000,0.000046590000000,0.000239774000000,0.000592564000000,0.001035033000000,0.000069503000000,0.000533700000000,0.001050045000000,0.000055280000000,0.000183280000000,0.000184861000000,0.000078589000000,0.000296663000000,0.000631675000000 +0.000247676000000,0.000069107000000,0.000046589000000,0.000255972000000,0.000552663000000,0.001532810000000,0.000069503000000,0.000574787000000,0.001038588000000,0.000056861000000,0.000233848000000,0.000203429000000,0.000078194000000,0.000209354000000,0.000590984000000 +0.000246885000000,0.000071478000000,0.000046590000000,0.000222787000000,0.000589798000000,0.001076514000000,0.000069503000000,0.000580317000000,0.001024762000000,0.000101503000000,0.000203429000000,0.000182491000000,0.000078984000000,0.000213305000000,0.000627330000000 +0.000329453000000,0.000069503000000,0.000046194000000,0.000221996000000,0.000594934000000,0.001188316000000,0.000069503000000,0.000538441000000,0.001078884000000,0.000056861000000,0.000203428000000,0.000222787000000,0.000079380000000,0.000479971000000,0.000649848000000 +0.000247675000000,0.000105453000000,0.000046984000000,0.000219626000000,0.000553848000000,0.001028712000000,0.000068713000000,0.000577552000000,0.001110884000000,0.000055675000000,0.000203034000000,0.000186046000000,0.000079774000000,0.000244910000000,0.000630095000000 +0.000246095000000,0.000068712000000,0.000118491000000,0.000252021000000,0.000590984000000,0.001044119000000,0.000074244000000,0.000535280000000,0.001020021000000,0.000056861000000,0.000203034000000,0.000206194000000,0.000079380000000,0.000229108000000,0.000635626000000 +0.000287182000000,0.000069107000000,0.000047774000000,0.000221602000000,0.000571626000000,0.001029107000000,0.000071873000000,0.000663675000000,0.001463279000000,0.000056860000000,0.000214491000000,0.000208959000000,0.000078984000000,0.000210935000000,0.000590984000000 +0.000248465000000,0.000068712000000,0.000046589000000,0.000222786000000,0.000645107000000,0.001093502000000,0.000069502000000,0.000573601000000,0.001072564000000,0.000055281000000,0.000205404000000,0.000203429000000,0.000078984000000,0.000209355000000,0.000636811000000 +0.000247676000000,0.000069502000000,0.000047380000000,0.000218836000000,0.000592959000000,0.001029107000000,0.000072663000000,0.000534886000000,0.001080860000000,0.000055280000000,0.000203034000000,0.000257157000000,0.000097552000000,0.000247280000000,0.000640761000000 +0.000238984000000,0.000069107000000,0.000046589000000,0.000290342000000,0.000556613000000,0.001079280000000,0.000070293000000,0.000584663000000,0.001061107000000,0.000055676000000,0.000180515000000,0.000205009000000,0.000094786000000,0.000214491000000,0.000591774000000 +0.000331824000000,0.000069107000000,0.000046985000000,0.000221602000000,0.000933107000000,0.001070588000000,0.000069502000000,0.000534490000000,0.001051231000000,0.000055281000000,0.000239379000000,0.000189206000000,0.000078984000000,0.000211330000000,0.000621799000000 +0.000239774000000,0.000069107000000,0.000047379000000,0.000214095000000,0.001437206000000,0.001042934000000,0.000106243000000,0.000589403000000,0.001027526000000,0.000056071000000,0.000205799000000,0.000202638000000,0.000078985000000,0.000245700000000,0.000590589000000 +0.000248070000000,0.000070688000000,0.000046984000000,0.000265453000000,0.000695280000000,0.001029107000000,0.000069108000000,0.000538440000000,0.001049651000000,0.000054490000000,0.000202243000000,0.000287576000000,0.000078984000000,0.000208960000000,0.000622589000000 +0.000238984000000,0.000069108000000,0.000047380000000,0.000255577000000,0.000761650000000,0.001099033000000,0.000069503000000,0.000584268000000,0.001083230000000,0.000055676000000,0.000186836000000,0.000189996000000,0.000079380000000,0.000210540000000,0.000732811000000 +0.000274540000000,0.000069108000000,0.000046984000000,0.000225552000000,0.000622983000000,0.001119971000000,0.000069503000000,0.000570836000000,0.001066638000000,0.000054095000000,0.000185651000000,0.000182490000000,0.000084515000000,0.000249650000000,0.000603626000000 +0.000246096000000,0.000069108000000,0.000046194000000,0.000214491000000,0.000575181000000,0.001044119000000,0.000069502000000,0.000540811000000,0.001097453000000,0.000053700000000,0.000220811000000,0.000205009000000,0.000078985000000,0.000228318000000,0.000659329000000 +0.000238984000000,0.000088466000000,0.000046984000000,0.000214095000000,0.000591774000000,0.001064267000000,0.000069107000000,0.000684219000000,0.001080465000000,0.000091231000000,0.000204613000000,0.000237404000000,0.000079379000000,0.000212120000000,0.000666441000000 +0.000241750000000,0.000128762000000,0.000046984000000,0.000285601000000,0.000557009000000,0.001042539000000,0.000069503000000,0.000534490000000,0.001076514000000,0.000055676000000,0.000184861000000,0.000180910000000,0.000078589000000,0.000247281000000,0.000590984000000 +0.000300613000000,0.000071873000000,0.000047380000000,0.000218441000000,0.000636416000000,0.001028712000000,0.000069503000000,0.000575181000000,0.001066243000000,0.000056861000000,0.000184861000000,0.000189207000000,0.000078589000000,0.000213305000000,0.000662095000000 +0.000247675000000,0.000069503000000,0.000047379000000,0.000219231000000,0.000592169000000,0.001187921000000,0.000069898000000,0.000538046000000,0.001059922000000,0.000054885000000,0.000272960000000,0.000190392000000,0.000079379000000,0.000212515000000,0.000650638000000 +0.000250046000000,0.000069503000000,0.000047379000000,0.000215676000000,0.000557799000000,0.001029502000000,0.000069108000000,0.000574392000000,0.001205304000000,0.000056071000000,0.000257947000000,0.000189997000000,0.000108614000000,0.000245306000000,0.000594539000000 +0.000280071000000,0.000068318000000,0.000046590000000,0.000255972000000,0.000638787000000,0.001043329000000,0.000071478000000,0.000700811000000,0.001016465000000,0.000054885000000,0.000185256000000,0.000224762000000,0.000078590000000,0.000210539000000,0.000648268000000 +0.000246095000000,0.000068318000000,0.000085305000000,0.000215281000000,0.000553453000000,0.001041749000000,0.000068713000000,0.000894786000000,0.001044120000000,0.000054885000000,0.000188417000000,0.000185256000000,0.000078984000000,0.000212911000000,0.000609552000000 +0.000243725000000,0.000069503000000,0.000049749000000,0.000214095000000,0.000590984000000,0.001059132000000,0.000089256000000,0.000535280000000,0.001016860000000,0.000056071000000,0.000257947000000,0.000203034000000,0.000078985000000,0.000245700000000,0.000661305000000 +0.000245305000000,0.000069108000000,0.000046984000000,0.000224367000000,0.000594539000000,0.001029107000000,0.000069503000000,0.000579527000000,0.001016465000000,0.000054490000000,0.000215280000000,0.000203429000000,0.000078984000000,0.000210935000000,0.000675922000000 +0.000471675000000,0.000069108000000,0.000048565000000,0.000224367000000,0.000558589000000,0.001044119000000,0.000069503000000,0.000538835000000,0.001020416000000,0.000056071000000,0.000186441000000,0.000222392000000,0.000078984000000,0.000211725000000,0.000591774000000 +0.000373305000000,0.000072268000000,0.000046589000000,0.000559379000000,0.000761256000000,0.001041749000000,0.000075824000000,0.000606392000000,0.001019625000000,0.000054886000000,0.000184070000000,0.000299034000000,0.000078984000000,0.000248071000000,0.000671576000000 +0.000238985000000,0.000069107000000,0.000046589000000,0.000315231000000,0.000706737000000,0.001050045000000,0.000069898000000,0.000543576000000,0.001020811000000,0.000054490000000,0.000185650000000,0.000182096000000,0.000080959000000,0.000212120000000,0.000626540000000 +0.000276515000000,0.000107823000000,0.000046589000000,0.000256762000000,0.000558194000000,0.001536366000000,0.000073849000000,0.000573601000000,0.001041749000000,0.000055280000000,0.000219231000000,0.000206194000000,0.000078589000000,0.000212120000000,0.000586243000000 +0.000243330000000,0.000069107000000,0.000049750000000,0.000215675000000,0.000986046000000,0.001136959000000,0.000069503000000,0.000574786000000,0.001093502000000,0.000056071000000,0.000203429000000,0.000184071000000,0.000082935000000,0.000256367000000,0.000668416000000 +0.000244120000000,0.000073848000000,0.000046589000000,0.000214886000000,0.000620614000000,0.001112860000000,0.000068713000000,0.000536465000000,0.001044910000000,0.000054885000000,0.000186836000000,0.000240170000000,0.000098738000000,0.000210935000000,0.000622589000000 +0.000283231000000,0.000071479000000,0.000046195000000,0.000219626000000,0.000552268000000,0.001136168000000,0.000069108000000,0.000606392000000,0.001020810000000,0.000125996000000,0.000203033000000,0.000192367000000,0.000234638000000,0.000212910000000,0.000585848000000 +0.000248466000000,0.000073058000000,0.000046984000000,0.000264663000000,0.000642737000000,0.001029107000000,0.000069898000000,0.000538441000000,0.001019626000000,0.000055676000000,0.000238985000000,0.000201849000000,0.000119280000000,0.000260713000000,0.000636811000000 +0.000239379000000,0.000069108000000,0.000047380000000,0.000221996000000,0.000589009000000,0.001087181000000,0.000069108000000,0.000587428000000,0.001037403000000,0.000055675000000,0.000218441000000,0.000205404000000,0.000096367000000,0.000210540000000,0.000590984000000 +0.000248466000000,0.000068713000000,0.000046984000000,0.000219626000000,0.000554638000000,0.001029107000000,0.000069108000000,0.000534885000000,0.001009749000000,0.000055676000000,0.000202244000000,0.000290342000000,0.000078589000000,0.000208960000000,0.000675922000000 +0.000326688000000,0.000071083000000,0.000046984000000,0.000213701000000,0.000637206000000,0.001057157000000,0.000069898000000,0.000573997000000,0.001023181000000,0.000056465000000,0.000185651000000,0.000204218000000,0.000078589000000,0.000247280000000,0.000635626000000 +0.000245700000000,0.000068712000000,0.000047380000000,0.000214885000000,0.000553453000000,0.001042934000000,0.000141009000000,0.000614687000000,0.001020021000000,0.000056466000000,0.000203034000000,0.000206589000000,0.000078589000000,0.000213701000000,0.000594539000000 +0.000248861000000,0.000072268000000,0.000046589000000,0.000285996000000,0.000638787000000,0.001057157000000,0.000069107000000,0.000558193000000,0.001019625000000,0.000058836000000,0.000253997000000,0.000204219000000,0.000080960000000,0.000212910000000,0.000670786000000 +0.000248070000000,0.000072268000000,0.000046984000000,0.000214096000000,0.000637206000000,0.001029502000000,0.000069108000000,0.000623774000000,0.001010144000000,0.000055280000000,0.000183676000000,0.000239379000000,0.000078984000000,0.000285206000000,0.000627330000000 +0.000284416000000,0.000069898000000,0.000102293000000,0.000224367000000,0.000600071000000,0.001089156000000,0.000068713000000,0.000543972000000,0.001140120000000,0.000056071000000,0.000205404000000,0.000185651000000,0.000155626000000,0.000210934000000,0.000590194000000 +0.000248465000000,0.000089256000000,0.000050144000000,0.000213700000000,0.000591379000000,0.001028712000000,0.000069898000000,0.000579922000000,0.001065452000000,0.000057256000000,0.000202639000000,0.000182885000000,0.000110589000000,0.000208959000000,0.000781403000000 +0.000248070000000,0.000114145000000,0.000061601000000,0.000250046000000,0.000591379000000,0.001094292000000,0.000069898000000,0.000590984000000,0.001124712000000,0.000055281000000,0.000218046000000,0.000205404000000,0.000078589000000,0.000248860000000,0.000627725000000 +0.000239380000000,0.000071478000000,0.000047774000000,0.000213700000000,0.000600861000000,0.001029502000000,0.000068713000000,0.000539626000000,0.001022391000000,0.000054886000000,0.000183281000000,0.000205009000000,0.000078194000000,0.000213700000000,0.000586243000000 +0.000284021000000,0.000069503000000,0.000046590000000,0.000223182000000,0.000625354000000,0.001767477000000,0.000069898000000,0.000572021000000,0.001025946000000,0.000055280000000,0.000204219000000,0.000266639000000,0.000079379000000,0.000208959000000,0.000626935000000 +0.000247280000000,0.000068712000000,0.000046194000000,0.000216070000000,0.000588613000000,0.001064267000000,0.000069503000000,0.000539231000000,0.001023576000000,0.000076219000000,0.000188022000000,0.000184861000000,0.000080170000000,0.000319972000000,0.000622193000000 +0.000249650000000,0.000069503000000,0.000047775000000,0.000261898000000,0.000588219000000,0.001043329000000,0.000073849000000,0.000570441000000,0.001037404000000,0.000056071000000,0.000202243000000,0.000182886000000,0.000078984000000,0.000211330000000,0.000639182000000 +0.000239380000000,0.000069107000000,0.000048565000000,0.000223972000000,0.000586243000000,0.001029502000000,0.000071873000000,0.000534490000000,0.001020020000000,0.000055675000000,0.000239774000000,0.000183280000000,0.000078984000000,0.000210540000000,0.000670786000000 +0.000276910000000,0.000069107000000,0.000046984000000,0.000221601000000,0.000673551000000,0.001042934000000,0.000069503000000,0.000575971000000,0.001023971000000,0.000055281000000,0.000202639000000,0.000184465000000,0.000078984000000,0.000245700000000,0.000585848000000 +0.000248861000000,0.000069898000000,0.000046984000000,0.000223182000000,0.000861206000000,0.001069798000000,0.000089651000000,0.000553453000000,0.001046095000000,0.000055676000000,0.000203429000000,0.000201058000000,0.000079774000000,0.000212120000000,0.000612317000000 +0.000240959000000,0.000068317000000,0.000046589000000,0.000259132000000,0.000709897000000,0.001043330000000,0.000069898000000,0.000551082000000,0.001023971000000,0.000056071000000,0.000206984000000,0.000193553000000,0.000115330000000,0.000209750000000,0.000627330000000 +0.000274934000000,0.000068317000000,0.000046589000000,0.000219626000000,0.000587033000000,0.001075329000000,0.000069503000000,0.000576762000000,0.001020021000000,0.000055676000000,0.000201849000000,0.000183280000000,0.000079775000000,0.000263083000000,0.000591774000000 +0.000244911000000,0.000069108000000,0.000047380000000,0.000217651000000,0.000591379000000,0.001042934000000,0.000069898000000,0.000544367000000,0.001057946000000,0.000056861000000,0.000201849000000,0.000184465000000,0.000079775000000,0.000209750000000,0.000635626000000 +0.000244910000000,0.000107034000000,0.000046984000000,0.000223972000000,0.000592169000000,0.001029107000000,0.000068713000000,0.000789700000000,0.001024367000000,0.000056071000000,0.000203824000000,0.000295478000000,0.000079379000000,0.000210935000000,0.000645107000000 +0.000249651000000,0.000069503000000,0.000047379000000,0.000223972000000,0.000589799000000,0.001084020000000,0.000069108000000,0.000608761000000,0.001030687000000,0.000056861000000,0.000203429000000,0.000355132000000,0.000079380000000,0.000246885000000,0.000599280000000 +0.000324317000000,0.000069108000000,0.000046590000000,0.000252021000000,0.000599676000000,0.001029502000000,0.000069503000000,0.000551083000000,0.001104169000000,0.000056071000000,0.000188417000000,0.000267824000000,0.000083330000000,0.000210539000000,0.000627725000000 +0.000248466000000,0.000069897000000,0.000065552000000,0.000214095000000,0.000555033000000,0.001077700000000,0.000068713000000,0.000575972000000,0.001022786000000,0.000055280000000,0.000282836000000,0.000219231000000,0.000079379000000,0.000226342000000,0.000590589000000 +0.000238589000000,0.000069107000000,0.000063972000000,0.000214491000000,0.000594539000000,0.001054391000000,0.000069108000000,0.000544367000000,0.001038193000000,0.000054886000000,0.000206194000000,0.000205009000000,0.000078984000000,0.000248861000000,0.000641157000000 +0.000243725000000,0.000071478000000,0.000046194000000,0.000214095000000,0.000605206000000,0.001043725000000,0.000069898000000,0.000570440000000,0.001031478000000,0.000055281000000,0.000184070000000,0.000202638000000,0.000078590000000,0.000209749000000,0.000628515000000 +0.000282046000000,0.000072663000000,0.000046590000000,0.000265453000000,0.000557798000000,0.001028712000000,0.000069503000000,0.000535281000000,0.001157897000000,0.000056071000000,0.000206589000000,0.000206194000000,0.000078589000000,0.000209354000000,0.000586638000000 +0.000248071000000,0.000069107000000,0.000047774000000,0.000227132000000,0.000588613000000,0.001244416000000,0.000069108000000,0.000610342000000,0.001020415000000,0.000099528000000,0.000222391000000,0.000201848000000,0.000078985000000,0.000250441000000,0.000660910000000 +0.000249651000000,0.000069897000000,0.000046984000000,0.000214096000000,0.000557799000000,0.001029502000000,0.000105454000000,0.000586243000000,0.001067032000000,0.000056466000000,0.000203824000000,0.000241749000000,0.000134293000000,0.000211330000000,0.000657749000000 +0.000247280000000,0.000069502000000,0.000046984000000,0.000221601000000,0.000753750000000,0.001042934000000,0.000072268000000,0.000589799000000,0.001012910000000,0.000055676000000,0.000201848000000,0.000203824000000,0.000094787000000,0.000209750000000,0.000587428000000 +0.000315231000000,0.000069108000000,0.000046984000000,0.000256367000000,0.000608367000000,0.001042144000000,0.000068318000000,0.000576366000000,0.001072564000000,0.000055280000000,0.000181305000000,0.000204219000000,0.000078194000000,0.000339330000000,0.000622194000000 +0.000246490000000,0.000069503000000,0.000047380000000,0.000216861000000,0.000552268000000,0.001078094000000,0.000069108000000,0.000536861000000,0.001101403000000,0.000056466000000,0.000209355000000,0.000205009000000,0.000078590000000,0.000212910000000,0.000586243000000 +0.000248466000000,0.000069503000000,0.000046194000000,0.000219626000000,0.000628120000000,0.001078884000000,0.000069503000000,0.000571626000000,0.001035033000000,0.000054885000000,0.000240564000000,0.000238984000000,0.000079379000000,0.000210540000000,0.000631675000000 +0.000281255000000,0.000120861000000,0.000046984000000,0.000214885000000,0.000552268000000,0.001042539000000,0.000069502000000,0.000538441000000,0.001266934000000,0.000055281000000,0.000191181000000,0.000201453000000,0.000079379000000,0.000227132000000,0.000965502000000 +0.000243725000000,0.000072663000000,0.000046590000000,0.000265058000000,0.000635625000000,0.001029107000000,0.000075428000000,0.000608366000000,0.001094292000000,0.000054886000000,0.000185651000000,0.000203429000000,0.000078590000000,0.000210540000000,0.000677107000000 +0.000238589000000,0.000069502000000,0.000046984000000,0.000273749000000,0.000588613000000,0.001076119000000,0.000069897000000,0.000678688000000,0.001061107000000,0.000056465000000,0.000203429000000,0.000206194000000,0.000081354000000,0.000211329000000,0.000600070000000 +0.000238589000000,0.000072268000000,0.000046985000000,0.000221207000000,0.000574787000000,0.001113650000000,0.000073453000000,0.000538441000000,0.001018441000000,0.000056071000000,0.000222787000000,0.000186836000000,0.000079379000000,0.000247280000000,0.000629700000000 +0.000278095000000,0.000069108000000,0.000048170000000,0.000224367000000,0.000628515000000,0.001057156000000,0.000069503000000,0.000570441000000,0.001019625000000,0.000056860000000,0.000199873000000,0.000219626000000,0.000082540000000,0.000208960000000,0.000635231000000 +0.000238985000000,0.000074244000000,0.000047379000000,0.000256367000000,0.000552268000000,0.001029107000000,0.000069502000000,0.000538045000000,0.001020811000000,0.000054886000000,0.000206984000000,0.000233453000000,0.000078195000000,0.000208169000000,0.000590984000000 +0.000247675000000,0.000071083000000,0.000047379000000,0.000214096000000,0.000597305000000,0.001044120000000,0.000068712000000,0.000580712000000,0.001020021000000,0.000056071000000,0.000204219000000,0.000188812000000,0.000114935000000,0.000259133000000,0.000627329000000 +0.000244120000000,0.000073454000000,0.000048170000000,0.000214490000000,0.000593749000000,0.001029107000000,0.000103478000000,0.000605601000000,0.001020415000000,0.000055280000000,0.000205799000000,0.000182490000000,0.000078984000000,0.000209749000000,0.000599281000000 +0.000293108000000,0.000069108000000,0.000116120000000,0.000222392000000,0.000557404000000,0.001053996000000,0.000072663000000,0.000543182000000,0.001050045000000,0.000091626000000,0.000476811000000,0.000237799000000,0.000079379000000,0.000212120000000,0.000641156000000 +0.000244120000000,0.000068318000000,0.000048959000000,0.000220021000000,0.000609157000000,0.001029502000000,0.000082935000000,0.000575181000000,0.001017256000000,0.000056466000000,0.000255181000000,0.000188811000000,0.000078984000000,0.000395824000000,0.000622984000000 +0.000248861000000,0.000071478000000,0.000060416000000,0.000255972000000,0.000554638000000,0.001042144000000,0.000069108000000,0.000534490000000,0.001098637000000,0.000055675000000,0.000181700000000,0.000190786000000,0.000078984000000,0.000212515000000,0.000590194000000 +0.000247675000000,0.000102293000000,0.000046590000000,0.000219626000000,0.000590984000000,0.001029107000000,0.000069503000000,0.000576367000000,0.001019231000000,0.000055281000000,0.000222392000000,0.000186441000000,0.000079380000000,0.000213700000000,0.000622194000000 +0.000283626000000,0.000176564000000,0.000046589000000,0.000215280000000,0.000590589000000,0.001043724000000,0.000069898000000,0.000538441000000,0.001013304000000,0.000056466000000,0.000204614000000,0.000203824000000,0.000080564000000,0.000211330000000,0.000623379000000 +0.000250836000000,0.000086490000000,0.000046195000000,0.000225552000000,0.000552663000000,0.001156711000000,0.000069108000000,0.000581897000000,0.001021995000000,0.000055281000000,0.000206985000000,0.000246095000000,0.000078589000000,0.000210935000000,0.000586243000000 +0.000248070000000,0.000069898000000,0.000046589000000,0.000255972000000,0.000598885000000,0.001042934000000,0.000068713000000,0.000665650000000,0.001143279000000,0.000055281000000,0.000205799000000,0.000180910000000,0.000078984000000,0.000213305000000,0.000628515000000 +0.000246886000000,0.000067922000000,0.000046985000000,0.000220021000000,0.000555824000000,0.001140910000000,0.000069503000000,0.000578342000000,0.001057552000000,0.000056070000000,0.000188417000000,0.000181305000000,0.000079379000000,0.000209750000000,0.000595724000000 +0.000285206000000,0.000069107000000,0.000046984000000,0.000214886000000,0.000593354000000,0.001095477000000,0.000069108000000,0.000576367000000,0.001023971000000,0.000054886000000,0.000220811000000,0.000205799000000,0.000078590000000,0.000210540000000,0.000673947000000 +0.000244515000000,0.000071083000000,0.000046589000000,0.000229107000000,0.000553058000000,0.001028712000000,0.000069108000000,0.000544367000000,0.001042539000000,0.000056071000000,0.000263478000000,0.000182886000000,0.000121651000000,0.000215676000000,0.000627330000000 +0.000250440000000,0.000067923000000,0.000049355000000,0.000255972000000,0.000734391000000,0.001077700000000,0.000069503000000,0.000589008000000,0.001053996000000,0.000055676000000,0.000182885000000,0.000217256000000,0.000079380000000,0.000209354000000,0.000598885000000 +0.000314441000000,0.000069108000000,0.000046985000000,0.000221601000000,0.000593750000000,0.001082836000000,0.000068713000000,0.000632466000000,0.001151971000000,0.000055281000000,0.000182490000000,0.000182490000000,0.000078984000000,0.000208960000000,0.000630490000000 +0.000296663000000,0.000069503000000,0.000046589000000,0.000221207000000,0.000555823000000,0.001418243000000,0.000144960000000,0.000549897000000,0.001032663000000,0.000054490000000,0.000270590000000,0.000206589000000,0.000080170000000,0.000208959000000,0.000646292000000 +0.000246095000000,0.000069108000000,0.000046590000000,0.000221206000000,0.000589403000000,0.001028712000000,0.000071083000000,0.000609157000000,0.001010934000000,0.000056466000000,0.000187626000000,0.000186441000000,0.000078984000000,0.000208564000000,0.000611922000000 +0.000246096000000,0.000124021000000,0.000046589000000,0.000233058000000,0.000590588000000,0.001042934000000,0.000069108000000,0.000538441000000,0.001023181000000,0.000076614000000,0.000185256000000,0.000237799000000,0.000078984000000,0.000212911000000,0.000661305000000 +0.000321157000000,0.000084120000000,0.000046984000000,0.000287972000000,0.000557798000000,0.001029502000000,0.000071873000000,0.000579132000000,0.001022391000000,0.000125997000000,0.000185256000000,0.000203429000000,0.000079379000000,0.000211330000000,0.000633651000000 +0.000248466000000,0.000069503000000,0.000065552000000,0.000234243000000,0.000595724000000,0.001091527000000,0.000070293000000,0.000534490000000,0.001354638000000,0.000073848000000,0.000205799000000,0.000203429000000,0.000078984000000,0.000225552000000,0.000605996000000 +0.000244515000000,0.000069108000000,0.000105058000000,0.000272169000000,0.000557798000000,0.001042540000000,0.000068713000000,0.000619429000000,0.001020810000000,0.000071083000000,0.000238589000000,0.000203824000000,0.000079775000000,0.000212515000000,0.000622194000000 +0.000265058000000,0.000069503000000,0.000063576000000,0.000269798000000,0.000695280000000,0.001043724000000,0.000069898000000,0.000574786000000,0.001125106000000,0.000056466000000,0.000184861000000,0.000180515000000,0.000079379000000,0.000210540000000,0.000590589000000 +0.000261503000000,0.000070688000000,0.000100713000000,0.000214886000000,0.000639971000000,0.001099033000000,0.000069108000000,0.000539231000000,0.001027132000000,0.000056071000000,0.000203429000000,0.000276910000000,0.000079774000000,0.000210540000000,0.000621403000000 +0.000248861000000,0.000069108000000,0.000046589000000,0.000221601000000,0.000558193000000,0.001057551000000,0.000069503000000,0.000613502000000,0.001082836000000,0.000054490000000,0.000203429000000,0.000180515000000,0.000115725000000,0.000210540000000,0.000656959000000 +0.000248466000000,0.000069107000000,0.000047380000000,0.000214491000000,0.000595329000000,0.001062687000000,0.000068713000000,0.000540417000000,0.001019625000000,0.000055281000000,0.000236219000000,0.000183281000000,0.000085306000000,0.000260713000000,0.000586639000000 +0.000284021000000,0.000069897000000,0.000046589000000,0.000233848000000,0.000552267000000,0.001061502000000,0.000069898000000,0.000593749000000,0.001066638000000,0.000055281000000,0.000203034000000,0.000193947000000,0.000079379000000,0.000209749000000,0.000621798000000 +0.000247675000000,0.000068712000000,0.000046589000000,0.000240960000000,0.000592564000000,0.001221897000000,0.000069108000000,0.000619033000000,0.001025552000000,0.000054885000000,0.000202639000000,0.000265058000000,0.000078984000000,0.000210145000000,0.000615083000000 +0.000248465000000,0.000071478000000,0.000046589000000,0.000221602000000,0.000589404000000,0.001044120000000,0.000086886000000,0.000538836000000,0.001040563000000,0.000055676000000,0.000203824000000,0.000203034000000,0.000078984000000,0.000210540000000,0.000730836000000 +0.000248071000000,0.000072268000000,0.000046589000000,0.000221206000000,0.000554243000000,0.001029107000000,0.000069108000000,0.000573996000000,0.001059922000000,0.000056071000000,0.000259132000000,0.000203429000000,0.000079379000000,0.000385947000000,0.000661700000000 +0.000376465000000,0.000105848000000,0.000046195000000,0.000225157000000,0.000630095000000,0.001043724000000,0.000069503000000,0.000534491000000,0.001056762000000,0.000056466000000,0.000182885000000,0.000204614000000,0.000078984000000,0.000210145000000,0.000670786000000 +0.000260712000000,0.000069108000000,0.000046984000000,0.000287182000000,0.000553848000000,0.001367280000000,0.000069898000000,0.001054391000000,0.001021600000000,0.000072664000000,0.000203428000000,0.000204614000000,0.000078589000000,0.000289157000000,0.000594144000000 +0.000247676000000,0.000069108000000,0.000046590000000,0.000224762000000,0.000590194000000,0.001043725000000,0.000071873000000,0.000571626000000,0.001082046000000,0.000056070000000,0.000204218000000,0.000235823000000,0.000078984000000,0.000209354000000,0.000670787000000 +0.000282836000000,0.000069503000000,0.000046589000000,0.000216071000000,0.000552268000000,0.001028317000000,0.000069502000000,0.000542391000000,0.001012119000000,0.000056466000000,0.000184860000000,0.000180910000000,0.000078589000000,0.000214096000000,0.000591379000000 +0.000266639000000,0.000069107000000,0.000046984000000,0.000214491000000,0.000636416000000,0.001043330000000,0.000069898000000,0.000575577000000,0.001065058000000,0.000055280000000,0.000270984000000,0.000205009000000,0.000078589000000,0.000252811000000,0.000680267000000 +0.000238589000000,0.000068712000000,0.000080565000000,0.000250441000000,0.000593750000000,0.001038983000000,0.000068712000000,0.000578737000000,0.001067428000000,0.000056466000000,0.000203429000000,0.000207380000000,0.000114935000000,0.000211725000000,0.000999083000000 +0.000244910000000,0.000069107000000,0.000106244000000,0.000216860000000,0.000557404000000,0.001120761000000,0.000069503000000,0.000541996000000,0.001061107000000,0.000056071000000,0.000205799000000,0.000221996000000,0.000078984000000,0.000211330000000,0.000674342000000 +0.000280071000000,0.000072268000000,0.000131528000000,0.000218046000000,0.000601650000000,0.001028711000000,0.000075824000000,0.000590194000000,0.001031872000000,0.000054885000000,0.000206984000000,0.000203428000000,0.000078984000000,0.000227132000000,0.000586244000000 +0.000244120000000,0.000069503000000,0.000116515000000,0.000214886000000,0.000554243000000,0.001042539000000,0.000069503000000,0.000534490000000,0.001056366000000,0.000054886000000,0.000219626000000,0.000202638000000,0.000080565000000,0.000211725000000,0.000705156000000 +0.000240959000000,0.000071873000000,0.000098342000000,0.000278490000000,0.000590984000000,0.001066243000000,0.000073453000000,0.000583478000000,0.001023181000000,0.000055281000000,0.000204218000000,0.000203428000000,0.000079379000000,0.000210935000000,0.000622589000000 +0.000244515000000,0.000069107000000,0.000050145000000,0.000225157000000,0.000590589000000,0.001098637000000,0.000105848000000,0.000535675000000,0.001338045000000,0.000054885000000,0.000188811000000,0.000242144000000,0.000081354000000,0.000211330000000,0.000587428000000 +0.000282046000000,0.000074243000000,0.000077009000000,0.000224367000000,0.000553058000000,0.001039378000000,0.000068713000000,0.000570440000000,0.001024761000000,0.000055676000000,0.000203034000000,0.000206589000000,0.000078590000000,0.000209750000000,0.000669997000000 +0.000248465000000,0.000109009000000,0.000046984000000,0.000220021000000,0.000597699000000,0.001043724000000,0.000069108000000,0.000614293000000,0.001059527000000,0.000056861000000,0.000183676000000,0.000193552000000,0.000079379000000,0.000210540000000,0.000869897000000 +0.000239774000000,0.000202244000000,0.000046985000000,0.000274935000000,0.000555428000000,0.001029107000000,0.000069898000000,0.000538441000000,0.001039378000000,0.000058046000000,0.000268219000000,0.000205008000000,0.000078590000000,0.000211725000000,0.000767576000000 +0.000248861000000,0.000185651000000,0.000045799000000,0.000383182000000,0.000690540000000,0.001042934000000,0.000068712000000,0.000584268000000,0.001021996000000,0.000055676000000,0.000203824000000,0.000180515000000,0.000078589000000,0.000212120000000,0.000591379000000 +0.000294688000000,0.000090441000000,0.000046590000000,0.000237799000000,0.000681848000000,0.001047674000000,0.000069503000000,0.000539626000000,0.001068613000000,0.000126392000000,0.000184861000000,0.000240960000000,0.000078984000000,0.000268614000000,0.000628120000000 +0.000249651000000,0.000075824000000,0.000046984000000,0.000221601000000,0.000753749000000,0.001059132000000,0.000068712000000,0.000660119000000,0.001026342000000,0.000056070000000,0.000203824000000,0.000205009000000,0.000126392000000,0.000211330000000,0.000635626000000 +0.000238589000000,0.000082540000000,0.000082935000000,0.000274145000000,0.001653699000000,0.001028712000000,0.000069897000000,0.000610341000000,0.001071774000000,0.000055281000000,0.000241750000000,0.000183281000000,0.000078984000000,0.000212120000000,0.000594144000000 +0.000246885000000,0.000071478000000,0.000046589000000,0.000219626000000,0.000834342000000,0.001108910000000,0.000069107000000,0.000548317000000,0.001055971000000,0.000056070000000,0.000193948000000,0.000183676000000,0.000080960000000,0.000287182000000,0.000670391000000 +0.000274935000000,0.000072268000000,0.000046985000000,0.000216860000000,0.000670787000000,0.001165008000000,0.000069107000000,0.000581502000000,0.001031477000000,0.000054490000000,0.000186046000000,0.000221601000000,0.000078985000000,0.000213305000000,0.000591774000000 +0.000238984000000,0.000106244000000,0.000047379000000,0.000215676000000,0.000626540000000,0.001077699000000,0.000089651000000,0.000535676000000,0.001012515000000,0.000054886000000,0.000206194000000,0.000182885000000,0.000078984000000,0.000210539000000,0.000640367000000 +0.000238590000000,0.000069503000000,0.000048959000000,0.000260317000000,0.000658540000000,0.001046094000000,0.000084910000000,0.000583477000000,0.001055576000000,0.000059626000000,0.000185651000000,0.000182096000000,0.000078985000000,0.000277305000000,0.000634836000000 +0.000250441000000,0.000069503000000,0.000046984000000,0.000252812000000,0.000668811000000,0.001043724000000,0.000105848000000,0.000544762000000,0.001020415000000,0.000055675000000,0.000255181000000,0.000204219000000,0.000079379000000,0.000209749000000,0.000592564000000 +0.000331428000000,0.000071873000000,0.000046590000000,0.000235033000000,0.000642342000000,0.001125897000000,0.000068318000000,0.000570441000000,0.001023577000000,0.000054885000000,0.000192367000000,0.000205009000000,0.000078194000000,0.000211725000000,0.000622588000000 +0.000238984000000,0.000069503000000,0.000046589000000,0.000214491000000,0.000627725000000,0.001048070000000,0.000069108000000,0.000574391000000,0.001353057000000,0.000055281000000,0.000202243000000,0.000219626000000,0.000078984000000,0.000245305000000,0.000627329000000 +0.000244515000000,0.000069502000000,0.000046195000000,0.000257552000000,0.000728465000000,0.001063873000000,0.000068713000000,0.000538441000000,0.001008169000000,0.000055675000000,0.000186046000000,0.000195132000000,0.000079774000000,0.000208960000000,0.000586638000000 +0.000622193000000,0.000069502000000,0.000048170000000,0.000219626000000,0.000762045000000,0.001203724000000,0.000073059000000,0.000576367000000,0.001028712000000,0.000056466000000,0.000218046000000,0.000200663000000,0.000078589000000,0.000210539000000,0.000629700000000 +0.000254391000000,0.000068712000000,0.000046984000000,0.000218441000000,0.000558588000000,0.001078490000000,0.000070688000000,0.000538836000000,0.001009749000000,0.000056466000000,0.000205009000000,0.000183281000000,0.000114935000000,0.000293502000000,0.000586243000000 +0.000238984000000,0.000067922000000,0.000046985000000,0.000223576000000,0.000588613000000,0.001078490000000,0.000069503000000,0.000580317000000,0.001044909000000,0.000059231000000,0.000184861000000,0.000183675000000,0.000078984000000,0.000214491000000,0.000728466000000 +0.000311675000000,0.000069898000000,0.000045799000000,0.000250046000000,0.000557798000000,0.001029107000000,0.000070688000000,0.000536466000000,0.001022786000000,0.000091231000000,0.000208565000000,0.000225552000000,0.000078590000000,0.000212515000000,0.000631280000000 +0.000238589000000,0.000069107000000,0.000046195000000,0.000218441000000,0.000602045000000,0.001463675000000,0.000070293000000,0.000632465000000,0.001078490000000,0.000055676000000,0.000203034000000,0.000206194000000,0.000077799000000,0.000283231000000,0.000591379000000 +0.000244910000000,0.000069502000000,0.000046589000000,0.000219626000000,0.000553849000000,0.001081255000000,0.000068317000000,0.000574786000000,0.001031477000000,0.000055676000000,0.000285602000000,0.000225157000000,0.000079380000000,0.000209355000000,0.000627724000000 +0.000284416000000,0.000069502000000,0.000046589000000,0.000216861000000,0.000588218000000,0.001042934000000,0.000069898000000,0.000541601000000,0.001008959000000,0.000054885000000,0.000184861000000,0.000218836000000,0.000078984000000,0.000211330000000,0.000649058000000 +0.000244515000000,0.000107033000000,0.000046589000000,0.000220021000000,0.000882144000000,0.001029503000000,0.000069108000000,0.000570836000000,0.001044120000000,0.000054886000000,0.000203033000000,0.000239775000000,0.000079379000000,0.000327873000000,0.000594145000000 +0.000301799000000,0.000068317000000,0.000065947000000,0.000257947000000,0.000591774000000,0.001059922000000,0.000140614000000,0.000534490000000,0.001031082000000,0.000055676000000,0.000203033000000,0.000201453000000,0.000079380000000,0.000212515000000,0.000635230000000 +0.000244120000000,0.000068317000000,0.000079775000000,0.000219626000000,0.000594934000000,0.001045700000000,0.000069503000000,0.000675527000000,0.001031082000000,0.000055676000000,0.000228317000000,0.000203428000000,0.000084910000000,0.000209355000000,0.000590984000000 +0.000299429000000,0.000069898000000,0.000046589000000,0.000214886000000,0.000596514000000,0.001045305000000,0.000068318000000,0.000535675000000,0.001026342000000,0.000056466000000,0.000188416000000,0.000202243000000,0.000078589000000,0.000293502000000,0.000662095000000 +0.000244515000000,0.000069107000000,0.000046984000000,0.000214885000000,0.000590984000000,0.001067428000000,0.000069503000000,0.000576367000000,0.001029897000000,0.000054490000000,0.000185256000000,0.000222787000000,0.000079774000000,0.000208565000000,0.000635231000000 +0.000246490000000,0.000071873000000,0.000046985000000,0.000263873000000,0.000591774000000,0.001043329000000,0.000069898000000,0.000575577000000,0.001034243000000,0.000054885000000,0.000208564000000,0.000188416000000,0.000149701000000,0.000209354000000,0.000591774000000 +0.000250441000000,0.000072663000000,0.000046589000000,0.000225157000000,0.000600466000000,0.001064268000000,0.000069108000000,0.000539231000000,0.001018045000000,0.000055281000000,0.000187231000000,0.000181700000000,0.000079379000000,0.000296268000000,0.000636021000000 +0.000288367000000,0.000068317000000,0.000047380000000,0.000214095000000,0.000587823000000,0.001043724000000,0.000069503000000,0.000605996000000,0.001031082000000,0.000056070000000,0.000443231000000,0.000204614000000,0.000080170000000,0.000208959000000,0.000626934000000 +0.000248071000000,0.000069107000000,0.000046589000000,0.000214886000000,0.000633255000000,0.001078884000000,0.000069108000000,0.000534885000000,0.001050045000000,0.000054491000000,0.000308910000000,0.000201848000000,0.000078589000000,0.000213305000000,0.000586243000000 +0.000248466000000,0.000069107000000,0.000046589000000,0.000250836000000,0.000587428000000,0.001101403000000,0.000070688000000,0.000588219000000,0.001011724000000,0.000054491000000,0.000199478000000,0.000328663000000,0.000078589000000,0.000446392000000,0.000622983000000 +0.000238984000000,0.000069107000000,0.000046985000000,0.000222786000000,0.000587033000000,0.001029107000000,0.000068712000000,0.000534885000000,0.001194638000000,0.000076218000000,0.000219626000000,0.000204613000000,0.000078589000000,0.000210540000000,0.000586244000000 +0.000280071000000,0.000069502000000,0.000046589000000,0.000219626000000,0.000597305000000,0.001042934000000,0.000069502000000,0.000593354000000,0.001029897000000,0.000083725000000,0.000203033000000,0.000184465000000,0.000079774000000,0.000245700000000,0.000743082000000 +0.000244120000000,0.000144564000000,0.000046985000000,0.000215676000000,0.000589799000000,0.001028712000000,0.000069502000000,0.000576367000000,0.001074934000000,0.000056071000000,0.000181701000000,0.000182885000000,0.000078589000000,0.000213306000000,0.000631280000000 +0.000244120000000,0.000083725000000,0.000046984000000,0.000233848000000,0.000598885000000,0.001043329000000,0.000106243000000,0.000539626000000,0.001055972000000,0.000078194000000,0.000205404000000,0.000244120000000,0.000079774000000,0.000212910000000,0.000591379000000 +0.000280465000000,0.000072268000000,0.000046589000000,0.000223181000000,0.000586638000000,0.001030293000000,0.000075034000000,0.000580712000000,0.001051625000000,0.000058837000000,0.000239380000000,0.000205009000000,0.000079380000000,0.000294293000000,0.000627330000000 +0.000243329000000,0.000069107000000,0.000047380000000,0.000214491000000,0.000591379000000,0.001042934000000,0.000069898000000,0.000544762000000,0.001022391000000,0.000071874000000,0.000182095000000,0.000205009000000,0.000120071000000,0.000211724000000,0.000669996000000 +0.000249651000000,0.000072268000000,0.000046984000000,0.000215280000000,0.000591774000000,0.001147625000000,0.000074243000000,0.000572021000000,0.001043329000000,0.000056071000000,0.000186046000000,0.000204219000000,0.000108218000000,0.000213700000000,0.000646293000000 +0.000251626000000,0.000068318000000,0.000046589000000,0.000214095000000,0.000589799000000,0.001079280000000,0.000069108000000,0.000545157000000,0.001212415000000,0.000054885000000,0.000203824000000,0.000183281000000,0.000082144000000,0.000248070000000,0.000653798000000 +0.000290737000000,0.000074243000000,0.000085701000000,0.000252812000000,0.000591379000000,0.001069403000000,0.000069108000000,0.000580712000000,0.001033453000000,0.000056071000000,0.000202243000000,0.000240960000000,0.000078589000000,0.000212910000000,0.000627330000000 +0.000239774000000,0.000071083000000,0.000049355000000,0.000227922000000,0.000554638000000,0.001043724000000,0.000067923000000,0.000615873000000,0.001018440000000,0.000055281000000,0.000251231000000,0.000206589000000,0.000078589000000,0.000209750000000,0.000590589000000 +0.000249256000000,0.000073058000000,0.000046589000000,0.000224367000000,0.000604811000000,0.001029502000000,0.000070293000000,0.000572416000000,0.001506736000000,0.000056861000000,0.000203034000000,0.000185650000000,0.000078984000000,0.000249255000000,0.000683428000000 +0.000246095000000,0.000069108000000,0.000048564000000,0.000219231000000,0.000672366000000,0.001091132000000,0.000069108000000,0.000602836000000,0.001030293000000,0.000055676000000,0.000203824000000,0.000204614000000,0.000078984000000,0.000212120000000,0.000627725000000 +0.000283231000000,0.000069503000000,0.000045799000000,0.000375281000000,0.000832761000000,0.001116021000000,0.000069108000000,0.000534095000000,0.001072563000000,0.000056466000000,0.000188417000000,0.000243330000000,0.000079379000000,0.000212515000000,0.000586243000000 +0.000250046000000,0.000071083000000,0.000046984000000,0.000246095000000,0.000627329000000,0.001042934000000,0.000069108000000,0.000572416000000,0.001010540000000,0.000092417000000,0.000221601000000,0.000185651000000,0.000078985000000,0.000561354000000,0.000626934000000 +0.000238589000000,0.000104268000000,0.000046589000000,0.000219626000000,0.000718588000000,0.001062292000000,0.000069898000000,0.000570441000000,0.001054390000000,0.000055281000000,0.000203033000000,0.000190787000000,0.000078589000000,0.000283626000000,0.000586243000000 +0.000241750000000,0.000071873000000,0.000049750000000,0.000215280000000,0.000576762000000,0.001043724000000,0.000114540000000,0.000539231000000,0.001026736000000,0.000054490000000,0.000183280000000,0.000181701000000,0.000080960000000,0.000246885000000,0.000636811000000 +0.000290342000000,0.000072268000000,0.000046589000000,0.000258737000000,0.000594934000000,0.001064663000000,0.000085700000000,0.000574786000000,0.001017650000000,0.000055676000000,0.000204219000000,0.000203824000000,0.000114935000000,0.000210145000000,0.000622194000000 +0.000247676000000,0.000069502000000,0.000046984000000,0.000214490000000,0.000589008000000,0.001518193000000,0.000069108000000,0.000542786000000,0.001010144000000,0.000054886000000,0.000206194000000,0.000227527000000,0.000078985000000,0.000208959000000,0.000586243000000 +0.000246885000000,0.000069502000000,0.000046985000000,0.000222392000000,0.000556614000000,0.001077304000000,0.000069503000000,0.000574391000000,0.001019625000000,0.000055280000000,0.000239774000000,0.000203823000000,0.000078589000000,0.000253996000000,0.000631280000000 +0.000248861000000,0.000068317000000,0.000046589000000,0.000219626000000,0.000591379000000,0.001092317000000,0.000069503000000,0.000544367000000,0.001078490000000,0.000056466000000,0.000205008000000,0.000203823000000,0.000079380000000,0.000215675000000,0.000629304000000 +0.000282046000000,0.000072268000000,0.000046985000000,0.000289947000000,0.000554244000000,0.001074934000000,0.000069107000000,0.000572021000000,0.001014885000000,0.000056465000000,0.000182885000000,0.000185256000000,0.000078589000000,0.000208960000000,0.000848563000000 +0.000249651000000,0.000069503000000,0.000046589000000,0.000215675000000,0.000727280000000,0.001043724000000,0.000069897000000,0.000538836000000,0.001016860000000,0.000055676000000,0.000186045000000,0.000222391000000,0.000078985000000,0.000247280000000,0.000683429000000 +0.000248071000000,0.000068713000000,0.000046589000000,0.000216071000000,0.000603626000000,0.001069798000000,0.000068712000000,0.000577157000000,0.001019625000000,0.000055675000000,0.000238589000000,0.000205404000000,0.000079379000000,0.000212120000000,0.000677502000000 +0.000286786000000,0.000068318000000,0.000046589000000,0.000219626000000,0.000554638000000,0.001043329000000,0.000073848000000,0.000584663000000,0.001004613000000,0.000055676000000,0.000183281000000,0.000202639000000,0.000078984000000,0.000212910000000,0.000599675000000 +0.000247676000000,0.000069108000000,0.000046984000000,0.000260713000000,0.000588614000000,0.001103379000000,0.000071874000000,0.000543181000000,0.001013304000000,0.000055676000000,0.000184861000000,0.000202638000000,0.000078984000000,0.000244910000000,0.000671182000000 +0.000248071000000,0.000068713000000,0.000065553000000,0.000214095000000,0.000561749000000,0.001053996000000,0.000069503000000,0.000570836000000,0.001079675000000,0.000056466000000,0.000187626000000,0.000192762000000,0.000078984000000,0.000208564000000,0.000674341000000 +0.000250441000000,0.000105848000000,0.000049750000000,0.000219626000000,0.000593354000000,0.001074539000000,0.000071083000000,0.000536071000000,0.001042144000000,0.000056466000000,0.000186836000000,0.000241750000000,0.000078984000000,0.000210540000000,0.000598490000000 +0.000278095000000,0.000068712000000,0.000049355000000,0.000213700000000,0.000602046000000,0.001091132000000,0.000106244000000,0.000681058000000,0.001016860000000,0.000055280000000,0.000227527000000,0.000183281000000,0.000114935000000,0.000283626000000,0.000734391000000 +0.000250046000000,0.000069107000000,0.000048170000000,0.000305750000000,0.000564910000000,0.001067428000000,0.000069108000000,0.000585058000000,0.001025552000000,0.000106639000000,0.000203823000000,0.000203033000000,0.000079379000000,0.000251626000000,0.000675132000000 +0.000244515000000,0.000068317000000,0.000046984000000,0.000218441000000,0.000625750000000,0.001163033000000,0.000069898000000,0.000535280000000,0.001485798000000,0.000055675000000,0.000203428000000,0.000186046000000,0.000079379000000,0.000210540000000,0.000590984000000 +0.000243725000000,0.000070688000000,0.000047379000000,0.000214095000000,0.000554243000000,0.001060317000000,0.000069108000000,0.000619823000000,0.001046094000000,0.000054886000000,0.000182490000000,0.000219231000000,0.000079380000000,0.000250045000000,0.000628119000000 +0.000374096000000,0.000068713000000,0.000046589000000,0.000221997000000,0.000604416000000,0.001043724000000,0.000069108000000,0.000542787000000,0.001023576000000,0.000056071000000,0.000183281000000,0.000202639000000,0.000079379000000,0.000210539000000,0.000678688000000 +0.000274539000000,0.000069108000000,0.000048169000000,0.000250836000000,0.000587823000000,0.001064268000000,0.000069108000000,0.000583873000000,0.001080070000000,0.000055280000000,0.000225157000000,0.000205404000000,0.000083330000000,0.000212515000000,0.000586638000000 +0.000250045000000,0.000069503000000,0.000046589000000,0.000229502000000,0.000680268000000,0.001043329000000,0.000069503000000,0.000555823000000,0.001022391000000,0.000055281000000,0.000203428000000,0.000203823000000,0.000078984000000,0.000246095000000,0.000658144000000 +0.000312070000000,0.000069108000000,0.000046985000000,0.000214096000000,0.000591774000000,0.001064267000000,0.000069108000000,0.000588613000000,0.001009354000000,0.000055281000000,0.000184466000000,0.000205008000000,0.000078984000000,0.000212515000000,0.000634046000000 +0.000244515000000,0.000071083000000,0.000046589000000,0.000265848000000,0.000697255000000,0.001043724000000,0.000069502000000,0.000576762000000,0.001021205000000,0.000056071000000,0.000187231000000,0.000229897000000,0.000078984000000,0.000209355000000,0.000607576000000 +0.000248861000000,0.000072664000000,0.000046590000000,0.000240564000000,0.000553058000000,0.001100613000000,0.000069502000000,0.000538046000000,0.001050836000000,0.000056466000000,0.000182885000000,0.000205404000000,0.000078194000000,0.000248071000000,0.000664070000000 +0.000245305000000,0.000069108000000,0.000046589000000,0.000260712000000,0.000592564000000,0.001044119000000,0.000069503000000,0.000589008000000,0.001274045000000,0.000055280000000,0.000267824000000,0.000186836000000,0.000078984000000,0.000214095000000,0.000599676000000 +0.000322343000000,0.000088466000000,0.000046589000000,0.000223972000000,0.000557404000000,0.001042539000000,0.000069108000000,0.000541207000000,0.001036613000000,0.000055676000000,0.000185651000000,0.000204613000000,0.000115330000000,0.000210540000000,0.000665651000000 +0.000247675000000,0.000120466000000,0.000046984000000,0.000218836000000,0.000591774000000,0.001089551000000,0.000072268000000,0.000611527000000,0.001020416000000,0.000056465000000,0.000180910000000,0.000208169000000,0.000078590000000,0.000259527000000,0.000669601000000 +0.000246096000000,0.000069503000000,0.000046194000000,0.000214095000000,0.000553848000000,0.001029107000000,0.000197898000000,0.000553453000000,0.001379921000000,0.000056466000000,0.000204219000000,0.000205404000000,0.000078589000000,0.000210145000000,0.000591379000000 +0.000342490000000,0.000069898000000,0.000046984000000,0.000270194000000,0.000590984000000,0.001123922000000,0.000189207000000,0.000878589000000,0.001094687000000,0.000074243000000,0.000290342000000,0.000184466000000,0.000099133000000,0.000212120000000,0.001076910000000 +0.000274539000000,0.000069108000000,0.000046984000000,0.000215281000000,0.000594144000000,0.001029107000000,0.000107824000000,0.000570045000000,0.001023181000000,0.000071083000000,0.000181700000000,0.000204614000000,0.000097552000000,0.000281650000000,0.000634835000000 +0.000248071000000,0.000067923000000,0.000063972000000,0.000223577000000,0.000558588000000,0.001042934000000,0.000099133000000,0.000577157000000,0.001072959000000,0.000056466000000,0.000203034000000,0.000186836000000,0.000079379000000,0.000210540000000,0.000641947000000 +0.000238589000000,0.000071873000000,0.000046194000000,0.000223971000000,0.000594144000000,0.001063083000000,0.000075033000000,0.000535676000000,0.001020020000000,0.000055280000000,0.000182886000000,0.000308910000000,0.000078590000000,0.000209354000000,0.000587033000000 +0.000310491000000,0.000069503000000,0.000047775000000,0.000295873000000,0.000552268000000,0.001055971000000,0.000069502000000,0.000597305000000,0.001064268000000,0.000056466000000,0.000226342000000,0.000183676000000,0.000081750000000,0.000246095000000,0.000626145000000 +0.000240564000000,0.000072268000000,0.000046589000000,0.000214886000000,0.000607182000000,0.001028712000000,0.000073848000000,0.000538045000000,0.001012119000000,0.000088466000000,0.000213305000000,0.000201059000000,0.000078984000000,0.000209749000000,0.000622589000000 +0.000255182000000,0.000068318000000,0.000046195000000,0.000220021000000,0.000646688000000,0.001044119000000,0.000069502000000,0.000580712000000,0.001056367000000,0.000093997000000,0.000203428000000,0.000204614000000,0.000081750000000,0.000210935000000,0.000637206000000 +0.000245305000000,0.000074244000000,0.000047379000000,0.000216070000000,0.000619033000000,0.001121551000000,0.000105453000000,0.000534490000000,0.001042934000000,0.000060417000000,0.000187626000000,0.000328268000000,0.000115330000000,0.000248861000000,0.000622193000000 +0.000275725000000,0.000070293000000,0.000047379000000,0.000257553000000,0.000589008000000,0.001094687000000,0.000068318000000,0.000575577000000,0.001389798000000,0.000056465000000,0.000184861000000,0.000203034000000,0.000078985000000,0.000210540000000,0.000585848000000 +0.000250441000000,0.000109799000000,0.000046194000000,0.000224366000000,0.000556614000000,0.001035033000000,0.000069898000000,0.000572416000000,0.001132218000000,0.000055281000000,0.000220021000000,0.000203429000000,0.000078589000000,0.000210935000000,0.000631281000000 +0.000248071000000,0.000068712000000,0.000047774000000,0.000214491000000,0.000645898000000,0.001042934000000,0.000068713000000,0.000549897000000,0.001020811000000,0.000055281000000,0.000186441000000,0.000190787000000,0.000079379000000,0.000245306000000,0.000627329000000 +0.000247280000000,0.000068712000000,0.000066738000000,0.000221206000000,0.000603231000000,0.001029502000000,0.000069503000000,0.000570836000000,0.001069403000000,0.000053700000000,0.000187231000000,0.000241750000000,0.000078589000000,0.000208960000000,0.000591774000000 +0.000326292000000,0.000071479000000,0.000062392000000,0.000289947000000,0.000552663000000,0.001043724000000,0.000069108000000,0.000535280000000,0.001024761000000,0.000056071000000,0.000206984000000,0.000186836000000,0.000078589000000,0.000211725000000,0.000687774000000 +0.000249651000000,0.000069503000000,0.000061602000000,0.000233058000000,0.000636021000000,0.001029107000000,0.000069898000000,0.000572812000000,0.001168168000000,0.000074639000000,0.000187626000000,0.000188416000000,0.000078194000000,0.000250441000000,0.000630885000000 +0.000248466000000,0.000072268000000,0.000048170000000,0.000214096000000,0.000676317000000,0.001043329000000,0.000069107000000,0.000534095000000,0.001022391000000,0.000087675000000,0.000269009000000,0.000202244000000,0.000080959000000,0.000211725000000,0.000598490000000 +0.000274145000000,0.000072269000000,0.000047380000000,0.000219626000000,0.000565700000000,0.001029107000000,0.000069502000000,0.000656564000000,0.001012910000000,0.000055281000000,0.000203033000000,0.000190787000000,0.000078590000000,0.000210145000000,0.000662885000000 +0.000248071000000,0.000069503000000,0.000047379000000,0.000259922000000,0.000879379000000,0.001042934000000,0.000069108000000,0.000606786000000,0.001021601000000,0.000055675000000,0.000184860000000,0.000270984000000,0.000077799000000,0.000304565000000,0.000626540000000 +0.000248070000000,0.000069898000000,0.000047379000000,0.000223182000000,0.000593354000000,0.001096268000000,0.000069107000000,0.000534886000000,0.001016070000000,0.000055281000000,0.000223181000000,0.000193947000000,0.000078985000000,0.000223577000000,0.000599280000000 +0.000244910000000,0.000069108000000,0.000083330000000,0.000224367000000,0.000557403000000,0.001059527000000,0.000068712000000,0.000570835000000,0.001034638000000,0.000054886000000,0.000263083000000,0.000185651000000,0.000098737000000,0.000208960000000,0.000628515000000 +0.000515923000000,0.000071478000000,0.000046984000000,0.000218046000000,0.000601255000000,0.001029107000000,0.000069503000000,0.000541997000000,0.001215180000000,0.000057255000000,0.000201849000000,0.000203428000000,0.000111775000000,0.000248070000000,0.000586638000000 +0.000473256000000,0.000069108000000,0.000047775000000,0.000244910000000,0.000554243000000,0.001084810000000,0.000120466000000,0.000579922000000,0.001225452000000,0.000055676000000,0.000203824000000,0.000238984000000,0.000079379000000,0.000209354000000,0.000626934000000 +0.000284021000000,0.000069107000000,0.000046194000000,0.000279280000000,0.000590589000000,0.001029502000000,0.000069898000000,0.000534490000000,0.001018836000000,0.000055280000000,0.000186046000000,0.000184466000000,0.000079379000000,0.000208960000000,0.000621404000000 +0.000249256000000,0.000104663000000,0.000046590000000,0.000222787000000,0.000622984000000,0.001043329000000,0.000073849000000,0.000570836000000,0.001029897000000,0.000055281000000,0.000224367000000,0.000203034000000,0.000078984000000,0.000253206000000,0.000587033000000 +0.000249651000000,0.000069503000000,0.000046984000000,0.000220416000000,0.000567675000000,0.001098638000000,0.000071873000000,0.000573601000000,0.001087181000000,0.000055281000000,0.000203033000000,0.000203824000000,0.000078984000000,0.000212910000000,0.000622194000000 +0.000248070000000,0.000068713000000,0.000046195000000,0.000219626000000,0.000598491000000,0.001056761000000,0.000069108000000,0.000541996000000,0.001074934000000,0.000055675000000,0.000204219000000,0.000180515000000,0.000079775000000,0.000211329000000,0.000795626000000 +0.000274935000000,0.000069898000000,0.000046984000000,0.000256762000000,0.000555823000000,0.001029502000000,0.000072664000000,0.000610342000000,0.001017650000000,0.000054491000000,0.000203823000000,0.000231873000000,0.000079774000000,0.000249255000000,0.000595329000000 +0.000244515000000,0.000069503000000,0.000046589000000,0.000224367000000,0.000592564000000,0.002010045000000,0.000070293000000,0.000547922000000,0.001029502000000,0.000056071000000,0.000203428000000,0.000204614000000,0.000078590000000,0.000209354000000,0.000627330000000 +0.000248860000000,0.000068713000000,0.000046984000000,0.000224367000000,0.000586243000000,0.001429699000000,0.000069898000000,0.000570441000000,0.001081650000000,0.000089256000000,0.000241749000000,0.000202639000000,0.000078984000000,0.000245305000000,0.000764416000000 +0.000246886000000,0.000069108000000,0.000048959000000,0.000221206000000,0.000572021000000,0.001217946000000,0.000069503000000,0.000538441000000,0.001133404000000,0.000056466000000,0.000182885000000,0.000205404000000,0.000079379000000,0.000256366000000,0.000599280000000 +0.000334589000000,0.000070688000000,0.000046589000000,0.000292318000000,0.000628909000000,0.001064268000000,0.000069108000000,0.000570440000000,0.001099033000000,0.000054885000000,0.000204614000000,0.000260713000000,0.000115330000000,0.000208959000000,0.000630885000000 +0.000241355000000,0.000068713000000,0.000046984000000,0.000224367000000,0.000555823000000,0.001043329000000,0.000069898000000,0.000577156000000,0.001215181000000,0.000053701000000,0.000203033000000,0.000180911000000,0.000079380000000,0.000210935000000,0.000634046000000 +0.000244515000000,0.000069108000000,0.000046984000000,0.000215281000000,0.000589404000000,0.001274045000000,0.000088861000000,0.000535281000000,0.001072169000000,0.000055281000000,0.000225552000000,0.000202243000000,0.000083330000000,0.000245305000000,0.000666045000000 +0.000280071000000,0.000069503000000,0.000046985000000,0.000220416000000,0.000554639000000,0.001117996000000,0.000069503000000,0.000574786000000,0.001147230000000,0.000055280000000,0.000188021000000,0.000203823000000,0.000078194000000,0.000209750000000,0.000663280000000 +0.000238589000000,0.000069502000000,0.000047379000000,0.000263478000000,0.000610342000000,0.001029107000000,0.000068713000000,0.000545157000000,0.001016465000000,0.000055281000000,0.000203429000000,0.000203428000000,0.000078984000000,0.000211725000000,0.000635231000000 +0.000249256000000,0.000143379000000,0.000046984000000,0.000219231000000,0.000601651000000,0.001077700000000,0.000069898000000,0.000920070000000,0.001043724000000,0.000058442000000,0.000205404000000,0.000237403000000,0.000078985000000,0.000245700000000,0.000592564000000 +0.000239774000000,0.000071478000000,0.000046985000000,0.000219626000000,0.000577552000000,0.001029502000000,0.000069108000000,0.000587429000000,0.001029502000000,0.000054886000000,0.000190391000000,0.000202243000000,0.000078589000000,0.000212120000000,0.000628120000000 +0.000290737000000,0.000069107000000,0.000063577000000,0.000216466000000,0.000639577000000,0.001052415000000,0.000069108000000,0.000540021000000,0.001016465000000,0.000055280000000,0.000239380000000,0.000183675000000,0.000079380000000,0.000208959000000,0.000590984000000 +0.000250440000000,0.000069502000000,0.000046984000000,0.000390688000000,0.000576367000000,0.001065057000000,0.000069503000000,0.000611132000000,0.001077305000000,0.000055281000000,0.000181305000000,0.000205403000000,0.000078984000000,0.000248466000000,0.000622984000000 +0.000248860000000,0.000068712000000,0.000046984000000,0.000670391000000,0.000609157000000,0.001056761000000,0.000072269000000,0.000809058000000,0.001014884000000,0.000055676000000,0.000208170000000,0.000237009000000,0.000079380000000,0.000211330000000,0.000623379000000 +0.000244515000000,0.000069502000000,0.000047380000000,0.000651033000000,0.000629305000000,0.001029503000000,0.000069898000000,0.000643527000000,0.001044515000000,0.000055280000000,0.000206984000000,0.000208170000000,0.000099132000000,0.000212120000000,0.000586638000000 +0.000310491000000,0.000069502000000,0.000047379000000,0.000295083000000,0.000552663000000,0.001091527000000,0.000069503000000,0.000573996000000,0.001034243000000,0.000056071000000,0.000225157000000,0.000205009000000,0.000132317000000,0.000245305000000,0.000667626000000 +0.000245305000000,0.000069108000000,0.000046589000000,0.000267824000000,0.000606392000000,0.001165798000000,0.000069503000000,0.000562145000000,0.001017255000000,0.000056466000000,0.000183280000000,0.000182490000000,0.000083330000000,0.000212515000000,0.000631280000000 +0.000244515000000,0.000069108000000,0.000046589000000,0.000236614000000,0.000572021000000,0.001056761000000,0.000069898000000,0.000568070000000,0.001005403000000,0.000108219000000,0.000186046000000,0.000202243000000,0.000120071000000,0.000208565000000,0.000591774000000 +0.000248071000000,0.000071873000000,0.000046589000000,0.000234639000000,0.000570046000000,0.001064662000000,0.000075824000000,0.000610737000000,0.001016070000000,0.000055281000000,0.000205799000000,0.000238194000000,0.000095182000000,0.000249255000000,0.000627329000000 +0.000297058000000,0.000069108000000,0.000046985000000,0.000227922000000,0.000834737000000,0.001402045000000,0.000141009000000,0.000540021000000,0.001017651000000,0.000055675000000,0.000184861000000,0.000203824000000,0.000081355000000,0.000210144000000,0.000599281000000 +0.000248071000000,0.000072269000000,0.000046984000000,0.000372515000000,0.000625354000000,0.001116416000000,0.000073849000000,0.000592960000000,0.001115625000000,0.000055281000000,0.000327873000000,0.000181700000000,0.000078589000000,0.000209749000000,0.000630490000000 +0.000246885000000,0.000105058000000,0.000046589000000,0.000220811000000,0.000567675000000,0.001044514000000,0.000067923000000,0.000536070000000,0.001016860000000,0.000056466000000,0.000222787000000,0.000180911000000,0.000082145000000,0.000248071000000,0.000634835000000 +0.000325108000000,0.000074639000000,0.000046984000000,0.000214491000000,0.000602441000000,0.001029107000000,0.000069108000000,0.000571231000000,0.001023181000000,0.000056466000000,0.000206194000000,0.000223972000000,0.000079379000000,0.000212910000000,0.000591379000000 +0.000271379000000,0.000110589000000,0.000046589000000,0.000214885000000,0.000561750000000,0.001079675000000,0.000069503000000,0.000574391000000,0.001021601000000,0.000054886000000,0.000207379000000,0.000312070000000,0.000078985000000,0.000210540000000,0.000683034000000 +0.000248071000000,0.000091627000000,0.000046985000000,0.000259132000000,0.000593749000000,0.001136959000000,0.000070688000000,0.000540811000000,0.001998983000000,0.000054885000000,0.000223182000000,0.000188416000000,0.000078589000000,0.000246885000000,0.000675132000000 +0.000243725000000,0.000082145000000,0.000045799000000,0.000223577000000,0.000557009000000,0.001043330000000,0.000069503000000,0.000707527000000,0.001148021000000,0.000056071000000,0.000204614000000,0.000202638000000,0.000114935000000,0.000214096000000,0.000743083000000 +0.000331824000000,0.000069108000000,0.000046985000000,0.000220021000000,0.000601256000000,0.001028712000000,0.000070293000000,0.000541601000000,0.001112860000000,0.000056070000000,0.000182096000000,0.000238589000000,0.000078589000000,0.000211725000000,0.000622193000000 +0.000244120000000,0.000071478000000,0.000046589000000,0.000223182000000,0.000590984000000,0.001043725000000,0.000069107000000,0.000590194000000,0.001166193000000,0.000056071000000,0.000188812000000,0.000203033000000,0.000078589000000,0.000247280000000,0.000661699000000 +0.000246095000000,0.000069108000000,0.000083330000000,0.000272169000000,0.000554638000000,0.001028712000000,0.000069898000000,0.000597700000000,0.001087576000000,0.000054886000000,0.000183280000000,0.000183280000000,0.000078984000000,0.000209750000000,0.000586244000000 +0.000286786000000,0.000072269000000,0.000046984000000,0.000218046000000,0.000590193000000,0.001044120000000,0.000070293000000,0.000750194000000,0.001061502000000,0.000055675000000,0.000255576000000,0.000185256000000,0.000080565000000,0.000213305000000,0.000623378000000 +0.000260318000000,0.000071873000000,0.000046985000000,0.000224762000000,0.000552663000000,0.001041749000000,0.000068713000000,0.000587033000000,0.001511477000000,0.000054886000000,0.000201848000000,0.000186441000000,0.000078589000000,0.000246490000000,0.000586639000000 +0.000243330000000,0.000069898000000,0.000046194000000,0.000220417000000,0.000598490000000,0.001134193000000,0.000105848000000,0.000539626000000,0.001304070000000,0.000071083000000,0.000202639000000,0.000255182000000,0.000078985000000,0.000210145000000,0.000668021000000 +0.000238589000000,0.000104664000000,0.000046985000000,0.000293503000000,0.000626540000000,0.001042540000000,0.000069107000000,0.000591379000000,0.001014490000000,0.000056466000000,0.000191577000000,0.000202243000000,0.000078984000000,0.000214095000000,0.000631675000000 +0.000274935000000,0.000069108000000,0.000047379000000,0.000214490000000,0.000571231000000,0.001043329000000,0.000069502000000,0.000570046000000,0.001124712000000,0.000056070000000,0.000222787000000,0.000184466000000,0.000078984000000,0.000211329000000,0.000591379000000 +0.000244515000000,0.000071478000000,0.000046194000000,0.000219627000000,0.000594935000000,0.001113255000000,0.000069108000000,0.000538046000000,0.001023181000000,0.000056071000000,0.000182491000000,0.000202243000000,0.000078589000000,0.000210145000000,0.000681848000000 +0.000250046000000,0.000069503000000,0.000046985000000,0.000219626000000,0.000556613000000,0.001043329000000,0.000069108000000,0.000831971000000,0.001051230000000,0.000055675000000,0.000185651000000,0.000192367000000,0.000079379000000,0.000208564000000,0.000635231000000 +0.000245700000000,0.000068713000000,0.000047774000000,0.000254391000000,0.000629305000000,0.001028712000000,0.000068713000000,0.000749008000000,0.001039774000000,0.000056466000000,0.000184466000000,0.000223182000000,0.000176565000000,0.000212515000000,0.000594539000000 +0.000314836000000,0.000067528000000,0.000046984000000,0.000216861000000,0.000591379000000,0.001079280000000,0.000073453000000,0.000541601000000,0.001042539000000,0.000054885000000,0.000189207000000,0.000186836000000,0.000118096000000,0.000210145000000,0.000756910000000 +0.000248071000000,0.000069108000000,0.000047379000000,0.000214885000000,0.000553453000000,0.001069799000000,0.000072268000000,0.000572021000000,0.001038984000000,0.000056861000000,0.000240959000000,0.000191182000000,0.000096367000000,0.000212120000000,0.000642737000000 +0.000244910000000,0.000068318000000,0.000046589000000,0.000220812000000,0.000590589000000,0.001042934000000,0.000069108000000,0.000535280000000,0.001086391000000,0.000054886000000,0.000189601000000,0.000204218000000,0.000092812000000,0.000229108000000,0.000590589000000 +0.000238984000000,0.000069503000000,0.000048960000000,0.000222391000000,0.000558588000000,0.001029502000000,0.000072663000000,0.000589009000000,0.001039774000000,0.000055280000000,0.000203034000000,0.000275329000000,0.000078984000000,0.000208565000000,0.000686983000000 +0.000284417000000,0.000069108000000,0.000046985000000,0.000262293000000,0.000608761000000,0.001043329000000,0.000070688000000,0.000612317000000,0.001039378000000,0.000055281000000,0.000203429000000,0.000252021000000,0.000078984000000,0.000208564000000,0.000628120000000 +0.000247675000000,0.000069108000000,0.000046589000000,0.000220811000000,0.000593354000000,0.001028712000000,0.000069503000000,0.000541206000000,0.001050836000000,0.000055281000000,0.000223182000000,0.000202244000000,0.000079775000000,0.000279281000000,0.000586243000000 +0.000240170000000,0.000069108000000,0.000046984000000,0.000218836000000,0.000552268000000,0.001201354000000,0.000150095000000,0.000606787000000,0.001042144000000,0.000055280000000,0.000218046000000,0.000203429000000,0.000079379000000,0.000212515000000,0.000678293000000 +0.000247675000000,0.000070688000000,0.000047380000000,0.000223182000000,0.000593749000000,0.001029502000000,0.000069503000000,0.000534885000000,0.001049650000000,0.000056071000000,0.000183675000000,0.000239775000000,0.000079380000000,0.000209355000000,0.000619823000000 +0.000263874000000,0.000131923000000,0.000067922000000,0.000296268000000,0.000558194000000,0.001090736000000,0.000068712000000,0.000587429000000,0.001081256000000,0.000124812000000,0.000182490000000,0.000204219000000,0.000079379000000,0.000244515000000,0.000587823000000 +0.000248070000000,0.000068713000000,0.000046590000000,0.000223577000000,0.000629700000000,0.001311180000000,0.000069503000000,0.000572811000000,0.001027526000000,0.000069503000000,0.000181306000000,0.000190787000000,0.000101502000000,0.000208959000000,0.000669206000000 +0.000242145000000,0.000069108000000,0.000047379000000,0.000214490000000,0.000553058000000,0.001526885000000,0.000069503000000,0.000555428000000,0.001024762000000,0.000055676000000,0.000271774000000,0.000185651000000,0.000078984000000,0.000213305000000,0.000586244000000 +0.000337750000000,0.000069503000000,0.000046589000000,0.000221206000000,0.000607972000000,0.001029107000000,0.000069503000000,0.000570836000000,0.001050835000000,0.000055280000000,0.000183280000000,0.000184466000000,0.000079380000000,0.000256762000000,0.000630885000000 +0.000479576000000,0.000071873000000,0.000046984000000,0.000260318000000,0.000589008000000,0.001401255000000,0.000070293000000,0.000538836000000,0.001147626000000,0.000055281000000,0.000191182000000,0.000292318000000,0.000078589000000,0.000209749000000,0.000722144000000 +0.000246491000000,0.000072268000000,0.000046984000000,0.000223182000000,0.000553453000000,0.001029898000000,0.000069898000000,0.000615478000000,0.001026736000000,0.000054886000000,0.000203428000000,0.000182095000000,0.000078589000000,0.000213700000000,0.000659725000000 +0.000298638000000,0.000069108000000,0.000046985000000,0.000221601000000,0.000588614000000,0.001087971000000,0.000068713000000,0.000538836000000,0.001030688000000,0.000054885000000,0.000203824000000,0.000186836000000,0.000079774000000,0.000263873000000,0.000635231000000 +0.000247676000000,0.000069503000000,0.000046589000000,0.000219626000000,0.000553848000000,0.001028712000000,0.000068713000000,0.000577552000000,0.001014884000000,0.000055676000000,0.000261897000000,0.000185651000000,0.000078590000000,0.000297453000000,0.000630885000000 +0.000245700000000,0.000069108000000,0.000046985000000,0.000251626000000,0.000717404000000,0.001042934000000,0.000071478000000,0.000677107000000,0.001021205000000,0.000055676000000,0.000217651000000,0.000240960000000,0.000078589000000,0.000212515000000,0.000598885000000 +0.000250836000000,0.000068318000000,0.000047379000000,0.000221602000000,0.000636811000000,0.001102588000000,0.000068317000000,0.001550588000000,0.001010935000000,0.000054490000000,0.000180515000000,0.000204614000000,0.000078590000000,0.000211330000000,0.000662885000000 +0.000284416000000,0.000069898000000,0.000047379000000,0.000222786000000,0.000629305000000,0.001315132000000,0.000104663000000,0.000786934000000,0.001012514000000,0.000054491000000,0.000204614000000,0.000203429000000,0.000079379000000,0.000209750000000,0.000626539000000 +0.000247675000000,0.000087676000000,0.000046590000000,0.000218836000000,0.000644317000000,0.001029898000000,0.000068318000000,0.001059131000000,0.001089946000000,0.000055281000000,0.000237799000000,0.000205404000000,0.000078590000000,0.000210935000000,0.000599280000000 +0.000238984000000,0.000120071000000,0.000046984000000,0.000219231000000,0.000613502000000,0.001078885000000,0.000069898000000,0.000674341000000,0.001024761000000,0.000056465000000,0.000180910000000,0.000204218000000,0.000163527000000,0.000229502000000,0.000634046000000 +0.000248466000000,0.000072268000000,0.000046194000000,0.000252417000000,0.000565700000000,0.001029107000000,0.000075034000000,0.000567280000000,0.001067428000000,0.000055281000000,0.000201849000000,0.000546737000000,0.000078589000000,0.000211330000000,0.000586243000000 +0.000282046000000,0.000068317000000,0.000047775000000,0.000214095000000,0.000632860000000,0.001133404000000,0.000069898000000,0.000603626000000,0.001012119000000,0.000097553000000,0.000203824000000,0.000291133000000,0.000080960000000,0.000208960000000,0.000627330000000 +0.000247675000000,0.000071478000000,0.000046984000000,0.000214095000000,0.000554638000000,0.001029107000000,0.000073849000000,0.000572416000000,0.001063873000000,0.000055280000000,0.000242935000000,0.000219626000000,0.000078984000000,0.000208564000000,0.000622984000000 +0.000238984000000,0.000068713000000,0.000046590000000,0.000219626000000,0.000625354000000,0.001043329000000,0.000069898000000,0.000566885000000,0.001027922000000,0.000055676000000,0.000186836000000,0.000189996000000,0.000081354000000,0.000210540000000,0.000587428000000 +0.000274934000000,0.000074244000000,0.000047379000000,0.000275330000000,0.000623774000000,0.001297354000000,0.000069108000000,0.000567675000000,0.001021205000000,0.000056071000000,0.000185651000000,0.000182095000000,0.000079379000000,0.000212910000000,0.000622589000000 +0.000246885000000,0.000071478000000,0.000118490000000,0.000214095000000,0.000562145000000,0.001077305000000,0.000069108000000,0.000573206000000,0.001029898000000,0.000054490000000,0.000204614000000,0.000205404000000,0.000078589000000,0.000210145000000,0.000622589000000 +0.000238589000000,0.000073454000000,0.000046590000000,0.000214491000000,0.000639972000000,0.001029502000000,0.000069503000000,0.000579527000000,0.001020020000000,0.000054885000000,0.000203824000000,0.000201453000000,0.000078589000000,0.000212515000000,0.000655774000000 +0.000241750000000,0.000067922000000,0.000046984000000,0.000214490000000,0.000557008000000,0.001051230000000,0.000069503000000,0.000567280000000,0.001030292000000,0.000055281000000,0.000279281000000,0.000216861000000,0.000078984000000,0.000210935000000,0.000682243000000 +0.000285206000000,0.000068712000000,0.000048169000000,0.000254787000000,0.000617848000000,0.001051230000000,0.000069503000000,0.000604021000000,0.001016465000000,0.000056071000000,0.000205404000000,0.000189207000000,0.000079379000000,0.000213305000000,0.000624959000000 +0.000247281000000,0.000105848000000,0.000046985000000,0.000219626000000,0.000641157000000,0.001434440000000,0.000123627000000,0.000615872000000,0.001024761000000,0.000054886000000,0.000182491000000,0.000182885000000,0.000115330000000,0.000212120000000,0.000598490000000 +0.000249651000000,0.000103873000000,0.000046589000000,0.000215280000000,0.000557799000000,0.001091526000000,0.000105058000000,0.000570440000000,0.001146045000000,0.000055281000000,0.000186441000000,0.000189601000000,0.000078984000000,0.000208960000000,0.000630490000000 +0.000244120000000,0.000071873000000,0.000046194000000,0.000219231000000,0.001014095000000,0.001043724000000,0.000101108000000,0.000572416000000,0.001120761000000,0.000055280000000,0.000220416000000,0.000188416000000,0.000080960000000,0.000227132000000,0.000599280000000 +0.000327083000000,0.000071874000000,0.000048960000000,0.000281651000000,0.000589009000000,0.001029503000000,0.000069108000000,0.000567280000000,0.001051231000000,0.000055280000000,0.000188416000000,0.000273355000000,0.000078984000000,0.000212515000000,0.000627330000000 +0.000282046000000,0.000068713000000,0.000049355000000,0.000469305000000,0.000625749000000,0.001079280000000,0.000069503000000,0.000601256000000,0.001065453000000,0.000055676000000,0.000183281000000,0.000203824000000,0.000078985000000,0.000209354000000,0.000626934000000 +0.000334984000000,0.000069503000000,0.000047379000000,0.000240564000000,0.000558194000000,0.001029107000000,0.000069503000000,0.000605601000000,0.001017255000000,0.000055675000000,0.000183676000000,0.000202244000000,0.000078589000000,0.000210935000000,0.000598885000000 +0.000284812000000,0.000068713000000,0.000048169000000,0.000260713000000,0.000595330000000,0.001043329000000,0.000069108000000,0.000583873000000,0.001056366000000,0.000089651000000,0.000184071000000,0.000203824000000,0.000078590000000,0.000211725000000,0.000641552000000 +0.000248466000000,0.000071478000000,0.000046589000000,0.000253601000000,0.000557799000000,0.001168169000000,0.000068713000000,0.000581897000000,0.001034243000000,0.000130342000000,0.000275330000000,0.000241750000000,0.000078589000000,0.000210540000000,0.000606786000000 +0.000238194000000,0.000069108000000,0.000046194000000,0.000230293000000,0.000589009000000,0.001043330000000,0.000069108000000,0.000544367000000,0.001435625000000,0.000093602000000,0.000196713000000,0.000182886000000,0.000079379000000,0.000437305000000,0.000590589000000 +0.000240959000000,0.000069108000000,0.000046589000000,0.000221206000000,0.000661700000000,0.001045700000000,0.000069503000000,0.000609947000000,0.001035428000000,0.000058442000000,0.000182886000000,0.000206589000000,0.000079774000000,0.000212515000000,0.000622193000000 +0.000292713000000,0.000069503000000,0.000049750000000,0.000257948000000,0.000558194000000,0.001043329000000,0.000073454000000,0.000791675000000,0.001040959000000,0.000055676000000,0.000203429000000,0.000184465000000,0.000079379000000,0.000212515000000,0.000587034000000 +0.000244120000000,0.000069108000000,0.000046589000000,0.000215675000000,0.000683033000000,0.001039379000000,0.000107429000000,0.000536466000000,0.001008564000000,0.000056861000000,0.000186441000000,0.000242144000000,0.000150491000000,0.000210935000000,0.000656959000000 +0.000246886000000,0.000068713000000,0.000046984000000,0.000219626000000,0.000552268000000,0.001244811000000,0.000069503000000,0.000853699000000,0.001067033000000,0.000056071000000,0.000203034000000,0.000191181000000,0.000078984000000,0.000212515000000,0.000622589000000 +0.000248465000000,0.000145750000000,0.000099133000000,0.000227923000000,0.000594145000000,0.001204119000000,0.000072664000000,0.000574786000000,0.001055576000000,0.000055675000000,0.000205799000000,0.000202638000000,0.000078589000000,0.000228318000000,0.000595724000000 +0.000275329000000,0.000210935000000,0.000045799000000,0.000220811000000,0.000588613000000,0.001254292000000,0.000070293000000,0.000538836000000,0.001125107000000,0.000056071000000,0.000205009000000,0.000206194000000,0.000078984000000,0.000228318000000,0.000768367000000 +0.000247676000000,0.000153255000000,0.000046984000000,0.000255972000000,0.000554243000000,0.001073353000000,0.000068713000000,0.000570046000000,0.001043725000000,0.000056465000000,0.000202639000000,0.000204219000000,0.000078984000000,0.000208564000000,0.000627724000000 +0.000239379000000,0.000073058000000,0.000047380000000,0.000214095000000,0.000630490000000,0.001042934000000,0.000069898000000,0.000537650000000,0.001033057000000,0.000056466000000,0.000236219000000,0.000277700000000,0.000078589000000,0.000211725000000,0.000599280000000 +0.000245306000000,0.000086885000000,0.000046589000000,0.000214885000000,0.000553848000000,0.001042935000000,0.000068713000000,0.000570046000000,0.001027527000000,0.000055280000000,0.000203034000000,0.000207774000000,0.000078984000000,0.000213305000000,0.000641157000000 +0.000331823000000,0.000069503000000,0.000046195000000,0.000214886000000,0.000785749000000,0.001042539000000,0.000069108000000,0.000578737000000,0.001020811000000,0.000094392000000,0.000181305000000,0.000205009000000,0.000079775000000,0.000213305000000,0.000693700000000 +0.000248071000000,0.000069108000000,0.000046984000000,0.000286391000000,0.000589404000000,0.001075725000000,0.000069108000000,0.000536466000000,0.001129847000000,0.000055280000000,0.000183280000000,0.000192367000000,0.000083725000000,0.000248465000000,0.000591379000000 +0.000248466000000,0.000068712000000,0.000046984000000,0.000224762000000,0.000561749000000,0.001043724000000,0.000069503000000,0.000578737000000,0.001014884000000,0.000056466000000,0.000206194000000,0.000221207000000,0.000078984000000,0.000211329000000,0.000626539000000 +0.000284416000000,0.000124021000000,0.000046985000000,0.000214096000000,0.000592959000000,0.001149601000000,0.000069503000000,0.000543971000000,0.001023971000000,0.000056861000000,0.000219626000000,0.000182885000000,0.000078984000000,0.000208564000000,0.000598490000000 +0.000248071000000,0.000071478000000,0.000045799000000,0.000214096000000,0.000557404000000,0.001089551000000,0.000069503000000,0.000572416000000,0.001014490000000,0.000056071000000,0.000180910000000,0.000206194000000,0.000114935000000,0.000212911000000,0.000628120000000 +0.000239379000000,0.000071873000000,0.000047775000000,0.000250046000000,0.000601255000000,0.001063082000000,0.000069898000000,0.000539625000000,0.001292218000000,0.000054886000000,0.000182886000000,0.000204614000000,0.000078590000000,0.000213700000000,0.000622589000000 +0.000248071000000,0.000069108000000,0.000046984000000,0.000223181000000,0.000590588000000,0.001282341000000,0.000139034000000,0.000581502000000,0.001013304000000,0.000056861000000,0.000204219000000,0.000184466000000,0.000079379000000,0.000209750000000,0.000590589000000 +0.000296663000000,0.000069503000000,0.000046194000000,0.000216861000000,0.000554638000000,0.001514243000000,0.000082539000000,0.000617848000000,0.001058737000000,0.000056071000000,0.000258737000000,0.000221602000000,0.000078984000000,0.000210145000000,0.000635230000000 +0.000250441000000,0.000068318000000,0.000047379000000,0.000219626000000,0.000589799000000,0.001042935000000,0.000071873000000,0.000534095000000,0.001084020000000,0.000055676000000,0.000202243000000,0.000182886000000,0.000078984000000,0.000209750000000,0.000622984000000 +0.000239379000000,0.000068713000000,0.000048169000000,0.000279281000000,0.000553453000000,0.001029502000000,0.000069108000000,0.000570835000000,0.001049256000000,0.000056071000000,0.000202639000000,0.000184071000000,0.000078589000000,0.000210540000000,0.000586243000000 +0.000254392000000,0.000069898000000,0.000046984000000,0.000221997000000,0.000598490000000,0.001077305000000,0.000068713000000,0.000539231000000,0.001057551000000,0.000055280000000,0.000202639000000,0.000184466000000,0.000078589000000,0.000227132000000,0.000622194000000 +0.000319972000000,0.000069502000000,0.000066738000000,0.000223181000000,0.000613502000000,0.001053996000000,0.000069503000000,0.000618638000000,0.001023181000000,0.000054886000000,0.000222392000000,0.000184071000000,0.000078589000000,0.000212120000000,0.000595330000000 +0.000241355000000,0.000069502000000,0.000046590000000,0.000222787000000,0.000572416000000,0.001069008000000,0.000069503000000,0.000534491000000,0.001022391000000,0.000055281000000,0.000206985000000,0.000258342000000,0.000079380000000,0.000209749000000,0.000750588000000 +0.000238589000000,0.000071083000000,0.000046589000000,0.000239379000000,0.000648663000000,0.001089156000000,0.000075034000000,0.000619428000000,0.001026342000000,0.000055280000000,0.000182490000000,0.000203033000000,0.000079379000000,0.000266638000000,0.000627724000000 +0.000244910000000,0.000069108000000,0.000047379000000,0.000217650000000,0.000556613000000,0.001103379000000,0.000069898000000,0.000855280000000,0.001022786000000,0.000056466000000,0.000184860000000,0.000200663000000,0.000081749000000,0.000209355000000,0.000599280000000 +0.000281256000000,0.000127182000000,0.000047775000000,0.000223972000000,0.000594144000000,0.001054391000000,0.000073849000000,0.000662095000000,0.001023181000000,0.000072663000000,0.000203823000000,0.000203034000000,0.000150095000000,0.000210935000000,0.000666046000000 +0.000249651000000,0.000069108000000,0.000047379000000,0.000224367000000,0.000679083000000,0.001103773000000,0.000069503000000,0.000590589000000,0.001053206000000,0.000057651000000,0.000275330000000,0.000224367000000,0.000082145000000,0.000246885000000,0.000636021000000 +0.000244120000000,0.000074244000000,0.000047379000000,0.000215676000000,0.000586244000000,0.001114835000000,0.000105454000000,0.000586243000000,0.001038193000000,0.000055281000000,0.000188811000000,0.000205403000000,0.000079380000000,0.000210539000000,0.000591379000000 +0.000284416000000,0.000070688000000,0.000046985000000,0.000250046000000,0.000591379000000,0.001189897000000,0.000069503000000,0.000540416000000,0.001025157000000,0.000055280000000,0.000204218000000,0.000182885000000,0.000078589000000,0.000211330000000,0.000673156000000 +0.000238985000000,0.000073059000000,0.000047379000000,0.000213700000000,0.000557799000000,0.001049255000000,0.000069898000000,0.000718984000000,0.001032267000000,0.000056071000000,0.000205404000000,0.000205008000000,0.000078985000000,0.000284416000000,0.000640762000000 +0.000243725000000,0.000068318000000,0.000046589000000,0.000214095000000,0.000605601000000,0.001050836000000,0.000068713000000,0.000570836000000,0.001066638000000,0.000055675000000,0.000222787000000,0.000259527000000,0.000078589000000,0.000209355000000,0.000592169000000 +0.000245305000000,0.000069108000000,0.000046984000000,0.000216071000000,0.000628910000000,0.001029107000000,0.000069898000000,0.000534885000000,0.001091132000000,0.000054886000000,0.000204614000000,0.000219626000000,0.000078985000000,0.000209355000000,0.000677502000000 +0.000284021000000,0.000071478000000,0.000047774000000,0.000276910000000,0.000552663000000,0.001042934000000,0.000068713000000,0.000574391000000,0.001456563000000,0.000056071000000,0.000185256000000,0.000203429000000,0.000078984000000,0.000249651000000,0.000590588000000 +0.000248861000000,0.000068713000000,0.000046590000000,0.000213700000000,0.000600465000000,0.001029502000000,0.000069503000000,0.000539626000000,0.001068613000000,0.000055280000000,0.000203429000000,0.000206984000000,0.000078985000000,0.000211330000000,0.000622194000000 +0.000247676000000,0.000072268000000,0.000046589000000,0.000221206000000,0.000558194000000,0.001042934000000,0.000069898000000,0.000574391000000,0.001058736000000,0.000056466000000,0.000203429000000,0.000205403000000,0.000080960000000,0.000209354000000,0.000636021000000 +0.000243725000000,0.000072268000000,0.000046590000000,0.000219627000000,0.000593750000000,0.001161848000000,0.000069898000000,0.000540416000000,0.001066243000000,0.000055280000000,0.000253997000000,0.000258342000000,0.000097947000000,0.000245305000000,0.000585848000000 +0.000295478000000,0.000069898000000,0.000047379000000,0.000253601000000,0.000638786000000,0.001043725000000,0.000069503000000,0.000572416000000,0.001035033000000,0.000055676000000,0.000207774000000,0.000205009000000,0.000094787000000,0.000213701000000,0.000671576000000 +0.000248070000000,0.000105059000000,0.000047379000000,0.000234243000000,0.000557008000000,0.001029107000000,0.000069503000000,0.000661304000000,0.001063082000000,0.000054886000000,0.000253996000000,0.000203034000000,0.000078985000000,0.000210540000000,0.000631675000000 +0.000244911000000,0.000069108000000,0.000047775000000,0.000214491000000,0.000589009000000,0.001042935000000,0.000069108000000,0.000578342000000,0.001427329000000,0.000055280000000,0.000191181000000,0.000203034000000,0.000078589000000,0.000245700000000,0.000591379000000 +0.000243725000000,0.000071873000000,0.000082935000000,0.000221601000000,0.000553848000000,0.001073749000000,0.000069108000000,0.000621403000000,0.001074144000000,0.000101898000000,0.000221996000000,0.000250441000000,0.000078985000000,0.000210935000000,0.000662490000000 +0.000571231000000,0.000068713000000,0.000046590000000,0.000219231000000,0.000589008000000,0.001110490000000,0.000140218000000,0.000545156000000,0.001059132000000,0.000056070000000,0.000203428000000,0.000206589000000,0.000078984000000,0.000211329000000,0.000654589000000 +0.000275725000000,0.000069108000000,0.000047379000000,0.000238984000000,0.000591774000000,0.001029106000000,0.000069107000000,0.000574787000000,0.001087181000000,0.000054491000000,0.000202244000000,0.000186046000000,0.000079775000000,0.000247280000000,0.000611922000000 +0.000278095000000,0.000069503000000,0.000048169000000,0.000224762000000,0.000568070000000,0.001063082000000,0.000073848000000,0.000626934000000,0.001491724000000,0.000056466000000,0.000184466000000,0.000183676000000,0.000099133000000,0.000209355000000,0.000671181000000 +0.000238984000000,0.000068318000000,0.000046984000000,0.000220021000000,0.000589009000000,0.001062292000000,0.000072269000000,0.000538045000000,0.001105354000000,0.000055280000000,0.000205799000000,0.000217651000000,0.000109404000000,0.000208960000000,0.000591379000000 +0.000247676000000,0.000069503000000,0.000046984000000,0.000214491000000,0.000562145000000,0.001063477000000,0.000069898000000,0.000570441000000,0.001017255000000,0.000056466000000,0.000265848000000,0.000188811000000,0.000079775000000,0.000245701000000,0.000661305000000 +0.000302194000000,0.000069898000000,0.000048169000000,0.000250836000000,0.000643527000000,0.001029502000000,0.000071873000000,0.000534885000000,0.001020021000000,0.000056465000000,0.000205404000000,0.000182491000000,0.000079379000000,0.000209749000000,0.000670391000000 +0.000318787000000,0.000069108000000,0.000047774000000,0.000222391000000,0.000723725000000,0.001252317000000,0.000070292000000,0.000688169000000,0.001048860000000,0.000055281000000,0.000205799000000,0.000202639000000,0.000150491000000,0.000263478000000,0.000591774000000 +0.000244120000000,0.000069108000000,0.000046985000000,0.000219231000000,0.000631675000000,0.001046884000000,0.000069503000000,0.000625750000000,0.001052811000000,0.000075428000000,0.000186441000000,0.000188811000000,0.000079775000000,0.000285996000000,0.000707922000000 +0.000248466000000,0.000069108000000,0.000046984000000,0.000219626000000,0.000626144000000,0.001090736000000,0.000069898000000,0.000534490000000,0.001054786000000,0.000058441000000,0.000218046000000,0.000353156000000,0.000078984000000,0.000212515000000,0.001259428000000 +0.000247280000000,0.000071084000000,0.000046984000000,0.000255972000000,0.000590984000000,0.001029107000000,0.000069108000000,0.000626539000000,0.001018045000000,0.000056071000000,0.000186046000000,0.000325503000000,0.000078984000000,0.000213305000000,0.001152366000000 +0.000297453000000,0.000086095000000,0.000046985000000,0.000214886000000,0.000554243000000,0.001078490000000,0.000069503000000,0.000538440000000,0.001016070000000,0.000055675000000,0.000202638000000,0.000204219000000,0.000079379000000,0.000286786000000,0.000668020000000 +0.000250045000000,0.000068713000000,0.000046589000000,0.000225553000000,0.000623774000000,0.001029107000000,0.000068713000000,0.000625355000000,0.001072169000000,0.000055676000000,0.000206984000000,0.000287972000000,0.000084515000000,0.000210144000000,0.000682638000000 +0.000248070000000,0.000069898000000,0.000046590000000,0.000219231000000,0.000561749000000,0.001142094000000,0.000112960000000,0.000671971000000,0.001021601000000,0.000055281000000,0.000280466000000,0.000181305000000,0.000078984000000,0.000213305000000,0.000690144000000 +0.000301404000000,0.000068712000000,0.000046984000000,0.000254391000000,0.000634836000000,0.001115230000000,0.000081750000000,0.000951280000000,0.001037008000000,0.000071083000000,0.000202243000000,0.000180120000000,0.000078984000000,0.000245700000000,0.000642342000000 +0.000248465000000,0.000071478000000,0.000046984000000,0.000229503000000,0.000616268000000,0.001042934000000,0.000068713000000,0.000540021000000,0.001023576000000,0.000055675000000,0.000205009000000,0.000204614000000,0.000078984000000,0.000210540000000,0.000627330000000 +0.000244120000000,0.000071478000000,0.000046984000000,0.000267033000000,0.000566886000000,0.001063873000000,0.000068713000000,0.000580712000000,0.001055971000000,0.000056071000000,0.000205404000000,0.000183676000000,0.000078589000000,0.000215281000000,0.000592169000000 +0.000250046000000,0.000069108000000,0.000084910000000,0.000250441000000,0.000628119000000,0.001043329000000,0.000069503000000,0.000538045000000,0.001036613000000,0.000055280000000,0.000183281000000,0.000237404000000,0.000078984000000,0.000252416000000,0.000664465000000 +0.000279281000000,0.000069503000000,0.000046590000000,0.000257947000000,0.000557798000000,0.001063872000000,0.000069108000000,0.000574787000000,0.001025552000000,0.000054885000000,0.000306935000000,0.000182490000000,0.000094787000000,0.000208960000000,0.000630490000000 +0.000265848000000,0.000069503000000,0.000046589000000,0.000220811000000,0.000633255000000,0.001049651000000,0.000071873000000,0.000549502000000,0.001048070000000,0.000054886000000,0.000199083000000,0.000206194000000,0.000078984000000,0.000208169000000,0.000599675000000 +0.000366984000000,0.000068712000000,0.000047380000000,0.000221206000000,0.000644713000000,0.001416662000000,0.000068712000000,0.000573602000000,0.001010934000000,0.000056466000000,0.000187626000000,0.000186046000000,0.000078590000000,0.000351577000000,0.000627330000000 +0.000317206000000,0.000069502000000,0.000046194000000,0.000213701000000,0.000554638000000,0.001042934000000,0.000069502000000,0.000574786000000,0.001149601000000,0.000056071000000,0.000184860000000,0.000231873000000,0.000078589000000,0.000213305000000,0.000674342000000 +0.000250046000000,0.000069502000000,0.000046589000000,0.000259133000000,0.000611132000000,0.001029107000000,0.000069107000000,0.000542787000000,0.001024366000000,0.000055281000000,0.000368564000000,0.000203428000000,0.000079380000000,0.000210935000000,0.000598885000000 +0.000249256000000,0.000137848000000,0.000046985000000,0.000219626000000,0.000558984000000,0.001043329000000,0.000069502000000,0.000570440000000,0.001021206000000,0.000055280000000,0.000341305000000,0.000203823000000,0.000080169000000,0.000209355000000,0.000627725000000 +0.000244910000000,0.000087280000000,0.000046589000000,0.000214885000000,0.000632465000000,0.001042145000000,0.000075428000000,0.000536466000000,0.001065453000000,0.000054095000000,0.000204218000000,0.000203428000000,0.000078984000000,0.000212910000000,0.000636021000000 +0.000281650000000,0.000069108000000,0.000046985000000,0.000218046000000,0.000623378000000,0.001182391000000,0.000125601000000,0.000574786000000,0.001018835000000,0.000055676000000,0.000221601000000,0.000180910000000,0.000081355000000,0.000211330000000,0.000637601000000 +0.000244910000000,0.000072269000000,0.000046984000000,0.000214886000000,0.000557798000000,0.001028712000000,0.000180515000000,0.000538836000000,0.001018045000000,0.000055675000000,0.000202638000000,0.000254392000000,0.000078984000000,0.000210935000000,0.000658144000000 +0.000249255000000,0.000069108000000,0.000046984000000,0.000263478000000,0.000629304000000,0.001043330000000,0.000205404000000,0.000577157000000,0.001037403000000,0.000055676000000,0.000203429000000,0.000180515000000,0.000082144000000,0.000210540000000,0.000658540000000 +0.000248070000000,0.000074244000000,0.000047380000000,0.000214885000000,0.000646292000000,0.001029107000000,0.000088071000000,0.000597305000000,0.001004218000000,0.000126392000000,0.000186046000000,0.000182885000000,0.000078589000000,0.000209750000000,0.000621403000000 +0.000318787000000,0.000071478000000,0.000046984000000,0.000214095000000,0.000552662000000,0.001042934000000,0.000072663000000,0.000629700000000,0.001069008000000,0.000054885000000,0.000203033000000,0.000193158000000,0.000207774000000,0.000246095000000,0.000621799000000 +0.000247675000000,0.000073454000000,0.000046985000000,0.000224367000000,0.000628119000000,0.001028712000000,0.000068712000000,0.000608367000000,0.001071379000000,0.000054886000000,0.000218836000000,0.000193947000000,0.000199478000000,0.000209750000000,0.000631280000000 +0.000248070000000,0.000068713000000,0.000046589000000,0.000258342000000,0.000553058000000,0.001099033000000,0.000069897000000,0.000538836000000,0.001020020000000,0.000055281000000,0.000204219000000,0.000219627000000,0.000093997000000,0.000210145000000,0.001091132000000 +0.000284021000000,0.000069108000000,0.000047379000000,0.000221602000000,0.000992761000000,0.001028316000000,0.000068712000000,0.000586638000000,0.001024367000000,0.000055675000000,0.000188416000000,0.000203428000000,0.000078589000000,0.000249651000000,0.000663280000000 +0.000246095000000,0.000071083000000,0.000046194000000,0.000224762000000,0.000588614000000,0.001049255000000,0.000105058000000,0.000570046000000,0.001379526000000,0.000056466000000,0.000183280000000,0.000205009000000,0.000078985000000,0.000210145000000,0.000636811000000 +0.000241750000000,0.000069108000000,0.000046984000000,0.000214095000000,0.000553453000000,0.001029107000000,0.000069898000000,0.000549502000000,0.001065058000000,0.000054885000000,0.000238985000000,0.000184861000000,0.000078589000000,0.000208960000000,0.000630490000000 +0.000247675000000,0.000107824000000,0.000082540000000,0.000261108000000,0.000607182000000,0.001043724000000,0.000069503000000,0.000572021000000,0.001081255000000,0.000054886000000,0.000203429000000,0.000239774000000,0.000080959000000,0.000245305000000,0.000635625000000 +0.000323923000000,0.000071873000000,0.000046195000000,0.000215675000000,0.000588614000000,0.001065057000000,0.000068712000000,0.000542787000000,0.001064267000000,0.000056466000000,0.000184861000000,0.000181305000000,0.000078590000000,0.000213305000000,0.000628120000000 +0.000250836000000,0.000069898000000,0.000047379000000,0.000214095000000,0.000561749000000,0.001379131000000,0.000069107000000,0.000575181000000,0.001063478000000,0.000055676000000,0.000188416000000,0.000204614000000,0.000115330000000,0.000209355000000,0.000626935000000 +0.000238984000000,0.000069503000000,0.000046194000000,0.000214096000000,0.000593355000000,0.001029107000000,0.000069503000000,0.000542787000000,0.001044909000000,0.000056071000000,0.000203429000000,0.000203429000000,0.000079379000000,0.000248070000000,0.000635626000000 +0.000245305000000,0.000069108000000,0.000046984000000,0.000217650000000,0.000557009000000,0.001043329000000,0.000069502000000,0.000590984000000,0.001060712000000,0.000055280000000,0.000240960000000,0.000185651000000,0.000078589000000,0.000211330000000,0.000634440000000 +0.000280071000000,0.000071478000000,0.000046589000000,0.000378046000000,0.000636416000000,0.001029502000000,0.000069107000000,0.000591774000000,0.001058737000000,0.000056071000000,0.000206194000000,0.000240169000000,0.000078984000000,0.000211330000000,0.000586638000000 +0.000243725000000,0.000069108000000,0.000046985000000,0.000214490000000,0.000626144000000,0.001176860000000,0.000068712000000,0.000534490000000,0.001100218000000,0.000056070000000,0.000184070000000,0.000203034000000,0.000078984000000,0.000248860000000,0.000626540000000 +0.000240564000000,0.000069108000000,0.000046589000000,0.000221207000000,0.000554244000000,0.001074539000000,0.000069108000000,0.000570836000000,0.001060712000000,0.000091231000000,0.000203428000000,0.000202244000000,0.000079380000000,0.000210540000000,0.000622194000000 +0.000244515000000,0.000068713000000,0.000047380000000,0.000261503000000,0.000599675000000,0.001056761000000,0.000073058000000,0.000536070000000,0.001050045000000,0.000055281000000,0.000225552000000,0.000256367000000,0.000078984000000,0.000211330000000,0.000587033000000 +0.000317206000000,0.000069108000000,0.000046984000000,0.000224367000000,0.000553058000000,0.001028712000000,0.000072269000000,0.000722539000000,0.001057157000000,0.000056071000000,0.000203034000000,0.000255972000000,0.000078590000000,0.000247281000000,0.000622194000000 +0.000247676000000,0.000068713000000,0.000047379000000,0.000219627000000,0.000598490000000,0.001042539000000,0.000105453000000,0.000986835000000,0.001108514000000,0.000056465000000,0.000183281000000,0.000193552000000,0.000079379000000,0.000209750000000,0.000586243000000 +0.000239379000000,0.000069108000000,0.000046590000000,0.000220021000000,0.000592169000000,0.001067823000000,0.000071478000000,0.001047280000000,0.001221107000000,0.000057651000000,0.000184071000000,0.000205404000000,0.000078589000000,0.000211330000000,0.000666835000000 +0.000285206000000,0.000105059000000,0.000046589000000,0.000214490000000,0.000556613000000,0.001050045000000,0.000070688000000,0.000916514000000,0.001279576000000,0.000055676000000,0.000203034000000,0.000180910000000,0.000078589000000,0.000300613000000,0.000663280000000 +0.000245305000000,0.000068713000000,0.000046589000000,0.000307330000000,0.000589009000000,0.001029107000000,0.000069108000000,0.000638786000000,0.001025156000000,0.000055676000000,0.000220416000000,0.000241354000000,0.000236613000000,0.000212910000000,0.000591774000000 +0.000249651000000,0.000069503000000,0.000046589000000,0.000221601000000,0.000577157000000,0.001043329000000,0.000070293000000,0.000675527000000,0.001025947000000,0.000054885000000,0.000203824000000,0.000204614000000,0.000078984000000,0.000211330000000,0.000648267000000 +0.000239379000000,0.000071478000000,0.000047379000000,0.000225157000000,0.000609552000000,0.001087181000000,0.000069108000000,0.000690144000000,0.001021601000000,0.000054886000000,0.000205009000000,0.000184466000000,0.000078985000000,0.000338935000000,0.000630095000000 +0.000302984000000,0.000069108000000,0.000046985000000,0.000219626000000,0.000636811000000,0.001079675000000,0.000069503000000,0.000673551000000,0.001031082000000,0.000056071000000,0.000193947000000,0.000184071000000,0.000079379000000,0.000210935000000,0.000598886000000 +0.000592960000000,0.000069108000000,0.000101503000000,0.000288367000000,0.000553453000000,0.001029107000000,0.000069503000000,0.000578737000000,0.001020811000000,0.000054885000000,0.000222787000000,0.000202638000000,0.000083725000000,0.000211330000000,0.000678292000000 +0.000361058000000,0.000069503000000,0.000046984000000,0.000216071000000,0.000591379000000,0.001042539000000,0.000069502000000,0.000603231000000,0.001068218000000,0.000055281000000,0.000206589000000,0.000268614000000,0.000078984000000,0.000246885000000,0.000590589000000 +0.000253996000000,0.000069503000000,0.000049355000000,0.000223972000000,0.000558194000000,0.001029502000000,0.000069107000000,0.000566490000000,0.001017255000000,0.000060022000000,0.000186046000000,0.000182095000000,0.000078985000000,0.000210144000000,0.000636021000000 +0.000250441000000,0.000071479000000,0.000046985000000,0.000214490000000,0.000594935000000,0.001155922000000,0.000069898000000,0.000581108000000,0.001057156000000,0.000054885000000,0.000206194000000,0.000203823000000,0.000078589000000,0.000209750000000,0.000641156000000 +0.000248070000000,0.000072268000000,0.000046589000000,0.000305354000000,0.000593354000000,0.001045305000000,0.000069503000000,0.000618638000000,0.001046489000000,0.000074243000000,0.000250046000000,0.000205008000000,0.000079380000000,0.000295873000000,0.000586244000000 +0.000274935000000,0.000069108000000,0.000046984000000,0.000214491000000,0.000552663000000,0.001057157000000,0.000068713000000,0.000538441000000,0.001018045000000,0.000055675000000,0.000237799000000,0.000219626000000,0.000114935000000,0.000208565000000,0.000626934000000 +0.000243725000000,0.000069898000000,0.000046194000000,0.000221602000000,0.000594144000000,0.001029107000000,0.000121256000000,0.000575181000000,0.001072169000000,0.000056071000000,0.000186046000000,0.000195133000000,0.000078589000000,0.000208959000000,0.000627330000000 +0.000243725000000,0.000088861000000,0.000047774000000,0.000219626000000,0.000558194000000,0.001091922000000,0.000071873000000,0.000534095000000,0.001058737000000,0.000056466000000,0.000181305000000,0.000201453000000,0.000079380000000,0.000247281000000,0.000587428000000 +0.000238984000000,0.000085305000000,0.000047380000000,0.000254392000000,0.000594145000000,0.001064267000000,0.000069107000000,0.000574787000000,0.001012119000000,0.000055676000000,0.000205008000000,0.000183675000000,0.000078984000000,0.000210540000000,0.000622194000000 +0.000285206000000,0.000069898000000,0.000046984000000,0.000223576000000,0.000552268000000,0.001097058000000,0.000069502000000,0.000543972000000,0.001013305000000,0.000058441000000,0.000220811000000,0.000183280000000,0.000078589000000,0.000214885000000,0.000585848000000 +0.000239379000000,0.000069503000000,0.000046589000000,0.000214491000000,0.000822885000000,0.001080861000000,0.000069502000000,0.000585848000000,0.001020810000000,0.000055676000000,0.000205799000000,0.000238194000000,0.000078984000000,0.000290737000000,0.001123527000000 +0.000238985000000,0.000069503000000,0.000046985000000,0.000218441000000,0.000947725000000,0.001378736000000,0.000070293000000,0.000576762000000,0.001026342000000,0.000055280000000,0.000202638000000,0.000206984000000,0.000079774000000,0.000212515000000,0.000590984000000 +0.000244910000000,0.000072269000000,0.000046984000000,0.000291133000000,0.000639972000000,0.001029107000000,0.000075824000000,0.000538440000000,0.001039774000000,0.000056466000000,0.000203033000000,0.000203823000000,0.000078985000000,0.000208959000000,0.000641552000000 +0.000284021000000,0.000069503000000,0.000046590000000,0.000216465000000,0.000553058000000,0.001042539000000,0.000069503000000,0.000623774000000,0.001135773000000,0.000054886000000,0.000190786000000,0.000203033000000,0.000082145000000,0.000247675000000,0.000599676000000 +0.000243725000000,0.000071873000000,0.000046984000000,0.000220417000000,0.000625749000000,0.001028712000000,0.000073848000000,0.000534885000000,0.001096268000000,0.000054885000000,0.000286392000000,0.000239379000000,0.000078984000000,0.000214096000000,0.000630095000000 +0.000249651000000,0.000069108000000,0.000047379000000,0.000221601000000,0.000643527000000,0.001043724000000,0.000069503000000,0.000752564000000,0.001016860000000,0.000056071000000,0.000203034000000,0.000202244000000,0.000081749000000,0.000211725000000,0.000683428000000 +0.000244120000000,0.000074244000000,0.000046985000000,0.000256367000000,0.000552663000000,0.001038983000000,0.000069503000000,0.000609552000000,0.001037403000000,0.000054886000000,0.000186836000000,0.000204219000000,0.000120070000000,0.000260318000000,0.000591774000000 +0.000285602000000,0.000071083000000,0.000088861000000,0.000214490000000,0.000598095000000,0.001056366000000,0.000089256000000,0.000536070000000,0.001039379000000,0.000056070000000,0.000187231000000,0.000202639000000,0.000078589000000,0.000210935000000,0.000626539000000 +0.000244120000000,0.000073454000000,0.000047379000000,0.000214886000000,0.000557008000000,0.001042144000000,0.000069897000000,0.000624169000000,0.001029502000000,0.000055281000000,0.000220811000000,0.000204219000000,0.000078984000000,0.000208564000000,0.000669997000000 +0.000246490000000,0.000069108000000,0.000046984000000,0.000214490000000,0.000651034000000,0.001042144000000,0.000069107000000,0.000573601000000,0.001065058000000,0.000092021000000,0.000207774000000,0.000224762000000,0.000079379000000,0.000281256000000,0.000591774000000 +0.000286787000000,0.000104663000000,0.000046985000000,0.000310490000000,0.000602045000000,0.001064663000000,0.000069503000000,0.000963132000000,0.001019230000000,0.000055280000000,0.000184861000000,0.000180515000000,0.000078590000000,0.000210934000000,0.000814193000000 +0.000238984000000,0.000070688000000,0.000047774000000,0.000229503000000,0.000556218000000,0.001042934000000,0.000069108000000,0.000641552000000,0.001044515000000,0.000056071000000,0.000203034000000,0.000205009000000,0.000078589000000,0.000208564000000,0.000711873000000 +0.000247676000000,0.000069108000000,0.000047379000000,0.000214885000000,0.000588219000000,0.001085995000000,0.000069898000000,0.000606391000000,0.001027526000000,0.000055676000000,0.000205009000000,0.000202639000000,0.000078985000000,0.000304565000000,0.000586638000000 +0.000248070000000,0.000071873000000,0.000046985000000,0.000214886000000,0.000553453000000,0.001043329000000,0.000069108000000,0.000541996000000,0.001061502000000,0.000055280000000,0.000224761000000,0.000240564000000,0.000080959000000,0.000212515000000,0.000672762000000 +0.000274934000000,0.000071083000000,0.000046984000000,0.000221206000000,0.000589009000000,0.001029107000000,0.000069503000000,0.000643527000000,0.001021600000000,0.000056466000000,0.000183280000000,0.000183675000000,0.000078984000000,0.000210145000000,0.000635626000000 +0.000257156000000,0.000069898000000,0.000046589000000,0.000269009000000,0.000633256000000,0.001043724000000,0.000069108000000,0.000543972000000,0.001013305000000,0.000054885000000,0.000202638000000,0.000184465000000,0.000079380000000,0.000209354000000,0.000585453000000 +0.000243724000000,0.000069108000000,0.000046984000000,0.000215675000000,0.000556218000000,0.001089156000000,0.000069503000000,0.000590194000000,0.001040564000000,0.000054885000000,0.000181306000000,0.000184070000000,0.000078984000000,0.000213700000000,0.000925206000000 +0.000244120000000,0.000068713000000,0.000046984000000,0.000214096000000,0.000592959000000,0.001043725000000,0.000069108000000,0.000609947000000,0.001111674000000,0.000058441000000,0.000224367000000,0.000203823000000,0.000114935000000,0.000212910000000,0.000662095000000 +0.000280070000000,0.000071478000000,0.000047380000000,0.000223577000000,0.000553058000000,0.001029897000000,0.000069503000000,0.000544367000000,0.001016860000000,0.000055281000000,0.000218836000000,0.000240564000000,0.000078984000000,0.000278886000000,0.000591379000000 +0.000243725000000,0.000069108000000,0.000047775000000,0.000285601000000,0.000592565000000,0.001154341000000,0.000069503000000,0.000614687000000,0.001032662000000,0.000056466000000,0.000182491000000,0.000204218000000,0.000079380000000,0.000211330000000,0.000654589000000 +0.000250441000000,0.000068318000000,0.000046589000000,0.000214885000000,0.000593749000000,0.001045304000000,0.000116120000000,0.000535676000000,0.001016070000000,0.000055675000000,0.000185651000000,0.000205008000000,0.000078984000000,0.000213700000000,0.000630490000000 +0.000252022000000,0.000068713000000,0.000046589000000,0.000214491000000,0.000555824000000,0.001043724000000,0.000073058000000,0.000595724000000,0.001024762000000,0.000055676000000,0.000202639000000,0.000183280000000,0.000078985000000,0.000212120000000,0.000598490000000 +0.000280070000000,0.000135478000000,0.000049355000000,0.000216465000000,0.000589799000000,0.001028712000000,0.000071873000000,0.000569650000000,0.001339625000000,0.000055280000000,0.000253206000000,0.000204613000000,0.000078589000000,0.000212515000000,0.000627329000000 +0.000238985000000,0.000083725000000,0.000049750000000,0.000314046000000,0.000554638000000,0.001042934000000,0.000069503000000,0.000553848000000,0.002035329000000,0.000092021000000,0.000204613000000,0.000276515000000,0.000078590000000,0.000209749000000,0.000627330000000 +0.000250441000000,0.000069898000000,0.000081355000000,0.000224367000000,0.000594540000000,0.001029107000000,0.000073058000000,0.000585453000000,0.001257057000000,0.000054886000000,0.000203428000000,0.000186046000000,0.000078194000000,0.000263873000000,0.000598885000000 +0.000246490000000,0.000069108000000,0.000051725000000,0.000219626000000,0.000594540000000,0.001104958000000,0.000069503000000,0.000539626000000,0.001061107000000,0.000055676000000,0.000202638000000,0.000203824000000,0.000078985000000,0.000212120000000,0.000628515000000 +0.000298244000000,0.000068318000000,0.000060811000000,0.000221602000000,0.000558194000000,0.001035428000000,0.000069502000000,0.000789304000000,0.001021601000000,0.000056465000000,0.000224366000000,0.000193552000000,0.000079774000000,0.000249256000000,0.000586638000000 +0.000250046000000,0.000069503000000,0.000046985000000,0.000381996000000,0.000588613000000,0.001078490000000,0.000069107000000,0.000607181000000,0.001210045000000,0.000056466000000,0.000185651000000,0.000227132000000,0.000078984000000,0.000209354000000,0.000626144000000 +0.000238984000000,0.000071083000000,0.000046984000000,0.000238589000000,0.000558193000000,0.001029107000000,0.000069502000000,0.000534490000000,0.001599576000000,0.000056070000000,0.000203034000000,0.000191181000000,0.000115725000000,0.000208960000000,0.000622194000000 +0.000261503000000,0.000069108000000,0.000049354000000,0.000215281000000,0.000594144000000,0.001091526000000,0.000069503000000,0.000589009000000,0.001026342000000,0.000054491000000,0.000184070000000,0.000181700000000,0.000079380000000,0.000210145000000,0.000587428000000 +0.000248071000000,0.000069108000000,0.000046589000000,0.000223181000000,0.000557799000000,0.001028712000000,0.000069898000000,0.000538836000000,0.001019230000000,0.000055676000000,0.000203824000000,0.000204614000000,0.000084120000000,0.000210540000000,0.000635626000000 +0.000248071000000,0.000069503000000,0.000046589000000,0.000250441000000,0.000650243000000,0.001114440000000,0.000069108000000,0.000681848000000,0.001013305000000,0.000056070000000,0.000241749000000,0.000191181000000,0.000078985000000,0.000208960000000,0.000955626000000 +0.000246885000000,0.000069108000000,0.000046589000000,0.000221997000000,0.000721354000000,0.001029107000000,0.000105058000000,0.000696070000000,0.001029107000000,0.000055281000000,0.000203429000000,0.000238589000000,0.000079379000000,0.000244515000000,0.000669996000000 +0.000285207000000,0.000071083000000,0.000046194000000,0.000219231000000,0.000569256000000,0.001043329000000,0.000070293000000,0.000574786000000,0.001023181000000,0.000055676000000,0.000204219000000,0.000204219000000,0.000078589000000,0.000214885000000,0.000591774000000 +0.000246095000000,0.000107824000000,0.000046984000000,0.000218046000000,0.000624959000000,0.001029502000000,0.000069503000000,0.000572416000000,0.001013305000000,0.000056861000000,0.000184861000000,0.000185256000000,0.000078984000000,0.000208170000000,0.000627724000000 +0.000249651000000,0.000069108000000,0.000046985000000,0.000262688000000,0.000636811000000,0.001043724000000,0.000069503000000,0.000538836000000,0.001016070000000,0.000054886000000,0.000186046000000,0.000186441000000,0.000079774000000,0.000229503000000,0.000599675000000 +0.000248466000000,0.000069898000000,0.000046589000000,0.000216070000000,0.000553453000000,0.001029107000000,0.000069898000000,0.000577552000000,0.001070588000000,0.000055675000000,0.000240170000000,0.000296663000000,0.000078590000000,0.000422688000000,0.000630490000000 +0.000312465000000,0.000069107000000,0.000046589000000,0.000219626000000,0.000591379000000,0.001081255000000,0.000071083000000,0.000570441000000,0.001063083000000,0.000055676000000,0.000183280000000,0.000257552000000,0.000078984000000,0.000249256000000,0.000634836000000 +0.000248071000000,0.000069107000000,0.000046984000000,0.000214096000000,0.000552663000000,0.001154736000000,0.000069503000000,0.000542786000000,0.001072564000000,0.000120465000000,0.000184465000000,0.000204613000000,0.000078590000000,0.000209355000000,0.000591774000000 +0.000247676000000,0.000069897000000,0.000063577000000,0.000250045000000,0.000645898000000,0.001042934000000,0.000068713000000,0.000577947000000,0.001052020000000,0.000069898000000,0.000187626000000,0.000193157000000,0.000113354000000,0.000208169000000,0.000626935000000 +0.000250046000000,0.000069108000000,0.000114540000000,0.000220022000000,0.000593749000000,0.001034638000000,0.000069108000000,0.000536071000000,0.001112465000000,0.000056071000000,0.000220812000000,0.000277700000000,0.000094391000000,0.000246491000000,0.000643132000000 +0.000297453000000,0.000069107000000,0.000046589000000,0.000214095000000,0.000557403000000,0.001078490000000,0.000069503000000,0.000570836000000,0.001311576000000,0.000056071000000,0.000181305000000,0.000196712000000,0.000079379000000,0.000211725000000,0.000592564000000 +0.000269404000000,0.000072268000000,0.000047774000000,0.000227527000000,0.000636811000000,0.001028712000000,0.000075429000000,0.000547922000000,0.001047675000000,0.000056465000000,0.000203034000000,0.000204219000000,0.000078985000000,0.000208564000000,0.000670391000000 +0.000244515000000,0.000069108000000,0.000046984000000,0.000218441000000,0.000554638000000,0.001079280000000,0.000069898000000,0.000611132000000,0.001028317000000,0.000055676000000,0.000203429000000,0.000191577000000,0.000081750000000,0.000290737000000,0.000590984000000 +0.000284417000000,0.000072269000000,0.000046589000000,0.000250441000000,0.000641947000000,0.001029107000000,0.000110194000000,0.000571626000000,0.001072564000000,0.000054490000000,0.000183281000000,0.000240169000000,0.000078984000000,0.000214490000000,0.000622194000000 +0.000257947000000,0.000069108000000,0.000047774000000,0.000221207000000,0.000820515000000,0.001328168000000,0.000069108000000,0.000542786000000,0.001046490000000,0.000055676000000,0.000219626000000,0.000222787000000,0.000081355000000,0.000210540000000,0.000623379000000 +0.000243725000000,0.000110194000000,0.000048170000000,0.000217651000000,0.000693700000000,0.001028317000000,0.000069898000000,0.000583477000000,0.001031872000000,0.000056466000000,0.000186441000000,0.000205799000000,0.000078195000000,0.000262688000000,0.000586244000000 +0.000250441000000,0.000070688000000,0.000046985000000,0.000214886000000,0.000562539000000,0.001043724000000,0.000069503000000,0.000535281000000,0.001157502000000,0.000054885000000,0.000203428000000,0.000203033000000,0.000078984000000,0.000210145000000,0.000750193000000 +0.000274935000000,0.000094786000000,0.000046589000000,0.000250441000000,0.000592169000000,0.001077304000000,0.000070688000000,0.000570440000000,0.001008958000000,0.000055676000000,0.000184465000000,0.000205799000000,0.000078590000000,0.000213305000000,0.000631281000000 +0.000244120000000,0.000086095000000,0.000046195000000,0.000214885000000,0.000557009000000,0.001043329000000,0.000109009000000,0.000534095000000,0.001054390000000,0.000055280000000,0.000187626000000,0.000229898000000,0.000078589000000,0.000245305000000,0.000590984000000 +0.000248466000000,0.000068713000000,0.000046984000000,0.000221206000000,0.000602440000000,0.001085996000000,0.000073058000000,0.000574391000000,0.001024761000000,0.000056466000000,0.000329848000000,0.000204614000000,0.000114935000000,0.000211725000000,0.000627724000000 +0.000245700000000,0.000071478000000,0.000046984000000,0.000224367000000,0.000592959000000,0.001043330000000,0.000082935000000,0.000574391000000,0.001029107000000,0.000074639000000,0.000202243000000,0.000187231000000,0.000078589000000,0.000213700000000,0.000728465000000 +0.000276120000000,0.000069107000000,0.000046984000000,0.000273750000000,0.000557404000000,0.001064663000000,0.000069897000000,0.000541207000000,0.001106934000000,0.000055281000000,0.000186045000000,0.000205404000000,0.000078984000000,0.000280860000000,0.000594144000000 +0.000248071000000,0.000072268000000,0.000046589000000,0.000219231000000,0.000643527000000,0.001043329000000,0.000069898000000,0.000575576000000,0.001068218000000,0.000054885000000,0.000181700000000,0.000261898000000,0.000080169000000,0.000210144000000,0.000683033000000 +0.000246885000000,0.000071873000000,0.000047380000000,0.000214095000000,0.000553849000000,0.001033847000000,0.000069503000000,0.000634836000000,0.001064268000000,0.000056071000000,0.000275725000000,0.000205009000000,0.000079380000000,0.000209749000000,0.000627725000000 +0.000246096000000,0.000069107000000,0.000046984000000,0.000223577000000,0.000596910000000,0.001043329000000,0.000069108000000,0.000576367000000,0.001048070000000,0.000054885000000,0.000205008000000,0.000184071000000,0.000078589000000,0.000248860000000,0.000590589000000 +0.000280860000000,0.000069503000000,0.000047774000000,0.000235033000000,0.000558589000000,0.001064663000000,0.000154441000000,0.000534490000000,0.001312366000000,0.000054490000000,0.000181305000000,0.000205404000000,0.000078985000000,0.000209750000000,0.000634835000000 +0.000248070000000,0.000068712000000,0.000066343000000,0.000224367000000,0.000575182000000,0.001515033000000,0.000068713000000,0.000577947000000,0.001710983000000,0.000056071000000,0.000202244000000,0.000189206000000,0.000078589000000,0.000210540000000,0.000591774000000 +0.000238589000000,0.000107033000000,0.000136268000000,0.000223971000000,0.000593749000000,0.001028712000000,0.000069503000000,0.000571626000000,0.001191083000000,0.000056071000000,0.000220021000000,0.000240565000000,0.000078195000000,0.000280071000000,0.000635625000000 +0.000238985000000,0.000069107000000,0.000095181000000,0.000224367000000,0.000553058000000,0.001339230000000,0.000069108000000,0.000547922000000,0.001026736000000,0.000055281000000,0.000206589000000,0.000183281000000,0.000079379000000,0.000210145000000,0.000670787000000 +0.000289947000000,0.000069503000000,0.000150885000000,0.000214491000000,0.000628514000000,0.001041354000000,0.000069503000000,0.000715823000000,0.001045699000000,0.000055676000000,0.000182885000000,0.000204614000000,0.000078985000000,0.000208960000000,0.000586243000000 +0.000254392000000,0.000069503000000,0.000049749000000,0.000255971000000,0.000558194000000,0.001062687000000,0.000074244000000,0.000544367000000,0.001050836000000,0.000055280000000,0.000203033000000,0.000204614000000,0.000115725000000,0.000293898000000,0.000623379000000 +0.000245305000000,0.000069108000000,0.000098737000000,0.000216071000000,0.000632860000000,0.001097848000000,0.000071873000000,0.000580712000000,0.001030292000000,0.000055281000000,0.000187231000000,0.000278490000000,0.000078985000000,0.000212120000000,0.000654193000000 +0.000259922000000,0.000069503000000,0.000141404000000,0.000221206000000,0.000599280000000,0.001044120000000,0.000069898000000,0.000648662000000,0.001090736000000,0.000056071000000,0.000221206000000,0.000203823000000,0.000078589000000,0.000225552000000,0.000600860000000 +0.000373306000000,0.000069898000000,0.000369749000000,0.000223972000000,0.000561749000000,0.001080465000000,0.000072663000000,0.000642341000000,0.001279576000000,0.000055280000000,0.000183280000000,0.000204218000000,0.000078194000000,0.000248071000000,0.000725700000000 +0.000247675000000,0.000068713000000,0.000067133000000,0.000299824000000,0.000589009000000,0.001056761000000,0.000070688000000,0.000579527000000,0.001044909000000,0.000056466000000,0.000186046000000,0.000190786000000,0.000078589000000,0.000208960000000,0.000997502000000 +0.000247281000000,0.000069108000000,0.000099528000000,0.000221206000000,0.000553848000000,0.001088762000000,0.000069107000000,0.000534490000000,0.001102194000000,0.000101502000000,0.000186836000000,0.000243725000000,0.000080170000000,0.000208565000000,0.000881749000000 +0.000315626000000,0.000069108000000,0.000082935000000,0.000218836000000,0.000589009000000,0.001061502000000,0.000069897000000,0.000570836000000,0.001079280000000,0.000055281000000,0.000205404000000,0.000202638000000,0.000078589000000,0.000248465000000,0.001029107000000 +0.000249256000000,0.000069898000000,0.000066342000000,0.000219231000000,0.000589799000000,0.001029107000000,0.000185651000000,0.000575181000000,0.001096267000000,0.000054885000000,0.000258737000000,0.000188416000000,0.000078984000000,0.000213700000000,0.000845009000000 +0.000248070000000,0.000069108000000,0.000051330000000,0.000285206000000,0.000554243000000,0.001043329000000,0.000083330000000,0.000534490000000,0.001044515000000,0.000056466000000,0.000184861000000,0.000203034000000,0.000079379000000,0.000211725000000,0.000712663000000 +0.000272959000000,0.000107034000000,0.000050540000000,0.000220022000000,0.000587823000000,0.001079674000000,0.000069503000000,0.000570835000000,0.001303674000000,0.000055676000000,0.000202639000000,0.000191182000000,0.000083330000000,0.000281651000000,0.000706342000000 +0.000263083000000,0.000086490000000,0.000050540000000,0.000223971000000,0.000561355000000,0.001042539000000,0.000069898000000,0.000534886000000,0.001048860000000,0.000055675000000,0.000186441000000,0.000296663000000,0.000078589000000,0.000212120000000,0.000749404000000 +0.000247676000000,0.000069108000000,0.000050935000000,0.000223182000000,0.000593354000000,0.001039379000000,0.000069898000000,0.000571231000000,0.001050440000000,0.000055281000000,0.000238984000000,0.000193157000000,0.000117306000000,0.000209355000000,0.000692515000000 +0.000244910000000,0.000071478000000,0.000085305000000,0.000275725000000,0.000576762000000,0.001043330000000,0.000070292000000,0.000534885000000,0.001062292000000,0.000055676000000,0.000203033000000,0.000186046000000,0.000120071000000,0.000258737000000,0.000653009000000 +0.000285996000000,0.000071873000000,0.000049354000000,0.000218441000000,0.000565305000000,0.001081255000000,0.000069503000000,0.000577947000000,0.001058341000000,0.000056071000000,0.000203033000000,0.000205404000000,0.000078589000000,0.000212120000000,0.000657354000000 +0.000245700000000,0.000069108000000,0.000050934000000,0.000225157000000,0.000647873000000,0.001042934000000,0.000069898000000,0.000573601000000,0.001051230000000,0.000056466000000,0.000203034000000,0.000242934000000,0.000078589000000,0.000209355000000,0.000662490000000 +0.000248070000000,0.000069108000000,0.000049355000000,0.000214885000000,0.000554638000000,0.001317107000000,0.000069108000000,0.000534490000000,0.001385058000000,0.000056071000000,0.000186046000000,0.000183280000000,0.000078589000000,0.000245305000000,0.000621799000000 +0.000249650000000,0.000069108000000,0.000050145000000,0.000259133000000,0.000590193000000,0.001075725000000,0.000072268000000,0.000649453000000,0.001094292000000,0.000055280000000,0.000224366000000,0.000203428000000,0.000078589000000,0.000210145000000,0.000669996000000 +0.000333008000000,0.000069503000000,0.000049750000000,0.000220416000000,0.000553058000000,0.001046095000000,0.000069108000000,0.000537256000000,0.001047675000000,0.000056466000000,0.000203033000000,0.000204614000000,0.000078984000000,0.000212515000000,0.000622194000000 +0.000247676000000,0.000069898000000,0.000049750000000,0.000219626000000,0.000724119000000,0.001078490000000,0.000139033000000,0.000613108000000,0.001075329000000,0.000054096000000,0.000203429000000,0.000180910000000,0.000078194000000,0.000432959000000,0.000621404000000 +0.000239379000000,0.000068712000000,0.000049749000000,0.000221206000000,0.000597700000000,0.001063872000000,0.000083330000000,0.000538835000000,0.001056366000000,0.000092022000000,0.000202639000000,0.000267824000000,0.000078984000000,0.000283231000000,0.000666835000000 +0.000245305000000,0.000068712000000,0.000116910000000,0.000224367000000,0.000557009000000,0.001110490000000,0.000069898000000,0.000593355000000,0.001085206000000,0.000056071000000,0.000296268000000,0.000205404000000,0.000079379000000,0.000225553000000,0.000626934000000 +0.000285601000000,0.000108614000000,0.000134688000000,0.000259923000000,0.000588613000000,0.001064268000000,0.000075824000000,0.000605601000000,0.001049255000000,0.000055281000000,0.000205009000000,0.000202638000000,0.000134688000000,0.000208960000000,0.000628120000000 +0.000246886000000,0.000069107000000,0.000138639000000,0.000221206000000,0.000592564000000,0.001078885000000,0.000068712000000,0.000538441000000,0.001098638000000,0.000055281000000,0.000183280000000,0.000206194000000,0.000112170000000,0.000209750000000,0.000715823000000 +0.000242539000000,0.000072268000000,0.000156416000000,0.000221206000000,0.000557404000000,0.001064268000000,0.000073453000000,0.000570441000000,0.001264959000000,0.000055280000000,0.000205009000000,0.000251231000000,0.000078984000000,0.000245305000000,0.000594540000000 +0.000275724000000,0.000068713000000,0.000088466000000,0.000224367000000,0.000627330000000,0.001078490000000,0.000069108000000,0.000543181000000,0.001038589000000,0.000055281000000,0.000244120000000,0.000180911000000,0.000081354000000,0.000210935000000,0.000643922000000 +0.000259922000000,0.000074244000000,0.000064367000000,0.000251626000000,0.000553058000000,0.001122341000000,0.000069107000000,0.000571231000000,0.001063082000000,0.000054886000000,0.000188811000000,0.000203428000000,0.000078589000000,0.000208565000000,0.000844613000000 +0.000244120000000,0.000071478000000,0.000086096000000,0.000220417000000,0.000590589000000,0.001444711000000,0.000069502000000,0.000538441000000,0.001048861000000,0.000054490000000,0.000187626000000,0.000205009000000,0.000078984000000,0.000266638000000,0.000767181000000 +0.000238589000000,0.000073454000000,0.000103478000000,0.000227922000000,0.000578342000000,0.001028712000000,0.000069502000000,0.000631675000000,0.001186736000000,0.000054885000000,0.000203428000000,0.000203824000000,0.000079380000000,0.000211725000000,0.000598885000000 +0.000284812000000,0.000069108000000,0.000047774000000,0.000219231000000,0.000628515000000,0.001042539000000,0.000068712000000,0.000587033000000,0.001058342000000,0.000058441000000,0.000206194000000,0.000600465000000,0.000078589000000,0.000209355000000,0.000727280000000 +0.000239379000000,0.000069503000000,0.000046985000000,0.000276515000000,0.000606786000000,0.001064662000000,0.000068712000000,0.000534490000000,0.001058737000000,0.000056466000000,0.000225947000000,0.000239774000000,0.000078589000000,0.000249256000000,0.000622984000000 +0.000320762000000,0.000071478000000,0.000047379000000,0.000216466000000,0.000552663000000,0.001042539000000,0.000084910000000,0.000582688000000,0.001045700000000,0.000056465000000,0.000203824000000,0.000261898000000,0.000078589000000,0.000209750000000,0.000590589000000 +0.000250836000000,0.000069108000000,0.000046984000000,0.000219626000000,0.000593749000000,0.001029107000000,0.000069898000000,0.000540416000000,0.001042539000000,0.000055676000000,0.000181306000000,0.000203823000000,0.000078589000000,0.000212120000000,0.000657354000000 +0.000336565000000,0.000071874000000,0.000046985000000,0.000219626000000,0.000594935000000,0.001044119000000,0.000069503000000,0.000575972000000,0.001076514000000,0.000055280000000,0.000206589000000,0.000201848000000,0.000116910000000,0.000247676000000,0.000606787000000 +0.000244120000000,0.000091626000000,0.000047379000000,0.000263873000000,0.000558589000000,0.001029502000000,0.000069503000000,0.000538440000000,0.001035823000000,0.000055281000000,0.000225157000000,0.000207379000000,0.000078984000000,0.000212515000000,0.000586639000000 +0.000239379000000,0.000069898000000,0.000047380000000,0.000220021000000,0.000624959000000,0.001048465000000,0.000069502000000,0.000585453000000,0.001051625000000,0.000097552000000,0.000222787000000,0.000237799000000,0.000078984000000,0.000208565000000,0.000676318000000 +0.000280466000000,0.000069898000000,0.000046589000000,0.000219626000000,0.000557009000000,0.001046490000000,0.000069107000000,0.000687379000000,0.001042934000000,0.000056861000000,0.000183281000000,0.000181701000000,0.000078984000000,0.000263083000000,0.000594934000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000222787000000,0.000626145000000,0.001043330000000,0.000067922000000,0.000552268000000,0.001031478000000,0.000054491000000,0.000185651000000,0.000253601000000,0.000078590000000,0.000263478000000,0.000626935000000 +0.000247675000000,0.000071873000000,0.000046195000000,0.000240169000000,0.000602441000000,0.001079280000000,0.000069503000000,0.000575181000000,0.001104959000000,0.000055676000000,0.000205404000000,0.000204219000000,0.000078984000000,0.000212910000000,0.000627724000000 +0.000248071000000,0.000069502000000,0.000046984000000,0.000231478000000,0.000568070000000,0.001078885000000,0.000069107000000,0.000540021000000,0.001106539000000,0.000056070000000,0.000220812000000,0.000223181000000,0.000078985000000,0.000246490000000,0.000599676000000 +0.000325898000000,0.000069502000000,0.000098737000000,0.000221206000000,0.000589799000000,0.001029502000000,0.000069502000000,0.000621799000000,0.001161058000000,0.000055281000000,0.000203033000000,0.000185256000000,0.000078984000000,0.000246490000000,0.000630490000000 +0.000263873000000,0.000069107000000,0.000046985000000,0.000221997000000,0.000554244000000,0.001043329000000,0.000073848000000,0.000571626000000,0.001042934000000,0.000056465000000,0.000202638000000,0.000180911000000,0.000078985000000,0.000208565000000,0.000653798000000 +0.000265849000000,0.000069502000000,0.000046984000000,0.000214095000000,0.000589008000000,0.001028712000000,0.000071874000000,0.000534885000000,0.001034243000000,0.000054490000000,0.000206589000000,0.000203429000000,0.000078984000000,0.000212515000000,0.000606392000000 +0.000378046000000,0.000069502000000,0.000046589000000,0.000250836000000,0.000562144000000,0.001043724000000,0.000105058000000,0.000609947000000,0.001148416000000,0.000055281000000,0.000244120000000,0.000203033000000,0.000078590000000,0.000210144000000,0.000626934000000 +0.000261898000000,0.000069107000000,0.000046589000000,0.000223182000000,0.000593354000000,0.001028711000000,0.000072269000000,0.000540811000000,0.001036613000000,0.000056070000000,0.000186836000000,0.000227527000000,0.000112169000000,0.000210144000000,0.000599280000000 +0.000244120000000,0.000068712000000,0.000046984000000,0.000223576000000,0.000598885000000,0.001166983000000,0.000070293000000,0.000576367000000,0.001071379000000,0.000055281000000,0.000205009000000,0.000202639000000,0.000093601000000,0.000242144000000,0.000628120000000 +0.000247676000000,0.000068317000000,0.000046985000000,0.000220021000000,0.000565700000000,0.001029107000000,0.000069108000000,0.000541601000000,0.001082045000000,0.000055676000000,0.000181700000000,0.000203034000000,0.000079379000000,0.000211725000000,0.000622589000000 +0.000476811000000,0.000111380000000,0.000046984000000,0.000259527000000,0.000602046000000,0.001127477000000,0.000069898000000,0.000913354000000,0.001055181000000,0.000055676000000,0.000188811000000,0.000204219000000,0.000079775000000,0.000211330000000,0.000590194000000 +0.000349206000000,0.000070293000000,0.000047379000000,0.000222787000000,0.000554243000000,0.001072959000000,0.000069503000000,0.000579132000000,0.001104169000000,0.000055676000000,0.000219231000000,0.000182886000000,0.000079379000000,0.000261503000000,0.000628909000000 +0.000248466000000,0.000069503000000,0.000047380000000,0.000218045000000,0.000592169000000,0.001048860000000,0.000069503000000,0.000578737000000,0.001112465000000,0.000090836000000,0.000205009000000,0.000222392000000,0.000079380000000,0.000212911000000,0.000622984000000 +0.000292713000000,0.000069503000000,0.000046589000000,0.000224367000000,0.000589404000000,0.001029502000000,0.000069503000000,0.000535675000000,0.001067033000000,0.000054885000000,0.000201848000000,0.000183675000000,0.000084515000000,0.000210144000000,0.000605206000000 +0.000243725000000,0.000069502000000,0.000046985000000,0.000289157000000,0.000561749000000,0.001102984000000,0.000069502000000,0.000576367000000,0.001041749000000,0.000055676000000,0.000202638000000,0.000205799000000,0.000078590000000,0.000246491000000,0.000654589000000 +0.000238589000000,0.000069107000000,0.000046194000000,0.000289157000000,0.000716613000000,0.001028712000000,0.000068712000000,0.000539230000000,0.001461699000000,0.000056861000000,0.000191971000000,0.000203034000000,0.000079379000000,0.000214490000000,0.000595725000000 +0.000293503000000,0.000071478000000,0.000046589000000,0.000214885000000,0.000557009000000,0.001053601000000,0.000069502000000,0.000605601000000,0.001063872000000,0.000054490000000,0.000237009000000,0.000256367000000,0.000078590000000,0.000211725000000,0.000626934000000 +0.000261108000000,0.000071478000000,0.000046194000000,0.000220021000000,0.000589404000000,0.001049256000000,0.000069107000000,0.000537255000000,0.001053996000000,0.000055281000000,0.000217256000000,0.000203429000000,0.000078984000000,0.000246885000000,0.000627725000000 +0.000249650000000,0.000069108000000,0.000046984000000,0.000256367000000,0.000606391000000,0.001089156000000,0.000089256000000,0.000587034000000,0.001046490000000,0.000055675000000,0.000200268000000,0.000192367000000,0.000115329000000,0.000208960000000,0.000599280000000 +0.000245700000000,0.000069503000000,0.000066738000000,0.000218046000000,0.000557008000000,0.001028712000000,0.000069503000000,0.000581107000000,0.001035033000000,0.000056071000000,0.000184861000000,0.000186837000000,0.000078984000000,0.000212120000000,0.000630490000000 +0.000280070000000,0.000068713000000,0.000047379000000,0.000216861000000,0.000626935000000,0.001280761000000,0.000071873000000,0.000555034000000,0.001078095000000,0.000055281000000,0.000226737000000,0.000187231000000,0.000078985000000,0.000247281000000,0.000673947000000 +0.000248070000000,0.000069108000000,0.000046985000000,0.000214885000000,0.000553058000000,0.001047675000000,0.000103873000000,0.000572416000000,0.001041749000000,0.000057256000000,0.000203034000000,0.000240565000000,0.000078984000000,0.000211725000000,0.000664860000000 +0.000244515000000,0.000106639000000,0.000048169000000,0.000256762000000,0.000637207000000,0.001096267000000,0.000073059000000,0.000534885000000,0.001053206000000,0.000055281000000,0.000190787000000,0.000204614000000,0.000079380000000,0.000208959000000,0.000627330000000 +0.000238589000000,0.000068713000000,0.000049749000000,0.000222392000000,0.000658934000000,0.001075725000000,0.000109009000000,0.000573601000000,0.001037008000000,0.000056861000000,0.000203429000000,0.000205404000000,0.000078589000000,0.000258738000000,0.000634441000000 +0.000331428000000,0.000068713000000,0.000047379000000,0.000283626000000,0.000559378000000,0.001092317000000,0.000074243000000,0.000540812000000,0.001040169000000,0.000055676000000,0.000204614000000,0.000185650000000,0.000078984000000,0.000208564000000,0.000592169000000 +0.000248071000000,0.000072269000000,0.000046194000000,0.000220416000000,0.000629305000000,0.001028712000000,0.000088466000000,0.000621403000000,0.001047280000000,0.000055280000000,0.000225948000000,0.000239379000000,0.000080170000000,0.000212120000000,0.000622589000000 +0.000239774000000,0.000068713000000,0.000046984000000,0.000265058000000,0.000677502000000,0.001216366000000,0.000069108000000,0.000587824000000,0.001080070000000,0.000075034000000,0.000203429000000,0.000203824000000,0.000081750000000,0.000248861000000,0.000590588000000 +0.000247676000000,0.000072663000000,0.000046589000000,0.000223182000000,0.000558194000000,0.001090342000000,0.000073059000000,0.000534885000000,0.001050045000000,0.000056071000000,0.000182885000000,0.000204614000000,0.000078984000000,0.000208960000000,0.000622984000000 +0.000282836000000,0.000069108000000,0.000047775000000,0.000225552000000,0.000963527000000,0.001090737000000,0.000069108000000,0.000592564000000,0.001204515000000,0.000056070000000,0.000182490000000,0.000205404000000,0.000081355000000,0.000208564000000,0.000623379000000 +0.000248466000000,0.000073849000000,0.000047774000000,0.000223577000000,0.000628909000000,0.001029107000000,0.000096367000000,0.000536071000000,0.000992366000000,0.000055281000000,0.000201059000000,0.000191577000000,0.000147725000000,0.000245305000000,0.000586243000000 +0.000241749000000,0.000070688000000,0.000046984000000,0.000214491000000,0.000552663000000,0.001078489000000,0.000069108000000,0.000575576000000,0.000993551000000,0.000056861000000,0.000202638000000,0.000269009000000,0.000093207000000,0.000214096000000,0.000622589000000 +0.000319972000000,0.000073454000000,0.000046985000000,0.000296663000000,0.000594539000000,0.001064662000000,0.000070293000000,0.000534491000000,0.001022786000000,0.000054886000000,0.000183281000000,0.000184466000000,0.000079775000000,0.000210539000000,0.000595330000000 +0.000248071000000,0.000069108000000,0.000046589000000,0.000224367000000,0.000552268000000,0.001056366000000,0.000069108000000,0.000574391000000,0.001164613000000,0.000055281000000,0.000191577000000,0.000205404000000,0.000079379000000,0.000259528000000,0.000627329000000 +0.000246885000000,0.000068713000000,0.000046589000000,0.000382786000000,0.000613108000000,0.001502786000000,0.000068713000000,0.000579132000000,0.000991576000000,0.000055280000000,0.000203824000000,0.000182095000000,0.000078985000000,0.000213700000000,0.000628120000000 +0.000248466000000,0.000090046000000,0.000046984000000,0.000258737000000,0.000588219000000,0.001042934000000,0.000069108000000,0.000551873000000,0.000996712000000,0.000054490000000,0.000253207000000,0.000223577000000,0.000078984000000,0.000208959000000,0.000599280000000 +0.000297453000000,0.000068713000000,0.000046984000000,0.000219627000000,0.000553453000000,0.001028712000000,0.000069898000000,0.000590984000000,0.001016070000000,0.000055281000000,0.000203824000000,0.000186046000000,0.000078984000000,0.000253602000000,0.000773107000000 +0.000245700000000,0.000072268000000,0.000046590000000,0.000215280000000,0.000603231000000,0.001090342000000,0.000068713000000,0.000534885000000,0.000985650000000,0.000055280000000,0.000203429000000,0.000206984000000,0.000080565000000,0.000212515000000,0.000669601000000 +0.000250441000000,0.000072269000000,0.000083725000000,0.000221601000000,0.000552663000000,0.001029897000000,0.000069108000000,0.000571231000000,0.000977749000000,0.000056071000000,0.000180910000000,0.000206984000000,0.000078984000000,0.000211725000000,0.000591379000000 +0.000247676000000,0.000069503000000,0.000046984000000,0.000258343000000,0.000632861000000,0.001095082000000,0.000068318000000,0.000537651000000,0.000978540000000,0.000054491000000,0.000224762000000,0.000203428000000,0.000078590000000,0.000245305000000,0.000626935000000 +0.000319576000000,0.000069503000000,0.000046589000000,0.000218441000000,0.000593354000000,0.001070194000000,0.000069503000000,0.000570836000000,0.001027921000000,0.000075428000000,0.000202639000000,0.000250836000000,0.000078984000000,0.000210935000000,0.000634836000000 +0.000239380000000,0.000069503000000,0.000046985000000,0.000219626000000,0.000557008000000,0.001093502000000,0.000069502000000,0.000570836000000,0.000990391000000,0.000059231000000,0.000180515000000,0.000205404000000,0.000115330000000,0.000214490000000,0.000592169000000 +0.000248465000000,0.000071083000000,0.000045799000000,0.000221206000000,0.000648663000000,0.001042144000000,0.000069107000000,0.000534490000000,0.001053600000000,0.000074243000000,0.000202638000000,0.000189207000000,0.000078589000000,0.000266243000000,0.000677897000000 +0.000327082000000,0.000069503000000,0.000047379000000,0.000250441000000,0.000553848000000,0.001078095000000,0.000144959000000,0.000589403000000,0.000978540000000,0.000056466000000,0.000205009000000,0.000203429000000,0.000079775000000,0.000225157000000,0.000627725000000 +0.000247675000000,0.000068712000000,0.000046194000000,0.000227527000000,0.000637996000000,0.001029107000000,0.000073453000000,0.000539230000000,0.001018440000000,0.000056465000000,0.000344860000000,0.000220021000000,0.000078984000000,0.000208960000000,0.000586243000000 +0.000239379000000,0.000069108000000,0.000046589000000,0.000219626000000,0.000643923000000,0.001044119000000,0.000080960000000,0.000696860000000,0.001031477000000,0.000055281000000,0.000204614000000,0.000189996000000,0.000079380000000,0.000288762000000,0.000622984000000 +0.000238985000000,0.000069107000000,0.000047380000000,0.000224761000000,0.000553058000000,0.001038984000000,0.000075823000000,0.000534490000000,0.000993552000000,0.000055281000000,0.000185651000000,0.000182095000000,0.000078984000000,0.000213305000000,0.000586243000000 +0.000330638000000,0.000069502000000,0.000046984000000,0.000214491000000,0.000633651000000,0.001042934000000,0.000073848000000,0.000582293000000,0.000996712000000,0.000056070000000,0.000204614000000,0.000205404000000,0.000080170000000,0.000209749000000,0.000622589000000 +0.000238589000000,0.000160762000000,0.000047379000000,0.000276515000000,0.000627329000000,0.001029107000000,0.000077404000000,0.000582292000000,0.001205699000000,0.000056071000000,0.000242145000000,0.000201453000000,0.000078589000000,0.000284021000000,0.000631280000000 +0.000241749000000,0.000108614000000,0.000046985000000,0.000214095000000,0.000556613000000,0.001042539000000,0.000075034000000,0.000554244000000,0.001014094000000,0.000055280000000,0.000185256000000,0.000217256000000,0.000079774000000,0.000210934000000,0.000591379000000 +0.000248861000000,0.000073453000000,0.000047379000000,0.000218441000000,0.000589009000000,0.001057946000000,0.000074639000000,0.000629700000000,0.001023181000000,0.000056466000000,0.000184860000000,0.000189207000000,0.000079380000000,0.000213305000000,0.000628515000000 +0.000283231000000,0.000068712000000,0.000046589000000,0.000219626000000,0.000556614000000,0.001109699000000,0.000077404000000,0.000537650000000,0.000989996000000,0.000056070000000,0.000181305000000,0.000183281000000,0.000078589000000,0.000262292000000,0.000599280000000 +0.000250046000000,0.000071083000000,0.000046985000000,0.000251626000000,0.000606786000000,0.001138934000000,0.000121651000000,0.000584663000000,0.001040564000000,0.000056071000000,0.000186441000000,0.000190787000000,0.000125601000000,0.000208959000000,0.000630490000000 +0.000244515000000,0.000069108000000,0.000046194000000,0.000219626000000,0.000574391000000,0.001070589000000,0.000084120000000,0.000575182000000,0.000983280000000,0.000055676000000,0.000268614000000,0.000188416000000,0.000079380000000,0.000210935000000,0.000775872000000 +0.000245305000000,0.000069108000000,0.000048960000000,0.000214886000000,0.000854095000000,0.001035428000000,0.000069107000000,0.000535280000000,0.001083231000000,0.000054490000000,0.000188417000000,0.000236614000000,0.000083330000000,0.000295083000000,0.000591379000000 +0.000427033000000,0.000069108000000,0.000104269000000,0.000213700000000,0.000604416000000,0.001042934000000,0.000069107000000,0.000571626000000,0.001000662000000,0.000056071000000,0.000182885000000,0.000203429000000,0.000078985000000,0.000208959000000,0.000626935000000 +0.000245305000000,0.000069108000000,0.000060021000000,0.000267033000000,0.000593749000000,0.001106539000000,0.000068712000000,0.000537256000000,0.001018836000000,0.000091232000000,0.000183675000000,0.000203034000000,0.000078589000000,0.000210935000000,0.000720564000000 +0.000248070000000,0.000071873000000,0.000048959000000,0.000224761000000,0.000559379000000,0.001064267000000,0.000070293000000,0.000574786000000,0.000988020000000,0.000055676000000,0.000245306000000,0.000205404000000,0.000078590000000,0.000249256000000,0.000606391000000 +0.000291923000000,0.000072268000000,0.000046589000000,0.000214491000000,0.000599676000000,0.001065057000000,0.000069503000000,0.000535280000000,0.001035428000000,0.000055280000000,0.000184070000000,0.000242539000000,0.000078589000000,0.000211330000000,0.000622194000000 +0.000238984000000,0.000105454000000,0.000046590000000,0.000215675000000,0.000552268000000,0.001042934000000,0.000070293000000,0.000592960000000,0.000979330000000,0.000054096000000,0.000183675000000,0.000182490000000,0.000079380000000,0.000211725000000,0.000668416000000 +0.000240960000000,0.000069503000000,0.000046984000000,0.000256762000000,0.000593749000000,0.001042144000000,0.000069898000000,0.000556218000000,0.001022786000000,0.000055281000000,0.000182885000000,0.000206590000000,0.000078984000000,0.000284811000000,0.000585848000000 +0.000243330000000,0.000068318000000,0.000049355000000,0.000215676000000,0.000558193000000,0.001043724000000,0.000071873000000,0.000590589000000,0.000998687000000,0.000056070000000,0.000203824000000,0.000235824000000,0.000078590000000,0.000212119000000,0.000634836000000 +0.000418342000000,0.000069108000000,0.000046590000000,0.000214490000000,0.000611527000000,0.001076515000000,0.000069502000000,0.000617848000000,0.001349897000000,0.000055676000000,0.000257157000000,0.000250046000000,0.000078589000000,0.000210540000000,0.000698835000000 +0.000247280000000,0.000070293000000,0.000046984000000,0.000219626000000,0.000603231000000,0.001114440000000,0.000069107000000,0.000535281000000,0.001005798000000,0.000056466000000,0.000204219000000,0.000190787000000,0.000114935000000,0.000285997000000,0.000870293000000 +0.000248071000000,0.000069503000000,0.000047379000000,0.000247281000000,0.000560959000000,0.001079675000000,0.000068317000000,0.000574786000000,0.001002638000000,0.000056466000000,0.000205009000000,0.000201849000000,0.000078984000000,0.000210144000000,0.000595724000000 +0.000274935000000,0.000069108000000,0.000046589000000,0.000400959000000,0.000605996000000,0.001055971000000,0.000069898000000,0.000538441000000,0.000990391000000,0.000055676000000,0.000205009000000,0.000206589000000,0.000079380000000,0.000210539000000,0.000626540000000 +0.000247281000000,0.000072268000000,0.000046984000000,0.000220021000000,0.000554243000000,0.001029897000000,0.000112169000000,0.000570441000000,0.000974588000000,0.000055675000000,0.000239379000000,0.000204613000000,0.000079379000000,0.000279676000000,0.000591774000000 +0.000239774000000,0.000069502000000,0.000046985000000,0.000214490000000,0.000638392000000,0.001043329000000,0.000069502000000,0.000573601000000,0.001041749000000,0.000056466000000,0.000186046000000,0.000241354000000,0.000081355000000,0.000212120000000,0.000635230000000 +0.000245305000000,0.000072268000000,0.000046589000000,0.000251231000000,0.000624564000000,0.001046094000000,0.000074243000000,0.000534095000000,0.000989601000000,0.000055675000000,0.000203034000000,0.000207775000000,0.000078985000000,0.000212910000000,0.000630886000000 +0.000284812000000,0.000069108000000,0.000046984000000,0.000214886000000,0.000554639000000,0.001077699000000,0.000069108000000,0.000578342000000,0.000986045000000,0.000058441000000,0.000183281000000,0.000204614000000,0.000082540000000,0.000249255000000,0.000599280000000 +0.000248070000000,0.000074639000000,0.000046984000000,0.000214490000000,0.000589008000000,0.001029107000000,0.000069107000000,0.000536071000000,0.000975774000000,0.000091231000000,0.000183280000000,0.000192367000000,0.000078984000000,0.000214096000000,0.000627329000000 +0.000248861000000,0.000125206000000,0.000046984000000,0.000224762000000,0.000561749000000,0.001168169000000,0.000069107000000,0.000578737000000,0.001016465000000,0.000055281000000,0.000286786000000,0.000311676000000,0.000078985000000,0.000211330000000,0.000628910000000 +0.000248071000000,0.000073454000000,0.000099528000000,0.000252811000000,0.000628120000000,0.001029107000000,0.000069897000000,0.000545552000000,0.000988021000000,0.000056861000000,0.000203823000000,0.000301009000000,0.000078984000000,0.000315231000000,0.000615477000000 +0.000284021000000,0.000068713000000,0.000046985000000,0.000230293000000,0.000629305000000,0.001177650000000,0.000069107000000,0.000661699000000,0.000979329000000,0.000054885000000,0.000181305000000,0.000205799000000,0.000078589000000,0.000212911000000,0.000628515000000 +0.000239380000000,0.000069503000000,0.000048169000000,0.000214095000000,0.000565700000000,0.001029107000000,0.000069503000000,0.000589008000000,0.000989206000000,0.000054886000000,0.000183676000000,0.000205009000000,0.000119676000000,0.000213700000000,0.000586243000000 +0.000248465000000,0.000071478000000,0.000046589000000,0.000222787000000,0.000591774000000,0.001077699000000,0.000068713000000,0.000535676000000,0.000983675000000,0.000055676000000,0.000240960000000,0.000206194000000,0.000078589000000,0.000209749000000,0.000671577000000 +0.000284022000000,0.000069108000000,0.000046984000000,0.000216070000000,0.000554243000000,0.001227032000000,0.000069503000000,0.000574786000000,0.000989601000000,0.000054095000000,0.000188021000000,0.000185256000000,0.000078984000000,0.000210145000000,0.000622588000000 +0.000249651000000,0.000071478000000,0.000047379000000,0.000255577000000,0.000600860000000,0.001366884000000,0.000069898000000,0.000534095000000,0.000993157000000,0.000056466000000,0.000202243000000,0.000183676000000,0.000080960000000,0.000209750000000,0.000637997000000 +0.000238984000000,0.000072268000000,0.000048169000000,0.000224367000000,0.000588613000000,0.001029107000000,0.000105453000000,0.000671972000000,0.000987230000000,0.000056070000000,0.000238985000000,0.000183675000000,0.000078984000000,0.000592564000000,0.000622193000000 +0.000253996000000,0.000069108000000,0.000046985000000,0.000261502000000,0.000562144000000,0.001043329000000,0.000068712000000,0.000574391000000,0.000988416000000,0.000055676000000,0.000216071000000,0.000221206000000,0.000079379000000,0.000269008000000,0.000622194000000 +0.000285207000000,0.000069503000000,0.000046194000000,0.000240960000000,0.000591379000000,0.001029897000000,0.000069502000000,0.000629304000000,0.000974194000000,0.000055281000000,0.000612712000000,0.000183675000000,0.000078984000000,0.000212120000000,0.000595330000000 +0.000240960000000,0.000068713000000,0.000046985000000,0.000294688000000,0.000556613000000,0.001044119000000,0.000069107000000,0.000570836000000,0.001061897000000,0.000055675000000,0.000225552000000,0.000190786000000,0.000079379000000,0.000210145000000,0.000662095000000 +0.000239379000000,0.000071478000000,0.000047379000000,0.000219626000000,0.000589404000000,0.001034638000000,0.000069503000000,0.000535676000000,0.001125502000000,0.000054491000000,0.000219231000000,0.000183675000000,0.000078985000000,0.000250441000000,0.000591774000000 +0.000245305000000,0.000105453000000,0.000046984000000,0.000218441000000,0.000684614000000,0.001043724000000,0.000069503000000,0.000615477000000,0.000988811000000,0.000056861000000,0.000185651000000,0.000183280000000,0.000079379000000,0.000208960000000,0.000640366000000 +0.000291132000000,0.000069108000000,0.000046985000000,0.000224367000000,0.000679083000000,0.001029107000000,0.000069898000000,0.000535281000000,0.000991576000000,0.000056466000000,0.000203428000000,0.000252417000000,0.000079775000000,0.000225552000000,0.000630095000000 +0.000250045000000,0.000068713000000,0.000046984000000,0.000260317000000,0.000604811000000,0.001056366000000,0.000073849000000,0.000574391000000,0.000984465000000,0.000107429000000,0.000204218000000,0.000188416000000,0.000203824000000,0.000245700000000,0.000598885000000 +0.000244515000000,0.000069108000000,0.000046984000000,0.000215281000000,0.000635231000000,0.001135378000000,0.000071083000000,0.000609157000000,0.001121156000000,0.000094787000000,0.000188811000000,0.000205009000000,0.000100713000000,0.000210144000000,0.000627330000000 +0.000248465000000,0.000069108000000,0.000046985000000,0.000214491000000,0.000554638000000,0.001043724000000,0.000068713000000,0.000540021000000,0.001025946000000,0.000058046000000,0.000240565000000,0.000182885000000,0.000095972000000,0.000211725000000,0.000626934000000 +0.000274935000000,0.000069108000000,0.000066737000000,0.000214095000000,0.000643922000000,0.001077305000000,0.000072268000000,0.000579922000000,0.001000268000000,0.000056071000000,0.000205404000000,0.000204218000000,0.000078985000000,0.000248466000000,0.000598886000000 +0.000244120000000,0.000069503000000,0.000060416000000,0.000287577000000,0.000610737000000,0.001042934000000,0.000070293000000,0.000534490000000,0.000999082000000,0.000054490000000,0.000183676000000,0.000279675000000,0.000078589000000,0.000208959000000,0.000676712000000 +0.000245306000000,0.000068713000000,0.000046590000000,0.000216465000000,0.000629305000000,0.001039378000000,0.000105453000000,0.000618639000000,0.001000268000000,0.000055675000000,0.000205404000000,0.000205799000000,0.000079380000000,0.000209354000000,0.000605601000000 +0.000247675000000,0.000068713000000,0.000048169000000,0.000227133000000,0.000589009000000,0.001043724000000,0.000069502000000,0.000538835000000,0.001109699000000,0.000055281000000,0.000221997000000,0.000202243000000,0.000078984000000,0.000252416000000,0.000837502000000 +0.000324318000000,0.000070688000000,0.000046984000000,0.000214490000000,0.000557799000000,0.001029502000000,0.000069503000000,0.000575971000000,0.000984861000000,0.000055675000000,0.000203824000000,0.000205799000000,0.000079379000000,0.000211725000000,0.000622194000000 +0.000248070000000,0.000069107000000,0.000046590000000,0.000257947000000,0.000629700000000,0.001043329000000,0.000068713000000,0.000796021000000,0.001052020000000,0.000055676000000,0.000202639000000,0.000239379000000,0.000079380000000,0.000209354000000,0.000622984000000 +0.000244516000000,0.000069107000000,0.000047379000000,0.000219626000000,0.000558194000000,0.001029107000000,0.000069108000000,0.000743083000000,0.001051231000000,0.000055281000000,0.000180910000000,0.000204613000000,0.000119675000000,0.000244120000000,0.000586243000000 +0.000282045000000,0.000088860000000,0.000047380000000,0.000215676000000,0.000588614000000,0.001167379000000,0.000069898000000,0.000594934000000,0.001064662000000,0.000055280000000,0.000206589000000,0.000205009000000,0.000078984000000,0.000212910000000,0.000622194000000 +0.000248070000000,0.000120861000000,0.000046589000000,0.000219626000000,0.000641157000000,0.001034243000000,0.000069898000000,0.000572416000000,0.000991577000000,0.000055281000000,0.000254392000000,0.000203034000000,0.000078985000000,0.000210540000000,0.000595329000000 +0.000244910000000,0.000071478000000,0.000047379000000,0.000285601000000,0.000553058000000,0.001043329000000,0.000068713000000,0.000538441000000,0.001024761000000,0.000075034000000,0.000190787000000,0.000237799000000,0.000078589000000,0.000245700000000,0.000624169000000 +0.000243725000000,0.000071873000000,0.000046589000000,0.000221602000000,0.000590194000000,0.001028712000000,0.000069108000000,0.000614688000000,0.000991971000000,0.000056466000000,0.000186046000000,0.000203034000000,0.000079380000000,0.000210145000000,0.000678292000000 +0.000332614000000,0.000069107000000,0.000046589000000,0.000219231000000,0.000552663000000,0.001038589000000,0.000069503000000,0.000581897000000,0.001044910000000,0.000056861000000,0.000202639000000,0.000206984000000,0.000079379000000,0.000211725000000,0.000599280000000 +0.000238984000000,0.000069108000000,0.000048564000000,0.000221601000000,0.000624169000000,0.001029107000000,0.000069108000000,0.000538440000000,0.000983675000000,0.000056466000000,0.000237799000000,0.000186836000000,0.000078590000000,0.000230688000000,0.000666046000000 +0.000241749000000,0.000069503000000,0.000048169000000,0.000257947000000,0.000600860000000,0.001103773000000,0.000071083000000,0.000580713000000,0.001016465000000,0.000056466000000,0.000197503000000,0.000183676000000,0.000079379000000,0.000209355000000,0.000645502000000 +0.000238589000000,0.000069108000000,0.000046985000000,0.000236218000000,0.000552663000000,0.001057156000000,0.000069107000000,0.000537650000000,0.000989206000000,0.000055676000000,0.000207380000000,0.000229108000000,0.000078984000000,0.000208170000000,0.000591379000000 +0.000284022000000,0.000069898000000,0.000046984000000,0.000214491000000,0.000647083000000,0.001037009000000,0.000161552000000,0.000619824000000,0.001019230000000,0.000055675000000,0.000202639000000,0.000188416000000,0.000078589000000,0.000208960000000,0.000627329000000 +0.000244120000000,0.000069108000000,0.000048169000000,0.000214490000000,0.000557404000000,0.001096268000000,0.000107824000000,0.000534885000000,0.000987626000000,0.000056071000000,0.000204614000000,0.000181700000000,0.000078984000000,0.000209749000000,0.000618639000000 +0.000247280000000,0.000068713000000,0.000046589000000,0.000222391000000,0.000594145000000,0.001036613000000,0.000099528000000,0.000579527000000,0.001056761000000,0.000055675000000,0.000242145000000,0.000202639000000,0.000115725000000,0.000210935000000,0.000592169000000 +0.000244120000000,0.000071478000000,0.000118095000000,0.000291133000000,0.000797996000000,0.001029107000000,0.000075824000000,0.000575182000000,0.001005404000000,0.000055281000000,0.000186836000000,0.000188416000000,0.000078984000000,0.000212516000000,0.000675527000000 +0.000284417000000,0.000089255000000,0.000046984000000,0.000220021000000,0.000794045000000,0.001049650000000,0.000069503000000,0.000533700000000,0.001439576000000,0.000056466000000,0.000182490000000,0.000274540000000,0.000080960000000,0.000225948000000,0.000590194000000 +0.000247280000000,0.000072269000000,0.000046195000000,0.000219626000000,0.000554638000000,0.001029502000000,0.000073059000000,0.000604811000000,0.000988020000000,0.000055676000000,0.000185651000000,0.000186441000000,0.000078984000000,0.000213305000000,0.000622589000000 +0.000247676000000,0.000069107000000,0.000046984000000,0.000214490000000,0.000590589000000,0.001037798000000,0.000068712000000,0.000538441000000,0.000982490000000,0.000056071000000,0.000239775000000,0.000203824000000,0.000082144000000,0.000211725000000,0.000633650000000 +0.000286391000000,0.000073848000000,0.000046589000000,0.000261108000000,0.000588614000000,0.001033452000000,0.000104663000000,0.000581897000000,0.000988021000000,0.000056465000000,0.000206589000000,0.000203034000000,0.000078984000000,0.000210540000000,0.000585849000000 +0.000247675000000,0.000071083000000,0.000046984000000,0.000219626000000,0.000628910000000,0.001036613000000,0.000084516000000,0.000544762000000,0.000990391000000,0.000054096000000,0.000205404000000,0.000216861000000,0.000078985000000,0.000212910000000,0.000622193000000 +0.000246491000000,0.000073848000000,0.000046984000000,0.000220021000000,0.000626935000000,0.001029897000000,0.000070293000000,0.000577157000000,0.001019230000000,0.000092022000000,0.000188021000000,0.000180120000000,0.000078984000000,0.000209750000000,0.000614688000000 +0.000248860000000,0.000106638000000,0.000045799000000,0.000214886000000,0.000556613000000,0.001087576000000,0.000140219000000,0.000595329000000,0.000991181000000,0.000055676000000,0.000205009000000,0.000205009000000,0.000078985000000,0.000210540000000,0.000607577000000 +0.000301404000000,0.000100712000000,0.000047379000000,0.000301799000000,0.000589008000000,0.001153551000000,0.000069108000000,0.000544367000000,0.001320662000000,0.000056070000000,0.000288367000000,0.000183280000000,0.000078589000000,0.000215281000000,0.000627329000000 +0.000250441000000,0.000071084000000,0.000048959000000,0.000233453000000,0.000557008000000,0.001036613000000,0.000069503000000,0.000574786000000,0.001082045000000,0.000055281000000,0.000182885000000,0.000199873000000,0.000081750000000,0.000208959000000,0.000599280000000 +0.000243329000000,0.000068713000000,0.000046985000000,0.000221206000000,0.000592565000000,0.001069798000000,0.000070293000000,0.000538836000000,0.001057552000000,0.000054885000000,0.000182490000000,0.000218441000000,0.000112960000000,0.000208959000000,0.000630490000000 +0.000246095000000,0.000072268000000,0.000046984000000,0.000221602000000,0.000592169000000,0.001037403000000,0.000069503000000,0.000585453000000,0.000997107000000,0.000055280000000,0.000199083000000,0.000205799000000,0.000093997000000,0.000208959000000,0.000634836000000 +0.000282441000000,0.000071873000000,0.000046984000000,0.000263873000000,0.000553848000000,0.001099823000000,0.000069503000000,0.000604416000000,0.000978934000000,0.000056466000000,0.000224762000000,0.000185651000000,0.000078985000000,0.000208959000000,0.000590984000000 +0.000246096000000,0.000105848000000,0.000046985000000,0.000214490000000,0.000591379000000,0.001103773000000,0.000069108000000,0.001007379000000,0.001088366000000,0.000054490000000,0.000184860000000,0.000188811000000,0.000078984000000,0.000213305000000,0.000677502000000 +0.000250046000000,0.000082934000000,0.000046589000000,0.000223577000000,0.000558588000000,0.001043329000000,0.000069108000000,0.000592169000000,0.000979329000000,0.000054885000000,0.000184861000000,0.000289157000000,0.000078985000000,0.000210935000000,0.000654589000000 +0.000248465000000,0.000068712000000,0.000046984000000,0.000220021000000,0.000595329000000,0.001488169000000,0.000069503000000,0.000570046000000,0.000987230000000,0.000056861000000,0.000185651000000,0.000203824000000,0.000078984000000,0.000209355000000,0.000592169000000 +0.000280466000000,0.000071478000000,0.000046984000000,0.000291527000000,0.000557799000000,0.001067428000000,0.000069107000000,0.000536070000000,0.000986440000000,0.000055280000000,0.000202639000000,0.000203034000000,0.000081355000000,0.000229503000000,0.000762835000000 +0.000245700000000,0.000069898000000,0.000063577000000,0.000568465000000,0.000636811000000,0.001036613000000,0.000069107000000,0.000579132000000,0.000985650000000,0.000055281000000,0.000227527000000,0.000180910000000,0.000078590000000,0.000210934000000,0.000626935000000 +0.000244515000000,0.000068713000000,0.000046589000000,0.000246886000000,0.000628514000000,0.001069008000000,0.000069107000000,0.000539230000000,0.000977354000000,0.000055281000000,0.000203824000000,0.000205404000000,0.000079379000000,0.000229898000000,0.000586243000000 +0.000249255000000,0.000069108000000,0.000046984000000,0.000257552000000,0.000558193000000,0.001123527000000,0.000110589000000,0.000577551000000,0.000989601000000,0.000053700000000,0.000203034000000,0.000450342000000,0.000078590000000,0.000211724000000,0.000671181000000 +0.000318786000000,0.000069108000000,0.000047775000000,0.000214885000000,0.000596909000000,0.001064663000000,0.000071873000000,0.000540021000000,0.001329354000000,0.000093997000000,0.000186046000000,0.000197108000000,0.000078194000000,0.000209354000000,0.000586243000000 +0.000248466000000,0.000068713000000,0.000046984000000,0.000214096000000,0.000552663000000,0.001047675000000,0.000069898000000,0.000579922000000,0.001804612000000,0.000083725000000,0.000203034000000,0.000193552000000,0.000115330000000,0.000209354000000,0.000622589000000 +0.000247675000000,0.000069898000000,0.000046984000000,0.000224762000000,0.000587033000000,0.001042539000000,0.000073058000000,0.000573601000000,0.001076119000000,0.000055280000000,0.000238589000000,0.000249650000000,0.000079379000000,0.000210144000000,0.000679478000000 +0.000284021000000,0.000068713000000,0.000046984000000,0.000257552000000,0.000634836000000,0.001050835000000,0.000070293000000,0.000539231000000,0.001019625000000,0.000056071000000,0.000203429000000,0.000203034000000,0.000099528000000,0.000210144000000,0.000590589000000 +0.000248070000000,0.000069108000000,0.000046589000000,0.000221602000000,0.000554639000000,0.001029502000000,0.000069107000000,0.000573206000000,0.001144465000000,0.000055675000000,0.000188417000000,0.000203033000000,0.000095182000000,0.000212910000000,0.000633650000000 +0.000245700000000,0.000105453000000,0.000046195000000,0.000224762000000,0.000589008000000,0.001037403000000,0.000070293000000,0.000534095000000,0.001084020000000,0.000056071000000,0.000183280000000,0.000204613000000,0.000079774000000,0.000210144000000,0.000822885000000 +0.000242145000000,0.000084910000000,0.000046984000000,0.000214490000000,0.000553453000000,0.001077304000000,0.000069108000000,0.000597700000000,0.001035428000000,0.000055676000000,0.000274539000000,0.000185651000000,0.000078589000000,0.000208959000000,0.000594539000000 +0.000284416000000,0.000069108000000,0.000046590000000,0.000299429000000,0.000647873000000,0.001074539000000,0.000069503000000,0.000535676000000,0.001033847000000,0.000055280000000,0.000203033000000,0.000274935000000,0.000078985000000,0.000208959000000,0.000634836000000 +0.000243725000000,0.000068713000000,0.000046589000000,0.000229107000000,0.000588219000000,0.001076514000000,0.000068713000000,0.000578737000000,0.001014094000000,0.000056071000000,0.000185256000000,0.000180910000000,0.000079379000000,0.000246886000000,0.000662095000000 +0.000251231000000,0.000069898000000,0.000046984000000,0.000214096000000,0.000560959000000,0.001430884000000,0.000069503000000,0.000613897000000,0.001009749000000,0.000054885000000,0.000188811000000,0.000205008000000,0.000079380000000,0.000209355000000,0.000590194000000 +0.000238194000000,0.000069108000000,0.000046589000000,0.000301404000000,0.000592960000000,0.001029107000000,0.000069108000000,0.000556218000000,0.001251527000000,0.000055675000000,0.000242145000000,0.000207379000000,0.000078194000000,0.000211330000000,0.000634836000000 +0.000378836000000,0.000071479000000,0.000046589000000,0.000252811000000,0.000556613000000,0.001095477000000,0.000105849000000,0.000578342000000,0.001050440000000,0.000055281000000,0.000236614000000,0.000222392000000,0.000078985000000,0.000316021000000,0.000726885000000 +0.000257947000000,0.000072268000000,0.000046590000000,0.000218441000000,0.000601650000000,0.001029107000000,0.000068713000000,0.000536071000000,0.001042144000000,0.000055676000000,0.000205799000000,0.000203429000000,0.000114540000000,0.000211725000000,0.001559674000000 +0.000244515000000,0.000069108000000,0.000046589000000,0.000215280000000,0.000734787000000,0.001036218000000,0.000069108000000,0.000570835000000,0.001068613000000,0.000054885000000,0.000184070000000,0.000202639000000,0.000078589000000,0.000248070000000,0.001211231000000 +0.000276911000000,0.000069503000000,0.000131922000000,0.000221207000000,0.000822490000000,0.001029502000000,0.000069108000000,0.000577157000000,0.001049650000000,0.000091626000000,0.000203823000000,0.000202639000000,0.000079379000000,0.000210540000000,0.000902687000000 +0.000244120000000,0.000069108000000,0.000108614000000,0.000261897000000,0.000553848000000,0.001038194000000,0.000071478000000,0.000551873000000,0.001081256000000,0.000055281000000,0.000241749000000,0.000243725000000,0.000081355000000,0.000211329000000,0.000913749000000 +0.000303379000000,0.000069107000000,0.000070688000000,0.000239775000000,0.000588614000000,0.001029502000000,0.000069503000000,0.000584663000000,0.001048070000000,0.000055676000000,0.000203428000000,0.000235428000000,0.000078590000000,0.000247280000000,0.000698441000000 +0.000248466000000,0.000125206000000,0.000119281000000,0.000219626000000,0.000562144000000,0.001047675000000,0.000069108000000,0.000542787000000,0.001077304000000,0.000057256000000,0.000183675000000,0.000193157000000,0.000078984000000,0.000210145000000,0.000686984000000 +0.000276120000000,0.000069108000000,0.000065157000000,0.000220416000000,0.000591774000000,0.001064662000000,0.000069503000000,0.000574391000000,0.001100218000000,0.000058046000000,0.000184466000000,0.000205009000000,0.000079380000000,0.000211725000000,0.000651033000000 +0.000249651000000,0.000069108000000,0.000046984000000,0.000233848000000,0.000627725000000,0.001037008000000,0.000069898000000,0.000547527000000,0.001066637000000,0.000054886000000,0.000222786000000,0.000180515000000,0.000078589000000,0.000249256000000,0.000684614000000 +0.000245700000000,0.000072268000000,0.000047775000000,0.000255972000000,0.000552663000000,0.001029502000000,0.000075428000000,0.000579132000000,0.001047279000000,0.000055281000000,0.000200663000000,0.000275725000000,0.000078590000000,0.000212910000000,0.000657354000000 +0.000250046000000,0.000069107000000,0.000046984000000,0.000221207000000,0.000592564000000,0.001037403000000,0.000069897000000,0.000539231000000,0.001026341000000,0.000054885000000,0.000203034000000,0.000205009000000,0.000078194000000,0.000211330000000,0.000600071000000 +0.000274935000000,0.000071478000000,0.000046984000000,0.000224762000000,0.000557798000000,0.001040169000000,0.000073058000000,0.000577157000000,0.001067033000000,0.000054886000000,0.000204614000000,0.000184071000000,0.000078590000000,0.000212120000000,0.001043724000000 +0.000246885000000,0.000069108000000,0.000046194000000,0.000219627000000,0.000591379000000,0.001038193000000,0.000105454000000,0.000589009000000,0.001031477000000,0.000054886000000,0.000193158000000,0.000184071000000,0.000114935000000,0.000210540000000,0.000706737000000 +0.000238985000000,0.000073848000000,0.000080169000000,0.000252416000000,0.000553453000000,0.001080861000000,0.000069503000000,0.000545947000000,0.001442342000000,0.000056465000000,0.000434934000000,0.000272169000000,0.000079379000000,0.000211725000000,0.000628120000000 +0.000239379000000,0.000071083000000,0.000121256000000,0.000215675000000,0.000590589000000,0.001072169000000,0.000069108000000,0.000572811000000,0.001038588000000,0.000056071000000,0.000373700000000,0.000183280000000,0.000079774000000,0.000230293000000,0.000621008000000 +0.000274540000000,0.000073058000000,0.000052515000000,0.000223972000000,0.000629700000000,0.001035823000000,0.000069898000000,0.000534095000000,0.001022786000000,0.000059626000000,0.000237404000000,0.000181700000000,0.000081355000000,0.000210144000000,0.000682243000000 +0.000250836000000,0.000068712000000,0.000047379000000,0.000214491000000,0.000559774000000,0.001036218000000,0.000069503000000,0.000705552000000,0.001019626000000,0.000056465000000,0.000206589000000,0.000203429000000,0.000078589000000,0.000210540000000,0.000664071000000 +0.000247675000000,0.000069107000000,0.000046589000000,0.000256762000000,0.000647872000000,0.001159477000000,0.000069898000000,0.000570046000000,0.001044119000000,0.000074639000000,0.000191972000000,0.000205404000000,0.000078589000000,0.000210935000000,0.000611527000000 +0.000275330000000,0.000106638000000,0.000046984000000,0.000214096000000,0.000828020000000,0.001092317000000,0.000069108000000,0.000571231000000,0.001109700000000,0.000058836000000,0.000201848000000,0.000219231000000,0.000078985000000,0.000209354000000,0.000627724000000 +0.000243330000000,0.000069503000000,0.000046985000000,0.000221206000000,0.000571231000000,0.001029502000000,0.000069898000000,0.000673551000000,0.001005403000000,0.000058441000000,0.000185650000000,0.000195132000000,0.000079379000000,0.000208959000000,0.000775873000000 +0.000244515000000,0.000071873000000,0.000048170000000,0.000220021000000,0.000628515000000,0.001070983000000,0.000069502000000,0.000534490000000,0.001036613000000,0.000099922000000,0.000217651000000,0.000201453000000,0.000078985000000,0.000210145000000,0.000693700000000 +0.000238984000000,0.000071873000000,0.000046589000000,0.000254392000000,0.000668416000000,0.001029107000000,0.000069107000000,0.000610342000000,0.001046490000000,0.000070688000000,0.000205799000000,0.000183676000000,0.000078589000000,0.000210144000000,0.000622194000000 +0.000275330000000,0.000068713000000,0.000046985000000,0.000223182000000,0.000758490000000,0.001071773000000,0.000068712000000,0.000614292000000,0.001045700000000,0.000058441000000,0.000184861000000,0.000221997000000,0.000081355000000,0.000214491000000,0.000886885000000 +0.000240169000000,0.000069503000000,0.000046589000000,0.000214095000000,0.000606787000000,0.001042539000000,0.000069898000000,0.000536071000000,0.001060317000000,0.000055675000000,0.000206589000000,0.000205799000000,0.000114540000000,0.000213700000000,0.000645898000000 +0.000238984000000,0.000069108000000,0.000046985000000,0.000218441000000,0.000635231000000,0.001037009000000,0.000069898000000,0.000590193000000,0.001071774000000,0.000056466000000,0.000203428000000,0.000207379000000,0.000092022000000,0.000226342000000,0.000627724000000 +0.000245306000000,0.000071874000000,0.000047380000000,0.000258342000000,0.000554243000000,0.001114440000000,0.000104663000000,0.000538835000000,0.001028712000000,0.000055280000000,0.000266638000000,0.000204219000000,0.000078984000000,0.000208565000000,0.000628515000000 +0.000283626000000,0.000068713000000,0.000046984000000,0.000230688000000,0.000588614000000,0.001050440000000,0.000069502000000,0.000677898000000,0.001010144000000,0.000091231000000,0.000184070000000,0.000202243000000,0.000079380000000,0.000229898000000,0.000636021000000 +0.000244120000000,0.000069108000000,0.000046985000000,0.000219626000000,0.000553453000000,0.001400465000000,0.000069502000000,0.000580317000000,0.001010539000000,0.000055281000000,0.000202638000000,0.000250441000000,0.000078984000000,0.000214096000000,0.000629700000000 +0.000249256000000,0.000069898000000,0.000046984000000,0.000221997000000,0.000637602000000,0.001052810000000,0.000073848000000,0.000534490000000,0.001348316000000,0.000056071000000,0.000203824000000,0.000201848000000,0.000079774000000,0.000212910000000,0.000635626000000 +0.000244120000000,0.000069503000000,0.000046984000000,0.000220021000000,0.000589008000000,0.001064267000000,0.000071874000000,0.000609552000000,0.001029502000000,0.000055676000000,0.000222787000000,0.000203824000000,0.000078985000000,0.000229503000000,0.000626934000000 +0.000332614000000,0.000088071000000,0.000046985000000,0.000250441000000,0.000561354000000,0.001037403000000,0.000069898000000,0.000535676000000,0.001037404000000,0.000055676000000,0.000188022000000,0.000202243000000,0.000078589000000,0.000211330000000,0.000626934000000 +0.000244515000000,0.000115330000000,0.000066342000000,0.000214490000000,0.000628910000000,0.001029502000000,0.000072268000000,0.000575971000000,0.001097057000000,0.000055280000000,0.000184071000000,0.000282441000000,0.000079380000000,0.000208564000000,0.000635626000000 +0.000246490000000,0.000067527000000,0.000097947000000,0.000214490000000,0.000557009000000,0.001072564000000,0.000070688000000,0.000539231000000,0.001027526000000,0.000054886000000,0.000208169000000,0.000188416000000,0.000078984000000,0.000208960000000,0.000628910000000 +0.000249651000000,0.000069503000000,0.000046194000000,0.000224762000000,0.000602441000000,0.001029502000000,0.000069503000000,0.000622984000000,0.001064663000000,0.000055676000000,0.000184860000000,0.000180910000000,0.000078984000000,0.000211725000000,0.000622984000000 +0.000281256000000,0.000069108000000,0.000047379000000,0.000301404000000,0.000636416000000,0.001050441000000,0.000069898000000,0.000570441000000,0.001029897000000,0.000055280000000,0.000239774000000,0.000204613000000,0.000115725000000,0.000208960000000,0.000720959000000 +0.000248466000000,0.000069898000000,0.000046985000000,0.000215281000000,0.000554638000000,0.001029502000000,0.000068713000000,0.000534885000000,0.001030292000000,0.000055676000000,0.000205404000000,0.000222391000000,0.000078985000000,0.000213305000000,0.000605601000000 +0.000248071000000,0.000069108000000,0.000046589000000,0.000215280000000,0.000590588000000,0.001037008000000,0.000069108000000,0.000917700000000,0.001010539000000,0.000055675000000,0.000186046000000,0.000203429000000,0.000078984000000,0.000388317000000,0.000658935000000 +0.000277305000000,0.000069108000000,0.000046984000000,0.000221207000000,0.000553058000000,0.001041749000000,0.000105453000000,0.000681453000000,0.001072168000000,0.000055281000000,0.000183280000000,0.000184466000000,0.000078589000000,0.000210144000000,0.000657354000000 +0.000275725000000,0.000069898000000,0.000046590000000,0.000290342000000,0.000633650000000,0.001106934000000,0.000069503000000,0.000543971000000,0.001012910000000,0.000055281000000,0.000237799000000,0.000184071000000,0.000079379000000,0.000208960000000,0.000585848000000 +0.000243725000000,0.000069108000000,0.000046984000000,0.000216070000000,0.000839082000000,0.001029897000000,0.000069503000000,0.000575971000000,0.001074934000000,0.000054885000000,0.000181305000000,0.000183281000000,0.000078589000000,0.000213305000000,0.000758885000000 +0.000244515000000,0.000071478000000,0.000046590000000,0.000214491000000,0.000638786000000,0.001037008000000,0.000069898000000,0.000539626000000,0.001020020000000,0.000058441000000,0.000204613000000,0.000287577000000,0.000079775000000,0.000212910000000,0.000844218000000 +0.000280466000000,0.000072268000000,0.000046984000000,0.000223576000000,0.000598095000000,0.001029107000000,0.000069503000000,0.000581108000000,0.001017256000000,0.000072663000000,0.000202638000000,0.000262688000000,0.000082540000000,0.000212120000000,0.000677107000000 +0.000243725000000,0.000105058000000,0.000047379000000,0.000256367000000,0.000593354000000,0.001037798000000,0.000069108000000,0.000580317000000,0.001022786000000,0.000056861000000,0.000182885000000,0.000204219000000,0.000078589000000,0.000211725000000,0.000615478000000 +0.000250441000000,0.000069503000000,0.000046985000000,0.000214886000000,0.000557799000000,0.001154342000000,0.000069503000000,0.000535675000000,0.001010934000000,0.000054886000000,0.000222392000000,0.000204218000000,0.000078590000000,0.000213700000000,0.000630490000000 +0.000251626000000,0.000069503000000,0.000046194000000,0.000214095000000,0.000997107000000,0.001211625000000,0.000071873000000,0.000581503000000,0.001142095000000,0.000054885000000,0.000203034000000,0.000221996000000,0.000079379000000,0.000211725000000,0.000598490000000 +0.000330639000000,0.000069108000000,0.000049749000000,0.000216465000000,0.000600465000000,0.001029502000000,0.000068712000000,0.000534490000000,0.001018440000000,0.000054490000000,0.000203429000000,0.000205008000000,0.000115329000000,0.000212515000000,0.000628120000000 +0.000238194000000,0.000069898000000,0.000049749000000,0.000261502000000,0.000555033000000,0.001037008000000,0.000069502000000,0.000574787000000,0.001018440000000,0.000056071000000,0.000205009000000,0.000205799000000,0.000079379000000,0.000209749000000,0.000626144000000 +0.000249256000000,0.000069898000000,0.000046589000000,0.000224762000000,0.000629700000000,0.001063872000000,0.000067922000000,0.000534885000000,0.001452218000000,0.000056466000000,0.000239775000000,0.000186046000000,0.000078590000000,0.000227528000000,0.000599280000000 +0.000266244000000,0.000069108000000,0.000084910000000,0.000219231000000,0.000595330000000,0.001036219000000,0.000069898000000,0.000594934000000,0.001057552000000,0.000055676000000,0.000203429000000,0.000203429000000,0.000078589000000,0.000211725000000,0.000628120000000 +0.000308910000000,0.000072268000000,0.000046984000000,0.000221207000000,0.000557799000000,0.001029897000000,0.000095181000000,0.000602440000000,0.001038588000000,0.000056465000000,0.000188416000000,0.000284021000000,0.000079380000000,0.000212910000000,0.000604811000000 +0.000304564000000,0.000069108000000,0.000046985000000,0.000223971000000,0.000588219000000,0.001086390000000,0.000132712000000,0.000536071000000,0.001057157000000,0.000056466000000,0.000185255000000,0.000185651000000,0.000078589000000,0.000208959000000,0.000606787000000 +0.000238985000000,0.000071873000000,0.000046984000000,0.000255972000000,0.000557799000000,0.001077304000000,0.000074243000000,0.000605996000000,0.001060316000000,0.000053700000000,0.000203428000000,0.000190787000000,0.000078985000000,0.000209355000000,0.000622193000000 +0.000277305000000,0.000069108000000,0.000048959000000,0.000266244000000,0.000594539000000,0.001084810000000,0.000068713000000,0.000539231000000,0.001061502000000,0.000056071000000,0.000289552000000,0.000181700000000,0.000081355000000,0.000209750000000,0.000586638000000 +0.000248071000000,0.000074244000000,0.000046589000000,0.000222786000000,0.000594144000000,0.001029107000000,0.000069503000000,0.000628515000000,0.001054391000000,0.000056071000000,0.000204219000000,0.000238984000000,0.000078984000000,0.000210145000000,0.000749008000000 +0.000248860000000,0.000089651000000,0.000046984000000,0.000214096000000,0.000552268000000,0.001038984000000,0.000068713000000,0.000542786000000,0.001048070000000,0.000056466000000,0.000205009000000,0.000191182000000,0.000078590000000,0.000208959000000,0.000636021000000 +0.000298639000000,0.000166688000000,0.000046984000000,0.000258342000000,0.000593355000000,0.001064268000000,0.000070293000000,0.000609552000000,0.001074144000000,0.000092417000000,0.000203428000000,0.000203429000000,0.000079379000000,0.000210144000000,0.000595725000000 +0.000316416000000,0.000137849000000,0.000046985000000,0.000219626000000,0.000557009000000,0.001078885000000,0.000069502000000,0.000593750000000,0.001208465000000,0.000055676000000,0.000275725000000,0.000205009000000,0.000182886000000,0.000214491000000,0.000670786000000 +0.000245700000000,0.000073453000000,0.000046984000000,0.000218441000000,0.000590194000000,0.001029502000000,0.000069503000000,0.000536070000000,0.001453008000000,0.000056071000000,0.000227922000000,0.000185255000000,0.000118886000000,0.000208959000000,0.000671577000000 +0.000250045000000,0.000088070000000,0.000046590000000,0.000216070000000,0.000589008000000,0.001216366000000,0.000069503000000,0.000574786000000,0.001016860000000,0.000056466000000,0.000186046000000,0.000550292000000,0.000084120000000,0.000210540000000,0.000599675000000 +0.000284416000000,0.000068712000000,0.000046194000000,0.000396219000000,0.000554243000000,0.001166194000000,0.000069503000000,0.000541207000000,0.001017255000000,0.000055280000000,0.000204219000000,0.000293503000000,0.000081354000000,0.000212515000000,0.000754539000000 +0.000239379000000,0.000071479000000,0.000046984000000,0.000278095000000,0.000678293000000,0.001081255000000,0.000069898000000,0.000570835000000,0.001005798000000,0.000055281000000,0.000230293000000,0.000249651000000,0.000078984000000,0.000212911000000,0.000685798000000 +0.000248071000000,0.000070688000000,0.000046589000000,0.000214886000000,0.000565700000000,0.001029502000000,0.000105453000000,0.000542786000000,0.001013700000000,0.000056860000000,0.000185256000000,0.000203429000000,0.000078194000000,0.000209355000000,0.000590984000000 +0.000247280000000,0.000069898000000,0.000046194000000,0.000250046000000,0.000597305000000,0.001123922000000,0.000069107000000,0.000551873000000,0.001023576000000,0.000056861000000,0.000187231000000,0.000193157000000,0.000078589000000,0.000208565000000,0.000661700000000 +0.000296663000000,0.000069503000000,0.000047380000000,0.000219626000000,0.000593750000000,0.001042539000000,0.000069503000000,0.000591774000000,0.001054391000000,0.000056070000000,0.000185256000000,0.000204219000000,0.000078589000000,0.000209749000000,0.000649453000000 +0.000241749000000,0.000105454000000,0.000046589000000,0.000214096000000,0.000553453000000,0.001051625000000,0.000069108000000,0.000534885000000,0.001040169000000,0.000055676000000,0.000181700000000,0.000182885000000,0.000078195000000,0.000211725000000,0.000591774000000 +0.000250440000000,0.000071873000000,0.000048170000000,0.000227132000000,0.000605601000000,0.001029502000000,0.000068713000000,0.000584663000000,0.001055971000000,0.000055280000000,0.000237404000000,0.000239380000000,0.000079379000000,0.000259528000000,0.000658144000000 +0.000244515000000,0.000068713000000,0.000098343000000,0.000218441000000,0.000554243000000,0.001085206000000,0.000069108000000,0.000534490000000,0.001063478000000,0.000054490000000,0.000203429000000,0.000186441000000,0.000146540000000,0.000210540000000,0.000665651000000 +0.000280070000000,0.000068713000000,0.000046984000000,0.000249651000000,0.000590589000000,0.001046095000000,0.000069503000000,0.000571626000000,0.001072564000000,0.000055676000000,0.000182490000000,0.000200664000000,0.000079380000000,0.000250441000000,0.000869502000000 +0.000243725000000,0.000069503000000,0.000047379000000,0.000221601000000,0.000559379000000,0.001085206000000,0.000073848000000,0.000542391000000,0.001406786000000,0.000055675000000,0.000183675000000,0.000201848000000,0.000079379000000,0.000210540000000,0.000623379000000 +0.000244120000000,0.000069108000000,0.000048170000000,0.000217651000000,0.000635626000000,0.001029107000000,0.000071873000000,0.000583083000000,0.001050440000000,0.000073848000000,0.000189996000000,0.000237404000000,0.000078589000000,0.000212910000000,0.000635626000000 +0.000250046000000,0.000069503000000,0.000046984000000,0.000214490000000,0.000594934000000,0.001395329000000,0.000069503000000,0.000660514000000,0.001046489000000,0.000055281000000,0.000239380000000,0.000204218000000,0.000078589000000,0.000229108000000,0.000586243000000 +0.000256367000000,0.000069503000000,0.000046589000000,0.000250441000000,0.000559379000000,0.001114440000000,0.000072663000000,0.000586243000000,0.001031873000000,0.000055281000000,0.000184466000000,0.000205009000000,0.000080169000000,0.000212910000000,0.000631280000000 +0.000244120000000,0.000069502000000,0.000046985000000,0.000215676000000,0.000596909000000,0.001050440000000,0.000069898000000,0.000586244000000,0.001044909000000,0.000055675000000,0.000187231000000,0.000193157000000,0.000078985000000,0.000208959000000,0.000626935000000 +0.000248466000000,0.000068712000000,0.000047379000000,0.000221206000000,0.000557403000000,0.001029502000000,0.000069108000000,0.000538835000000,0.001025551000000,0.000056071000000,0.000182886000000,0.000204219000000,0.000079379000000,0.000280466000000,0.000591774000000 +0.000321157000000,0.000069107000000,0.000046984000000,0.000223972000000,0.000644317000000,0.001087576000000,0.000095182000000,0.000574392000000,0.001041749000000,0.000054490000000,0.000224367000000,0.000223181000000,0.000078984000000,0.000213700000000,0.000636021000000 +0.000840663000000,0.000070293000000,0.000046984000000,0.000260712000000,0.000598095000000,0.001029107000000,0.000068713000000,0.000577552000000,0.001153947000000,0.000056071000000,0.000185651000000,0.000203823000000,0.000079379000000,0.000210540000000,0.000593749000000 +0.000576762000000,0.000089256000000,0.000046984000000,0.000218836000000,0.000555824000000,0.001120366000000,0.000069108000000,0.000539231000000,0.001020415000000,0.000054886000000,0.000181701000000,0.000189206000000,0.000148120000000,0.000383181000000,0.000635231000000 +0.000261503000000,0.000354342000000,0.000046985000000,0.000214096000000,0.000703972000000,0.001029107000000,0.000069898000000,0.000605601000000,0.001020021000000,0.000055280000000,0.000203033000000,0.000204614000000,0.000093602000000,0.000299429000000,0.000627329000000 +0.000315626000000,0.000074243000000,0.000046984000000,0.000223181000000,0.000594934000000,0.001037798000000,0.000069108000000,0.000539626000000,0.001094292000000,0.000054490000000,0.000205404000000,0.000220416000000,0.000080960000000,0.000248861000000,0.000590588000000 +0.000244515000000,0.000073454000000,0.000047774000000,0.000214886000000,0.000554243000000,0.001077699000000,0.000069108000000,0.000583477000000,0.001033058000000,0.000055281000000,0.000217256000000,0.000203824000000,0.000078984000000,0.000209749000000,0.000634836000000 +0.000247676000000,0.000116910000000,0.000046590000000,0.000259922000000,0.000594935000000,0.001037008000000,0.000069898000000,0.000540811000000,0.001209255000000,0.000055676000000,0.000202639000000,0.000186441000000,0.000078590000000,0.000210144000000,0.000737552000000 +0.000238984000000,0.000089256000000,0.000046984000000,0.000224367000000,0.000562144000000,0.001029107000000,0.000069503000000,0.000571626000000,0.001053206000000,0.000055281000000,0.000182490000000,0.000203823000000,0.000078984000000,0.000280466000000,0.000586638000000 +0.000275330000000,0.000068713000000,0.000083725000000,0.000223972000000,0.000692120000000,0.001037403000000,0.000069108000000,0.000584268000000,0.001029897000000,0.000056466000000,0.000206589000000,0.000184070000000,0.000078590000000,0.000209749000000,0.000674737000000 +0.000241750000000,0.000069898000000,0.000046984000000,0.000214885000000,0.000590589000000,0.001029502000000,0.000068713000000,0.000538045000000,0.001013305000000,0.000054095000000,0.000182886000000,0.000253207000000,0.000078589000000,0.000209354000000,0.000673947000000 +0.000255182000000,0.000103478000000,0.000047380000000,0.000256367000000,0.000554638000000,0.001042934000000,0.000071479000000,0.000635231000000,0.001104168000000,0.000144959000000,0.000273750000000,0.000203824000000,0.000078590000000,0.000246886000000,0.000901107000000 +0.000245700000000,0.000083330000000,0.000046589000000,0.000215675000000,0.000598095000000,0.001029502000000,0.000069107000000,0.000534490000000,0.001066243000000,0.000107429000000,0.000187231000000,0.000204614000000,0.000078589000000,0.000212910000000,0.001032663000000 +0.000317206000000,0.000069503000000,0.000047775000000,0.000221997000000,0.000552663000000,0.001050045000000,0.000160367000000,0.000575972000000,0.001230984000000,0.000071873000000,0.000185256000000,0.000202639000000,0.000078985000000,0.000210145000000,0.000692514000000 +0.000249650000000,0.000069108000000,0.000046589000000,0.000223972000000,0.000593355000000,0.001087576000000,0.000205009000000,0.000539231000000,0.001148415000000,0.000056466000000,0.000183676000000,0.000238984000000,0.000096762000000,0.000247675000000,0.000679477000000 +0.000248070000000,0.000069108000000,0.000047379000000,0.000250046000000,0.000592169000000,0.001037403000000,0.000222391000000,0.000572811000000,0.001068218000000,0.000054491000000,0.000222392000000,0.000190391000000,0.000078589000000,0.000208960000000,0.000626935000000 +0.000284021000000,0.000072268000000,0.000046985000000,0.000221206000000,0.000554243000000,0.001155526000000,0.000175380000000,0.000575577000000,0.001070589000000,0.000054885000000,0.000187231000000,0.000203429000000,0.000081749000000,0.000208565000000,0.000592169000000 +0.000244120000000,0.000069108000000,0.000046589000000,0.000218836000000,0.000589009000000,0.001051625000000,0.000174984000000,0.000535280000000,0.001066638000000,0.000055280000000,0.000205009000000,0.000186836000000,0.000078589000000,0.000248465000000,0.000635626000000 +0.000280070000000,0.000072269000000,0.000046589000000,0.000220021000000,0.000553848000000,0.001029107000000,0.000234243000000,0.000809058000000,0.001065057000000,0.000056071000000,0.000188021000000,0.000182490000000,0.000078589000000,0.000213700000000,0.000594539000000 +0.000247676000000,0.000069108000000,0.000048170000000,0.000250046000000,0.000590983000000,0.001036613000000,0.000139034000000,0.000603626000000,0.001198984000000,0.000055280000000,0.000185256000000,0.000240169000000,0.000078984000000,0.000211330000000,0.000656169000000 +0.000275330000000,0.000073453000000,0.000047379000000,0.000219626000000,0.000552663000000,0.001063082000000,0.000149306000000,0.000534490000000,0.001031477000000,0.000056071000000,0.000238194000000,0.000187231000000,0.000078194000000,0.000281256000000,0.000627725000000 +0.000248070000000,0.000070688000000,0.000046589000000,0.000223972000000,0.000667626000000,0.001052021000000,0.000076219000000,0.000642342000000,0.001161453000000,0.000056861000000,0.000185651000000,0.000203824000000,0.000078984000000,0.000211725000000,0.000626145000000 +0.000247675000000,0.000073453000000,0.000047380000000,0.000223182000000,0.000604021000000,0.001029107000000,0.000090046000000,0.000534490000000,0.001032268000000,0.000055676000000,0.000203034000000,0.000189207000000,0.000078589000000,0.000209355000000,0.000636021000000 +0.000245305000000,0.000105059000000,0.000046984000000,0.000223972000000,0.000558194000000,0.001047675000000,0.000076218000000,0.000570836000000,0.001084415000000,0.000075033000000,0.000203034000000,0.000250046000000,0.000080959000000,0.000244910000000,0.000746243000000 +0.000568861000000,0.000069108000000,0.000046589000000,0.000254391000000,0.000606392000000,0.001028712000000,0.000075824000000,0.000542391000000,0.001065847000000,0.000055280000000,0.000221996000000,0.000188021000000,0.000078984000000,0.000212120000000,0.000621403000000 +0.000646688000000,0.000071478000000,0.000047380000000,0.000225157000000,0.000554243000000,0.001087577000000,0.000110194000000,0.000621008000000,0.001036614000000,0.000056466000000,0.000203824000000,0.000182885000000,0.000165503000000,0.000210540000000,0.000626144000000 +0.000265453000000,0.000069108000000,0.000047774000000,0.000215281000000,0.000626145000000,0.001048465000000,0.000075428000000,0.000570441000000,0.001234934000000,0.000054885000000,0.000186046000000,0.000267428000000,0.000093602000000,0.000246095000000,0.000741897000000 +0.000250046000000,0.000072664000000,0.000116120000000,0.000222786000000,0.000594934000000,0.001069008000000,0.000075823000000,0.000534490000000,0.001040564000000,0.000055281000000,0.000188021000000,0.000184465000000,0.000078589000000,0.000210145000000,0.000693700000000 +0.000250046000000,0.000071873000000,0.000060417000000,0.000295083000000,0.000557798000000,0.001029107000000,0.000075824000000,0.000608762000000,0.001054786000000,0.000054886000000,0.000202244000000,0.000235823000000,0.000078589000000,0.000210145000000,0.000675132000000 +0.000284416000000,0.000069897000000,0.000046589000000,0.000219626000000,0.000630095000000,0.001037798000000,0.000076219000000,0.000541996000000,0.001014489000000,0.000054885000000,0.000328268000000,0.000188416000000,0.000079379000000,0.000246885000000,0.000632466000000 +0.000239379000000,0.000069107000000,0.000046985000000,0.000221207000000,0.000559379000000,0.001028712000000,0.000076219000000,0.000574787000000,0.001019231000000,0.000055281000000,0.000222787000000,0.000200664000000,0.000078984000000,0.000210145000000,0.000631280000000 +0.000245305000000,0.000069502000000,0.000046589000000,0.000223971000000,0.000597305000000,0.001047279000000,0.000075824000000,0.000546737000000,0.001021996000000,0.000055281000000,0.000203034000000,0.000186836000000,0.000078589000000,0.000265058000000,0.000627725000000 +0.000248861000000,0.000071873000000,0.000046984000000,0.000266244000000,0.000679873000000,0.001029502000000,0.000075428000000,0.000618638000000,0.001151971000000,0.000055675000000,0.000204614000000,0.000238194000000,0.000079774000000,0.000295083000000,0.000662885000000 +0.000317996000000,0.000068713000000,0.000049355000000,0.000221206000000,0.000560169000000,0.001037404000000,0.000075824000000,0.000574786000000,0.001055576000000,0.000056071000000,0.000220416000000,0.000187626000000,0.000079380000000,0.000211725000000,0.000635626000000 +0.000242539000000,0.000069503000000,0.000046589000000,0.000256367000000,0.000608366000000,0.001062687000000,0.000075429000000,0.000534095000000,0.001020416000000,0.000055676000000,0.000204614000000,0.000203824000000,0.000078984000000,0.000210145000000,0.000640367000000 +0.000241355000000,0.000069503000000,0.000046589000000,0.000240170000000,0.000555824000000,0.001129847000000,0.000079775000000,0.000626144000000,0.001079675000000,0.000055675000000,0.000203429000000,0.000201849000000,0.000115330000000,0.000248071000000,0.000634440000000 +0.000278885000000,0.000103873000000,0.000046589000000,0.000286786000000,0.000570836000000,0.001106144000000,0.000097552000000,0.000534885000000,0.001040564000000,0.000054886000000,0.000203429000000,0.000204219000000,0.000078984000000,0.000209354000000,0.000591379000000 +0.000260712000000,0.000069107000000,0.000046984000000,0.000220416000000,0.000704762000000,0.001081650000000,0.000076219000000,0.000574787000000,0.001023181000000,0.000055675000000,0.000242540000000,0.000241355000000,0.000078590000000,0.000209354000000,0.000674342000000 +0.000238985000000,0.000069898000000,0.000046195000000,0.000228318000000,0.000570441000000,0.001073749000000,0.000079380000000,0.000618243000000,0.001064662000000,0.000090836000000,0.000182095000000,0.000184466000000,0.000078589000000,0.000247281000000,0.000669206000000 +0.000249255000000,0.000069108000000,0.000046589000000,0.000220021000000,0.000594935000000,0.001121551000000,0.000077009000000,0.000537651000000,0.001029897000000,0.000072663000000,0.000181305000000,0.000195922000000,0.000079380000000,0.000209355000000,0.000605206000000 +0.000274935000000,0.000069108000000,0.000046195000000,0.000255577000000,0.000639576000000,0.001299724000000,0.000074639000000,0.000589008000000,0.001031083000000,0.000054491000000,0.000202639000000,0.000201453000000,0.000079379000000,0.000210144000000,0.000622589000000 +0.000254392000000,0.000068713000000,0.000046984000000,0.000216070000000,0.000586638000000,0.001047675000000,0.000075429000000,0.000539231000000,0.001050045000000,0.000054491000000,0.000203034000000,0.000239380000000,0.000078984000000,0.000245700000000,0.000590984000000 +0.000250836000000,0.000070688000000,0.000046194000000,0.000219626000000,0.000603626000000,0.001029502000000,0.000076218000000,0.001004218000000,0.001031477000000,0.000055280000000,0.000240564000000,0.000183676000000,0.000080960000000,0.000209750000000,0.001067033000000 +0.000267429000000,0.000069108000000,0.000066738000000,0.000219627000000,0.000626935000000,0.001037403000000,0.000076219000000,0.000630490000000,0.001014885000000,0.000056466000000,0.000204219000000,0.000203034000000,0.000078984000000,0.000212515000000,0.000620613000000 +0.000294688000000,0.000069108000000,0.000047380000000,0.000263478000000,0.000630885000000,0.001029502000000,0.000076219000000,0.000589009000000,0.001062687000000,0.000055281000000,0.000239774000000,0.000184466000000,0.000078985000000,0.000251231000000,0.000636416000000 +0.000253206000000,0.000070293000000,0.000046589000000,0.000220417000000,0.000595329000000,0.001050441000000,0.000075034000000,0.000553058000000,0.001148811000000,0.000056466000000,0.000234639000000,0.000185651000000,0.000079379000000,0.000209354000000,0.000585848000000 +0.000259923000000,0.000069108000000,0.000046589000000,0.000220021000000,0.000557009000000,0.001039379000000,0.000075034000000,0.000578737000000,0.001032268000000,0.000056071000000,0.000260713000000,0.000240960000000,0.000151675000000,0.000210540000000,0.000769157000000 +0.000259132000000,0.000071874000000,0.000046984000000,0.000223182000000,0.001110095000000,0.001037008000000,0.000076614000000,0.000534095000000,0.001005403000000,0.000056070000000,0.000186046000000,0.000204219000000,0.000078589000000,0.000300613000000,0.000841058000000 +0.000263873000000,0.000119280000000,0.000046194000000,0.000221206000000,0.000603626000000,0.001029502000000,0.000139823000000,0.000575577000000,0.001020416000000,0.000055676000000,0.000184070000000,0.000186046000000,0.000078589000000,0.000211329000000,0.000676317000000 +0.000263083000000,0.000069107000000,0.000046590000000,0.000248861000000,0.000588614000000,0.001090737000000,0.000086490000000,0.000540021000000,0.001017255000000,0.000054095000000,0.000204218000000,0.000186441000000,0.000078984000000,0.000209354000000,0.000636811000000 +0.000263083000000,0.000069107000000,0.000046194000000,0.000221601000000,0.000553453000000,0.001045700000000,0.000073453000000,0.000572021000000,0.001040564000000,0.000054885000000,0.000222391000000,0.000221206000000,0.000078589000000,0.000248071000000,0.000631280000000 +0.000261898000000,0.000069107000000,0.000046590000000,0.000221207000000,0.000590983000000,0.001089552000000,0.000076219000000,0.000536465000000,0.001018045000000,0.000056466000000,0.000201453000000,0.000186046000000,0.000078984000000,0.000209355000000,0.000679873000000 +0.000263478000000,0.000069502000000,0.000046589000000,0.000214491000000,0.000552663000000,0.001035033000000,0.000073454000000,0.000570836000000,0.001008169000000,0.000091627000000,0.000203428000000,0.000187231000000,0.000078589000000,0.000209749000000,0.000626934000000 +0.000254787000000,0.000068712000000,0.000046984000000,0.000250836000000,0.000648268000000,0.001036218000000,0.000073454000000,0.000574786000000,0.001021205000000,0.000055280000000,0.000192367000000,0.000204219000000,0.000081749000000,0.000246095000000,0.000669601000000 +0.000262688000000,0.000068712000000,0.000046589000000,0.000223182000000,0.000753749000000,0.001029502000000,0.000073453000000,0.000540416000000,0.001008563000000,0.000054885000000,0.000186441000000,0.000182886000000,0.000078984000000,0.000213306000000,0.000689749000000 +0.000259527000000,0.000069107000000,0.000046589000000,0.000223577000000,0.000553058000000,0.001037799000000,0.000087280000000,0.000576366000000,0.001099823000000,0.000054491000000,0.000259133000000,0.000239379000000,0.000078984000000,0.000212515000000,0.000628515000000 +0.000262688000000,0.000072268000000,0.000046590000000,0.000220021000000,0.000640761000000,0.001039774000000,0.000075428000000,0.000541997000000,0.001023972000000,0.000055676000000,0.000191182000000,0.000203428000000,0.000078984000000,0.000249256000000,0.000657749000000 +0.000259528000000,0.000069108000000,0.000046984000000,0.000258738000000,0.000554243000000,0.001037008000000,0.000069502000000,0.000573601000000,0.001079674000000,0.000055280000000,0.000203034000000,0.000186441000000,0.000094787000000,0.000211330000000,0.000752169000000 +0.000260712000000,0.000090046000000,0.000046985000000,0.000223181000000,0.000589799000000,0.001029502000000,0.000073848000000,0.000542391000000,0.001027132000000,0.000055676000000,0.000203429000000,0.000201453000000,0.000078985000000,0.000212120000000,0.000622984000000 +0.000299428000000,0.000082145000000,0.000047379000000,0.000218046000000,0.000594934000000,0.001179231000000,0.000104664000000,0.000648663000000,0.001038589000000,0.000055280000000,0.000221207000000,0.000201849000000,0.000078984000000,0.000245701000000,0.000658935000000 +0.000259133000000,0.000120466000000,0.000046984000000,0.000223972000000,0.000557403000000,0.001029107000000,0.000082540000000,0.000581503000000,0.001005008000000,0.000055280000000,0.000219231000000,0.000239379000000,0.000081750000000,0.000210145000000,0.000657354000000 +0.000258342000000,0.000071083000000,0.000081750000000,0.000256762000000,0.000594539000000,0.001037009000000,0.000069108000000,0.000539626000000,0.001016070000000,0.000056466000000,0.000203429000000,0.000191181000000,0.000078985000000,0.000208564000000,0.000621404000000 +0.000253602000000,0.000073058000000,0.000061206000000,0.000214490000000,0.000558984000000,0.001029502000000,0.000069898000000,0.000575181000000,0.001021206000000,0.000054885000000,0.000203824000000,0.000201058000000,0.000114145000000,0.000250046000000,0.000915724000000 +0.000253206000000,0.000069108000000,0.000046590000000,0.000214096000000,0.000632465000000,0.001072168000000,0.000069108000000,0.000534885000000,0.001032662000000,0.000054490000000,0.000204614000000,0.000203824000000,0.000094392000000,0.000228317000000,0.000627330000000 +0.000259528000000,0.000069108000000,0.000046589000000,0.000219626000000,0.000594145000000,0.001087181000000,0.000069108000000,0.000608367000000,0.001127083000000,0.000055676000000,0.000262688000000,0.000274935000000,0.000078984000000,0.000212515000000,0.000627725000000 +0.000265058000000,0.000070688000000,0.000046194000000,0.000220021000000,0.000560169000000,0.001054786000000,0.000069503000000,0.000536861000000,0.001019625000000,0.000056070000000,0.000185650000000,0.000192762000000,0.000078985000000,0.000246095000000,0.000679477000000 +0.000267824000000,0.000068712000000,0.000046589000000,0.000254787000000,0.000649453000000,0.001034638000000,0.000069503000000,0.000554243000000,0.001024366000000,0.000057256000000,0.000184465000000,0.000201848000000,0.000079774000000,0.000210935000000,0.000631280000000 +0.000259132000000,0.000072268000000,0.000047379000000,0.000216861000000,0.000555823000000,0.001037798000000,0.000070292000000,0.000630095000000,0.001018046000000,0.000124811000000,0.000205404000000,0.000184860000000,0.000150885000000,0.000213305000000,0.000635625000000 +0.000263083000000,0.000072268000000,0.000046194000000,0.000214886000000,0.000589404000000,0.001029502000000,0.000069107000000,0.000536070000000,0.001061107000000,0.000070688000000,0.000295478000000,0.000186441000000,0.000078985000000,0.000261503000000,0.000628119000000 +0.000259527000000,0.000069898000000,0.000046589000000,0.000220811000000,0.000602441000000,0.001047675000000,0.000069898000000,0.000571230000000,0.001125897000000,0.000056861000000,0.000244515000000,0.000221602000000,0.000079379000000,0.000210145000000,0.000626935000000 +0.000253997000000,0.000069503000000,0.000048565000000,0.000363428000000,0.000554638000000,0.001260613000000,0.000069503000000,0.000538440000000,0.001053206000000,0.000055281000000,0.000185651000000,0.000185256000000,0.000078589000000,0.000208960000000,0.000635231000000 +0.000262688000000,0.000068712000000,0.000046984000000,0.000244910000000,0.000608366000000,0.001037008000000,0.000124021000000,0.000576762000000,0.001051230000000,0.000056070000000,0.000202638000000,0.000184861000000,0.000078984000000,0.000246886000000,0.000628909000000 +0.000263083000000,0.000107429000000,0.000046589000000,0.000220416000000,0.000561749000000,0.001075329000000,0.000069898000000,0.000561749000000,0.001393749000000,0.000055676000000,0.000240564000000,0.000203824000000,0.000079774000000,0.000210540000000,0.000622588000000 +0.000254392000000,0.000069108000000,0.000047775000000,0.000218441000000,0.000589009000000,0.001037403000000,0.000069108000000,0.000536070000000,0.001018045000000,0.000054886000000,0.000203429000000,0.000254787000000,0.000078985000000,0.000210540000000,0.000626935000000 +0.000263873000000,0.000069503000000,0.000047379000000,0.000259922000000,0.000590589000000,0.001082835000000,0.000069898000000,0.000571626000000,0.001023181000000,0.000055280000000,0.000203429000000,0.000258737000000,0.000078984000000,0.000258737000000,0.000630095000000 +0.000261108000000,0.000069503000000,0.000048169000000,0.000225552000000,0.000605601000000,0.001037798000000,0.000072664000000,0.000542787000000,0.001123922000000,0.000056466000000,0.000203824000000,0.000189207000000,0.000079380000000,0.000210145000000,0.000623774000000 +0.000262688000000,0.000069108000000,0.000046984000000,0.000223182000000,0.000599281000000,0.001115626000000,0.000071873000000,0.000699626000000,0.001026342000000,0.000056070000000,0.000189207000000,0.000184071000000,0.000078984000000,0.000209355000000,0.000621799000000 +0.000257157000000,0.000069108000000,0.000047775000000,0.000214095000000,0.000552268000000,0.001075725000000,0.000069108000000,0.000540021000000,0.001024366000000,0.000053700000000,0.000239379000000,0.000220811000000,0.000078985000000,0.000245305000000,0.000657354000000 +0.000262688000000,0.000069503000000,0.000082935000000,0.000303379000000,0.000596515000000,0.001045305000000,0.000072664000000,0.000570046000000,0.001014095000000,0.000055281000000,0.000183280000000,0.000201849000000,0.000115725000000,0.000210145000000,0.000631280000000 +0.000263083000000,0.000069108000000,0.000046589000000,0.000223972000000,0.000591379000000,0.001072169000000,0.000070293000000,0.000574786000000,0.001025551000000,0.000054886000000,0.000190787000000,0.000188021000000,0.000081750000000,0.000212910000000,0.000627725000000 +0.000269799000000,0.000069108000000,0.000046984000000,0.000222787000000,0.000664466000000,0.001069799000000,0.000069108000000,0.000544367000000,0.001040169000000,0.000074243000000,0.000182096000000,0.000201454000000,0.000078984000000,0.000247675000000,0.000628120000000 +0.000284811000000,0.000068318000000,0.000046985000000,0.000220811000000,0.000589403000000,0.001073354000000,0.000069898000000,0.000574391000000,0.001076514000000,0.000056070000000,0.000241355000000,0.000203034000000,0.000078984000000,0.000210935000000,0.000599280000000 +0.000247676000000,0.000070688000000,0.000046589000000,0.000253602000000,0.000554243000000,0.001159083000000,0.000069108000000,0.000541602000000,0.001070589000000,0.000055281000000,0.000201058000000,0.000240169000000,0.000078985000000,0.000212120000000,0.000630095000000 +0.000246095000000,0.000069503000000,0.000046590000000,0.000216070000000,0.000625749000000,0.001085601000000,0.000105059000000,0.000570835000000,0.001020021000000,0.000055675000000,0.000180120000000,0.000205009000000,0.000078589000000,0.000281651000000,0.000647873000000 +0.000250836000000,0.000105454000000,0.000047379000000,0.000221206000000,0.000588218000000,0.001028712000000,0.000069108000000,0.000535281000000,0.001009354000000,0.000054886000000,0.000188811000000,0.000188811000000,0.000078985000000,0.000209355000000,0.000591774000000 +0.000283626000000,0.000069503000000,0.000046984000000,0.000222392000000,0.000561355000000,0.001581403000000,0.000069898000000,0.000573996000000,0.001011725000000,0.000054886000000,0.000183280000000,0.000182490000000,0.000078984000000,0.000210540000000,0.000673156000000 +0.000248070000000,0.000069108000000,0.000047380000000,0.000275725000000,0.000593749000000,0.001039774000000,0.000069108000000,0.000570836000000,0.001025156000000,0.000056070000000,0.000294688000000,0.000273355000000,0.000078985000000,0.000282441000000,0.000702787000000 +0.000239380000000,0.000071083000000,0.000046984000000,0.000233058000000,0.000553058000000,0.001037008000000,0.000069503000000,0.000534490000000,0.001039379000000,0.000055676000000,0.000188416000000,0.000184861000000,0.000079774000000,0.000210144000000,0.000592169000000 +0.000248465000000,0.000071873000000,0.000046589000000,0.000220812000000,0.000605996000000,0.001203724000000,0.000069108000000,0.000583873000000,0.001017255000000,0.000055675000000,0.000184466000000,0.000182491000000,0.000079774000000,0.000209749000000,0.000622983000000 +0.000276515000000,0.000069503000000,0.000047380000000,0.000214095000000,0.000590589000000,0.001160267000000,0.000069898000000,0.000542786000000,0.001046885000000,0.000055281000000,0.000201849000000,0.000182491000000,0.000162342000000,0.000244910000000,0.000590193000000 +0.000247675000000,0.000069108000000,0.000046589000000,0.000255972000000,0.000554638000000,0.001043725000000,0.000069502000000,0.000641552000000,0.001019230000000,0.000055281000000,0.000237799000000,0.000202243000000,0.000082144000000,0.000208959000000,0.000670787000000 +0.000238984000000,0.000069108000000,0.000046590000000,0.000219231000000,0.000605996000000,0.001082440000000,0.000071873000000,0.000534490000000,0.001206095000000,0.000055280000000,0.000203429000000,0.000249651000000,0.000078589000000,0.000209355000000,0.000623379000000 +0.000257947000000,0.000069108000000,0.000046984000000,0.000225157000000,0.000557404000000,0.001029897000000,0.000068713000000,0.000589404000000,0.001020020000000,0.000055281000000,0.000206589000000,0.000201058000000,0.000078589000000,0.000252812000000,0.000586243000000 +0.000246491000000,0.000069898000000,0.000046984000000,0.000214490000000,0.000594144000000,0.001077305000000,0.000069108000000,0.000576367000000,0.001043329000000,0.000055676000000,0.000182490000000,0.000203033000000,0.000079379000000,0.000210540000000,0.000754144000000 +0.000238589000000,0.000069108000000,0.000046984000000,0.000214095000000,0.000559774000000,0.001072169000000,0.000069503000000,0.000545947000000,0.001008564000000,0.000055280000000,0.000205799000000,0.000202639000000,0.000078985000000,0.000209355000000,0.000630885000000 +0.000241750000000,0.000069108000000,0.000066342000000,0.000291133000000,0.000603231000000,0.001037799000000,0.000069898000000,0.000571626000000,0.001087181000000,0.000129552000000,0.000221206000000,0.000221207000000,0.000079379000000,0.000246095000000,0.000591379000000 +0.000289947000000,0.000072268000000,0.000098343000000,0.000218836000000,0.000628120000000,0.001064268000000,0.000139824000000,0.000538836000000,0.001012119000000,0.000056860000000,0.000204219000000,0.000182885000000,0.000078985000000,0.000209750000000,0.000627330000000 +0.000321552000000,0.000141009000000,0.000047379000000,0.000219626000000,0.000611527000000,0.001036613000000,0.000069898000000,0.000608366000000,0.001010144000000,0.000054886000000,0.000190787000000,0.000182491000000,0.000080960000000,0.000210145000000,0.000639971000000 +0.000250441000000,0.000071083000000,0.000046589000000,0.000215280000000,0.000597700000000,0.001029107000000,0.000073849000000,0.000538441000000,0.001017255000000,0.000055281000000,0.000201453000000,0.000203429000000,0.000078589000000,0.000245305000000,0.000607972000000 +0.000243725000000,0.000068713000000,0.000046590000000,0.000291133000000,0.000555823000000,0.001036613000000,0.000069503000000,0.000585453000000,0.001023971000000,0.000054490000000,0.000240169000000,0.000182490000000,0.000114935000000,0.000209749000000,0.000634835000000 +0.000282046000000,0.000074244000000,0.000049750000000,0.000214885000000,0.000571231000000,0.001268514000000,0.000069503000000,0.000902688000000,0.001164218000000,0.000054886000000,0.000202639000000,0.000239774000000,0.000078589000000,0.000212120000000,0.000590984000000 +0.000243330000000,0.000071083000000,0.000049355000000,0.000214490000000,0.000608367000000,0.001348711000000,0.000069503000000,0.000604021000000,0.001008168000000,0.000055281000000,0.000203824000000,0.000204219000000,0.000078194000000,0.000208960000000,0.000626935000000 +0.000244910000000,0.000073059000000,0.000046589000000,0.000223972000000,0.000554243000000,0.001029107000000,0.000070293000000,0.000537255000000,0.001044515000000,0.000054490000000,0.000205799000000,0.000203824000000,0.000078590000000,0.000212910000000,0.000645502000000 +0.000248466000000,0.000069108000000,0.000048959000000,0.000490638000000,0.000594934000000,0.001073354000000,0.000068713000000,0.000622589000000,0.001033057000000,0.000055280000000,0.000240960000000,0.000189602000000,0.000079379000000,0.000210144000000,0.000592169000000 +0.000265848000000,0.000069108000000,0.000046589000000,0.000314441000000,0.000562145000000,0.001040169000000,0.000069503000000,0.000534885000000,0.001052811000000,0.000055281000000,0.000210145000000,0.000188812000000,0.000078985000000,0.000209354000000,0.000622589000000 +0.000238590000000,0.000071478000000,0.000047774000000,0.000215676000000,0.000588613000000,0.001038194000000,0.000069108000000,0.000579923000000,0.001023971000000,0.000054491000000,0.000185651000000,0.000238194000000,0.000078194000000,0.000345651000000,0.000626539000000 +0.000240564000000,0.000068712000000,0.000046984000000,0.000256762000000,0.000600860000000,0.001029502000000,0.000068713000000,0.000537650000000,0.001067428000000,0.000055675000000,0.000182886000000,0.000204219000000,0.000078984000000,0.000209750000000,0.000586243000000 +0.000279281000000,0.000072268000000,0.000049355000000,0.000215280000000,0.000554639000000,0.001045700000000,0.000105849000000,0.000609947000000,0.001113651000000,0.000055281000000,0.000204614000000,0.000201453000000,0.000078984000000,0.000245305000000,0.000725699000000 +0.000244515000000,0.000105058000000,0.000046985000000,0.000214490000000,0.000632860000000,0.001064663000000,0.000069503000000,0.000572416000000,0.001100613000000,0.000056466000000,0.000240169000000,0.000186441000000,0.000078984000000,0.000208564000000,0.000586243000000 +0.000246490000000,0.000085700000000,0.000046984000000,0.000220022000000,0.000552663000000,0.001087971000000,0.000069108000000,0.000534886000000,0.001040959000000,0.000073058000000,0.000184861000000,0.000221601000000,0.000078984000000,0.000209750000000,0.000669996000000 +0.000248071000000,0.000069108000000,0.000046589000000,0.000264663000000,0.000593354000000,0.001042934000000,0.000069503000000,0.000624959000000,0.001034243000000,0.000055281000000,0.000184861000000,0.000184466000000,0.000117700000000,0.000363824000000,0.000631280000000 +0.000272959000000,0.000069108000000,0.000046984000000,0.000222391000000,0.000592564000000,0.001037403000000,0.000068318000000,0.000538441000000,0.001039773000000,0.000056071000000,0.000184071000000,0.000186441000000,0.000095182000000,0.000210935000000,0.000590984000000 +0.000247675000000,0.000071874000000,0.000083330000000,0.000219626000000,0.000553848000000,0.001120761000000,0.000069108000000,0.000621008000000,0.001016860000000,0.000055676000000,0.000183675000000,0.000184465000000,0.000078984000000,0.000208959000000,0.000627330000000 +0.000238984000000,0.000068713000000,0.000046984000000,0.000214491000000,0.000702391000000,0.001058737000000,0.000069503000000,0.000537256000000,0.001023576000000,0.000056466000000,0.000275330000000,0.000184861000000,0.000078985000000,0.000209750000000,0.000635626000000 +0.000245701000000,0.000068713000000,0.000046589000000,0.000251231000000,0.000567281000000,0.001029502000000,0.000069503000000,0.000617453000000,0.001008958000000,0.000054885000000,0.000183676000000,0.000222787000000,0.000078984000000,0.000216466000000,0.000594539000000 +0.000284811000000,0.000069503000000,0.000047774000000,0.000215280000000,0.000590984000000,0.001037798000000,0.000073849000000,0.000579132000000,0.001445107000000,0.000058441000000,0.000191577000000,0.000186836000000,0.000079379000000,0.000209355000000,0.000682638000000 +0.000248071000000,0.000068713000000,0.000046589000000,0.000214886000000,0.000636416000000,0.001029107000000,0.000072268000000,0.000536466000000,0.001038589000000,0.000056466000000,0.000183281000000,0.000189601000000,0.000080960000000,0.000225157000000,0.000627330000000 +0.000249256000000,0.000069108000000,0.000046195000000,0.000224367000000,0.000561750000000,0.001039378000000,0.000069503000000,0.000621008000000,0.001015280000000,0.000055281000000,0.000183281000000,0.000201453000000,0.000079379000000,0.000212910000000,0.000590589000000 +0.000248465000000,0.000069503000000,0.000046589000000,0.000214096000000,0.000599675000000,0.001029502000000,0.000071083000000,0.000543972000000,0.001079674000000,0.000056861000000,0.000220416000000,0.000201849000000,0.000079379000000,0.000210540000000,0.000635625000000 +0.000283231000000,0.000069503000000,0.000046985000000,0.000249651000000,0.000603626000000,0.001247971000000,0.000069503000000,0.000588219000000,0.001027921000000,0.000055281000000,0.000188811000000,0.000293898000000,0.000078985000000,0.000210145000000,0.000592564000000 +0.000239379000000,0.000069108000000,0.000047774000000,0.000214095000000,0.000641157000000,0.001078489000000,0.000085701000000,0.000630490000000,0.001078095000000,0.000054885000000,0.000205009000000,0.000184861000000,0.000078984000000,0.000212120000000,0.000621799000000 +0.000247280000000,0.000104663000000,0.000047379000000,0.000223182000000,0.000590589000000,0.001079675000000,0.000069108000000,0.000796811000000,0.001104959000000,0.000055281000000,0.000182885000000,0.000201454000000,0.000114540000000,0.000209355000000,0.000644317000000 +0.000246885000000,0.000070688000000,0.000047380000000,0.000216860000000,0.000554243000000,0.001390588000000,0.000069503000000,0.000575577000000,0.001059132000000,0.000055676000000,0.000242145000000,0.000184070000000,0.000091626000000,0.000223182000000,0.000586244000000 +0.000290737000000,0.000069108000000,0.000046984000000,0.000255972000000,0.000641552000000,0.001071774000000,0.000069108000000,0.000605601000000,0.001060712000000,0.000091626000000,0.000202244000000,0.000219626000000,0.000078589000000,0.000208959000000,0.000623379000000 +0.000239380000000,0.000069108000000,0.000048169000000,0.000224367000000,0.000557404000000,0.001165403000000,0.000069108000000,0.000534490000000,0.001019230000000,0.000069898000000,0.000205404000000,0.000201454000000,0.000078984000000,0.000209355000000,0.000586243000000 +0.000306144000000,0.000069108000000,0.000046984000000,0.000221601000000,0.000594539000000,0.001225452000000,0.000069108000000,0.000588614000000,0.001008959000000,0.000055281000000,0.000272960000000,0.000201453000000,0.000078984000000,0.000210935000000,0.000728070000000 +0.000319577000000,0.000069503000000,0.000046194000000,0.000222787000000,0.000882144000000,0.001267329000000,0.000069898000000,0.000534490000000,0.001068613000000,0.000055675000000,0.000314836000000,0.000204218000000,0.000078589000000,0.000214491000000,0.000645502000000 +0.000255972000000,0.000071083000000,0.000047379000000,0.000269799000000,0.000740317000000,0.001987131000000,0.000069503000000,0.000571231000000,0.001380317000000,0.000054886000000,0.000203033000000,0.000188416000000,0.000081355000000,0.000212515000000,0.000610342000000 +0.000238589000000,0.000072269000000,0.000046195000000,0.000219626000000,0.000557404000000,0.001621304000000,0.000069108000000,0.000535280000000,0.001023576000000,0.000056465000000,0.000205009000000,0.000238985000000,0.000078984000000,0.000210935000000,0.000659330000000 +0.000244910000000,0.000067922000000,0.000065947000000,0.000218046000000,0.000596515000000,0.001065058000000,0.000069898000000,0.000580317000000,0.001501601000000,0.000055676000000,0.000204219000000,0.000183675000000,0.000078589000000,0.000210145000000,0.000786934000000 +0.000316021000000,0.000069107000000,0.000099527000000,0.000224367000000,0.000561750000000,0.001021206000000,0.000069108000000,0.000571231000000,0.001017650000000,0.000056466000000,0.000238984000000,0.000204614000000,0.000078984000000,0.000209354000000,0.000630490000000 +0.000249651000000,0.000069502000000,0.000046985000000,0.000295478000000,0.000591774000000,0.001028712000000,0.000072269000000,0.000538441000000,0.001018835000000,0.000056861000000,0.000201849000000,0.000184861000000,0.000078589000000,0.000213305000000,0.000598885000000 +0.000243725000000,0.000068712000000,0.000046984000000,0.000215675000000,0.000624959000000,0.001051230000000,0.000140614000000,0.000573206000000,0.001079675000000,0.000055280000000,0.000203034000000,0.000221602000000,0.000153256000000,0.000210145000000,0.000675527000000 +0.000248861000000,0.000105848000000,0.000046984000000,0.000214491000000,0.000558984000000,0.001037403000000,0.000069503000000,0.000540021000000,0.001025552000000,0.000054886000000,0.000205799000000,0.000202638000000,0.000151675000000,0.000212515000000,0.000590194000000 +0.000401354000000,0.000069108000000,0.000047775000000,0.000214491000000,0.000590984000000,0.001087576000000,0.000069503000000,0.000579922000000,0.001034638000000,0.000055676000000,0.000186836000000,0.000187626000000,0.000097157000000,0.000224762000000,0.000617058000000 +0.000244515000000,0.000069108000000,0.000046589000000,0.000214095000000,0.000558984000000,0.001121156000000,0.000069898000000,0.000584662000000,0.001063872000000,0.000054885000000,0.000220021000000,0.000202244000000,0.000078984000000,0.000212120000000,0.000997897000000 +0.000245305000000,0.000071479000000,0.000046589000000,0.000233848000000,0.000598095000000,0.001059922000000,0.000075429000000,0.000571625000000,0.001077700000000,0.000055676000000,0.000182491000000,0.000203429000000,0.000079380000000,0.000208960000000,0.000671577000000 +0.000396614000000,0.000069503000000,0.000047774000000,0.000226738000000,0.000589009000000,0.001037403000000,0.000069898000000,0.000609946000000,0.001043329000000,0.000092022000000,0.000185256000000,0.000239379000000,0.000078589000000,0.000227132000000,0.000590984000000 +0.000357502000000,0.000072268000000,0.000046984000000,0.000214490000000,0.000553848000000,0.001029502000000,0.000073849000000,0.000539626000000,0.001070193000000,0.000055676000000,0.000182491000000,0.000202639000000,0.000078194000000,0.000209355000000,0.000622193000000 +0.000247675000000,0.000068318000000,0.000046985000000,0.000221206000000,0.000634836000000,0.001037799000000,0.000069108000000,0.000574787000000,0.001019626000000,0.000056861000000,0.000202243000000,0.000204219000000,0.000078984000000,0.000208960000000,0.000633256000000 +0.000314836000000,0.000074639000000,0.000046589000000,0.000256762000000,0.000561750000000,0.001078095000000,0.000069503000000,0.000539626000000,0.001005798000000,0.000054885000000,0.000235428000000,0.000185256000000,0.000078984000000,0.000211330000000,0.000585848000000 +0.000246096000000,0.000071083000000,0.000047774000000,0.000216466000000,0.000640367000000,0.001037403000000,0.000069503000000,0.000572811000000,0.001028317000000,0.000055280000000,0.000190391000000,0.000201849000000,0.000078984000000,0.000210540000000,0.000622194000000 +0.000248070000000,0.000073454000000,0.000046590000000,0.000220021000000,0.000666440000000,0.001028712000000,0.000069898000000,0.000536465000000,0.001023972000000,0.000054886000000,0.000186836000000,0.000203824000000,0.000108614000000,0.000212120000000,0.000594934000000 +0.000244911000000,0.000069108000000,0.000047379000000,0.000214885000000,0.000557008000000,0.001036613000000,0.000069108000000,0.000580712000000,0.001041354000000,0.000056071000000,0.000203429000000,0.000202638000000,0.000079379000000,0.000209354000000,0.000609157000000 +0.000271379000000,0.000069108000000,0.000046589000000,0.000311281000000,0.000678292000000,0.001192662000000,0.000105059000000,0.000573601000000,0.001089551000000,0.000054885000000,0.000238194000000,0.000186046000000,0.000078985000000,0.000209355000000,0.000633650000000 +0.000238984000000,0.000090441000000,0.000046985000000,0.000238589000000,0.000622194000000,0.001037009000000,0.000069108000000,0.000545157000000,0.001034638000000,0.000056071000000,0.000180515000000,0.000204219000000,0.000078984000000,0.000212120000000,0.000599280000000 +0.000238589000000,0.000068713000000,0.000082935000000,0.000221206000000,0.000553848000000,0.001077700000000,0.000069898000000,0.000585848000000,0.001010934000000,0.000055280000000,0.000180120000000,0.000221206000000,0.000078984000000,0.000340910000000,0.000631280000000 +0.000313256000000,0.000071873000000,0.000048170000000,0.000224762000000,0.000590194000000,0.001063082000000,0.000069108000000,0.000534885000000,0.001040564000000,0.000056861000000,0.000204219000000,0.000233058000000,0.000079379000000,0.000211330000000,0.000634836000000 +0.000239380000000,0.000071873000000,0.000046984000000,0.000255972000000,0.000552662000000,0.001060317000000,0.000069108000000,0.000573997000000,0.001130243000000,0.000054885000000,0.000183676000000,0.000189207000000,0.000078984000000,0.000282045000000,0.000612317000000 +0.000248070000000,0.000069898000000,0.000046589000000,0.000214490000000,0.000597700000000,0.001072564000000,0.000069503000000,0.000534490000000,0.001062292000000,0.000055280000000,0.000234639000000,0.000203824000000,0.000079380000000,0.000247675000000,0.000643922000000 +0.000244120000000,0.000069108000000,0.000047775000000,0.000214491000000,0.000557008000000,0.001029502000000,0.000069503000000,0.000606391000000,0.001012909000000,0.000054886000000,0.000182885000000,0.000238194000000,0.000079379000000,0.000210935000000,0.000669601000000 +0.000283231000000,0.000069108000000,0.000047379000000,0.000221996000000,0.000595329000000,0.001035033000000,0.000069108000000,0.000578737000000,0.001098638000000,0.000054886000000,0.000205799000000,0.000203823000000,0.000078985000000,0.000210145000000,0.000591774000000 +0.000244120000000,0.000071873000000,0.000047379000000,0.000266639000000,0.000851724000000,0.001075724000000,0.000069108000000,0.000539231000000,0.001017650000000,0.000137058000000,0.000186441000000,0.000184860000000,0.000098737000000,0.000208959000000,0.000622589000000 +0.000248860000000,0.000069108000000,0.000046590000000,0.000219626000000,0.000628515000000,0.001072169000000,0.000069503000000,0.000570836000000,0.001086390000000,0.000055675000000,0.000188417000000,0.000189996000000,0.000240960000000,0.000214491000000,0.000590984000000 +0.000247281000000,0.000069107000000,0.000087280000000,0.000219626000000,0.000554639000000,0.001029502000000,0.000069502000000,0.000534490000000,0.001010540000000,0.000054886000000,0.000218441000000,0.000203428000000,0.000250441000000,0.000212120000000,0.000622194000000 +0.000318786000000,0.000069107000000,0.000093206000000,0.000214490000000,0.000595329000000,0.001406786000000,0.000073848000000,0.000699626000000,0.001076909000000,0.000056071000000,0.000203824000000,0.000224761000000,0.000119676000000,0.000212910000000,0.000622984000000 +0.000249650000000,0.000069107000000,0.000050145000000,0.000250836000000,0.000557798000000,0.001077699000000,0.000126392000000,0.000564120000000,0.001157502000000,0.000055280000000,0.000203034000000,0.000184070000000,0.000112170000000,0.000210145000000,0.000586243000000 +0.000248465000000,0.000069502000000,0.000050540000000,0.000219626000000,0.000594539000000,0.001084810000000,0.000069503000000,0.000561354000000,0.001108514000000,0.000056071000000,0.000180911000000,0.000201453000000,0.000079379000000,0.000227133000000,0.000622589000000 +0.000246491000000,0.000174984000000,0.000050540000000,0.000220416000000,0.000559379000000,0.001078094000000,0.000072663000000,0.000643923000000,0.001633156000000,0.000056070000000,0.000334194000000,0.000201058000000,0.000098343000000,0.000211330000000,0.000594934000000 +0.000336169000000,0.000069108000000,0.000050540000000,0.000214886000000,0.000609947000000,0.001085205000000,0.000070293000000,0.000539626000000,0.001131033000000,0.000055676000000,0.000216466000000,0.000185256000000,0.000095182000000,0.000212910000000,0.000608762000000 +0.000243725000000,0.000069108000000,0.000050540000000,0.000228712000000,0.000628515000000,0.001127082000000,0.000069108000000,0.000633255000000,0.001035033000000,0.000056466000000,0.000183281000000,0.000253996000000,0.000078589000000,0.000246885000000,0.000628514000000 +0.000250046000000,0.000069108000000,0.000053700000000,0.000303380000000,0.000559774000000,0.001090342000000,0.000070293000000,0.000538836000000,0.001027527000000,0.000054886000000,0.000193552000000,0.000203033000000,0.000078589000000,0.000211725000000,0.000599280000000 +0.000323923000000,0.000070688000000,0.000203823000000,0.000221206000000,0.000617058000000,0.001029897000000,0.000069503000000,0.000574786000000,0.001020020000000,0.000055281000000,0.000229107000000,0.000182490000000,0.000078589000000,0.000208960000000,0.000629700000000 +0.000247280000000,0.000069107000000,0.000099528000000,0.000221206000000,0.000623379000000,0.001084811000000,0.000068713000000,0.000585058000000,0.001025552000000,0.000055281000000,0.000260317000000,0.000182096000000,0.000078589000000,0.000245305000000,0.000635626000000 +0.000246096000000,0.000067922000000,0.000086096000000,0.000221207000000,0.000553453000000,0.001078095000000,0.000068713000000,0.000537650000000,0.001024761000000,0.000056466000000,0.000203824000000,0.000294688000000,0.000081750000000,0.000208564000000,0.000591379000000 +0.000246490000000,0.000069503000000,0.000061207000000,0.000250046000000,0.000641157000000,0.001143675000000,0.000069503000000,0.000575577000000,0.001016070000000,0.000074244000000,0.000204219000000,0.000234639000000,0.000078194000000,0.000216071000000,0.000626540000000 +0.000286392000000,0.000068712000000,0.000047774000000,0.000223181000000,0.000554243000000,0.001043724000000,0.000069503000000,0.000542786000000,0.001024762000000,0.000055676000000,0.000221207000000,0.000186046000000,0.000078985000000,0.000259923000000,0.000599280000000 +0.000248861000000,0.000071083000000,0.000046589000000,0.000219627000000,0.000600861000000,0.001050045000000,0.000069503000000,0.000570836000000,0.001045304000000,0.000055675000000,0.000204219000000,0.000186046000000,0.000078984000000,0.000210935000000,0.000753354000000 +0.000244515000000,0.000072663000000,0.000046194000000,0.000214885000000,0.000580712000000,0.001268515000000,0.000110985000000,0.000536466000000,0.001023971000000,0.000056861000000,0.000181701000000,0.000240564000000,0.000078985000000,0.000211330000000,0.000663675000000 +0.000246095000000,0.000108218000000,0.000046589000000,0.000254392000000,0.000616663000000,0.001102194000000,0.000069503000000,0.000580317000000,0.001142095000000,0.000054490000000,0.000203429000000,0.000187231000000,0.000079379000000,0.000249651000000,0.000590589000000 +0.000316416000000,0.000085700000000,0.000046590000000,0.000214886000000,0.000590194000000,0.001066638000000,0.000069503000000,0.000575182000000,0.001013700000000,0.000056466000000,0.000204219000000,0.000188021000000,0.000097552000000,0.000209355000000,0.000662490000000 +0.000248860000000,0.000069107000000,0.000046589000000,0.000221206000000,0.000555428000000,0.001050441000000,0.000070688000000,0.000541996000000,0.001026736000000,0.000055281000000,0.000257157000000,0.000187231000000,0.000081750000000,0.000209355000000,0.000623774000000 +0.000248071000000,0.000069108000000,0.000048170000000,0.000214886000000,0.000601255000000,0.001068218000000,0.000068318000000,0.000592564000000,0.001016465000000,0.000054885000000,0.000203429000000,0.000182885000000,0.000078589000000,0.000247676000000,0.000586243000000 +0.000336564000000,0.000069898000000,0.000048170000000,0.000269403000000,0.000552663000000,0.001082441000000,0.000068713000000,0.000544762000000,0.001013700000000,0.000056071000000,0.000203824000000,0.000224367000000,0.000078589000000,0.000211330000000,0.000621799000000 +0.000248071000000,0.000069108000000,0.000118885000000,0.000224367000000,0.000605996000000,0.001028712000000,0.000069503000000,0.000589404000000,0.001024366000000,0.000056465000000,0.000202244000000,0.000186836000000,0.000078984000000,0.000212515000000,0.000645107000000 +0.000248466000000,0.000069108000000,0.000070293000000,0.000221601000000,0.000608762000000,0.001062292000000,0.000069898000000,0.000538835000000,0.001016860000000,0.000056071000000,0.000241355000000,0.000195132000000,0.000078589000000,0.000281256000000,0.000591379000000 +0.000247675000000,0.000071873000000,0.000151675000000,0.000221207000000,0.000553848000000,0.001029502000000,0.000075429000000,0.000573601000000,0.001125502000000,0.000055676000000,0.000205404000000,0.000187626000000,0.000078984000000,0.000213701000000,0.000628120000000 +0.000335775000000,0.000069107000000,0.000150095000000,0.000244120000000,0.000588614000000,0.001085601000000,0.000069898000000,0.000570441000000,0.001037798000000,0.000056071000000,0.000193552000000,0.000186046000000,0.000079379000000,0.000212120000000,0.000619033000000 +0.000241354000000,0.000072269000000,0.000064762000000,0.000214886000000,0.000553848000000,0.001140515000000,0.000072268000000,0.000548712000000,0.001011724000000,0.000055676000000,0.000203428000000,0.000285207000000,0.000079380000000,0.000282046000000,0.000594145000000 +0.000248070000000,0.000069503000000,0.000050540000000,0.000224762000000,0.000589799000000,0.001047280000000,0.000069503000000,0.000571626000000,0.001029502000000,0.000054885000000,0.000182095000000,0.000184466000000,0.000078984000000,0.000208960000000,0.000724909000000 +0.000280466000000,0.000074244000000,0.000063181000000,0.000215675000000,0.000589009000000,0.001029107000000,0.000089651000000,0.000542391000000,0.001059921000000,0.000124416000000,0.000244515000000,0.000201848000000,0.000079380000000,0.000210145000000,0.000590983000000 +0.000252021000000,0.000106638000000,0.000046984000000,0.000213700000000,0.000561749000000,0.001085205000000,0.000114935000000,0.000626540000000,0.001018046000000,0.000069503000000,0.000205009000000,0.000184465000000,0.000166293000000,0.000253206000000,0.000626540000000 +0.000238589000000,0.000073453000000,0.000046590000000,0.000250441000000,0.000606786000000,0.001029107000000,0.000069898000000,0.000542786000000,0.001134588000000,0.000056070000000,0.000184466000000,0.000217256000000,0.000079379000000,0.000212515000000,0.000685403000000 +0.000244911000000,0.000069108000000,0.000046589000000,0.000217256000000,0.000553453000000,0.001037404000000,0.000068317000000,0.000622194000000,0.001072169000000,0.000055281000000,0.000184071000000,0.000204614000000,0.000078984000000,0.000209355000000,0.000592170000000 +0.000315231000000,0.000068713000000,0.000046590000000,0.000218046000000,0.000605996000000,0.001087181000000,0.000069107000000,0.000572416000000,0.001061502000000,0.000056466000000,0.000240564000000,0.000185256000000,0.000080565000000,0.000246096000000,0.000622983000000 +0.000244515000000,0.000071083000000,0.000046589000000,0.000214490000000,0.000710688000000,0.001036614000000,0.000069502000000,0.000534491000000,0.001008959000000,0.000056466000000,0.000198688000000,0.000181306000000,0.000078589000000,0.000213305000000,0.000626540000000 +0.000240959000000,0.000069107000000,0.000065157000000,0.000347231000000,0.000591774000000,0.001065453000000,0.000069502000000,0.000570835000000,0.001023971000000,0.000056466000000,0.000182095000000,0.000204219000000,0.000078589000000,0.000209750000000,0.000586243000000 +0.000244120000000,0.000071873000000,0.000046984000000,0.000243330000000,0.000594935000000,0.001163428000000,0.000069898000000,0.000535281000000,0.001027132000000,0.000056071000000,0.000204614000000,0.000295478000000,0.000078589000000,0.000255972000000,0.000622984000000 +0.000295082000000,0.000072268000000,0.000046589000000,0.000224367000000,0.000557799000000,0.001029502000000,0.000068713000000,0.000570045000000,0.001370440000000,0.000056071000000,0.000205008000000,0.000186837000000,0.000078589000000,0.000212120000000,0.000586243000000 +0.000248070000000,0.000069898000000,0.000046590000000,0.000219626000000,0.000607971000000,0.001079675000000,0.000069503000000,0.000542787000000,0.001061897000000,0.000056466000000,0.000219626000000,0.000188021000000,0.000079379000000,0.000247675000000,0.000621799000000 +0.000240170000000,0.000069503000000,0.000046589000000,0.000255972000000,0.000646292000000,0.001029897000000,0.000069503000000,0.000699626000000,0.001026342000000,0.000057651000000,0.000195133000000,0.000203429000000,0.000080564000000,0.000261897000000,0.000631675000000 +0.000249651000000,0.000069503000000,0.000046590000000,0.000214095000000,0.000561355000000,0.001038193000000,0.000069503000000,0.000585058000000,0.001047280000000,0.000054886000000,0.000201453000000,0.000238589000000,0.000114935000000,0.000210540000000,0.000643132000000 +0.000657354000000,0.000071478000000,0.000046194000000,0.000223181000000,0.000664465000000,0.001040169000000,0.000105453000000,0.000538836000000,0.001017650000000,0.000054096000000,0.000183675000000,0.000187231000000,0.000091231000000,0.000209355000000,0.000633255000000 +0.000333799000000,0.000088861000000,0.000046984000000,0.000221602000000,0.000631280000000,0.001038193000000,0.000069503000000,0.000630095000000,0.001057156000000,0.000054885000000,0.000183675000000,0.000186836000000,0.000079775000000,0.000246095000000,0.000671577000000 +0.000275725000000,0.000068713000000,0.000046589000000,0.000261107000000,0.000560564000000,0.001029502000000,0.000068713000000,0.000540811000000,0.001132613000000,0.000072268000000,0.000205799000000,0.000204218000000,0.000078984000000,0.000208960000000,0.000594144000000 +0.000246490000000,0.000069503000000,0.000047379000000,0.000220417000000,0.000605996000000,0.001036613000000,0.000073848000000,0.000575971000000,0.001068614000000,0.000056466000000,0.000206589000000,0.000183675000000,0.000078985000000,0.000211725000000,0.000634836000000 +0.000238984000000,0.000068713000000,0.000046195000000,0.000217256000000,0.000553848000000,0.001042935000000,0.000072268000000,0.000583082000000,0.001005009000000,0.000054886000000,0.000203429000000,0.000453502000000,0.000078589000000,0.000295873000000,0.000627330000000 +0.000238589000000,0.000069108000000,0.000046589000000,0.000215676000000,0.001033848000000,0.001096267000000,0.000069108000000,0.000549898000000,0.001072959000000,0.000054095000000,0.000202244000000,0.000219626000000,0.000078195000000,0.000213700000000,0.000590983000000 +0.000274539000000,0.000069503000000,0.000049750000000,0.000260317000000,0.000626145000000,0.001029107000000,0.000071873000000,0.000586638000000,0.001011329000000,0.000059231000000,0.000272960000000,0.000201849000000,0.000078589000000,0.000210540000000,0.000758885000000 +0.000250441000000,0.000068713000000,0.000047379000000,0.000214491000000,0.000608762000000,0.001072564000000,0.000069898000000,0.000545157000000,0.001070588000000,0.000054490000000,0.000201453000000,0.000222787000000,0.000079380000000,0.000248466000000,0.000625749000000 +0.000247676000000,0.000067922000000,0.000046589000000,0.000262688000000,0.000562539000000,0.001028317000000,0.000069502000000,0.000605996000000,0.001052811000000,0.000075824000000,0.000203823000000,0.000203034000000,0.000097552000000,0.000210145000000,0.000602441000000 +0.000293503000000,0.000068317000000,0.000047379000000,0.000229897000000,0.000780219000000,0.001050440000000,0.000069898000000,0.000538046000000,0.001045305000000,0.000072268000000,0.000202243000000,0.000201848000000,0.000144170000000,0.000208959000000,0.000672761000000 +0.000327873000000,0.000071083000000,0.000045799000000,0.000257552000000,0.000606786000000,0.001028712000000,0.000069503000000,0.000578737000000,0.001023181000000,0.000068317000000,0.000239380000000,0.000189601000000,0.000078589000000,0.000244515000000,0.000586243000000 +0.000344861000000,0.000069108000000,0.000103083000000,0.000219627000000,0.000554638000000,0.001042144000000,0.000069503000000,0.000745848000000,0.001538736000000,0.000055281000000,0.000201849000000,0.000202639000000,0.000078589000000,0.000209749000000,0.000623379000000 +0.000294293000000,0.000068713000000,0.000062391000000,0.000218440000000,0.000611922000000,0.001042934000000,0.000069108000000,0.000791280000000,0.001017650000000,0.000056070000000,0.000182885000000,0.000273355000000,0.000079379000000,0.000212910000000,0.000670391000000 +0.000323527000000,0.000069503000000,0.000047380000000,0.000223577000000,0.000553058000000,0.001037008000000,0.000195132000000,0.000543972000000,0.001034638000000,0.000058441000000,0.000203823000000,0.000224367000000,0.000078589000000,0.000357108000000,0.000586639000000 +0.000363034000000,0.000115330000000,0.000046984000000,0.000214095000000,0.000657749000000,0.001189897000000,0.000154836000000,0.000572416000000,0.001067428000000,0.000055280000000,0.000202243000000,0.000219231000000,0.000078589000000,0.000210539000000,0.000631280000000 +0.000292317000000,0.000071478000000,0.000046984000000,0.000264664000000,0.000605997000000,0.001071773000000,0.000157207000000,0.000540416000000,0.001022391000000,0.000099923000000,0.000272960000000,0.000188021000000,0.000078194000000,0.000214490000000,0.000674342000000 +0.000261502000000,0.000072268000000,0.000046590000000,0.000219626000000,0.000553848000000,0.001029502000000,0.000227528000000,0.000574391000000,0.001021601000000,0.000071083000000,0.000183676000000,0.000220811000000,0.000081750000000,0.000213700000000,0.000624169000000 +0.000248071000000,0.000068713000000,0.000046589000000,0.000216860000000,0.000589009000000,0.001123922000000,0.000214095000000,0.000541601000000,0.001020416000000,0.000054886000000,0.000188812000000,0.000203034000000,0.000078984000000,0.000209355000000,0.000635626000000 +0.000243725000000,0.000069503000000,0.000046985000000,0.000219627000000,0.000553453000000,0.001029502000000,0.000125602000000,0.000612317000000,0.001021205000000,0.000054491000000,0.000184466000000,0.000184861000000,0.000078985000000,0.000214490000000,0.000613107000000 +0.000285601000000,0.000069108000000,0.000046194000000,0.000257947000000,0.000590194000000,0.001250341000000,0.000075824000000,0.000570836000000,0.001048861000000,0.000054885000000,0.000296268000000,0.000203034000000,0.000078984000000,0.000225552000000,0.000897157000000 +0.000244910000000,0.000069108000000,0.000047379000000,0.000220021000000,0.000553058000000,0.001029897000000,0.000082540000000,0.000538836000000,0.001059132000000,0.000055676000000,0.000432959000000,0.000191577000000,0.000141799000000,0.000210540000000,0.000627329000000 +0.000249651000000,0.000069108000000,0.000046984000000,0.000214885000000,0.000643132000000,0.001049651000000,0.000069108000000,0.000572021000000,0.001010144000000,0.000056466000000,0.000218046000000,0.000220812000000,0.000083725000000,0.000210145000000,0.000662490000000 +0.000243725000000,0.000069108000000,0.000046984000000,0.000214491000000,0.000592959000000,0.001029107000000,0.000068713000000,0.000539626000000,0.001026737000000,0.000054885000000,0.000275724000000,0.000184466000000,0.000092021000000,0.000208564000000,0.000598886000000 +0.000296663000000,0.000069503000000,0.000046985000000,0.000250836000000,0.000553058000000,0.001036219000000,0.000070293000000,0.000575181000000,0.001006588000000,0.000056071000000,0.000183280000000,0.000184861000000,0.000079774000000,0.000208960000000,0.000650639000000 +0.000250441000000,0.000071479000000,0.000046589000000,0.000225157000000,0.000612713000000,0.001029502000000,0.000075429000000,0.000539231000000,0.001050045000000,0.000054491000000,0.000204218000000,0.000189207000000,0.000079379000000,0.000208960000000,0.000622589000000 +0.000239379000000,0.000069108000000,0.000047774000000,0.000214096000000,0.000554638000000,0.001078885000000,0.000069898000000,0.000604811000000,0.001020416000000,0.000056070000000,0.000205404000000,0.000219231000000,0.000078985000000,0.000246885000000,0.000590983000000 +0.000247676000000,0.000145354000000,0.000046985000000,0.000215280000000,0.000590983000000,0.001029897000000,0.000074243000000,0.000570836000000,0.001057156000000,0.000053701000000,0.000188811000000,0.000203034000000,0.000078984000000,0.000210540000000,0.000622194000000 +0.000325898000000,0.000123626000000,0.000046589000000,0.000214885000000,0.000595329000000,0.001050440000000,0.000069503000000,0.000541997000000,0.001117996000000,0.000055281000000,0.000274539000000,0.000181306000000,0.000079380000000,0.000209355000000,0.000587033000000 +0.000253996000000,0.000092811000000,0.000064367000000,0.000508416000000,0.000557799000000,0.001084811000000,0.000105058000000,0.000576761000000,0.001017255000000,0.000055280000000,0.000193552000000,0.000204219000000,0.000078984000000,0.000249256000000,0.000669602000000 +0.000244120000000,0.000084516000000,0.000046589000000,0.000219626000000,0.000629305000000,0.001123527000000,0.000069898000000,0.000543972000000,0.001117996000000,0.000092021000000,0.000224762000000,0.000201848000000,0.000078984000000,0.000208564000000,0.000622588000000 +0.000325898000000,0.000073453000000,0.000046985000000,0.000215675000000,0.000558983000000,0.001044910000000,0.000070688000000,0.000576367000000,0.001045304000000,0.000054886000000,0.000198687000000,0.000240959000000,0.000097157000000,0.000211330000000,0.000595330000000 +0.000244515000000,0.000069107000000,0.000047379000000,0.000250441000000,0.000597305000000,0.001135379000000,0.000069107000000,0.000540021000000,0.001025552000000,0.000059627000000,0.000255576000000,0.000182490000000,0.000095182000000,0.000261108000000,0.000627725000000 +0.000243725000000,0.000069503000000,0.000046984000000,0.000223182000000,0.000628910000000,0.001030687000000,0.000068712000000,0.000615478000000,0.001008564000000,0.000056466000000,0.000206194000000,0.000193552000000,0.000078984000000,0.000210145000000,0.000674341000000 +0.000243725000000,0.000071083000000,0.000046985000000,0.000214490000000,0.000560564000000,0.001037403000000,0.000069502000000,0.000580712000000,0.001023971000000,0.000057256000000,0.000191182000000,0.000186046000000,0.000078985000000,0.000209355000000,0.000598886000000 +0.000453503000000,0.000068317000000,0.000046589000000,0.000214886000000,0.000610737000000,0.001029897000000,0.000069897000000,0.000536070000000,0.001020416000000,0.000054096000000,0.000202639000000,0.000203034000000,0.000079379000000,0.000255577000000,0.000630885000000 +0.000251626000000,0.000071873000000,0.000046589000000,0.000285601000000,0.000555823000000,0.001037008000000,0.000069503000000,0.000637996000000,0.001029897000000,0.000055675000000,0.000275330000000,0.000192367000000,0.000080959000000,0.000210145000000,0.000599280000000 +0.000244515000000,0.000072268000000,0.000049355000000,0.000216466000000,0.000639577000000,0.001064662000000,0.000069503000000,0.000534095000000,0.001022391000000,0.000054490000000,0.000199083000000,0.000185651000000,0.000078985000000,0.000208959000000,0.000626539000000 +0.000280465000000,0.000086490000000,0.000049750000000,0.000227527000000,0.000594934000000,0.001626045000000,0.000068713000000,0.000574391000000,0.001025156000000,0.000054886000000,0.000186046000000,0.000203429000000,0.000078984000000,0.000299033000000,0.000640367000000 +0.000250836000000,0.000069503000000,0.000046984000000,0.000223972000000,0.000554243000000,0.001053601000000,0.000069108000000,0.000534095000000,0.001012119000000,0.000055676000000,0.000204614000000,0.000185651000000,0.000079380000000,0.000208960000000,0.000598885000000 +0.000246095000000,0.000068713000000,0.000063182000000,0.000266639000000,0.000630095000000,0.001037403000000,0.000069108000000,0.000905847000000,0.001019231000000,0.000056466000000,0.000204219000000,0.000269009000000,0.000078589000000,0.000214095000000,0.000628120000000 +0.000247675000000,0.000071479000000,0.000049355000000,0.000221601000000,0.000561750000000,0.001076909000000,0.000069108000000,0.000570441000000,0.001076119000000,0.000056466000000,0.000295478000000,0.000188812000000,0.000078194000000,0.000245700000000,0.000672761000000 +0.000296268000000,0.000069108000000,0.000049750000000,0.000224367000000,0.000589404000000,0.001074934000000,0.000085700000000,0.000536466000000,0.001018836000000,0.000056071000000,0.000193553000000,0.000204614000000,0.000078194000000,0.000210540000000,0.000590984000000 +0.000238589000000,0.000068712000000,0.000049750000000,0.000219626000000,0.000590194000000,0.001043330000000,0.000069107000000,0.000570835000000,0.001004613000000,0.000056466000000,0.000202638000000,0.000188416000000,0.000096367000000,0.000208959000000,0.000974984000000 +0.000240960000000,0.000069108000000,0.000052515000000,0.000269799000000,0.000554638000000,0.001047280000000,0.000073453000000,0.000611132000000,0.001237699000000,0.000074638000000,0.000183675000000,0.000187231000000,0.000078589000000,0.000306935000000,0.000622984000000 +0.000248070000000,0.000069108000000,0.000049750000000,0.000223182000000,0.000812614000000,0.001029107000000,0.000071874000000,0.000538835000000,0.001008959000000,0.000182095000000,0.000288366000000,0.000219231000000,0.000078985000000,0.000209355000000,0.000586243000000 +0.000319182000000,0.000069108000000,0.000050145000000,0.000214491000000,0.000588613000000,0.001036613000000,0.000069503000000,0.000579527000000,0.001106144000000,0.000177354000000,0.000183675000000,0.000188021000000,0.000078194000000,0.000210935000000,0.000622194000000 +0.000247281000000,0.000069503000000,0.000049750000000,0.000222392000000,0.000560959000000,0.001029502000000,0.000071873000000,0.000538440000000,0.001041749000000,0.000105058000000,0.000200663000000,0.000188812000000,0.000081750000000,0.000259133000000,0.000638392000000 +0.000248860000000,0.000068713000000,0.000049355000000,0.000238589000000,0.000592959000000,0.001084415000000,0.000070293000000,0.000579922000000,0.001023181000000,0.000072663000000,0.000204219000000,0.000183675000000,0.000078194000000,0.000210935000000,0.000591379000000 +0.000281651000000,0.000069503000000,0.000049750000000,0.000234639000000,0.000554243000000,0.001042539000000,0.000069107000000,0.000535675000000,0.001046095000000,0.000070293000000,0.000274145000000,0.000276515000000,0.000078984000000,0.000212910000000,0.000627329000000 +0.000249651000000,0.000105453000000,0.000049750000000,0.000215675000000,0.000644317000000,0.001227823000000,0.000069502000000,0.000574787000000,0.001017650000000,0.000056071000000,0.000216466000000,0.000186046000000,0.000078984000000,0.000280861000000,0.000648663000000 +0.000248466000000,0.000071083000000,0.000048960000000,0.000215676000000,0.000624169000000,0.001029107000000,0.000069503000000,0.000577551000000,0.001066243000000,0.000056071000000,0.000205009000000,0.000203429000000,0.000078984000000,0.000210144000000,0.000594145000000 +0.000239379000000,0.000069108000000,0.000050144000000,0.000219626000000,0.000569650000000,0.001037403000000,0.000069108000000,0.000534095000000,0.001017650000000,0.000055676000000,0.000193552000000,0.000181701000000,0.000078985000000,0.000212120000000,0.000635230000000 +0.000284812000000,0.000068713000000,0.000049749000000,0.000250441000000,0.000588613000000,0.001037403000000,0.000068713000000,0.000579527000000,0.001089552000000,0.000091232000000,0.000222392000000,0.000186046000000,0.000078984000000,0.000245700000000,0.000591379000000 +0.000248070000000,0.000069108000000,0.000049750000000,0.000214490000000,0.000561750000000,0.001072959000000,0.000105058000000,0.000534490000000,0.001011724000000,0.000056861000000,0.000214885000000,0.000235034000000,0.000165503000000,0.000208565000000,0.000626145000000 +0.000249650000000,0.000069503000000,0.000049355000000,0.000219231000000,0.000628910000000,0.001090737000000,0.000069107000000,0.000578342000000,0.001385058000000,0.000056466000000,0.000204219000000,0.000203824000000,0.000078590000000,0.000211725000000,0.000670391000000 +0.000241749000000,0.000071873000000,0.000049750000000,0.000214095000000,0.000589799000000,0.001037008000000,0.000070293000000,0.000534885000000,0.001052415000000,0.000054886000000,0.000188811000000,0.000202243000000,0.000079379000000,0.000286391000000,0.000592169000000 +0.000286392000000,0.000072664000000,0.000050935000000,0.000263873000000,0.000585453000000,0.001154736000000,0.000069502000000,0.000633256000000,0.001027922000000,0.000054885000000,0.000205008000000,0.000203428000000,0.000078985000000,0.000210144000000,0.000632860000000 +0.000244120000000,0.000069108000000,0.000050145000000,0.000218440000000,0.000590194000000,0.001050440000000,0.000069503000000,0.000608367000000,0.001020811000000,0.000056071000000,0.000265848000000,0.000219626000000,0.000078589000000,0.000209750000000,0.000670787000000 +0.000244120000000,0.000069503000000,0.000049354000000,0.000214096000000,0.000605997000000,0.001075329000000,0.000069108000000,0.000549107000000,0.001054391000000,0.000054886000000,0.000203823000000,0.000202639000000,0.000078985000000,0.000253207000000,0.000585848000000 +0.000244515000000,0.000069503000000,0.000049749000000,0.000221601000000,0.000630490000000,0.001037403000000,0.000071873000000,0.000578737000000,0.001083230000000,0.000054490000000,0.000183675000000,0.000203034000000,0.000078984000000,0.000210540000000,0.000622984000000 +0.000547527000000,0.000069108000000,0.000051330000000,0.000253997000000,0.000592959000000,0.001077304000000,0.000069108000000,0.000547527000000,0.001025552000000,0.000055280000000,0.000203033000000,0.000185651000000,0.000078984000000,0.000209354000000,0.000586243000000 +0.000282836000000,0.000089256000000,0.000049750000000,0.000214490000000,0.000558194000000,0.001037008000000,0.000069108000000,0.000572416000000,0.001018045000000,0.000056466000000,0.000253997000000,0.000184466000000,0.000079379000000,0.000280466000000,0.000672761000000 +0.000274935000000,0.000069503000000,0.000049750000000,0.000214490000000,0.000595724000000,0.001043330000000,0.000069503000000,0.000534491000000,0.001017650000000,0.000055675000000,0.000216861000000,0.000246095000000,0.000079379000000,0.000211330000000,0.000678688000000 +0.000243725000000,0.000069108000000,0.000050144000000,0.000215281000000,0.000561749000000,0.001112860000000,0.000069898000000,0.000551082000000,0.001040564000000,0.000054886000000,0.000203429000000,0.000188416000000,0.000115330000000,0.000211330000000,0.000591379000000 +0.000248465000000,0.000072268000000,0.000049354000000,0.000275329000000,0.000894786000000,0.001975279000000,0.000076218000000,0.000574392000000,0.001037008000000,0.000056466000000,0.000204219000000,0.000186441000000,0.000078590000000,0.000246096000000,0.000627329000000 +0.000245306000000,0.000068713000000,0.000050145000000,0.000260713000000,0.000647082000000,0.001139725000000,0.000105848000000,0.000538440000000,0.001086391000000,0.000056071000000,0.000221207000000,0.000201453000000,0.000078984000000,0.000212910000000,0.000649453000000 +0.000275725000000,0.000072269000000,0.000049355000000,0.000223972000000,0.000562145000000,0.001102193000000,0.000073849000000,0.000577551000000,0.001075725000000,0.000056071000000,0.000246490000000,0.000186046000000,0.000078590000000,0.000209355000000,0.000594145000000 +0.000248070000000,0.000069108000000,0.000049750000000,0.000219231000000,0.000627330000000,0.001037008000000,0.000069108000000,0.000538836000000,0.001024366000000,0.000091231000000,0.000191181000000,0.000220811000000,0.000079379000000,0.000297058000000,0.000635626000000 +0.000246491000000,0.000074244000000,0.000049750000000,0.000214095000000,0.000589404000000,0.001064662000000,0.000069503000000,0.000567676000000,0.001008959000000,0.000055280000000,0.000205404000000,0.000203034000000,0.000078984000000,0.000210144000000,0.000627329000000 +0.000245305000000,0.000071083000000,0.000049750000000,0.000259528000000,0.000558984000000,0.001037799000000,0.000069503000000,0.000539230000000,0.001047675000000,0.000054886000000,0.000186441000000,0.000204219000000,0.000078985000000,0.000210934000000,0.000590589000000 +0.000280071000000,0.000073059000000,0.000050540000000,0.000214886000000,0.000625354000000,0.001064268000000,0.000070688000000,0.000581503000000,0.001020021000000,0.000055281000000,0.000259528000000,0.000185256000000,0.000078984000000,0.000245700000000,0.000641157000000 +0.000248070000000,0.000068317000000,0.000049749000000,0.000224367000000,0.000558983000000,0.001084021000000,0.000069502000000,0.000577552000000,0.001053600000000,0.000056070000000,0.000203034000000,0.000238589000000,0.000079380000000,0.000209749000000,0.000591774000000 +0.000238984000000,0.000069107000000,0.000048959000000,0.000223577000000,0.000717403000000,0.001029107000000,0.000069502000000,0.000535675000000,0.001007774000000,0.000056071000000,0.000190787000000,0.000186441000000,0.000080564000000,0.000211330000000,0.000635626000000 +0.000238589000000,0.000071083000000,0.000050935000000,0.000273749000000,0.000645503000000,0.001036613000000,0.000068712000000,0.000708712000000,0.001137749000000,0.000054885000000,0.000202639000000,0.000201849000000,0.000079379000000,0.000281650000000,0.001050835000000 +0.000288367000000,0.000139429000000,0.000049750000000,0.000214885000000,0.000554243000000,0.001063082000000,0.000070293000000,0.000537651000000,0.001023576000000,0.000055676000000,0.000263873000000,0.000187231000000,0.000132318000000,0.000210539000000,0.000709503000000 +0.000255182000000,0.000088071000000,0.000050145000000,0.000219627000000,0.000626144000000,0.001050045000000,0.000069898000000,0.000615873000000,0.001033453000000,0.000056466000000,0.000199873000000,0.000221997000000,0.000095972000000,0.000211330000000,0.000587033000000 +0.000295873000000,0.000072268000000,0.000050145000000,0.000215675000000,0.000653799000000,0.001029107000000,0.000069108000000,0.000614688000000,0.001018440000000,0.000055280000000,0.000203429000000,0.000225157000000,0.000079380000000,0.000247281000000,0.000622194000000 +0.000258342000000,0.000069897000000,0.000050145000000,0.000312466000000,0.000552663000000,0.001608662000000,0.000069108000000,0.000539626000000,0.001075329000000,0.000055676000000,0.000204219000000,0.000186441000000,0.000078984000000,0.000264268000000,0.000635625000000 +0.000263873000000,0.000069107000000,0.000048959000000,0.000295873000000,0.000628515000000,0.001030293000000,0.000123626000000,0.000575576000000,0.001024762000000,0.000055281000000,0.000183676000000,0.000184070000000,0.000078589000000,0.000210540000000,0.000594934000000 +0.000248070000000,0.000069503000000,0.000050934000000,0.000214095000000,0.000607182000000,0.001043329000000,0.000069107000000,0.000536861000000,0.001005008000000,0.000055675000000,0.000289157000000,0.000182885000000,0.000078984000000,0.000263478000000,0.000662490000000 +0.000247676000000,0.000071873000000,0.000050540000000,0.000220811000000,0.000625749000000,0.001040168000000,0.000069503000000,0.000673552000000,0.001027922000000,0.000056466000000,0.000203429000000,0.000240565000000,0.000078589000000,0.000212910000000,0.000663280000000 +0.000280071000000,0.000069503000000,0.000049355000000,0.000254787000000,0.000588613000000,0.001072564000000,0.000069108000000,0.000604416000000,0.001043724000000,0.000089651000000,0.000181305000000,0.000186836000000,0.000078589000000,0.000214490000000,0.000651824000000 +0.000249255000000,0.000069108000000,0.000050540000000,0.000219626000000,0.000553454000000,0.001029502000000,0.000069108000000,0.000553848000000,0.001063083000000,0.000070688000000,0.000196712000000,0.000182490000000,0.000078589000000,0.000232268000000,0.000629699000000 +0.000247675000000,0.000069503000000,0.000051330000000,0.000214095000000,0.000624959000000,0.001037403000000,0.000073453000000,0.000618638000000,0.001014884000000,0.000055281000000,0.000240959000000,0.000203824000000,0.000081750000000,0.000214096000000,0.000668811000000 +0.000238984000000,0.000068318000000,0.000050145000000,0.000219626000000,0.000607182000000,0.001029502000000,0.000071083000000,0.000534490000000,0.001059527000000,0.000055675000000,0.000203429000000,0.000186836000000,0.000078589000000,0.000212515000000,0.000605601000000 +0.000330639000000,0.000088861000000,0.000050145000000,0.000260713000000,0.000561355000000,0.001036613000000,0.000069503000000,0.000570835000000,0.001023181000000,0.000055676000000,0.000204219000000,0.000252811000000,0.000115725000000,0.000227527000000,0.000626539000000 +0.000247280000000,0.000069898000000,0.000050540000000,0.000236614000000,0.000940218000000,0.001121157000000,0.000071478000000,0.000539231000000,0.001021206000000,0.000055676000000,0.000241749000000,0.000189602000000,0.000092811000000,0.000209355000000,0.000599675000000 +0.000245306000000,0.000068713000000,0.000048959000000,0.000224762000000,0.000623774000000,0.001037008000000,0.000071478000000,0.000609947000000,0.001027132000000,0.000055280000000,0.000303774000000,0.000203034000000,0.000078589000000,0.000208959000000,0.000661700000000 +0.000249651000000,0.000069503000000,0.000049354000000,0.000218441000000,0.000570045000000,0.001039773000000,0.000069107000000,0.000588219000000,0.001020811000000,0.000055676000000,0.000534885000000,0.000184861000000,0.000078589000000,0.000209355000000,0.000635626000000 +0.000282046000000,0.000069108000000,0.000050144000000,0.000265848000000,0.000605996000000,0.001037798000000,0.000089256000000,0.000538441000000,0.001066242000000,0.000054490000000,0.000255972000000,0.000183281000000,0.000078589000000,0.000210540000000,0.000590589000000 +0.000248070000000,0.000070688000000,0.000049750000000,0.000230293000000,0.000554243000000,0.001068614000000,0.000069107000000,0.000835922000000,0.001061502000000,0.000054885000000,0.000203429000000,0.000237009000000,0.000081750000000,0.000209354000000,0.001081650000000 +0.000250046000000,0.000068713000000,0.000049750000000,0.000222787000000,0.000594934000000,0.001037008000000,0.000069897000000,0.000592169000000,0.001032663000000,0.000054491000000,0.000201848000000,0.000184071000000,0.000078589000000,0.000556614000000,0.000622589000000 +0.000289552000000,0.000068318000000,0.000049355000000,0.000220021000000,0.000593355000000,0.001029502000000,0.000068317000000,0.000537651000000,0.001146045000000,0.000055281000000,0.000202243000000,0.000184861000000,0.000078589000000,0.000263478000000,0.000628910000000 +0.000263083000000,0.000069898000000,0.000049355000000,0.000219626000000,0.000557799000000,0.001042144000000,0.000069502000000,0.000586638000000,0.001029107000000,0.000055280000000,0.000183676000000,0.000188022000000,0.000078589000000,0.000210144000000,0.000585848000000 +0.000239379000000,0.000068318000000,0.000049750000000,0.000293898000000,0.000592959000000,0.001029897000000,0.000069107000000,0.000538441000000,0.001053996000000,0.000055281000000,0.000274935000000,0.000274145000000,0.000078984000000,0.000209749000000,0.000632070000000 +0.000244515000000,0.000071083000000,0.000049750000000,0.000224367000000,0.000560960000000,0.001163823000000,0.000069502000000,0.000583478000000,0.001011724000000,0.000055676000000,0.000200663000000,0.000257157000000,0.000078589000000,0.000246490000000,0.000637996000000 +0.000320367000000,0.000072663000000,0.000050145000000,0.000223971000000,0.000609552000000,0.001065452000000,0.000069502000000,0.000539626000000,0.001070983000000,0.000072268000000,0.000206194000000,0.000203824000000,0.000115329000000,0.000210145000000,0.000591774000000 +0.000247280000000,0.000069108000000,0.000052515000000,0.000221602000000,0.000602440000000,0.001072563000000,0.000069503000000,0.000570440000000,0.001026737000000,0.000055675000000,0.000204219000000,0.000187231000000,0.000079774000000,0.000211725000000,0.000635626000000 +0.000242539000000,0.000140614000000,0.000049750000000,0.000257157000000,0.000561749000000,0.001029502000000,0.000069108000000,0.000605207000000,0.001052415000000,0.000056071000000,0.000218046000000,0.000274145000000,0.000078590000000,0.000210145000000,0.000594540000000 +0.000242144000000,0.000069108000000,0.000049355000000,0.000223972000000,0.000592170000000,0.001080070000000,0.000071478000000,0.000539231000000,0.001010539000000,0.000055675000000,0.000202638000000,0.000201849000000,0.000078984000000,0.000209750000000,0.000669601000000 +0.000280466000000,0.000069108000000,0.000049355000000,0.000215675000000,0.000553453000000,0.001064267000000,0.000069503000000,0.000575181000000,0.001459329000000,0.000056466000000,0.000204614000000,0.000203824000000,0.000078590000000,0.000208960000000,0.000627724000000 +0.000243725000000,0.000069108000000,0.000049749000000,0.000220812000000,0.000647083000000,0.001121947000000,0.000069108000000,0.000534490000000,0.001033058000000,0.000054885000000,0.000202638000000,0.000205404000000,0.000078589000000,0.000209749000000,0.000610342000000 +0.000238984000000,0.000069108000000,0.000049749000000,0.000310886000000,0.000622589000000,0.001118391000000,0.000105849000000,0.000580713000000,0.001095082000000,0.000054886000000,0.000181701000000,0.000184466000000,0.000078985000000,0.000210540000000,0.000666441000000 +0.000249256000000,0.000069108000000,0.000050145000000,0.000220021000000,0.000558984000000,0.001037008000000,0.000068713000000,0.000634045000000,0.001033453000000,0.000058441000000,0.000252021000000,0.000232268000000,0.000078984000000,0.000209750000000,0.000628120000000 +0.000275725000000,0.000072664000000,0.000049355000000,0.000219626000000,0.000597305000000,0.001065058000000,0.000075429000000,0.000551083000000,0.001021996000000,0.000054491000000,0.000203429000000,0.000203033000000,0.000078984000000,0.000209750000000,0.000586638000000 +0.000254787000000,0.000069108000000,0.000049750000000,0.000216466000000,0.000553058000000,0.001047280000000,0.000069108000000,0.000581897000000,0.001016465000000,0.000056071000000,0.000202639000000,0.000204218000000,0.000078984000000,0.000209749000000,0.000662885000000 +0.000250046000000,0.000071873000000,0.000049355000000,0.000255972000000,0.000590588000000,0.001419428000000,0.000073849000000,0.000535280000000,0.001014490000000,0.000054490000000,0.000188416000000,0.000181700000000,0.000078984000000,0.000209749000000,0.000586243000000 +0.000248466000000,0.000068713000000,0.000049750000000,0.000219626000000,0.000591774000000,0.001042540000000,0.000069108000000,0.000610737000000,0.001060712000000,0.000056071000000,0.000237799000000,0.000260713000000,0.000115330000000,0.000232268000000,0.000623774000000 +0.000293107000000,0.000074244000000,0.000049355000000,0.000227132000000,0.000562144000000,0.001029502000000,0.000069108000000,0.000534095000000,0.001017650000000,0.000054490000000,0.000201453000000,0.000197898000000,0.000078985000000,0.000214490000000,0.000622194000000 +0.000238589000000,0.000071478000000,0.000050145000000,0.000220021000000,0.000588613000000,0.001038589000000,0.000069898000000,0.000574786000000,0.001056761000000,0.000055280000000,0.000203033000000,0.000185255000000,0.000080565000000,0.000209355000000,0.000586243000000 +0.000244910000000,0.000109404000000,0.000048959000000,0.000327873000000,0.000557009000000,0.001029502000000,0.000069898000000,0.000579527000000,0.001008959000000,0.000092021000000,0.000183281000000,0.000191971000000,0.000078589000000,0.000210540000000,0.000631280000000 +0.000280070000000,0.000069108000000,0.000049749000000,0.000410046000000,0.000639972000000,0.001072564000000,0.000068713000000,0.000534490000000,0.001065058000000,0.000054886000000,0.000186046000000,0.000203428000000,0.000078590000000,0.000210540000000,0.000640367000000 +0.000248071000000,0.000068713000000,0.000048959000000,0.000750589000000,0.000590194000000,0.001029502000000,0.000069503000000,0.000575971000000,0.001024366000000,0.000056071000000,0.000220417000000,0.000222391000000,0.000079774000000,0.000210934000000,0.000591379000000 +0.000248071000000,0.000071083000000,0.000067132000000,0.000405305000000,0.000552268000000,0.001037009000000,0.000069503000000,0.000540416000000,0.001022391000000,0.000055676000000,0.000204614000000,0.000185651000000,0.000078590000000,0.000209749000000,0.000635230000000 +0.000248070000000,0.000069108000000,0.000104664000000,0.000309700000000,0.000633651000000,0.001028712000000,0.000106244000000,0.000576367000000,0.001058737000000,0.000056071000000,0.000202244000000,0.000201848000000,0.000078984000000,0.000211330000000,0.000594540000000 +0.000282441000000,0.000071873000000,0.000052910000000,0.000235823000000,0.000554243000000,0.001102984000000,0.000069108000000,0.000536465000000,0.001379921000000,0.000056070000000,0.000184071000000,0.000186045000000,0.000078590000000,0.000230293000000,0.000639971000000 +0.000248466000000,0.000071083000000,0.000050145000000,0.000363429000000,0.000588614000000,0.001064663000000,0.000068713000000,0.000581503000000,0.001027527000000,0.000056071000000,0.000201848000000,0.000206589000000,0.000078984000000,0.000245701000000,0.000627330000000 +0.000240565000000,0.000069898000000,0.000050145000000,0.000473256000000,0.000561354000000,0.001038984000000,0.000069503000000,0.000561354000000,0.001024761000000,0.000055675000000,0.000234638000000,0.000203824000000,0.000078590000000,0.000209354000000,0.000590984000000 +0.000248070000000,0.000069503000000,0.000049354000000,0.000285206000000,0.000593749000000,0.001029502000000,0.000069503000000,0.000540416000000,0.001064663000000,0.000055281000000,0.000184070000000,0.000183675000000,0.000151280000000,0.000212910000000,0.000635231000000 +0.000279281000000,0.000069503000000,0.000050145000000,0.000448762000000,0.000697256000000,0.001037798000000,0.000069503000000,0.000572416000000,0.001034638000000,0.000054491000000,0.000187626000000,0.000203033000000,0.000168268000000,0.000247281000000,0.000627724000000 +0.000248071000000,0.000071478000000,0.000049750000000,0.000519082000000,0.000587823000000,0.001042144000000,0.000069108000000,0.000541996000000,0.001036613000000,0.000055280000000,0.000191182000000,0.000202638000000,0.000148515000000,0.000212910000000,0.000586244000000 +0.000244120000000,0.000069108000000,0.000049355000000,0.000223181000000,0.000590193000000,0.001089946000000,0.000068713000000,0.000583873000000,0.001019626000000,0.000056861000000,0.000239775000000,0.000271775000000,0.000112565000000,0.000210934000000,0.000754144000000 +0.000246885000000,0.000139824000000,0.000050145000000,0.000223577000000,0.000596514000000,0.001039773000000,0.000068713000000,0.000542787000000,0.001010144000000,0.000055280000000,0.000203824000000,0.000201058000000,0.000078589000000,0.000290737000000,0.000621799000000 +0.000284812000000,0.000069108000000,0.000049750000000,0.000281651000000,0.000625749000000,0.001037798000000,0.000074244000000,0.000578342000000,0.001042144000000,0.000055676000000,0.000182885000000,0.000202244000000,0.000078985000000,0.000210539000000,0.000637601000000 +0.000243725000000,0.000069108000000,0.000049750000000,0.000223972000000,0.000593354000000,0.001029107000000,0.000071873000000,0.000534885000000,0.001053601000000,0.000075824000000,0.000202243000000,0.000192762000000,0.000078984000000,0.000212120000000,0.000622193000000 +0.000243330000000,0.000069108000000,0.000049749000000,0.000221206000000,0.000558589000000,0.001163033000000,0.000068712000000,0.000696860000000,0.001025156000000,0.000056466000000,0.000204219000000,0.000227528000000,0.000078985000000,0.000280465000000,0.000586243000000 +0.000332613000000,0.000069108000000,0.000049749000000,0.000214491000000,0.000594934000000,0.001029107000000,0.000073059000000,0.000629699000000,0.001011724000000,0.000056071000000,0.000239379000000,0.000198688000000,0.000114935000000,0.000214885000000,0.000631675000000 +0.000325897000000,0.000069503000000,0.000049354000000,0.000250836000000,0.000597699000000,0.001112860000000,0.000122046000000,0.000534885000000,0.001042144000000,0.000055676000000,0.000204219000000,0.000203034000000,0.000081750000000,0.000211725000000,0.000662885000000 +0.000244910000000,0.000068713000000,0.000050145000000,0.000219626000000,0.000557403000000,0.001062687000000,0.000068713000000,0.000584663000000,0.001069799000000,0.000056466000000,0.000190787000000,0.000203429000000,0.000078194000000,0.000249651000000,0.000591379000000 +0.000249650000000,0.000068713000000,0.000049750000000,0.000220021000000,0.000596119000000,0.001037008000000,0.000069898000000,0.000541996000000,0.001015675000000,0.000054096000000,0.000185256000000,0.000189997000000,0.000078984000000,0.000209354000000,0.000670391000000 +0.000281650000000,0.000070688000000,0.000049750000000,0.000218046000000,0.000562144000000,0.001029107000000,0.000067922000000,0.000617848000000,0.001020810000000,0.000054491000000,0.000238985000000,0.000244910000000,0.000078589000000,0.000210540000000,0.000643922000000 +0.000244120000000,0.000069108000000,0.000050145000000,0.000263083000000,0.000591379000000,0.001183576000000,0.000068713000000,0.000592959000000,0.001013700000000,0.000055280000000,0.000220021000000,0.000185256000000,0.000078589000000,0.000250046000000,0.000599280000000 +0.000248861000000,0.000069108000000,0.000049750000000,0.000215280000000,0.000553453000000,0.001068613000000,0.000068713000000,0.000536070000000,0.001025947000000,0.000056466000000,0.000181305000000,0.000186836000000,0.000078194000000,0.000214491000000,0.000662885000000 +0.000244515000000,0.000069503000000,0.000049749000000,0.000220416000000,0.000630490000000,0.001037403000000,0.000070293000000,0.000611132000000,0.001015675000000,0.000056465000000,0.000186441000000,0.000185256000000,0.000079380000000,0.000209749000000,0.000645502000000 +0.000386342000000,0.000105059000000,0.000052515000000,0.000223182000000,0.000590589000000,0.001029897000000,0.000068318000000,0.000538046000000,0.001163823000000,0.000056466000000,0.000185255000000,0.000185650000000,0.000078984000000,0.000255972000000,0.000613897000000 +0.000261502000000,0.000069898000000,0.000050935000000,0.000288367000000,0.000558589000000,0.001043329000000,0.000069898000000,0.000607576000000,0.001069404000000,0.000054885000000,0.000238589000000,0.000275329000000,0.000078194000000,0.000208960000000,0.000627725000000 +0.000247676000000,0.000072268000000,0.000050539000000,0.000312071000000,0.000632861000000,0.001310786000000,0.000068713000000,0.000573207000000,0.001071773000000,0.000055281000000,0.000203824000000,0.000203033000000,0.000078984000000,0.000210540000000,0.000586638000000 +0.000291527000000,0.000069502000000,0.000049750000000,0.000218441000000,0.000552268000000,0.001037403000000,0.000069503000000,0.000535280000000,0.001059132000000,0.000056466000000,0.000208960000000,0.000180910000000,0.000114539000000,0.000303774000000,0.000626935000000 +0.000248071000000,0.000069502000000,0.000049355000000,0.000223182000000,0.000624564000000,0.001113650000000,0.000088860000000,0.000570836000000,0.001338045000000,0.000056070000000,0.000204219000000,0.000188416000000,0.000078984000000,0.000280465000000,0.000627329000000 +0.000246095000000,0.000069503000000,0.000050935000000,0.000297058000000,0.000590984000000,0.001136564000000,0.000071873000000,0.000543181000000,0.001038194000000,0.000091231000000,0.000240169000000,0.000225157000000,0.000078985000000,0.000210145000000,0.000587034000000 +0.000248071000000,0.000069107000000,0.000049355000000,0.000223577000000,0.000562934000000,0.001029502000000,0.000068712000000,0.000607577000000,0.001122341000000,0.000069108000000,0.000189206000000,0.000184071000000,0.000079379000000,0.000209354000000,0.000890835000000 +0.000332614000000,0.000069503000000,0.000050145000000,0.000214095000000,0.000588614000000,0.001072959000000,0.000069107000000,0.000540021000000,0.001071774000000,0.000056466000000,0.000203824000000,0.000201058000000,0.000078194000000,0.000209750000000,0.000622194000000 +0.000248071000000,0.000069503000000,0.000050539000000,0.000221601000000,0.000556614000000,0.001029897000000,0.000068712000000,0.000583083000000,0.001201749000000,0.000055281000000,0.000183281000000,0.000201453000000,0.000078589000000,0.000210145000000,0.000594934000000 +0.000247675000000,0.000069503000000,0.000049354000000,0.000307725000000,0.000598095000000,0.001051230000000,0.000070292000000,0.000575576000000,0.001024761000000,0.000056465000000,0.000189602000000,0.000187627000000,0.000079775000000,0.000213305000000,0.000719379000000 +0.000281256000000,0.000071083000000,0.000049750000000,0.000222787000000,0.000590194000000,0.001029502000000,0.000075033000000,0.000543972000000,0.001034638000000,0.000056466000000,0.000221206000000,0.000238194000000,0.000078984000000,0.000211330000000,0.000628120000000 +0.000264268000000,0.000069108000000,0.000050145000000,0.000221206000000,0.000552663000000,0.001082835000000,0.000070293000000,0.000855675000000,0.001020021000000,0.000054885000000,0.000218046000000,0.000202639000000,0.000079774000000,0.000210935000000,0.000599675000000 +0.000248071000000,0.000097947000000,0.000049354000000,0.000219627000000,0.000655774000000,0.001029107000000,0.000073848000000,0.000657355000000,0.001029897000000,0.000055676000000,0.000201058000000,0.000204219000000,0.000081750000000,0.000212516000000,0.000717404000000 +0.000246095000000,0.000069108000000,0.000050144000000,0.000252021000000,0.000554638000000,0.001085206000000,0.000068317000000,0.000535280000000,0.001017650000000,0.000054491000000,0.000180515000000,0.000206194000000,0.000079380000000,0.000210145000000,0.000670786000000 +0.000327872000000,0.000073849000000,0.000049749000000,0.000221206000000,0.000594144000000,0.001029107000000,0.000069107000000,0.000686589000000,0.001018045000000,0.000055280000000,0.000188811000000,0.000318391000000,0.000121651000000,0.000209750000000,0.000590984000000 +0.000247675000000,0.000070688000000,0.000049750000000,0.000222787000000,0.000597700000000,0.001570341000000,0.000068317000000,0.000541601000000,0.001053206000000,0.000055675000000,0.000199873000000,0.000276910000000,0.000102293000000,0.000227133000000,0.000639972000000 +0.000247281000000,0.000072269000000,0.000049750000000,0.000218441000000,0.000557404000000,0.001029502000000,0.000070687000000,0.000621009000000,0.001012910000000,0.000055281000000,0.000190787000000,0.000199083000000,0.000078985000000,0.000211330000000,0.000679872000000 +0.000238984000000,0.000069108000000,0.000049750000000,0.000255576000000,0.000589404000000,0.001088366000000,0.000110194000000,0.000615872000000,0.001061107000000,0.000055675000000,0.000188416000000,0.000184860000000,0.000078194000000,0.000210539000000,0.000592169000000 +0.000341305000000,0.000068713000000,0.000049355000000,0.000221207000000,0.000569650000000,0.001029107000000,0.000068713000000,0.000538836000000,0.001057551000000,0.000056466000000,0.000182885000000,0.000219626000000,0.000078195000000,0.000281255000000,0.000622589000000 +0.000239775000000,0.000071083000000,0.000051330000000,0.000214490000000,0.000704366000000,0.001038193000000,0.000069503000000,0.000624169000000,0.001029107000000,0.000091627000000,0.000238985000000,0.000182886000000,0.000078589000000,0.000209354000000,0.000645503000000 +0.000247675000000,0.000068713000000,0.000049749000000,0.000214095000000,0.000591774000000,0.001029107000000,0.000069503000000,0.000534490000000,0.001075329000000,0.000056466000000,0.000202243000000,0.000202639000000,0.000078590000000,0.000208565000000,0.000586638000000 +0.000277701000000,0.000071083000000,0.000049354000000,0.000219626000000,0.000558984000000,0.001037798000000,0.000069897000000,0.000618638000000,0.001028712000000,0.000055281000000,0.000203824000000,0.000201848000000,0.000078589000000,0.000225552000000,0.000633651000000 +0.000255972000000,0.000071874000000,0.000049749000000,0.000296664000000,0.000628119000000,0.001029502000000,0.000069502000000,0.000622194000000,0.001012120000000,0.000056466000000,0.000204614000000,0.000235428000000,0.000078195000000,0.000210540000000,0.000586243000000 +0.000246491000000,0.000070293000000,0.000049750000000,0.000214490000000,0.000558589000000,0.001037008000000,0.000068712000000,0.000536070000000,0.001030292000000,0.000056070000000,0.000182490000000,0.000219231000000,0.000081354000000,0.000209355000000,0.000675527000000 +0.000238984000000,0.000069503000000,0.000050145000000,0.000236614000000,0.000609552000000,0.001064662000000,0.000069898000000,0.000623774000000,0.001008564000000,0.000055676000000,0.000242539000000,0.000202639000000,0.000078194000000,0.000225158000000,0.000630885000000 +0.000313651000000,0.000086490000000,0.000049355000000,0.000227527000000,0.000632070000000,0.001036613000000,0.000069108000000,0.000534491000000,0.001024761000000,0.000054885000000,0.000184860000000,0.000202243000000,0.000096367000000,0.000209749000000,0.000590589000000 +0.000248861000000,0.000071478000000,0.000049750000000,0.000232268000000,0.000557009000000,0.001029107000000,0.000069503000000,0.000616662000000,0.001011329000000,0.000056466000000,0.000203824000000,0.000182490000000,0.000078985000000,0.000209749000000,0.000675922000000 +0.000248070000000,0.000069108000000,0.000050145000000,0.000232663000000,0.000609947000000,0.001126292000000,0.000069108000000,0.000610737000000,0.001139725000000,0.000054886000000,0.000190787000000,0.000219627000000,0.000078984000000,0.000210935000000,0.000640762000000 +0.000250045000000,0.000069108000000,0.000049750000000,0.000228318000000,0.000561355000000,0.001011725000000,0.000069503000000,0.000553453000000,0.001017650000000,0.000054885000000,0.000238194000000,0.000204219000000,0.000078984000000,0.000208960000000,0.000594144000000 +0.000328663000000,0.000069108000000,0.000048959000000,0.000233058000000,0.000966292000000,0.001096267000000,0.000109799000000,0.000617848000000,0.001012514000000,0.000054886000000,0.000217256000000,0.000182490000000,0.000078589000000,0.000208959000000,0.001038984000000 +0.000246095000000,0.000069503000000,0.000052120000000,0.000228318000000,0.000599675000000,0.001080465000000,0.000071874000000,0.000538836000000,0.001125897000000,0.000054886000000,0.000203824000000,0.000204218000000,0.000081749000000,0.000248465000000,0.000643527000000 +0.000243330000000,0.000069108000000,0.000052910000000,0.000227132000000,0.000630490000000,0.001037404000000,0.000068713000000,0.000619033000000,0.001118786000000,0.000056466000000,0.000204614000000,0.000205799000000,0.000078984000000,0.000209355000000,0.000637996000000 +0.000284021000000,0.000069503000000,0.000049354000000,0.000344071000000,0.000555034000000,0.001029107000000,0.000073058000000,0.000573601000000,0.001056367000000,0.000056071000000,0.000206194000000,0.000269404000000,0.000078984000000,0.000212120000000,0.000598885000000 +0.000277700000000,0.000069503000000,0.000051725000000,0.000237799000000,0.000653008000000,0.001178836000000,0.000070293000000,0.000534490000000,0.001022786000000,0.000055281000000,0.000238985000000,0.000184466000000,0.000078984000000,0.000288762000000,0.000628120000000 +0.000248860000000,0.000069108000000,0.000049750000000,0.000282046000000,0.000561749000000,0.001029107000000,0.000069502000000,0.000776267000000,0.001013304000000,0.000107033000000,0.000192367000000,0.000189207000000,0.000078984000000,0.000209749000000,0.000586638000000 +0.000238985000000,0.000069108000000,0.000049355000000,0.000228712000000,0.000588614000000,0.001037009000000,0.000069898000000,0.000573206000000,0.001059922000000,0.000056466000000,0.000184861000000,0.000203429000000,0.000078589000000,0.000210144000000,0.000626540000000 +0.000277305000000,0.000070688000000,0.000049354000000,0.000234244000000,0.000590589000000,0.001029107000000,0.000108219000000,0.000592169000000,0.001021996000000,0.000055280000000,0.000182886000000,0.000241750000000,0.000115330000000,0.000246885000000,0.000622588000000 +0.000243725000000,0.000135478000000,0.000052120000000,0.000228712000000,0.000555033000000,0.001037403000000,0.000073058000000,0.000662885000000,0.001027527000000,0.000056466000000,0.000241750000000,0.000203429000000,0.000078985000000,0.000208960000000,0.000587033000000 +0.000244120000000,0.000137848000000,0.000049355000000,0.000366589000000,0.000604021000000,0.001029107000000,0.000083725000000,0.000540811000000,0.001153946000000,0.000056070000000,0.000204219000000,0.000183281000000,0.000078589000000,0.000208959000000,0.000636021000000 +0.000246490000000,0.000073454000000,0.000049750000000,0.000233058000000,0.000552663000000,0.001037008000000,0.000069108000000,0.000571231000000,0.001052811000000,0.000056071000000,0.000184466000000,0.000184861000000,0.000078984000000,0.000245700000000,0.000604811000000 +0.000536071000000,0.000084120000000,0.000048960000000,0.000241749000000,0.000609157000000,0.001078490000000,0.000068713000000,0.000538046000000,0.001020020000000,0.000055675000000,0.000184861000000,0.000184071000000,0.000078589000000,0.000211725000000,0.000647082000000 +0.000420712000000,0.000071478000000,0.000049355000000,0.000235428000000,0.000592959000000,0.001522539000000,0.000105849000000,0.000589008000000,0.001043329000000,0.000056071000000,0.000182491000000,0.000238984000000,0.000078589000000,0.000210144000000,0.000627329000000 +0.000284022000000,0.000072268000000,0.000093997000000,0.000232663000000,0.000554638000000,0.001407971000000,0.000069108000000,0.000570835000000,0.001034638000000,0.000055281000000,0.000306934000000,0.000186441000000,0.000078984000000,0.000245306000000,0.000591774000000 +0.000239379000000,0.000069107000000,0.000051330000000,0.000227527000000,0.000588218000000,0.001473946000000,0.000069503000000,0.000537651000000,0.001043329000000,0.000056861000000,0.000221602000000,0.000185650000000,0.000079379000000,0.000210144000000,0.000691725000000 +0.000246095000000,0.000069502000000,0.000049749000000,0.000227922000000,0.000553848000000,0.001445502000000,0.000069108000000,0.000575182000000,0.001087181000000,0.000056071000000,0.000183280000000,0.000186836000000,0.000078590000000,0.000216465000000,0.000630490000000 +0.000248466000000,0.000069107000000,0.000049354000000,0.000228318000000,0.000637601000000,0.001372810000000,0.000071478000000,0.000543181000000,0.001035823000000,0.000058046000000,0.000193947000000,0.000237404000000,0.000078589000000,0.000245700000000,0.000599675000000 +0.000284021000000,0.000068712000000,0.000049750000000,0.000263083000000,0.000553058000000,0.001490934000000,0.000068713000000,0.000572811000000,0.001058737000000,0.000056465000000,0.000225552000000,0.000189206000000,0.000079380000000,0.000210540000000,0.000627725000000 +0.000248861000000,0.000070293000000,0.000049355000000,0.000238589000000,0.000597700000000,0.001420613000000,0.000068713000000,0.000543972000000,0.001110489000000,0.000094392000000,0.000182885000000,0.000199478000000,0.000160367000000,0.000213305000000,0.000661304000000 +0.000247676000000,0.000104663000000,0.000049750000000,0.000227132000000,0.000593354000000,0.001392959000000,0.000069108000000,0.000599280000000,0.001081651000000,0.000057255000000,0.000202243000000,0.000202639000000,0.000079774000000,0.000247676000000,0.000599281000000 +0.000247675000000,0.000069108000000,0.000049750000000,0.000226738000000,0.000553058000000,0.001399280000000,0.000070293000000,0.000554639000000,0.001069798000000,0.000056466000000,0.000188416000000,0.000203034000000,0.000080564000000,0.000210540000000,0.000627724000000 +0.000288366000000,0.000072269000000,0.000050935000000,0.000227922000000,0.000605996000000,0.001380317000000,0.000075429000000,0.000551478000000,0.001061502000000,0.000055280000000,0.000203824000000,0.000267824000000,0.000079379000000,0.000212515000000,0.000586638000000 +0.000248070000000,0.000069108000000,0.000049354000000,0.000236219000000,0.000554243000000,0.001298934000000,0.000069898000000,0.000624169000000,0.001070983000000,0.000056071000000,0.000274935000000,0.000201848000000,0.000078589000000,0.000245700000000,0.000669206000000 +0.000247281000000,0.000092811000000,0.000049354000000,0.000229503000000,0.000603626000000,0.001362539000000,0.000073848000000,0.000539626000000,0.001460515000000,0.000055280000000,0.000205404000000,0.000183280000000,0.000079379000000,0.000209749000000,0.000621799000000 +0.000286391000000,0.000085700000000,0.000050540000000,0.000233058000000,0.000609156000000,0.001515427000000,0.000105454000000,0.000570045000000,0.001023971000000,0.000056466000000,0.000201848000000,0.000183280000000,0.000078985000000,0.000209750000000,0.000587428000000 +0.000239380000000,0.000074244000000,0.000051330000000,0.000238194000000,0.000557404000000,0.001547032000000,0.000069503000000,0.000534886000000,0.001009354000000,0.000056071000000,0.000205009000000,0.000238194000000,0.000078589000000,0.000246490000000,0.000621799000000 +0.000253996000000,0.000071478000000,0.000049750000000,0.000235034000000,0.000594145000000,0.001450638000000,0.000069503000000,0.000606391000000,0.001008169000000,0.000056071000000,0.000238194000000,0.000201848000000,0.000078590000000,0.000211330000000,0.000622194000000 +0.000248861000000,0.000073454000000,0.000048959000000,0.000236218000000,0.000617848000000,0.001293404000000,0.000069898000000,0.000567675000000,0.001222292000000,0.000056071000000,0.000205009000000,0.000204219000000,0.000078589000000,0.000214885000000,0.000594934000000 +0.000276910000000,0.000069108000000,0.000049749000000,0.000236219000000,0.000596910000000,0.001200564000000,0.000069503000000,0.000554639000000,0.001031082000000,0.000055280000000,0.000202638000000,0.000188417000000,0.000114540000000,0.000284021000000,0.000882540000000 +0.000238985000000,0.000069503000000,0.000049355000000,0.000233454000000,0.000592960000000,0.001054390000000,0.000069503000000,0.000576366000000,0.001024366000000,0.000091626000000,0.000204218000000,0.000202639000000,0.000079380000000,0.000284416000000,0.000627724000000 +0.000245305000000,0.000109799000000,0.000050145000000,0.000231083000000,0.000560169000000,0.001062292000000,0.000068713000000,0.000543972000000,0.001027922000000,0.000071478000000,0.000204614000000,0.000274145000000,0.000078984000000,0.000210935000000,0.000599280000000 +0.000245305000000,0.000085700000000,0.000049355000000,0.000238194000000,0.000632466000000,0.001055181000000,0.000069898000000,0.000621799000000,0.001016070000000,0.000092417000000,0.000235824000000,0.000267429000000,0.000081749000000,0.000298244000000,0.000630490000000 +0.000285602000000,0.000072268000000,0.000050145000000,0.000237799000000,0.000555823000000,0.001089947000000,0.000069898000000,0.000534490000000,0.001027922000000,0.000056861000000,0.000201453000000,0.000184861000000,0.000078589000000,0.000213305000000,0.000634836000000 +0.000244120000000,0.000071873000000,0.000049750000000,0.000264663000000,0.000714243000000,0.001054391000000,0.000068712000000,0.000572811000000,0.001062292000000,0.000055281000000,0.000202638000000,0.000184861000000,0.000078984000000,0.000209750000000,0.000590589000000 +0.000248860000000,0.000069898000000,0.000049750000000,0.000227132000000,0.000601255000000,0.001063083000000,0.000069107000000,0.000575577000000,0.001136564000000,0.000054491000000,0.000205799000000,0.000280466000000,0.000078984000000,0.000359478000000,0.000639972000000 +0.000238984000000,0.000068713000000,0.000050934000000,0.000237009000000,0.000553848000000,0.001063873000000,0.000069502000000,0.000540021000000,0.001021601000000,0.000056466000000,0.000237009000000,0.000187626000000,0.000078984000000,0.000209749000000,0.000598885000000 +0.000315231000000,0.000069107000000,0.000048959000000,0.000214490000000,0.000594540000000,0.001062688000000,0.000089256000000,0.000587823000000,0.001064662000000,0.000055676000000,0.000183676000000,0.000202243000000,0.000078984000000,0.000212910000000,0.000627724000000 +0.000245700000000,0.000071083000000,0.000049354000000,0.000252812000000,0.000562144000000,0.001053601000000,0.000069108000000,0.000535280000000,0.001040169000000,0.000055281000000,0.000182095000000,0.000203034000000,0.000078984000000,0.000209355000000,0.000623379000000 +0.000248071000000,0.000069503000000,0.000050935000000,0.000227132000000,0.000589009000000,0.001062688000000,0.000069107000000,0.000579132000000,0.001008564000000,0.000056071000000,0.000184860000000,0.000287972000000,0.000081354000000,0.000212910000000,0.000590589000000 +0.000291527000000,0.000069108000000,0.000050145000000,0.000214095000000,0.000590194000000,0.001054786000000,0.000069502000000,0.000535280000000,0.001079675000000,0.000054491000000,0.000182095000000,0.000203034000000,0.000112169000000,0.000209354000000,0.000622589000000 +0.000248070000000,0.000069503000000,0.000049750000000,0.000221602000000,0.000555034000000,0.001062292000000,0.000073848000000,0.000700021000000,0.001032662000000,0.000055675000000,0.000293898000000,0.000203824000000,0.000094392000000,0.000208960000000,0.000623379000000 +0.000244120000000,0.000069108000000,0.000050935000000,0.000261107000000,0.000649848000000,0.001088761000000,0.000071874000000,0.000584663000000,0.001006194000000,0.000055280000000,0.000240565000000,0.000186046000000,0.000077799000000,0.000211330000000,0.000586638000000 +0.000246096000000,0.000105058000000,0.000050540000000,0.000232268000000,0.000552663000000,0.001169354000000,0.000068712000000,0.000536465000000,0.001150786000000,0.000055281000000,0.000189207000000,0.000206590000000,0.000078984000000,0.000210540000000,0.000710292000000 +0.000320366000000,0.000069503000000,0.000061997000000,0.000220416000000,0.000641157000000,0.001080070000000,0.000072268000000,0.000572021000000,0.001013699000000,0.000054490000000,0.000186441000000,0.000220416000000,0.000078984000000,0.000212910000000,0.000642342000000 +0.000244910000000,0.000069108000000,0.000047379000000,0.000214490000000,0.000920070000000,0.001037798000000,0.000071083000000,0.000538046000000,0.001067823000000,0.000055675000000,0.000239774000000,0.000203824000000,0.000079774000000,0.000208960000000,0.000609156000000 +0.000243725000000,0.000068712000000,0.000046984000000,0.000221602000000,0.000590193000000,0.001125897000000,0.000069502000000,0.000579922000000,0.001057157000000,0.000054886000000,0.000203033000000,0.000186441000000,0.000078985000000,0.000248465000000,0.000644317000000 +0.000238984000000,0.000069108000000,0.000046194000000,0.000255181000000,0.000553058000000,0.001038193000000,0.000070293000000,0.000540811000000,0.001024761000000,0.000092417000000,0.000180910000000,0.000204613000000,0.000078984000000,0.000212120000000,0.000599280000000 +0.000274540000000,0.000071083000000,0.000046984000000,0.000221602000000,0.000589403000000,0.001029502000000,0.000069108000000,0.000570046000000,0.001005798000000,0.000056070000000,0.000180120000000,0.000486687000000,0.000079380000000,0.000211725000000,0.000665255000000 +0.000242145000000,0.000069108000000,0.000048170000000,0.000224367000000,0.000605601000000,0.001037404000000,0.000069503000000,0.000574787000000,0.001020811000000,0.000056861000000,0.000240170000000,0.000342095000000,0.000078589000000,0.000287577000000,0.000634046000000 +0.000238194000000,0.000069108000000,0.000116515000000,0.000220021000000,0.000588614000000,0.001035823000000,0.000105453000000,0.000541206000000,0.001044119000000,0.000056465000000,0.000183280000000,0.000225157000000,0.000080170000000,0.000210935000000,0.000590984000000 +0.000248071000000,0.000069503000000,0.000061601000000,0.000250441000000,0.000597700000000,0.001048465000000,0.000069502000000,0.000574391000000,0.001085996000000,0.000055676000000,0.000200268000000,0.000205009000000,0.000115330000000,0.000208960000000,0.000662095000000 +0.000280465000000,0.000069108000000,0.000048169000000,0.000214885000000,0.000557009000000,0.001064267000000,0.000069898000000,0.000539626000000,0.001067428000000,0.000055280000000,0.000182491000000,0.000203034000000,0.000078985000000,0.000294293000000,0.000635230000000 +0.000246491000000,0.000071083000000,0.000046985000000,0.000221997000000,0.000790490000000,0.001082835000000,0.000070293000000,0.000615083000000,0.001099428000000,0.000056071000000,0.000206194000000,0.000204219000000,0.000078589000000,0.000210145000000,0.000592169000000 +0.000243725000000,0.000072663000000,0.000046984000000,0.000220416000000,0.000605996000000,0.001029502000000,0.000069503000000,0.000535675000000,0.001017256000000,0.000056071000000,0.000237404000000,0.000184466000000,0.000078590000000,0.000208960000000,0.000621798000000 +0.000249256000000,0.000069108000000,0.000046984000000,0.000255972000000,0.000554638000000,0.001037008000000,0.000069108000000,0.000626145000000,0.001042934000000,0.000054490000000,0.000188811000000,0.000236219000000,0.000078984000000,0.000299823000000,0.000590589000000 +0.000283626000000,0.000140219000000,0.000046985000000,0.000219626000000,0.000625354000000,0.001176069000000,0.000069503000000,0.000570835000000,0.001011329000000,0.000056466000000,0.000197503000000,0.000205008000000,0.000078985000000,0.000211725000000,0.000622984000000 +0.000248466000000,0.000084910000000,0.000046589000000,0.000214490000000,0.000559379000000,0.001037403000000,0.000072268000000,0.000534491000000,0.001027527000000,0.000054886000000,0.000203824000000,0.000188811000000,0.000080169000000,0.000212120000000,0.000623774000000 +0.000250046000000,0.000069107000000,0.000046590000000,0.000324317000000,0.000628909000000,0.001162637000000,0.000068712000000,0.000616267000000,0.001008168000000,0.000054885000000,0.000203034000000,0.000184466000000,0.000080959000000,0.000281651000000,0.000586243000000 +0.000281255000000,0.000069503000000,0.000046589000000,0.000317996000000,0.000635230000000,0.001037403000000,0.000069502000000,0.000544761000000,0.001025947000000,0.000056071000000,0.000181305000000,0.000238984000000,0.000079775000000,0.000210540000000,0.000622194000000 +0.000277306000000,0.000069503000000,0.000047380000000,0.000457453000000,0.000574786000000,0.001028711000000,0.000069502000000,0.000573206000000,0.001014490000000,0.000055280000000,0.000205404000000,0.000201848000000,0.000078984000000,0.000211330000000,0.000634045000000 +0.000299428000000,0.000069108000000,0.000046984000000,0.000266638000000,0.000597304000000,0.001149996000000,0.000069503000000,0.000540416000000,0.001037403000000,0.000096762000000,0.000180910000000,0.000186837000000,0.000079774000000,0.000284811000000,0.000729256000000 +0.000244120000000,0.000072268000000,0.000046984000000,0.000265453000000,0.000557403000000,0.001028712000000,0.000156811000000,0.000569255000000,0.001147230000000,0.000055280000000,0.000182885000000,0.000182885000000,0.000114935000000,0.000210934000000,0.000627724000000 +0.000522244000000,0.000069503000000,0.000049750000000,0.000270589000000,0.000644712000000,0.001082441000000,0.000069503000000,0.000574392000000,0.001037404000000,0.000055676000000,0.000230293000000,0.000203429000000,0.000078590000000,0.000211725000000,0.000653798000000 +0.000263873000000,0.000072268000000,0.000046590000000,0.000221206000000,0.000597700000000,0.001035428000000,0.000074243000000,0.000539231000000,0.001070983000000,0.000055280000000,0.000194737000000,0.000254787000000,0.000078589000000,0.000525404000000,0.000645107000000 +0.000247280000000,0.000069108000000,0.000046984000000,0.000221207000000,0.000556219000000,0.001085205000000,0.000069503000000,0.000585453000000,0.001111675000000,0.000056071000000,0.000203428000000,0.000182096000000,0.000078590000000,0.000221997000000,0.000634836000000 +0.000295478000000,0.000074244000000,0.000090046000000,0.000257156000000,0.000636416000000,0.001029897000000,0.000069108000000,0.000540811000000,0.001096267000000,0.000056071000000,0.000202244000000,0.000203429000000,0.000078589000000,0.000245305000000,0.000591774000000 +0.000246886000000,0.000106638000000,0.000047379000000,0.000214491000000,0.000559379000000,0.001072564000000,0.000068713000000,0.000579527000000,0.001048861000000,0.000056071000000,0.000204219000000,0.000185256000000,0.000078590000000,0.000216071000000,0.000662095000000 +0.000250046000000,0.000073453000000,0.000046984000000,0.000223972000000,0.000590193000000,0.001042934000000,0.000070293000000,0.000542787000000,0.001023577000000,0.000055676000000,0.000380811000000,0.000187626000000,0.000079379000000,0.000210540000000,0.000634835000000 +0.000284811000000,0.000068713000000,0.000046195000000,0.000220021000000,0.000629699000000,0.002145551000000,0.000069108000000,0.000584663000000,0.001265748000000,0.000056070000000,0.000267428000000,0.000221206000000,0.000082145000000,0.000245700000000,0.000591774000000 +0.000244515000000,0.000068318000000,0.000046589000000,0.000251231000000,0.000561749000000,0.001369650000000,0.000069897000000,0.000576366000000,0.001038193000000,0.000055281000000,0.000180910000000,0.000203034000000,0.000078985000000,0.000210935000000,0.000676713000000 +0.000245306000000,0.000071478000000,0.000047380000000,0.000218441000000,0.000638392000000,0.001854390000000,0.000069107000000,0.000538046000000,0.001019231000000,0.000055281000000,0.000240565000000,0.000187627000000,0.000078589000000,0.000231478000000,0.000626539000000 +0.000244910000000,0.000069502000000,0.000046984000000,0.000214885000000,0.000553848000000,0.001020811000000,0.000069898000000,0.000576367000000,0.001014094000000,0.000056071000000,0.000203429000000,0.000188416000000,0.000079380000000,0.000246490000000,0.000587033000000 +0.000333009000000,0.000072268000000,0.000047379000000,0.000221602000000,0.000604811000000,0.001029502000000,0.000069898000000,0.000541996000000,0.001031873000000,0.000055676000000,0.000185651000000,0.000221997000000,0.000098737000000,0.000209355000000,0.001003428000000 +0.000247675000000,0.000072268000000,0.000046985000000,0.000249650000000,0.000608761000000,0.001024366000000,0.000105058000000,0.000572416000000,0.001018440000000,0.000056070000000,0.000202639000000,0.000182886000000,0.000078589000000,0.000211725000000,0.000635626000000 +0.000248071000000,0.000069898000000,0.000046984000000,0.000228713000000,0.000553057000000,0.001073354000000,0.000069502000000,0.000544367000000,0.001044910000000,0.000056071000000,0.000203034000000,0.000188021000000,0.000078589000000,0.000247280000000,0.000622194000000 +0.000248466000000,0.000069898000000,0.000046590000000,0.000224762000000,0.000628909000000,0.001251132000000,0.000069107000000,0.000909403000000,0.001021996000000,0.000108218000000,0.000286786000000,0.000186836000000,0.000080960000000,0.000212515000000,0.000595330000000 +0.000284416000000,0.000068713000000,0.000047379000000,0.000221996000000,0.000557403000000,0.001036613000000,0.000069502000000,0.000619429000000,0.001019230000000,0.000055676000000,0.000205009000000,0.000195527000000,0.000078589000000,0.000208959000000,0.000643527000000 +0.000248466000000,0.000071083000000,0.000046194000000,0.000221207000000,0.000590588000000,0.001029502000000,0.000069107000000,0.000858045000000,0.001063873000000,0.000055280000000,0.000205799000000,0.000235428000000,0.000078984000000,0.000249650000000,0.000592169000000 +0.000246095000000,0.000068318000000,0.000046985000000,0.000307330000000,0.000645897000000,0.001083626000000,0.000069108000000,0.000534886000000,0.001022391000000,0.000056466000000,0.000193157000000,0.000186441000000,0.000078589000000,0.000212515000000,0.000634836000000 +0.000241750000000,0.000140614000000,0.000046984000000,0.000214490000000,0.000933502000000,0.001063477000000,0.000069503000000,0.000594144000000,0.001012119000000,0.000055281000000,0.000240564000000,0.000202638000000,0.000078589000000,0.000210935000000,0.000630490000000 +0.000284416000000,0.000069108000000,0.000046590000000,0.000224762000000,0.000555033000000,0.001181600000000,0.000073848000000,0.000607972000000,0.001043329000000,0.000054885000000,0.000180911000000,0.000183675000000,0.000078589000000,0.000246095000000,0.000598885000000 +0.000244515000000,0.000068713000000,0.000047379000000,0.000216071000000,0.000623774000000,0.001378736000000,0.000071873000000,0.000542786000000,0.001095872000000,0.000054886000000,0.000204219000000,0.000202244000000,0.000079380000000,0.000210539000000,0.000626934000000 +0.000250441000000,0.000068713000000,0.000046984000000,0.000449947000000,0.000561354000000,0.001080465000000,0.000069503000000,0.000570836000000,0.001016861000000,0.000054886000000,0.000204219000000,0.000266639000000,0.000079379000000,0.000209354000000,0.000625354000000 +0.000294688000000,0.000069503000000,0.000064762000000,0.000233453000000,0.000633651000000,0.001054390000000,0.000072663000000,0.000542391000000,0.001031477000000,0.000055675000000,0.000184466000000,0.000181305000000,0.000077799000000,0.000262293000000,0.000616267000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000217256000000,0.000589404000000,0.001061897000000,0.000070293000000,0.000628909000000,0.001029502000000,0.000054886000000,0.000229503000000,0.000205799000000,0.000134688000000,0.000209749000000,0.000796811000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000304169000000,0.000569651000000,0.001174884000000,0.000159182000000,0.000536071000000,0.001123527000000,0.000055676000000,0.000202244000000,0.000185256000000,0.000078984000000,0.000209354000000,0.000622194000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000214885000000,0.000600465000000,0.001062687000000,0.000107034000000,0.000647082000000,0.001084811000000,0.000055675000000,0.000183676000000,0.000216861000000,0.000079379000000,0.000249256000000,0.000590589000000 +0.000277305000000,0.000071083000000,0.000048170000000,0.000221602000000,0.000554639000000,0.001053995000000,0.000087676000000,0.000817749000000,0.001037008000000,0.000054491000000,0.000182886000000,0.000205404000000,0.000078589000000,0.000210144000000,0.000657749000000 +0.000244515000000,0.000068712000000,0.000046985000000,0.000225552000000,0.000630095000000,0.001069403000000,0.000068318000000,0.000685403000000,0.001027527000000,0.000054886000000,0.000239379000000,0.000204219000000,0.000078984000000,0.000208959000000,0.000587428000000 +0.000246096000000,0.000069107000000,0.000047379000000,0.000310095000000,0.000593354000000,0.001054391000000,0.000069108000000,0.000534886000000,0.001009354000000,0.000071083000000,0.000205008000000,0.000237798000000,0.000078589000000,0.000285207000000,0.000621799000000 +0.000247675000000,0.000069502000000,0.000046589000000,0.000220021000000,0.000557798000000,0.001097453000000,0.000069503000000,0.000591774000000,0.001065057000000,0.000056861000000,0.000182885000000,0.000188021000000,0.000078589000000,0.000212910000000,0.000622194000000 +0.000275329000000,0.000105058000000,0.000046984000000,0.000220022000000,0.000595329000000,0.001053996000000,0.000068713000000,0.000534095000000,0.001025947000000,0.000057651000000,0.000194737000000,0.000236614000000,0.000079379000000,0.000212120000000,0.000595329000000 +0.000248861000000,0.000071083000000,0.000046984000000,0.000214490000000,0.000612712000000,0.001345946000000,0.000069898000000,0.000584663000000,0.001070193000000,0.000055675000000,0.000200664000000,0.000202638000000,0.000078985000000,0.000289157000000,0.000668416000000 +0.000245305000000,0.000072663000000,0.000046195000000,0.000294688000000,0.000628515000000,0.001178836000000,0.000069503000000,0.000535280000000,0.001020021000000,0.000056466000000,0.000200268000000,0.000187231000000,0.000079379000000,0.000209750000000,0.000628515000000 +0.000250045000000,0.000069108000000,0.000046984000000,0.000221206000000,0.000596120000000,0.001062292000000,0.000069108000000,0.000570836000000,0.001021206000000,0.000055280000000,0.000183280000000,0.000186441000000,0.000116516000000,0.000208960000000,0.000599280000000 +0.000297058000000,0.000069108000000,0.000046985000000,0.000224762000000,0.000560959000000,0.001054391000000,0.000069108000000,0.000583083000000,0.001059921000000,0.000055676000000,0.000189602000000,0.000293898000000,0.000079379000000,0.000258342000000,0.000630885000000 +0.000247675000000,0.000069108000000,0.000046984000000,0.000220021000000,0.000591774000000,0.001134194000000,0.000107824000000,0.000538441000000,0.001020416000000,0.000056466000000,0.000206589000000,0.000186441000000,0.000079380000000,0.000212120000000,0.000598885000000 +0.000238984000000,0.000069108000000,0.000046984000000,0.000288367000000,0.000553453000000,0.001029107000000,0.000069503000000,0.000611922000000,0.001213601000000,0.000054490000000,0.000274934000000,0.000203428000000,0.000079379000000,0.000210539000000,0.000627330000000 +0.000239379000000,0.000069503000000,0.000046590000000,0.000215676000000,0.000642737000000,0.001037798000000,0.000069108000000,0.000610737000000,0.001074539000000,0.000056466000000,0.000202243000000,0.000203428000000,0.000078589000000,0.000249651000000,0.000626935000000 +0.000275330000000,0.000069503000000,0.000049354000000,0.000224366000000,0.000589799000000,0.001144860000000,0.000069108000000,0.000885305000000,0.001006983000000,0.000059626000000,0.000203033000000,0.000222786000000,0.000078984000000,0.000210540000000,0.000599676000000 +0.000251231000000,0.000069108000000,0.000093996000000,0.000213701000000,0.000558194000000,0.001093502000000,0.000069503000000,0.000641552000000,0.001042934000000,0.000055280000000,0.000253601000000,0.000233453000000,0.000078984000000,0.000211725000000,0.000628119000000 +0.000247281000000,0.000071874000000,0.000046194000000,0.000347231000000,0.000608367000000,0.001079280000000,0.000075033000000,0.000637601000000,0.001018440000000,0.000055281000000,0.000274540000000,0.000203428000000,0.000078589000000,0.000246490000000,0.000622984000000 +0.000274934000000,0.000069108000000,0.000046590000000,0.000331824000000,0.000552663000000,0.001047675000000,0.000069503000000,0.000590193000000,0.001052021000000,0.000055281000000,0.000202639000000,0.000201848000000,0.000078589000000,0.000208959000000,0.000590589000000 +0.000243725000000,0.000143379000000,0.000046984000000,0.000235034000000,0.000874243000000,0.001065058000000,0.000074243000000,0.000576761000000,0.001046489000000,0.000090441000000,0.000201849000000,0.000189602000000,0.000079380000000,0.000208565000000,0.000747033000000 +0.000244120000000,0.000069108000000,0.000048169000000,0.000499725000000,0.000590984000000,0.001136169000000,0.000069108000000,0.000567281000000,0.001144070000000,0.000054885000000,0.000188416000000,0.000238194000000,0.000078984000000,0.000245700000000,0.000622984000000 +0.000238589000000,0.000073849000000,0.000046590000000,0.000479181000000,0.000562539000000,0.001064268000000,0.000069503000000,0.000602045000000,0.001018441000000,0.000054885000000,0.000180515000000,0.000202638000000,0.000118096000000,0.000212515000000,0.000642737000000 +0.000304564000000,0.000070293000000,0.000046984000000,0.000471280000000,0.000601256000000,0.001037799000000,0.000069107000000,0.000576761000000,0.001058736000000,0.000059231000000,0.000272169000000,0.000204613000000,0.000078589000000,0.000212515000000,0.000621404000000 +0.000253207000000,0.000073454000000,0.000046985000000,0.000240564000000,0.000599675000000,0.001141304000000,0.000069897000000,0.000608761000000,0.001012515000000,0.000054491000000,0.000202638000000,0.000203823000000,0.000078985000000,0.000246490000000,0.000595329000000 +0.000238589000000,0.000068713000000,0.000046984000000,0.000392268000000,0.000557403000000,0.001333304000000,0.000105453000000,0.000569256000000,0.001069403000000,0.000056071000000,0.000203823000000,0.000223972000000,0.000079379000000,0.000214491000000,0.000627330000000 +0.000284021000000,0.000069108000000,0.000045799000000,0.000276910000000,0.000590589000000,0.001029107000000,0.000069108000000,0.000575577000000,0.001018440000000,0.000055675000000,0.000183280000000,0.000184071000000,0.000078589000000,0.000213305000000,0.000628119000000 +0.000284417000000,0.000071478000000,0.000046589000000,0.000216861000000,0.000553454000000,0.001037799000000,0.000069108000000,0.000605601000000,0.001073354000000,0.000055676000000,0.000235428000000,0.000203033000000,0.000078589000000,0.000293898000000,0.000599676000000 +0.000244120000000,0.000069108000000,0.000046194000000,0.000244120000000,0.000590194000000,0.001029107000000,0.000069898000000,0.000571231000000,0.001018441000000,0.000056070000000,0.000183280000000,0.000184465000000,0.000078589000000,0.000214096000000,0.000630885000000 +0.000249651000000,0.000072269000000,0.000046984000000,0.000235823000000,0.000554243000000,0.001037008000000,0.000069107000000,0.000567675000000,0.001957501000000,0.000056071000000,0.000204219000000,0.000203033000000,0.000081355000000,0.000209750000000,0.000634835000000 +0.000243725000000,0.000072268000000,0.000046984000000,0.000269009000000,0.000644317000000,0.001085206000000,0.000069107000000,0.000575972000000,0.001137748000000,0.000055676000000,0.000203823000000,0.000227527000000,0.000079379000000,0.000246885000000,0.000591379000000 +0.000284811000000,0.000070293000000,0.000046590000000,0.000228713000000,0.000628909000000,0.001490144000000,0.000069107000000,0.000568466000000,0.001295378000000,0.000056071000000,0.000222786000000,0.000203034000000,0.000078984000000,0.000209750000000,0.000640762000000 +0.000244515000000,0.000105454000000,0.000046984000000,0.000227922000000,0.000557403000000,0.001679773000000,0.000069502000000,0.000572811000000,0.001085206000000,0.000055676000000,0.000203034000000,0.000184071000000,0.000078590000000,0.000208564000000,0.000599280000000 +0.000247281000000,0.000069108000000,0.000046985000000,0.000227527000000,0.000589403000000,0.001160268000000,0.000069107000000,0.000571231000000,0.001050835000000,0.000054885000000,0.000183676000000,0.000184861000000,0.000115330000000,0.000246095000000,0.000634441000000 +0.000283231000000,0.000071478000000,0.000066737000000,0.000274144000000,0.000569650000000,0.001028712000000,0.000069107000000,0.000736366000000,0.001010540000000,0.000088861000000,0.000203824000000,0.000187231000000,0.000078194000000,0.000208960000000,0.000622589000000 +0.000254787000000,0.000069502000000,0.000047775000000,0.000227133000000,0.000692910000000,0.001037008000000,0.000069503000000,0.000583872000000,0.001019230000000,0.000071083000000,0.000205009000000,0.000494984000000,0.000079380000000,0.000210540000000,0.000590984000000 +0.000247280000000,0.000069107000000,0.000046984000000,0.000228318000000,0.000634836000000,0.001059527000000,0.000068713000000,0.000534096000000,0.001085206000000,0.000056071000000,0.000272960000000,0.000235034000000,0.000079379000000,0.000265058000000,0.000667230000000 +0.000248071000000,0.000069502000000,0.000046589000000,0.000227922000000,0.000558589000000,0.001037798000000,0.000074243000000,0.000711082000000,0.001024761000000,0.000055676000000,0.000203824000000,0.000181305000000,0.000078589000000,0.000208960000000,0.000661700000000 +0.000288367000000,0.000069502000000,0.000046985000000,0.000327873000000,0.000592960000000,0.001029502000000,0.000107033000000,0.000534886000000,0.001029897000000,0.000056071000000,0.000193157000000,0.000241354000000,0.000078984000000,0.000213305000000,0.000586243000000 +0.000243725000000,0.000068317000000,0.000046984000000,0.000386737000000,0.000593749000000,0.001037008000000,0.000069502000000,0.000586243000000,0.001055971000000,0.000055675000000,0.000183281000000,0.000202638000000,0.000079379000000,0.000283231000000,0.000622589000000 +0.000243725000000,0.000069502000000,0.000047379000000,0.000229108000000,0.000573601000000,0.001040959000000,0.000072663000000,0.000572021000000,0.001031873000000,0.000055281000000,0.000210145000000,0.000203824000000,0.000078194000000,0.000228318000000,0.000595330000000 +0.000244515000000,0.000069107000000,0.000047380000000,0.000227923000000,0.000596910000000,0.001063082000000,0.000070293000000,0.000535280000000,0.001012514000000,0.000058441000000,0.000184070000000,0.000182491000000,0.000078984000000,0.000209749000000,0.000627329000000 +0.000280071000000,0.000069107000000,0.000046589000000,0.000237009000000,0.000557404000000,0.001161057000000,0.000069108000000,0.000576367000000,0.001606292000000,0.000055281000000,0.000203033000000,0.000229898000000,0.000078985000000,0.000246095000000,0.000662885000000 +0.000243725000000,0.000069502000000,0.000047379000000,0.000227132000000,0.000595725000000,0.001062687000000,0.000069898000000,0.000540021000000,0.001305255000000,0.000056860000000,0.000191181000000,0.000186046000000,0.000078984000000,0.000209355000000,0.000649453000000 +0.000250441000000,0.000109404000000,0.000046589000000,0.000227527000000,0.000561354000000,0.001097848000000,0.000069502000000,0.000572021000000,0.001204119000000,0.000055281000000,0.000203428000000,0.000182885000000,0.000115725000000,0.000211725000000,0.000630885000000 +0.000251626000000,0.000085701000000,0.000046194000000,0.000227528000000,0.000592169000000,0.001406785000000,0.000067922000000,0.000544762000000,0.001030292000000,0.000054886000000,0.000366589000000,0.000192367000000,0.000078589000000,0.000246095000000,0.000635231000000 +0.000513947000000,0.000068713000000,0.000049355000000,0.000230293000000,0.000590194000000,0.001089947000000,0.000069502000000,0.000570836000000,0.001009353000000,0.000054885000000,0.000375676000000,0.000183280000000,0.000078194000000,0.000208959000000,0.000591774000000 +0.000287972000000,0.000069898000000,0.000049355000000,0.000241354000000,0.000559379000000,0.001062292000000,0.000069107000000,0.000574391000000,0.001012120000000,0.000055676000000,0.000199873000000,0.000238985000000,0.000079379000000,0.000211329000000,0.000627725000000 +0.000269799000000,0.000068713000000,0.000046590000000,0.000237799000000,0.000589799000000,0.001089551000000,0.000069107000000,0.000538836000000,0.001039378000000,0.000055676000000,0.000240959000000,0.000185651000000,0.000100318000000,0.000293898000000,0.000635231000000 +0.000279281000000,0.000071478000000,0.000048960000000,0.000233059000000,0.000558589000000,0.001062687000000,0.000069502000000,0.000571231000000,0.001041748000000,0.000071478000000,0.000203033000000,0.000184071000000,0.000113355000000,0.000214096000000,0.000592169000000 +0.000248860000000,0.000071478000000,0.000046984000000,0.000235428000000,0.000604416000000,0.001029502000000,0.000140614000000,0.000535280000000,0.001033847000000,0.000056465000000,0.000203033000000,0.000189206000000,0.000078589000000,0.000209354000000,0.000622588000000 +0.000250045000000,0.000069503000000,0.000046590000000,0.000238194000000,0.000624169000000,0.001089156000000,0.000069503000000,0.000612318000000,0.001077305000000,0.000056071000000,0.000193553000000,0.000204614000000,0.000079774000000,0.000253996000000,0.000590193000000 +0.000338539000000,0.000069503000000,0.000109404000000,0.000233059000000,0.000554638000000,0.001029502000000,0.000068318000000,0.000539626000000,0.001027922000000,0.000055675000000,0.000239774000000,0.000221996000000,0.000078985000000,0.000209750000000,0.000745848000000 +0.000240960000000,0.000068713000000,0.000050145000000,0.000227922000000,0.000766787000000,0.001037798000000,0.000071873000000,0.000609156000000,0.001057551000000,0.000055281000000,0.000183281000000,0.000189996000000,0.000079379000000,0.000211725000000,0.000633256000000 +0.000248466000000,0.000069108000000,0.000046195000000,0.000237009000000,0.000599280000000,0.001370440000000,0.000069108000000,0.000575182000000,0.001068218000000,0.000055676000000,0.000203034000000,0.000182490000000,0.000098737000000,0.000281650000000,0.000586243000000 +0.000247675000000,0.000069898000000,0.000046984000000,0.000227132000000,0.000553058000000,0.001085995000000,0.000069503000000,0.000542786000000,0.001101798000000,0.000056466000000,0.000186836000000,0.000188022000000,0.000078589000000,0.000211330000000,0.000668416000000 +0.000318392000000,0.000105454000000,0.000046590000000,0.000235429000000,0.000641552000000,0.001123131000000,0.000068713000000,0.000574391000000,0.001029897000000,0.000055281000000,0.000200663000000,0.000188811000000,0.000078985000000,0.000208960000000,0.000685798000000 +0.000249256000000,0.000068713000000,0.000046984000000,0.000233058000000,0.000556613000000,0.001072959000000,0.000069898000000,0.000543972000000,0.001067428000000,0.000055280000000,0.000238194000000,0.000213700000000,0.000079379000000,0.000283231000000,0.000591774000000 +0.000246885000000,0.000070688000000,0.000046984000000,0.000232664000000,0.000637996000000,0.001050836000000,0.000075824000000,0.000575576000000,0.001014490000000,0.000056466000000,0.000204614000000,0.000204219000000,0.000078985000000,0.000213306000000,0.000675922000000 +0.000285207000000,0.000068318000000,0.000046984000000,0.000229107000000,0.000589403000000,0.001193453000000,0.000069108000000,0.000534095000000,0.001068613000000,0.000055280000000,0.000203428000000,0.000186441000000,0.000081355000000,0.000209749000000,0.000635230000000 +0.000263083000000,0.000071478000000,0.000045799000000,0.000229503000000,0.000553848000000,0.001089156000000,0.000073453000000,0.000664861000000,0.001162638000000,0.000054490000000,0.000204219000000,0.000202638000000,0.000078984000000,0.000246490000000,0.000594144000000 +0.000239379000000,0.000069503000000,0.000046985000000,0.000233058000000,0.000690144000000,0.001097057000000,0.000069898000000,0.000587823000000,0.001034638000000,0.000055281000000,0.000213700000000,0.000218836000000,0.000078195000000,0.000212120000000,0.000669601000000 +0.000248071000000,0.000074244000000,0.000046984000000,0.000263083000000,0.000552663000000,0.001091526000000,0.000105454000000,0.000538836000000,0.001062292000000,0.000056071000000,0.000203823000000,0.000187231000000,0.000078984000000,0.000208959000000,0.000610342000000 +0.000319576000000,0.000071083000000,0.000046194000000,0.000227527000000,0.000632465000000,0.001133403000000,0.000069503000000,0.000577157000000,0.001009749000000,0.000092416000000,0.000187626000000,0.000188417000000,0.000078985000000,0.000257947000000,0.000606391000000 +0.000250045000000,0.000073453000000,0.000047379000000,0.000233059000000,0.000593354000000,0.001089156000000,0.000070293000000,0.000535280000000,0.001077700000000,0.000055676000000,0.000203429000000,0.000203033000000,0.000078984000000,0.000211725000000,0.001152762000000 +0.000242144000000,0.000069108000000,0.000046984000000,0.000227132000000,0.000553058000000,0.001097058000000,0.000068713000000,0.000570836000000,0.001017650000000,0.000054886000000,0.000190392000000,0.000243330000000,0.000078985000000,0.000213305000000,0.000641156000000 +0.000250441000000,0.000068318000000,0.000047775000000,0.000241750000000,0.000653404000000,0.001351872000000,0.000069108000000,0.000548713000000,0.001063083000000,0.000055280000000,0.000260317000000,0.000239774000000,0.000250836000000,0.000327478000000,0.000657750000000 +0.000321552000000,0.000071083000000,0.000046984000000,0.000231478000000,0.000554638000000,0.001061897000000,0.000069503000000,0.000551872000000,0.001016860000000,0.000055281000000,0.000184466000000,0.000182885000000,0.000117700000000,0.000223972000000,0.000590194000000 +0.000244120000000,0.000069108000000,0.000083725000000,0.000233058000000,0.000590589000000,0.001089551000000,0.000069898000000,0.000678688000000,0.001201354000000,0.000055281000000,0.000203824000000,0.000204219000000,0.000108614000000,0.000215676000000,0.000622588000000 +0.000244120000000,0.000123231000000,0.000047774000000,0.000221602000000,0.000642342000000,0.001062687000000,0.000069108000000,0.000576762000000,0.001074144000000,0.000055280000000,0.000183281000000,0.000203033000000,0.000078195000000,0.000257552000000,0.000587034000000 +0.000264268000000,0.000071873000000,0.000047774000000,0.000237009000000,0.000557403000000,0.001053995000000,0.000069108000000,0.000579527000000,0.001023971000000,0.000055676000000,0.000203429000000,0.000222392000000,0.000079379000000,0.000210145000000,0.000657749000000 +0.000293107000000,0.000070293000000,0.000046985000000,0.000227132000000,0.000594540000000,0.001097848000000,0.000069108000000,0.000535675000000,0.001371625000000,0.000056070000000,0.000235429000000,0.000184466000000,0.000078985000000,0.000210145000000,0.000622194000000 +0.000238590000000,0.000069502000000,0.000046589000000,0.000214095000000,0.000559774000000,0.001060317000000,0.000069897000000,0.000587823000000,0.001093897000000,0.000055676000000,0.000202638000000,0.000203034000000,0.000079774000000,0.000248071000000,0.000595330000000 +0.000244120000000,0.000068712000000,0.000047379000000,0.000215281000000,0.000970243000000,0.001062292000000,0.000069107000000,0.000574391000000,0.001063873000000,0.000055281000000,0.000203428000000,0.000188417000000,0.000079379000000,0.000210935000000,0.000626935000000 +0.000342095000000,0.000071873000000,0.000046590000000,0.000221206000000,0.000655774000000,0.001089552000000,0.000088860000000,0.000534491000000,0.001059527000000,0.000056466000000,0.000204219000000,0.000186441000000,0.000114935000000,0.000209355000000,0.000627329000000 +0.000245305000000,0.000069503000000,0.000046984000000,0.000270984000000,0.000606786000000,0.001097453000000,0.000113749000000,0.000618243000000,0.001029897000000,0.000055676000000,0.000290738000000,0.000272564000000,0.000078985000000,0.000514342000000,0.000598885000000 +0.000239775000000,0.000069108000000,0.000046984000000,0.000328268000000,0.000561354000000,0.001052811000000,0.000069898000000,0.000537650000000,0.001021996000000,0.000056466000000,0.000203824000000,0.000188416000000,0.000079379000000,0.000226342000000,0.000664466000000 +0.000247675000000,0.000069108000000,0.000046985000000,0.000417157000000,0.000592564000000,0.001037009000000,0.000074243000000,0.000575182000000,0.001024366000000,0.000075034000000,0.000190392000000,0.000184466000000,0.000078589000000,0.000263083000000,0.000599280000000 +0.000331429000000,0.000069108000000,0.000046984000000,0.000319971000000,0.000553454000000,0.001029897000000,0.000071873000000,0.000534095000000,0.001008959000000,0.000093206000000,0.000204219000000,0.000203034000000,0.000078984000000,0.000210540000000,0.000628119000000 +0.000245700000000,0.000069108000000,0.000046590000000,0.000223971000000,0.000595329000000,0.001050441000000,0.000069503000000,0.000610737000000,0.001048465000000,0.000093997000000,0.000223577000000,0.000280861000000,0.000078984000000,0.000211330000000,0.000632861000000 +0.000243724000000,0.000088861000000,0.000047774000000,0.000253207000000,0.000625750000000,0.001122737000000,0.000072663000000,0.000570441000000,0.001182391000000,0.000058836000000,0.000188416000000,0.000185255000000,0.000078589000000,0.000280861000000,0.000599280000000 +0.000317997000000,0.000108219000000,0.000046194000000,0.000260712000000,0.000558984000000,0.001037403000000,0.000070293000000,0.000540811000000,0.001018045000000,0.000055280000000,0.000203823000000,0.000199083000000,0.000078589000000,0.000210145000000,0.000628515000000 +0.000253602000000,0.000068713000000,0.000046194000000,0.000223972000000,0.000598095000000,0.001029107000000,0.000069503000000,0.000943379000000,0.001027527000000,0.000055281000000,0.000190786000000,0.000189206000000,0.000079380000000,0.000211330000000,0.000622589000000 +0.000238589000000,0.000069503000000,0.000047774000000,0.000224367000000,0.000552663000000,0.001037799000000,0.000069898000000,0.000634046000000,0.001012119000000,0.000054095000000,0.000203033000000,0.000199873000000,0.000078984000000,0.000261503000000,0.000603626000000 +0.000241749000000,0.000070688000000,0.000046985000000,0.000214490000000,0.000589403000000,0.001039774000000,0.000069503000000,0.000538045000000,0.001021996000000,0.000054490000000,0.000229898000000,0.000236614000000,0.000079380000000,0.000211330000000,0.000764020000000 +0.000338934000000,0.000068317000000,0.000046984000000,0.000219627000000,0.000590589000000,0.001198588000000,0.000090836000000,0.000615083000000,0.001018046000000,0.000055676000000,0.000186046000000,0.000188812000000,0.000150885000000,0.000211724000000,0.000752169000000 +0.000245306000000,0.000069107000000,0.000082934000000,0.000252021000000,0.000562144000000,0.001034638000000,0.000126391000000,0.000534490000000,0.001024761000000,0.000055676000000,0.000203034000000,0.000188416000000,0.000078984000000,0.000282836000000,0.000586244000000 +0.000239774000000,0.000069107000000,0.000047379000000,0.000221601000000,0.000589009000000,0.001037403000000,0.000069503000000,0.000603626000000,0.001021601000000,0.000055280000000,0.000204219000000,0.000186046000000,0.000078985000000,0.000209749000000,0.000657749000000 +0.000250046000000,0.000069502000000,0.000046590000000,0.000223972000000,0.000557009000000,0.001045304000000,0.000068713000000,0.000741108000000,0.001024366000000,0.000056466000000,0.000239380000000,0.000220021000000,0.000079379000000,0.000210144000000,0.000688564000000 +0.000323923000000,0.000071478000000,0.000047774000000,0.000214095000000,0.000628120000000,0.001036613000000,0.000069898000000,0.000758490000000,0.001005799000000,0.000055281000000,0.000218046000000,0.000184071000000,0.000078985000000,0.000282836000000,0.000794440000000 +0.000248070000000,0.000072268000000,0.000046589000000,0.000305355000000,0.000554638000000,0.001029107000000,0.000069503000000,0.000534885000000,0.001137353000000,0.000054885000000,0.000204219000000,0.000203429000000,0.000078589000000,0.000212515000000,0.000609157000000 +0.000244120000000,0.000068712000000,0.000046985000000,0.000218836000000,0.000599675000000,0.001125502000000,0.000069108000000,0.000605997000000,0.001010935000000,0.000107429000000,0.000180910000000,0.000186441000000,0.000078589000000,0.000214886000000,0.000634836000000 +0.000370145000000,0.000107823000000,0.000047379000000,0.000219626000000,0.000589798000000,0.001065452000000,0.000068713000000,0.000538441000000,0.001012514000000,0.000055675000000,0.000196712000000,0.000182886000000,0.000078589000000,0.000297848000000,0.000621008000000 +0.000579922000000,0.000198688000000,0.000048169000000,0.000214095000000,0.000554243000000,0.001089946000000,0.000071478000000,0.000570440000000,0.001034638000000,0.000056071000000,0.000240169000000,0.000241355000000,0.000078985000000,0.000214096000000,0.000635231000000 +0.000291528000000,0.000225948000000,0.000046984000000,0.000304169000000,0.000589404000000,0.001076514000000,0.000069503000000,0.000534885000000,0.001068613000000,0.000055280000000,0.000202244000000,0.000187231000000,0.000078194000000,0.000212515000000,0.000626935000000 +0.000248070000000,0.000156811000000,0.000046984000000,0.000223577000000,0.000561749000000,0.001037009000000,0.000069503000000,0.000584268000000,0.001080860000000,0.000056071000000,0.000205009000000,0.000202638000000,0.000078590000000,0.000293107000000,0.000626539000000 +0.000248070000000,0.000073058000000,0.000048169000000,0.000223182000000,0.000629304000000,0.001029107000000,0.000068712000000,0.000609947000000,0.001021996000000,0.000054886000000,0.000205009000000,0.000189207000000,0.000118490000000,0.000209749000000,0.000635626000000 +0.000245305000000,0.000099132000000,0.000046984000000,0.000223972000000,0.000603230000000,0.001036614000000,0.000069898000000,0.000539231000000,0.001026737000000,0.000054885000000,0.000278096000000,0.000290737000000,0.000093206000000,0.000208565000000,0.000663675000000 +0.000285602000000,0.000071478000000,0.000046985000000,0.000254391000000,0.000569650000000,0.001040169000000,0.000111774000000,0.000573996000000,0.001246786000000,0.000056466000000,0.000203429000000,0.000184465000000,0.000078984000000,0.000272169000000,0.000622589000000 +0.000245305000000,0.000105058000000,0.000046984000000,0.000225157000000,0.000596119000000,0.001036613000000,0.000069503000000,0.000537651000000,0.001020810000000,0.000055281000000,0.000204614000000,0.000182885000000,0.000079379000000,0.000210934000000,0.000626540000000 +0.000247676000000,0.000072269000000,0.000046985000000,0.000215676000000,0.000554243000000,0.001029897000000,0.000073059000000,0.000570440000000,0.001020415000000,0.000056070000000,0.000203034000000,0.000202244000000,0.000078589000000,0.000208960000000,0.000621798000000 +0.000249651000000,0.000069108000000,0.000047379000000,0.000222392000000,0.000608367000000,0.001037008000000,0.000069108000000,0.000539626000000,0.001197798000000,0.000056071000000,0.000237009000000,0.000184071000000,0.000078984000000,0.000225947000000,0.000623774000000 +0.000285601000000,0.000074638000000,0.000046589000000,0.000255971000000,0.000593749000000,0.001029502000000,0.000069503000000,0.000610341000000,0.001286292000000,0.000054885000000,0.000203034000000,0.000221602000000,0.000078589000000,0.000210145000000,0.000628515000000 +0.000248071000000,0.000070688000000,0.000083330000000,0.000219626000000,0.000558194000000,0.001148020000000,0.000069503000000,0.000573996000000,0.001053206000000,0.000055280000000,0.000183281000000,0.000187231000000,0.000081355000000,0.000210145000000,0.000622194000000 +0.000239379000000,0.000073453000000,0.000046590000000,0.000221206000000,0.000595330000000,0.001044909000000,0.000070293000000,0.000539231000000,0.001009354000000,0.000054886000000,0.000206194000000,0.000199083000000,0.000079379000000,0.000209750000000,0.000687774000000 +0.000244910000000,0.000069107000000,0.000046589000000,0.000224367000000,0.000560564000000,0.001141304000000,0.000069503000000,0.000646687000000,0.001072169000000,0.000072269000000,0.000201059000000,0.000186046000000,0.000078984000000,0.000244120000000,0.000906638000000 +0.000285601000000,0.000069502000000,0.000046589000000,0.000223972000000,0.000718193000000,0.001029107000000,0.000069897000000,0.000538836000000,0.001069403000000,0.000055675000000,0.000242540000000,0.000202244000000,0.000078589000000,0.000264268000000,0.000663280000000 +0.000247281000000,0.000071478000000,0.000048960000000,0.000248465000000,0.000596119000000,0.001071774000000,0.000069107000000,0.000625750000000,0.001073749000000,0.000055280000000,0.000204219000000,0.000234243000000,0.000130342000000,0.000212120000000,0.000637996000000 +0.000241749000000,0.000069503000000,0.000046984000000,0.000221207000000,0.000561354000000,0.001064268000000,0.000070293000000,0.000570440000000,0.001005009000000,0.000054491000000,0.000182885000000,0.000203823000000,0.000078589000000,0.000210539000000,0.000630490000000 +0.000241750000000,0.000071873000000,0.000046589000000,0.000223972000000,0.000591774000000,0.001386243000000,0.000069503000000,0.000539230000000,0.001046094000000,0.000054886000000,0.000202243000000,0.000202243000000,0.000079379000000,0.000282046000000,0.000635626000000 +0.000293898000000,0.000071874000000,0.000046985000000,0.000215675000000,0.000553453000000,0.001029502000000,0.000115725000000,0.000574786000000,0.001029107000000,0.000054885000000,0.000224761000000,0.000203824000000,0.000078984000000,0.000208959000000,0.000590984000000 +0.000243725000000,0.000105848000000,0.000047379000000,0.000269799000000,0.000595724000000,0.001084811000000,0.000068713000000,0.000534885000000,0.001071774000000,0.000056071000000,0.000218441000000,0.000240170000000,0.000078984000000,0.000210145000000,0.000626934000000 +0.000238984000000,0.000069502000000,0.000046589000000,0.000227922000000,0.000634835000000,0.001029106000000,0.000069898000000,0.000702392000000,0.001054391000000,0.000056071000000,0.000181701000000,0.000184071000000,0.000078985000000,0.000281651000000,0.000599676000000 +0.000285602000000,0.000068712000000,0.000046589000000,0.000219232000000,0.000558984000000,0.001037403000000,0.000068713000000,0.000582687000000,0.001019230000000,0.000058441000000,0.000180515000000,0.000195922000000,0.000079379000000,0.000208960000000,0.000628119000000 +0.000239379000000,0.000071873000000,0.000046194000000,0.000219626000000,0.000597700000000,0.001068613000000,0.000068713000000,0.000534096000000,0.001323428000000,0.000054095000000,0.000203034000000,0.000201848000000,0.000079380000000,0.000209750000000,0.000622589000000 +0.000255182000000,0.000068713000000,0.000046985000000,0.000252021000000,0.000553453000000,0.001037799000000,0.000069503000000,0.000575576000000,0.001146836000000,0.000055676000000,0.000252416000000,0.000204219000000,0.000078984000000,0.000280465000000,0.000590194000000 +0.000250441000000,0.000068713000000,0.000046194000000,0.000220021000000,0.000590589000000,0.001029897000000,0.000069108000000,0.000535280000000,0.001014489000000,0.000056071000000,0.000188416000000,0.000219231000000,0.000079774000000,0.000209750000000,0.000870687000000 +0.000284416000000,0.000069503000000,0.000046590000000,0.000220021000000,0.000590194000000,0.001072168000000,0.000074244000000,0.000575577000000,0.001025157000000,0.000055675000000,0.000202639000000,0.000203429000000,0.000114935000000,0.000212120000000,0.000671972000000 +0.000244120000000,0.000068713000000,0.000047379000000,0.000227528000000,0.000561750000000,0.001044909000000,0.000071083000000,0.000534490000000,0.001018045000000,0.000054886000000,0.000202244000000,0.000182095000000,0.000078589000000,0.000399774000000,0.000586243000000 +0.000238984000000,0.000069503000000,0.000047379000000,0.000332613000000,0.000687379000000,0.001048465000000,0.000069503000000,0.000709503000000,0.001059922000000,0.000090046000000,0.000221996000000,0.000185256000000,0.000079379000000,0.000294688000000,0.000674737000000 +0.000244515000000,0.000069898000000,0.000066343000000,0.000301799000000,0.000557009000000,0.001074934000000,0.000072268000000,0.000591774000000,0.001009749000000,0.000070688000000,0.000182886000000,0.000227527000000,0.000078984000000,0.000260318000000,0.000679478000000 +0.000286391000000,0.000069503000000,0.000060021000000,0.000222787000000,0.000592959000000,0.001073749000000,0.000070688000000,0.000534885000000,0.001018046000000,0.000055676000000,0.000185651000000,0.000203823000000,0.000080170000000,0.000210145000000,0.000591379000000 +0.000305750000000,0.000068713000000,0.000046984000000,0.000221207000000,0.000611527000000,0.001029502000000,0.000104269000000,0.000575577000000,0.001034637000000,0.000055281000000,0.000183281000000,0.000186046000000,0.000080959000000,0.000210935000000,0.000680267000000 +0.000248071000000,0.000087676000000,0.000046985000000,0.000251231000000,0.000566490000000,0.001037404000000,0.000070293000000,0.000540416000000,0.001057552000000,0.000056466000000,0.000203824000000,0.000186441000000,0.000078984000000,0.000245700000000,0.000682639000000 +0.000247675000000,0.000075429000000,0.000046589000000,0.000221601000000,0.000595724000000,0.001029502000000,0.000069108000000,0.000575971000000,0.001059527000000,0.000055676000000,0.000238194000000,0.000202639000000,0.000078984000000,0.000211330000000,0.000685403000000 +0.000282046000000,0.000082145000000,0.000046984000000,0.000221207000000,0.000554243000000,0.001050045000000,0.000068318000000,0.000536466000000,0.001009749000000,0.000056465000000,0.000184860000000,0.000279675000000,0.000079774000000,0.000208565000000,0.000639972000000 +0.000248466000000,0.000069107000000,0.000046589000000,0.000214490000000,0.000687379000000,0.001473551000000,0.000069108000000,0.000570440000000,0.001016465000000,0.000054886000000,0.000201453000000,0.000241750000000,0.000078985000000,0.000245700000000,0.000671181000000 +0.000240169000000,0.000069502000000,0.000046589000000,0.000250836000000,0.000597700000000,0.001037798000000,0.000069503000000,0.000578737000000,0.001025552000000,0.000055281000000,0.000191972000000,0.000203429000000,0.000078984000000,0.000209355000000,0.000590194000000 +0.000287181000000,0.000069107000000,0.000046589000000,0.000223577000000,0.000557404000000,0.001034243000000,0.000069108000000,0.000606786000000,0.001059921000000,0.000054490000000,0.000187231000000,0.000182491000000,0.000133503000000,0.000213305000000,0.000670392000000 +0.000260317000000,0.000071478000000,0.000046194000000,0.000260317000000,0.000623774000000,0.001036613000000,0.000070293000000,0.000607577000000,0.001035032000000,0.000054886000000,0.000225947000000,0.000288762000000,0.000094786000000,0.000249256000000,0.000674736000000 +0.000248070000000,0.000072268000000,0.000046985000000,0.000290737000000,0.000570045000000,0.001290243000000,0.000069108000000,0.000540811000000,0.001037403000000,0.000055676000000,0.000191181000000,0.000203034000000,0.000078984000000,0.000212910000000,0.000594540000000 +0.000244515000000,0.000069107000000,0.000046589000000,0.000314441000000,0.000590194000000,0.001037404000000,0.000069108000000,0.000573601000000,0.001079280000000,0.000055280000000,0.000203428000000,0.000186441000000,0.000078194000000,0.000210540000000,0.000669996000000 +0.000283231000000,0.000069107000000,0.000046985000000,0.000223577000000,0.000625354000000,0.001029107000000,0.000068713000000,0.000578342000000,0.001020811000000,0.000055676000000,0.000203823000000,0.000203034000000,0.000078589000000,0.000248860000000,0.000676712000000 +0.000248070000000,0.000069502000000,0.000047379000000,0.000218046000000,0.000574391000000,0.001037008000000,0.000072269000000,0.000542392000000,0.001134588000000,0.000091627000000,0.000230688000000,0.000271379000000,0.000082145000000,0.000209749000000,0.000594935000000 +0.000244120000000,0.000068712000000,0.000046984000000,0.000224367000000,0.000629304000000,0.001146045000000,0.000069503000000,0.000619033000000,0.001017255000000,0.000077009000000,0.000396613000000,0.000206589000000,0.000078984000000,0.000210539000000,0.000869897000000 +0.000244120000000,0.000069108000000,0.000046590000000,0.000266243000000,0.000558589000000,0.001037403000000,0.000104268000000,0.000535280000000,0.001033453000000,0.000058046000000,0.000237404000000,0.000193157000000,0.000078589000000,0.000244910000000,0.000622589000000 +0.000275330000000,0.000105453000000,0.000046984000000,0.000214491000000,0.000596120000000,0.001028712000000,0.000068713000000,0.000575182000000,0.001014490000000,0.000054886000000,0.000203429000000,0.000203033000000,0.000078589000000,0.000214885000000,0.000595330000000 +0.000238589000000,0.000067922000000,0.000046590000000,0.000214490000000,0.000631675000000,0.001037403000000,0.000069898000000,0.000534885000000,0.001079675000000,0.000054886000000,0.000220022000000,0.000204219000000,0.000078589000000,0.000213306000000,0.000635231000000 +0.000244515000000,0.000071083000000,0.000136663000000,0.000219231000000,0.000557009000000,0.001064662000000,0.000075429000000,0.000607182000000,0.001010934000000,0.000056465000000,0.000190787000000,0.000286391000000,0.000078984000000,0.000255972000000,0.000711478000000 +0.000250045000000,0.000068712000000,0.000081749000000,0.000269799000000,0.000643527000000,0.001037008000000,0.000069108000000,0.000618638000000,0.001015280000000,0.000054886000000,0.000185651000000,0.000190392000000,0.000149305000000,0.000210145000000,0.000634836000000 +0.000292712000000,0.000072268000000,0.000049355000000,0.000218046000000,0.000561749000000,0.001029502000000,0.000073454000000,0.000537651000000,0.001020415000000,0.000054886000000,0.000184466000000,0.000202639000000,0.000080565000000,0.000210935000000,0.000631280000000 +0.000243725000000,0.000069108000000,0.000049750000000,0.000216861000000,0.000646293000000,0.001037798000000,0.000069503000000,0.000586638000000,0.001014490000000,0.000055675000000,0.000241355000000,0.000184861000000,0.000078984000000,0.000249651000000,0.000635231000000 +0.000247676000000,0.000074639000000,0.000060811000000,0.000214885000000,0.000589404000000,0.001368860000000,0.000068713000000,0.000536070000000,0.001011724000000,0.000056071000000,0.000182096000000,0.000270194000000,0.000078589000000,0.000214095000000,0.000627330000000 +0.000244910000000,0.000071083000000,0.000046590000000,0.000361058000000,0.000559379000000,0.001112465000000,0.000069503000000,0.000575972000000,0.001097453000000,0.000056466000000,0.000186441000000,0.000185651000000,0.000078589000000,0.000244515000000,0.000662095000000 +0.000314441000000,0.000072664000000,0.000049355000000,0.000243330000000,0.000625749000000,0.001204909000000,0.000070293000000,0.000538441000000,0.001024366000000,0.000056466000000,0.000185256000000,0.000185256000000,0.000078195000000,0.000244910000000,0.000706342000000 +0.000247676000000,0.000069108000000,0.000047379000000,0.000226342000000,0.000558588000000,0.001083230000000,0.000069108000000,0.000572021000000,0.001023181000000,0.000055280000000,0.000202639000000,0.000185256000000,0.000078589000000,0.000208564000000,0.000628119000000 +0.000248070000000,0.000068713000000,0.000046589000000,0.000220021000000,0.000608366000000,0.001189106000000,0.000069898000000,0.000624169000000,0.001033847000000,0.000056466000000,0.000240565000000,0.000204219000000,0.000079380000000,0.000210144000000,0.000630885000000 +0.000276910000000,0.000071083000000,0.000046590000000,0.000254392000000,0.000623379000000,0.001072959000000,0.000161947000000,0.000605996000000,0.001031873000000,0.000090837000000,0.000203824000000,0.000226737000000,0.000078984000000,0.000281650000000,0.000641947000000 +0.000248071000000,0.000105058000000,0.000046589000000,0.000223577000000,0.000554243000000,0.001029502000000,0.000170244000000,0.000570441000000,0.001142885000000,0.000056071000000,0.000204614000000,0.000188812000000,0.000078589000000,0.000208959000000,0.000630490000000 +0.000246095000000,0.000072268000000,0.000047775000000,0.000225157000000,0.000651823000000,0.001088366000000,0.000101898000000,0.000543182000000,0.001023971000000,0.000056466000000,0.000202639000000,0.000188416000000,0.000078984000000,0.000209750000000,0.000667230000000 +0.000248070000000,0.000072268000000,0.000046589000000,0.000223182000000,0.000822095000000,0.001039773000000,0.000083725000000,0.000584663000000,0.001026736000000,0.000056071000000,0.000225157000000,0.000183675000000,0.000153650000000,0.000245700000000,0.000630095000000 +0.000277700000000,0.000069898000000,0.000046984000000,0.000250045000000,0.000552663000000,0.001051230000000,0.000069107000000,0.000632465000000,0.001035824000000,0.000056465000000,0.000202639000000,0.000272565000000,0.000091626000000,0.000209750000000,0.000621798000000 +0.000247676000000,0.000069503000000,0.000046985000000,0.000221207000000,0.000901107000000,0.001131823000000,0.000069502000000,0.000534490000000,0.001162242000000,0.000056466000000,0.000182886000000,0.000202244000000,0.000079380000000,0.000210145000000,0.000632071000000 +0.000248071000000,0.000068713000000,0.000102293000000,0.000223972000000,0.000628910000000,0.001631181000000,0.000069502000000,0.000588219000000,0.001059132000000,0.000056070000000,0.000189996000000,0.000187626000000,0.000079379000000,0.000284811000000,0.000624169000000 +0.000246095000000,0.000071478000000,0.000082540000000,0.000223181000000,0.000554638000000,0.001046885000000,0.000069107000000,0.000544367000000,0.001061107000000,0.000055281000000,0.000182095000000,0.000203034000000,0.000078984000000,0.000214885000000,0.000628515000000 +0.000285206000000,0.000068713000000,0.000078194000000,0.000303775000000,0.000660119000000,0.001082440000000,0.000069503000000,0.000573601000000,0.001032662000000,0.000055676000000,0.000240960000000,0.000275330000000,0.000078984000000,0.000210540000000,0.000634835000000 +0.000248070000000,0.000069108000000,0.000046590000000,0.000219231000000,0.000607182000000,0.001042144000000,0.000089256000000,0.000541601000000,0.001028316000000,0.000055676000000,0.000200663000000,0.000205009000000,0.000078984000000,0.000248465000000,0.000594540000000 +0.000246096000000,0.000069108000000,0.000046984000000,0.000215675000000,0.000553848000000,0.001037008000000,0.000074243000000,0.000621009000000,0.001058736000000,0.000055676000000,0.000180515000000,0.000206194000000,0.000078589000000,0.000209355000000,0.000635625000000 +0.000250441000000,0.000069503000000,0.000046984000000,0.000221602000000,0.000589009000000,0.001120366000000,0.000071874000000,0.000570045000000,0.001017650000000,0.000054885000000,0.000188812000000,0.000189207000000,0.000079379000000,0.000209750000000,0.000627330000000 +0.000284416000000,0.000069108000000,0.000046985000000,0.000259132000000,0.000561749000000,0.001062687000000,0.000069108000000,0.000542391000000,0.001021996000000,0.000056466000000,0.000183280000000,0.000181700000000,0.000081355000000,0.000247676000000,0.000590984000000 +0.000247676000000,0.000103083000000,0.000046589000000,0.000218441000000,0.000606391000000,0.001072959000000,0.000071478000000,0.000609552000000,0.001379132000000,0.000055280000000,0.000263478000000,0.000255576000000,0.000113355000000,0.000211330000000,0.000634836000000 +0.000239379000000,0.000072663000000,0.000046984000000,0.000219231000000,0.000589799000000,0.001061502000000,0.000070688000000,0.000534885000000,0.001072959000000,0.000074639000000,0.000188416000000,0.000185650000000,0.000095972000000,0.000210539000000,0.000592959000000 +0.000267034000000,0.000082540000000,0.000046984000000,0.000221206000000,0.000620219000000,0.001053601000000,0.000067527000000,0.000574391000000,0.001008563000000,0.000056071000000,0.000184465000000,0.000182885000000,0.000079775000000,0.000282046000000,0.000644712000000 +0.000256762000000,0.000069503000000,0.000047774000000,0.000214095000000,0.000639971000000,0.001097057000000,0.000069503000000,0.000542787000000,0.001012119000000,0.000056466000000,0.000201848000000,0.000182886000000,0.000078984000000,0.000208960000000,0.000680268000000 +0.000248070000000,0.000071083000000,0.000046590000000,0.000250441000000,0.000555033000000,0.001053995000000,0.000069108000000,0.000933897000000,0.001023181000000,0.000057256000000,0.000238985000000,0.000256762000000,0.000078984000000,0.000208564000000,0.000593354000000 +0.000238984000000,0.000069108000000,0.000046194000000,0.000219231000000,0.000596120000000,0.001063477000000,0.000069108000000,0.000610342000000,0.001017650000000,0.000056070000000,0.000203824000000,0.000201453000000,0.000078194000000,0.000246095000000,0.000803922000000 +0.000293502000000,0.000069503000000,0.000046984000000,0.000224762000000,0.000592959000000,0.001187131000000,0.000069503000000,0.000636416000000,0.001048860000000,0.000054491000000,0.000204614000000,0.000201453000000,0.000078984000000,0.000210540000000,0.000630490000000 +0.000335774000000,0.000069898000000,0.000046984000000,0.000214096000000,0.000558984000000,0.001059922000000,0.000069502000000,0.000536466000000,0.001029898000000,0.000056071000000,0.000182095000000,0.000203429000000,0.000078984000000,0.000209750000000,0.000586638000000 +0.000239379000000,0.000067923000000,0.000047379000000,0.000377650000000,0.000642737000000,0.001029502000000,0.000069107000000,0.000577947000000,0.001023576000000,0.000055280000000,0.000206984000000,0.000202639000000,0.000078984000000,0.000246095000000,0.000646293000000 +0.000241750000000,0.000071478000000,0.000063577000000,0.000334984000000,0.000560959000000,0.001055576000000,0.000139428000000,0.000534885000000,0.001037798000000,0.000055676000000,0.000220812000000,0.000282836000000,0.000078589000000,0.000209750000000,0.000669996000000 +0.000285206000000,0.000072269000000,0.000048169000000,0.000232269000000,0.000593354000000,0.001029897000000,0.000069107000000,0.000604811000000,0.001021601000000,0.000056071000000,0.000204219000000,0.000182886000000,0.000081354000000,0.000209355000000,0.000591774000000 +0.000247676000000,0.000069503000000,0.000047379000000,0.000303379000000,0.000595725000000,0.001037403000000,0.000068712000000,0.000538046000000,0.001030687000000,0.000055280000000,0.000190787000000,0.000182491000000,0.000150095000000,0.000246490000000,0.000640367000000 +0.000301799000000,0.000069108000000,0.000046194000000,0.000215280000000,0.000561354000000,0.001029898000000,0.000068712000000,0.000573996000000,0.001017651000000,0.000056071000000,0.000202243000000,0.000203429000000,0.000078984000000,0.000209354000000,0.000630490000000 +0.000279676000000,0.000086095000000,0.000047379000000,0.000220021000000,0.000600465000000,0.001051230000000,0.000071479000000,0.000621799000000,0.001012909000000,0.000056465000000,0.000240564000000,0.000330243000000,0.000079379000000,0.000209355000000,0.000598095000000 +0.000246095000000,0.000069107000000,0.000049750000000,0.000214491000000,0.000554243000000,0.001048465000000,0.000068712000000,0.000538836000000,0.001040959000000,0.000055281000000,0.000216860000000,0.000451132000000,0.000079380000000,0.000250836000000,0.000662885000000 +0.000243330000000,0.000069502000000,0.000049355000000,0.000250441000000,0.000595329000000,0.001072169000000,0.000068712000000,0.000571626000000,0.001357008000000,0.000055676000000,0.000203428000000,0.000223181000000,0.000078984000000,0.000209750000000,0.000590589000000 +0.000245700000000,0.000068712000000,0.000046985000000,0.000224367000000,0.000590194000000,0.001029897000000,0.000069107000000,0.000537255000000,0.001008564000000,0.000126787000000,0.000207380000000,0.000238984000000,0.000078985000000,0.000212515000000,0.000645897000000 +0.000302194000000,0.000068317000000,0.000048565000000,0.000224367000000,0.000558983000000,0.001036613000000,0.000069898000000,0.000570046000000,0.001021206000000,0.000055676000000,0.000204219000000,0.000184466000000,0.000081750000000,0.000285207000000,0.000641947000000 +0.000248465000000,0.000072268000000,0.000046589000000,0.000213701000000,0.000611527000000,0.001099428000000,0.000075824000000,0.000540811000000,0.001012514000000,0.000055280000000,0.000264268000000,0.000188812000000,0.000079379000000,0.000240169000000,0.000594144000000 +0.000238985000000,0.000069503000000,0.000046589000000,0.000253601000000,0.000552663000000,0.001036614000000,0.000069898000000,0.000575577000000,0.002104465000000,0.000055676000000,0.000184861000000,0.000203824000000,0.000078589000000,0.000210145000000,0.000680268000000 +0.000240564000000,0.000071873000000,0.000046589000000,0.000252416000000,0.000590589000000,0.001028712000000,0.000073849000000,0.000608366000000,0.001678588000000,0.000055280000000,0.000182885000000,0.000240564000000,0.000078984000000,0.000256762000000,0.000630885000000 +0.000280466000000,0.000069107000000,0.000050540000000,0.000215676000000,0.000573601000000,0.001037404000000,0.000105058000000,0.000539231000000,0.001137354000000,0.000056071000000,0.000204614000000,0.000203033000000,0.000078984000000,0.000209354000000,0.000595330000000 +0.000244120000000,0.000074243000000,0.000046194000000,0.000214490000000,0.000561750000000,0.001029502000000,0.000069107000000,0.000576367000000,0.001017650000000,0.000055676000000,0.000239380000000,0.000182885000000,0.000114540000000,0.000208959000000,0.000643922000000 +0.000247281000000,0.000070293000000,0.000046985000000,0.000343280000000,0.000588218000000,0.001042144000000,0.000069107000000,0.000535280000000,0.001097453000000,0.000056070000000,0.000184071000000,0.000225157000000,0.000079775000000,0.000298244000000,0.000586638000000 +0.000247675000000,0.000073453000000,0.000046589000000,0.000228318000000,0.000615477000000,0.001064268000000,0.000069897000000,0.000573997000000,0.001023181000000,0.000055281000000,0.000185256000000,0.000184465000000,0.000078984000000,0.000212120000000,0.000729255000000 +0.000274935000000,0.000105454000000,0.000046194000000,0.000221601000000,0.000717009000000,0.001163033000000,0.000069502000000,0.000542391000000,0.001039379000000,0.000055675000000,0.000183281000000,0.000222786000000,0.000078590000000,0.000209750000000,0.000682639000000 +0.000248071000000,0.000069108000000,0.000083330000000,0.000219627000000,0.000589799000000,0.001039379000000,0.000069107000000,0.000570441000000,0.001122341000000,0.000055281000000,0.000183280000000,0.000186046000000,0.000079379000000,0.000245305000000,0.000721749000000 +0.000238984000000,0.000071478000000,0.000046985000000,0.000233453000000,0.000552268000000,0.001093897000000,0.000068712000000,0.000573206000000,0.001089551000000,0.000056071000000,0.000220416000000,0.000185256000000,0.000078589000000,0.000209354000000,0.000598885000000 +0.000245700000000,0.000069503000000,0.000046984000000,0.000322737000000,0.000589799000000,0.001039773000000,0.000069898000000,0.000538836000000,0.001034638000000,0.000054885000000,0.000183281000000,0.000186441000000,0.000078589000000,0.000216861000000,0.000678687000000 +0.000295478000000,0.000071083000000,0.000047379000000,0.000227922000000,0.000554638000000,0.001118786000000,0.000069898000000,0.000579132000000,0.001046095000000,0.000058836000000,0.000190787000000,0.000187626000000,0.000099132000000,0.000246491000000,0.000637601000000 +0.000248466000000,0.000072268000000,0.000046985000000,0.000227528000000,0.000589008000000,0.001077305000000,0.000069503000000,0.000536861000000,0.001078095000000,0.000097157000000,0.000182886000000,0.000202638000000,0.000096367000000,0.000210935000000,0.000621008000000 +0.000248466000000,0.000069503000000,0.000046984000000,0.000238984000000,0.000607577000000,0.001087181000000,0.000069503000000,0.000584268000000,0.001075329000000,0.000056071000000,0.000184861000000,0.000201848000000,0.000078984000000,0.000212515000000,0.000675923000000 +0.000284021000000,0.000069898000000,0.000046589000000,0.000227132000000,0.000557009000000,0.001077305000000,0.000069503000000,0.000548712000000,0.001083626000000,0.000057256000000,0.000238194000000,0.000202244000000,0.000150096000000,0.000282836000000,0.000598886000000 +0.000248071000000,0.000069503000000,0.000046194000000,0.000227133000000,0.000600465000000,0.001037009000000,0.000137453000000,0.000585848000000,0.001049255000000,0.000055676000000,0.000188812000000,0.000203429000000,0.000079379000000,0.000210144000000,0.000676712000000 +0.000238984000000,0.000071478000000,0.000047774000000,0.000227132000000,0.000569650000000,0.001064267000000,0.000069108000000,0.000571231000000,0.001092317000000,0.000054886000000,0.000276910000000,0.000220812000000,0.000078985000000,0.000212120000000,0.000683823000000 +0.000248071000000,0.000069503000000,0.000046985000000,0.000263478000000,0.000625750000000,0.001072959000000,0.000069503000000,0.000540416000000,0.001045700000000,0.000054885000000,0.000265849000000,0.000202243000000,0.000079379000000,0.000257947000000,0.000598885000000 +0.000282836000000,0.000069108000000,0.000046589000000,0.000229897000000,0.000590194000000,0.001432465000000,0.000069503000000,0.000625354000000,0.001065453000000,0.000055281000000,0.000331429000000,0.000184070000000,0.000080959000000,0.000209750000000,0.000682639000000 +0.000249651000000,0.000105058000000,0.000047380000000,0.000233058000000,0.000558984000000,0.001074539000000,0.000074244000000,0.000534886000000,0.001084810000000,0.000057256000000,0.000217256000000,0.000182490000000,0.000079379000000,0.000209354000000,0.000679477000000 +0.000239379000000,0.000068712000000,0.000048170000000,0.000237799000000,0.000598885000000,0.001044119000000,0.000070688000000,0.000669601000000,0.001072958000000,0.000055676000000,0.000204614000000,0.000202244000000,0.000078984000000,0.000245700000000,0.000594145000000 +0.000254787000000,0.000068712000000,0.000047379000000,0.000254786000000,0.000558984000000,0.001085205000000,0.000069503000000,0.000571231000000,0.001057157000000,0.000055281000000,0.000244515000000,0.000235033000000,0.000078589000000,0.000210935000000,0.000670391000000 +0.000284416000000,0.000069897000000,0.000046589000000,0.000236614000000,0.000606391000000,0.001029502000000,0.000073059000000,0.000534095000000,0.001018440000000,0.000055675000000,0.000205009000000,0.000203824000000,0.000078984000000,0.000214886000000,0.000679082000000 +0.000241355000000,0.000069107000000,0.000046194000000,0.000236219000000,0.000560960000000,0.001050441000000,0.000070293000000,0.000575576000000,0.001353058000000,0.000055281000000,0.000203034000000,0.000186441000000,0.000078589000000,0.000286787000000,0.000599281000000 +0.000239379000000,0.000068712000000,0.000046589000000,0.000233058000000,0.001472761000000,0.001028712000000,0.000069108000000,0.000540021000000,0.002122242000000,0.000056465000000,0.000204614000000,0.000202639000000,0.000078589000000,0.000211330000000,0.000675922000000 +0.000245305000000,0.000069107000000,0.000080565000000,0.000251626000000,0.000761256000000,0.001072959000000,0.000069898000000,0.000589799000000,0.001602342000000,0.000055676000000,0.000205009000000,0.000229503000000,0.000114935000000,0.000210935000000,0.000683033000000 +0.000314441000000,0.000070688000000,0.000062787000000,0.000238194000000,0.000594934000000,0.001029502000000,0.000069108000000,0.000535280000000,0.001080070000000,0.000092812000000,0.000253206000000,0.000203429000000,0.000079379000000,0.000246490000000,0.000594144000000 +0.000248860000000,0.000068713000000,0.000046590000000,0.000237404000000,0.000617453000000,0.001072564000000,0.000140614000000,0.000604812000000,0.001038194000000,0.000056860000000,0.000200664000000,0.000184861000000,0.000078589000000,0.000213305000000,0.001048070000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000228317000000,0.000553848000000,0.001029502000000,0.000069107000000,0.000573601000000,0.001051625000000,0.000055281000000,0.000203824000000,0.000185256000000,0.000078589000000,0.000209355000000,0.000656959000000 +0.000267428000000,0.000069503000000,0.000046984000000,0.000227923000000,0.000606787000000,0.001037008000000,0.000069502000000,0.000540021000000,0.001050045000000,0.000055280000000,0.000205404000000,0.000203429000000,0.000081354000000,0.000282836000000,0.000626935000000 +0.000255972000000,0.000069503000000,0.000047380000000,0.000243724000000,0.000590589000000,0.001029502000000,0.000069502000000,0.000575576000000,0.001150786000000,0.000055280000000,0.000257552000000,0.000222787000000,0.000079380000000,0.000209750000000,0.000599280000000 +0.000243725000000,0.000071478000000,0.000046194000000,0.000227528000000,0.000558589000000,0.001037008000000,0.000069502000000,0.000538836000000,0.001056366000000,0.000055676000000,0.000183675000000,0.000200268000000,0.000078984000000,0.000212515000000,0.000676317000000 +0.000245700000000,0.000156811000000,0.000046590000000,0.000229107000000,0.000633256000000,0.001029107000000,0.000069503000000,0.000570836000000,0.001119576000000,0.000056070000000,0.000182095000000,0.000203033000000,0.000079379000000,0.000245700000000,0.000630885000000 +0.000284021000000,0.000069108000000,0.000047774000000,0.000240564000000,0.000552663000000,0.001041354000000,0.000069503000000,0.000543577000000,0.001034638000000,0.000054096000000,0.000185256000000,0.000203034000000,0.000079379000000,0.000212515000000,0.000598490000000 +0.000250046000000,0.000069108000000,0.000047774000000,0.000262688000000,0.000590194000000,0.001030292000000,0.000069108000000,0.000606391000000,0.001079280000000,0.000056071000000,0.000182096000000,0.000278491000000,0.000078984000000,0.000209354000000,0.000630490000000 +0.000247281000000,0.000069108000000,0.000046985000000,0.000234638000000,0.000638391000000,0.001087576000000,0.000071478000000,0.000573601000000,0.001051625000000,0.000056070000000,0.000249651000000,0.000220812000000,0.000078589000000,0.000245306000000,0.000595330000000 +0.000244515000000,0.000069108000000,0.000046984000000,0.000233453000000,0.000561749000000,0.001063873000000,0.000069108000000,0.000536071000000,0.001121157000000,0.000054886000000,0.000188812000000,0.000186441000000,0.000209354000000,0.000210539000000,0.000629305000000 +0.000282046000000,0.000069503000000,0.000047774000000,0.000229108000000,0.000623774000000,0.001251132000000,0.000068318000000,0.000585058000000,0.001387427000000,0.000055676000000,0.000192762000000,0.000182886000000,0.000250046000000,0.000210935000000,0.000622589000000 +0.000247675000000,0.000069107000000,0.000046590000000,0.000268613000000,0.000557009000000,0.001029502000000,0.000069503000000,0.000536070000000,0.001012909000000,0.000053700000000,0.000186046000000,0.000203824000000,0.000180120000000,0.000248861000000,0.000595329000000 +0.000244910000000,0.000069502000000,0.000047774000000,0.000227923000000,0.000621404000000,0.001036613000000,0.000139429000000,0.000579132000000,0.001023576000000,0.000055676000000,0.000238985000000,0.000285997000000,0.000082935000000,0.000208959000000,0.000641157000000 +0.000243725000000,0.000072663000000,0.000046589000000,0.000234638000000,0.000590194000000,0.001064663000000,0.000089651000000,0.000537651000000,0.001028711000000,0.000055676000000,0.000216071000000,0.000186046000000,0.000093601000000,0.000209355000000,0.000638786000000 +0.000274540000000,0.000068713000000,0.000046589000000,0.000232269000000,0.000552663000000,0.001037008000000,0.000069897000000,0.000973798000000,0.001035428000000,0.000107034000000,0.000180515000000,0.000203034000000,0.000078984000000,0.000261108000000,0.000598490000000 +0.000238589000000,0.000071873000000,0.000083330000000,0.000270985000000,0.000644712000000,0.001029502000000,0.000072663000000,0.000570045000000,0.001006194000000,0.000055676000000,0.000179725000000,0.000184861000000,0.000122046000000,0.000211725000000,0.000673947000000 +0.000242145000000,0.000089255000000,0.000048170000000,0.000238589000000,0.000596514000000,0.001037403000000,0.000068713000000,0.000538836000000,0.001021996000000,0.000056466000000,0.000205008000000,0.000239380000000,0.000079379000000,0.000210935000000,0.000618243000000 +0.000260317000000,0.000073849000000,0.000046984000000,0.000233848000000,0.000552663000000,0.001042539000000,0.000069503000000,0.000623774000000,0.001010934000000,0.000056071000000,0.000327083000000,0.000189206000000,0.000077799000000,0.000246886000000,0.000591774000000 +0.000296268000000,0.000070688000000,0.000046589000000,0.000227528000000,0.000821700000000,0.001037009000000,0.000069108000000,0.000608762000000,0.001025156000000,0.000055280000000,0.000217256000000,0.000203823000000,0.000079774000000,0.000276515000000,0.000626539000000 +0.000244515000000,0.000073454000000,0.000047775000000,0.000338144000000,0.001024366000000,0.001029502000000,0.000068318000000,0.000540021000000,0.001018440000000,0.000055281000000,0.000182886000000,0.000203033000000,0.000078590000000,0.000211724000000,0.000598885000000 +0.000247675000000,0.000069108000000,0.000046194000000,0.000235824000000,0.000588614000000,0.001042540000000,0.000069503000000,0.000623774000000,0.001096267000000,0.000055281000000,0.000206589000000,0.000203823000000,0.000078589000000,0.000281256000000,0.000628910000000 +0.000244120000000,0.000068713000000,0.000046195000000,0.000233058000000,0.000621009000000,0.001500810000000,0.000068713000000,0.000535280000000,0.001017256000000,0.000054885000000,0.000221996000000,0.000201453000000,0.000079380000000,0.000209354000000,0.000701601000000 +0.000265454000000,0.000071478000000,0.000046984000000,0.000233454000000,0.000590589000000,0.001139329000000,0.000069108000000,0.000608762000000,0.001512662000000,0.000057256000000,0.000189996000000,0.000189997000000,0.000079379000000,0.000214490000000,0.000675527000000 +0.000247280000000,0.000068713000000,0.000046589000000,0.000233058000000,0.000554243000000,0.001039774000000,0.000070292000000,0.000603626000000,0.001025552000000,0.000055280000000,0.000202244000000,0.000204219000000,0.000078984000000,0.000255577000000,0.000634046000000 +0.000248071000000,0.000071479000000,0.000046984000000,0.000231873000000,0.000595330000000,0.001050836000000,0.000121651000000,0.000547527000000,0.001029502000000,0.000054885000000,0.000204614000000,0.000188812000000,0.000078984000000,0.000212911000000,0.000636021000000 +0.000286391000000,0.000072268000000,0.000046984000000,0.000225157000000,0.000593355000000,0.001065453000000,0.000068713000000,0.000581108000000,0.001004613000000,0.000055281000000,0.000224367000000,0.000220021000000,0.000078984000000,0.000210145000000,0.000687773000000 +0.000248071000000,0.000069108000000,0.000046194000000,0.000219626000000,0.000558194000000,0.001072169000000,0.000069503000000,0.000544366000000,0.001040169000000,0.000055676000000,0.000196712000000,0.000202638000000,0.000115330000000,0.000246885000000,0.000656564000000 +0.000246490000000,0.000069898000000,0.000047379000000,0.000256367000000,0.000595329000000,0.001042935000000,0.000069503000000,0.000572811000000,0.001008959000000,0.000091231000000,0.000205404000000,0.000201849000000,0.000078985000000,0.000211330000000,0.000631676000000 +0.000248860000000,0.000069108000000,0.000046590000000,0.000214885000000,0.000560959000000,0.001083230000000,0.000069503000000,0.000539626000000,0.001024761000000,0.000055280000000,0.000180120000000,0.000186836000000,0.000080564000000,0.000212515000000,0.000598885000000 +0.000297059000000,0.000107429000000,0.000047379000000,0.000228713000000,0.000623774000000,0.001029107000000,0.000069108000000,0.000609156000000,0.001148020000000,0.000054886000000,0.000183281000000,0.000184070000000,0.000078589000000,0.000247676000000,0.000628515000000 +0.000250441000000,0.000069503000000,0.000048959000000,0.000219626000000,0.000594934000000,0.001092712000000,0.000069503000000,0.000574391000000,0.001076514000000,0.000056466000000,0.000244515000000,0.000238985000000,0.000079380000000,0.000210935000000,0.000687378000000 +0.000242935000000,0.000069108000000,0.000046194000000,0.000292317000000,0.000595330000000,0.001029898000000,0.000069503000000,0.000538836000000,0.001054391000000,0.000055281000000,0.000194342000000,0.000182095000000,0.000079379000000,0.000208959000000,0.000665650000000 +0.000246490000000,0.000069108000000,0.000046194000000,0.000272170000000,0.000589799000000,0.001072564000000,0.000073849000000,0.000632860000000,0.001209255000000,0.000054886000000,0.000201849000000,0.000182095000000,0.000078985000000,0.000318392000000,0.000670787000000 +0.000282441000000,0.000069108000000,0.000088465000000,0.000221601000000,0.000587034000000,0.001040169000000,0.000071873000000,0.000541601000000,0.001683723000000,0.000056466000000,0.000202243000000,0.000201849000000,0.000078589000000,0.000208959000000,0.000628119000000 +0.000246886000000,0.000069107000000,0.000047379000000,0.000214490000000,0.000628515000000,0.001541897000000,0.000068712000000,0.000579528000000,0.001260218000000,0.000056071000000,0.000204613000000,0.000186046000000,0.000078589000000,0.000215675000000,0.000590984000000 +0.000250046000000,0.000069502000000,0.000046589000000,0.000259923000000,0.000589009000000,0.001029897000000,0.000091231000000,0.000560959000000,0.001053995000000,0.000054490000000,0.000320366000000,0.000254787000000,0.000078984000000,0.000265849000000,0.000679478000000 +0.000249256000000,0.000069107000000,0.000046589000000,0.000220021000000,0.000592959000000,0.001037008000000,0.000116120000000,0.000946934000000,0.001312761000000,0.000056466000000,0.000203033000000,0.000185256000000,0.000078985000000,0.000208960000000,0.000628910000000 +0.000532515000000,0.000069107000000,0.000046984000000,0.000214885000000,0.000596909000000,0.001029897000000,0.000103478000000,0.000575972000000,0.001065058000000,0.000054886000000,0.000181305000000,0.000203823000000,0.000115330000000,0.000211725000000,0.000594539000000 +0.000574391000000,0.000069502000000,0.000046985000000,0.000218046000000,0.000586638000000,0.001036218000000,0.000086095000000,0.000574786000000,0.001046490000000,0.000055280000000,0.000204614000000,0.000225552000000,0.000078985000000,0.000249651000000,0.000635231000000 +0.000705157000000,0.000071083000000,0.000046589000000,0.000250441000000,0.000623379000000,0.001029502000000,0.000069108000000,0.000535281000000,0.001037008000000,0.000056466000000,0.000238985000000,0.000224367000000,0.000082145000000,0.000208960000000,0.000594144000000 +0.000396614000000,0.000068713000000,0.000046984000000,0.000221207000000,0.000595330000000,0.001036218000000,0.000069503000000,0.000586638000000,0.001052416000000,0.000056071000000,0.000186046000000,0.000186441000000,0.000078984000000,0.000208960000000,0.000631676000000 +0.000300614000000,0.000102293000000,0.000046984000000,0.000215280000000,0.000596120000000,0.001077699000000,0.000069107000000,0.000536070000000,0.001041749000000,0.000055676000000,0.000204219000000,0.000182885000000,0.000078985000000,0.000212120000000,0.000630490000000 +0.000366589000000,0.000069898000000,0.000046984000000,0.000214095000000,0.000622194000000,0.001037403000000,0.000068712000000,0.000579132000000,0.001033453000000,0.000091232000000,0.000202639000000,0.000188022000000,0.000079379000000,0.000211329000000,0.000638786000000 +0.000393848000000,0.000068713000000,0.000046985000000,0.000260318000000,0.000590984000000,0.001091527000000,0.000069107000000,0.000537650000000,0.001042934000000,0.000055676000000,0.000273750000000,0.000186836000000,0.000080169000000,0.000212515000000,0.000631675000000 +0.000248071000000,0.000071478000000,0.000046984000000,0.000221206000000,0.000591379000000,0.001037008000000,0.000069897000000,0.000570046000000,0.001018835000000,0.000055280000000,0.000205404000000,0.000195132000000,0.000079380000000,0.000225947000000,0.000634836000000 +0.000248071000000,0.000072268000000,0.000046589000000,0.000221602000000,0.000587823000000,0.001042539000000,0.000068712000000,0.000573206000000,0.001220317000000,0.000056071000000,0.000205799000000,0.000186441000000,0.000078984000000,0.000213305000000,0.000591774000000 +0.000328663000000,0.000069108000000,0.000046589000000,0.000225157000000,0.000564910000000,0.001036614000000,0.000069503000000,0.000534095000000,0.001111280000000,0.000056466000000,0.000193552000000,0.000185651000000,0.000081750000000,0.000212910000000,0.000668811000000 +0.000241750000000,0.000069898000000,0.000046194000000,0.000214095000000,0.000590194000000,0.001138144000000,0.000099132000000,0.000579527000000,0.001013305000000,0.000054095000000,0.000293108000000,0.000203429000000,0.000078985000000,0.000211725000000,0.000594144000000 +0.000247675000000,0.000069108000000,0.000046194000000,0.000260712000000,0.000554638000000,0.001037798000000,0.000071479000000,0.000535280000000,0.001030292000000,0.000055281000000,0.000195528000000,0.000220416000000,0.000115330000000,0.000208960000000,0.000635231000000 +0.000244515000000,0.000069108000000,0.000046589000000,0.000215676000000,0.000601651000000,0.001029107000000,0.000068712000000,0.000912959000000,0.001038588000000,0.000056465000000,0.000481947000000,0.000201848000000,0.000078984000000,0.000210145000000,0.000628515000000 +0.000286786000000,0.000069898000000,0.000083330000000,0.000214490000000,0.000616268000000,0.001048070000000,0.000069108000000,0.000585058000000,0.001053205000000,0.000055281000000,0.000277306000000,0.000183281000000,0.000079379000000,0.000208960000000,0.000590589000000 +0.000238985000000,0.000069107000000,0.000046590000000,0.000214490000000,0.000648663000000,0.001029107000000,0.000069503000000,0.000542786000000,0.001023576000000,0.000054096000000,0.000276515000000,0.000180910000000,0.000078984000000,0.000212515000000,0.000635230000000 +0.000244515000000,0.000069107000000,0.000047379000000,0.000259133000000,0.000589404000000,0.001163427000000,0.000069898000000,0.000607971000000,0.001065058000000,0.000055675000000,0.000184070000000,0.000203823000000,0.000079379000000,0.000209354000000,0.000628514000000 +0.000244120000000,0.000132317000000,0.000046984000000,0.000218441000000,0.000569651000000,0.001028712000000,0.000075429000000,0.000536071000000,0.001014885000000,0.000055281000000,0.000202638000000,0.000221601000000,0.000078590000000,0.000209750000000,0.000594935000000 +0.000320762000000,0.000086885000000,0.000046590000000,0.000214490000000,0.000590194000000,0.001074539000000,0.000069108000000,0.000936662000000,0.001009749000000,0.000054491000000,0.000219626000000,0.000180910000000,0.000078984000000,0.000213305000000,0.000634835000000 +0.000240564000000,0.000072269000000,0.000046984000000,0.000221207000000,0.000590984000000,0.001028712000000,0.000073453000000,0.000570441000000,0.001166193000000,0.000056071000000,0.000182096000000,0.000203824000000,0.000078985000000,0.000209749000000,0.000594540000000 +0.000244120000000,0.000069108000000,0.000047379000000,0.000271379000000,0.000559379000000,0.001036613000000,0.000069502000000,0.000610737000000,0.001029107000000,0.000091626000000,0.000204614000000,0.000203824000000,0.000079774000000,0.000481947000000,0.000631280000000 +0.000281650000000,0.000074243000000,0.000046985000000,0.000224367000000,0.000593749000000,0.001029107000000,0.000069898000000,0.000534490000000,0.001008959000000,0.000056071000000,0.000205009000000,0.000206194000000,0.000079379000000,0.000228317000000,0.000630885000000 +0.000248070000000,0.000071083000000,0.000046589000000,0.000219626000000,0.000558193000000,0.001037403000000,0.000069503000000,0.000633256000000,0.001347132000000,0.000056466000000,0.000183281000000,0.000347626000000,0.000078984000000,0.000230293000000,0.000586638000000 +0.000239775000000,0.000073453000000,0.000046985000000,0.000220021000000,0.000595724000000,0.001030687000000,0.000157206000000,0.000534095000000,0.001090342000000,0.000058046000000,0.000239379000000,0.000203824000000,0.000114935000000,0.000212120000000,0.000636811000000 +0.000248465000000,0.000069107000000,0.000047379000000,0.000252416000000,0.000596910000000,0.001129453000000,0.000069108000000,0.000646293000000,0.001058737000000,0.000055280000000,0.000200663000000,0.000202244000000,0.000078194000000,0.000210540000000,0.000635231000000 +0.000458638000000,0.000068712000000,0.000046589000000,0.000278491000000,0.000557403000000,0.001049651000000,0.000069898000000,0.000570440000000,0.001157897000000,0.000056466000000,0.000183281000000,0.000224367000000,0.000078590000000,0.000208960000000,0.000591379000000 +0.000404120000000,0.000071478000000,0.000047380000000,0.000220811000000,0.000596119000000,0.001037008000000,0.000069898000000,0.000534885000000,0.001035428000000,0.000054886000000,0.000183676000000,0.000187231000000,0.000078984000000,0.000208959000000,0.000774688000000 +0.000349206000000,0.000068318000000,0.000046984000000,0.000224762000000,0.000561354000000,0.001029107000000,0.000069898000000,0.000577157000000,0.001060712000000,0.000055675000000,0.000189602000000,0.000204219000000,0.000080170000000,0.000208564000000,0.000733601000000 +0.000274935000000,0.000072663000000,0.000047775000000,0.000255972000000,0.000592564000000,0.001037403000000,0.000069503000000,0.000538835000000,0.001020811000000,0.000055281000000,0.000276515000000,0.000183281000000,0.000078984000000,0.000212120000000,0.000598885000000 +0.000238589000000,0.000105058000000,0.000047380000000,0.000217255000000,0.000623774000000,0.001028712000000,0.000069503000000,0.000576762000000,0.001004613000000,0.000054490000000,0.000203034000000,0.000203429000000,0.000080959000000,0.000210935000000,0.000671971000000 +0.000238589000000,0.000069898000000,0.000045799000000,0.000215676000000,0.000572416000000,0.001037403000000,0.000069503000000,0.000535280000000,0.001165798000000,0.000054885000000,0.000201849000000,0.000238194000000,0.000079380000000,0.000213305000000,0.000662490000000 +0.000274935000000,0.000069503000000,0.000067923000000,0.000223972000000,0.000625355000000,0.001431279000000,0.000069502000000,0.000570046000000,0.001044119000000,0.000060021000000,0.000202638000000,0.000201849000000,0.000078984000000,0.000212120000000,0.000600070000000 +0.000250836000000,0.000069108000000,0.000063577000000,0.000214490000000,0.000558984000000,0.001084020000000,0.000069107000000,0.000540416000000,0.001080070000000,0.000057256000000,0.000253601000000,0.000189997000000,0.000078984000000,0.000211330000000,0.000674341000000 +0.000247676000000,0.000072269000000,0.000046589000000,0.000274145000000,0.000598490000000,0.001029107000000,0.000069502000000,0.000695675000000,0.001053601000000,0.000056070000000,0.000204219000000,0.000203034000000,0.000078984000000,0.000209750000000,0.000630885000000 +0.000238984000000,0.000069503000000,0.000047380000000,0.000214490000000,0.000552663000000,0.001249947000000,0.000088071000000,0.000577946000000,0.001228613000000,0.000055676000000,0.000202243000000,0.000271379000000,0.000115725000000,0.000245305000000,0.000704761000000 +0.000280466000000,0.000069108000000,0.000046589000000,0.000221602000000,0.000625354000000,0.001107329000000,0.000084910000000,0.000542392000000,0.001053206000000,0.000071873000000,0.000203429000000,0.000206984000000,0.000078984000000,0.000208960000000,0.000669601000000 +0.000244515000000,0.000068713000000,0.000047774000000,0.000219626000000,0.000590984000000,0.001091921000000,0.000073454000000,0.000571231000000,0.001071773000000,0.000055675000000,0.000224762000000,0.000202639000000,0.000078589000000,0.000209750000000,0.000631280000000 +0.000238589000000,0.000069503000000,0.000046590000000,0.000254786000000,0.000561750000000,0.001029897000000,0.000071083000000,0.000534490000000,0.001060712000000,0.000055280000000,0.000180515000000,0.000201453000000,0.000078194000000,0.000284021000000,0.000594144000000 +0.000239379000000,0.000069503000000,0.000047774000000,0.000223577000000,0.000588613000000,0.001082836000000,0.000068318000000,0.000579527000000,0.001038984000000,0.000058441000000,0.000204614000000,0.000203429000000,0.000078984000000,0.000212515000000,0.001115230000000 +0.000275330000000,0.000069503000000,0.000046589000000,0.000214096000000,0.000561354000000,0.001034638000000,0.000072269000000,0.000575972000000,0.001049650000000,0.000055281000000,0.000202243000000,0.000244910000000,0.000078589000000,0.000211329000000,0.000684613000000 +0.000239379000000,0.000069503000000,0.000046984000000,0.000218441000000,0.000592564000000,0.001306045000000,0.000070293000000,0.000536070000000,0.001067033000000,0.000055676000000,0.000204614000000,0.000188416000000,0.000081354000000,0.000250836000000,0.000634836000000 +0.000244910000000,0.000087676000000,0.000046984000000,0.000255577000000,0.000590194000000,0.001029897000000,0.000069503000000,0.000625355000000,0.001067033000000,0.000054490000000,0.000256762000000,0.000184861000000,0.000078985000000,0.000213700000000,0.000592564000000 +0.000247676000000,0.000085305000000,0.000046590000000,0.000216466000000,0.000553057000000,0.001036613000000,0.000069503000000,0.000537650000000,0.001064268000000,0.000056466000000,0.000188812000000,0.000203034000000,0.000078984000000,0.000209355000000,0.000634441000000 +0.000260712000000,0.000071083000000,0.000046589000000,0.000220021000000,0.000589403000000,0.001078095000000,0.000069503000000,0.000574392000000,0.001063872000000,0.000054490000000,0.000184466000000,0.000221207000000,0.000079379000000,0.000250836000000,0.000594144000000 +0.000250045000000,0.000069108000000,0.000046590000000,0.000221601000000,0.000554243000000,0.001036613000000,0.000069108000000,0.000534095000000,0.001524119000000,0.000055675000000,0.000203429000000,0.000203428000000,0.000078589000000,0.000209749000000,0.000634836000000 +0.000244120000000,0.000068713000000,0.000046984000000,0.000238985000000,0.000671181000000,0.001042934000000,0.000069108000000,0.000628910000000,0.001049650000000,0.000055676000000,0.000240564000000,0.000191577000000,0.000098342000000,0.000210934000000,0.000646687000000 +0.000285206000000,0.000069503000000,0.000047379000000,0.000231478000000,0.000597700000000,0.001082045000000,0.000069108000000,0.000571231000000,0.001067823000000,0.000056465000000,0.000203428000000,0.000203034000000,0.000078984000000,0.000257552000000,0.000590984000000 +0.000244515000000,0.000068713000000,0.000046985000000,0.000214885000000,0.000557008000000,0.001029897000000,0.000139429000000,0.000539626000000,0.001085205000000,0.000055281000000,0.000204218000000,0.000184071000000,0.000081355000000,0.000208564000000,0.000690540000000 +0.000246096000000,0.000071478000000,0.000046984000000,0.000214490000000,0.000719379000000,0.001088762000000,0.000082935000000,0.000574391000000,0.001028712000000,0.000056071000000,0.000183280000000,0.000238589000000,0.000079380000000,0.000208959000000,0.000629700000000 +0.000250441000000,0.000072269000000,0.000115725000000,0.000224762000000,0.000589403000000,0.001064268000000,0.000069502000000,0.000534885000000,0.001070194000000,0.000091626000000,0.000203823000000,0.000186441000000,0.000078984000000,0.000245305000000,0.000594539000000 +0.000275330000000,0.000069108000000,0.000047774000000,0.000250046000000,0.000570046000000,0.001037798000000,0.000069107000000,0.000620219000000,0.001044909000000,0.000056466000000,0.000276515000000,0.000183280000000,0.000078590000000,0.000210934000000,0.000634441000000 +0.000248070000000,0.000069503000000,0.000046194000000,0.000214886000000,0.000692515000000,0.001042539000000,0.000068712000000,0.000534885000000,0.001061502000000,0.000055281000000,0.000188416000000,0.000203429000000,0.000079379000000,0.000210145000000,0.000630490000000 +0.000248466000000,0.000069108000000,0.000046589000000,0.000269009000000,0.000559379000000,0.001041749000000,0.000071873000000,0.000574786000000,0.001050835000000,0.000054885000000,0.000203428000000,0.000199873000000,0.000079775000000,0.000245701000000,0.000595329000000 +0.000238984000000,0.000068713000000,0.000046984000000,0.000221602000000,0.000606786000000,0.001030687000000,0.000069898000000,0.000570441000000,0.001041354000000,0.000054886000000,0.000193157000000,0.000203824000000,0.000079774000000,0.000212910000000,0.000665651000000 +0.000280071000000,0.000106244000000,0.000047380000000,0.000255577000000,0.000645897000000,0.001037009000000,0.000069108000000,0.000540416000000,0.001005008000000,0.000054886000000,0.000257157000000,0.000201849000000,0.000079379000000,0.000208960000000,0.000586243000000 +0.000265058000000,0.000068317000000,0.000046984000000,0.000319181000000,0.000559774000000,0.001029502000000,0.000069503000000,0.000572021000000,0.001082046000000,0.000056860000000,0.000190787000000,0.000203429000000,0.000078985000000,0.000293502000000,0.000631675000000 +0.000258738000000,0.000069108000000,0.000046984000000,0.000214490000000,0.000596910000000,0.001037009000000,0.000069898000000,0.000535281000000,0.001013700000000,0.000058046000000,0.000184071000000,0.000182885000000,0.000099132000000,0.000209750000000,0.000671181000000 +0.000258737000000,0.000072268000000,0.000046984000000,0.000223181000000,0.000557404000000,0.001029107000000,0.000075429000000,0.000575971000000,0.001010144000000,0.000055676000000,0.000203824000000,0.000264663000000,0.000078984000000,0.000210145000000,0.000591774000000 +0.000259528000000,0.000069108000000,0.000046984000000,0.000250441000000,0.000643527000000,0.001037008000000,0.000069503000000,0.000540021000000,0.001169749000000,0.000057256000000,0.000191577000000,0.000186441000000,0.000078194000000,0.000261108000000,0.000635231000000 +0.000264663000000,0.000072269000000,0.000046984000000,0.000215281000000,0.000596910000000,0.001156317000000,0.000089651000000,0.000584663000000,0.001021601000000,0.000055281000000,0.000238589000000,0.000182885000000,0.000078985000000,0.000211725000000,0.000630490000000 +0.000266639000000,0.000069503000000,0.000046589000000,0.000214095000000,0.000555824000000,0.001133404000000,0.000069107000000,0.000580713000000,0.001146440000000,0.000055281000000,0.000205799000000,0.000195133000000,0.000080169000000,0.000209355000000,0.000599280000000 +0.000293502000000,0.000074243000000,0.000049749000000,0.000216466000000,0.000725305000000,0.001029502000000,0.000069108000000,0.000534490000000,0.001038588000000,0.000055675000000,0.000185256000000,0.000186046000000,0.000078589000000,0.000308515000000,0.000627725000000 +0.000253206000000,0.000071083000000,0.000049750000000,0.000264268000000,0.000558984000000,0.001037404000000,0.000069503000000,0.000574391000000,0.001010540000000,0.000056071000000,0.000186441000000,0.000294293000000,0.000078194000000,0.000211725000000,0.000590589000000 +0.000264663000000,0.000073453000000,0.000046984000000,0.000224367000000,0.000572021000000,0.001066638000000,0.000070688000000,0.000538441000000,0.001009354000000,0.000075033000000,0.000240169000000,0.000187232000000,0.000079380000000,0.000208959000000,0.000634836000000 +0.000260317000000,0.000069107000000,0.000048565000000,0.000219627000000,0.000594935000000,0.001072564000000,0.000069108000000,0.000571231000000,0.001018835000000,0.000069108000000,0.000219231000000,0.000186441000000,0.000079379000000,0.000250836000000,0.000628909000000 +0.000263478000000,0.000069502000000,0.000066343000000,0.000221601000000,0.000562144000000,0.001029107000000,0.000069503000000,0.000534490000000,0.001016070000000,0.000056465000000,0.000203428000000,0.000188812000000,0.000078984000000,0.000209750000000,0.000594540000000 +0.000264663000000,0.000107428000000,0.000099922000000,0.000314046000000,0.000589009000000,0.001069798000000,0.000069108000000,0.000577157000000,0.001018440000000,0.000056466000000,0.000193157000000,0.000239774000000,0.000080960000000,0.000211725000000,0.000634835000000 +0.000253206000000,0.000069502000000,0.000085700000000,0.000277305000000,0.000554243000000,0.001029107000000,0.000069898000000,0.000539626000000,0.001004614000000,0.000055675000000,0.000204614000000,0.000186046000000,0.000079379000000,0.000245305000000,0.000630490000000 +0.000256366000000,0.000072268000000,0.000052910000000,0.000215281000000,0.000625749000000,0.001085206000000,0.000069503000000,0.000732811000000,0.001030292000000,0.000055281000000,0.000336170000000,0.000189601000000,0.000095181000000,0.000211330000000,0.000663281000000 +0.000263478000000,0.000071873000000,0.000061997000000,0.000222786000000,0.000598095000000,0.001029107000000,0.000068713000000,0.000574391000000,0.001010144000000,0.000055676000000,0.000221997000000,0.000182095000000,0.000079379000000,0.000209354000000,0.000863576000000 +0.000263873000000,0.000069897000000,0.000046589000000,0.000250046000000,0.000552662000000,0.001036613000000,0.000068713000000,0.000543182000000,0.001056761000000,0.000055280000000,0.000186441000000,0.000188022000000,0.000078985000000,0.000247280000000,0.000625354000000 +0.000261503000000,0.000069502000000,0.000047379000000,0.000221997000000,0.000594934000000,0.001028712000000,0.000162343000000,0.000609947000000,0.001073749000000,0.000055281000000,0.000201059000000,0.000220811000000,0.000078589000000,0.000208959000000,0.000595330000000 +0.000264268000000,0.000069107000000,0.000046590000000,0.000219626000000,0.000557404000000,0.001037008000000,0.000169848000000,0.000579922000000,0.001111280000000,0.000055280000000,0.000238589000000,0.000183675000000,0.000078985000000,0.000211330000000,0.000634835000000 +0.000261503000000,0.000071873000000,0.000046589000000,0.000218836000000,0.000631280000000,0.001068613000000,0.000191181000000,0.000540416000000,0.001010539000000,0.000056466000000,0.000204218000000,0.000203823000000,0.000078984000000,0.000344070000000,0.000628120000000 +0.000297453000000,0.000068318000000,0.000046985000000,0.000252021000000,0.000650243000000,0.001037403000000,0.000121651000000,0.000583478000000,0.001030292000000,0.000056466000000,0.000204613000000,0.000186441000000,0.000079380000000,0.000226343000000,0.000598885000000 +0.000265849000000,0.000068713000000,0.000046589000000,0.000216466000000,0.000553848000000,0.001039378000000,0.000073454000000,0.000536861000000,0.001018835000000,0.000056071000000,0.000205009000000,0.000278885000000,0.000078984000000,0.000210145000000,0.000630885000000 +0.000509997000000,0.000069108000000,0.000047379000000,0.000219627000000,0.000590589000000,0.001037403000000,0.000087676000000,0.000593749000000,0.001018045000000,0.000056071000000,0.000231083000000,0.000412021000000,0.000078984000000,0.000212515000000,0.000598885000000 +0.000263083000000,0.000069108000000,0.000046589000000,0.000214095000000,0.000552663000000,0.001029107000000,0.000071873000000,0.000538441000000,0.001039774000000,0.000055675000000,0.000217256000000,0.000202243000000,0.000080960000000,0.000209354000000,0.000641552000000 +0.000263478000000,0.000069503000000,0.000046589000000,0.000214490000000,0.000750983000000,0.001166983000000,0.000088861000000,0.000583873000000,0.001011724000000,0.000092022000000,0.000187231000000,0.000188416000000,0.000078984000000,0.000208565000000,0.000626934000000 +0.000301404000000,0.000133503000000,0.000046985000000,0.000261503000000,0.000607181000000,0.001077304000000,0.000085701000000,0.000571626000000,0.001062293000000,0.000056071000000,0.000203824000000,0.000276515000000,0.000128762000000,0.000212515000000,0.000598885000000 +0.000256762000000,0.000069108000000,0.000046984000000,0.000214095000000,0.000553058000000,0.001042144000000,0.000070293000000,0.000535675000000,0.001189106000000,0.000056466000000,0.000188811000000,0.000201453000000,0.000078984000000,0.000214490000000,0.000971428000000 +0.000265453000000,0.000069108000000,0.000099527000000,0.000227528000000,0.000641552000000,0.001077305000000,0.000069108000000,0.000865552000000,0.001078489000000,0.000054886000000,0.000501305000000,0.000202639000000,0.000078985000000,0.000210540000000,0.000630490000000 +0.000295083000000,0.000069108000000,0.000046985000000,0.000218046000000,0.000590589000000,0.001084020000000,0.000069898000000,0.000619033000000,0.001017650000000,0.000056070000000,0.000206194000000,0.000185256000000,0.000078589000000,0.000209749000000,0.000634440000000 +0.000258342000000,0.000070688000000,0.000047379000000,0.000284416000000,0.000554638000000,0.001076909000000,0.000069503000000,0.000535676000000,0.001088367000000,0.000089651000000,0.000202244000000,0.000238985000000,0.000078590000000,0.000216465000000,0.000594540000000 +0.000258737000000,0.000069503000000,0.000047379000000,0.000221601000000,0.000594934000000,0.001036613000000,0.000069108000000,0.000578737000000,0.001069403000000,0.000069503000000,0.000219626000000,0.000205009000000,0.000081354000000,0.000210145000000,0.000756515000000 +0.000259132000000,0.000069108000000,0.000048170000000,0.000217651000000,0.000557404000000,0.001276416000000,0.000069107000000,0.000543181000000,0.001073749000000,0.000056071000000,0.000203428000000,0.000186836000000,0.000078984000000,0.000209355000000,0.000630490000000 +0.000265454000000,0.000068713000000,0.000046194000000,0.000213700000000,0.000630095000000,0.001037008000000,0.000069502000000,0.000572021000000,0.001019626000000,0.000054490000000,0.000183675000000,0.000184466000000,0.000078984000000,0.000210540000000,0.000586243000000 +0.000253601000000,0.000069108000000,0.000046589000000,0.000263873000000,0.000559379000000,0.001097847000000,0.000069107000000,0.000538836000000,0.001053600000000,0.000056071000000,0.000201849000000,0.000203034000000,0.000078194000000,0.000214490000000,0.000679082000000 +0.000258738000000,0.000071874000000,0.000047380000000,0.000215281000000,0.000675922000000,0.001097848000000,0.000069898000000,0.000573996000000,0.001039379000000,0.000056071000000,0.000246490000000,0.000221997000000,0.000078984000000,0.000246886000000,0.000685799000000 +0.000264268000000,0.000072663000000,0.000046984000000,0.000221206000000,0.000593749000000,0.001029107000000,0.000069898000000,0.000570046000000,0.001334094000000,0.000056466000000,0.000220811000000,0.000186441000000,0.000124021000000,0.000209750000000,0.000591774000000 +0.000260713000000,0.000088861000000,0.000046589000000,0.000223972000000,0.000560564000000,0.001037404000000,0.000069898000000,0.000534490000000,0.001061502000000,0.000054095000000,0.000203428000000,0.000201454000000,0.000097552000000,0.000212910000000,0.000682638000000 +0.000255182000000,0.000156811000000,0.000046984000000,0.000260317000000,0.000598095000000,0.001028712000000,0.000105058000000,0.000611527000000,0.001038983000000,0.000074638000000,0.000202638000000,0.000186046000000,0.000091626000000,0.000281256000000,0.000593749000000 +0.000247280000000,0.000089651000000,0.000046984000000,0.000218836000000,0.000591774000000,0.001083231000000,0.000071873000000,0.000539230000000,0.001066638000000,0.000095972000000,0.000190786000000,0.000256762000000,0.000078589000000,0.000212515000000,0.000641157000000 +0.000266244000000,0.000099132000000,0.000047380000000,0.000214491000000,0.000553848000000,0.001064663000000,0.000069108000000,0.000569651000000,0.001021206000000,0.000055280000000,0.000242539000000,0.000203033000000,0.000079380000000,0.000210145000000,0.000662885000000 +0.000296663000000,0.000069898000000,0.000046589000000,0.000223181000000,0.000594934000000,0.001042539000000,0.000069503000000,0.000539231000000,0.001082440000000,0.000056071000000,0.000186441000000,0.000204219000000,0.000079379000000,0.000551083000000,0.000590984000000 +0.000243725000000,0.000069108000000,0.000047379000000,0.000215676000000,0.000591774000000,0.001029107000000,0.000069108000000,0.000570046000000,0.001020416000000,0.000055281000000,0.000188416000000,0.000184860000000,0.000078590000000,0.000209750000000,0.000648663000000 +0.000248071000000,0.000068713000000,0.000046194000000,0.000308910000000,0.000609552000000,0.001084811000000,0.000069898000000,0.000576366000000,0.001068613000000,0.000056070000000,0.000203033000000,0.000240564000000,0.000079379000000,0.000246885000000,0.000664070000000 +0.000358293000000,0.000071478000000,0.000065947000000,0.000223972000000,0.000598490000000,0.001029502000000,0.000075429000000,0.000535281000000,0.001010144000000,0.000055676000000,0.000227527000000,0.000204219000000,0.000079380000000,0.000211330000000,0.000594935000000 +0.000305355000000,0.000068713000000,0.000067133000000,0.000224366000000,0.000553058000000,0.001136169000000,0.000069503000000,0.000619033000000,0.001025947000000,0.000055675000000,0.000203034000000,0.000203824000000,0.000078984000000,0.000210145000000,0.000634835000000 +0.000241750000000,0.000072269000000,0.000046984000000,0.000214491000000,0.000590588000000,0.001029107000000,0.000073058000000,0.000538441000000,0.001021996000000,0.000056466000000,0.000193552000000,0.000186836000000,0.000079379000000,0.000247281000000,0.000632070000000 +0.000301009000000,0.000068317000000,0.000046984000000,0.000255576000000,0.000555033000000,0.001130243000000,0.000069108000000,0.000615083000000,0.001020810000000,0.000056466000000,0.000185651000000,0.000189207000000,0.000116120000000,0.000227133000000,0.000624564000000 +0.000245700000000,0.000107823000000,0.000048170000000,0.000215675000000,0.000598095000000,0.001029107000000,0.000068713000000,0.000534885000000,0.001020020000000,0.000056466000000,0.000202638000000,0.000259527000000,0.000079774000000,0.000211329000000,0.000630490000000 +0.000239774000000,0.000071083000000,0.000047775000000,0.000221602000000,0.000552663000000,0.001054391000000,0.000069503000000,0.000662885000000,0.001034638000000,0.000055676000000,0.000239774000000,0.000186046000000,0.000078984000000,0.000281255000000,0.000586639000000 +0.000250440000000,0.000073453000000,0.000046589000000,0.000223972000000,0.000598885000000,0.001029502000000,0.000106244000000,0.000574787000000,0.001021996000000,0.000054885000000,0.000184071000000,0.000184070000000,0.000080959000000,0.000210144000000,0.000665255000000 +0.000283231000000,0.000069107000000,0.000047775000000,0.000250441000000,0.000628515000000,0.001037008000000,0.000069503000000,0.000537255000000,0.001100613000000,0.000056071000000,0.000203824000000,0.000183675000000,0.000078984000000,0.000210935000000,0.000635231000000 +0.000248070000000,0.000069108000000,0.000046589000000,0.000221207000000,0.000554243000000,0.001029502000000,0.000069503000000,0.000570046000000,0.001026737000000,0.000091626000000,0.000205404000000,0.000203428000000,0.000078984000000,0.000249256000000,0.000591774000000 +0.000244120000000,0.000071478000000,0.000046589000000,0.000218836000000,0.000602046000000,0.001050440000000,0.000069108000000,0.000534885000000,0.001008959000000,0.000054490000000,0.000180515000000,0.000238589000000,0.000079379000000,0.000214885000000,0.000679873000000 +0.000249255000000,0.000069108000000,0.000046985000000,0.000270194000000,0.000553453000000,0.001029107000000,0.000070293000000,0.000572811000000,0.001019230000000,0.000054885000000,0.000212515000000,0.000182096000000,0.000078590000000,0.000216861000000,0.000630490000000 +0.000284417000000,0.000071873000000,0.000047774000000,0.000297848000000,0.000589798000000,0.001042934000000,0.000069898000000,0.000534095000000,0.001133403000000,0.000054886000000,0.000205403000000,0.000203034000000,0.000078589000000,0.000298244000000,0.000598885000000 +0.000238984000000,0.000071873000000,0.000046984000000,0.000219626000000,0.000588613000000,0.001078490000000,0.000069502000000,0.000570441000000,0.001072959000000,0.000055676000000,0.000203428000000,0.000186836000000,0.000078590000000,0.000213305000000,0.000773502000000 +0.000247675000000,0.000069898000000,0.000047380000000,0.000224367000000,0.000561355000000,0.001089156000000,0.000069502000000,0.000583873000000,0.001023576000000,0.000056070000000,0.000205404000000,0.000239775000000,0.000078589000000,0.000215280000000,0.000627330000000 +0.000248070000000,0.000068318000000,0.000048170000000,0.000223182000000,0.000593354000000,0.001065058000000,0.000069503000000,0.000539231000000,0.001021206000000,0.000056071000000,0.000240169000000,0.000189206000000,0.000150491000000,0.000227132000000,0.000598885000000 +0.000281256000000,0.000069108000000,0.000046589000000,0.000260712000000,0.000553057000000,0.001037404000000,0.000069108000000,0.000574391000000,0.001027132000000,0.000054490000000,0.000180910000000,0.000203824000000,0.000078589000000,0.000208565000000,0.000628514000000 +0.000249256000000,0.000107429000000,0.000046985000000,0.000218441000000,0.000605996000000,0.001028317000000,0.000069503000000,0.000537256000000,0.001048070000000,0.000055281000000,0.000203824000000,0.000184465000000,0.000078984000000,0.000210144000000,0.000613503000000 +0.000246095000000,0.000069108000000,0.000082935000000,0.000225552000000,0.000554638000000,0.001110885000000,0.000069108000000,0.000625749000000,0.001018440000000,0.000056071000000,0.000205009000000,0.000182885000000,0.000081750000000,0.000247675000000,0.000662490000000 +0.000247676000000,0.000069108000000,0.000046985000000,0.000214885000000,0.000596910000000,0.001064267000000,0.000088466000000,0.000534886000000,0.001010539000000,0.000056070000000,0.000222392000000,0.000252416000000,0.000078984000000,0.000208959000000,0.000634836000000 +0.000298638000000,0.000068713000000,0.000046984000000,0.000258342000000,0.000595724000000,0.001037403000000,0.000105848000000,0.000695675000000,0.001018836000000,0.000055281000000,0.000201058000000,0.000184466000000,0.000078984000000,0.000210144000000,0.000594934000000 +0.000249650000000,0.000068318000000,0.000046984000000,0.000220811000000,0.000557403000000,0.001040169000000,0.000072268000000,0.000588613000000,0.001117206000000,0.000056070000000,0.000203429000000,0.000186836000000,0.000078984000000,0.000246886000000,0.000641157000000 +0.000247675000000,0.000069108000000,0.000046194000000,0.000220021000000,0.000650243000000,0.001037009000000,0.000069503000000,0.000537650000000,0.001042539000000,0.000054490000000,0.000183676000000,0.000186836000000,0.000078589000000,0.000210145000000,0.000668416000000 +0.000308515000000,0.000069503000000,0.000047774000000,0.000221207000000,0.000559379000000,0.001225058000000,0.000072664000000,0.000574391000000,0.001043724000000,0.000055281000000,0.000203824000000,0.000266243000000,0.000078984000000,0.000210145000000,0.000595329000000 +0.000260318000000,0.000069108000000,0.000046985000000,0.000223971000000,0.000607577000000,0.001073354000000,0.000070688000000,0.000547922000000,0.001007379000000,0.000163527000000,0.000237799000000,0.000186046000000,0.000079774000000,0.000254392000000,0.000634836000000 +0.000248861000000,0.000069108000000,0.000046984000000,0.000241750000000,0.000692515000000,0.001052021000000,0.000068713000000,0.000575181000000,0.001106144000000,0.000094392000000,0.000207379000000,0.000254391000000,0.000101108000000,0.000210540000000,0.000628120000000 +0.000321157000000,0.000068713000000,0.000049354000000,0.000221206000000,0.000836712000000,0.001132218000000,0.000069898000000,0.000603231000000,0.001055971000000,0.000060022000000,0.000205404000000,0.000187231000000,0.000149701000000,0.000211724000000,0.000598490000000 +0.000449157000000,0.000070688000000,0.000046589000000,0.000221602000000,0.000579922000000,0.001068613000000,0.000069108000000,0.000551478000000,0.001051626000000,0.000071084000000,0.000182886000000,0.000222787000000,0.000078589000000,0.000256762000000,0.000685798000000 +0.000241749000000,0.000068318000000,0.000046589000000,0.000223972000000,0.000591774000000,0.001034242000000,0.000069503000000,0.000730441000000,0.001012909000000,0.000054886000000,0.000203034000000,0.000220811000000,0.000079380000000,0.000210144000000,0.000635231000000 +0.000244120000000,0.000068713000000,0.000046984000000,0.000252021000000,0.000553848000000,0.001050835000000,0.000069503000000,0.000539231000000,0.001067033000000,0.000055280000000,0.000236219000000,0.000203824000000,0.000078984000000,0.000208959000000,0.000591774000000 +0.000280071000000,0.000140614000000,0.000047380000000,0.000220021000000,0.000641947000000,0.001069008000000,0.000069108000000,0.000658539000000,0.001056366000000,0.000055676000000,0.000282441000000,0.000205404000000,0.000078985000000,0.000246096000000,0.000639972000000 +0.000238589000000,0.000068713000000,0.000046194000000,0.000227922000000,0.000643527000000,0.001053601000000,0.000102688000000,0.000619823000000,0.001058737000000,0.000055281000000,0.000181701000000,0.000184466000000,0.000079774000000,0.000210539000000,0.000599280000000 +0.000248861000000,0.000071478000000,0.000046589000000,0.000219627000000,0.000558984000000,0.001521354000000,0.000084910000000,0.000537650000000,0.001136564000000,0.000058441000000,0.000180515000000,0.000267429000000,0.000078984000000,0.000209354000000,0.000674737000000 +0.000238984000000,0.000072268000000,0.000046589000000,0.000255971000000,0.000645897000000,0.001018046000000,0.000069108000000,0.000569651000000,0.001056761000000,0.000056466000000,0.000221602000000,0.000198688000000,0.000078589000000,0.000246096000000,0.000630885000000 +0.000290342000000,0.000069108000000,0.000046984000000,0.000216071000000,0.000551872000000,0.001033848000000,0.000069503000000,0.000539626000000,0.001019626000000,0.000054096000000,0.000202638000000,0.000203428000000,0.000079774000000,0.000209354000000,0.000628910000000 +0.000250441000000,0.000069503000000,0.000066343000000,0.000219626000000,0.000637996000000,0.001017651000000,0.000069503000000,0.000570441000000,0.001060317000000,0.000055281000000,0.000190786000000,0.000181305000000,0.000078590000000,0.000209749000000,0.000630095000000 +0.000248465000000,0.000069108000000,0.000080564000000,0.000220021000000,0.000638391000000,0.001043724000000,0.000072268000000,0.000612317000000,0.001190292000000,0.000092021000000,0.000203033000000,0.000275330000000,0.000114935000000,0.000316811000000,0.000709502000000 +0.000262688000000,0.000068713000000,0.000046984000000,0.000263478000000,0.000562539000000,0.001018440000000,0.000069107000000,0.000632070000000,0.001303675000000,0.000054885000000,0.000238589000000,0.000182491000000,0.000079379000000,0.000245305000000,0.000752959000000 +0.000254786000000,0.000069108000000,0.000047380000000,0.000220021000000,0.000623774000000,0.001034638000000,0.000068712000000,0.000573601000000,0.001083230000000,0.000056071000000,0.000204614000000,0.000185256000000,0.000079379000000,0.000208960000000,0.000636416000000 +0.000244910000000,0.000069503000000,0.000046589000000,0.000219626000000,0.000626144000000,0.001068218000000,0.000069502000000,0.000542787000000,0.001054391000000,0.000056070000000,0.000183281000000,0.000187626000000,0.000080170000000,0.000246885000000,0.000631675000000 +0.000243724000000,0.000068318000000,0.000065948000000,0.000223182000000,0.000569651000000,0.001038589000000,0.000069898000000,0.000643527000000,0.001018045000000,0.000056071000000,0.000185651000000,0.000204218000000,0.000078984000000,0.000210145000000,0.000598885000000 +0.000284416000000,0.000072664000000,0.000062787000000,0.000221207000000,0.000840268000000,0.001053601000000,0.000075429000000,0.000593354000000,0.001059527000000,0.000055281000000,0.000183281000000,0.000255181000000,0.000078985000000,0.000211329000000,0.000627725000000 +0.000248070000000,0.000086095000000,0.000078194000000,0.000231873000000,0.000638391000000,0.001033453000000,0.000070293000000,0.000540021000000,0.001055971000000,0.000055280000000,0.000319182000000,0.000186441000000,0.000078984000000,0.000260317000000,0.000640762000000 +0.000247675000000,0.000071083000000,0.000046984000000,0.000221996000000,0.000742688000000,0.001017651000000,0.000093602000000,0.000610342000000,0.001025157000000,0.000055281000000,0.000203034000000,0.000203034000000,0.000079774000000,0.000250836000000,0.000594539000000 +0.000246095000000,0.000069107000000,0.000046985000000,0.000221602000000,0.000680663000000,0.001068218000000,0.000069503000000,0.000536071000000,0.001008564000000,0.000056071000000,0.000184466000000,0.000189206000000,0.000080565000000,0.000208960000000,0.000634441000000 +0.000432564000000,0.000074243000000,0.000046984000000,0.000213700000000,0.000583873000000,0.001034243000000,0.000069108000000,0.000570441000000,0.001050440000000,0.000055280000000,0.000203429000000,0.000226342000000,0.000078984000000,0.000225552000000,0.000591774000000 +0.000315626000000,0.000071873000000,0.000046590000000,0.000256762000000,0.000595725000000,0.001033847000000,0.000069108000000,0.000541996000000,0.001057946000000,0.000056071000000,0.000228318000000,0.000530539000000,0.000078589000000,0.000208959000000,0.000626934000000 +0.000247676000000,0.000072663000000,0.000046589000000,0.000223577000000,0.000626540000000,0.001061897000000,0.000069898000000,0.000611132000000,0.001053205000000,0.000055675000000,0.000187231000000,0.000359478000000,0.000121256000000,0.000212911000000,0.000635626000000 +0.000314441000000,0.000069107000000,0.000047380000000,0.000223576000000,0.000587033000000,0.001085206000000,0.000069107000000,0.000572416000000,0.001034638000000,0.000054886000000,0.000187231000000,0.000218441000000,0.000078985000000,0.000248465000000,0.000592564000000 +0.000248071000000,0.000069503000000,0.000046984000000,0.000220022000000,0.000604811000000,0.001017651000000,0.000069107000000,0.000540416000000,0.001022786000000,0.000055281000000,0.000191182000000,0.000203033000000,0.000078589000000,0.000212910000000,0.000641157000000 +0.000244515000000,0.000071478000000,0.000046194000000,0.000259527000000,0.000589799000000,0.001139329000000,0.000069107000000,0.000607972000000,0.001304070000000,0.000054885000000,0.000203034000000,0.000186837000000,0.000078590000000,0.000210935000000,0.000634441000000 +0.000245700000000,0.000069108000000,0.000083330000000,0.000223577000000,0.000588219000000,0.001075724000000,0.000069502000000,0.000542786000000,0.001072959000000,0.000112169000000,0.000220416000000,0.000202638000000,0.000078194000000,0.000287577000000,0.000594144000000 +0.000320762000000,0.000071873000000,0.000047379000000,0.000218441000000,0.000593749000000,0.001068613000000,0.000069898000000,0.000578341000000,0.001009749000000,0.000054886000000,0.000182885000000,0.000276120000000,0.000078195000000,0.000209750000000,0.000667231000000 +0.000244120000000,0.000072269000000,0.000046194000000,0.000224761000000,0.000591378000000,0.001053601000000,0.000069107000000,0.000535280000000,0.001024366000000,0.000054491000000,0.000202244000000,0.000192762000000,0.000078589000000,0.000210540000000,0.000594934000000 +0.000243725000000,0.000106243000000,0.000046589000000,0.000325108000000,0.000591774000000,0.001039379000000,0.000069503000000,0.000606391000000,0.001024367000000,0.000055280000000,0.000203429000000,0.000191182000000,0.000079380000000,0.000226342000000,0.000646688000000 +0.000282836000000,0.000069107000000,0.000046590000000,0.000287972000000,0.000600071000000,0.001018045000000,0.000069503000000,0.000585058000000,0.001026736000000,0.000056071000000,0.000237799000000,0.000203824000000,0.000081750000000,0.000215281000000,0.000644712000000 +0.000238984000000,0.000069502000000,0.000046589000000,0.000214490000000,0.000594934000000,0.001081255000000,0.000105058000000,0.000534490000000,0.001077700000000,0.000055676000000,0.000203824000000,0.000237404000000,0.000079774000000,0.000212120000000,0.000599280000000 +0.000245306000000,0.000071478000000,0.000046194000000,0.000219626000000,0.000626539000000,0.001018046000000,0.000069107000000,0.000634441000000,0.001008959000000,0.000056071000000,0.000191577000000,0.000204218000000,0.000078984000000,0.000604021000000,0.000627725000000 +0.000250046000000,0.000068713000000,0.000046589000000,0.000256367000000,0.000594539000000,0.001033453000000,0.000069107000000,0.000541996000000,0.001456168000000,0.000054491000000,0.000186046000000,0.000190391000000,0.000136663000000,0.000226737000000,0.000670391000000 +0.000316811000000,0.000069108000000,0.000046194000000,0.000218046000000,0.000596120000000,0.001053206000000,0.000069503000000,0.000589403000000,0.001020416000000,0.000056071000000,0.000184465000000,0.000201848000000,0.000092811000000,0.000211330000000,0.000593749000000 +0.000243725000000,0.000069503000000,0.000046589000000,0.000216861000000,0.000590194000000,0.001033848000000,0.000073848000000,0.000607577000000,0.001014490000000,0.000055281000000,0.000282836000000,0.000184861000000,0.000078590000000,0.000213700000000,0.000634836000000 +0.000248466000000,0.000068713000000,0.000046589000000,0.000214885000000,0.000600465000000,0.001018836000000,0.000071873000000,0.000536070000000,0.001048070000000,0.000056861000000,0.000182491000000,0.000222787000000,0.000078589000000,0.000214491000000,0.000628120000000 +0.000244910000000,0.000069503000000,0.000046985000000,0.000300614000000,0.000595330000000,0.001217947000000,0.000105058000000,0.000575972000000,0.001097057000000,0.000056466000000,0.000187231000000,0.000184860000000,0.000080565000000,0.000210935000000,0.000590984000000 +0.000274935000000,0.000069108000000,0.000048959000000,0.000223181000000,0.000590194000000,0.001033058000000,0.000087280000000,0.000558589000000,0.001024762000000,0.000056071000000,0.000185256000000,0.000185255000000,0.000078589000000,0.000208565000000,0.000649058000000 +0.000247675000000,0.000069108000000,0.000046984000000,0.000225948000000,0.000594539000000,0.001170539000000,0.000070292000000,0.000869897000000,0.001024761000000,0.000075824000000,0.000238589000000,0.000185256000000,0.000079379000000,0.000208959000000,0.000592959000000 +0.000248070000000,0.000068713000000,0.000046195000000,0.000220416000000,0.000949304000000,0.001065847000000,0.000069107000000,0.000572811000000,0.001023971000000,0.000055280000000,0.000203824000000,0.000204614000000,0.000078195000000,0.000210934000000,0.000630095000000 +0.000239775000000,0.000104268000000,0.000046589000000,0.000294293000000,0.000638391000000,0.001210045000000,0.000069107000000,0.000536070000000,0.001019231000000,0.000056071000000,0.000203824000000,0.000253206000000,0.000079379000000,0.000210540000000,0.000638786000000 +0.000317996000000,0.000071083000000,0.000047379000000,0.000238984000000,0.000554244000000,0.001018045000000,0.000069107000000,0.000570836000000,0.001259033000000,0.000055675000000,0.000203824000000,0.000188811000000,0.000078985000000,0.000208959000000,0.000594145000000 +0.000246095000000,0.000068713000000,0.000135478000000,0.000225552000000,0.000590984000000,0.001103378000000,0.000133107000000,0.000543181000000,0.001025551000000,0.000056071000000,0.000204219000000,0.000189207000000,0.000078984000000,0.000210935000000,0.000875033000000 +0.000247675000000,0.000069108000000,0.000079379000000,0.000223577000000,0.000598490000000,0.001052020000000,0.000069108000000,0.000570836000000,0.001062687000000,0.000055281000000,0.000225157000000,0.000183676000000,0.000096367000000,0.000208960000000,0.000630095000000 +0.000278096000000,0.000069503000000,0.000086491000000,0.000249650000000,0.000553453000000,0.001192267000000,0.000069503000000,0.000609947000000,0.001036613000000,0.000056070000000,0.000203429000000,0.000236219000000,0.000080564000000,0.000209354000000,0.000586638000000 +0.000247675000000,0.000069108000000,0.000081749000000,0.000235824000000,0.000645502000000,0.001104168000000,0.000069108000000,0.000534095000000,0.001148416000000,0.000055676000000,0.000182886000000,0.000202244000000,0.000079380000000,0.000210540000000,0.000630885000000 +0.000248071000000,0.000070293000000,0.000063577000000,0.000223972000000,0.000557404000000,0.001095477000000,0.000069898000000,0.000575972000000,0.001061107000000,0.000055280000000,0.000189602000000,0.000188021000000,0.000079379000000,0.000212515000000,0.000683033000000 +0.000246885000000,0.000071083000000,0.000050145000000,0.000222787000000,0.000732416000000,0.001065848000000,0.000069503000000,0.000543972000000,0.001023971000000,0.000056071000000,0.000255972000000,0.000201849000000,0.000078984000000,0.000211725000000,0.000591774000000 +0.000338540000000,0.000069107000000,0.000050540000000,0.000241749000000,0.000589403000000,0.001080465000000,0.000069503000000,0.000574786000000,0.001055181000000,0.000054886000000,0.000278490000000,0.000203824000000,0.000078589000000,0.000240959000000,0.000635231000000 +0.000262292000000,0.000069897000000,0.000049750000000,0.000220021000000,0.000553453000000,0.001380317000000,0.000068713000000,0.000541206000000,0.001095478000000,0.000056070000000,0.000201058000000,0.000246886000000,0.000079379000000,0.000212515000000,0.000744663000000 +0.000246490000000,0.000068712000000,0.000049355000000,0.000215281000000,0.000590193000000,0.001033058000000,0.000071478000000,0.000571231000000,0.001067428000000,0.000055676000000,0.000180515000000,0.000207379000000,0.000078984000000,0.000210145000000,0.000598885000000 +0.000250836000000,0.000067922000000,0.000050540000000,0.000221207000000,0.000552663000000,0.001018440000000,0.000069898000000,0.000605997000000,0.001017650000000,0.000055675000000,0.000224762000000,0.000189206000000,0.000078984000000,0.000210145000000,0.000628514000000 +0.000330243000000,0.000069897000000,0.000049749000000,0.000222787000000,0.000632860000000,0.001033848000000,0.000068317000000,0.000542391000000,0.001055971000000,0.000055676000000,0.000190392000000,0.000182490000000,0.000078589000000,0.000210935000000,0.000661304000000 +0.000247675000000,0.000105058000000,0.000049750000000,0.000300614000000,0.000601255000000,0.001055576000000,0.000089256000000,0.000575576000000,0.001027922000000,0.000090836000000,0.000189997000000,0.000221997000000,0.000079774000000,0.000210935000000,0.000598885000000 +0.000238984000000,0.000069108000000,0.000067132000000,0.000219626000000,0.000553058000000,0.001046095000000,0.000069898000000,0.000534885000000,0.001539921000000,0.000069503000000,0.000188416000000,0.000185256000000,0.000115725000000,0.000210934000000,0.000638787000000 +0.000327082000000,0.000071873000000,0.000052120000000,0.000221602000000,0.000619428000000,0.001120761000000,0.000075824000000,0.000573996000000,0.001009354000000,0.000054095000000,0.000184466000000,0.000182886000000,0.000080564000000,0.000209749000000,0.000594539000000 +0.000253601000000,0.000105058000000,0.000123627000000,0.000214490000000,0.000554243000000,0.001033453000000,0.000069898000000,0.000542786000000,0.001008959000000,0.000055281000000,0.000274935000000,0.000182095000000,0.000078984000000,0.000252416000000,0.000668811000000 +0.000248071000000,0.000087281000000,0.000136268000000,0.000250441000000,0.000625749000000,0.001061502000000,0.000073454000000,0.000575971000000,0.001025156000000,0.000056071000000,0.000203033000000,0.000418737000000,0.000078984000000,0.000223576000000,0.000630095000000 +0.000238984000000,0.000069108000000,0.000146935000000,0.000219626000000,0.000594935000000,0.001033848000000,0.000069503000000,0.000604811000000,0.001018045000000,0.000055675000000,0.000204219000000,0.000214886000000,0.000079379000000,0.000209355000000,0.000595330000000 +0.000274540000000,0.000074244000000,0.000150490000000,0.000224762000000,0.000557799000000,0.001018045000000,0.000069898000000,0.000534490000000,0.001014490000000,0.000055281000000,0.000205403000000,0.000322737000000,0.000078985000000,0.000210935000000,0.000675527000000 +0.000246490000000,0.000071478000000,0.000150096000000,0.000214490000000,0.000672367000000,0.001048070000000,0.000068318000000,0.000622193000000,0.001029897000000,0.000056071000000,0.000221206000000,0.000204613000000,0.000078589000000,0.000210540000000,0.000622194000000 +0.000238984000000,0.000073454000000,0.000065552000000,0.000327478000000,0.000559774000000,0.001018045000000,0.000069898000000,0.000542392000000,0.001063082000000,0.000055281000000,0.000206984000000,0.000274539000000,0.000079380000000,0.000209750000000,0.000594934000000 +0.000242144000000,0.000069108000000,0.000087676000000,0.000526194000000,0.000631676000000,0.001078094000000,0.000068713000000,0.000570045000000,0.001024366000000,0.000054886000000,0.000184466000000,0.000201453000000,0.000078984000000,0.000210145000000,0.001067428000000 +0.000332218000000,0.000069108000000,0.000095971000000,0.000235429000000,0.000628910000000,0.001018045000000,0.000068713000000,0.000534491000000,0.001047675000000,0.000056070000000,0.000222392000000,0.000182490000000,0.000078985000000,0.000209355000000,0.000633256000000 +0.000247676000000,0.000107824000000,0.000079774000000,0.000255576000000,0.000560169000000,0.001033058000000,0.000069108000000,0.000607971000000,0.001014885000000,0.000054886000000,0.000295478000000,0.000182491000000,0.000078589000000,0.000210540000000,0.000669601000000 +0.000250441000000,0.000068713000000,0.000049354000000,0.000215280000000,0.000598095000000,0.001018046000000,0.000069898000000,0.000636811000000,0.001019626000000,0.000056466000000,0.000203033000000,0.000242145000000,0.000171033000000,0.000208960000000,0.000594539000000 +0.000280071000000,0.000071873000000,0.000050145000000,0.000219626000000,0.000555823000000,0.001259823000000,0.000106244000000,0.000643527000000,0.001048465000000,0.000055280000000,0.000204218000000,0.000198687000000,0.000116120000000,0.000246096000000,0.000634836000000 +0.000246490000000,0.000071873000000,0.000051725000000,0.000214885000000,0.000892416000000,0.001018046000000,0.000068318000000,0.000574786000000,0.001041749000000,0.000091231000000,0.000203428000000,0.000204218000000,0.000095182000000,0.000211330000000,0.000647082000000 +0.000243330000000,0.000069503000000,0.000052121000000,0.000250441000000,0.000630490000000,0.001033453000000,0.000069503000000,0.000535280000000,0.001012119000000,0.000055676000000,0.000204218000000,0.000205009000000,0.000078589000000,0.000209354000000,0.000590589000000 +0.000244910000000,0.000069898000000,0.000049355000000,0.000223972000000,0.000609156000000,0.001053206000000,0.000069503000000,0.000573206000000,0.001014885000000,0.000054491000000,0.000243329000000,0.000204219000000,0.000079380000000,0.000212515000000,0.000685403000000 +0.000305749000000,0.000069108000000,0.000051725000000,0.000224367000000,0.000558984000000,0.001058342000000,0.000069108000000,0.000569651000000,0.001020811000000,0.000055280000000,0.000205009000000,0.000220812000000,0.000078984000000,0.000210540000000,0.000592565000000 +0.000587034000000,0.000071478000000,0.000049355000000,0.000214490000000,0.000632466000000,0.001015675000000,0.000069503000000,0.000540021000000,0.001012119000000,0.000055676000000,0.000192367000000,0.000189206000000,0.000079380000000,0.000209355000000,0.000666045000000 +0.000273354000000,0.000068317000000,0.000049749000000,0.000251626000000,0.000552663000000,0.001047675000000,0.000069503000000,0.000575181000000,0.001025157000000,0.000055676000000,0.000185651000000,0.000202243000000,0.000078984000000,0.000227923000000,0.000648663000000 +0.000257157000000,0.000069108000000,0.000068712000000,0.000220417000000,0.000639972000000,0.001017650000000,0.000069502000000,0.000537256000000,0.001148020000000,0.000056466000000,0.000255577000000,0.000204219000000,0.000081354000000,0.000209750000000,0.000594539000000 +0.000243330000000,0.000069503000000,0.000089651000000,0.000215675000000,0.000624959000000,0.001052811000000,0.000073848000000,0.000610342000000,0.001115626000000,0.000054886000000,0.000204613000000,0.000238984000000,0.000114935000000,0.000208959000000,0.000645108000000 +0.000244120000000,0.000069107000000,0.000084515000000,0.000215281000000,0.000576762000000,0.001084416000000,0.000071478000000,0.000540416000000,0.001017255000000,0.000054490000000,0.000203823000000,0.000182886000000,0.000079379000000,0.000293107000000,0.000679477000000 +0.000282836000000,0.000069898000000,0.000050145000000,0.000220021000000,0.000644713000000,0.001045700000000,0.000069107000000,0.000570046000000,0.001006588000000,0.000056466000000,0.000183675000000,0.000184861000000,0.000078589000000,0.000210145000000,0.000586639000000 +0.000268219000000,0.000110589000000,0.000049750000000,0.000264268000000,0.000557008000000,0.001017256000000,0.000072268000000,0.000575971000000,0.001085996000000,0.000054886000000,0.000184861000000,0.000184861000000,0.000078984000000,0.000211724000000,0.000631675000000 +0.000253996000000,0.000069108000000,0.000049750000000,0.000221996000000,0.000634835000000,0.001033848000000,0.000111775000000,0.000542787000000,0.001007774000000,0.000056071000000,0.000219626000000,0.000186441000000,0.000079379000000,0.000226737000000,0.000635626000000 +0.000262688000000,0.000069503000000,0.000050145000000,0.000219626000000,0.000625354000000,0.001018045000000,0.000068713000000,0.000570441000000,0.001052415000000,0.000055676000000,0.000181701000000,0.000222787000000,0.000078984000000,0.000208960000000,0.000592169000000 +0.000289157000000,0.000068713000000,0.000049354000000,0.000214096000000,0.000552663000000,0.001033453000000,0.000069898000000,0.000537650000000,0.001059132000000,0.000056466000000,0.000184466000000,0.000184861000000,0.000078985000000,0.000210144000000,0.000669996000000 +0.000261107000000,0.000070688000000,0.000050144000000,0.000256367000000,0.000715429000000,0.001031477000000,0.000069108000000,0.000574392000000,0.001043329000000,0.000055280000000,0.000183675000000,0.000186836000000,0.000078589000000,0.000252811000000,0.000594144000000 +0.000263873000000,0.000069108000000,0.000049354000000,0.000214885000000,0.000625354000000,0.001068613000000,0.000069898000000,0.000542786000000,0.001021601000000,0.000135083000000,0.000193157000000,0.000187626000000,0.000079380000000,0.000209750000000,0.000634046000000 +0.000263478000000,0.000068712000000,0.000049750000000,0.000214490000000,0.000568071000000,0.001017650000000,0.000068713000000,0.000662095000000,0.001025551000000,0.000136268000000,0.000248861000000,0.000189601000000,0.000078589000000,0.000210935000000,0.000627725000000 +0.000270589000000,0.000069502000000,0.000049750000000,0.000224762000000,0.000633255000000,0.001038193000000,0.000069108000000,0.000590194000000,0.001314341000000,0.000071083000000,0.000182886000000,0.000235823000000,0.000078985000000,0.000356713000000,0.000590588000000 +0.000263083000000,0.000069107000000,0.000050145000000,0.000263478000000,0.000557403000000,0.001500810000000,0.000069108000000,0.000543577000000,0.001038193000000,0.000057256000000,0.000202639000000,0.000201848000000,0.000098737000000,0.000211330000000,0.000640367000000 +0.000262688000000,0.000071083000000,0.000049750000000,0.000214096000000,0.000633256000000,0.001069403000000,0.000069898000000,0.000606391000000,0.001112070000000,0.000055675000000,0.000188416000000,0.000205009000000,0.000079380000000,0.000210144000000,0.000629305000000 +0.000289552000000,0.000071873000000,0.000050540000000,0.000214490000000,0.000640762000000,0.001069798000000,0.000069502000000,0.000535280000000,0.001025552000000,0.000054095000000,0.000240959000000,0.000184860000000,0.000078589000000,0.000212910000000,0.000594144000000 +0.000263478000000,0.000068713000000,0.000049749000000,0.000222787000000,0.000554243000000,0.001076120000000,0.000069107000000,0.000575972000000,0.001055576000000,0.000055281000000,0.000182886000000,0.000220811000000,0.000078590000000,0.000209355000000,0.000634441000000 +0.000261897000000,0.000142985000000,0.000049750000000,0.000252811000000,0.000625355000000,0.001018045000000,0.000069503000000,0.000575182000000,0.001024366000000,0.000054490000000,0.000205799000000,0.000184071000000,0.000078984000000,0.000209750000000,0.000594539000000 +0.000265058000000,0.000087676000000,0.000050540000000,0.000219626000000,0.000558984000000,0.001068218000000,0.000126391000000,0.000534095000000,0.001061502000000,0.000056861000000,0.000203033000000,0.000182885000000,0.000079775000000,0.000209354000000,0.000832762000000 +0.000297453000000,0.000084120000000,0.000050935000000,0.000223972000000,0.000981305000000,0.001031082000000,0.000084515000000,0.000609947000000,0.001010935000000,0.000055676000000,0.000205009000000,0.000201453000000,0.000079379000000,0.000209750000000,0.000630095000000 +0.000269798000000,0.000069898000000,0.000066738000000,0.000221996000000,0.000605206000000,0.001400860000000,0.000069503000000,0.000573601000000,0.001079279000000,0.000054490000000,0.000573601000000,0.000201059000000,0.000080564000000,0.000210934000000,0.000622984000000 +0.000264268000000,0.000069108000000,0.000049355000000,0.000223577000000,0.000595330000000,0.001018440000000,0.000069503000000,0.000615083000000,0.001036613000000,0.000054095000000,0.000274145000000,0.000250836000000,0.000078590000000,0.000214491000000,0.000595329000000 +0.000256762000000,0.000069108000000,0.000049355000000,0.000259132000000,0.000561355000000,0.001053601000000,0.000069898000000,0.000540021000000,0.001018835000000,0.000091231000000,0.000238590000000,0.000188417000000,0.000078984000000,0.000212515000000,0.000634836000000 +0.000253996000000,0.000071873000000,0.000048960000000,0.000260318000000,0.000593354000000,0.001125502000000,0.000075428000000,0.000575577000000,0.001057947000000,0.000054886000000,0.000204614000000,0.000202639000000,0.000078590000000,0.000210935000000,0.000591774000000 +0.000296663000000,0.000069108000000,0.000050145000000,0.000231873000000,0.000560169000000,0.001033058000000,0.000069897000000,0.000579527000000,0.001036613000000,0.000056071000000,0.000203824000000,0.000182490000000,0.000098737000000,0.000240959000000,0.000648663000000 +0.000259922000000,0.000071874000000,0.000050144000000,0.000224762000000,0.000632860000000,0.001025552000000,0.000073848000000,0.000534885000000,0.001223477000000,0.000056071000000,0.000202639000000,0.000204218000000,0.000078589000000,0.000209355000000,0.000630490000000 +0.000265058000000,0.000069108000000,0.000050144000000,0.000260712000000,0.000591774000000,0.001122342000000,0.000069503000000,0.000570046000000,0.001027922000000,0.000056861000000,0.000243725000000,0.000235823000000,0.000079379000000,0.000247280000000,0.000598885000000 +0.000258342000000,0.000074243000000,0.000049750000000,0.000215676000000,0.000553453000000,0.001105749000000,0.000069502000000,0.000537650000000,0.001095873000000,0.000056071000000,0.000203824000000,0.000185256000000,0.000078985000000,0.000209749000000,0.000627330000000 +0.000263873000000,0.000107823000000,0.000049355000000,0.000214490000000,0.000595330000000,0.001034242000000,0.000069897000000,0.000701206000000,0.001025946000000,0.000056466000000,0.000205799000000,0.000203033000000,0.000078984000000,0.000212120000000,0.000645897000000 +0.000253206000000,0.000073453000000,0.000050540000000,0.000214490000000,0.000554243000000,0.001053205000000,0.000070293000000,0.000609551000000,0.001021996000000,0.000054885000000,0.000186046000000,0.000187231000000,0.000078590000000,0.000245700000000,0.000614293000000 +0.000294293000000,0.000068713000000,0.000049355000000,0.000297454000000,0.000636811000000,0.001044514000000,0.000104663000000,0.000538835000000,0.001088761000000,0.000054886000000,0.000183281000000,0.000240565000000,0.000078984000000,0.000212910000000,0.000664070000000 +0.000260713000000,0.000068713000000,0.000049750000000,0.000216465000000,0.000683428000000,0.001018440000000,0.000069107000000,0.000585848000000,0.001049651000000,0.000056466000000,0.000218441000000,0.000203824000000,0.000081355000000,0.000208959000000,0.000594144000000 +0.000262688000000,0.000071478000000,0.000050540000000,0.000227133000000,0.000552663000000,0.001033453000000,0.000068712000000,0.000543576000000,0.001009749000000,0.000055676000000,0.000185256000000,0.000204219000000,0.000078984000000,0.000212120000000,0.000645108000000 +0.000265058000000,0.000069107000000,0.000049354000000,0.000214096000000,0.000590589000000,0.001018045000000,0.000069897000000,0.000585848000000,0.001020020000000,0.000056071000000,0.000182491000000,0.000203033000000,0.000078589000000,0.000209749000000,0.000630095000000 +0.000263478000000,0.000072664000000,0.000049749000000,0.000257552000000,0.000555429000000,0.001033848000000,0.000070293000000,0.000589404000000,0.001020811000000,0.000054885000000,0.000203429000000,0.000204219000000,0.000078985000000,0.000208959000000,0.000595329000000 +0.000258343000000,0.000072268000000,0.000065947000000,0.000220416000000,0.000637206000000,0.001018441000000,0.000069898000000,0.000617848000000,0.001055181000000,0.000054886000000,0.000188811000000,0.000332614000000,0.000078589000000,0.000210935000000,0.000630095000000 +0.000260317000000,0.000070292000000,0.000126392000000,0.000216861000000,0.000589009000000,0.001033453000000,0.000069503000000,0.000613107000000,0.001044119000000,0.000091627000000,0.000225552000000,0.000199478000000,0.000130738000000,0.000210935000000,0.000790490000000 +0.000263082000000,0.000069503000000,0.000046984000000,0.000240564000000,0.000557009000000,0.001017650000000,0.000069503000000,0.000536070000000,0.001015280000000,0.000054886000000,0.000186046000000,0.000204218000000,0.000078984000000,0.000212515000000,0.000817354000000 +0.000259922000000,0.000068317000000,0.000047775000000,0.000340515000000,0.000593354000000,0.001033453000000,0.000069108000000,0.000587824000000,0.001046095000000,0.000056465000000,0.000204219000000,0.000203033000000,0.000103083000000,0.000208960000000,0.000633650000000 +0.000258737000000,0.000071083000000,0.000046984000000,0.000221602000000,0.000554243000000,0.001189107000000,0.000069898000000,0.000537650000000,0.001054786000000,0.000054886000000,0.000202639000000,0.000222391000000,0.000110589000000,0.000209355000000,0.000705551000000 +0.000253206000000,0.000069503000000,0.000046984000000,0.000219626000000,0.000589008000000,0.001050441000000,0.000069503000000,0.000611527000000,0.001057551000000,0.000056466000000,0.000215281000000,0.000203428000000,0.000078984000000,0.000212120000000,0.000634836000000 +0.000301799000000,0.000120861000000,0.000047775000000,0.000221206000000,0.000589798000000,0.001018045000000,0.000069108000000,0.000604415000000,0.001053601000000,0.000054885000000,0.000195132000000,0.000184860000000,0.000079379000000,0.000211330000000,0.000594144000000 +0.000242145000000,0.000069108000000,0.000048170000000,0.000260713000000,0.000554243000000,0.001033453000000,0.000109800000000,0.000538440000000,0.001021206000000,0.000056466000000,0.000203823000000,0.000201453000000,0.000078590000000,0.000225552000000,0.000669601000000 +0.000238589000000,0.000068713000000,0.000048169000000,0.000219626000000,0.000589009000000,0.001053601000000,0.000092021000000,0.000612318000000,0.001009354000000,0.000055280000000,0.000183280000000,0.000265849000000,0.000078589000000,0.000210540000000,0.000591774000000 +0.000248466000000,0.000068713000000,0.000046589000000,0.000214095000000,0.000561354000000,0.001033453000000,0.000163132000000,0.000538440000000,0.001130243000000,0.000056071000000,0.000200663000000,0.000250045000000,0.000079775000000,0.000209749000000,0.000636811000000 +0.000432959000000,0.000069898000000,0.000047775000000,0.000214490000000,0.000593355000000,0.001018045000000,0.000087281000000,0.000641947000000,0.001013304000000,0.000055281000000,0.000219626000000,0.000386737000000,0.000079379000000,0.000211330000000,0.000680663000000 +0.000262293000000,0.000069503000000,0.000046984000000,0.000258738000000,0.000553058000000,0.001033453000000,0.000070293000000,0.000597700000000,0.001050045000000,0.000054885000000,0.000206194000000,0.000240959000000,0.000096367000000,0.000209749000000,0.000592959000000 +0.000486293000000,0.000069108000000,0.000046984000000,0.000220416000000,0.000605601000000,0.001017650000000,0.000069108000000,0.000956020000000,0.001018441000000,0.000055676000000,0.000186836000000,0.000256762000000,0.000079774000000,0.000209354000000,0.000630491000000 +0.000517898000000,0.000069108000000,0.000047380000000,0.000219626000000,0.000591378000000,0.001078884000000,0.000069898000000,0.000552663000000,0.001043329000000,0.000054491000000,0.000188812000000,0.000190391000000,0.000079380000000,0.000214886000000,0.000669601000000 +0.000587033000000,0.000071083000000,0.000046589000000,0.000219626000000,0.000554638000000,0.001017650000000,0.000069502000000,0.000570440000000,0.001011724000000,0.000056465000000,0.000203034000000,0.000203428000000,0.000078589000000,0.000211725000000,0.000594144000000 +0.000263478000000,0.000068713000000,0.000046589000000,0.000214885000000,0.000594935000000,0.001032662000000,0.000069107000000,0.000534490000000,0.001027132000000,0.000056861000000,0.000297058000000,0.000188811000000,0.000079775000000,0.000212515000000,0.000631280000000 +0.000317996000000,0.000068318000000,0.000046984000000,0.000261898000000,0.000557404000000,0.001018045000000,0.000069107000000,0.000581503000000,0.001005798000000,0.000071873000000,0.000203033000000,0.000243330000000,0.000079379000000,0.000210145000000,0.000664861000000 +0.000385552000000,0.000069503000000,0.000066737000000,0.000219626000000,0.000735576000000,0.001090737000000,0.000069503000000,0.000544367000000,0.001080860000000,0.000054490000000,0.000180911000000,0.000201848000000,0.000079379000000,0.000212910000000,0.000586243000000 +0.000275330000000,0.000086491000000,0.000046984000000,0.000220022000000,0.000653008000000,0.001018441000000,0.000126391000000,0.000572416000000,0.001008564000000,0.000055281000000,0.000205009000000,0.000201454000000,0.000078984000000,0.000211329000000,0.000631675000000 +0.000263873000000,0.000071478000000,0.000046984000000,0.000214491000000,0.000560960000000,0.001038588000000,0.000086095000000,0.000539626000000,0.001075329000000,0.000055676000000,0.000257552000000,0.000187231000000,0.000079379000000,0.000212910000000,0.000599280000000 +0.000320367000000,0.000071874000000,0.000046985000000,0.000265848000000,0.000645897000000,0.001028317000000,0.000069107000000,0.000569650000000,0.001053995000000,0.000054885000000,0.000182490000000,0.000220021000000,0.000078985000000,0.000210935000000,0.000675132000000 +0.000265058000000,0.000069108000000,0.000047774000000,0.000219626000000,0.000596514000000,0.001033453000000,0.000069107000000,0.000626935000000,0.001027527000000,0.000055281000000,0.000193157000000,0.000203429000000,0.000078984000000,0.000211330000000,0.000634441000000 +0.000257947000000,0.000068713000000,0.000046194000000,0.000221207000000,0.000561749000000,0.001053601000000,0.000069107000000,0.000538836000000,0.001018836000000,0.000053701000000,0.000194737000000,0.000182095000000,0.000152466000000,0.000225552000000,0.000594144000000 +0.000294688000000,0.000068713000000,0.000046194000000,0.000221206000000,0.000591379000000,0.001208860000000,0.000071873000000,0.000584663000000,0.001026736000000,0.000055676000000,0.000238984000000,0.000182096000000,0.000079380000000,0.000208565000000,0.000669206000000 +0.000274540000000,0.000069503000000,0.000047379000000,0.000257552000000,0.000553453000000,0.001066243000000,0.000068713000000,0.000540811000000,0.001023181000000,0.000056861000000,0.000202638000000,0.000202244000000,0.000078984000000,0.000208564000000,0.000693305000000 +0.000261107000000,0.000069108000000,0.000046590000000,0.000214490000000,0.000594539000000,0.001032663000000,0.000069898000000,0.000578737000000,0.001016070000000,0.000055676000000,0.000203823000000,0.000256762000000,0.000079379000000,0.000272169000000,0.000590984000000 +0.000267428000000,0.000069108000000,0.000046589000000,0.000223972000000,0.000554244000000,0.001053601000000,0.000069898000000,0.000583083000000,0.001024367000000,0.000056070000000,0.000185255000000,0.000184861000000,0.000078194000000,0.000213700000000,0.001074934000000 +0.000294293000000,0.000069108000000,0.000046984000000,0.000219626000000,0.000629700000000,0.001044120000000,0.000069898000000,0.000538441000000,0.001059131000000,0.000055281000000,0.000203428000000,0.000185256000000,0.000078589000000,0.000209354000000,0.000628910000000 +0.000244911000000,0.000073058000000,0.000046984000000,0.000214886000000,0.000598095000000,0.001064268000000,0.000075824000000,0.000611527000000,0.001078885000000,0.000055281000000,0.000265848000000,0.000204218000000,0.000078589000000,0.000293502000000,0.000644712000000 +0.000245305000000,0.000069107000000,0.000046984000000,0.000234638000000,0.000552268000000,0.001033848000000,0.000069898000000,0.000538836000000,0.001092712000000,0.000055280000000,0.000203824000000,0.000223181000000,0.000078589000000,0.000264268000000,0.000598490000000 +0.000244910000000,0.000142984000000,0.000046589000000,0.000214886000000,0.000590194000000,0.001432465000000,0.000166688000000,0.000570440000000,0.001131823000000,0.000126787000000,0.000203429000000,0.000188416000000,0.000078589000000,0.000209750000000,0.000630490000000 +0.000298639000000,0.000069108000000,0.000046589000000,0.000221601000000,0.000554638000000,0.001033453000000,0.000205009000000,0.000541601000000,0.001095478000000,0.000055675000000,0.000185256000000,0.000187627000000,0.000078589000000,0.000209750000000,0.000631675000000 +0.000248070000000,0.000074244000000,0.000046985000000,0.000214885000000,0.000598490000000,0.001018046000000,0.000107824000000,0.000571626000000,0.001054786000000,0.000054886000000,0.000239774000000,0.000182490000000,0.000112170000000,0.000211330000000,0.000594145000000 +0.000437305000000,0.000071478000000,0.000046589000000,0.000298639000000,0.000585848000000,0.001091922000000,0.000097948000000,0.000579922000000,0.001042934000000,0.000055281000000,0.000203429000000,0.000188021000000,0.000096367000000,0.000211725000000,0.000621798000000 +0.000280465000000,0.000073454000000,0.000046984000000,0.000224367000000,0.000557009000000,0.001033453000000,0.000069898000000,0.000537255000000,0.001053996000000,0.000054490000000,0.000202639000000,0.000222392000000,0.000078194000000,0.000212515000000,0.000594935000000 +0.000356713000000,0.000068713000000,0.000123231000000,0.000221601000000,0.000593355000000,0.001081651000000,0.000069108000000,0.000570045000000,0.001019230000000,0.000056466000000,0.000205009000000,0.000195132000000,0.000078984000000,0.000209354000000,0.000649453000000 +0.000248071000000,0.000068713000000,0.000133897000000,0.000221207000000,0.000554243000000,0.001018045000000,0.000069108000000,0.000537651000000,0.001495280000000,0.000055676000000,0.000205009000000,0.000188021000000,0.000079775000000,0.000213700000000,0.000641947000000 +0.000282441000000,0.000071478000000,0.000147725000000,0.000376860000000,0.001145255000000,0.001034242000000,0.000068713000000,0.000580712000000,0.001058736000000,0.000056860000000,0.000239775000000,0.000185651000000,0.000078984000000,0.000301404000000,0.000598885000000 +0.000267824000000,0.000069108000000,0.000098342000000,0.000229898000000,0.001557699000000,0.001031872000000,0.000105848000000,0.000543972000000,0.001012910000000,0.000054886000000,0.000204219000000,0.000202243000000,0.000078985000000,0.000210540000000,0.000630095000000 +0.000263083000000,0.000072268000000,0.000065948000000,0.000224367000000,0.000947330000000,0.001069008000000,0.000069898000000,0.000570836000000,0.001029897000000,0.000093207000000,0.000181305000000,0.000220021000000,0.000079379000000,0.000245701000000,0.000634440000000 +0.000259132000000,0.000071873000000,0.000049750000000,0.000216070000000,0.000843033000000,0.001018046000000,0.000068713000000,0.000542391000000,0.001024761000000,0.000058441000000,0.000204218000000,0.000202243000000,0.000081355000000,0.000210144000000,0.000591774000000 +0.000266639000000,0.000070293000000,0.000061997000000,0.000250046000000,0.000561749000000,0.001082045000000,0.000069898000000,0.000552663000000,0.001029898000000,0.000069108000000,0.000274539000000,0.000182886000000,0.000078590000000,0.000208959000000,0.001008169000000 +0.000253601000000,0.000105059000000,0.000046984000000,0.000214491000000,0.000629699000000,0.001070193000000,0.000068318000000,0.000614293000000,0.001079674000000,0.000054886000000,0.000184465000000,0.000180910000000,0.000078589000000,0.000284022000000,0.000635231000000 +0.000259132000000,0.000069108000000,0.000046984000000,0.000252811000000,0.000589404000000,0.001033848000000,0.000069108000000,0.000537255000000,0.001028712000000,0.000101897000000,0.000184070000000,0.000255972000000,0.000133898000000,0.000209355000000,0.000592959000000 +0.000259527000000,0.000071478000000,0.000046985000000,0.000233058000000,0.000570441000000,0.001150390000000,0.000069108000000,0.000606786000000,0.001012910000000,0.000054491000000,0.000202638000000,0.000184860000000,0.000079379000000,0.000209355000000,0.000697651000000 +0.000259132000000,0.000069108000000,0.000066737000000,0.000250836000000,0.000619033000000,0.001043329000000,0.000069503000000,0.000554243000000,0.001045700000000,0.000054886000000,0.000183675000000,0.000180910000000,0.000078589000000,0.000261897000000,0.000669206000000 +0.000255182000000,0.000069108000000,0.000047380000000,0.000221207000000,0.000554639000000,0.001018441000000,0.000069503000000,0.001197799000000,0.001038193000000,0.000054885000000,0.000218441000000,0.000205009000000,0.000079775000000,0.000209750000000,0.000594144000000 +0.000259527000000,0.000069108000000,0.000047379000000,0.000225157000000,0.000625749000000,0.001038194000000,0.000074244000000,0.000555823000000,0.001034638000000,0.000055676000000,0.000204219000000,0.000203429000000,0.000078589000000,0.000209355000000,0.000649848000000 +0.000261502000000,0.000069107000000,0.000046984000000,0.000223971000000,0.000639181000000,0.001017650000000,0.000071478000000,0.000583083000000,0.001007774000000,0.000056466000000,0.000204614000000,0.000258343000000,0.000078985000000,0.000283626000000,0.000675922000000 +0.000263083000000,0.000069898000000,0.000046589000000,0.000255577000000,0.000558589000000,0.001033847000000,0.000069503000000,0.000542786000000,0.001048070000000,0.000056466000000,0.000183281000000,0.000188416000000,0.000079379000000,0.000213305000000,0.000586639000000 +0.000253996000000,0.000069897000000,0.000046984000000,0.000220021000000,0.000647083000000,0.001064267000000,0.000092417000000,0.000604811000000,0.001026341000000,0.000058046000000,0.000231083000000,0.000204218000000,0.000078590000000,0.000212515000000,0.000631280000000 +0.000264268000000,0.000068712000000,0.000046590000000,0.000214096000000,0.000632466000000,0.001104563000000,0.000070292000000,0.000548318000000,0.001014490000000,0.000055281000000,0.000201059000000,0.000202243000000,0.000078589000000,0.000246885000000,0.000636021000000 +0.000295873000000,0.000068317000000,0.000046589000000,0.000223576000000,0.000557404000000,0.001154341000000,0.000069503000000,0.000575576000000,0.001020021000000,0.000055676000000,0.000183280000000,0.000223972000000,0.000079774000000,0.000209354000000,0.000592564000000 +0.000265453000000,0.000069107000000,0.000046985000000,0.000257156000000,0.000596910000000,0.001033057000000,0.000070293000000,0.000570836000000,0.001021995000000,0.000055676000000,0.000183675000000,0.000186441000000,0.000079379000000,0.000209354000000,0.000648267000000 +0.000253207000000,0.000109800000000,0.000046589000000,0.000225157000000,0.000562144000000,0.001055971000000,0.000068318000000,0.000540811000000,0.001038194000000,0.000055281000000,0.000189996000000,0.000205799000000,0.000114935000000,0.000280466000000,0.000594145000000 +0.000261897000000,0.000097947000000,0.000046984000000,0.000220022000000,0.000625354000000,0.001098638000000,0.000068713000000,0.000621404000000,0.001319082000000,0.000055675000000,0.000242540000000,0.000183281000000,0.000078984000000,0.000212120000000,0.000635231000000 +0.000253996000000,0.000068713000000,0.000046985000000,0.000216860000000,0.000589404000000,0.001017650000000,0.000069108000000,0.000540811000000,0.001006984000000,0.000054491000000,0.000203824000000,0.000203824000000,0.000079380000000,0.000211329000000,0.000739527000000 +0.000253207000000,0.000069898000000,0.000047379000000,0.000235034000000,0.000572811000000,0.001033453000000,0.000069108000000,0.000570836000000,0.001026736000000,0.000074244000000,0.000202244000000,0.000238194000000,0.000078984000000,0.000250045000000,0.000590984000000 +0.000253206000000,0.000068713000000,0.000049354000000,0.000240564000000,0.000914540000000,0.001028317000000,0.000068713000000,0.000534490000000,0.001009749000000,0.000059626000000,0.000203429000000,0.000202244000000,0.000078984000000,0.000210934000000,0.000634835000000 +0.000266243000000,0.000071478000000,0.000047379000000,0.000214491000000,0.000814589000000,0.001033847000000,0.000069898000000,0.000575577000000,0.001061107000000,0.000054886000000,0.000220416000000,0.000186836000000,0.000081355000000,0.000211329000000,0.000664466000000 +0.000262688000000,0.000071478000000,0.000046985000000,0.000220811000000,0.000561750000000,0.001017650000000,0.000069503000000,0.000603231000000,0.001017650000000,0.000055281000000,0.000203428000000,0.000203033000000,0.000078984000000,0.000446392000000,0.000594539000000 +0.000253997000000,0.000068713000000,0.000046984000000,0.000214095000000,0.000589009000000,0.001282341000000,0.000069898000000,0.000543181000000,0.001029107000000,0.000055280000000,0.000201848000000,0.000238589000000,0.000078984000000,0.000209354000000,0.000634046000000 +0.000259132000000,0.000069503000000,0.000046985000000,0.000305750000000,0.000590194000000,0.001018441000000,0.000069108000000,0.000579132000000,0.001018046000000,0.000055281000000,0.000205008000000,0.000189997000000,0.000079379000000,0.000228318000000,0.000630885000000 +0.000259528000000,0.000069108000000,0.000084120000000,0.000219626000000,0.000554638000000,0.001104564000000,0.000107429000000,0.000534490000000,0.001053205000000,0.000055676000000,0.000188416000000,0.000203033000000,0.000078984000000,0.000210144000000,0.000595329000000 +0.000253601000000,0.000069503000000,0.000046589000000,0.000218441000000,0.000598095000000,0.001052416000000,0.000081355000000,0.000604811000000,0.001143280000000,0.000056071000000,0.000218441000000,0.000201848000000,0.000078590000000,0.000212120000000,0.000630095000000 +0.000253997000000,0.000069503000000,0.000046984000000,0.000223576000000,0.000552663000000,0.001069008000000,0.000069108000000,0.000544366000000,0.001023576000000,0.000058836000000,0.000205009000000,0.000204614000000,0.000150885000000,0.000299823000000,0.000679873000000 +0.000254392000000,0.000105849000000,0.000046589000000,0.000250046000000,0.000600070000000,0.001053206000000,0.000069108000000,0.000976564000000,0.001059922000000,0.000056071000000,0.000201848000000,0.000252416000000,0.000078590000000,0.000268614000000,0.000594934000000 +0.000253996000000,0.000068713000000,0.000046589000000,0.000218441000000,0.000592959000000,0.001083625000000,0.000069898000000,0.000606392000000,0.001384267000000,0.000054885000000,0.000203823000000,0.000280071000000,0.000078984000000,0.000214095000000,0.000686194000000 +0.000259923000000,0.000071478000000,0.000046589000000,0.000219626000000,0.000554638000000,0.001062687000000,0.000075429000000,0.000630490000000,0.001186736000000,0.000054885000000,0.000183675000000,0.000205404000000,0.000078194000000,0.000256761000000,0.000591774000000 +0.000263478000000,0.000069108000000,0.000046985000000,0.000216861000000,0.000624170000000,0.001033453000000,0.000069898000000,0.000537651000000,0.001065453000000,0.000056071000000,0.000202243000000,0.000203823000000,0.000078984000000,0.000209749000000,0.000634836000000 +0.000258737000000,0.000072269000000,0.000046984000000,0.000255972000000,0.000553848000000,0.001053600000000,0.000073454000000,0.000574391000000,0.001018045000000,0.000054095000000,0.000183281000000,0.000221206000000,0.000081750000000,0.000214491000000,0.000636021000000 +0.000265059000000,0.000069108000000,0.000047379000000,0.000221996000000,0.000590194000000,0.001033452000000,0.000068713000000,0.000534490000000,0.001061502000000,0.000056465000000,0.000203429000000,0.000203429000000,0.000078985000000,0.000246886000000,0.000598490000000 +0.000259132000000,0.000074639000000,0.000046589000000,0.000220021000000,0.000588614000000,0.001065057000000,0.000069503000000,0.000625354000000,0.001024366000000,0.000091231000000,0.000203429000000,0.000191577000000,0.000078984000000,0.000210935000000,0.000662490000000 +0.000264663000000,0.000071478000000,0.000047379000000,0.000214886000000,0.000595330000000,0.001033848000000,0.000068713000000,0.000606392000000,0.001042144000000,0.000055676000000,0.000306935000000,0.000203428000000,0.000079775000000,0.000209749000000,0.000626934000000 +0.000259527000000,0.000073849000000,0.000046985000000,0.000234243000000,0.000634441000000,0.001467625000000,0.000069503000000,0.000559774000000,0.001037798000000,0.000056465000000,0.000282441000000,0.000184070000000,0.000078984000000,0.000245305000000,0.000598490000000 +0.000263478000000,0.000069503000000,0.000046984000000,0.000248071000000,0.000587033000000,0.001033847000000,0.000105059000000,0.000605996000000,0.001057551000000,0.000055676000000,0.000182885000000,0.000200664000000,0.000078589000000,0.000209354000000,0.000628910000000 +0.000250046000000,0.000069108000000,0.000046589000000,0.000224762000000,0.000604020000000,0.001029107000000,0.000069503000000,0.000566886000000,0.001012119000000,0.000054885000000,0.000203824000000,0.000186441000000,0.000148515000000,0.000208564000000,0.000594540000000 +0.000238984000000,0.000071478000000,0.000047775000000,0.000214490000000,0.000588218000000,0.001069008000000,0.000069108000000,0.000607576000000,0.001055576000000,0.000056071000000,0.000241355000000,0.000183281000000,0.000081354000000,0.000247281000000,0.000669601000000 +0.000284416000000,0.000137454000000,0.000046984000000,0.000214885000000,0.000595724000000,0.001018440000000,0.000069108000000,0.000602836000000,0.001030687000000,0.000055676000000,0.000188812000000,0.000202639000000,0.000078589000000,0.000210144000000,0.000630885000000 +0.000247675000000,0.000086886000000,0.000046590000000,0.000363429000000,0.000593749000000,0.001091132000000,0.000069503000000,0.000570836000000,0.001590885000000,0.000055675000000,0.000203824000000,0.000217651000000,0.000078589000000,0.000208959000000,0.000595329000000 +0.000238984000000,0.000072268000000,0.000093602000000,0.000237009000000,0.000636811000000,0.001018045000000,0.000069503000000,0.000602836000000,0.001405600000000,0.000054886000000,0.000193947000000,0.000205009000000,0.000078589000000,0.000249256000000,0.000665256000000 +0.000244120000000,0.000069898000000,0.000046984000000,0.000220021000000,0.000892811000000,0.001033058000000,0.000069108000000,0.000572811000000,0.001006588000000,0.000056071000000,0.000183676000000,0.000203033000000,0.000078984000000,0.000208960000000,0.000622194000000 +0.000386342000000,0.000069897000000,0.000047379000000,0.000252416000000,0.000594935000000,0.001018836000000,0.000068713000000,0.000604811000000,0.001065847000000,0.000055280000000,0.000206590000000,0.000205009000000,0.000078589000000,0.000211725000000,0.000595329000000 +0.000437305000000,0.000068712000000,0.000046985000000,0.000214095000000,0.000595330000000,0.001082440000000,0.000069898000000,0.000587034000000,0.001012120000000,0.000058046000000,0.000184466000000,0.000183280000000,0.000079775000000,0.000246095000000,0.000634836000000 +0.000368959000000,0.000070293000000,0.000046984000000,0.000223182000000,0.000591379000000,0.001018045000000,0.000069108000000,0.000573206000000,0.001045304000000,0.000056071000000,0.000203429000000,0.000229107000000,0.000079774000000,0.000210145000000,0.000611527000000 +0.000243725000000,0.000069503000000,0.000046984000000,0.000214490000000,0.000683823000000,0.001033058000000,0.000104269000000,0.000608366000000,0.001022391000000,0.000056861000000,0.000191182000000,0.000186441000000,0.000078985000000,0.000209355000000,0.000599280000000 +0.000300613000000,0.000069108000000,0.000046984000000,0.000214886000000,0.000596119000000,0.001031478000000,0.000084910000000,0.000568071000000,0.001069404000000,0.000094392000000,0.000248861000000,0.000182885000000,0.000117305000000,0.000248070000000,0.000679873000000 +0.000252021000000,0.000069503000000,0.000046589000000,0.000285206000000,0.000589798000000,0.001047280000000,0.000109799000000,0.000613502000000,0.001029897000000,0.000055281000000,0.000205009000000,0.000192367000000,0.000240170000000,0.000209354000000,0.000598490000000 +0.000390293000000,0.000069503000000,0.000050145000000,0.000216861000000,0.000606391000000,0.001018046000000,0.000070293000000,0.000567281000000,0.001022391000000,0.000055280000000,0.000184861000000,0.000203429000000,0.000144959000000,0.000209355000000,0.000764415000000 +0.000259132000000,0.000068713000000,0.000049354000000,0.000227922000000,0.000558984000000,0.001037798000000,0.000069503000000,0.000967872000000,0.001110094000000,0.000055281000000,0.000186836000000,0.000316021000000,0.000084120000000,0.000248071000000,0.000637602000000 +0.000250441000000,0.000105848000000,0.000047380000000,0.000224367000000,0.000740317000000,0.001018045000000,0.000072664000000,0.000605997000000,0.001008959000000,0.000055280000000,0.000205009000000,0.000188811000000,0.000093602000000,0.000208959000000,0.000598885000000 +0.000330243000000,0.000068712000000,0.000048565000000,0.000255972000000,0.000594935000000,0.001047279000000,0.000070688000000,0.000568465000000,0.001018440000000,0.000056466000000,0.000284811000000,0.000184070000000,0.000078984000000,0.000214095000000,0.000662885000000 +0.000248071000000,0.000068712000000,0.000046589000000,0.000221206000000,0.000562144000000,0.001069798000000,0.000068713000000,0.000566885000000,0.001119181000000,0.000056861000000,0.000203428000000,0.000189206000000,0.000078589000000,0.000245700000000,0.000646687000000 +0.000249256000000,0.000068712000000,0.000046589000000,0.000224367000000,0.000589009000000,0.001207674000000,0.000069503000000,0.000609156000000,0.001299724000000,0.000056466000000,0.000193158000000,0.000221602000000,0.000078589000000,0.000210540000000,0.000598490000000 +0.000238589000000,0.000071084000000,0.000046589000000,0.000219626000000,0.000554243000000,0.001018440000000,0.000069108000000,0.000572021000000,0.001035033000000,0.000055281000000,0.000205009000000,0.000188021000000,0.000115330000000,0.000208960000000,0.000670787000000 +0.000325108000000,0.000068318000000,0.000048564000000,0.000299033000000,0.000590984000000,0.001034242000000,0.000068713000000,0.000572811000000,0.001065847000000,0.000054885000000,0.000219626000000,0.000189206000000,0.000079774000000,0.000231478000000,0.000631280000000 +0.000248070000000,0.000069108000000,0.000046589000000,0.000223577000000,0.000562144000000,0.001064662000000,0.000069898000000,0.000606786000000,0.001010935000000,0.000055281000000,0.000203823000000,0.000182885000000,0.000081354000000,0.000209354000000,0.000594539000000 +0.000247676000000,0.000069503000000,0.000082935000000,0.000214490000000,0.000588613000000,0.001069008000000,0.000070293000000,0.000575182000000,0.001022391000000,0.000055281000000,0.000186441000000,0.000259133000000,0.000078985000000,0.000211330000000,0.000892416000000 +0.000282441000000,0.000069108000000,0.000047380000000,0.000221997000000,0.000642342000000,0.001028712000000,0.000069502000000,0.000606391000000,0.001018045000000,0.000056860000000,0.000200268000000,0.000188811000000,0.000079379000000,0.000243330000000,0.000631675000000 +0.000248861000000,0.000071873000000,0.000047379000000,0.000308910000000,0.000557404000000,0.001033452000000,0.000105848000000,0.000577157000000,0.001023576000000,0.000056466000000,0.000204219000000,0.000184465000000,0.000079379000000,0.000211330000000,0.000598886000000 +0.000245700000000,0.000071083000000,0.000047380000000,0.000218441000000,0.000626935000000,0.001064267000000,0.000069108000000,0.000572811000000,0.001057552000000,0.000092416000000,0.000220021000000,0.000204613000000,0.000079775000000,0.000212515000000,0.000627724000000 +0.000249651000000,0.000069108000000,0.000046589000000,0.000215676000000,0.000552663000000,0.001048070000000,0.000069503000000,0.000572812000000,0.001019230000000,0.000054885000000,0.000206589000000,0.000186046000000,0.000078589000000,0.000246095000000,0.000634441000000 +0.000284417000000,0.000089256000000,0.000046984000000,0.000216466000000,0.000703182000000,0.001063477000000,0.000069107000000,0.000570045000000,0.001019231000000,0.000055281000000,0.000204613000000,0.000240169000000,0.000078590000000,0.000210144000000,0.000594539000000 +0.000239379000000,0.000101503000000,0.000046985000000,0.000340120000000,0.000600860000000,0.001037798000000,0.000071873000000,0.000572416000000,0.001074539000000,0.000056071000000,0.000193552000000,0.000182095000000,0.000078984000000,0.000211725000000,0.000634836000000 +0.000247676000000,0.000069108000000,0.000046589000000,0.000228318000000,0.000552663000000,0.001340416000000,0.000069108000000,0.000572021000000,0.001165798000000,0.000056071000000,0.000240170000000,0.000186046000000,0.000078985000000,0.000208959000000,0.000628120000000 +0.000248070000000,0.000069898000000,0.000047775000000,0.000214490000000,0.000597305000000,0.001068218000000,0.000069503000000,0.000567280000000,0.001012515000000,0.000056861000000,0.000187626000000,0.000188416000000,0.000132713000000,0.000208960000000,0.000590984000000 +0.000333404000000,0.000069108000000,0.000046985000000,0.000219626000000,0.000596120000000,0.001031477000000,0.000069108000000,0.000568465000000,0.001025946000000,0.000056466000000,0.000203429000000,0.000237009000000,0.000078590000000,0.000212515000000,0.000673551000000 +0.000242145000000,0.000069108000000,0.000046194000000,0.000250441000000,0.000582292000000,0.001081651000000,0.000069503000000,0.000578737000000,0.001018046000000,0.000055281000000,0.000189207000000,0.000216860000000,0.000082540000000,0.000214095000000,0.000592565000000 +0.000250046000000,0.000072268000000,0.000067528000000,0.000227527000000,0.000605602000000,0.001017255000000,0.000075034000000,0.000619428000000,0.001041354000000,0.000055675000000,0.000205009000000,0.000204218000000,0.000078984000000,0.000226342000000,0.000665255000000 +0.000244120000000,0.000109009000000,0.000082145000000,0.000218045000000,0.000554243000000,0.001067823000000,0.000070293000000,0.000534490000000,0.001018045000000,0.000054886000000,0.000200664000000,0.000186836000000,0.000078589000000,0.000209354000000,0.000634441000000 +0.000280071000000,0.000088861000000,0.000106639000000,0.000214096000000,0.000590984000000,0.001017255000000,0.000071873000000,0.000622194000000,0.001039774000000,0.000056071000000,0.000203429000000,0.000203429000000,0.000079379000000,0.000235823000000,0.000594539000000 +0.000244910000000,0.000069108000000,0.000067923000000,0.000292317000000,0.000558984000000,0.001080070000000,0.000088465000000,0.000542391000000,0.001019230000000,0.000054885000000,0.000182885000000,0.000276120000000,0.000079379000000,0.000210935000000,0.000630885000000 +0.000244120000000,0.000074244000000,0.000086885000000,0.000217256000000,0.000573601000000,0.001018440000000,0.000069503000000,0.000579133000000,0.001117601000000,0.000054886000000,0.000203824000000,0.000185256000000,0.000078984000000,0.000208960000000,0.000685404000000 +0.000268219000000,0.000089651000000,0.000046984000000,0.000214095000000,0.000594145000000,0.001068218000000,0.000069108000000,0.000571230000000,0.001073749000000,0.000055280000000,0.000220021000000,0.000184466000000,0.000078589000000,0.000210145000000,0.000586638000000 +0.000290737000000,0.000073453000000,0.000047380000000,0.000214491000000,0.000559774000000,0.001031478000000,0.000070293000000,0.000538835000000,0.001053206000000,0.000055676000000,0.000202244000000,0.000203034000000,0.000082145000000,0.000211725000000,0.000631280000000 +0.000244120000000,0.000069108000000,0.000046984000000,0.000215676000000,0.000604021000000,0.001088366000000,0.000069897000000,0.000573602000000,0.001072564000000,0.000072269000000,0.000203824000000,0.000266244000000,0.000078985000000,0.000210934000000,0.000636811000000 +0.000248861000000,0.000069108000000,0.000085305000000,0.000257157000000,0.000557009000000,0.001091131000000,0.000069898000000,0.000534490000000,0.001048070000000,0.000056466000000,0.000203824000000,0.000448762000000,0.000114935000000,0.000209750000000,0.000607971000000 diff --git a/docs/source/media/bench/lua bench tests slb3.csv b/docs/source/media/bench/lua bench tests slb3.csv new file mode 100644 index 00000000..5a08d63a --- /dev/null +++ b/docs/source/media/bench/lua bench tests slb3.csv @@ -0,0 +1,2001 @@ +"slb3 - global get","slb3 - member function calls","slb3 - c function","slb3 - global set","slb3 - member function calls (simple)" +0.000019739000000,0.000055826000000,0.000054114000000,0.000015591000000,0.000058196333333 +0.000018949000000,0.000039365000000,0.000036599666667,0.000015196000000,0.000117982333333 +0.000018949000000,0.000037916666667,0.000034492666667,0.000014998500000,0.000116402000000 +0.000018949000000,0.000036468000000,0.000033702666667,0.000015393500000,0.000077027666667 +0.000019541500000,0.000035809666667,0.000044501000000,0.000014801000000,0.000041998666667 +0.000018949000000,0.000035546333333,0.000032649000000,0.000014998000000,0.000036468000000 +0.000018949000000,0.000035283000000,0.000032254000000,0.000014801000000,0.000036336333333 +0.000018751500000,0.000034887666667,0.000032254000000,0.000015986000000,0.000048583333333 +0.000018751000000,0.000034624333333,0.000031727333333,0.000014998500000,0.000036204666667 +0.000018948500000,0.000034624333333,0.000031859000000,0.000014801000000,0.000035546000000 +0.000018554000000,0.000034887666667,0.000031727333333,0.000014998500000,0.000035414333333 +0.000018554000000,0.000034624666667,0.000031595666667,0.000014998500000,0.000035414666667 +0.000018751500000,0.000034492666667,0.000031332333333,0.000014801000000,0.000034888000000 +0.000018554000000,0.000034492666667,0.000074789000000,0.000014603500000,0.000035019333333 +0.000018949000000,0.000046212666667,0.000101389666667,0.000014800500000,0.000035151000000 +0.000018751500000,0.000034624333333,0.000100599666667,0.000034554000000,0.000034888000000 +0.000018948500000,0.000034624333333,0.000049505000000,0.000014801000000,0.000035019333333 +0.000018159000000,0.000034097333333,0.000031463666667,0.000014800500000,0.000034887666667 +0.000018949000000,0.000033966000000,0.000031464000000,0.000014998500000,0.000034888000000 +0.000018949000000,0.000034756000000,0.000031464000000,0.000014998500000,0.000040945333333 +0.000038899500000,0.000034097666667,0.000031200333333,0.000014998000000,0.000049768333333 +0.000047590500000,0.000034097666667,0.000031332333333,0.000014998500000,0.000034887666667 +0.000025862500000,0.000033834333333,0.000031068666667,0.000014800500000,0.000034887666667 +0.000018356500000,0.000033834333333,0.000031200333333,0.000014998500000,0.000035019333333 +0.000019542000000,0.000034097666667,0.000031200666667,0.000014998500000,0.000035151333333 +0.000018751500000,0.000034361000000,0.000031332000000,0.000014998500000,0.000035151000000 +0.000018554000000,0.000034097666667,0.000049110000000,0.000030010500000,0.000034624333333 +0.000018751500000,0.000046476333333,0.000035809666667,0.000014800500000,0.000035151333333 +0.000018949000000,0.000033966000000,0.000031068666667,0.000014801000000,0.000034624333333 +0.000018949000000,0.000033966000000,0.000031332333333,0.000014998000000,0.000034624666667 +0.000018949000000,0.000033966000000,0.000031332000000,0.000015196000000,0.000034624333333 +0.000018949000000,0.000033834000000,0.000031200666667,0.000014998000000,0.000034888000000 +0.000018554000000,0.000033965666667,0.000031332000000,0.000015196000000,0.000034756000000 +0.000018159000000,0.000033966000000,0.000031069000000,0.000014800500000,0.000034624333333 +0.000018553500000,0.000033966000000,0.000049768333333,0.000014998500000,0.000034361000000 +0.000018159000000,0.000034624333333,0.000036994666667,0.000015195500000,0.000046739666667 +0.000018553500000,0.000034097666667,0.000031200333333,0.000025072500000,0.000034624333333 +0.000018751500000,0.000033702666667,0.000031200666667,0.000014801000000,0.000034492666667 +0.000018751500000,0.000033702666667,0.000031332000000,0.000014801000000,0.000034493000000 +0.000029023500000,0.000033571000000,0.000031200666667,0.000015393500000,0.000034361000000 +0.000018554000000,0.000034097666667,0.000031463666667,0.000014998500000,0.000034624333333 +0.000018751000000,0.000033834333333,0.000031464000000,0.000014800500000,0.000034624333333 +0.000018356500000,0.000033834333333,0.000031068666667,0.000014998500000,0.000034361000000 +0.000018751500000,0.000033966000000,0.000055167666667,0.000014998500000,0.000046871000000 +0.000018751500000,0.000034097666667,0.000036336333333,0.000014801000000,0.000034756000000 +0.000018356500000,0.000033702333333,0.000031332000000,0.000014801000000,0.000034756333333 +0.000018949000000,0.000033702333333,0.000031200666667,0.000014800500000,0.000034756000000 +0.000018356500000,0.000033965666667,0.000029752000000,0.000042257500000,0.000034624333333 +0.000018356000000,0.000033570666667,0.000031068666667,0.000014801000000,0.000034492666667 +0.000018554000000,0.000033834000000,0.000031069000000,0.000014800500000,0.000034361000000 +0.000018356000000,0.000034097666667,0.000031068666667,0.000014998500000,0.000034492666667 +0.000018949000000,0.000036204666667,0.000031332000000,0.000015195500000,0.000034492666667 +0.000018554000000,0.000046608000000,0.000048320000000,0.000015196000000,0.000034492666667 +0.000018158500000,0.000044501000000,0.000031332000000,0.000014998000000,0.000034097666667 +0.000018356500000,0.000036731333333,0.000042130666667,0.000015591000000,0.000034888000000 +0.000018356000000,0.000031595666667,0.000035678000000,0.000014998000000,0.000034624333333 +0.000019541500000,0.000031990666667,0.000031068666667,0.000015196000000,0.000034097666667 +0.000018949000000,0.000031990666667,0.000031200666667,0.000015788500000,0.000034229333333 +0.000018356500000,0.000031595666667,0.000031069000000,0.000039294500000,0.000033966000000 +0.000018356000000,0.000031727333333,0.000030937000000,0.000014800500000,0.000034229333333 +0.000029023000000,0.000031595666667,0.000058064666667,0.000014801000000,0.000034493000000 +0.000018949000000,0.000048583333333,0.000030937333333,0.000014998500000,0.000034624333333 +0.000018356500000,0.000031990666667,0.000031200666667,0.000014998000000,0.000034624333333 +0.000018949000000,0.000031859000000,0.000031068666667,0.000014801000000,0.000034624333333 +0.000018356500000,0.000032122333333,0.000031200666667,0.000014998500000,0.000033966000000 +0.000018949000000,0.000031859000000,0.000031200333333,0.000014800500000,0.000034229333333 +0.000018553500000,0.000031727333333,0.000030937333333,0.000014801000000,0.000034361000000 +0.000018356500000,0.000031859000000,0.000031200666667,0.000014998500000,0.000034361000000 +0.000018751500000,0.000031859000000,0.000031068666667,0.000014998000000,0.000034756000000 +0.000018949000000,0.000038311666667,0.000044106000000,0.000015393000000,0.000034624333333 +0.000018949000000,0.000036731333333,0.000035414333333,0.000015196000000,0.000034624333333 +0.000018949000000,0.000031727333333,0.000030937333333,0.000015393000000,0.000034229333333 +0.000018356000000,0.000031464000000,0.000029620000000,0.000014998500000,0.000034492666667 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014998000000,0.000034624333333 +0.000018554000000,0.000031990666667,0.000031332000000,0.000014801000000,0.000034756000000 +0.000018949000000,0.000031859000000,0.000031332333333,0.000014998000000,0.000034624333333 +0.000018553500000,0.000031859000000,0.000031068666667,0.000015788000000,0.000034624333333 +0.000018949000000,0.000032122333333,0.000030937333333,0.000015196000000,0.000046739333333 +0.000018356000000,0.000054904333333,0.000053851000000,0.000014998000000,0.000034361000000 +0.000018949000000,0.000032122333333,0.000031200666667,0.000021912000000,0.000034624333333 +0.000018949000000,0.000031727333333,0.000030937000000,0.000014998500000,0.000034361000000 +0.000028825500000,0.000031859000000,0.000031200666667,0.000014801000000,0.000034492666667 +0.000018751000000,0.000031595666667,0.000030937000000,0.000015196000000,0.000034361000000 +0.000018356500000,0.000032122333333,0.000031200666667,0.000014998000000,0.000034492666667 +0.000018553500000,0.000031859000000,0.000030674000000,0.000015196000000,0.000034229333333 +0.000018949000000,0.000031990666667,0.000030673666667,0.000014998000000,0.000038706666667 +0.000018949000000,0.000038443333333,0.000030805333333,0.000014998500000,0.000035151000000 +0.000018356000000,0.000031990666667,0.000047398000000,0.000014998500000,0.000034492666667 +0.000018949000000,0.000031859000000,0.000030805333333,0.000014603000000,0.000034492666667 +0.000018948500000,0.000031859000000,0.000030937333333,0.000014801000000,0.000034492666667 +0.000018949000000,0.000032122333333,0.000031068666667,0.000050356000000,0.000034097666667 +0.000018356500000,0.000031990666667,0.000030937000000,0.000041072500000,0.000034361000000 +0.000018949000000,0.000031990666667,0.000031069000000,0.000048578500000,0.000034229333333 +0.000018949000000,0.000031859000000,0.000031068666667,0.000016381000000,0.000034756000000 +0.000018949000000,0.000031858666667,0.000030937000000,0.000029023000000,0.000034493000000 +0.000018356500000,0.000043710666667,0.000037521666667,0.000015393000000,0.000034624333333 +0.000018949000000,0.000031859000000,0.000085982333333,0.000014801000000,0.000034229333333 +0.000018553500000,0.000031990666667,0.000052929000000,0.000015393500000,0.000034624333333 +0.000018356500000,0.000031727333333,0.000040813666667,0.000014801000000,0.000034229333333 +0.000018356000000,0.000031859000000,0.000030937333333,0.000014800500000,0.000034229333333 +0.000018949000000,0.000031595666667,0.000030937333333,0.000014998500000,0.000034361000000 +0.000018751000000,0.000031990666667,0.000036994666667,0.000014801000000,0.000034492666667 +0.000028825500000,0.000031990666667,0.000035414666667,0.000014998000000,0.000035019333333 +0.000018356500000,0.000031727333333,0.000031200333333,0.000014998500000,0.000034624666667 +0.000018751000000,0.000044237666667,0.000030805333333,0.000014998000000,0.000034756000000 +0.000018751500000,0.000031990666667,0.000031200666667,0.000021912000000,0.000034492666667 +0.000018356000000,0.000031859000000,0.000031068666667,0.000014800500000,0.000034361000000 +0.000028035500000,0.000031990666667,0.000030805666667,0.000014998500000,0.000034097666667 +0.000025665000000,0.000031727333333,0.000030937333333,0.000014998500000,0.000034361333333 +0.000018159000000,0.000031859000000,0.000031068666667,0.000014800500000,0.000034492666667 +0.000018948500000,0.000031859000000,0.000030937333333,0.000014998500000,0.000034756333333 +0.000018159000000,0.000031859000000,0.000041999000000,0.000014801000000,0.000045554333333 +0.000018751500000,0.000031727333333,0.000030805333333,0.000014800500000,0.000034492666667 +0.000018949000000,0.000069126666667,0.000030937333333,0.000014998500000,0.000034492666667 +0.000018356000000,0.000078476333333,0.000030805666667,0.000014800500000,0.000034492666667 +0.000018949000000,0.000094015000000,0.000030937000000,0.000014801000000,0.000060040000000 +0.000018949000000,0.000059118333333,0.000030805333333,0.000015788500000,0.000045686333333 +0.000018356500000,0.000044106000000,0.000030674000000,0.000014801000000,0.000035019333333 +0.000018356000000,0.000031990666667,0.000030805666667,0.000014998000000,0.000034361000000 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014998500000,0.000034624333333 +0.000019541500000,0.000032122333333,0.000053719000000,0.000015591000000,0.000034493000000 +0.000018356500000,0.000031990666667,0.000030937000000,0.000014998000000,0.000034361000000 +0.000018949000000,0.000031727333333,0.000030673666667,0.000015393500000,0.000034492666667 +0.000027047500000,0.000031464000000,0.000030674000000,0.000014800500000,0.000034624333333 +0.000018949000000,0.000031464000000,0.000030674000000,0.000014603500000,0.000034492666667 +0.000018949000000,0.000037784666667,0.000030673666667,0.000014998500000,0.000034624333333 +0.000018751500000,0.000053324000000,0.000029620333333,0.000033171000000,0.000034756000000 +0.000018356500000,0.000038838333333,0.000030805333333,0.000015195500000,0.000034361000000 +0.000018554000000,0.000048715000000,0.000030805333333,0.000014998500000,0.000034097666667 +0.000018356500000,0.000031595666667,0.000042920666667,0.000015196000000,0.000034097666667 +0.000018356500000,0.000032122333333,0.000035809666667,0.000014998500000,0.000034361000000 +0.000018949000000,0.000031990666667,0.000030805333333,0.000014998500000,0.000034756333333 +0.000018356500000,0.000031595666667,0.000030937000000,0.000014998500000,0.000034624333333 +0.000061813000000,0.000042657333333,0.000030674000000,0.000014998000000,0.000034756333333 +0.000018553500000,0.000031859000000,0.000030937333333,0.000014998500000,0.000034756000000 +0.000018949000000,0.000031595666667,0.000030673666667,0.000014998000000,0.000034361000000 +0.000018949000000,0.000032254000000,0.000030805333333,0.000014998500000,0.000034492666667 +0.000018356500000,0.000031595666667,0.000030937333333,0.000024677500000,0.000034624333333 +0.000018356500000,0.000031464000000,0.000046344666667,0.000014998500000,0.000034361000000 +0.000018356500000,0.000031464000000,0.000031068666667,0.000014998000000,0.000034361000000 +0.000018356000000,0.000031727333333,0.000030937333333,0.000014998000000,0.000034493000000 +0.000018356500000,0.000031595666667,0.000031068666667,0.000014998500000,0.000034624333333 +0.000018948500000,0.000056089333333,0.000030673666667,0.000014998500000,0.000034888000000 +0.000037516500000,0.000031859000000,0.000030805333333,0.000014801000000,0.000034624333333 +0.000037714500000,0.000031990666667,0.000030542333333,0.000014998500000,0.000034624333333 +0.000063591000000,0.000031990666667,0.000030805666667,0.000014800500000,0.000034229333333 +0.000061813000000,0.000032122333333,0.000030805333333,0.000015196000000,0.000034624333333 +0.000019541500000,0.000031859000000,0.000052138666667,0.000015591000000,0.000034361000000 +0.000018949000000,0.000031859000000,0.000035414666667,0.000015986000000,0.000034756000000 +0.000018751000000,0.000031859000000,0.000030805333333,0.000014998500000,0.000034492666667 +0.000018751500000,0.000043974333333,0.000030937000000,0.000014998000000,0.000034492666667 +0.000018356500000,0.000031727333333,0.000030674000000,0.000014801000000,0.000034229333333 +0.000018356500000,0.000031595666667,0.000031200666667,0.000014998500000,0.000034492666667 +0.000018949000000,0.000031859000000,0.000031068666667,0.000014998000000,0.000034492666667 +0.000018949000000,0.000031859000000,0.000030937333333,0.000014998500000,0.000034624333333 +0.000018949000000,0.000031727333333,0.000031200666667,0.000014800500000,0.000034624333333 +0.000029418000000,0.000031727333333,0.000045027666667,0.000014998500000,0.000034624333333 +0.000018356000000,0.000031727333333,0.000030937333333,0.000015591000000,0.000034492666667 +0.000018751500000,0.000031595666667,0.000031069000000,0.000014998000000,0.000034624333333 +0.000018949000000,0.000052928666667,0.000030805333333,0.000014801000000,0.000071233333333 +0.000018356500000,0.000036336333333,0.000030937333333,0.000014800500000,0.000102179666667 +0.000018356500000,0.000031859000000,0.000030937333333,0.000014603000000,0.000103233333333 +0.000018356500000,0.000043579000000,0.000030937000000,0.000014998500000,0.000049110000000 +0.000018356000000,0.000036468000000,0.000029620333333,0.000016184000000,0.000032517333333 +0.000018949000000,0.000031859000000,0.000030673666667,0.000014801000000,0.000032386000000 +0.000018949000000,0.000031595333333,0.000042262333333,0.000014801000000,0.000032385666667 +0.000018553500000,0.000031463666667,0.000030937000000,0.000014800500000,0.000032780666667 +0.000018554000000,0.000043711000000,0.000031068666667,0.000015393500000,0.000032385666667 +0.000018554000000,0.000031990666667,0.000030805666667,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000031068666667,0.000014998500000,0.000032254000000 +0.000017961000000,0.000031990666667,0.000030937000000,0.000014801000000,0.000032122333333 +0.000018554000000,0.000031727333333,0.000047529666667,0.000014998500000,0.000056352666667 +0.000018356500000,0.000031595666667,0.000031069000000,0.000015196000000,0.000032385666667 +0.000018751500000,0.000031859000000,0.000031068666667,0.000014800500000,0.000032517666667 +0.000018356500000,0.000031595666667,0.000053455666667,0.000014603500000,0.000032254000000 +0.000018949000000,0.000031727333333,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018948500000,0.000060961666667,0.000030805333333,0.000014998000000,0.000032517333333 +0.000018159000000,0.000032254000000,0.000030805666667,0.000014801000000,0.000032385666667 +0.000018356000000,0.000031990666667,0.000030673666667,0.000014801000000,0.000032254000000 +0.000018356500000,0.000032122333333,0.000030937000000,0.000015591000000,0.000056352666667 +0.000018159000000,0.000031727333333,0.000030937333333,0.000014998500000,0.000032780666667 +0.000018356500000,0.000031990666667,0.000029488666667,0.000014998000000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000030805666667,0.000044430500000,0.000032649333333 +0.000018949000000,0.000031727333333,0.000042788666667,0.000021517000000,0.000032254000000 +0.000018159000000,0.000043842666667,0.000031332333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000031200333333,0.000015393500000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000030937333333,0.000015196000000,0.000032649333333 +0.000018356000000,0.000031990666667,0.000030937000000,0.000014998000000,0.000032517333333 +0.000018356500000,0.000031859000000,0.000030805333333,0.000014801000000,0.000050032000000 +0.000018554000000,0.000031464000000,0.000030674000000,0.000014801000000,0.000032517333333 +0.000018159000000,0.000031595666667,0.000030805666667,0.000014800500000,0.000032517333333 +0.000018356000000,0.000031727333333,0.000030805333333,0.000014801000000,0.000032122333333 +0.000018159000000,0.000031463666667,0.000041999000000,0.000014998500000,0.000032122333333 +0.000018751500000,0.000055299000000,0.000030937333333,0.000014801000000,0.000032122333333 +0.000018751500000,0.000036204666667,0.000030805333333,0.000014998500000,0.000032385666667 +0.000018554000000,0.000031727333333,0.000030805333333,0.000014998000000,0.000032385666667 +0.000018356000000,0.000031595333333,0.000031069000000,0.000014998500000,0.000055957666667 +0.000018949000000,0.000031990666667,0.000030673666667,0.000015196000000,0.000032385666667 +0.000028825500000,0.000031990666667,0.000031068666667,0.000014998500000,0.000031990666667 +0.000025270000000,0.000032122333333,0.000031069000000,0.000014998500000,0.000032386000000 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014998000000,0.000032254000000 +0.000018949000000,0.000038443333333,0.000043579000000,0.000014603500000,0.000031990666667 +0.000018356500000,0.000031858666667,0.000035546333333,0.000014800500000,0.000031990666667 +0.000018356500000,0.000032122333333,0.000030937000000,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031990666667,0.000030937333333,0.000014800500000,0.000058591666667 +0.000018949000000,0.000032122333333,0.000030542000000,0.000014998500000,0.000038443333333 +0.000018356500000,0.000031727333333,0.000029752000000,0.000014800500000,0.000032386000000 +0.000019541500000,0.000031859000000,0.000031068666667,0.000014998500000,0.000031990666667 +0.000019344000000,0.000031727333333,0.000031068666667,0.000014603500000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000030937333333,0.000014998000000,0.000032254000000 +0.000018356500000,0.000054904333333,0.000041735333333,0.000015196000000,0.000032517333333 +0.000018949000000,0.000033966000000,0.000030805333333,0.000014800500000,0.000032780666667 +0.000018751500000,0.000033702666667,0.000031069000000,0.000015196000000,0.000045554666667 +0.000018159000000,0.000033702666667,0.000030673666667,0.000014998500000,0.000032780666667 +0.000018356500000,0.000033571000000,0.000030937000000,0.000014800500000,0.000032385666667 +0.000018751000000,0.000033571000000,0.000031069000000,0.000024282000000,0.000044105666667 +0.000018949000000,0.000033307666667,0.000030805666667,0.000015195500000,0.000039233666667 +0.000018356000000,0.000051480333333,0.000030805333333,0.000014998500000,0.000037389666667 +0.000018356500000,0.000043974000000,0.000030673666667,0.000014998500000,0.000032385666667 +0.000018949000000,0.000036599666667,0.000030937333333,0.000014998000000,0.000032517333333 +0.000018949000000,0.000031463666667,0.000035546000000,0.000014998500000,0.000056089666667 +0.000018751500000,0.000031859000000,0.000030805333333,0.000014998000000,0.000031990666667 +0.000018356500000,0.000031990666667,0.000030674000000,0.000015591000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030805666667,0.000014800500000,0.000032517333333 +0.000018949000000,0.000031859000000,0.000031068666667,0.000014998000000,0.000032517333333 +0.000018751500000,0.000031859000000,0.000030805333333,0.000014801000000,0.000032517333333 +0.000018356500000,0.000031727333333,0.000030937333333,0.000015196000000,0.000032385666667 +0.000018949000000,0.000036468000000,0.000031068666667,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031859000000,0.000030937000000,0.000015195500000,0.000051085333333 +0.000018356500000,0.000031727333333,0.000057669666667,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000031200666667,0.000014998500000,0.000032385666667 +0.000018356000000,0.000031595333333,0.000031069000000,0.000014998000000,0.000031990666667 +0.000018159000000,0.000031727333333,0.000030937000000,0.000014998500000,0.000032254000000 +0.000018554000000,0.000031727000000,0.000030937333333,0.000014998000000,0.000032517666667 +0.000018356500000,0.000031858666667,0.000030937333333,0.000014998500000,0.000032385666667 +0.000018949000000,0.000043052333333,0.000029752000000,0.000014998500000,0.000032517333333 +0.000018949000000,0.000036731333333,0.000031200333333,0.000014800500000,0.000032649333333 +0.000018356000000,0.000031464000000,0.000037521666667,0.000029813000000,0.000049768333333 +0.000026455000000,0.000031464000000,0.000035546000000,0.000014998500000,0.000032122333333 +0.000018949000000,0.000031727333333,0.000030805666667,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031595666667,0.000030805666667,0.000014800500000,0.000032122333333 +0.000018356500000,0.000031464000000,0.000030805333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014801000000,0.000032385666667 +0.000018356000000,0.000031595333333,0.000031069000000,0.000014603000000,0.000032385666667 +0.000018949000000,0.000043710666667,0.000030805666667,0.000014801000000,0.000032517333333 +0.000018356000000,0.000031859000000,0.000030937000000,0.000014801000000,0.000064649000000 +0.000018356500000,0.000031595666667,0.000030805333333,0.000015195500000,0.000104418666667 +0.000018356500000,0.000031595666667,0.000042657333333,0.000014998500000,0.000072681666667 +0.000018356500000,0.000031727333333,0.000030937333333,0.000014801000000,0.000040023333333 +0.000018554000000,0.000031595666667,0.000031200666667,0.000015196000000,0.000048978000000 +0.000019344000000,0.000031859000000,0.000030937000000,0.000015196000000,0.000032385666667 +0.000018356000000,0.000031464000000,0.000030674000000,0.000014998500000,0.000032649000000 +0.000018554000000,0.000031595333333,0.000030674000000,0.000014998500000,0.000032386000000 +0.000018751500000,0.000043579000000,0.000030673666667,0.000014998500000,0.000032517333333 +0.000018554000000,0.000031990666667,0.000030805333333,0.000014998000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030673666667,0.000015788500000,0.000032254000000 +0.000018356500000,0.000032122333333,0.000068731333333,0.000014800500000,0.000032517333333 +0.000018554000000,0.000031727333333,0.000072682000000,0.000014801000000,0.000032649000000 +0.000018356000000,0.000031990666667,0.000077027333333,0.000015196000000,0.000044369333333 +0.000018356500000,0.000031727333333,0.000036204666667,0.000042455000000,0.000032122333333 +0.000018356000000,0.000031990666667,0.000030937333333,0.000051739500000,0.000032517333333 +0.000026060000000,0.000031727333333,0.000031068666667,0.000024875000000,0.000032385666667 +0.000018356500000,0.000059776666667,0.000047661333333,0.000014998000000,0.000032385666667 +0.000018751500000,0.000032122333333,0.000030673666667,0.000014801000000,0.000032254333333 +0.000018751500000,0.000032122333333,0.000030937333333,0.000014998000000,0.000032254000000 +0.000018751000000,0.000031990666667,0.000029488333333,0.000014801000000,0.000032254000000 +0.000018159000000,0.000031595666667,0.000031200666667,0.000024480000000,0.000045554333333 +0.000018949000000,0.000031859000000,0.000031068666667,0.000014800500000,0.000037785000000 +0.000018949000000,0.000032122333333,0.000033702666667,0.000014998500000,0.000032385666667 +0.000018948500000,0.000031859000000,0.000033175666667,0.000014998000000,0.000032254000000 +0.000019541500000,0.000043315666667,0.000045159333333,0.000014801000000,0.000032254000000 +0.000018751500000,0.000031859000000,0.000036731333333,0.000014998500000,0.000032254000000 +0.000018159000000,0.000031859000000,0.000030805333333,0.000014998000000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000031595666667,0.000014998500000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000031595666667,0.000014800500000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000031595333333,0.000014998500000,0.000058854666667 +0.000018356500000,0.000038311666667,0.000031595666667,0.000014800500000,0.000034887666667 +0.000018158500000,0.000036994666667,0.000031068666667,0.000034356500000,0.000046344666667 +0.000018949000000,0.000031727333333,0.000031200666667,0.000014998500000,0.000034361000000 +0.000018949000000,0.000031727000000,0.000054509000000,0.000014998500000,0.000034624333333 +0.000018751500000,0.000031464000000,0.000035809666667,0.000031195500000,0.000052797333333 +0.000018554000000,0.000031859000000,0.000031200333333,0.000021912000000,0.000040813666667 +0.000019344000000,0.000031859000000,0.000031200666667,0.000014801000000,0.000050295000000 +0.000018356500000,0.000031727333333,0.000030937000000,0.000014800500000,0.000094410333333 +0.000018356000000,0.000031990666667,0.000031069000000,0.000014998500000,0.000034229333333 +0.000018356500000,0.000031595666667,0.000031200333333,0.000014998500000,0.000034361000000 +0.000018356500000,0.000031332333333,0.000031068666667,0.000014800500000,0.000034361000000 +0.000018949000000,0.000038311666667,0.000043184000000,0.000034356500000,0.000058196666667 +0.000018554000000,0.000041472000000,0.000036599666667,0.000014998500000,0.000032912333333 +0.000018751500000,0.000031727333333,0.000030937333333,0.000014800500000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000029620333333,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031990666667,0.000030673666667,0.000014998000000,0.000032517333333 +0.000018356000000,0.000031727333333,0.000031200333333,0.000015393500000,0.000032254000000 +0.000046208000000,0.000031595666667,0.000031069000000,0.000014998500000,0.000032122333333 +0.000026060500000,0.000031463666667,0.000030937000000,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031595333333,0.000030937000000,0.000014998500000,0.000032254000000 +0.000018554000000,0.000043710666667,0.000031069000000,0.000014800500000,0.000056748000000 +0.000018948500000,0.000031990666667,0.000057933000000,0.000014998500000,0.000032649000000 +0.000018751500000,0.000031464000000,0.000031068666667,0.000014801000000,0.000032517333333 +0.000019541500000,0.000031727333333,0.000031200666667,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031595666667,0.000030805666667,0.000014998000000,0.000032517333333 +0.000018751500000,0.000031859000000,0.000030937000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015196000000,0.000032780666667 +0.000019146500000,0.000031464000000,0.000030805666667,0.000015196000000,0.000032649000000 +0.000018949000000,0.000031463666667,0.000030805333333,0.000014801000000,0.000044500666667 +0.000018949000000,0.000046344333333,0.000043710666667,0.000014800500000,0.000032649000000 +0.000018356500000,0.000031727333333,0.000035546000000,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031990666667,0.000031069000000,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031595666667,0.000030937333333,0.000024084500000,0.000032385666667 +0.000018554000000,0.000031595666667,0.000030805333333,0.000015393500000,0.000032517333333 +0.000018553500000,0.000031727333333,0.000030937000000,0.000014603000000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000030937333333,0.000014800500000,0.000032254000000 +0.000018948500000,0.000031859000000,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018949000000,0.000038575000000,0.000030937000000,0.000014800500000,0.000044501000000 +0.000018553500000,0.000041999000000,0.000049110000000,0.000015591000000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000034229333333,0.000014801000000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000030805666667,0.000014998000000,0.000037916666667 +0.000018356500000,0.000031859000000,0.000030937333333,0.000014801000000,0.000034361333333 +0.000018751500000,0.000031727333333,0.000030673666667,0.000014801000000,0.000034229333333 +0.000018356500000,0.000031727333333,0.000030542000000,0.000033961000000,0.000065044000000 +0.000018554000000,0.000031859000000,0.000030673666667,0.000014998000000,0.000043710666667 +0.000018356000000,0.000031727333333,0.000030937333333,0.000014998500000,0.000034624333333 +0.000018554000000,0.000042657333333,0.000030673666667,0.000014801000000,0.000034493000000 +0.000018751500000,0.000031595666667,0.000054245666667,0.000014800500000,0.000057801333333 +0.000018554000000,0.000031859000000,0.000031068666667,0.000014998500000,0.000034624333333 +0.000018356500000,0.000032254000000,0.000031069000000,0.000014998500000,0.000034756000000 +0.000018949000000,0.000031859000000,0.000030937000000,0.000014998500000,0.000034361000000 +0.000018356500000,0.000031859000000,0.000030805333333,0.000014603000000,0.000034756000000 +0.000018554000000,0.000031727000000,0.000030805666667,0.000014998500000,0.000046608000000 +0.000018356500000,0.000031727000000,0.000030805666667,0.000014998500000,0.000035019333333 +0.000018356500000,0.000031727000000,0.000030937000000,0.000034158500000,0.000034756000000 +0.000018949000000,0.000048056666667,0.000030673666667,0.000015591000000,0.000034361000000 +0.000018356500000,0.000032122333333,0.000053982333333,0.000014800500000,0.000034361000000 +0.000018356500000,0.000031859000000,0.000031069000000,0.000014801000000,0.000034492666667 +0.000018356500000,0.000031727333333,0.000030937000000,0.000014998500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000030805333333,0.000014998000000,0.000034361000000 +0.000018159000000,0.000031727333333,0.000030805333333,0.000015196000000,0.000035019666667 +0.000018356000000,0.000031595666667,0.000030937333333,0.000014603000000,0.000034492666667 +0.000018949000000,0.000031727333333,0.000030542000000,0.000014800500000,0.000034361000000 +0.000018949000000,0.000031727333333,0.000030937000000,0.000015196000000,0.000034361000000 +0.000018949000000,0.000096517333333,0.000030805666667,0.000014800500000,0.000034361000000 +0.000018356500000,0.000066097666667,0.000058064666667,0.000021912000000,0.000034229333333 +0.000018948500000,0.000036204666667,0.000030542333333,0.000014998000000,0.000034492666667 +0.000027838000000,0.000031990666667,0.000030805666667,0.000015393500000,0.000034624333333 +0.000037122000000,0.000031464000000,0.000029488333333,0.000015195500000,0.000035019666667 +0.000019541500000,0.000038311666667,0.000030542000000,0.000014998500000,0.000034361000000 +0.000018949000000,0.000032122333333,0.000030805333333,0.000014998500000,0.000034097666667 +0.000018949000000,0.000031990666667,0.000030673666667,0.000015393000000,0.000034492666667 +0.000018356000000,0.000031859000000,0.000030805333333,0.000014801000000,0.000034492666667 +0.000018356500000,0.000031595666667,0.000030937333333,0.000014801000000,0.000034361000000 +0.000017961500000,0.000031595666667,0.000058459666667,0.000015591000000,0.000034361000000 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015788000000,0.000034492666667 +0.000018949000000,0.000031595666667,0.000030937000000,0.000026060000000,0.000034361000000 +0.000018949000000,0.000031332333333,0.000030937333333,0.000015986000000,0.000047003000000 +0.000027047500000,0.000049900000000,0.000030805333333,0.000015788500000,0.000034361000000 +0.000018356500000,0.000036468000000,0.000030805333333,0.000015788500000,0.000034229333333 +0.000018554000000,0.000031727333333,0.000030805333333,0.000015788500000,0.000034097666667 +0.000018949000000,0.000031595666667,0.000030937333333,0.000015788500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000030673666667,0.000015788500000,0.000034361333333 +0.000018751500000,0.000031859000000,0.000054772333333,0.000015986000000,0.000034887666667 +0.000018356500000,0.000031727333333,0.000030937333333,0.000016381000000,0.000034624666667 +0.000018356000000,0.000031332000000,0.000031069000000,0.000015788500000,0.000035019333333 +0.000018751500000,0.000031859000000,0.000031200333333,0.000015788500000,0.000034361000000 +0.000018949000000,0.000043579333333,0.000031200666667,0.000015986000000,0.000034229333333 +0.000019146500000,0.000031859000000,0.000031068666667,0.000015788500000,0.000034229333333 +0.000018949000000,0.000031595666667,0.000030805333333,0.000015986000000,0.000034493000000 +0.000018356000000,0.000031595666667,0.000030937333333,0.000015986000000,0.000034361000000 +0.000018751500000,0.000031463666667,0.000048978000000,0.000015788500000,0.000034492666667 +0.000018949000000,0.000031727000000,0.000031068666667,0.000015591000000,0.000034624333333 +0.000018554000000,0.000031858666667,0.000030805333333,0.000016381000000,0.000034492666667 +0.000018356500000,0.000031858666667,0.000030805333333,0.000015986000000,0.000034361000000 +0.000018356500000,0.000031463666667,0.000030937333333,0.000016381000000,0.000034361000000 +0.000018948500000,0.000053324000000,0.000030937000000,0.000015788500000,0.000034097666667 +0.000018356500000,0.000031727333333,0.000031200333333,0.000016183500000,0.000034097666667 +0.000018949000000,0.000031990333333,0.000029752000000,0.000015788500000,0.000034361000000 +0.000027245500000,0.000031595333333,0.000030937333333,0.000015788500000,0.000034229333333 +0.000027245500000,0.000031727333333,0.000056747666667,0.000015788500000,0.000034361000000 +0.000018948500000,0.000031859000000,0.000100468000000,0.000015788000000,0.000034097666667 +0.000018949000000,0.000031727333333,0.000094147000000,0.000015788500000,0.000076896000000 +0.000018356000000,0.000031595333333,0.000066756000000,0.000015591000000,0.000104155333333 +0.000018356500000,0.000043842666667,0.000041735333333,0.000015788500000,0.000102179666667 +0.000018356000000,0.000031859000000,0.000029883666667,0.000015788500000,0.000034624666667 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015788500000,0.000034624333333 +0.000018356500000,0.000031727333333,0.000030673666667,0.000033961000000,0.000034097666667 +0.000018949000000,0.000031859000000,0.000030674000000,0.000015788500000,0.000034361000000 +0.000018949000000,0.000031595666667,0.000031068666667,0.000015788500000,0.000034229333333 +0.000018356000000,0.000031595666667,0.000030805333333,0.000015788500000,0.000034492666667 +0.000018356500000,0.000031464000000,0.000031069000000,0.000015788500000,0.000034229333333 +0.000018948500000,0.000031595333333,0.000030805666667,0.000015788500000,0.000034492666667 +0.000018356500000,0.000059908333333,0.000042130333333,0.000015986000000,0.000034361000000 +0.000018356000000,0.000031727000000,0.000031200666667,0.000016183500000,0.000046739666667 +0.000018751500000,0.000031727000000,0.000031200333333,0.000015986000000,0.000034229333333 +0.000018356000000,0.000032122333333,0.000030937333333,0.000015788000000,0.000034229333333 +0.000018356500000,0.000031990333333,0.000030674000000,0.000015788500000,0.000034097333333 +0.000018158500000,0.000031858666667,0.000030937000000,0.000034356500000,0.000034361000000 +0.000018356500000,0.000031858666667,0.000030673666667,0.000015788500000,0.000033966000000 +0.000025665000000,0.000031859000000,0.000030410333333,0.000015788500000,0.000034097666667 +0.000017961000000,0.000043579000000,0.000032517333333,0.000015788500000,0.000034229333333 +0.000018356500000,0.000031859000000,0.000032517333333,0.000015788500000,0.000047003000000 +0.000018751500000,0.000031595666667,0.000031200666667,0.000015591000000,0.000034492666667 +0.000018356500000,0.000031595666667,0.000032385666667,0.000015788500000,0.000034361000000 +0.000018356500000,0.000031990666667,0.000033044333333,0.000015986000000,0.000034361000000 +0.000018751500000,0.000031990666667,0.000033044000000,0.000015986000000,0.000034097666667 +0.000018356500000,0.000031990666667,0.000032912333333,0.000016381000000,0.000034229333333 +0.000018356000000,0.000031990666667,0.000032649333333,0.000016579000000,0.000034492666667 +0.000018159000000,0.000031990666667,0.000032780666667,0.000015591000000,0.000034229333333 +0.000018553500000,0.000043052333333,0.000032780666667,0.000015788500000,0.000046739333333 +0.000018356500000,0.000031727333333,0.000033176000000,0.000015986000000,0.000034624333333 +0.000018356000000,0.000031595666667,0.000032780666667,0.000015788500000,0.000034492666667 +0.000018356500000,0.000031595666667,0.000032649000000,0.000016381000000,0.000034097666667 +0.000018356500000,0.000031727333333,0.000032517666667,0.000016381000000,0.000034361000000 +0.000018751500000,0.000031595666667,0.000032517666667,0.000015591000000,0.000034097666667 +0.000018356000000,0.000031859000000,0.000032649000000,0.000015788000000,0.000034097666667 +0.000018949000000,0.000031727333333,0.000032385666667,0.000015788500000,0.000034229333333 +0.000018356000000,0.000031464000000,0.000032780666667,0.000015788500000,0.000041340333333 +0.000018751500000,0.000054377333333,0.000032385666667,0.000034949000000,0.000034624333333 +0.000018356000000,0.000031859000000,0.000033176000000,0.000015985500000,0.000034624333333 +0.000018948500000,0.000031332333333,0.000032912333333,0.000015590500000,0.000034624333333 +0.000018554000000,0.000031727333333,0.000032385666667,0.000015986000000,0.000034361333333 +0.000018553500000,0.000031859000000,0.000032649333333,0.000016183500000,0.000034229333333 +0.000018554000000,0.000031859000000,0.000032780666667,0.000015788500000,0.000034097666667 +0.000018949000000,0.000031990666667,0.000032254000000,0.000015788500000,0.000033966000000 +0.000018949000000,0.000031727333333,0.000032649000000,0.000016183500000,0.000050295000000 +0.000019344000000,0.000031727333333,0.000032385666667,0.000015788000000,0.000046476333333 +0.000018356500000,0.000036336333333,0.000031069000000,0.000016183500000,0.000034756000000 +0.000018356500000,0.000031727333333,0.000032780666667,0.000015788500000,0.000034887666667 +0.000018751500000,0.000031727333333,0.000032649000000,0.000041862500000,0.000059644666667 +0.000028233000000,0.000031727333333,0.000032517666667,0.000041665000000,0.000046213000000 +0.000018554000000,0.000031595666667,0.000032386000000,0.000050949000000,0.000034624333333 +0.000019541500000,0.000031727333333,0.000032385666667,0.000034949000000,0.000047003000000 +0.000018949000000,0.000031595666667,0.000032780666667,0.000015788500000,0.000034361000000 +0.000018949000000,0.000031859000000,0.000032517333333,0.000015788500000,0.000034756000000 +0.000018356500000,0.000052797333333,0.000032649000000,0.000016776000000,0.000034361000000 +0.000018356500000,0.000032254000000,0.000032649000000,0.000015788000000,0.000034624333333 +0.000018949000000,0.000031990666667,0.000032912333333,0.000016578500000,0.000034492666667 +0.000018356500000,0.000031859000000,0.000032649000000,0.000015788500000,0.000034229333333 +0.000019344000000,0.000031727333333,0.000032385666667,0.000015986000000,0.000034097666667 +0.000018553500000,0.000031464000000,0.000032649000000,0.000015986000000,0.000062015333333 +0.000018356500000,0.000031727333333,0.000032912666667,0.000015788500000,0.000034887666667 +0.000018356500000,0.000032122333333,0.000032912333333,0.000015986000000,0.000034888000000 +0.000018751500000,0.000031727333333,0.000032649000000,0.000015788500000,0.000034361000000 +0.000018554000000,0.000044106000000,0.000032649333333,0.000015986000000,0.000034624333333 +0.000018949000000,0.000031595666667,0.000032912333333,0.000015788500000,0.000034361000000 +0.000018949000000,0.000031859000000,0.000033044000000,0.000015788500000,0.000034492666667 +0.000018356000000,0.000031859000000,0.000032649333333,0.000016578500000,0.000034361000000 +0.000018356500000,0.000031727333333,0.000032649000000,0.000016381000000,0.000047134666667 +0.000018356500000,0.000031727333333,0.000032649000000,0.000015788500000,0.000034624333333 +0.000018751500000,0.000031595666667,0.000032517333333,0.000015788500000,0.000034361000000 +0.000018751000000,0.000031727333333,0.000032649000000,0.000015788500000,0.000034097666667 +0.000018356500000,0.000031727333333,0.000032386000000,0.000016183500000,0.000033966000000 +0.000018751500000,0.000059908333333,0.000032254000000,0.000015788500000,0.000034229333333 +0.000018751500000,0.000031727333333,0.000032517333333,0.000015986000000,0.000034492666667 +0.000018356500000,0.000031727333333,0.000032780666667,0.000015986000000,0.000033966000000 +0.000018949000000,0.000031859000000,0.000031595666667,0.000016381000000,0.000046871000000 +0.000018751500000,0.000031463666667,0.000032780666667,0.000015986000000,0.000034361000000 +0.000018949000000,0.000031727000000,0.000033044333333,0.000015788500000,0.000034361000000 +0.000018751500000,0.000031727333333,0.000032780666667,0.000015788500000,0.000034097666667 +0.000050158500000,0.000031332333333,0.000032780666667,0.000015788500000,0.000034229333333 +0.000061418000000,0.000043842666667,0.000032649333333,0.000015788500000,0.000034361000000 +0.000053714500000,0.000031859000000,0.000032386000000,0.000015788500000,0.000034229333333 +0.000027047500000,0.000031859000000,0.000032517333333,0.000015986000000,0.000034361000000 +0.000027245500000,0.000031990666667,0.000032912333333,0.000015788500000,0.000041340333333 +0.000026455000000,0.000031859000000,0.000032780666667,0.000016381000000,0.000034492666667 +0.000018949000000,0.000031859000000,0.000032517333333,0.000015788500000,0.000034229333333 +0.000018948500000,0.000031859000000,0.000032517333333,0.000015788500000,0.000034492666667 +0.000018949000000,0.000031727333333,0.000032780666667,0.000016183500000,0.000034492666667 +0.000018949000000,0.000031595666667,0.000032649333333,0.000015788500000,0.000034361000000 +0.000018356500000,0.000073998666667,0.000032649000000,0.000015986000000,0.000034361000000 +0.000018949000000,0.000100599666667,0.000032780666667,0.000015986000000,0.000034229333333 +0.000018949000000,0.000094937000000,0.000032517333333,0.000015788500000,0.000034097333333 +0.000018949000000,0.000045422666667,0.000032912666667,0.000015788000000,0.000046476333333 +0.000018949000000,0.000036731333333,0.000032649333333,0.000016381000000,0.000034756000000 +0.000018751500000,0.000032122333333,0.000032385666667,0.000015986000000,0.000034493000000 +0.000018554000000,0.000032122333333,0.000032517333333,0.000016183500000,0.000034492666667 +0.000018949000000,0.000032122333333,0.000032517333333,0.000017171000000,0.000034361000000 +0.000018949000000,0.000031859000000,0.000032649000000,0.000015788500000,0.000033966000000 +0.000018751000000,0.000031859000000,0.000032649333333,0.000015788500000,0.000034097666667 +0.000018949000000,0.000031859000000,0.000032781000000,0.000015788500000,0.000034361000000 +0.000018158500000,0.000031990666667,0.000032649000000,0.000016578500000,0.000046739666667 +0.000018554000000,0.000043842333333,0.000033175666667,0.000015788500000,0.000034361000000 +0.000018948500000,0.000032122333333,0.000032912666667,0.000015788000000,0.000034361000000 +0.000018751500000,0.000031727333333,0.000032780666667,0.000015788500000,0.000034229333333 +0.000018751500000,0.000031859000000,0.000032649000000,0.000015788500000,0.000034229333333 +0.000018751500000,0.000031859000000,0.000031069000000,0.000016381000000,0.000034229333333 +0.000018554000000,0.000031990666667,0.000032649000000,0.000015986000000,0.000034361000000 +0.000018949000000,0.000031727333333,0.000032912666667,0.000015788500000,0.000034229000000 +0.000018949000000,0.000031990666667,0.000032385666667,0.000015788500000,0.000064385666667 +0.000018949000000,0.000031727333333,0.000035019333333,0.000015986000000,0.000090064666667 +0.000018949000000,0.000055562666667,0.000057538000000,0.000015788500000,0.000101916666667 +0.000018159000000,0.000031990666667,0.000031463666667,0.000016183500000,0.000078739666667 +0.000018751500000,0.000031990666667,0.000029752000000,0.000015788500000,0.000039233333333 +0.000018949000000,0.000032122333333,0.000030805666667,0.000015788500000,0.000034097666667 +0.000018751500000,0.000031727333333,0.000031068666667,0.000015788500000,0.000034229333333 +0.000018948500000,0.000031727333333,0.000031068666667,0.000015788500000,0.000034361000000 +0.000018949000000,0.000031464000000,0.000031069000000,0.000016381000000,0.000034624333333 +0.000018356000000,0.000031595666667,0.000030937000000,0.000016183500000,0.000034361000000 +0.000018751500000,0.000038575000000,0.000030937000000,0.000015788500000,0.000034229333333 +0.000018751500000,0.000036599666667,0.000053850666667,0.000015788500000,0.000034624333333 +0.000018949000000,0.000038443333333,0.000030937333333,0.000015986000000,0.000034492666667 +0.000018949000000,0.000037126333333,0.000030937000000,0.000016183500000,0.000034361000000 +0.000018751500000,0.000031727333333,0.000030937000000,0.000015788000000,0.000034492666667 +0.000018554000000,0.000031727333333,0.000030673666667,0.000015986000000,0.000034361000000 +0.000018158500000,0.000031727333333,0.000030674000000,0.000015788500000,0.000034361000000 +0.000018751500000,0.000031727333333,0.000030805333333,0.000015788500000,0.000034492666667 +0.000018949000000,0.000038311666667,0.000030673666667,0.000015986000000,0.000034361333333 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015393500000,0.000034229333333 +0.000018554000000,0.000031859000000,0.000042130666667,0.000016183500000,0.000034229333333 +0.000019936500000,0.000031727333333,0.000030937000000,0.000015788000000,0.000033966000000 +0.000025467500000,0.000031332333333,0.000029488666667,0.000015986000000,0.000034229333333 +0.000018554000000,0.000031727333333,0.000030673666667,0.000015788500000,0.000034229333333 +0.000018949000000,0.000031727000000,0.000031068666667,0.000015788500000,0.000034229333333 +0.000018356500000,0.000031463666667,0.000031069000000,0.000016183500000,0.000034229333333 +0.000018356500000,0.000031859000000,0.000030805333333,0.000015788500000,0.000034229333333 +0.000018949000000,0.000043842666667,0.000030673666667,0.000015788500000,0.000034361000000 +0.000018949000000,0.000031595666667,0.000030805666667,0.000015986000000,0.000034229333333 +0.000018949000000,0.000031859000000,0.000042130666667,0.000015986000000,0.000034361000000 +0.000018554000000,0.000031464000000,0.000030937000000,0.000016183500000,0.000034097666667 +0.000018356500000,0.000031464000000,0.000031069000000,0.000016183500000,0.000033834333333 +0.000019541500000,0.000031859000000,0.000030805666667,0.000015986000000,0.000034229333333 +0.000018751000000,0.000031727333333,0.000030937000000,0.000015788500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000041077000000,0.000015986000000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000031069000000,0.000015788500000,0.000034097666667 +0.000018949000000,0.000043842333333,0.000030674000000,0.000015590500000,0.000034229333333 +0.000018751500000,0.000031859000000,0.000030937000000,0.000015986000000,0.000052007000000 +0.000018949000000,0.000031727333333,0.000042130333333,0.000015788500000,0.000042525666667 +0.000018949000000,0.000031727333333,0.000030937333333,0.000015986000000,0.000052138666667 +0.000018949000000,0.000031595666667,0.000030805333333,0.000015788500000,0.000039233333333 +0.000018356500000,0.000031859000000,0.000030542000000,0.000015591000000,0.000034361000000 +0.000018356000000,0.000031595666667,0.000030673666667,0.000016183500000,0.000034361000000 +0.000018751500000,0.000032122333333,0.000030805666667,0.000015788500000,0.000034361000000 +0.000018553500000,0.000031990666667,0.000030542000000,0.000015986000000,0.000034888000000 +0.000018554000000,0.000043711000000,0.000030937000000,0.000015788500000,0.000034492666667 +0.000018751000000,0.000031463666667,0.000030673666667,0.000015986000000,0.000034493000000 +0.000018356500000,0.000031858666667,0.000040813666667,0.000015788500000,0.000034492666667 +0.000019344000000,0.000031595333333,0.000030674000000,0.000015986000000,0.000034624333333 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015788500000,0.000034492666667 +0.000018356000000,0.000031595666667,0.000030673666667,0.000015788500000,0.000034756000000 +0.000018751500000,0.000031464000000,0.000030410333333,0.000016184000000,0.000034492666667 +0.000018751000000,0.000031595666667,0.000030673666667,0.000015788500000,0.000034756000000 +0.000018751500000,0.000031859000000,0.000030805666667,0.000026455000000,0.000034492666667 +0.000018949000000,0.000047398000000,0.000030410666667,0.000015788500000,0.000034097666667 +0.000018356500000,0.000031990666667,0.000030673666667,0.000015788500000,0.000034624333333 +0.000018751000000,0.000031727000000,0.000036994666667,0.000015788000000,0.000034624333333 +0.000018949000000,0.000031990666667,0.000035546333333,0.000015788500000,0.000034361000000 +0.000018553500000,0.000031859000000,0.000030937000000,0.000015591000000,0.000034097333333 +0.000026850500000,0.000032122333333,0.000030937000000,0.000015788500000,0.000034097666667 +0.000018356000000,0.000031858666667,0.000030937333333,0.000015591000000,0.000033966000000 +0.000018949000000,0.000031727000000,0.000031069000000,0.000015986000000,0.000034756000000 +0.000018948500000,0.000031727000000,0.000030805333333,0.000015788500000,0.000034361000000 +0.000018356500000,0.000048583333333,0.000030674000000,0.000015591000000,0.000034097666667 +0.000018356000000,0.000031727333333,0.000030674000000,0.000015788500000,0.000034097666667 +0.000018949000000,0.000031595666667,0.000030937000000,0.000015788000000,0.000034361000000 +0.000019541500000,0.000031727333333,0.000092171666667,0.000015788000000,0.000034229333333 +0.000018751500000,0.000031859000000,0.000099546000000,0.000015986000000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000052139000000,0.000015788500000,0.000034097666667 +0.000019146500000,0.000031859000000,0.000030937000000,0.000015788500000,0.000037258000000 +0.000018751500000,0.000031595666667,0.000030937000000,0.000015788500000,0.000035019333333 +0.000018949000000,0.000040945333333,0.000042394000000,0.000015986000000,0.000034492666667 +0.000018159000000,0.000032254333333,0.000031068666667,0.000016381000000,0.000034492666667 +0.000018949000000,0.000031859000000,0.000031069000000,0.000014998500000,0.000034229333333 +0.000018158500000,0.000032122333333,0.000030937000000,0.000021912000000,0.000034229333333 +0.000018949000000,0.000031595666667,0.000030937000000,0.000014603000000,0.000034361000000 +0.000018553500000,0.000031859000000,0.000029620333333,0.000015196000000,0.000034097666667 +0.000018949000000,0.000031990666667,0.000030937333333,0.000014800500000,0.000033966000000 +0.000018949000000,0.000031990666667,0.000030937333333,0.000014998500000,0.000034493000000 +0.000018949000000,0.000031595666667,0.000030937000000,0.000014998500000,0.000034229333333 +0.000025665000000,0.000043052333333,0.000059776666667,0.000014998000000,0.000034229333333 +0.000019344000000,0.000031727333333,0.000030805333333,0.000014801000000,0.000034492666667 +0.000018949000000,0.000031464000000,0.000030805333333,0.000014998500000,0.000034097666667 +0.000018949000000,0.000031727333333,0.000030937333333,0.000014800500000,0.000034097666667 +0.000018949000000,0.000031727333333,0.000030937333333,0.000014998500000,0.000034097666667 +0.000018949000000,0.000031859000000,0.000030937000000,0.000025072500000,0.000034097666667 +0.000018949000000,0.000031727333333,0.000030937333333,0.000014998000000,0.000047003000000 +0.000018751500000,0.000031859000000,0.000030805666667,0.000014998500000,0.000034361000000 +0.000018356000000,0.000031859000000,0.000031068666667,0.000014998500000,0.000034097666667 +0.000018751500000,0.000043710666667,0.000042394000000,0.000014998000000,0.000034097666667 +0.000019146500000,0.000031727333333,0.000030937000000,0.000014998500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000030805333333,0.000014998500000,0.000034097666667 +0.000018949000000,0.000031727333333,0.000030410333333,0.000014998000000,0.000034097333333 +0.000018356000000,0.000031595666667,0.000030674000000,0.000014998500000,0.000034229333333 +0.000018159000000,0.000031464000000,0.000030805666667,0.000014998500000,0.000034229333333 +0.000019541500000,0.000031727333333,0.000030805333333,0.000014998000000,0.000046608000000 +0.000018554000000,0.000031859000000,0.000030542000000,0.000014998500000,0.000034492666667 +0.000018948500000,0.000031727333333,0.000030937000000,0.000021912000000,0.000033966000000 +0.000018949000000,0.000043974333333,0.000058460000000,0.000014998000000,0.000034229333333 +0.000018751500000,0.000031463666667,0.000030805666667,0.000015196000000,0.000034097666667 +0.000018949000000,0.000031595333333,0.000030937000000,0.000014801000000,0.000034229333333 +0.000018751500000,0.000031727333333,0.000030673666667,0.000015196000000,0.000034361000000 +0.000018948500000,0.000031464000000,0.000030805666667,0.000015196000000,0.000034361000000 +0.000018949000000,0.000031332333333,0.000030674000000,0.000014603000000,0.000034887666667 +0.000018949000000,0.000031727333333,0.000030673666667,0.000014998500000,0.000034492666667 +0.000018751500000,0.000031464000000,0.000030805333333,0.000014801000000,0.000034229333333 +0.000018949000000,0.000031595666667,0.000029488666667,0.000014998000000,0.000034097666667 +0.000018949000000,0.000043052333333,0.000042130666667,0.000014998500000,0.000034229333333 +0.000018949000000,0.000031595666667,0.000031069000000,0.000014603000000,0.000034229333333 +0.000018159000000,0.000031464000000,0.000030937000000,0.000015393500000,0.000033965666667 +0.000018751500000,0.000031595666667,0.000031069000000,0.000014800500000,0.000033966000000 +0.000018948500000,0.000031727333333,0.000030937000000,0.000014800500000,0.000034624333333 +0.000018949000000,0.000031990666667,0.000031068666667,0.000014801000000,0.000034492666667 +0.000018751500000,0.000031727333333,0.000029620333333,0.000014998000000,0.000034492666667 +0.000018159000000,0.000031595333333,0.000030805666667,0.000015196000000,0.000034361000000 +0.000018751500000,0.000031595333333,0.000030674000000,0.000014998500000,0.000034097333333 +0.000018751500000,0.000043842333333,0.000054245666667,0.000014998500000,0.000034361000000 +0.000018751500000,0.000031595666667,0.000035414333333,0.000014998500000,0.000034097666667 +0.000018553500000,0.000031859000000,0.000030674000000,0.000015195500000,0.000034492666667 +0.000018949000000,0.000031464000000,0.000030673666667,0.000014998500000,0.000034361000000 +0.000018751000000,0.000031727333333,0.000030673666667,0.000015196000000,0.000034756000000 +0.000019541500000,0.000031727333333,0.000030673666667,0.000014801000000,0.000034097666667 +0.000031986000000,0.000031595666667,0.000030805333333,0.000016381000000,0.000034492666667 +0.000020134500000,0.000031595666667,0.000030937333333,0.000014998000000,0.000034229333333 +0.000018356500000,0.000031859000000,0.000030673666667,0.000015196000000,0.000034361000000 +0.000018356500000,0.000037521333333,0.000041998666667,0.000014998000000,0.000034229333333 +0.000018949000000,0.000031727000000,0.000030937333333,0.000015196000000,0.000034361000000 +0.000019541500000,0.000031595333333,0.000030805666667,0.000015195500000,0.000034492666667 +0.000018949000000,0.000031859000000,0.000030673666667,0.000014998500000,0.000034887666667 +0.000018949000000,0.000037916333333,0.000030805333333,0.000014998000000,0.000040945333333 +0.000018554000000,0.000041472000000,0.000030805666667,0.000021912000000,0.000039892000000 +0.000018949000000,0.000031727333333,0.000029357000000,0.000014603000000,0.000034361000000 +0.000019739000000,0.000031727333333,0.000030278666667,0.000014998500000,0.000034492666667 +0.000044232500000,0.000043710666667,0.000030805666667,0.000015393000000,0.000033966000000 +0.000018948500000,0.000031858666667,0.000060830000000,0.000015591000000,0.000034229333333 +0.000018751500000,0.000031727000000,0.000031332000000,0.000014998000000,0.000034492666667 +0.000018949000000,0.000031595333333,0.000030937333333,0.000014998500000,0.000034624333333 +0.000018949000000,0.000032122333333,0.000030673666667,0.000014801000000,0.000034624333333 +0.000018751500000,0.000031990666667,0.000030937000000,0.000015196000000,0.000034492666667 +0.000018356000000,0.000031727333333,0.000031069000000,0.000014998500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000030805333333,0.000015591000000,0.000034229333333 +0.000018751000000,0.000031727000000,0.000030805333333,0.000031591000000,0.000034361000000 +0.000018356500000,0.000042920666667,0.000030937333333,0.000014998500000,0.000034361000000 +0.000018356000000,0.000031727333333,0.000042130333333,0.000014998500000,0.000034624333333 +0.000018949000000,0.000031595666667,0.000030673666667,0.000015196000000,0.000034361000000 +0.000018356500000,0.000031859000000,0.000030805666667,0.000014998500000,0.000034361000000 +0.000018949000000,0.000032122333333,0.000030410333333,0.000014998000000,0.000034492666667 +0.000018949000000,0.000031990666667,0.000030410333333,0.000014998500000,0.000038048333333 +0.000018751500000,0.000031859000000,0.000030805333333,0.000015195500000,0.000032254000000 +0.000018751500000,0.000031595666667,0.000030673666667,0.000014801000000,0.000032254000000 +0.000018751000000,0.000031727333333,0.000042130666667,0.000015196000000,0.000060303333333 +0.000018949000000,0.000081110000000,0.000036863000000,0.000015788500000,0.000032517333333 +0.000018553500000,0.000076896000000,0.000035414666667,0.000033566500000,0.000032649000000 +0.000018949000000,0.000031727333333,0.000030542000000,0.000015393500000,0.000052929000000 +0.000018356500000,0.000031464000000,0.000030805333333,0.000014998500000,0.000032517333333 +0.000018948500000,0.000031595666667,0.000030805333333,0.000014998500000,0.000032385666667 +0.000018356500000,0.000037785000000,0.000029488666667,0.000014998500000,0.000032385666667 +0.000019344000000,0.000041867333333,0.000030673666667,0.000014998000000,0.000032385666667 +0.000018751500000,0.000031990666667,0.000030673666667,0.000014998500000,0.000032781000000 +0.000018949000000,0.000031595666667,0.000030542333333,0.000014998500000,0.000032780666667 +0.000026653000000,0.000031727333333,0.000030542000000,0.000015591000000,0.000032517333333 +0.000018949000000,0.000031595333333,0.000061883333333,0.000014998500000,0.000044500666667 +0.000018949000000,0.000031595333333,0.000091513000000,0.000014998000000,0.000032385666667 +0.000018356500000,0.000032122333333,0.000090196666667,0.000034356500000,0.000032385666667 +0.000019541500000,0.000031858666667,0.000087694333333,0.000048183500000,0.000032254000000 +0.000018356500000,0.000054509000000,0.000032780666667,0.000040085000000,0.000032517666667 +0.000018949000000,0.000031595666667,0.000035546333333,0.000022702000000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000031068666667,0.000015196000000,0.000032517333333 +0.000018356500000,0.000031859000000,0.000030937333333,0.000015196000000,0.000032254000000 +0.000019344000000,0.000031727333333,0.000030805666667,0.000014801000000,0.000038706666667 +0.000018949000000,0.000031595666667,0.000030805333333,0.000014998000000,0.000101389666667 +0.000018356000000,0.000031727333333,0.000035151000000,0.000015196000000,0.000089011000000 +0.000018949000000,0.000031595666667,0.000032649000000,0.000014800500000,0.000036468000000 +0.000018949000000,0.000031727333333,0.000032781000000,0.000014801000000,0.000032517333333 +0.000018949000000,0.000048188000000,0.000033044000000,0.000014800500000,0.000043711000000 +0.000018949000000,0.000031727000000,0.000032780666667,0.000015591000000,0.000037390000000 +0.000018949000000,0.000031859000000,0.000032649333333,0.000014998500000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000032780666667,0.000014800500000,0.000032254000000 +0.000018356500000,0.000031332333333,0.000032912333333,0.000014998500000,0.000032254000000 +0.000018356000000,0.000031332333333,0.000032780666667,0.000014998500000,0.000032517666667 +0.000018554000000,0.000031727333333,0.000032781000000,0.000021714000000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000032780666667,0.000014998500000,0.000032385666667 +0.000018356500000,0.000054640666667,0.000039628666667,0.000014603500000,0.000032385666667 +0.000018553500000,0.000036863000000,0.000032649000000,0.000014998000000,0.000055562666667 +0.000030998500000,0.000031464000000,0.000032517666667,0.000014998500000,0.000032517333333 +0.000025862500000,0.000031595666667,0.000031464000000,0.000014998500000,0.000032780666667 +0.000018356000000,0.000031727333333,0.000032781000000,0.000014800500000,0.000032386000000 +0.000018949000000,0.000031463666667,0.000032912333333,0.000014800500000,0.000032385666667 +0.000018356000000,0.000031727000000,0.000032780666667,0.000015393500000,0.000032912333333 +0.000018356500000,0.000031727000000,0.000032781000000,0.000014800500000,0.000032649000000 +0.000018356500000,0.000031595666667,0.000032649000000,0.000014998500000,0.000032254000000 +0.000018751500000,0.000059908333333,0.000033044000000,0.000014800500000,0.000047134666667 +0.000018949000000,0.000031990333333,0.000032912666667,0.000014801000000,0.000032780666667 +0.000018554000000,0.000031595333333,0.000032912333333,0.000014800500000,0.000032649000000 +0.000034159000000,0.000031595333333,0.000032780666667,0.000014998500000,0.000032254000000 +0.000019541500000,0.000031727333333,0.000032912666667,0.000014801000000,0.000032912333333 +0.000018751500000,0.000031727333333,0.000032386000000,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000032912333333,0.000014801000000,0.000032649000000 +0.000018949000000,0.000031727333333,0.000032780666667,0.000014998500000,0.000032517333333 +0.000018356500000,0.000046871333333,0.000033044333333,0.000014800500000,0.000032386000000 +0.000018356500000,0.000032122333333,0.000033175666667,0.000014998500000,0.000060435000000 +0.000018356500000,0.000031990666667,0.000032385666667,0.000015393000000,0.000032122333333 +0.000018356000000,0.000031727000000,0.000032780666667,0.000030603000000,0.000032122333333 +0.000018356500000,0.000031858666667,0.000032649333333,0.000014998500000,0.000032517666667 +0.000036529000000,0.000031858666667,0.000032517333333,0.000014998000000,0.000032254000000 +0.000018949000000,0.000031595333333,0.000032912333333,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031727000000,0.000032780666667,0.000014998500000,0.000032517333333 +0.000018356500000,0.000057011000000,0.000032781000000,0.000014998000000,0.000032517333333 +0.000018751500000,0.000047529666667,0.000032649000000,0.000014998500000,0.000044237666667 +0.000018949000000,0.000031727333333,0.000045422666667,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000032912666667,0.000014800500000,0.000032254000000 +0.000018948500000,0.000031727333333,0.000032912333333,0.000014998500000,0.000032122333333 +0.000018949000000,0.000031727333333,0.000032649000000,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031595666667,0.000032649000000,0.000014998500000,0.000032517333333 +0.000029023000000,0.000031990666667,0.000033044333333,0.000014998000000,0.000032517333333 +0.000018553500000,0.000031990666667,0.000043315666667,0.000014998500000,0.000032517666667 +0.000018949000000,0.000044106000000,0.000032912666667,0.000014801000000,0.000032649000000 +0.000018356000000,0.000031595666667,0.000033307333333,0.000014998000000,0.000054904333333 +0.000018949000000,0.000031990666667,0.000032780666667,0.000014800500000,0.000032385666667 +0.000018356000000,0.000031464000000,0.000032780666667,0.000015393500000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000032912333333,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000032517333333,0.000015196000000,0.000032649000000 +0.000018949000000,0.000031990666667,0.000031464000000,0.000014801000000,0.000032517666667 +0.000018554000000,0.000031727333333,0.000032649333333,0.000014998000000,0.000032385666667 +0.000018356000000,0.000031859000000,0.000032780666667,0.000038306500000,0.000032254000000 +0.000020134000000,0.000050558666667,0.000032780666667,0.000015196000000,0.000044369333333 +0.000018356500000,0.000031990666667,0.000032780666667,0.000014998000000,0.000032385666667 +0.000018751500000,0.000031464000000,0.000044896000000,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000032649333333,0.000014998500000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000032780666667,0.000014800500000,0.000032254000000 +0.000018751500000,0.000032254000000,0.000032912333333,0.000015196000000,0.000032254000000 +0.000018751500000,0.000031990666667,0.000032912666667,0.000014800500000,0.000032122333333 +0.000018949000000,0.000031990666667,0.000032912333333,0.000014801000000,0.000032517333333 +0.000018356500000,0.000054641000000,0.000032385666667,0.000014801000000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000032649000000,0.000024282000000,0.000054772666667 +0.000018553500000,0.000031595666667,0.000044896000000,0.000014603000000,0.000032254000000 +0.000018751500000,0.000031595666667,0.000032912666667,0.000014603500000,0.000032781000000 +0.000018553500000,0.000031595333333,0.000032517333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031727000000,0.000032780666667,0.000014998000000,0.000032780666667 +0.000018949000000,0.000031858666667,0.000032780666667,0.000014801000000,0.000032517666667 +0.000018751500000,0.000042920666667,0.000031200666667,0.000015393000000,0.000032649000000 +0.000018158500000,0.000056747666667,0.000032649000000,0.000015591000000,0.000032254000000 +0.000019541500000,0.000066229333333,0.000032912666667,0.000014603000000,0.000043974333333 +0.000018356500000,0.000043710666667,0.000032912333333,0.000015196000000,0.000037126666667 +0.000018949000000,0.000036731333333,0.000033044333333,0.000014800500000,0.000032649000000 +0.000018356500000,0.000031859000000,0.000032649000000,0.000014998000000,0.000032517333333 +0.000018356500000,0.000031595666667,0.000032912333333,0.000015788500000,0.000032517333333 +0.000018356500000,0.000031595666667,0.000032780666667,0.000014800500000,0.000032254000000 +0.000018356500000,0.000043842333333,0.000032649333333,0.000014801000000,0.000032122333333 +0.000018356500000,0.000031464000000,0.000032649000000,0.000014801000000,0.000032517666667 +0.000018356500000,0.000031595666667,0.000032517333333,0.000014998000000,0.000032517333333 +0.000018949000000,0.000031727333333,0.000032649000000,0.000015196000000,0.000085719000000 +0.000018356500000,0.000031859000000,0.000032649333333,0.000014998000000,0.000046476000000 +0.000018949000000,0.000031464000000,0.000032912666667,0.000014998500000,0.000038180000000 +0.000018356000000,0.000031859000000,0.000032385666667,0.000015196000000,0.000032517333333 +0.000027443000000,0.000031727333333,0.000032649000000,0.000015196000000,0.000032517333333 +0.000018356500000,0.000031859000000,0.000032385666667,0.000024677500000,0.000038970000000 +0.000018158500000,0.000031859000000,0.000032649000000,0.000014998500000,0.000061225333333 +0.000018949000000,0.000031727333333,0.000032386000000,0.000014800500000,0.000032385666667 +0.000018751500000,0.000031595333333,0.000032385666667,0.000014998500000,0.000031990666667 +0.000018356500000,0.000031990666667,0.000030805333333,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031990666667,0.000030673666667,0.000014998000000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000055826000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000036468000000,0.000015591000000,0.000032122333333 +0.000018159000000,0.000031727000000,0.000030937333333,0.000014603000000,0.000032517333333 +0.000028430000000,0.000044632333333,0.000030015333333,0.000014801000000,0.000032386000000 +0.000019541500000,0.000036863000000,0.000031200333333,0.000014801000000,0.000038575000000 +0.000018356000000,0.000031859000000,0.000031332333333,0.000014998000000,0.000032517333333 +0.000018949000000,0.000031727333333,0.000031200666667,0.000033369000000,0.000032385666667 +0.000018553500000,0.000031859000000,0.000030805333333,0.000039492000000,0.000032386000000 +0.000018949000000,0.000031595333333,0.000037390000000,0.000050356500000,0.000032517333333 +0.000018356000000,0.000031858666667,0.000031200333333,0.000025270000000,0.000032517333333 +0.000018356500000,0.000031858666667,0.000030673666667,0.000033566500000,0.000032649333333 +0.000018751500000,0.000031727000000,0.000030805666667,0.000021911500000,0.000032649000000 +0.000018751500000,0.000043579000000,0.000030542000000,0.000015196000000,0.000045686000000 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014998000000,0.000037653333333 +0.000029615500000,0.000031727333333,0.000030805333333,0.000014998500000,0.000032254000000 +0.000052529000000,0.000031859000000,0.000030542000000,0.000024282000000,0.000032649000000 +0.000037122000000,0.000031464000000,0.000030805666667,0.000021714000000,0.000032385666667 +0.000019936500000,0.000031332333333,0.000030805333333,0.000014801000000,0.000032517333333 +0.000018356500000,0.000031332000000,0.000041735333333,0.000014998000000,0.000032254000000 +0.000018751000000,0.000031727333333,0.000030805666667,0.000015591000000,0.000032254000000 +0.000018554000000,0.000031727333333,0.000030542000000,0.000014998000000,0.000032254000000 +0.000018948500000,0.000044106000000,0.000030937000000,0.000014801000000,0.000038180000000 +0.000018949000000,0.000031727333333,0.000030410333333,0.000014998500000,0.000033044000000 +0.000018553500000,0.000031727333333,0.000030542000000,0.000014998000000,0.000032649333333 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014801000000,0.000032517333333 +0.000018554000000,0.000032122333333,0.000030674000000,0.000014998500000,0.000032781000000 +0.000018751500000,0.000031859000000,0.000030674000000,0.000014800500000,0.000032385666667 +0.000018356000000,0.000031727333333,0.000066756000000,0.000014998500000,0.000032780666667 +0.000018356500000,0.000031727333333,0.000094015000000,0.000015788500000,0.000032517666667 +0.000018948500000,0.000038311666667,0.000046212666667,0.000014998500000,0.000044632666667 +0.000019936500000,0.000041999000000,0.000030673666667,0.000015196000000,0.000032385666667 +0.000018356000000,0.000031727333333,0.000030805666667,0.000014998000000,0.000032649000000 +0.000018949000000,0.000031859000000,0.000029488666667,0.000015196000000,0.000032517333333 +0.000018751500000,0.000031595666667,0.000042130666667,0.000015393500000,0.000032649000000 +0.000018751500000,0.000031464000000,0.000030937000000,0.000014998000000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000030673666667,0.000014801000000,0.000032254000000 +0.000018356000000,0.000031727000000,0.000030674000000,0.000015196000000,0.000032385666667 +0.000018949000000,0.000031595333333,0.000030674000000,0.000015591000000,0.000032649000000 +0.000018356000000,0.000043842333333,0.000030805333333,0.000014998500000,0.000073603666667 +0.000018356500000,0.000031727333333,0.000030673666667,0.000021121500000,0.000038048333333 +0.000028430000000,0.000031727333333,0.000030542000000,0.000015196000000,0.000032912666667 +0.000018554000000,0.000031595666667,0.000030410333333,0.000014800500000,0.000032649000000 +0.000018356500000,0.000031859000000,0.000053587333333,0.000014800500000,0.000032517333333 +0.000018751500000,0.000031859000000,0.000030674000000,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031464000000,0.000030805666667,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031595666667,0.000030805333333,0.000014998000000,0.000032781000000 +0.000018356000000,0.000031595333333,0.000031068666667,0.000014801000000,0.000032649000000 +0.000018356500000,0.000043052333333,0.000030937333333,0.000014998500000,0.000032517333333 +0.000018751000000,0.000031727333333,0.000030673666667,0.000014800500000,0.000032385666667 +0.000018159000000,0.000031727333333,0.000030673666667,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031332000000,0.000030673666667,0.000022109500000,0.000032385666667 +0.000018554000000,0.000031463666667,0.000042262333333,0.000015195500000,0.000032385666667 +0.000018949000000,0.000031464000000,0.000030673666667,0.000014998500000,0.000032649000000 +0.000018949000000,0.000031464000000,0.000030673666667,0.000015196000000,0.000032254000000 +0.000018356000000,0.000031859000000,0.000030674000000,0.000015393500000,0.000046871333333 +0.000018949000000,0.000031859000000,0.000030805666667,0.000015591000000,0.000037390000000 +0.000018356000000,0.000055957666667,0.000030673666667,0.000014603000000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000030805333333,0.000014998500000,0.000032386000000 +0.000018356000000,0.000031727333333,0.000030937000000,0.000014801000000,0.000032517333333 +0.000018356500000,0.000031727333333,0.000030542333333,0.000015393500000,0.000032385666667 +0.000018356000000,0.000031859000000,0.000043711000000,0.000014801000000,0.000032386000000 +0.000018949000000,0.000031595666667,0.000035151333333,0.000024677500000,0.000032517333333 +0.000018356000000,0.000031727333333,0.000029225000000,0.000021911500000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000030674000000,0.000015591000000,0.000055430666667 +0.000018356000000,0.000057538000000,0.000030805333333,0.000015195500000,0.000032385666667 +0.000018751500000,0.000031859000000,0.000030410333333,0.000015196000000,0.000032254000000 +0.000018356000000,0.000031859000000,0.000030805333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031858666667,0.000030673666667,0.000014800500000,0.000032517666667 +0.000018751500000,0.000031727000000,0.000030674000000,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031595333333,0.000047925000000,0.000015393000000,0.000032649000000 +0.000018356500000,0.000031858666667,0.000030542000000,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031727000000,0.000030673666667,0.000015788500000,0.000044369333333 +0.000029023000000,0.000031990333333,0.000030673666667,0.000022109500000,0.000032122333333 +0.000018356000000,0.000043710666667,0.000030805333333,0.000014800500000,0.000032385666667 +0.000018751500000,0.000031332333333,0.000030674000000,0.000014998500000,0.000032517333333 +0.000018554000000,0.000031464000000,0.000030805333333,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000030673666667,0.000014800500000,0.000032517333333 +0.000018553500000,0.000031595666667,0.000030673666667,0.000015393500000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000053982333333,0.000014801000000,0.000032517666667 +0.000018356500000,0.000031859000000,0.000035809666667,0.000014800500000,0.000032780666667 +0.000018949000000,0.000031727333333,0.000030542000000,0.000014998000000,0.000044501000000 +0.000018949000000,0.000031859000000,0.000030805333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000049110000000,0.000030805333333,0.000014801000000,0.000032385666667 +0.000018159000000,0.000031859000000,0.000030805666667,0.000024479500000,0.000032254000000 +0.000019541500000,0.000031859000000,0.000030673666667,0.000021122000000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000031068666667,0.000014998000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030937333333,0.000015196000000,0.000032385666667 +0.000018553500000,0.000031464000000,0.000053587333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000030673666667,0.000015195500000,0.000038970000000 +0.000018356500000,0.000031990666667,0.000030937000000,0.000014998500000,0.000046212666667 +0.000018949000000,0.000044106000000,0.000031069000000,0.000014998500000,0.000032254000000 +0.000018949000000,0.000038575000000,0.000030805333333,0.000014998000000,0.000032254333333 +0.000018949000000,0.000042262333333,0.000030805333333,0.000014998500000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000030542000000,0.000014800500000,0.000032385666667 +0.000018554000000,0.000031727333333,0.000030542000000,0.000039689500000,0.000032254000000 +0.000018356000000,0.000031595666667,0.000030542333333,0.000015393000000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000054377666667,0.000015788500000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000030673666667,0.000015591000000,0.000055036000000 +0.000018356500000,0.000043974333333,0.000031068666667,0.000014998500000,0.000032517333333 +0.000018554000000,0.000031859000000,0.000030674000000,0.000014998000000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000030542333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000030673666667,0.000015195500000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030805333333,0.000015196000000,0.000032517333333 +0.000018751500000,0.000031990666667,0.000030542000000,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000030805666667,0.000014998000000,0.000032517333333 +0.000018949000000,0.000031727333333,0.000041999000000,0.000014998500000,0.000047924666667 +0.000018949000000,0.000031859000000,0.000030542000000,0.000014998000000,0.000039233666667 +0.000017961500000,0.000050163333333,0.000030673666667,0.000014998500000,0.000046871333333 +0.000018949000000,0.000031595333333,0.000030542000000,0.000014998500000,0.000036863333333 +0.000018356500000,0.000031463666667,0.000030410666667,0.000014998000000,0.000032912333333 +0.000018356500000,0.000031595666667,0.000030674000000,0.000014801000000,0.000032517666667 +0.000018356500000,0.000031595666667,0.000030937000000,0.000014801000000,0.000032517333333 +0.000018554000000,0.000031727333333,0.000029225000000,0.000014998000000,0.000032517333333 +0.000018356500000,0.000031859000000,0.000030542000000,0.000014998500000,0.000060040000000 +0.000019344000000,0.000031859000000,0.000053982333333,0.000015393500000,0.000032517333333 +0.000018751500000,0.000031464000000,0.000035151000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000043710666667,0.000030278666667,0.000021912000000,0.000032517333333 +0.000018356500000,0.000031595333333,0.000042394000000,0.000014998000000,0.000032517333333 +0.000018356000000,0.000031463666667,0.000035546333333,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031595666667,0.000030673666667,0.000014998500000,0.000032386000000 +0.000018356500000,0.000031727333333,0.000030673666667,0.000014603000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030805333333,0.000014998500000,0.000043974333333 +0.000018553500000,0.000031595666667,0.000037390000000,0.000015393500000,0.000032254000000 +0.000018554000000,0.000031727333333,0.000030673666667,0.000014800500000,0.000032385666667 +0.000018751000000,0.000031727333333,0.000030673666667,0.000014998500000,0.000032517333333 +0.000018356500000,0.000043579000000,0.000030805333333,0.000014603000000,0.000032517333333 +0.000018356000000,0.000031464000000,0.000031069000000,0.000015591000000,0.000032385666667 +0.000018159000000,0.000031464000000,0.000030805333333,0.000045220500000,0.000032254000000 +0.000018948500000,0.000031595666667,0.000030805333333,0.000014801000000,0.000032122333333 +0.000018751500000,0.000031859000000,0.000030805666667,0.000014998000000,0.000031990666667 +0.000018356500000,0.000031464000000,0.000030674000000,0.000014998500000,0.000044237333333 +0.000018949000000,0.000031595666667,0.000030673666667,0.000014998000000,0.000032254000000 +0.000018356000000,0.000031464000000,0.000061620333333,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000030937333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000098229333333,0.000030673666667,0.000014998000000,0.000032254000000 +0.000018356000000,0.000100073000000,0.000030542000000,0.000014998500000,0.000032254000000 +0.000018554000000,0.000060435000000,0.000030805666667,0.000015195500000,0.000032385666667 +0.000018948500000,0.000032122333333,0.000030674000000,0.000014801000000,0.000031990666667 +0.000018356500000,0.000053192333333,0.000030805333333,0.000021714500000,0.000031990666667 +0.000018356000000,0.000032122333333,0.000030673666667,0.000014801000000,0.000093752000000 +0.000018159000000,0.000031990666667,0.000037653333333,0.000014998500000,0.000082822000000 +0.000018948500000,0.000036731333333,0.000029620000000,0.000014800500000,0.000037389666667 +0.000018554000000,0.000033965666667,0.000030937000000,0.000015393500000,0.000032254000000 +0.000018356000000,0.000033702333333,0.000030805333333,0.000015393000000,0.000032254000000 +0.000018949000000,0.000033570666667,0.000030673666667,0.000014801000000,0.000044501000000 +0.000018949000000,0.000033439000000,0.000030542333333,0.000014998000000,0.000032254000000 +0.000018949000000,0.000046081000000,0.000030542333333,0.000014998500000,0.000032385666667 +0.000018949000000,0.000033834333333,0.000030673666667,0.000014998500000,0.000032517333333 +0.000018356000000,0.000033702333333,0.000030542000000,0.000014800500000,0.000032254000000 +0.000018356500000,0.000033439000000,0.000030673666667,0.000031591000000,0.000032649000000 +0.000018356500000,0.000033570666667,0.000061093666667,0.000014800500000,0.000032254000000 +0.000018949000000,0.000033439000000,0.000030805333333,0.000014800500000,0.000032385666667 +0.000018751500000,0.000033702666667,0.000030542000000,0.000014998500000,0.000032254000000 +0.000018949000000,0.000033439333333,0.000030937000000,0.000014998500000,0.000055299333333 +0.000018356000000,0.000046213000000,0.000030937333333,0.000014998000000,0.000032385666667 +0.000018356500000,0.000033571000000,0.000030937000000,0.000014801000000,0.000032385666667 +0.000018554000000,0.000033571000000,0.000030805333333,0.000014998500000,0.000032517333333 +0.000018554000000,0.000033702666667,0.000030542000000,0.000015591000000,0.000032254000000 +0.000018949000000,0.000033439333333,0.000037390000000,0.000014801000000,0.000032517333333 +0.000018356500000,0.000033439333333,0.000030673666667,0.000014998000000,0.000032517333333 +0.000018356000000,0.000033571000000,0.000030542000000,0.000014801000000,0.000031990666667 +0.000018949000000,0.000033702666667,0.000030673666667,0.000043443000000,0.000044237666667 +0.000018751000000,0.000033439000000,0.000030805666667,0.000014800500000,0.000032122333333 +0.000018356500000,0.000042262333333,0.000030805333333,0.000014998500000,0.000032254000000 +0.000018356000000,0.000033571000000,0.000030937000000,0.000015986000000,0.000032122333333 +0.000018356500000,0.000033702666667,0.000030937000000,0.000014998000000,0.000032254000000 +0.000018949000000,0.000033439333333,0.000030805666667,0.000014998500000,0.000032254000000 +0.000031591000000,0.000033307333333,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018356000000,0.000033570666667,0.000096254000000,0.000014998000000,0.000031990333333 +0.000018356500000,0.000033570666667,0.000100994666667,0.000031591000000,0.000032122333333 +0.000026652500000,0.000033570666667,0.000090328000000,0.000014800500000,0.000054377333333 +0.000018949000000,0.000052007000000,0.000052270666667,0.000014998500000,0.000032385666667 +0.000018554000000,0.000033571000000,0.000032649000000,0.000014801000000,0.000032385666667 +0.000018948500000,0.000033571000000,0.000032781000000,0.000014998000000,0.000032385666667 +0.000018949000000,0.000033571000000,0.000032780666667,0.000015591000000,0.000032122333333 +0.000018356500000,0.000033702666667,0.000032780666667,0.000014998500000,0.000032254000000 +0.000018949000000,0.000033702666667,0.000032649000000,0.000014800500000,0.000032122333333 +0.000018356500000,0.000033439333333,0.000032912666667,0.000014998500000,0.000031727333333 +0.000018356500000,0.000033571000000,0.000031727000000,0.000014801000000,0.000050031666667 +0.000018356000000,0.000046081000000,0.000032517333333,0.000015195500000,0.000032781000000 +0.000018356500000,0.000033966000000,0.000045554333333,0.000014998500000,0.000032649000000 +0.000018356500000,0.000033966000000,0.000032780666667,0.000014998500000,0.000032649333333 +0.000019344000000,0.000033439333333,0.000032649000000,0.000014998500000,0.000032649000000 +0.000018949000000,0.000033439333333,0.000032649333333,0.000014998000000,0.000032517333333 +0.000018356500000,0.000033570666667,0.000032912333333,0.000014801000000,0.000032254000000 +0.000018356000000,0.000033439000000,0.000032517333333,0.000014801000000,0.000032122333333 +0.000018356500000,0.000033702333333,0.000032649000000,0.000014998000000,0.000032254000000 +0.000018949000000,0.000048583000000,0.000032517333333,0.000014998500000,0.000055562666667 +0.000018949000000,0.000033966000000,0.000033044333333,0.000014998500000,0.000032386000000 +0.000018554000000,0.000033834333333,0.000032517333333,0.000014800500000,0.000031990666667 +0.000018948500000,0.000033834333333,0.000032517333333,0.000014998500000,0.000032385666667 +0.000018356500000,0.000033834333333,0.000032517333333,0.000024480000000,0.000032122333333 +0.000018356000000,0.000034097666667,0.000032649000000,0.000014998500000,0.000032385666667 +0.000018356500000,0.000033702666667,0.000032254333333,0.000014800500000,0.000032385666667 +0.000018751000000,0.000033834333333,0.000032649000000,0.000014998000000,0.000032122333333 +0.000018751500000,0.000033834333333,0.000032649000000,0.000015393500000,0.000044237666667 +0.000018949000000,0.000039496666667,0.000030937000000,0.000014998000000,0.000032517333333 +0.000018949000000,0.000033702666667,0.000032385666667,0.000014801000000,0.000032122333333 +0.000038504500000,0.000033834333333,0.000033044000000,0.000014800500000,0.000032517333333 +0.000060233000000,0.000033834000000,0.000032912666667,0.000014998500000,0.000032254000000 +0.000025467500000,0.000033702333333,0.000032517333333,0.000014801000000,0.000032254000000 +0.000018949000000,0.000033570666667,0.000032649000000,0.000014998000000,0.000032122333333 +0.000018949000000,0.000033175666667,0.000032385666667,0.000014998500000,0.000032254000000 +0.000018949000000,0.000033834333333,0.000032385666667,0.000021714500000,0.000032517333333 +0.000018356000000,0.000046213000000,0.000032649000000,0.000015591000000,0.000057538000000 +0.000018949000000,0.000033571000000,0.000032649333333,0.000014801000000,0.000032385666667 +0.000018949000000,0.000033702666667,0.000032649000000,0.000014998500000,0.000032254333333 +0.000019542000000,0.000033702666667,0.000033175666667,0.000014998000000,0.000032122333333 +0.000018356500000,0.000033702666667,0.000032517333333,0.000015196000000,0.000032254000000 +0.000018356500000,0.000033439333333,0.000032649333333,0.000014800500000,0.000032385666667 +0.000018949000000,0.000033571000000,0.000032517333333,0.000014801000000,0.000032649333333 +0.000018949000000,0.000033571000000,0.000032517333333,0.000014998500000,0.000032517333333 +0.000018158500000,0.000045818000000,0.000032517333333,0.000014998000000,0.000056484666667 +0.000018356500000,0.000033439000000,0.000032780666667,0.000014998500000,0.000032385666667 +0.000018949000000,0.000033834000000,0.000032517333333,0.000014800500000,0.000032517333333 +0.000018949000000,0.000033834333333,0.000032254000000,0.000014998500000,0.000032386000000 +0.000037319000000,0.000033702666667,0.000044896000000,0.000014801000000,0.000048978333333 +0.000018949000000,0.000033702666667,0.000032781000000,0.000014998000000,0.000032385666667 +0.000018356500000,0.000033834333333,0.000032517333333,0.000014801000000,0.000032385666667 +0.000018948500000,0.000033702666667,0.000032780666667,0.000014801000000,0.000032517666667 +0.000018554000000,0.000033834333333,0.000032649000000,0.000014800500000,0.000055431000000 +0.000018949000000,0.000039101666667,0.000031332333333,0.000014801000000,0.000032517333333 +0.000018554000000,0.000033439000000,0.000032385666667,0.000014998000000,0.000032385666667 +0.000018949000000,0.000033571000000,0.000032517333333,0.000014801000000,0.000032517666667 +0.000018751500000,0.000037126666667,0.000032781000000,0.000014801000000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000032385666667,0.000021714500000,0.000032254000000 +0.000028825500000,0.000031727333333,0.000032254000000,0.000016381000000,0.000032517333333 +0.000018356500000,0.000031727333333,0.000032912333333,0.000014998000000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000032649000000,0.000015196000000,0.000038575000000 +0.000018356000000,0.000043579000000,0.000032912666667,0.000014800500000,0.000050427000000 +0.000018949000000,0.000031464000000,0.000032649000000,0.000014998500000,0.000032122333333 +0.000018158500000,0.000031727333333,0.000032912333333,0.000014800500000,0.000032122333333 +0.000018751500000,0.000031595666667,0.000032912666667,0.000014801000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000032385666667,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000032780666667,0.000014998000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000032912333333,0.000014998500000,0.000032122333333 +0.000018553500000,0.000031595333333,0.000032649333333,0.000015393000000,0.000032254000000 +0.000018949000000,0.000031858666667,0.000032517333333,0.000014998500000,0.000048846666667 +0.000018949000000,0.000085587000000,0.000032385666667,0.000014800500000,0.000032649000000 +0.000018949000000,0.000084270333333,0.000032649000000,0.000014801000000,0.000032386000000 +0.000018159000000,0.000100468000000,0.000032517333333,0.000014801000000,0.000032254000000 +0.000018356500000,0.000055036000000,0.000032385666667,0.000014800500000,0.000032122333333 +0.000018948500000,0.000041472333333,0.000032781000000,0.000014801000000,0.000032254000000 +0.000018949000000,0.000032122333333,0.000032780666667,0.000014998500000,0.000032254000000 +0.000018158500000,0.000031595666667,0.000032649000000,0.000014998000000,0.000032385666667 +0.000018356500000,0.000031464000000,0.000032781000000,0.000014998500000,0.000048056333333 +0.000018949000000,0.000031464000000,0.000032780666667,0.000014998500000,0.000032386000000 +0.000043245000000,0.000031859000000,0.000032517333333,0.000022307000000,0.000032385666667 +0.000018554000000,0.000031727333333,0.000032649000000,0.000014998500000,0.000031990666667 +0.000018554000000,0.000031859000000,0.000032517333333,0.000014801000000,0.000032254000000 +0.000018949000000,0.000047529666667,0.000031332333333,0.000014998500000,0.000032517333333 +0.000018356000000,0.000032122333333,0.000032517333333,0.000014800500000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000032781000000,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000032517333333,0.000014800500000,0.000031990666667 +0.000018356000000,0.000031595666667,0.000032385666667,0.000014998000000,0.000090855000000 +0.000018751500000,0.000031727333333,0.000032649000000,0.000014998500000,0.000100994666667 +0.000018356000000,0.000031727333333,0.000032780666667,0.000014998500000,0.000100863000000 +0.000028430500000,0.000031859000000,0.000032517333333,0.000014998000000,0.000062410333333 +0.000025072500000,0.000038180000000,0.000035414666667,0.000014998500000,0.000034229333333 +0.000018949000000,0.000036863333333,0.000030805333333,0.000014800500000,0.000037785000000 +0.000018751500000,0.000031990666667,0.000030937333333,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031990666667,0.000036073000000,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031595666667,0.000031200666667,0.000014998000000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000031068666667,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031595333333,0.000031069000000,0.000014998500000,0.000038180000000 +0.000018356000000,0.000031463666667,0.000031068666667,0.000014998000000,0.000032517333333 +0.000018356500000,0.000031595333333,0.000030673666667,0.000014801000000,0.000032254000000 +0.000018356500000,0.000043974333333,0.000030673666667,0.000014998500000,0.000032254000000 +0.000025665000000,0.000031859000000,0.000030937333333,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031595666667,0.000030673666667,0.000039295000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000058723000000,0.000014998000000,0.000032122333333 +0.000018356500000,0.000031859000000,0.000031069000000,0.000014998500000,0.000032122333333 +0.000018356000000,0.000031727333333,0.000030937000000,0.000014998500000,0.000032122333333 +0.000018751500000,0.000031727333333,0.000030937000000,0.000015393500000,0.000055562666667 +0.000018751500000,0.000031595666667,0.000031200666667,0.000014998500000,0.000037258000000 +0.000018949000000,0.000031727333333,0.000030937000000,0.000015393000000,0.000032517333333 +0.000018751500000,0.000043974000000,0.000030805333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000030805666667,0.000014801000000,0.000032385666667 +0.000026850000000,0.000031858666667,0.000037389666667,0.000014998000000,0.000032254333333 +0.000018356500000,0.000031595333333,0.000031200666667,0.000014998500000,0.000032122333333 +0.000018751000000,0.000031595666667,0.000029357000000,0.000015591000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000030805666667,0.000014998500000,0.000038838333333 +0.000018356500000,0.000031727333333,0.000030805333333,0.000014998500000,0.000032254000000 +0.000018356000000,0.000031990666667,0.000030673666667,0.000014998000000,0.000032385666667 +0.000018949000000,0.000031990666667,0.000030805333333,0.000014998500000,0.000032254000000 +0.000018356000000,0.000044106000000,0.000030805666667,0.000014998000000,0.000032254000000 +0.000018159000000,0.000031990666667,0.000030937333333,0.000014998500000,0.000032122333333 +0.000018554000000,0.000031727333333,0.000029620333333,0.000014998500000,0.000032254000000 +0.000028825500000,0.000031727333333,0.000041998666667,0.000014998000000,0.000032122333333 +0.000018949000000,0.000031859000000,0.000030673666667,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031990666667,0.000030805666667,0.000014801000000,0.000044501000000 +0.000018159000000,0.000031859000000,0.000030805333333,0.000030208000000,0.000036994666667 +0.000018949000000,0.000031990666667,0.000030542000000,0.000014603000000,0.000034361000000 +0.000018949000000,0.000031990666667,0.000030805333333,0.000014998500000,0.000034229333333 +0.000018949000000,0.000055035666667,0.000030542000000,0.000014800500000,0.000033834333333 +0.000018356500000,0.000032122333333,0.000030805666667,0.000014998500000,0.000034493000000 +0.000018949000000,0.000031595666667,0.000030805333333,0.000014801000000,0.000034492666667 +0.000018949000000,0.000031727333333,0.000042394000000,0.000015590500000,0.000034492666667 +0.000018356000000,0.000031859000000,0.000030805333333,0.000014998500000,0.000034492666667 +0.000018949000000,0.000031727333333,0.000031068666667,0.000014801000000,0.000035282666667 +0.000018553500000,0.000031990666667,0.000031069000000,0.000015195500000,0.000034361000000 +0.000018356500000,0.000031727333333,0.000030937000000,0.000014998500000,0.000034492666667 +0.000018356500000,0.000043974333333,0.000030673666667,0.000014998500000,0.000034229333333 +0.000018949000000,0.000031595666667,0.000030937000000,0.000014801000000,0.000034229333333 +0.000018159000000,0.000031990666667,0.000031069000000,0.000014800500000,0.000034492666667 +0.000025072500000,0.000031727333333,0.000029488333333,0.000014800500000,0.000034361000000 +0.000018751500000,0.000037390000000,0.000041998666667,0.000014998500000,0.000034492666667 +0.000018356500000,0.000033571000000,0.000031332333333,0.000014800500000,0.000034887666667 +0.000018949000000,0.000033834333333,0.000030937000000,0.000014800500000,0.000034097666667 +0.000018949000000,0.000033834333333,0.000031068666667,0.000014801000000,0.000033834333333 +0.000018554000000,0.000033834333333,0.000030805666667,0.000031788500000,0.000034229333333 +0.000018356000000,0.000036994666667,0.000030805333333,0.000022109500000,0.000034097666667 +0.000018356500000,0.000033966000000,0.000030937000000,0.000024480000000,0.000034492666667 +0.000019541500000,0.000033966000000,0.000030805333333,0.000014801000000,0.000033966000000 +0.000019541500000,0.000033702666667,0.000030674000000,0.000014801000000,0.000034361000000 +0.000018356500000,0.000033834333333,0.000030805333333,0.000014800500000,0.000034624666667 +0.000018554000000,0.000033702666667,0.000084665333333,0.000015393500000,0.000034229333333 +0.000018751500000,0.000033966000000,0.000030805666667,0.000015393500000,0.000034097666667 +0.000018751500000,0.000033966000000,0.000030805666667,0.000014998500000,0.000034361000000 +0.000025665000000,0.000041209000000,0.000030542000000,0.000014998500000,0.000033966000000 +0.000018949000000,0.000033966000000,0.000030673666667,0.000014998000000,0.000034097666667 +0.000018949000000,0.000033834333333,0.000030542000000,0.000014998500000,0.000034361000000 +0.000018949000000,0.000033571000000,0.000030805333333,0.000014998500000,0.000034493000000 +0.000018356000000,0.000033570666667,0.000037653333333,0.000031591000000,0.000034492666667 +0.000018949000000,0.000033307333333,0.000094410333333,0.000016578500000,0.000034492666667 +0.000018356500000,0.000033702333333,0.000035809666667,0.000015788500000,0.000034492666667 +0.000018356500000,0.000033570666667,0.000030937000000,0.000015986000000,0.000034361000000 +0.000018356000000,0.000033307666667,0.000030673666667,0.000015788000000,0.000034229333333 +0.000018751500000,0.000045949666667,0.000030805666667,0.000015788500000,0.000034097666667 +0.000018751500000,0.000033439333333,0.000030937333333,0.000015986000000,0.000034097666667 +0.000018949000000,0.000033307333333,0.000036336333333,0.000016183500000,0.000034229333333 +0.000018356500000,0.000033702333333,0.000035546333333,0.000016973500000,0.000034097666667 +0.000018948500000,0.000033570666667,0.000030673666667,0.000041269500000,0.000034624333333 +0.000018949000000,0.000033570666667,0.000030673666667,0.000016381000000,0.000034229333333 +0.000018356000000,0.000033834000000,0.000030410333333,0.000016381000000,0.000034229333333 +0.000018949000000,0.000033570666667,0.000030673666667,0.000016381000000,0.000034229333333 +0.000018356500000,0.000033570666667,0.000030937333333,0.000016381000000,0.000034229333333 +0.000018356500000,0.000033439000000,0.000030542000000,0.000016776000000,0.000034361000000 +0.000018751500000,0.000033439000000,0.000030673666667,0.000016776000000,0.000034097666667 +0.000037319000000,0.000033571000000,0.000042394000000,0.000017566000000,0.000034229333333 +0.000026652500000,0.000033834333333,0.000036204666667,0.000036134000000,0.000034492666667 +0.000018356500000,0.000033702666667,0.000030937333333,0.000017368500000,0.000046476000000 +0.000018356500000,0.000033834333333,0.000030805333333,0.000016973500000,0.000033965666667 +0.000018356500000,0.000033702333333,0.000030673666667,0.000016973500000,0.000034097666667 +0.000018356500000,0.000033570666667,0.000030542000000,0.000016183500000,0.000034361000000 +0.000018356500000,0.000034097333333,0.000030542000000,0.000016776000000,0.000034229333333 +0.000018356500000,0.000033570666667,0.000030542333333,0.000016381000000,0.000034361000000 +0.000019541500000,0.000033702333333,0.000030805666667,0.000016381000000,0.000034624333333 +0.000018554000000,0.000033570666667,0.000042394000000,0.000016381000000,0.000034361000000 +0.000018751500000,0.000033702333333,0.000040682000000,0.000016183500000,0.000034624333333 +0.000018356500000,0.000033439000000,0.000031069000000,0.000016381000000,0.000034492666667 +0.000018356500000,0.000033966000000,0.000030937000000,0.000026060000000,0.000034492666667 +0.000018356500000,0.000033702333333,0.000030937333333,0.000016183500000,0.000034624333333 +0.000018949000000,0.000033702333333,0.000030674000000,0.000016381000000,0.000034624333333 +0.000018948500000,0.000033439000000,0.000030937000000,0.000016183500000,0.000034492666667 +0.000018356500000,0.000033702333333,0.000030673666667,0.000016381000000,0.000034493000000 +0.000018553500000,0.000033307333333,0.000030542000000,0.000015788500000,0.000033966000000 +0.000018949000000,0.000033702333333,0.000037258333333,0.000016381000000,0.000034097666667 +0.000018751000000,0.000033439000000,0.000040682000000,0.000015986000000,0.000034492666667 +0.000018949000000,0.000033702666667,0.000029488666667,0.000024282500000,0.000034229333333 +0.000018949000000,0.000033571000000,0.000030673666667,0.000041862500000,0.000034229333333 +0.000018356000000,0.000033702666667,0.000030937333333,0.000023492000000,0.000034097666667 +0.000018356500000,0.000033834000000,0.000030805333333,0.000015986000000,0.000034229333333 +0.000018356000000,0.000033702333333,0.000030805333333,0.000015591000000,0.000034492666667 +0.000018356500000,0.000033439000000,0.000030674000000,0.000015986000000,0.000034624333333 +0.000018751500000,0.000033570666667,0.000030805666667,0.000015986000000,0.000034229333333 +0.000018751500000,0.000033834000000,0.000037389666667,0.000016776000000,0.000034624333333 +0.000018159000000,0.000033965666667,0.000035678000000,0.000032381000000,0.000034361000000 +0.000018751500000,0.000033834333333,0.000030673666667,0.000015590500000,0.000034624333333 +0.000018949000000,0.000033702666667,0.000030673666667,0.000015986000000,0.000034624666667 +0.000018554000000,0.000033702666667,0.000030410666667,0.000015788500000,0.000034229333333 +0.000018751000000,0.000034229333333,0.000030805666667,0.000015788500000,0.000034492666667 +0.000018949000000,0.000033439333333,0.000030673666667,0.000016381000000,0.000034361000000 +0.000018948500000,0.000033307666667,0.000030805333333,0.000015788500000,0.000034361000000 +0.000018356500000,0.000033307333333,0.000030805333333,0.000015788500000,0.000034361000000 +0.000018949000000,0.000033702666667,0.000043316000000,0.000016183500000,0.000038575000000 +0.000018751500000,0.000033702666667,0.000035414333333,0.000015788500000,0.000032385666667 +0.000018949000000,0.000033834333333,0.000030805666667,0.000015788500000,0.000032517333333 +0.000018949000000,0.000033571000000,0.000030673666667,0.000015788500000,0.000032649000000 +0.000018356500000,0.000033966000000,0.000030937000000,0.000015986000000,0.000032649000000 +0.000018553500000,0.000033834333333,0.000030805333333,0.000022307000000,0.000032386000000 +0.000018949000000,0.000033702666667,0.000030674000000,0.000014998000000,0.000032517333333 +0.000018553500000,0.000033966000000,0.000030674000000,0.000014998500000,0.000032517333333 +0.000018949000000,0.000033439333333,0.000030805333333,0.000014801000000,0.000044105666667 +0.000018949000000,0.000033702666667,0.000043579000000,0.000014998000000,0.000036863333333 +0.000018159000000,0.000033702666667,0.000035546000000,0.000014998500000,0.000032122333333 +0.000018751500000,0.000033702666667,0.000030937000000,0.000014801000000,0.000032385666667 +0.000018356500000,0.000033439333333,0.000031069000000,0.000015590500000,0.000032781000000 +0.000018356000000,0.000033702666667,0.000030937000000,0.000015196000000,0.000032517333333 +0.000018356500000,0.000033834333333,0.000029620333333,0.000014800500000,0.000032517333333 +0.000018356000000,0.000033571000000,0.000030805333333,0.000015393500000,0.000032649000000 +0.000018751500000,0.000033702666667,0.000030937333333,0.000015393000000,0.000032254000000 +0.000018949000000,0.000036336333333,0.000030805666667,0.000014801000000,0.000044106000000 +0.000018949000000,0.000031727333333,0.000054640666667,0.000014801000000,0.000032517333333 +0.000018356500000,0.000031727333333,0.000031200333333,0.000014998000000,0.000032649333333 +0.000018751500000,0.000031859000000,0.000030805333333,0.000014801000000,0.000032517333333 +0.000018356500000,0.000031727333333,0.000029357000000,0.000014800500000,0.000032517333333 +0.000018356500000,0.000037916666667,0.000030410333333,0.000014998500000,0.000032386000000 +0.000018949000000,0.000031859000000,0.000030805666667,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031859000000,0.000030805666667,0.000014998000000,0.000032122333333 +0.000018949000000,0.000031859000000,0.000030805333333,0.000021714500000,0.000039101666667 +0.000018949000000,0.000031727333333,0.000030673666667,0.000014800500000,0.000032385666667 +0.000018949000000,0.000031990666667,0.000054114000000,0.000015788500000,0.000031990666667 +0.000018949000000,0.000031595666667,0.000030673666667,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031859000000,0.000030805666667,0.000014801000000,0.000032122333333 +0.000019344000000,0.000044369333333,0.000030805333333,0.000014998500000,0.000031990666667 +0.000018356000000,0.000052533666667,0.000030673666667,0.000014998000000,0.000032122333333 +0.000018949000000,0.000094542000000,0.000030542000000,0.000014998000000,0.000032122333333 +0.000018949000000,0.000094673666667,0.000030542000000,0.000014801000000,0.000032254000000 +0.000018356500000,0.000049110000000,0.000030805666667,0.000014801000000,0.000044500666667 +0.000018751500000,0.000031859000000,0.000030673666667,0.000014800500000,0.000032517333333 +0.000018751500000,0.000031595666667,0.000053587333333,0.000024677500000,0.000032517333333 +0.000019344000000,0.000031727333333,0.000030805333333,0.000014801000000,0.000032517666667 +0.000018159000000,0.000031464000000,0.000030673666667,0.000014800500000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000029488666667,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031464000000,0.000030542000000,0.000014800500000,0.000032385666667 +0.000018751500000,0.000031595333333,0.000031068666667,0.000014998000000,0.000032517666667 +0.000018554000000,0.000031858666667,0.000030937333333,0.000014998500000,0.000032385666667 +0.000018553500000,0.000050031666667,0.000030805333333,0.000014801000000,0.000049241666667 +0.000018751500000,0.000038180000000,0.000030542000000,0.000014800500000,0.000032254000000 +0.000019541500000,0.000032122333333,0.000058196333333,0.000014998000000,0.000032517666667 +0.000018356500000,0.000031727000000,0.000030673666667,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031727333333,0.000030542000000,0.000034356000000,0.000031990666667 +0.000018356500000,0.000031859000000,0.000030674000000,0.000014998000000,0.000032122333333 +0.000018356500000,0.000032254000000,0.000030674000000,0.000014801000000,0.000032254000000 +0.000018159000000,0.000031990666667,0.000030673666667,0.000014801000000,0.000032385666667 +0.000018751000000,0.000031859000000,0.000030673666667,0.000015195500000,0.000047661333333 +0.000018751500000,0.000037916333333,0.000030673666667,0.000014998500000,0.000085850666667 +0.000019541500000,0.000032122333333,0.000030673666667,0.000014801000000,0.000094147000000 +0.000018356500000,0.000031727000000,0.000057801333333,0.000015393500000,0.000032385666667 +0.000018554000000,0.000031727000000,0.000030542000000,0.000014801000000,0.000032649000000 +0.000018356500000,0.000031727000000,0.000030805666667,0.000014998500000,0.000053192333333 +0.000018949000000,0.000031858666667,0.000030805333333,0.000014801000000,0.000044237666667 +0.000018948500000,0.000031727000000,0.000030673666667,0.000022504500000,0.000032649333333 +0.000025862500000,0.000031727333333,0.000030805333333,0.000015591000000,0.000032649000000 +0.000018356000000,0.000038180000000,0.000030674000000,0.000014998000000,0.000032385666667 +0.000018949000000,0.000036863000000,0.000030410666667,0.000014801000000,0.000032781000000 +0.000018356000000,0.000031859000000,0.000030937333333,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031595666667,0.000090723000000,0.000015393500000,0.000032517333333 +0.000018356000000,0.000031859000000,0.000092303333333,0.000014801000000,0.000050558333333 +0.000018949000000,0.000031595666667,0.000093488333333,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031595666667,0.000049110000000,0.000014800500000,0.000032517333333 +0.000018356500000,0.000032122333333,0.000036599666667,0.000014998500000,0.000032254000000 +0.000021122000000,0.000031859000000,0.000030805333333,0.000015591000000,0.000032517666667 +0.000018356500000,0.000043842666667,0.000030937000000,0.000024677000000,0.000032385666667 +0.000019541500000,0.000031727333333,0.000030937000000,0.000016183500000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000030674000000,0.000015788000000,0.000032649333333 +0.000018356500000,0.000031595666667,0.000030542000000,0.000014998500000,0.000032385666667 +0.000018159000000,0.000031859000000,0.000030542000000,0.000014998500000,0.000049241666667 +0.000018751500000,0.000031595666667,0.000030542000000,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031859000000,0.000043710666667,0.000014801000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000031200666667,0.000014998000000,0.000031990666667 +0.000018356500000,0.000031727333333,0.000031068666667,0.000014998000000,0.000032254000000 +0.000019146500000,0.000054509000000,0.000030937000000,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031990666667,0.000030937333333,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014998500000,0.000059381666667 +0.000018949000000,0.000031595666667,0.000031069000000,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031595666667,0.000037126333333,0.000014801000000,0.000032122333333 +0.000018949000000,0.000031727333333,0.000046081000000,0.000014800500000,0.000032254000000 +0.000018159000000,0.000043052333333,0.000037126666667,0.000014801000000,0.000032122333333 +0.000018356500000,0.000036599666667,0.000035941333333,0.000014998500000,0.000031990333333 +0.000018949000000,0.000031595333333,0.000030410666667,0.000014800500000,0.000032254000000 +0.000019146500000,0.000031464000000,0.000030542333333,0.000014998500000,0.000045027666667 +0.000018356500000,0.000031595666667,0.000030278666667,0.000014998500000,0.000037126333333 +0.000018356500000,0.000031859000000,0.000030278666667,0.000014998000000,0.000032517333333 +0.000018356000000,0.000031727333333,0.000030410333333,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031727333333,0.000040813666667,0.000014998500000,0.000032254000000 +0.000018948500000,0.000031990666667,0.000030673666667,0.000014998500000,0.000032254000000 +0.000018356500000,0.000054509000000,0.000030673666667,0.000014998500000,0.000032254000000 +0.000018356000000,0.000031990666667,0.000030805666667,0.000014801000000,0.000032254333333 +0.000018949000000,0.000031595666667,0.000030673666667,0.000015196000000,0.000032385666667 +0.000019541500000,0.000031463666667,0.000030542000000,0.000014998500000,0.000059908333333 +0.000018356500000,0.000031595333333,0.000030805333333,0.000014998500000,0.000032385666667 +0.000019344000000,0.000031727333333,0.000030410333333,0.000014998000000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000030542000000,0.000015196000000,0.000032122333333 +0.000018949000000,0.000031859000000,0.000041867333333,0.000031591000000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014801000000,0.000032385666667 +0.000017961000000,0.000043842666667,0.000030410333333,0.000014801000000,0.000032385666667 +0.000018356000000,0.000031595666667,0.000030673666667,0.000014998000000,0.000032254000000 +0.000018949000000,0.000031727333333,0.000030673666667,0.000014998500000,0.000059776666667 +0.000018554000000,0.000031727333333,0.000030805666667,0.000015788000000,0.000032517333333 +0.000018356500000,0.000031859000000,0.000030410333333,0.000015393500000,0.000032385666667 +0.000018554000000,0.000031990666667,0.000030542000000,0.000014998000000,0.000032254000000 +0.000019344000000,0.000031727333333,0.000030805333333,0.000014998500000,0.000031990666667 +0.000018751500000,0.000031595666667,0.000037389666667,0.000014801000000,0.000032122333333 +0.000018356000000,0.000031595666667,0.000040945333333,0.000014800500000,0.000032254000000 +0.000018356500000,0.000047134666667,0.000030805666667,0.000025270000000,0.000032254000000 +0.000018554000000,0.000031859000000,0.000030937000000,0.000015393500000,0.000045554333333 +0.000018751500000,0.000031727333333,0.000030673666667,0.000014998500000,0.000036731333333 +0.000018356000000,0.000031990666667,0.000030805333333,0.000014998000000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000030674000000,0.000014998500000,0.000031990666667 +0.000018356500000,0.000031990666667,0.000030674000000,0.000015196000000,0.000032254000000 +0.000019344000000,0.000031727333333,0.000030805333333,0.000014800500000,0.000032122333333 +0.000018949000000,0.000031727333333,0.000037126333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000044105666667,0.000030805666667,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031858666667,0.000030805666667,0.000014998000000,0.000032254000000 +0.000018356500000,0.000031727000000,0.000029356666667,0.000015196000000,0.000060830333333 +0.000018949000000,0.000031727000000,0.000030673666667,0.000014998500000,0.000032254000000 +0.000018751500000,0.000031858666667,0.000030673666667,0.000015393500000,0.000032385666667 +0.000018356000000,0.000031727000000,0.000030542000000,0.000014998500000,0.000032386000000 +0.000018949000000,0.000031990666667,0.000030937000000,0.000014800500000,0.000032122333333 +0.000018356000000,0.000031990666667,0.000030805666667,0.000014998500000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000030542000000,0.000015196000000,0.000032122333333 +0.000018949000000,0.000057406333333,0.000045949333333,0.000014800500000,0.000032254000000 +0.000018356500000,0.000070706666667,0.000030673666667,0.000014998500000,0.000064912333333 +0.000018949000000,0.000037916666667,0.000030805666667,0.000015591000000,0.000050558666667 +0.000018159000000,0.000031727333333,0.000030937000000,0.000014998500000,0.000043447333333 +0.000018553500000,0.000031727333333,0.000030805333333,0.000015196000000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014998000000,0.000032254000000 +0.000019541500000,0.000032122333333,0.000030805666667,0.000015788500000,0.000032385666667 +0.000018356500000,0.000044237666667,0.000030805333333,0.000014998500000,0.000032254000000 +0.000018356000000,0.000031990666667,0.000030805333333,0.000014998500000,0.000048056666667 +0.000018949000000,0.000031727333333,0.000054245666667,0.000014800500000,0.000032517333333 +0.000018949000000,0.000031595666667,0.000035283000000,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031595666667,0.000030542000000,0.000014800500000,0.000032385666667 +0.000018949000000,0.000031595666667,0.000030542000000,0.000014801000000,0.000032517333333 +0.000018356500000,0.000031463666667,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018356000000,0.000031332000000,0.000032517333333,0.000014800500000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000032254000000,0.000014603500000,0.000032386000000 +0.000018356000000,0.000037126666667,0.000032781000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000032781000000,0.000021912000000,0.000044369333333 +0.000018356000000,0.000031859000000,0.000031859000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031595333333,0.000032649000000,0.000014998500000,0.000032649000000 +0.000018751000000,0.000031463666667,0.000033439333333,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031727333333,0.000032912333333,0.000014998000000,0.000032122333333 +0.000018949000000,0.000031464000000,0.000032781000000,0.000015788500000,0.000032254000000 +0.000018356500000,0.000031990666667,0.000032649000000,0.000014998000000,0.000032254000000 +0.000018356000000,0.000031595666667,0.000032517333333,0.000014998500000,0.000032517333333 +0.000018356500000,0.000042920666667,0.000032649000000,0.000014998500000,0.000045027666667 +0.000018356000000,0.000031727333333,0.000032649000000,0.000014998500000,0.000037653000000 +0.000019541500000,0.000038443333333,0.000032912333333,0.000014998000000,0.000032122333333 +0.000018356000000,0.000037390000000,0.000032780666667,0.000024875000000,0.000032122333333 +0.000018356500000,0.000031990666667,0.000032780666667,0.000014800500000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000032649333333,0.000014800500000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000032912333333,0.000014998500000,0.000031990666667 +0.000018356000000,0.000031595666667,0.000032780666667,0.000014998500000,0.000032122333333 +0.000018554000000,0.000056352666667,0.000032912666667,0.000015195500000,0.000032254000000 +0.000018159000000,0.000031859000000,0.000032649000000,0.000014998500000,0.000047529666667 +0.000018554000000,0.000031727333333,0.000032780666667,0.000014998000000,0.000032649000000 +0.000018554000000,0.000031595666667,0.000038575000000,0.000014998500000,0.000038575000000 +0.000018949000000,0.000031727333333,0.000032517666667,0.000014801000000,0.000042789000000 +0.000018356500000,0.000031464000000,0.000032517333333,0.000014998000000,0.000032254000000 +0.000018949000000,0.000031332333333,0.000032517333333,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031727333333,0.000032649000000,0.000014801000000,0.000032254000000 +0.000018356500000,0.000043974000000,0.000032780666667,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031464000000,0.000032781000000,0.000014998500000,0.000044369333333 +0.000018356500000,0.000031595666667,0.000031595333333,0.000014998500000,0.000032254000000 +0.000037714500000,0.000031464000000,0.000033175666667,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031464000000,0.000032780666667,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031464000000,0.000032649333333,0.000014801000000,0.000032517333333 +0.000018949000000,0.000031463666667,0.000032517333333,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031727000000,0.000032517333333,0.000014801000000,0.000032649000000 +0.000018356000000,0.000031463666667,0.000032385666667,0.000015196000000,0.000032385666667 +0.000018554000000,0.000059513333333,0.000032254000000,0.000025072000000,0.000038180000000 +0.000018948500000,0.000031595666667,0.000032780666667,0.000016381000000,0.000042130666667 +0.000018356500000,0.000031595666667,0.000032781000000,0.000030603500000,0.000032254000000 +0.000018356000000,0.000031464000000,0.000032780666667,0.000050554000000,0.000032386000000 +0.000018949000000,0.000031727333333,0.000032649000000,0.000041467500000,0.000032254000000 +0.000018751500000,0.000031727333333,0.000032517333333,0.000051739000000,0.000032517333333 +0.000018948500000,0.000031859000000,0.000032912666667,0.000022306500000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000032649333333,0.000016183500000,0.000032254000000 +0.000018949000000,0.000046608000000,0.000032517333333,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031990666667,0.000032649000000,0.000014801000000,0.000044369333333 +0.000018356500000,0.000031595666667,0.000032517333333,0.000014998000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000032649000000,0.000014801000000,0.000032122333333 +0.000018356000000,0.000031859000000,0.000045027666667,0.000014801000000,0.000032122333333 +0.000018159000000,0.000032254000000,0.000032517666667,0.000014998000000,0.000032385666667 +0.000018554000000,0.000031990666667,0.000032912333333,0.000030406000000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000032780666667,0.000014801000000,0.000032122333333 +0.000018949000000,0.000031727000000,0.000032649000000,0.000014998000000,0.000032254000000 +0.000018554000000,0.000042789000000,0.000032649333333,0.000014998500000,0.000032517333333 +0.000018949000000,0.000031463666667,0.000032517333333,0.000014998500000,0.000037916666667 +0.000018159000000,0.000031727333333,0.000032254000000,0.000014998000000,0.000032517333333 +0.000018356500000,0.000031595666667,0.000032254000000,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031464000000,0.000032517333333,0.000014998000000,0.000032254000000 +0.000018356000000,0.000031595666667,0.000031069000000,0.000014801000000,0.000032254000000 +0.000018949000000,0.000031727333333,0.000032517333333,0.000014801000000,0.000032254000000 +0.000018159000000,0.000031727333333,0.000032517333333,0.000014998000000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000032254000000,0.000021714000000,0.000032386000000 +0.000018356500000,0.000061225333333,0.000032517333333,0.000014801000000,0.000045159333333 +0.000019541500000,0.000031595666667,0.000032385666667,0.000015393000000,0.000041867000000 +0.000018949000000,0.000031595666667,0.000032385666667,0.000031788500000,0.000032254000000 +0.000018949000000,0.000031463666667,0.000032517666667,0.000015788500000,0.000032254000000 +0.000018356000000,0.000031595333333,0.000033044333333,0.000014998500000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000032649000000,0.000014801000000,0.000032254000000 +0.000018949000000,0.000031464000000,0.000032517333333,0.000015196000000,0.000032254000000 +0.000018356500000,0.000031464000000,0.000032517333333,0.000014998500000,0.000031990666667 +0.000018356000000,0.000050163666667,0.000032781000000,0.000014801000000,0.000032122333333 +0.000035936500000,0.000036599666667,0.000032517333333,0.000042455500000,0.000036863000000 +0.000018356500000,0.000031859000000,0.000032780666667,0.000014603500000,0.000032386000000 +0.000018949000000,0.000031727333333,0.000032649000000,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000032517666667,0.000015393500000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000051348333333,0.000015788500000,0.000032122333333 +0.000018751500000,0.000031727333333,0.000077027333333,0.000014603000000,0.000032254000000 +0.000018356000000,0.000031595666667,0.000087431000000,0.000014998500000,0.000032122333333 +0.000019541500000,0.000031859000000,0.000032649000000,0.000014801000000,0.000032385666667 +0.000018949000000,0.000043842666667,0.000032649333333,0.000014998000000,0.000044369333333 +0.000018356500000,0.000031727333333,0.000032912333333,0.000014800500000,0.000032385666667 +0.000019344000000,0.000031332000000,0.000032780666667,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031332000000,0.000032517333333,0.000022504500000,0.000032385666667 +0.000018949000000,0.000031463666667,0.000032385666667,0.000014998500000,0.000032385666667 +0.000018554000000,0.000031859000000,0.000032912333333,0.000015196000000,0.000032517333333 +0.000018554000000,0.000031595666667,0.000035809666667,0.000015196000000,0.000032254333333 +0.000018356500000,0.000031990666667,0.000031068666667,0.000014800500000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000030805666667,0.000028825500000,0.000032122333333 +0.000018356500000,0.000048188333333,0.000029488333333,0.000014800500000,0.000054904333333 +0.000018949000000,0.000031727333333,0.000051875666667,0.000014603500000,0.000032780666667 +0.000018751500000,0.000031595666667,0.000030805333333,0.000014801000000,0.000032517666667 +0.000018949000000,0.000031990666667,0.000030542333333,0.000014998000000,0.000032254000000 +0.000035739000000,0.000031595666667,0.000030674000000,0.000031986000000,0.000032517333333 +0.000018751500000,0.000031595666667,0.000030542000000,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000030673666667,0.000014998000000,0.000032254000000 +0.000018949000000,0.000031727333333,0.000029357000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000044105666667,0.000030673666667,0.000014998500000,0.000043711000000 +0.000018949000000,0.000031858666667,0.000030673666667,0.000014998500000,0.000037521666667 +0.000018356000000,0.000031990333333,0.000057801333333,0.000014998500000,0.000032649000000 +0.000018751500000,0.000031727000000,0.000030937000000,0.000015196000000,0.000032254000000 +0.000018356000000,0.000031858666667,0.000030410333333,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031727000000,0.000030937333333,0.000014998500000,0.000032254000000 +0.000019146500000,0.000031463666667,0.000030673666667,0.000014800500000,0.000032122333333 +0.000018554000000,0.000031595666667,0.000030805333333,0.000030208000000,0.000032517333333 +0.000018159000000,0.000031727333333,0.000030805333333,0.000014801000000,0.000032517333333 +0.000018356500000,0.000043842666667,0.000030674000000,0.000014800500000,0.000044501000000 +0.000018356000000,0.000031727333333,0.000030542333333,0.000014800500000,0.000032649000000 +0.000018356500000,0.000031595666667,0.000053719000000,0.000015196000000,0.000032386000000 +0.000018948500000,0.000031595666667,0.000030805666667,0.000014998000000,0.000032385666667 +0.000018949000000,0.000031463666667,0.000030805333333,0.000014603500000,0.000032254000000 +0.000018949000000,0.000031595333333,0.000030542000000,0.000015196000000,0.000032385666667 +0.000018356500000,0.000031595333333,0.000030673666667,0.000014800500000,0.000032254333333 +0.000019541500000,0.000031464000000,0.000030805666667,0.000015196000000,0.000032517333333 +0.000055887500000,0.000031859000000,0.000029488333333,0.000014998500000,0.000032649000000 +0.000018554000000,0.000069916666667,0.000030542333333,0.000022109500000,0.000098887666667 +0.000018356000000,0.000041472333333,0.000030805333333,0.000014801000000,0.000085060333333 +0.000018356500000,0.000031464000000,0.000053982333333,0.000015196000000,0.000099941000000 +0.000018949000000,0.000031859000000,0.000030937000000,0.000015393500000,0.000038575000000 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014800500000,0.000032649000000 +0.000018356500000,0.000031595666667,0.000030410666667,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031595666667,0.000030410666667,0.000014801000000,0.000032517666667 +0.000018356500000,0.000043974000000,0.000030673666667,0.000015393000000,0.000032385666667 +0.000018949000000,0.000031858666667,0.000030937000000,0.000015591000000,0.000032122333333 +0.000018751500000,0.000031727000000,0.000030937000000,0.000014998000000,0.000032254000000 +0.000018356000000,0.000031595333333,0.000030805666667,0.000014801000000,0.000032386000000 +0.000018949000000,0.000031595666667,0.000047529666667,0.000014998500000,0.000032385666667 +0.000018356000000,0.000031464000000,0.000030805333333,0.000014800500000,0.000055826000000 +0.000018356500000,0.000043447333333,0.000030542000000,0.000014998500000,0.000032254000000 +0.000018356500000,0.000037258000000,0.000030805333333,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031990666667,0.000030410333333,0.000014998000000,0.000032649000000 +0.000018949000000,0.000060040000000,0.000030674000000,0.000014998500000,0.000032649000000 +0.000018949000000,0.000031859000000,0.000030542000000,0.000014998500000,0.000042789000000 +0.000018356500000,0.000031727333333,0.000030410333333,0.000014998000000,0.000031990666667 +0.000018356500000,0.000031727333333,0.000030410333333,0.000014998500000,0.000045422666667 +0.000018356500000,0.000031727333333,0.000066229333333,0.000015196000000,0.000037653333333 +0.000018356500000,0.000031595666667,0.000031200333333,0.000024282000000,0.000032385666667 +0.000018554000000,0.000031595666667,0.000031069000000,0.000051344000000,0.000032385666667 +0.000018751500000,0.000031859000000,0.000030937333333,0.000048973500000,0.000032122333333 +0.000018356500000,0.000043842666667,0.000029883666667,0.000042652500000,0.000032254000000 +0.000018751500000,0.000031463666667,0.000031332000000,0.000016381000000,0.000032517333333 +0.000018356500000,0.000031727000000,0.000031200666667,0.000015788500000,0.000032254000000 +0.000018949000000,0.000031858666667,0.000030937000000,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031727000000,0.000036731333333,0.000014801000000,0.000048583333333 +0.000018554000000,0.000031727000000,0.000036336333333,0.000014998000000,0.000032912333333 +0.000018949000000,0.000031595333333,0.000031069000000,0.000014998500000,0.000032649333333 +0.000018356500000,0.000031595666667,0.000030937000000,0.000014998500000,0.000032649000000 +0.000018949000000,0.000031464000000,0.000031068666667,0.000014998000000,0.000032780666667 +0.000018554000000,0.000060962000000,0.000030805666667,0.000015196000000,0.000032649000000 +0.000018356500000,0.000031859000000,0.000030937000000,0.000015393000000,0.000032780666667 +0.000018949000000,0.000031595666667,0.000030805333333,0.000014998500000,0.000032780666667 +0.000018356000000,0.000031463666667,0.000030805333333,0.000015196000000,0.000060303333333 +0.000018751500000,0.000031727333333,0.000030674000000,0.000014801000000,0.000032649333333 +0.000018356000000,0.000031464000000,0.000041604000000,0.000014998000000,0.000032517333333 +0.000018949000000,0.000031464000000,0.000031200333333,0.000014801000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030805333333,0.000015196000000,0.000032517666667 +0.000037517000000,0.000043842666667,0.000030542333333,0.000014998000000,0.000032254000000 +0.000052529000000,0.000031595666667,0.000030805333333,0.000014998500000,0.000032254000000 +0.000054307000000,0.000031727000000,0.000030805333333,0.000014801000000,0.000032517666667 +0.000026060000000,0.000031595333333,0.000030673666667,0.000015195500000,0.000060303333333 +0.000025270000000,0.000031595333333,0.000030542000000,0.000014801000000,0.000032517333333 +0.000018554000000,0.000031464000000,0.000030805666667,0.000014801000000,0.000032517666667 +0.000018751000000,0.000031464000000,0.000053587333333,0.000014800500000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000030805666667,0.000039492000000,0.000032517333333 +0.000018948500000,0.000031727333333,0.000030673666667,0.000015986000000,0.000032254000000 +0.000018949000000,0.000054640666667,0.000030673666667,0.000014800500000,0.000032122333333 +0.000018949000000,0.000036468000000,0.000030542000000,0.000014801000000,0.000032254000000 +0.000018949000000,0.000031464000000,0.000030410333333,0.000014998500000,0.000055562666667 +0.000018554000000,0.000031595333333,0.000029357000000,0.000015196000000,0.000032649000000 +0.000018949000000,0.000031463666667,0.000030542000000,0.000015393500000,0.000032254000000 +0.000018751500000,0.000031332333333,0.000030673666667,0.000014800500000,0.000032254000000 +0.000019146500000,0.000031595666667,0.000060567000000,0.000015196000000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000030410666667,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031990666667,0.000030542000000,0.000014998500000,0.000032122333333 +0.000018356000000,0.000045949666667,0.000030805333333,0.000015393500000,0.000032254000000 +0.000018949000000,0.000031990666667,0.000030542000000,0.000014998500000,0.000032385666667 +0.000018949000000,0.000031990666667,0.000030673666667,0.000014998000000,0.000049110000000 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014998500000,0.000032649000000 +0.000018554000000,0.000031595666667,0.000041604000000,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031595666667,0.000053719000000,0.000014800500000,0.000031990666667 +0.000018554000000,0.000031595333333,0.000030937000000,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000030673666667,0.000014801000000,0.000031859000000 +0.000027838000000,0.000038180000000,0.000030805666667,0.000014800500000,0.000032254333333 +0.000018949000000,0.000048188333333,0.000030674000000,0.000014800500000,0.000032254000000 +0.000018356500000,0.000031464000000,0.000030542000000,0.000015196000000,0.000055299333333 +0.000018949000000,0.000031595333333,0.000030278666667,0.000022109000000,0.000032517333333 +0.000018356500000,0.000031595333333,0.000030410333333,0.000015196000000,0.000032254000000 +0.000018751000000,0.000031727000000,0.000030410333333,0.000014998000000,0.000032385666667 +0.000018751500000,0.000031595666667,0.000056221000000,0.000014998500000,0.000032517333333 +0.000018553500000,0.000031859000000,0.000063200333333,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000099546000000,0.000014800500000,0.000031859000000 +0.000018356500000,0.000044237666667,0.000084138666667,0.000014801000000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000033439000000,0.000014998500000,0.000043315666667 +0.000018948500000,0.000031859000000,0.000035546333333,0.000014998000000,0.000047002666667 +0.000018949000000,0.000031595666667,0.000031200333333,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000030805666667,0.000014998500000,0.000032254000000 +0.000018554000000,0.000031595666667,0.000030937000000,0.000024677000000,0.000032122333333 +0.000026257500000,0.000031464000000,0.000031200333333,0.000022900000000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000029620333333,0.000015196000000,0.000032122333333 +0.000018949000000,0.000031859000000,0.000031069000000,0.000014801000000,0.000032385666667 +0.000018356500000,0.000059645000000,0.000030937000000,0.000014998500000,0.000032254000000 +0.000018751000000,0.000031990666667,0.000042262333333,0.000014800500000,0.000043842666667 +0.000018554000000,0.000031727333333,0.000030937333333,0.000014998500000,0.000032517333333 +0.000018356500000,0.000031464000000,0.000030937000000,0.000022899500000,0.000032386000000 +0.000018949000000,0.000031727333333,0.000030805333333,0.000022307000000,0.000032254000000 +0.000018949000000,0.000031464000000,0.000029752000000,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031727333333,0.000030805666667,0.000031788500000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000030805333333,0.000014998500000,0.000032254000000 +0.000018356500000,0.000042789000000,0.000030805333333,0.000014998500000,0.000032122333333 +0.000018751500000,0.000031727333333,0.000030673666667,0.000014998000000,0.000054904000000 +0.000018356500000,0.000031332000000,0.000037258333333,0.000014998500000,0.000032254000000 +0.000018949000000,0.000031332000000,0.000030673666667,0.000014998500000,0.000032122333333 +0.000018554000000,0.000031464000000,0.000030673666667,0.000014998000000,0.000032122333333 +0.000018949000000,0.000031727333333,0.000030805333333,0.000014800500000,0.000032385666667 +0.000018356500000,0.000031332333333,0.000030542333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000030805666667,0.000014801000000,0.000031990666667 +0.000018356500000,0.000031464000000,0.000030673666667,0.000015195500000,0.000032254000000 +0.000018554000000,0.000054904000000,0.000030673666667,0.000014801000000,0.000043974333333 +0.000018949000000,0.000035809333333,0.000030805333333,0.000014998000000,0.000037785000000 +0.000018554000000,0.000031727333333,0.000030937333333,0.000014801000000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000041735333333,0.000014998500000,0.000031990666667 +0.000018949000000,0.000031727333333,0.000030937000000,0.000014998000000,0.000032254000000 +0.000018356000000,0.000031859000000,0.000030805666667,0.000015393500000,0.000031990666667 +0.000018356500000,0.000031727333333,0.000029488333333,0.000014998000000,0.000032122333333 +0.000017961000000,0.000031464000000,0.000030542333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000037785000000,0.000031068666667,0.000014998500000,0.000032385666667 +0.000018554000000,0.000031332333333,0.000030805333333,0.000014998000000,0.000055036000000 +0.000018949000000,0.000031595666667,0.000030674000000,0.000014998000000,0.000032385666667 +0.000018356500000,0.000031464000000,0.000030542333333,0.000014998500000,0.000032254000000 +0.000018553500000,0.000031727333333,0.000042130333333,0.000017171000000,0.000031990666667 +0.000018949000000,0.000031595666667,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018751500000,0.000031464000000,0.000030674000000,0.000014998000000,0.000031990666667 +0.000018949000000,0.000031858666667,0.000030937000000,0.000014801000000,0.000032122333333 +0.000018554000000,0.000031990666667,0.000030805333333,0.000014998500000,0.000032385666667 +0.000018949000000,0.000044369000000,0.000030937333333,0.000015591000000,0.000038838666667 +0.000018356500000,0.000036204666667,0.000030674000000,0.000015788500000,0.000036994666667 +0.000018949000000,0.000031859000000,0.000030805333333,0.000015788500000,0.000031990666667 +0.000018949000000,0.000031595666667,0.000030542000000,0.000016183500000,0.000032122333333 +0.000018751500000,0.000031727333333,0.000042262333333,0.000015788000000,0.000032122333333 +0.000018751000000,0.000031464000000,0.000035809333333,0.000015788000000,0.000032122333333 +0.000018554000000,0.000031727333333,0.000030937333333,0.000015788500000,0.000032254000000 +0.000018949000000,0.000031595666667,0.000030673666667,0.000015788500000,0.000032122333333 +0.000018949000000,0.000032122333333,0.000030542000000,0.000015788500000,0.000038443333333 +0.000018751500000,0.000054245666667,0.000030937000000,0.000015788500000,0.000091250000000 +0.000029023000000,0.000031990666667,0.000030937333333,0.000015788500000,0.000100336333333 +0.000018751500000,0.000031595666667,0.000030805333333,0.000015788500000,0.000100336000000 +0.000018949000000,0.000031990666667,0.000030937000000,0.000015788500000,0.000058196333333 +0.000018356500000,0.000031727333333,0.000037390000000,0.000015986000000,0.000053455666667 +0.000018158500000,0.000031990666667,0.000029488333333,0.000015986000000,0.000034493000000 +0.000018949000000,0.000031858666667,0.000030674000000,0.000015986000000,0.000036863000000 +0.000018356000000,0.000032122333333,0.000030673666667,0.000015986000000,0.000032254000000 +0.000018356500000,0.000050426666667,0.000030805333333,0.000016579000000,0.000031990666667 +0.000018356000000,0.000100731333333,0.000030673666667,0.000015788500000,0.000031990333333 +0.000018949000000,0.000100468000000,0.000030674000000,0.000016183500000,0.000043184000000 +0.000018949000000,0.000056879333333,0.000030674000000,0.000015986000000,0.000032385666667 +0.000018356500000,0.000037126333333,0.000030278666667,0.000015788500000,0.000032122333333 +0.000018751500000,0.000031990666667,0.000030542000000,0.000015788500000,0.000032649000000 +0.000018949000000,0.000031859000000,0.000041867000000,0.000015986000000,0.000032385666667 +0.000018949000000,0.000031859000000,0.000031069000000,0.000016578500000,0.000032254000000 +0.000018356000000,0.000031859000000,0.000030937000000,0.000015788500000,0.000032254000000 +0.000018356500000,0.000031859000000,0.000030805333333,0.000015591000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000036336333333,0.000016183500000,0.000031990666667 +0.000018949000000,0.000031595666667,0.000032780666667,0.000015788500000,0.000041340333333 +0.000018356500000,0.000031727333333,0.000032385666667,0.000016183500000,0.000034756000000 +0.000018356500000,0.000048188333333,0.000032386000000,0.000015788500000,0.000034493000000 +0.000021912000000,0.000031727333333,0.000032517333333,0.000015788000000,0.000034229333333 +0.000018751500000,0.000031727333333,0.000036073000000,0.000015986000000,0.000034229333333 +0.000018751500000,0.000031990666667,0.000032780666667,0.000015788500000,0.000034229333333 +0.000018356500000,0.000031727333333,0.000032517333333,0.000015788500000,0.000034492666667 +0.000018948500000,0.000031859000000,0.000032780666667,0.000015788500000,0.000034097666667 +0.000018356500000,0.000031990666667,0.000032781000000,0.000016579000000,0.000034361000000 +0.000018356000000,0.000031727333333,0.000032517333333,0.000015788500000,0.000034361000000 +0.000018949000000,0.000043842333333,0.000032649000000,0.000015788500000,0.000034229333333 +0.000019344000000,0.000031595333333,0.000032780666667,0.000015788500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000032517666667,0.000015986000000,0.000034229333333 +0.000018356500000,0.000031859000000,0.000032912333333,0.000015788500000,0.000034492666667 +0.000037319500000,0.000031595666667,0.000032517333333,0.000015788000000,0.000034097666667 +0.000019541500000,0.000031859000000,0.000031464000000,0.000015788500000,0.000033834333333 +0.000018948500000,0.000031859000000,0.000032912333333,0.000016183500000,0.000033966000000 +0.000018751500000,0.000031727333333,0.000032649333333,0.000015986000000,0.000034229333333 +0.000018554000000,0.000031859000000,0.000032649000000,0.000015788000000,0.000034097333333 +0.000018751500000,0.000050163666667,0.000032385666667,0.000015788500000,0.000034229333333 +0.000018949000000,0.000031727333333,0.000032517333333,0.000015788500000,0.000034097666667 +0.000018356500000,0.000031727333333,0.000032649000000,0.000031986000000,0.000033966000000 +0.000018356500000,0.000031727333333,0.000032912666667,0.000015986000000,0.000033965666667 +0.000018948500000,0.000031727333333,0.000032517333333,0.000015986000000,0.000033834000000 +0.000019344000000,0.000031464000000,0.000032517333333,0.000015986000000,0.000033834333333 +0.000018949000000,0.000031595333333,0.000032385666667,0.000016578500000,0.000033834333333 +0.000018949000000,0.000031595333333,0.000032254000000,0.000015986000000,0.000046081333333 +0.000018356500000,0.000031595666667,0.000032385666667,0.000016183500000,0.000033966000000 +0.000018949000000,0.000043711000000,0.000032517333333,0.000015788500000,0.000034361000000 +0.000018159000000,0.000031595666667,0.000032517666667,0.000015788500000,0.000034229333333 +0.000018356500000,0.000036468000000,0.000032517333333,0.000015788500000,0.000034097666667 +0.000018949000000,0.000033834333333,0.000032649000000,0.000015788500000,0.000033834333333 +0.000018949000000,0.000033702666667,0.000032517333333,0.000015788000000,0.000033702666667 +0.000018949000000,0.000033702666667,0.000032649000000,0.000015788000000,0.000033966000000 +0.000018356500000,0.000033702666667,0.000032517333333,0.000015788500000,0.000034624333333 +0.000019344000000,0.000033702666667,0.000032649333333,0.000016381000000,0.000034361000000 +0.000018356500000,0.000048320000000,0.000032649000000,0.000015788500000,0.000034361000000 +0.000018751500000,0.000034492666667,0.000032780666667,0.000016381000000,0.000034097333333 +0.000018949000000,0.000033966000000,0.000032517333333,0.000015985500000,0.000034229333333 +0.000018949000000,0.000034097666667,0.000032781000000,0.000015986000000,0.000034229333333 +0.000018356500000,0.000033966000000,0.000045422666667,0.000015986000000,0.000034229333333 +0.000018948500000,0.000033834333333,0.000044632666667,0.000015986000000,0.000033965666667 +0.000018159000000,0.000033834333333,0.000032649000000,0.000016183500000,0.000040813666667 +0.000018949000000,0.000033834333333,0.000032517333333,0.000016776500000,0.000034492666667 +0.000018356500000,0.000033702333333,0.000032780666667,0.000015788500000,0.000034624333333 +0.000018159000000,0.000033702333333,0.000031464000000,0.000015591000000,0.000034624333333 +0.000059047500000,0.000033834000000,0.000032649000000,0.000015986000000,0.000047003000000 +0.000052726500000,0.000033834333333,0.000032781000000,0.000015788000000,0.000033966000000 +0.000053122000000,0.000033439000000,0.000033044000000,0.000015591000000,0.000033965666667 +0.000038702000000,0.000033570666667,0.000033044333333,0.000015788500000,0.000034229333333 +0.000047788500000,0.000033570666667,0.000032912333333,0.000015788500000,0.000034756000000 +0.000053912000000,0.000033570666667,0.000032517333333,0.000016381000000,0.000034361000000 +0.000046801000000,0.000033702333333,0.000031464000000,0.000015788000000,0.000034361000000 +0.000065171000000,0.000034097666667,0.000032254000000,0.000015986000000,0.000034492666667 +0.000033369000000,0.000033834333333,0.000032385666667,0.000015591000000,0.000034361000000 +0.000034554000000,0.000033702666667,0.000032649000000,0.000015788500000,0.000034492666667 +0.000030208000000,0.000033834333333,0.000032517666667,0.000015788500000,0.000034361000000 +0.000020726500000,0.000033702666667,0.000039233333333,0.000015788500000,0.000034229333333 +0.000027442500000,0.000033702666667,0.000032517666667,0.000015986000000,0.000034229333333 +0.000020924500000,0.000033571000000,0.000032517333333,0.000015393500000,0.000034756333333 +0.000020331500000,0.000033571000000,0.000032517333333,0.000015788500000,0.000033966000000 +0.000020134000000,0.000033834333333,0.000032912333333,0.000016183500000,0.000033966000000 +0.000020134000000,0.000033702666667,0.000032781000000,0.000015788500000,0.000034361000000 +0.000044035000000,0.000033439333333,0.000032517333333,0.000015986000000,0.000034361000000 +0.000036134000000,0.000033571000000,0.000032517333333,0.000026850500000,0.000033966000000 +0.000049961000000,0.000033702666667,0.000032912333333,0.000040085000000,0.000034229333333 +0.000028430500000,0.000033702666667,0.000033176000000,0.000050949000000,0.000034229333333 +0.000027443000000,0.000033834333333,0.000032385666667,0.000033368500000,0.000034624333333 +0.000020726500000,0.000033702666667,0.000032912333333,0.000015788500000,0.000034361000000 +0.000020134000000,0.000033571000000,0.000032517333333,0.000015788500000,0.000033966000000 +0.000020529000000,0.000033571000000,0.000031069000000,0.000016183500000,0.000034361000000 +0.000020529500000,0.000033702666667,0.000032385666667,0.000015788000000,0.000033966000000 +0.000020529500000,0.000033702666667,0.000032780666667,0.000015788500000,0.000034097666667 +0.000020529500000,0.000033966000000,0.000032781000000,0.000015788500000,0.000034624666667 +0.000028430000000,0.000034097666667,0.000032649000000,0.000015788500000,0.000034097666667 +0.000020134000000,0.000033834000000,0.000032912333333,0.000015788500000,0.000033966000000 +0.000019936500000,0.000033439000000,0.000032517333333,0.000015788500000,0.000034624333333 +0.000020726500000,0.000033439000000,0.000032385666667,0.000015591000000,0.000034492666667 +0.000020134000000,0.000033439333333,0.000032517666667,0.000015788500000,0.000033966000000 +0.000020134500000,0.000033834333333,0.000032649000000,0.000016381000000,0.000034492666667 +0.000026652500000,0.000033571000000,0.000032385666667,0.000023097000000,0.000034097666667 +0.000020134000000,0.000033702666667,0.000032254000000,0.000015788000000,0.000034492666667 +0.000020726500000,0.000034229333333,0.000032254000000,0.000015986000000,0.000034361000000 +0.000021121500000,0.000033570666667,0.000032254000000,0.000015788500000,0.000034492666667 +0.000020134000000,0.000033966000000,0.000032517333333,0.000015986000000,0.000060040000000 +0.000020134000000,0.000033966000000,0.000032517333333,0.000015591000000,0.000032517333333 +0.000020727000000,0.000033571000000,0.000032254000000,0.000015591000000,0.000043052333333 +0.000019937000000,0.000033439000000,0.000032649333333,0.000015788000000,0.000032517333333 +0.000020727000000,0.000045949333333,0.000032386000000,0.000015986000000,0.000032254000000 +0.000020726500000,0.000033571000000,0.000035019333333,0.000015788500000,0.000032254000000 +0.000020134000000,0.000033966000000,0.000030542000000,0.000025467500000,0.000032386000000 +0.000020726500000,0.000033834000000,0.000030673666667,0.000015788500000,0.000032254000000 +0.000019344000000,0.000033307333333,0.000030410333333,0.000016183500000,0.000044237666667 +0.000020134000000,0.000033307333333,0.000037653333333,0.000015986000000,0.000032122333333 +0.000019344000000,0.000033702666667,0.000030673666667,0.000015788500000,0.000032385666667 +0.000020134000000,0.000033702666667,0.000029620333333,0.000015788500000,0.000032254000000 +0.000019937000000,0.000033966000000,0.000030805333333,0.000015393500000,0.000032386000000 +0.000020726500000,0.000033702333333,0.000030805333333,0.000015788500000,0.000032649000000 +0.000019936500000,0.000033834000000,0.000030674000000,0.000015788500000,0.000032254000000 +0.000019541500000,0.000033966000000,0.000030674000000,0.000015788500000,0.000032254000000 +0.000020134500000,0.000034097666667,0.000030673666667,0.000015788000000,0.000032254000000 +0.000019739000000,0.000033966000000,0.000030805333333,0.000031788500000,0.000037785000000 +0.000019344000000,0.000033702666667,0.000030542000000,0.000015986000000,0.000032254000000 +0.000019541500000,0.000033834333333,0.000041999000000,0.000015788500000,0.000031990666667 +0.000019344000000,0.000033702666667,0.000030673666667,0.000015788500000,0.000031859000000 +0.000019542000000,0.000034229333333,0.000030805333333,0.000015986000000,0.000032122333333 +0.000019541500000,0.000033570666667,0.000030805666667,0.000015788500000,0.000032649000000 +0.000019541500000,0.000033702333333,0.000030542333333,0.000015788500000,0.000032385666667 +0.000019344000000,0.000033834333333,0.000030673666667,0.000016184000000,0.000032254000000 +0.000019739000000,0.000033702666667,0.000030542000000,0.000016381000000,0.000044501000000 +0.000019344000000,0.000033834333333,0.000030542000000,0.000015986000000,0.000032517333333 +0.000019541500000,0.000033439333333,0.000030278666667,0.000015986000000,0.000032122000000 +0.000020134000000,0.000033439333333,0.000041999000000,0.000015788500000,0.000032254000000 +0.000019541500000,0.000033966000000,0.000030542333333,0.000015788000000,0.000032385666667 +0.000019936500000,0.000033571000000,0.000030542000000,0.000015788500000,0.000032385666667 +0.000019344000000,0.000033834333333,0.000030410333333,0.000015788500000,0.000032385666667 +0.000019541500000,0.000031727333333,0.000030673666667,0.000015788500000,0.000032254000000 +0.000020134000000,0.000031595666667,0.000030542000000,0.000015788500000,0.000031990666667 +0.000019542000000,0.000031859000000,0.000030673666667,0.000015788500000,0.000044369333333 +0.000019344000000,0.000031464000000,0.000030542000000,0.000015591000000,0.000032254000000 +0.000019936500000,0.000031464000000,0.000030542333333,0.000016578500000,0.000032385666667 +0.000020726500000,0.000031595666667,0.000037126666667,0.000015788500000,0.000032254000000 +0.000019937000000,0.000054640666667,0.000030673666667,0.000025467500000,0.000032385666667 +0.000019936500000,0.000031464000000,0.000030542000000,0.000015788500000,0.000032254000000 +0.000019541500000,0.000031859000000,0.000029488666667,0.000015788500000,0.000032122333333 +0.000019541500000,0.000031595666667,0.000030805333333,0.000015788500000,0.000032122333333 +0.000020134000000,0.000031859000000,0.000030542000000,0.000015788500000,0.000032254000000 +0.000020134500000,0.000031990666667,0.000030673666667,0.000015591000000,0.000058986666667 +0.000019739000000,0.000031727333333,0.000030410333333,0.000015788500000,0.000032517333333 +0.000019541500000,0.000031859000000,0.000030805666667,0.000015788500000,0.000032385666667 +0.000019541500000,0.000031990666667,0.000030805333333,0.000015788500000,0.000032517333333 +0.000019541500000,0.000037785000000,0.000042130333333,0.000015788000000,0.000032254000000 +0.000020134000000,0.000031990666667,0.000030805666667,0.000015788500000,0.000032122333333 +0.000025072500000,0.000031727333333,0.000030937000000,0.000022702000000,0.000032122333333 +0.000020134000000,0.000031727333333,0.000030937000000,0.000015788500000,0.000032122333333 +0.000020134500000,0.000031727333333,0.000030542000000,0.000016183500000,0.000056747666667 +0.000019541500000,0.000031859000000,0.000031069000000,0.000015788500000,0.000032517666667 +0.000019541500000,0.000031859000000,0.000030805333333,0.000016578500000,0.000032517333333 +0.000019542000000,0.000031859000000,0.000030805333333,0.000015788500000,0.000032517333333 +0.000019541500000,0.000038180000000,0.000030673666667,0.000015986000000,0.000032254000000 +0.000019344000000,0.000084534000000,0.000044764333333,0.000015788000000,0.000032254000000 +0.000020134500000,0.000038180000000,0.000030937000000,0.000015986000000,0.000032254000000 +0.000019344000000,0.000032254000000,0.000030937333333,0.000016183500000,0.000032254000000 +0.000020924500000,0.000031858666667,0.000030937000000,0.000015788500000,0.000043447666667 +0.000019936500000,0.000031858666667,0.000031200666667,0.000015788500000,0.000032385666667 +0.000020134000000,0.000031990666667,0.000031200666667,0.000015788500000,0.000032254000000 +0.000019541500000,0.000043842333333,0.000030937000000,0.000015393500000,0.000032122000000 +0.000019344000000,0.000032122333333,0.000031069000000,0.000015788500000,0.000032122333333 +0.000020134500000,0.000031727000000,0.000031069000000,0.000015788500000,0.000032122333333 +0.000020134000000,0.000031595666667,0.000042262333333,0.000015986000000,0.000032122333333 +0.000019936500000,0.000031595666667,0.000030937333333,0.000015788500000,0.000032122333333 +0.000019344000000,0.000031990666667,0.000030937000000,0.000015788500000,0.000032254000000 +0.000019936500000,0.000031727333333,0.000030937000000,0.000015788500000,0.000044105666667 +0.000020726500000,0.000031859000000,0.000037521666667,0.000015788500000,0.000032385666667 +0.000019542000000,0.000031727333333,0.000035941333333,0.000032381000000,0.000032385666667 +0.000019344000000,0.000055036000000,0.000035151000000,0.000015788500000,0.000032122333333 +0.000020134000000,0.000036468000000,0.000030937000000,0.000015591000000,0.000031990666667 +0.000019541500000,0.000031858666667,0.000030542333333,0.000015788500000,0.000032122333333 +0.000020134000000,0.000031990666667,0.000066097666667,0.000015788500000,0.000031859000000 +0.000019541500000,0.000031727333333,0.000035283000000,0.000015986000000,0.000032254333333 +0.000019541500000,0.000031727000000,0.000030673666667,0.000015591000000,0.000032122333333 +0.000020134000000,0.000032122333333,0.000029488666667,0.000015788500000,0.000044237666667 +0.000019541500000,0.000031595666667,0.000030542000000,0.000015986000000,0.000032254000000 +0.000019936500000,0.000031332000000,0.000030673666667,0.000015788500000,0.000032517333333 +0.000019344000000,0.000056221000000,0.000030805333333,0.000015788500000,0.000032386000000 +0.000019344000000,0.000032122333333,0.000030937333333,0.000015788000000,0.000032385666667 +0.000020134000000,0.000031990666667,0.000037653333333,0.000015986000000,0.000032254000000 +0.000020134500000,0.000032122333333,0.000036468000000,0.000015986000000,0.000032254000000 +0.000019541500000,0.000031990333333,0.000030673666667,0.000015591000000,0.000076632666667 +0.000020134000000,0.000031727000000,0.000030805666667,0.000015788500000,0.000032649000000 +0.000019541500000,0.000031727000000,0.000030673666667,0.000015986000000,0.000032254000000 +0.000020726500000,0.000031727000000,0.000030937000000,0.000016183500000,0.000032254333333 +0.000019541500000,0.000043842333333,0.000030673666667,0.000015986000000,0.000032254000000 +0.000040282000000,0.000031595666667,0.000030674000000,0.000015788000000,0.000032385666667 +0.000041072500000,0.000031595666667,0.000030805666667,0.000015788500000,0.000031859000000 +0.000054504500000,0.000031990666667,0.000049373333333,0.000015788500000,0.000031859000000 +0.000059640500000,0.000031727333333,0.000035546000000,0.000015788500000,0.000032386000000 +0.000020726500000,0.000031727333333,0.000030805333333,0.000015986000000,0.000044500666667 +0.000030010500000,0.000031990666667,0.000030674000000,0.000015788500000,0.000032517333333 +0.000054504500000,0.000031990666667,0.000029356666667,0.000015986000000,0.000032254000000 +0.000025072500000,0.000031595666667,0.000030278666667,0.000015788500000,0.000031990666667 +0.000018356000000,0.000054772666667,0.000030805666667,0.000014998500000,0.000031990666667 +0.000018356500000,0.000031464000000,0.000030937000000,0.000014998500000,0.000032254000000 +0.000045418000000,0.000031464000000,0.000031068666667,0.000014800500000,0.000031990666667 +0.000025665000000,0.000031595333333,0.000041867333333,0.000014998000000,0.000032122333333 +0.000018949000000,0.000031727000000,0.000031068666667,0.000014998500000,0.000031990666667 +0.000018751500000,0.000031727000000,0.000031069000000,0.000021516500000,0.000044106000000 +0.000018356500000,0.000031990666667,0.000030805666667,0.000014801000000,0.000032254000000 +0.000018356000000,0.000032122333333,0.000030673666667,0.000014801000000,0.000032122333333 +0.000018356500000,0.000050426666667,0.000030673666667,0.000014800500000,0.000032122333333 +0.000018356500000,0.000031858666667,0.000030805666667,0.000014998500000,0.000031859000000 +0.000018949000000,0.000031727000000,0.000030674000000,0.000014998000000,0.000031859000000 +0.000018356500000,0.000031727000000,0.000030805333333,0.000014801000000,0.000031859000000 +0.000018949000000,0.000031727000000,0.000036599666667,0.000014998500000,0.000031990333333 +0.000018949000000,0.000031727333333,0.000068468000000,0.000014998000000,0.000032122333333 +0.000021121500000,0.000031858666667,0.000035546333333,0.000014998500000,0.000056221000000 +0.000018948500000,0.000031990333333,0.000031200333333,0.000015393500000,0.000036468000000 +0.000018949000000,0.000031595333333,0.000031069000000,0.000025072500000,0.000031859000000 +0.000018356500000,0.000054641000000,0.000030805666667,0.000050159000000,0.000038443333333 +0.000018356500000,0.000032122333333,0.000031068666667,0.000050554000000,0.000042657333333 +0.000018751500000,0.000031595666667,0.000030937000000,0.000049171000000,0.000032385666667 +0.000018356500000,0.000031464000000,0.000036994666667,0.000041665000000,0.000032122333333 +0.000018356500000,0.000043052333333,0.000035546000000,0.000016381000000,0.000044105666667 +0.000018949000000,0.000036731666667,0.000030805333333,0.000022702000000,0.000031727000000 +0.000018949000000,0.000032122333333,0.000029620333333,0.000016183500000,0.000031858666667 +0.000018356000000,0.000031595666667,0.000030674000000,0.000014801000000,0.000032122333333 +0.000018949000000,0.000054377333333,0.000030674000000,0.000014998500000,0.000031727333333 +0.000018751500000,0.000031464000000,0.000030805333333,0.000014800500000,0.000031990666667 +0.000018356500000,0.000031727333333,0.000030410333333,0.000014998500000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000030410333333,0.000024479500000,0.000031990666667 +0.000018751500000,0.000031727333333,0.000030805333333,0.000014801000000,0.000032254000000 +0.000019541500000,0.000031727333333,0.000084138666667,0.000014800500000,0.000055431000000 +0.000018948500000,0.000031727333333,0.000092171666667,0.000015986000000,0.000032254000000 +0.000018949000000,0.000031595666667,0.000094937000000,0.000014998000000,0.000031990666667 +0.000018751000000,0.000038443333333,0.000049768333333,0.000014801000000,0.000032254000000 +0.000018554000000,0.000036336333333,0.000040287000000,0.000015591000000,0.000031990666667 +0.000018949000000,0.000031727333333,0.000030542000000,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031727333333,0.000030410333333,0.000014801000000,0.000031990666667 +0.000018356500000,0.000031727333333,0.000030542333333,0.000014800500000,0.000032122333333 +0.000018949000000,0.000031463666667,0.000030542333333,0.000014800500000,0.000050295000000 +0.000018356500000,0.000031463666667,0.000030410333333,0.000031788500000,0.000032254000000 +0.000018356000000,0.000031727333333,0.000030410333333,0.000014800500000,0.000031990666667 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015393500000,0.000032254000000 +0.000018949000000,0.000057406333333,0.000037258000000,0.000014603000000,0.000031727333333 +0.000018949000000,0.000031727333333,0.000030674000000,0.000014800500000,0.000032122333333 +0.000018949000000,0.000031595666667,0.000030673666667,0.000014998500000,0.000031990666667 +0.000018356000000,0.000031332333333,0.000030805333333,0.000014998000000,0.000032517333333 +0.000019541500000,0.000031464000000,0.000030542000000,0.000014998000000,0.000032385666667 +0.000018949000000,0.000031463666667,0.000030410333333,0.000015196000000,0.000055299333333 +0.000018949000000,0.000031727000000,0.000030410333333,0.000014801000000,0.000032517666667 +0.000018356500000,0.000031595666667,0.000030278666667,0.000014800500000,0.000032254000000 +0.000018356500000,0.000031595666667,0.000030410666667,0.000024677500000,0.000032254000000 +0.000018356500000,0.000059250000000,0.000030542333333,0.000015393000000,0.000031859000000 +0.000018949000000,0.000031595666667,0.000052270333333,0.000014801000000,0.000032385666667 +0.000018356500000,0.000031464000000,0.000030673666667,0.000015393500000,0.000032517333333 +0.000018949000000,0.000031464000000,0.000030674000000,0.000014998500000,0.000032254000000 +0.000018356500000,0.000031595333333,0.000030542333333,0.000014801000000,0.000044369333333 +0.000018356500000,0.000031332000000,0.000030410333333,0.000014800500000,0.000032122333333 +0.000018751500000,0.000031727333333,0.000030410333333,0.000021912000000,0.000032122333333 +0.000018751500000,0.000031595666667,0.000030673666667,0.000014998000000,0.000032122333333 +0.000019541500000,0.000043842666667,0.000030410333333,0.000014801000000,0.000032122000000 +0.000018948500000,0.000031332333333,0.000030542000000,0.000014998000000,0.000032517333333 +0.000018356500000,0.000031463666667,0.000041867000000,0.000031591000000,0.000032254000000 +0.000018751000000,0.000031595666667,0.000030674000000,0.000014998000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000030278666667,0.000015591000000,0.000032122333333 +0.000018356000000,0.000031727333333,0.000030542000000,0.000014998500000,0.000063595333333 +0.000018949000000,0.000031727333333,0.000030542000000,0.000014603000000,0.000071760000000 +0.000018949000000,0.000031727333333,0.000030673666667,0.000015196000000,0.000099809333333 +0.000018356500000,0.000031859000000,0.000030805333333,0.000015590500000,0.000103628333333 +0.000025270000000,0.000091776666667,0.000030542333333,0.000014998500000,0.000034229333333 +0.000018751500000,0.000094015333333,0.000030674000000,0.000014800500000,0.000036863000000 +0.000018751500000,0.000091645000000,0.000042130333333,0.000014801000000,0.000032122333333 +0.000018949000000,0.000051085333333,0.000030673666667,0.000014603500000,0.000031990666667 +0.000018949000000,0.000037258000000,0.000030674000000,0.000031591000000,0.000031990666667 +0.000018356500000,0.000031858666667,0.000030805666667,0.000014801000000,0.000032122333333 +0.000018356500000,0.000031858666667,0.000030542000000,0.000015196000000,0.000032254000000 +0.000018948500000,0.000031858666667,0.000030542000000,0.000014998000000,0.000044501000000 +0.000018554000000,0.000031595333333,0.000030937000000,0.000014998500000,0.000032517333333 +0.000018948500000,0.000031727000000,0.000030542000000,0.000014801000000,0.000032254000000 +0.000019344000000,0.000031727333333,0.000030805666667,0.000015195500000,0.000032122333333 +0.000018356000000,0.000031595666667,0.000037126333333,0.000014998500000,0.000032254000000 +0.000018949000000,0.000037521666667,0.000040682000000,0.000014998500000,0.000031727333333 +0.000018751500000,0.000031595666667,0.000030937000000,0.000014998000000,0.000031859000000 +0.000018356500000,0.000031727333333,0.000029488666667,0.000014998500000,0.000032122333333 +0.000018356000000,0.000031464000000,0.000030937000000,0.000014800500000,0.000031990333333 +0.000018356500000,0.000031595333333,0.000031069000000,0.000014801000000,0.000054904000000 +0.000018949000000,0.000031595333333,0.000030674000000,0.000014998500000,0.000031990666667 +0.000018554000000,0.000031858666667,0.000037653000000,0.000014998000000,0.000032254000000 +0.000018751000000,0.000031595666667,0.000041604000000,0.000014801000000,0.000032122333333 +0.000018554000000,0.000037916666667,0.000052007000000,0.000014801000000,0.000032122333333 +0.000034949000000,0.000041735666667,0.000029752000000,0.000014800500000,0.000031990666667 +0.000018949000000,0.000031727333333,0.000030542000000,0.000014801000000,0.000032122333333 +0.000018356500000,0.000031727333333,0.000030673666667,0.000014801000000,0.000031859000000 +0.000018356500000,0.000031332000000,0.000030673666667,0.000014800500000,0.000044500666667 +0.000018356000000,0.000031990333333,0.000030805666667,0.000014998000000,0.000032254000000 +0.000018949000000,0.000031858666667,0.000030542000000,0.000014998500000,0.000032122333333 +0.000018356000000,0.000031595333333,0.000031068666667,0.000014800500000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000030410333333,0.000015393500000,0.000032385666667 +0.000018356000000,0.000043447666667,0.000054772666667,0.000014801000000,0.000031990666667 +0.000018949000000,0.000031727333333,0.000030805333333,0.000014800500000,0.000032386000000 +0.000022899500000,0.000031595333333,0.000030805333333,0.000014603000000,0.000032122333333 +0.000018554000000,0.000031727000000,0.000030674000000,0.000021912000000,0.000032385666667 +0.000018356500000,0.000031595333333,0.000030674000000,0.000016183500000,0.000044501000000 +0.000018356500000,0.000031595333333,0.000030805333333,0.000015788500000,0.000032517333333 +0.000018356500000,0.000031727000000,0.000030542000000,0.000015788500000,0.000032385666667 +0.000018949000000,0.000031595666667,0.000030410333333,0.000015986000000,0.000032385666667 +0.000018949000000,0.000031727333333,0.000030937333333,0.000015788500000,0.000032254000000 +0.000018356500000,0.000046871333333,0.000047793333333,0.000015788500000,0.000031990666667 +0.000018554000000,0.000031859000000,0.000029356666667,0.000015788500000,0.000031858666667 +0.000018356500000,0.000032122333333,0.000030410666667,0.000015788500000,0.000031990333333 +0.000018356500000,0.000031858666667,0.000030937333333,0.000015788000000,0.000032254000000 +0.000018949000000,0.000031727000000,0.000030937000000,0.000015788500000,0.000059645000000 +0.000019541500000,0.000031858666667,0.000031069000000,0.000015986000000,0.000032122333333 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015788500000,0.000032254000000 +0.000018949000000,0.000031463666667,0.000030673666667,0.000015788500000,0.000032254000000 +0.000018356500000,0.000031727000000,0.000030673666667,0.000015986000000,0.000032254000000 +0.000018949000000,0.000059513000000,0.000042920666667,0.000015986000000,0.000032122333333 +0.000019541500000,0.000031727333333,0.000030937000000,0.000015788500000,0.000031990666667 +0.000018949000000,0.000031727333333,0.000030674000000,0.000019344000000,0.000032385666667 +0.000018948500000,0.000031859000000,0.000030805333333,0.000023294500000,0.000044237666667 +0.000018356500000,0.000031859000000,0.000030805333333,0.000025072500000,0.000031990666667 +0.000018949000000,0.000032122333333,0.000031069000000,0.000015986000000,0.000032254000000 +0.000018949000000,0.000031858666667,0.000030674000000,0.000015986000000,0.000032122333333 +0.000018356500000,0.000031858666667,0.000030805333333,0.000015986000000,0.000032122333333 +0.000018949000000,0.000043710666667,0.000030805333333,0.000015788500000,0.000031990666667 +0.000018949000000,0.000031595666667,0.000042394000000,0.000015788500000,0.000032254000000 +0.000018949000000,0.000031859000000,0.000031068666667,0.000016183500000,0.000038575000000 +0.000018949000000,0.000031859000000,0.000030673666667,0.000015986000000,0.000049373333333 +0.000018949000000,0.000031727333333,0.000030937333333,0.000015788500000,0.000032254000000 +0.000018356500000,0.000031727333333,0.000030673666667,0.000015986000000,0.000032254000000 +0.000018751500000,0.000031727333333,0.000030410333333,0.000015788500000,0.000032254000000 +0.000018949000000,0.000031464000000,0.000030805333333,0.000016183500000,0.000032122333333 +0.000018356500000,0.000038180000000,0.000030673666667,0.000015986000000,0.000032254000000 +0.000019541500000,0.000048714666667,0.000029488666667,0.000015986000000,0.000032649333333 +0.000018949000000,0.000031727000000,0.000037389666667,0.000016183500000,0.000032517333333 +0.000018356500000,0.000031727000000,0.000040682000000,0.000016183500000,0.000032385666667 +0.000027442500000,0.000031727333333,0.000030805333333,0.000015788500000,0.000055430666667 +0.000028430500000,0.000031727333333,0.000030542000000,0.000015788500000,0.000036863000000 +0.000019936500000,0.000031990666667,0.000030542000000,0.000016381000000,0.000031859000000 +0.000020134500000,0.000031727000000,0.000030937333333,0.000015788500000,0.000032254000000 +0.000019541500000,0.000031727333333,0.000030410333333,0.000015788500000,0.000032122333333 +0.000057665000000,0.000055036000000,0.000030805333333,0.000016578500000,0.000032122333333 +0.000037714500000,0.000036336333333,0.000030542000000,0.000015591000000,0.000032122333333 +0.000018751500000,0.000031858666667,0.000041867000000,0.000015788500000,0.000031859000000 +0.000018751500000,0.000031858666667,0.000030805666667,0.000015788500000,0.000038838333333 +0.000018949000000,0.000031595333333,0.000030673666667,0.000015986000000,0.000032254000000 +0.000018751500000,0.000031727000000,0.000030673666667,0.000015788500000,0.000031990666667 +0.000035739500000,0.000031595333333,0.000030673666667,0.000015788500000,0.000031859000000 +0.000025665000000,0.000031859000000,0.000030805333333,0.000015986000000,0.000032254000000 +0.000018356000000,0.000038443333333,0.000030542333333,0.000015788500000,0.000031990666667 +0.000018949000000,0.000031727333333,0.000030674000000,0.000015788500000,0.000032122333333 +0.000018356500000,0.000031859000000,0.000030937000000,0.000015591000000,0.000032122333333 +0.000018356500000,0.000031990666667,0.000037126333333,0.000015788500000,0.000031990666667 +0.000018356000000,0.000031859000000,0.000035151333333,0.000015788500000,0.000044237666667 +0.000018159000000,0.000031595666667,0.000030542000000,0.000015788500000,0.000032385666667 +0.000018751500000,0.000031595666667,0.000030673666667,0.000015986000000,0.000032122333333 +0.000018356500000,0.000031859000000,0.000030673666667,0.000015788500000,0.000032385666667 +0.000018356000000,0.000031859000000,0.000030542000000,0.000015986000000,0.000032385666667 +0.000019541500000,0.000043974333333,0.000030542000000,0.000015788500000,0.000032254000000 +0.000019541500000,0.000031727333333,0.000030410333333,0.000015788500000,0.000032122333333 +0.000018554000000,0.000031859000000,0.000030542333333,0.000015590500000,0.000032254000000 +0.000018356000000,0.000031990666667,0.000030410333333,0.000015986000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000079661333333,0.000015788500000,0.000055694000000 +0.000018949000000,0.000031990666667,0.000087167666667,0.000015986000000,0.000032254000000 +0.000018949000000,0.000031595666667,0.000030937000000,0.000015788500000,0.000032122333333 +0.000018356500000,0.000031463666667,0.000030805333333,0.000015788500000,0.000032122333333 +0.000018751500000,0.000031727000000,0.000030674000000,0.000015788500000,0.000032122333333 +0.000018554000000,0.000054640666667,0.000030805666667,0.000015788000000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000041998666667,0.000015788500000,0.000032254000000 +0.000018356000000,0.000031595666667,0.000030674000000,0.000015788500000,0.000031990666667 +0.000019541500000,0.000031990666667,0.000030674000000,0.000015788500000,0.000043842333333 +0.000018356500000,0.000031727333333,0.000030410333333,0.000015788500000,0.000032122333333 +0.000018356500000,0.000031595666667,0.000030410333333,0.000015788500000,0.000032254000000 +0.000018356500000,0.000031200666667,0.000030410333333,0.000015788500000,0.000032385666667 +0.000018356500000,0.000031463666667,0.000030673666667,0.000015590500000,0.000032254000000 +0.000018949000000,0.000031463666667,0.000030805333333,0.000015788000000,0.000032649000000 +0.000018159000000,0.000042789000000,0.000030805666667,0.000015788500000,0.000032385666667 +0.000018356500000,0.000031595666667,0.000037521333333,0.000015986000000,0.000032254000000 +0.000017961000000,0.000031727333333,0.000035546333333,0.000015986000000,0.000032517666667 +0.000018356500000,0.000031859000000,0.000030542000000,0.000015986000000,0.000044105666667 +0.000018356500000,0.000031595666667,0.000030805333333,0.000015788500000,0.000032122333333 +0.000018949000000,0.000031464000000,0.000030805333333,0.000015788500000,0.000032254000000 +0.000018554000000,0.000031595666667,0.000030805666667,0.000015788000000,0.000032517333333 +0.000018949000000,0.000031464000000,0.000030674000000,0.000015788500000,0.000032254000000 +0.000018949000000,0.000031595666667,0.000030542000000,0.000015591000000,0.000032385666667 +0.000017961500000,0.000040550333333,0.000030673666667,0.000015788500000,0.000032122333333 +0.000018949000000,0.000031332000000,0.000042394000000,0.000015986000000,0.000031859000000 +0.000018356000000,0.000031595333333,0.000035809333333,0.000015788500000,0.000032122333333 +0.000018949000000,0.000031727333333,0.000031069000000,0.000015788500000,0.000098097666667 +0.000018553500000,0.000031859000000,0.000030805333333,0.000016381000000,0.000048188333333 +0.000018356500000,0.000031859000000,0.000030673666667,0.000015986000000,0.000032517333333 +0.000018948500000,0.000031727000000,0.000030937333333,0.000016381000000,0.000032517333333 +0.000018949000000,0.000031464000000,0.000029357000000,0.000015788500000,0.000032385666667 +0.000029023000000,0.000044764333333,0.000030674000000,0.000016381000000,0.000032254000000 +0.000060430500000,0.000089406333333,0.000030937333333,0.000016183500000,0.000047003000000 +0.000052924000000,0.000057801333333,0.000030542000000,0.000015788500000,0.000032385666667 +0.000047986000000,0.000031858666667,0.000042262333333,0.000015788500000,0.000032517333333 +0.000019541500000,0.000031990666667,0.000030673666667,0.000015986000000,0.000032649000000 +0.000020726500000,0.000031727333333,0.000030673666667,0.000015788500000,0.000032254000000 +0.000019937000000,0.000038443333333,0.000029620333333,0.000015986000000,0.000032517333333 +0.000019936500000,0.000041735666667,0.000030542000000,0.000015788000000,0.000032385666667 +0.000019541500000,0.000031990666667,0.000030805666667,0.000015591000000,0.000032781000000 +0.000019344000000,0.000031595666667,0.000030805333333,0.000015591000000,0.000032517333333 +0.000020134000000,0.000031727333333,0.000030937000000,0.000015788500000,0.000055299333333 +0.000020134000000,0.000031727333333,0.000036863000000,0.000015788500000,0.000032122333333 +0.000020134000000,0.000032254000000,0.000032912666667,0.000015591000000,0.000032385666667 +0.000019541500000,0.000031859000000,0.000035151000000,0.000015788500000,0.000032254000000 +0.000019344000000,0.000031727333333,0.000030805666667,0.000015788000000,0.000032649000000 +0.000020134000000,0.000059776666667,0.000030805666667,0.000021319000000,0.000032385666667 +0.000019344000000,0.000031727333333,0.000030805333333,0.000014998500000,0.000032517333333 +0.000019936500000,0.000031727333333,0.000030542000000,0.000014998500000,0.000032254000000 +0.000019541500000,0.000031595666667,0.000030542000000,0.000014800500000,0.000044632666667 +0.000019146500000,0.000031990666667,0.000030805333333,0.000014998500000,0.000032385666667 +0.000019936500000,0.000031990666667,0.000030674000000,0.000014801000000,0.000032517333333 +0.000020134000000,0.000031727333333,0.000046871000000,0.000022504500000,0.000032780666667 +0.000019541500000,0.000031859000000,0.000031069000000,0.000014998000000,0.000032385666667 +0.000019344000000,0.000054772333333,0.000031068666667,0.000014998500000,0.000032254000000 +0.000019146500000,0.000036204666667,0.000029488666667,0.000015196000000,0.000032254000000 +0.000020134000000,0.000031464000000,0.000030542000000,0.000014603000000,0.000032122333333 +0.000019936500000,0.000031463666667,0.000031069000000,0.000014998500000,0.000032254000000 +0.000019541500000,0.000031858666667,0.000030937333333,0.000014998500000,0.000060435000000 +0.000020134000000,0.000031595333333,0.000031068666667,0.000014800500000,0.000032649000000 +0.000019739000000,0.000031595333333,0.000030673666667,0.000014998500000,0.000032386000000 +0.000019541500000,0.000031727333333,0.000035941000000,0.000014603500000,0.000032122333333 +0.000019936500000,0.000031332333333,0.000030805666667,0.000015788500000,0.000032254000000 +0.000019541500000,0.000062805333333,0.000031069000000,0.000031591000000,0.000032385666667 +0.000020134500000,0.000034097666667,0.000067809333333,0.000014998500000,0.000032122333333 +0.000019936500000,0.000033570666667,0.000035941333333,0.000014998000000,0.000032254000000 +0.000019936500000,0.000033175666667,0.000030937333333,0.000015591000000,0.000044237666667 +0.000019936500000,0.000033044333333,0.000030937000000,0.000014998000000,0.000032254000000 +0.000019541500000,0.000032912333333,0.000049241666667,0.000014801000000,0.000032385666667 +0.000019541500000,0.000032649333333,0.000035282666667,0.000015591000000,0.000032254000000 +0.000020134000000,0.000032385666667,0.000030805666667,0.000014998500000,0.000032649000000 +0.000019541500000,0.000063332333333,0.000030805666667,0.000014801000000,0.000032122333333 +0.000020134000000,0.000032649000000,0.000031200333333,0.000014998500000,0.000031859000000 +0.000019344000000,0.000032912666667,0.000030805333333,0.000014998000000,0.000032122333333 +0.000019936500000,0.000032912333333,0.000030542333333,0.000024677500000,0.000032122333333 +0.000019344000000,0.000032649333333,0.000030542333333,0.000014998000000,0.000061488666667 +0.000019541500000,0.000032254000000,0.000030805333333,0.000015196000000,0.000042657333333 +0.000020134000000,0.000032254000000,0.000042262333333,0.000014998500000,0.000032649333333 +0.000019344000000,0.000032254000000,0.000030937333333,0.000014800500000,0.000032254000000 +0.000019541500000,0.000043316000000,0.000030805333333,0.000014800500000,0.000032385666667 +0.000020134000000,0.000044105666667,0.000029620333333,0.000014998500000,0.000032517666667 +0.000019541500000,0.000036731333333,0.000030937000000,0.000014801000000,0.000032122333333 +0.000020134500000,0.000032517333333,0.000030805666667,0.000014998000000,0.000032122333333 +0.000019739000000,0.000031990666667,0.000030937000000,0.000014801000000,0.000044106000000 +0.000019541500000,0.000032386000000,0.000030805333333,0.000014998500000,0.000032385666667 +0.000019936500000,0.000032517333333,0.000030805333333,0.000014998000000,0.000032385666667 +0.000019541500000,0.000032122333333,0.000043711000000,0.000014998500000,0.000032386000000 +0.000027640500000,0.000055036000000,0.000040418666667,0.000014801000000,0.000032517333333 +0.000020727000000,0.000032385666667,0.000031068666667,0.000014998000000,0.000032649000000 +0.000019936500000,0.000032386000000,0.000030805666667,0.000014998500000,0.000031990666667 +0.000019344000000,0.000032517333333,0.000030937000000,0.000014801000000,0.000032122333333 +0.000020134000000,0.000031990666667,0.000031068666667,0.000014998500000,0.000032385666667 +0.000019541500000,0.000032122333333,0.000030674000000,0.000014998000000,0.000048715000000 +0.000019936500000,0.000032122333333,0.000030937333333,0.000014801000000,0.000032385666667 +0.000019541500000,0.000032385666667,0.000030937000000,0.000015393500000,0.000032385666667 +0.000020134000000,0.000032254000000,0.000053850666667,0.000014800500000,0.000032254000000 +0.000019936500000,0.000055562666667,0.000035678000000,0.000014801000000,0.000032385666667 +0.000019936500000,0.000032254000000,0.000030410333333,0.000022307000000,0.000032385666667 +0.000020134000000,0.000032385666667,0.000030805333333,0.000014998000000,0.000032517333333 +0.000019541500000,0.000032254000000,0.000030673666667,0.000014998500000,0.000032385666667 +0.000019937000000,0.000032254000000,0.000030805666667,0.000015590500000,0.000054114000000 +0.000020134000000,0.000032386000000,0.000030805666667,0.000015393500000,0.000051348333333 +0.000019541500000,0.000032254000000,0.000030410333333,0.000015393500000,0.000041735333333 +0.000020134000000,0.000032122333333,0.000030542000000,0.000014998500000,0.000032386000000 +0.000045220500000,0.000055036000000,0.000057142666667,0.000014998500000,0.000032254000000 +0.000019739000000,0.000032122333333,0.000033834333333,0.000015196000000,0.000032122333333 +0.000019739000000,0.000032254000000,0.000036468000000,0.000014800500000,0.000032649000000 +0.000020134000000,0.000032385666667,0.000030410333333,0.000014801000000,0.000032649000000 +0.000020134000000,0.000032517666667,0.000030674000000,0.000024677500000,0.000048978333333 +0.000019936500000,0.000032122333333,0.000029488666667,0.000015591000000,0.000032517333333 +0.000019541500000,0.000032122333333,0.000030410333333,0.000014801000000,0.000032386000000 +0.000019541500000,0.000032254000000,0.000030542333333,0.000014801000000,0.000032122333333 +0.000019541500000,0.000055431000000,0.000030805666667,0.000014998000000,0.000032385666667 +0.000020134500000,0.000036731333333,0.000035282666667,0.000014998500000,0.000032517333333 +0.000020134000000,0.000032122333333,0.000030805666667,0.000014998500000,0.000032517666667 +0.000019937000000,0.000032385666667,0.000036995000000,0.000014998500000,0.000032254000000 +0.000020331500000,0.000032122333333,0.000058328000000,0.000015195500000,0.000044369333333 +0.000019542000000,0.000031990333333,0.000030805333333,0.000014998500000,0.000032254000000 +0.000019541500000,0.000032122333333,0.000030805333333,0.000014801000000,0.000032122333333 +0.000019344000000,0.000032254000000,0.000030937333333,0.000014998000000,0.000032122333333 +0.000019739000000,0.000038706666667,0.000030673666667,0.000014998500000,0.000032254000000 +0.000019541500000,0.000041867000000,0.000053719000000,0.000014998500000,0.000032385666667 +0.000019344000000,0.000032385666667,0.000030937000000,0.000014998000000,0.000032385666667 +0.000019344000000,0.000032122333333,0.000031069000000,0.000014801000000,0.000032386000000 +0.000019541500000,0.000032254000000,0.000030937333333,0.000014998500000,0.000032254000000 +0.000020134500000,0.000031859000000,0.000030805333333,0.000014800500000,0.000055299333333 +0.000020924000000,0.000032122333333,0.000030542000000,0.000014801000000,0.000032254000000 +0.000019936500000,0.000031990666667,0.000030674000000,0.000014998000000,0.000032385666667 +0.000019541500000,0.000032122333333,0.000030542333333,0.000014998500000,0.000032122333333 +0.000020726500000,0.000060171666667,0.000030805666667,0.000014801000000,0.000031990333333 diff --git a/docs/source/media/bench/lua bench tests sol.csv b/docs/source/media/bench/lua bench tests sol.csv new file mode 100644 index 00000000..a0ea3287 --- /dev/null +++ b/docs/source/media/bench/lua bench tests sol.csv @@ -0,0 +1,2001 @@ +"sol - global get","sol - many userdata variables access","sol - member function calls","sol - c function","sol - global set","sol - table chained get","sol - table get","sol - c function through lua","sol - table chained set","sol - table set","sol - lua function","sol - member function calls (simple)","sol - userdata variable access","sol - many userdata variables access last registered","sol - userdata variable access (simple)","sol - many userdata variable access (simple)","sol - many userdata variables access last registered (simple)","sol - multi return","sol - stateful c function","sol - base from derived","sol - return userdata","sol - get optional","sol - base call on derived" +0.000017960500000,0.011329541000000,0.000129155000000,0.000040266000000,0.000015985000000,0.000043032000000,0.000027046500000,0.000048563000000,0.000101896000000,0.000023293500000,0.000039476000000,0.000103871000000,0.000165106000000,0.000174587000000,0.000171822000000,0.011516405000000,0.000180513000000,0.000056464000000,0.000049353000000,0.000083328000000,0.000159970000000,0.000028627000000,0.000421895000000 +0.000017960500000,0.011122924000000,0.000113748000000,0.000038686000000,0.000016577500000,0.000044217000000,0.000026059000000,0.000046983000000,0.000045797000000,0.000023294000000,0.000039476000000,0.000109797000000,0.000161945000000,0.000170636000000,0.000204612000000,0.011764899000000,0.000197106000000,0.000054883000000,0.000049352000000,0.000139031000000,0.000146538000000,0.000028429500000,0.000459031000000 +0.000018355500000,0.011198776000000,0.000194735000000,0.000075822000000,0.000016577500000,0.000043032000000,0.000026256500000,0.000046982000000,0.000048563000000,0.000022898500000,0.000038686000000,0.000107031000000,0.000200662000000,0.000169847000000,0.000169451000000,0.011496258000000,0.000237402000000,0.000055673000000,0.000051328000000,0.000083723000000,0.000140611000000,0.000028232000000,0.000409648000000 +0.000017762500000,0.011518776000000,0.000129156000000,0.000075427000000,0.000015392500000,0.000041452000000,0.000026454500000,0.000046982000000,0.000048168000000,0.000022503500000,0.000039476000000,0.000103081000000,0.000179723000000,0.000169056000000,0.000169451000000,0.011968751000000,0.000199476000000,0.000055279000000,0.000049353000000,0.000085698000000,0.000138241000000,0.000028231500000,0.000445204000000 +0.000017763000000,0.011280554000000,0.000127575000000,0.000108217000000,0.000015590000000,0.000043032000000,0.000026256500000,0.000047378000000,0.000048167000000,0.000023293500000,0.000039476000000,0.000174588000000,0.000161550000000,0.000171426000000,0.000171427000000,0.011476504000000,0.000204217000000,0.000055674000000,0.000050538000000,0.000083328000000,0.000142982000000,0.000046207500000,0.000417155000000 +0.000018157500000,0.011146627000000,0.000118094000000,0.000069106000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000047772000000,0.000022899000000,0.000039082000000,0.000115723000000,0.000160760000000,0.000173006000000,0.000167871000000,0.011662973000000,0.000204217000000,0.000055278000000,0.000049353000000,0.000085303000000,0.000140612000000,0.000028231500000,0.000444019000000 +0.000019738500000,0.011317294000000,0.000127180000000,0.000037896000000,0.000050553000000,0.000042241000000,0.000027244500000,0.000063575000000,0.000046587000000,0.000021910500000,0.000039081000000,0.000109402000000,0.000161550000000,0.000170242000000,0.000253204000000,0.011836010000000,0.000233056000000,0.000055674000000,0.000049748000000,0.000084118000000,0.000143772000000,0.000028232000000,0.000412019000000 +0.000017762500000,0.011203517000000,0.000128365000000,0.000038291000000,0.000015590000000,0.000104662000000,0.000026849000000,0.000047772000000,0.000046982000000,0.000022701000000,0.000039476000000,0.000118093000000,0.000198291000000,0.000170637000000,0.000169846000000,0.011950578000000,0.000202241000000,0.000055278000000,0.000050538000000,0.000085303000000,0.000222785000000,0.000028232000000,0.000445994000000 +0.000018948000000,0.010998085000000,0.000199081000000,0.000037896000000,0.000015392500000,0.000042636000000,0.000026257000000,0.000047773000000,0.000048563000000,0.000023096000000,0.000039476000000,0.000115723000000,0.000161945000000,0.000170637000000,0.000169847000000,0.011752653000000,0.000203427000000,0.000054884000000,0.000049353000000,0.000084513000000,0.000154439000000,0.000028232000000,0.000487870000000 +0.000018750500000,0.011285689000000,0.000129550000000,0.000054488000000,0.000015590000000,0.000042636000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000040676500000,0.000039081000000,0.000107427000000,0.000163525000000,0.000171822000000,0.000170637000000,0.011433838000000,0.000204611000000,0.000056859000000,0.000049353000000,0.000083723000000,0.000139427000000,0.000028232000000,0.000406884000000 +0.000017565000000,0.011638875000000,0.000110192000000,0.000057649000000,0.000015787500000,0.000042242000000,0.000043837000000,0.000047772000000,0.000047378000000,0.000022701000000,0.000039476000000,0.000137056000000,0.000165500000000,0.000169846000000,0.000189994000000,0.011504158000000,0.000506439000000,0.000055278000000,0.000048563000000,0.000085303000000,0.000139031000000,0.000028232000000,0.000409254000000 +0.000035935500000,0.011216949000000,0.000129550000000,0.000107427000000,0.000016380000000,0.000042637000000,0.000026651500000,0.000046983000000,0.000047377000000,0.000022701000000,0.000039871000000,0.000116513000000,0.000160760000000,0.000170636000000,0.000170637000000,0.012170627000000,0.000231871000000,0.000054884000000,0.000049353000000,0.000086094000000,0.000148118000000,0.000028034500000,0.001140118000000 +0.000018947500000,0.010950282000000,0.000128365000000,0.000057649000000,0.000015787500000,0.000042241000000,0.000026849500000,0.000046982000000,0.000048563000000,0.000021911000000,0.000039081000000,0.000107426000000,0.000200266000000,0.000170242000000,0.000169846000000,0.011338628000000,0.000247278000000,0.000055673000000,0.000049353000000,0.000084513000000,0.000140217000000,0.000028232000000,0.000439278000000 +0.000018750500000,0.011004010000000,0.000127180000000,0.000040662000000,0.000016775000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000163131000000,0.000173006000000,0.000169451000000,0.011395517000000,0.000203032000000,0.000055279000000,0.000048958000000,0.000081748000000,0.000137451000000,0.000028231500000,0.000450735000000 +0.000018948000000,0.010936455000000,0.000158390000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000047773000000,0.000047772000000,0.000022898500000,0.000078587000000,0.000115723000000,0.000163526000000,0.000171032000000,0.000168662000000,0.011661392000000,0.000199871000000,0.000054884000000,0.000048563000000,0.000086489000000,0.000139032000000,0.000028232000000,0.000413994000000 +0.000018553000000,0.011517985000000,0.000113353000000,0.000039871000000,0.000015787500000,0.000041452000000,0.000027047000000,0.000047377000000,0.000046982000000,0.000022701000000,0.000078587000000,0.000115328000000,0.000162340000000,0.000170241000000,0.000214093000000,0.011702874000000,0.000202242000000,0.000055674000000,0.000050143000000,0.000082142000000,0.000143773000000,0.000028232000000,0.000491031000000 +0.000018948000000,0.010940010000000,0.000115328000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000047377000000,0.000046982000000,0.000023096000000,0.000043032000000,0.000102686000000,0.000160760000000,0.000170636000000,0.000170241000000,0.011467023000000,0.000238587000000,0.000054884000000,0.000049748000000,0.000087278000000,0.000177352000000,0.000028232000000,0.000413599000000 +0.000018750000000,0.011113442000000,0.000128760000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000027244000000,0.000047378000000,0.000101896000000,0.000022899000000,0.000043427000000,0.000168662000000,0.000197896000000,0.000168661000000,0.000167871000000,0.011853787000000,0.000204217000000,0.000054883000000,0.000096365000000,0.000086488000000,0.000142982000000,0.000028231500000,0.000412414000000 +0.000018948000000,0.010962529000000,0.000129551000000,0.000038291000000,0.000016380000000,0.000042637000000,0.000026652000000,0.000046982000000,0.000046982000000,0.000022306000000,0.000058439000000,0.000118094000000,0.000165501000000,0.000172612000000,0.000170241000000,0.011803220000000,0.000201451000000,0.000056069000000,0.000102686000000,0.000166291000000,0.000142587000000,0.000028232000000,0.000409254000000 +0.000018158000000,0.011633344000000,0.000131130000000,0.000040266000000,0.000016380000000,0.000041846000000,0.000026256500000,0.000046982000000,0.000046192000000,0.000022306000000,0.000041847000000,0.000117698000000,0.000161155000000,0.000168266000000,0.000169451000000,0.012111763000000,0.000201847000000,0.000055278000000,0.000049747000000,0.000106241000000,0.000138242000000,0.000037911000000,0.000410834000000 +0.000018158000000,0.011123714000000,0.000124415000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000027244500000,0.000046983000000,0.000045798000000,0.000022899000000,0.000041451000000,0.000103081000000,0.000160760000000,0.000170241000000,0.000205797000000,0.011533788000000,0.000251229000000,0.000055674000000,0.000048957000000,0.000085698000000,0.000139031000000,0.000036330500000,0.000479574000000 +0.000018157500000,0.011105147000000,0.000112957000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000022306000000,0.000042241000000,0.000116909000000,0.000163920000000,0.000170636000000,0.000167871000000,0.012567269000000,0.000204612000000,0.000054884000000,0.000048562000000,0.000085303000000,0.000137846000000,0.000028232000000,0.000413994000000 +0.000017763000000,0.011078283000000,0.000132315000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000047377000000,0.000046587000000,0.000022898500000,0.000041452000000,0.000115723000000,0.000196316000000,0.000169056000000,0.000171032000000,0.012413590000000,0.000200266000000,0.000054883000000,0.000048958000000,0.000083723000000,0.000138637000000,0.000028232000000,0.000462192000000 +0.000018157500000,0.012108207000000,0.000131130000000,0.000041056000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000046982000000,0.000046192000000,0.000021910500000,0.000041847000000,0.000152463000000,0.000163920000000,0.000171822000000,0.000168266000000,0.012471664000000,0.000202242000000,0.000056069000000,0.000048958000000,0.000084908000000,0.000140216000000,0.000028232000000,0.000406883000000 +0.000018750500000,0.010987418000000,0.000130735000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000064760000000,0.000046982000000,0.000022503500000,0.000041846000000,0.000115723000000,0.000162340000000,0.000168661000000,0.000169847000000,0.011938726000000,0.000238982000000,0.000054883000000,0.000047773000000,0.000085698000000,0.000138637000000,0.000028232000000,0.000445599000000 +0.000017763000000,0.011131220000000,0.000201056000000,0.000040662000000,0.000015590000000,0.000061204000000,0.000027046500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000042637000000,0.000106637000000,0.000162340000000,0.000170242000000,0.000207377000000,0.011428702000000,0.000204217000000,0.000055674000000,0.000048958000000,0.000084908000000,0.000142192000000,0.000028232000000,0.000410834000000 +0.000018553000000,0.011177048000000,0.000112957000000,0.000054094000000,0.000015590000000,0.000042241000000,0.000079787500000,0.000046587000000,0.000047773000000,0.000022108000000,0.000041451000000,0.000107821000000,0.000160760000000,0.000170637000000,0.000169846000000,0.011719467000000,0.000201847000000,0.000090834000000,0.000049748000000,0.000132315000000,0.000145352000000,0.000028231500000,0.000496562000000 +0.000017762500000,0.011330726000000,0.000117698000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000071688500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000042636000000,0.000103476000000,0.000232266000000,0.000206982000000,0.000169846000000,0.011977442000000,0.000202242000000,0.000054884000000,0.000050143000000,0.000084908000000,0.000140217000000,0.000028232000000,0.000409648000000 +0.000017763000000,0.011248949000000,0.000113748000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000068725500000,0.000046982000000,0.000046192000000,0.000040281500000,0.000042242000000,0.000116118000000,0.000163920000000,0.000187230000000,0.000168267000000,0.011407763000000,0.000240168000000,0.000056069000000,0.000049748000000,0.000084909000000,0.000138636000000,0.000028232000000,0.000444809000000 +0.000018750000000,0.011067615000000,0.000127970000000,0.000040266000000,0.000016380000000,0.000042637000000,0.000036331000000,0.000046983000000,0.000046192000000,0.000022701000000,0.000041452000000,0.000116909000000,0.000160760000000,0.000171426000000,0.000206192000000,0.011676800000000,0.000204217000000,0.000055279000000,0.000049748000000,0.000083723000000,0.000143772000000,0.000028232000000,0.000408464000000 +0.000018355500000,0.010957393000000,0.000110192000000,0.000037500000000,0.000025269000000,0.000041451000000,0.000028627000000,0.000046587000000,0.000046588000000,0.000022503500000,0.000061204000000,0.000181303000000,0.000165106000000,0.000170241000000,0.000169452000000,0.011536948000000,0.000198685000000,0.000055279000000,0.000048562000000,0.000084513000000,0.000130340000000,0.000028231500000,0.000456266000000 +0.000018750500000,0.011241838000000,0.000209747000000,0.000037896000000,0.000024676500000,0.000042242000000,0.000033565000000,0.000046587000000,0.000048167000000,0.000023293500000,0.000041452000000,0.000102686000000,0.000161550000000,0.000170637000000,0.000169846000000,0.012108208000000,0.000202241000000,0.000054883000000,0.000048562000000,0.000086489000000,0.000134686000000,0.000028232000000,0.000412414000000 +0.000017762500000,0.011319270000000,0.000127970000000,0.000037895000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046587000000,0.000048167000000,0.000022306000000,0.000042241000000,0.000098735000000,0.000209353000000,0.000171032000000,0.000169452000000,0.011659023000000,0.000275723000000,0.000054884000000,0.000049353000000,0.000083328000000,0.000131920000000,0.000028232000000,0.000898734000000 +0.000026849500000,0.011608060000000,0.000129551000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000046983000000,0.000047773000000,0.000022701000000,0.000041451000000,0.000117698000000,0.000161550000000,0.000171427000000,0.000169056000000,0.011434232000000,0.000203821000000,0.000055673000000,0.000048168000000,0.000084118000000,0.000131130000000,0.000028231500000,0.000447574000000 +0.000044824500000,0.011373788000000,0.000113352000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000027047000000,0.000046982000000,0.000101500000000,0.000022108500000,0.000041451000000,0.000116908000000,0.000160760000000,0.000171032000000,0.000263476000000,0.011649936000000,0.000197105000000,0.000055674000000,0.000048563000000,0.000085304000000,0.000182884000000,0.000028232000000,0.000413994000000 +0.000017565000000,0.011095665000000,0.000110192000000,0.000040661000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000063575000000,0.000022306000000,0.000042637000000,0.000117303000000,0.000163525000000,0.000170241000000,0.000204217000000,0.012234232000000,0.000199871000000,0.000055278000000,0.000049748000000,0.000134291000000,0.000224760000000,0.000046207000000,0.000478784000000 +0.000017763000000,0.011482825000000,0.000129550000000,0.000037500000000,0.000016380000000,0.000042636000000,0.000026651500000,0.000046983000000,0.000046982000000,0.000021911000000,0.000041451000000,0.000102686000000,0.000163921000000,0.000169846000000,0.000170636000000,0.011741196000000,0.000283624000000,0.000054884000000,0.000049353000000,0.000088464000000,0.000145748000000,0.000028232000000,0.000477204000000 +0.000017762500000,0.011128455000000,0.000216464000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000034948000000,0.000047378000000,0.000046193000000,0.000022898500000,0.000042636000000,0.000115723000000,0.000235427000000,0.000170636000000,0.000170241000000,0.013423762000000,0.000204217000000,0.000055278000000,0.000047772000000,0.000082933000000,0.000130735000000,0.000028232000000,0.000425056000000 +0.000018158000000,0.011041147000000,0.000129946000000,0.000037500000000,0.000015589500000,0.000041847000000,0.000026849500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000043822000000,0.000109402000000,0.000163525000000,0.000170241000000,0.000204612000000,0.012432158000000,0.000201451000000,0.000054884000000,0.000048957000000,0.000084908000000,0.000184463000000,0.000028232000000,0.000434142000000 +0.000017762500000,0.011175467000000,0.000111377000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000021911000000,0.000056464000000,0.000115723000000,0.000165896000000,0.000168662000000,0.000169846000000,0.012250035000000,0.000191969000000,0.000055674000000,0.000049352000000,0.000082933000000,0.000159575000000,0.000028231500000,0.000407673000000 +0.000018158000000,0.011192059000000,0.000118489000000,0.000037500000000,0.000015787500000,0.000043427000000,0.000026454000000,0.000046983000000,0.000048562000000,0.000022108500000,0.000055279000000,0.000114933000000,0.000161945000000,0.000170637000000,0.000169451000000,0.011555516000000,0.000200266000000,0.000055673000000,0.000049352000000,0.000082538000000,0.000133106000000,0.000028232000000,0.000445600000000 +0.000018750500000,0.011124109000000,0.000128365000000,0.000037501000000,0.000015590000000,0.000043032000000,0.000026652000000,0.000046982000000,0.000047378000000,0.000022898500000,0.000041846000000,0.000115723000000,0.000162735000000,0.000191180000000,0.000169056000000,0.011688257000000,0.000204217000000,0.000075427000000,0.000048562000000,0.000084513000000,0.000134291000000,0.000028232000000,0.000434933000000 +0.000018553000000,0.011149789000000,0.000110587000000,0.000037895000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000082933000000,0.000046982000000,0.000022503500000,0.000042637000000,0.000103476000000,0.000255969000000,0.000170637000000,0.000170242000000,0.012932701000000,0.000201451000000,0.000124809000000,0.000050142000000,0.000085303000000,0.000165895000000,0.000045614500000,0.000476414000000 +0.000017565000000,0.011441739000000,0.000201056000000,0.000037896000000,0.000015392000000,0.000041451000000,0.000027047000000,0.000047377000000,0.000046983000000,0.000022306000000,0.000041057000000,0.000186043000000,0.000160760000000,0.000168661000000,0.000274143000000,0.012421491000000,0.000200266000000,0.000060809000000,0.000048562000000,0.000164315000000,0.000129550000000,0.000053516000000,0.000437303000000 +0.000018948000000,0.011160060000000,0.000117699000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000046982000000,0.000047377000000,0.000022108500000,0.000042636000000,0.000098340000000,0.000163920000000,0.000172217000000,0.000171032000000,0.011774381000000,0.000204612000000,0.000072266000000,0.000048168000000,0.000084514000000,0.000131525000000,0.000028232000000,0.000469698000000 +0.000018158000000,0.011096060000000,0.000118093000000,0.000078588000000,0.000015590000000,0.000110982000000,0.000027046500000,0.000046983000000,0.000047378000000,0.000022306000000,0.000041451000000,0.000117303000000,0.000161945000000,0.000170637000000,0.000170636000000,0.011688652000000,0.000239773000000,0.000055279000000,0.000050143000000,0.000084908000000,0.000128365000000,0.000028034500000,0.000434538000000 +0.000018750000000,0.011118974000000,0.000118489000000,0.000065945000000,0.000015590000000,0.000056858000000,0.000026454500000,0.000046982000000,0.000046587000000,0.000031787500000,0.000041847000000,0.000109007000000,0.000206982000000,0.000171822000000,0.000169056000000,0.011714331000000,0.000215674000000,0.000054883000000,0.000050143000000,0.000083328000000,0.000128365000000,0.000028232000000,0.000494587000000 +0.000018158000000,0.011005986000000,0.000129945000000,0.000039871000000,0.000016577500000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048168000000,0.000062602500000,0.000041452000000,0.000102686000000,0.000160365000000,0.000169056000000,0.000171031000000,0.011623862000000,0.000275723000000,0.000055279000000,0.000048168000000,0.000083328000000,0.000167871000000,0.000028231500000,0.000431772000000 +0.000018158000000,0.012989590000000,0.000112563000000,0.000041056000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046587000000,0.000046982000000,0.000041861500000,0.000060414000000,0.000114933000000,0.000164710000000,0.000169847000000,0.000169451000000,0.011851417000000,0.000204217000000,0.000055279000000,0.000047773000000,0.000083328000000,0.000132711000000,0.000028232000000,0.000468513000000 +0.000017762500000,0.011589887000000,0.000210933000000,0.000037501000000,0.000016182500000,0.000042637000000,0.000027047000000,0.000046983000000,0.000048168000000,0.000023688500000,0.000042636000000,0.000117303000000,0.000161155000000,0.000170637000000,0.000169057000000,0.011558677000000,0.000203031000000,0.000054884000000,0.000048957000000,0.000085698000000,0.000130340000000,0.000054701000000,0.000432957000000 +0.000018355500000,0.011668899000000,0.000112958000000,0.000038291000000,0.000015589500000,0.000041846000000,0.000027046500000,0.000046982000000,0.000046192000000,0.000038108500000,0.000041452000000,0.000123624000000,0.000162736000000,0.000170636000000,0.000169451000000,0.012117689000000,0.000201451000000,0.000054883000000,0.000060414000000,0.000083723000000,0.000129945000000,0.000054108500000,0.000476809000000 +0.000017762500000,0.011043122000000,0.000129155000000,0.000040661000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000046587000000,0.000409254000000,0.000022108500000,0.000041847000000,0.000102686000000,0.000198291000000,0.000189204000000,0.000205402000000,0.011627417000000,0.000235822000000,0.000055674000000,0.000049352000000,0.000103871000000,0.000131920000000,0.000038108500000,0.000438488000000 +0.000018750500000,0.011705640000000,0.000127970000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000027047000000,0.000046982000000,0.000067130000000,0.000022306000000,0.000041451000000,0.000098736000000,0.000160365000000,0.000169846000000,0.000220020000000,0.011635319000000,0.000203031000000,0.000055279000000,0.000049748000000,0.000083328000000,0.000201451000000,0.000043836500000,0.000433747000000 +0.000018158000000,0.011152949000000,0.000110192000000,0.000038291000000,0.000015590000000,0.000041451000000,0.000035343000000,0.000046983000000,0.000051723000000,0.000022503500000,0.000041451000000,0.000106636000000,0.000161550000000,0.000168266000000,0.000171031000000,0.011399072000000,0.000203426000000,0.000055278000000,0.000049747000000,0.000084909000000,0.000133106000000,0.000028232000000,0.000436513000000 +0.000018750500000,0.011184553000000,0.000109797000000,0.000037896000000,0.000015590000000,0.000041057000000,0.000026651500000,0.000046982000000,0.000087673000000,0.000021911000000,0.000042242000000,0.000114537000000,0.000160365000000,0.000169452000000,0.000169451000000,0.012190380000000,0.000201451000000,0.000055279000000,0.000047772000000,0.000082143000000,0.000131131000000,0.000028232000000,0.000433352000000 +0.000028231500000,0.011100800000000,0.000187230000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000065550000000,0.000065550000000,0.000022108500000,0.000043427000000,0.000116118000000,0.000164316000000,0.000170637000000,0.000170242000000,0.011680751000000,0.000232266000000,0.000055673000000,0.000049353000000,0.000084513000000,0.000132315000000,0.000028231500000,0.000471278000000 +0.000017960000000,0.011418035000000,0.000129155000000,0.000037501000000,0.000033762500000,0.000041451000000,0.000026256500000,0.000049748000000,0.000045797000000,0.000022306000000,0.000041451000000,0.000102686000000,0.000197895000000,0.000170637000000,0.000169451000000,0.011433837000000,0.000204216000000,0.000092020000000,0.000048563000000,0.000084908000000,0.000148909000000,0.000028034500000,0.000432957000000 +0.000018948000000,0.010972011000000,0.000128760000000,0.000040267000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000049353000000,0.000047773000000,0.000022108500000,0.000041847000000,0.000129946000000,0.000159970000000,0.000171032000000,0.000186044000000,0.011438579000000,0.000203822000000,0.000055278000000,0.000050143000000,0.000084118000000,0.000129156000000,0.000028232000000,0.000721352000000 +0.000017960500000,0.011628603000000,0.000129550000000,0.000038291000000,0.000015590000000,0.000045007000000,0.000026454000000,0.000059624000000,0.000046982000000,0.000022898500000,0.000076217000000,0.000114933000000,0.000160365000000,0.000170242000000,0.000170637000000,0.011846677000000,0.000201451000000,0.000055674000000,0.000049748000000,0.000084908000000,0.000131525000000,0.000028231500000,0.000457056000000 +0.000018948000000,0.011333492000000,0.000128760000000,0.000037500000000,0.000015985000000,0.000042242000000,0.000027047000000,0.000082933000000,0.000048168000000,0.000022503500000,0.000041847000000,0.000133501000000,0.000162736000000,0.000171032000000,0.000169847000000,0.011477689000000,0.000238192000000,0.000055674000000,0.000047773000000,0.000084908000000,0.000133896000000,0.000028232000000,0.000435328000000 +0.000017960000000,0.011617146000000,0.000113352000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046587000000,0.000046982000000,0.000022701000000,0.000041452000000,0.000115328000000,0.000165105000000,0.000175378000000,0.000171426000000,0.011477294000000,0.000202636000000,0.000055674000000,0.000048167000000,0.000158784000000,0.000132315000000,0.000028232000000,0.000434538000000 +0.000018750500000,0.010873246000000,0.000197106000000,0.000039871000000,0.000015590000000,0.000041847000000,0.000026652000000,0.000046587000000,0.000067921000000,0.000022503500000,0.000041847000000,0.000116118000000,0.000199871000000,0.000170637000000,0.000206587000000,0.011676800000000,0.000204611000000,0.000054884000000,0.000048167000000,0.000146933000000,0.000166291000000,0.000028232000000,0.000434537000000 +0.000018158000000,0.011453590000000,0.000129550000000,0.000037500000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046983000000,0.000080957000000,0.000022503500000,0.000041846000000,0.000136266000000,0.000160760000000,0.000170242000000,0.000169846000000,0.012195911000000,0.000192365000000,0.000055278000000,0.000048563000000,0.000084908000000,0.000131526000000,0.000046207500000,0.000433353000000 +0.000017762500000,0.010861788000000,0.000113353000000,0.000037106000000,0.000016182500000,0.000061994000000,0.000026256500000,0.000045797000000,0.000046587000000,0.000031194500000,0.000041846000000,0.000103476000000,0.000161550000000,0.000172217000000,0.000169451000000,0.011358776000000,0.000236217000000,0.000054884000000,0.000050538000000,0.000084908000000,0.000130340000000,0.000028232000000,0.000433747000000 +0.000018158000000,0.013463663000000,0.000116513000000,0.000073847000000,0.000016380000000,0.000042637000000,0.000026652000000,0.000046982000000,0.000048958000000,0.000022306000000,0.000041452000000,0.000114538000000,0.000160760000000,0.000169056000000,0.000170241000000,0.011655467000000,0.000204217000000,0.000055278000000,0.000048563000000,0.000085304000000,0.000130340000000,0.000028231500000,0.000434143000000 +0.000017762500000,0.011178232000000,0.000128760000000,0.000037896000000,0.000015392500000,0.000042636000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000059229000000,0.000116513000000,0.000161550000000,0.000204217000000,0.000170637000000,0.011540504000000,0.000204217000000,0.000054489000000,0.000049353000000,0.000084118000000,0.000132711000000,0.000028232000000,0.000434142000000 +0.000018750500000,0.011563812000000,0.000109797000000,0.000039476000000,0.000016380000000,0.000042242000000,0.000026849000000,0.000046983000000,0.000048562000000,0.000023096500000,0.000041847000000,0.000117303000000,0.000207377000000,0.000170242000000,0.000205797000000,0.011967171000000,0.000201847000000,0.000055673000000,0.000049353000000,0.000086883000000,0.000164711000000,0.000028034500000,0.000436513000000 +0.000018750500000,0.011309789000000,0.000191575000000,0.000040266000000,0.000015590000000,0.000042242000000,0.000027047000000,0.000046587000000,0.000047377000000,0.000022898500000,0.000041452000000,0.000115328000000,0.000194735000000,0.000169846000000,0.000169452000000,0.011532207000000,0.000238192000000,0.000055674000000,0.000048958000000,0.000085303000000,0.000134291000000,0.000028231500000,0.000437303000000 +0.000018553000000,0.011310579000000,0.000129946000000,0.000038291000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000021911000000,0.000061204000000,0.000117304000000,0.000160760000000,0.000173402000000,0.000170241000000,0.011970726000000,0.000204216000000,0.000055278000000,0.000048563000000,0.000085304000000,0.000131525000000,0.000028232000000,0.000466933000000 +0.000018553000000,0.012646676000000,0.000129945000000,0.000037105000000,0.000015590000000,0.000042637000000,0.000034553000000,0.000046982000000,0.000047377000000,0.000023096000000,0.000055673000000,0.000357106000000,0.000162736000000,0.000172217000000,0.000169452000000,0.012376059000000,0.000204217000000,0.000055279000000,0.000048167000000,0.000088068000000,0.000132710000000,0.000028232000000,0.000433748000000 +0.000018158000000,0.011052208000000,0.000127970000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046588000000,0.000048563000000,0.000022898500000,0.000054884000000,0.000227921000000,0.000199081000000,0.000171032000000,0.000170636000000,0.011817047000000,0.000200266000000,0.000055279000000,0.000048957000000,0.000085303000000,0.000130736000000,0.000028231500000,0.000445599000000 +0.000017762500000,0.011501393000000,0.000122834000000,0.000037500000000,0.000016380000000,0.000042637000000,0.000026849000000,0.000047377000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000132316000000,0.000161550000000,0.000170241000000,0.000420316000000,0.011644010000000,0.000244513000000,0.000056068000000,0.000047772000000,0.000083723000000,0.000128760000000,0.000028232000000,0.000434932000000 +0.000018750500000,0.011867615000000,0.000110192000000,0.000038291000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000047377000000,0.000048168000000,0.000022503500000,0.000039476000000,0.000116513000000,0.000161550000000,0.000171426000000,0.000189995000000,0.011394726000000,0.000203821000000,0.000089254000000,0.000048958000000,0.000083723000000,0.000135477000000,0.000028232000000,0.000440068000000 +0.000018750500000,0.010980307000000,0.000507229000000,0.000037500000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046983000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000125600000000,0.000160760000000,0.000171822000000,0.000169056000000,0.011545245000000,0.000203822000000,0.000070291000000,0.000048563000000,0.000084909000000,0.000131130000000,0.000028232000000,0.000434932000000 +0.000018750500000,0.011207073000000,0.000211328000000,0.000037501000000,0.000016380000000,0.000041847000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000022701000000,0.000039081000000,0.000117303000000,0.000160760000000,0.000170637000000,0.000204612000000,0.011809541000000,0.000200266000000,0.000055674000000,0.000050143000000,0.000084908000000,0.000129155000000,0.000028232000000,0.000438093000000 +0.000018948000000,0.011369047000000,0.000110982000000,0.000037105000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046587000000,0.000048562000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000201451000000,0.000168662000000,0.000170242000000,0.011467023000000,0.000237402000000,0.000055673000000,0.000049748000000,0.000083328000000,0.000149698000000,0.000028232000000,0.000431772000000 +0.000018750000000,0.011007171000000,0.000197501000000,0.000040266000000,0.000015590000000,0.000043822000000,0.000026454000000,0.000046982000000,0.000048168000000,0.000022306000000,0.000039081000000,0.000102686000000,0.000165501000000,0.000170637000000,0.000169057000000,0.011369047000000,0.000204612000000,0.000055279000000,0.000050538000000,0.000137452000000,0.000132316000000,0.000028034500000,0.000434538000000 +0.000018750500000,0.011474529000000,0.000110588000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000027047000000,0.000101896000000,0.000046982000000,0.000021911000000,0.000039871000000,0.000114538000000,0.000163526000000,0.000171031000000,0.000168661000000,0.011409343000000,0.000199871000000,0.000055279000000,0.000049748000000,0.000097155000000,0.000132316000000,0.000028231500000,0.000477599000000 +0.000035738000000,0.010936060000000,0.000127970000000,0.000037896000000,0.000016577500000,0.000043032000000,0.000026454000000,0.000046982000000,0.000066341000000,0.000022306000000,0.000039476000000,0.000098735000000,0.000161945000000,0.000171031000000,0.000168661000000,0.011837590000000,0.000201451000000,0.000056859000000,0.000050143000000,0.000082538000000,0.000133501000000,0.000046405000000,0.000408858000000 +0.000018158000000,0.010933294000000,0.000126785000000,0.000040267000000,0.000016380000000,0.000041846000000,0.000026454000000,0.000046982000000,0.000137056000000,0.000022306000000,0.000039477000000,0.000103871000000,0.000161945000000,0.000170637000000,0.000205797000000,0.011546825000000,0.000252019000000,0.000054884000000,0.000048957000000,0.000084513000000,0.000133105000000,0.000028231500000,0.000479575000000 +0.000017960500000,0.011122134000000,0.000128760000000,0.000039872000000,0.000016972500000,0.000042242000000,0.000026059000000,0.000046983000000,0.000152464000000,0.000022503500000,0.000039476000000,0.000136661000000,0.000200661000000,0.000169451000000,0.000170241000000,0.011787813000000,0.000204217000000,0.000055278000000,0.000050538000000,0.000084908000000,0.000178142000000,0.000028232000000,0.000409254000000 +0.000018157500000,0.011229590000000,0.000130735000000,0.000037501000000,0.000026059000000,0.000042637000000,0.000026454500000,0.000046587000000,0.000148513000000,0.000031787000000,0.000039081000000,0.000103081000000,0.000162341000000,0.000171822000000,0.000169056000000,0.011576059000000,0.000203822000000,0.000055279000000,0.000049747000000,0.000085698000000,0.000130735000000,0.000028232000000,0.000445205000000 +0.000018355500000,0.011233542000000,0.000278884000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000103081000000,0.000030207000000,0.000039477000000,0.000116118000000,0.000164710000000,0.000171426000000,0.000171032000000,0.012191565000000,0.000199871000000,0.000055278000000,0.000048957000000,0.000083723000000,0.000130735000000,0.000028232000000,0.000412019000000 +0.000018553000000,0.011617936000000,0.000213303000000,0.000060020000000,0.000015590000000,0.000075821000000,0.000027046500000,0.000046982000000,0.000053304000000,0.000022701000000,0.000075427000000,0.000109402000000,0.000160364000000,0.000177352000000,0.000168266000000,0.011583960000000,0.000201846000000,0.000054884000000,0.000050538000000,0.000084514000000,0.000137057000000,0.000028231500000,0.000453500000000 +0.000018157500000,0.011043912000000,0.000147328000000,0.000053304000000,0.000015392000000,0.000056463000000,0.000027047000000,0.000046983000000,0.000050538000000,0.000022503500000,0.000039477000000,0.000116118000000,0.000160365000000,0.000170637000000,0.000261896000000,0.011551961000000,0.000204216000000,0.000055279000000,0.000048957000000,0.000083723000000,0.000132315000000,0.000028232000000,0.000414784000000 +0.000018948000000,0.011442924000000,0.000127970000000,0.000037501000000,0.000015787500000,0.000042637000000,0.000044231500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000099130000000,0.000210933000000,0.000170242000000,0.000167871000000,0.011935566000000,0.000204217000000,0.000055674000000,0.000048957000000,0.000084909000000,0.000132711000000,0.000028232000000,0.000501698000000 +0.000017763000000,0.011696948000000,0.000163920000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000032775000000,0.000047377000000,0.000046982000000,0.000022306000000,0.000039476000000,0.000150884000000,0.000160365000000,0.000171822000000,0.000170637000000,0.011910282000000,0.000201451000000,0.000055674000000,0.000049353000000,0.000088859000000,0.000130735000000,0.000028231500000,0.000411624000000 +0.000017960000000,0.010998480000000,0.000114142000000,0.000041057000000,0.000015590000000,0.000041846000000,0.000026849000000,0.000046982000000,0.000046192000000,0.000021911000000,0.000039476000000,0.000116908000000,0.000163920000000,0.000169451000000,0.000169056000000,0.011440159000000,0.000287969000000,0.000092019000000,0.000049748000000,0.000086883000000,0.000131921000000,0.000028232000000,0.000455476000000 +0.000019145500000,0.011333097000000,0.000129551000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000027244500000,0.000046588000000,0.000082933000000,0.000022306000000,0.000039081000000,0.000118094000000,0.000162341000000,0.000301006000000,0.000205007000000,0.011509294000000,0.000204217000000,0.000055674000000,0.000049748000000,0.000082932000000,0.000128760000000,0.000028232000000,0.000408463000000 +0.000018355500000,0.011209838000000,0.000113352000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000025861500000,0.000047377000000,0.000048958000000,0.000022306000000,0.000039476000000,0.000102686000000,0.000162340000000,0.000186834000000,0.000171032000000,0.011645195000000,0.000204612000000,0.000056068000000,0.000048168000000,0.000083723000000,0.000167871000000,0.000028232000000,0.000445205000000 +0.000018355000000,0.011028110000000,0.000129550000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000026849000000,0.000046982000000,0.000048167000000,0.000022701000000,0.000039476000000,0.000116908000000,0.000286785000000,0.000170241000000,0.000169451000000,0.011902775000000,0.000252020000000,0.000055674000000,0.000048563000000,0.000088463000000,0.000128760000000,0.000028034500000,0.000414390000000 +0.000017763000000,0.011166776000000,0.000114142000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000046588000000,0.000047378000000,0.000022701000000,0.000040267000000,0.000116908000000,0.000179327000000,0.000168662000000,0.000169056000000,0.011286480000000,0.000201847000000,0.000055279000000,0.000048168000000,0.000084908000000,0.000127180000000,0.000028232000000,0.000445204000000 +0.000017762500000,0.011493097000000,0.000164315000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039871000000,0.000102686000000,0.000163920000000,0.000170637000000,0.000167871000000,0.011933196000000,0.000204217000000,0.000054883000000,0.000049748000000,0.000084118000000,0.000132711000000,0.000028232000000,0.000410043000000 +0.000018355500000,0.011713146000000,0.000143377000000,0.000040267000000,0.000017960500000,0.000042241000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000022306000000,0.000039081000000,0.000132711000000,0.000160760000000,0.000172217000000,0.000205797000000,0.011757393000000,0.000204217000000,0.000054884000000,0.000050538000000,0.000119674000000,0.000129945000000,0.000049368000000,0.000448760000000 +0.000017763000000,0.011382875000000,0.000130340000000,0.000037501000000,0.000015590000000,0.000044217000000,0.000027047000000,0.000046587000000,0.000047378000000,0.000022898500000,0.000039476000000,0.000107032000000,0.000201847000000,0.000170636000000,0.000168661000000,0.012130330000000,0.000273352000000,0.000054883000000,0.000048562000000,0.000102686000000,0.000169846000000,0.000028034500000,0.000409649000000 +0.000018948000000,0.011751862000000,0.000129551000000,0.000037896000000,0.000015589500000,0.000042242000000,0.000027046500000,0.000063970000000,0.000047377000000,0.000022306000000,0.000039477000000,0.000104266000000,0.000161945000000,0.000173007000000,0.000169452000000,0.011744751000000,0.000201846000000,0.000055279000000,0.000048167000000,0.000088069000000,0.000128365000000,0.000028231500000,0.000570834000000 +0.000018158000000,0.011632158000000,0.000116513000000,0.000037501000000,0.000015392500000,0.000042242000000,0.000026652000000,0.000046587000000,0.000047378000000,0.000022503500000,0.000040266000000,0.000109797000000,0.000165501000000,0.000171031000000,0.000169057000000,0.011337838000000,0.000201056000000,0.000055278000000,0.000049353000000,0.000085698000000,0.000164316000000,0.000028232000000,0.000410439000000 +0.000017763000000,0.011439763000000,0.000176957000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000046588000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000112957000000,0.000161945000000,0.000170637000000,0.000169846000000,0.011691812000000,0.000284414000000,0.000055279000000,0.000048958000000,0.000083328000000,0.000130735000000,0.000028232000000,0.000416760000000 +0.000018750500000,0.010863368000000,0.000156810000000,0.000039872000000,0.000016380000000,0.000041452000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039082000000,0.000106636000000,0.000161155000000,0.000169452000000,0.000240957000000,0.011577640000000,0.000201451000000,0.000055278000000,0.000048168000000,0.000085698000000,0.000129946000000,0.000028232000000,0.000408069000000 +0.000018553000000,0.011160455000000,0.000131130000000,0.000040662000000,0.000015590000000,0.000042637000000,0.000026652000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000235822000000,0.000170637000000,0.000167871000000,0.011416059000000,0.000201846000000,0.000055279000000,0.000047773000000,0.000084513000000,0.000185649000000,0.000028231500000,0.000417155000000 +0.000038503500000,0.010896949000000,0.000117303000000,0.000037501000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000046983000000,0.000041269000000,0.000039081000000,0.000109007000000,0.000163525000000,0.000170637000000,0.000170636000000,0.011659418000000,0.000203821000000,0.000054883000000,0.000050538000000,0.000085303000000,0.000129551000000,0.000028232000000,0.000445995000000 +0.000036331000000,0.011731713000000,0.000131130000000,0.000037105000000,0.000015590000000,0.000041452000000,0.000035343000000,0.000046983000000,0.000046587000000,0.000031194500000,0.000039872000000,0.000115723000000,0.000163525000000,0.000171822000000,0.000167871000000,0.011865640000000,0.000276118000000,0.000055279000000,0.000049353000000,0.000097155000000,0.000138636000000,0.000028232000000,0.000434538000000 +0.000028429000000,0.011115813000000,0.000130736000000,0.000037501000000,0.000015589500000,0.000078587000000,0.000026651500000,0.000046982000000,0.000048563000000,0.000022306000000,0.000059229000000,0.000113748000000,0.000163525000000,0.000169847000000,0.000187229000000,0.012037886000000,0.000201847000000,0.000055674000000,0.000049748000000,0.000083723000000,0.000133106000000,0.000028231500000,0.000475624000000 +0.000028824500000,0.011102381000000,0.000130341000000,0.000092809000000,0.000016577500000,0.000042637000000,0.000026849500000,0.000047377000000,0.000048562000000,0.000022306000000,0.000088859000000,0.000115328000000,0.000165105000000,0.000168661000000,0.000169056000000,0.011475714000000,0.000199871000000,0.000054883000000,0.000050143000000,0.000083723000000,0.000139822000000,0.000028232000000,0.000408859000000 +0.000019738500000,0.011100800000000,0.000154044000000,0.000037501000000,0.000016577500000,0.000041451000000,0.000026651500000,0.000046587000000,0.000046588000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000239773000000,0.000170636000000,0.000170242000000,0.011218924000000,0.000204216000000,0.000055279000000,0.000049748000000,0.000084513000000,0.000132315000000,0.000028232000000,0.000445599000000 +0.000025268500000,0.011380899000000,0.000129550000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026651500000,0.000047378000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000116513000000,0.000162736000000,0.000169846000000,0.000168267000000,0.012526182000000,0.000239377000000,0.000055673000000,0.000048167000000,0.000084909000000,0.000130735000000,0.000028231500000,0.000410439000000 +0.000017763000000,0.011104357000000,0.000129946000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046587000000,0.000082538000000,0.000022898500000,0.000039082000000,0.000152464000000,0.000162340000000,0.000170636000000,0.000170242000000,0.012140602000000,0.000200266000000,0.000055674000000,0.000050538000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000460612000000 +0.000017762500000,0.011258430000000,0.000121649000000,0.000037896000000,0.000032577500000,0.000041451000000,0.000026651500000,0.000046982000000,0.000045797000000,0.000022108500000,0.000039081000000,0.000116908000000,0.000160760000000,0.000171822000000,0.000205007000000,0.011459912000000,0.000200662000000,0.000056069000000,0.000059624000000,0.000082933000000,0.000203426000000,0.000028232000000,0.000407673000000 +0.000017763000000,0.011728554000000,0.000118488000000,0.000040267000000,0.000017763000000,0.000042241000000,0.000027244500000,0.000046983000000,0.000047378000000,0.000022306000000,0.000039476000000,0.000119279000000,0.000163921000000,0.000169846000000,0.000167476000000,0.011519566000000,0.000201847000000,0.000055278000000,0.000045402000000,0.000088464000000,0.000132316000000,0.000028232000000,0.000451130000000 +0.000018553000000,0.011278183000000,0.000113748000000,0.000040662000000,0.000016182500000,0.000042637000000,0.000027046500000,0.000046983000000,0.000045797000000,0.000022306000000,0.000039082000000,0.000116118000000,0.000246488000000,0.000169451000000,0.000167871000000,0.011531418000000,0.000288365000000,0.000055674000000,0.000046192000000,0.000084513000000,0.000132315000000,0.000067540500000,0.000412809000000 +0.000018552500000,0.011199171000000,0.000146933000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000027046500000,0.000047772000000,0.000047378000000,0.000021911000000,0.000039476000000,0.000114538000000,0.000160365000000,0.000169452000000,0.000168662000000,0.011790578000000,0.000200662000000,0.000056463000000,0.000046982000000,0.000124019000000,0.000130340000000,0.000028034500000,0.000447180000000 +0.000018553000000,0.010997690000000,0.000118489000000,0.000039871000000,0.000015985000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000102291000000,0.000160365000000,0.000171031000000,0.000169847000000,0.011829689000000,0.000202241000000,0.000056069000000,0.000046193000000,0.000259920000000,0.000126785000000,0.000028231500000,0.000460612000000 +0.000018355500000,0.011023369000000,0.000131130000000,0.000039871000000,0.000015589500000,0.000041452000000,0.000026849000000,0.000047773000000,0.000047377000000,0.000022108500000,0.000039082000000,0.000102686000000,0.000164711000000,0.000170241000000,0.000260315000000,0.011528257000000,0.000203822000000,0.000055279000000,0.000046982000000,0.000125204000000,0.000146142000000,0.000028034500000,0.000496168000000 +0.000018355500000,0.011382480000000,0.000122044000000,0.000037896000000,0.000015787500000,0.000042637000000,0.000026454000000,0.000118093000000,0.000045797000000,0.000022503500000,0.000039871000000,0.000152464000000,0.000179327000000,0.000169846000000,0.000169056000000,0.012081738000000,0.000239772000000,0.000055278000000,0.000046588000000,0.000101501000000,0.000131921000000,0.000028232000000,0.000410439000000 +0.000018750500000,0.011453591000000,0.000114538000000,0.000038291000000,0.000016380000000,0.000042636000000,0.000026454500000,0.000046983000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000117303000000,0.000163131000000,0.000172612000000,0.000169846000000,0.012101096000000,0.000201056000000,0.000054489000000,0.000045797000000,0.000088068000000,0.000133106000000,0.000028231500000,0.000496168000000 +0.000018750500000,0.011162825000000,0.000126784000000,0.000039871000000,0.000016775000000,0.000042242000000,0.000027046500000,0.000046588000000,0.000045797000000,0.000022108500000,0.000039871000000,0.000109402000000,0.000161945000000,0.000252019000000,0.000167871000000,0.011349294000000,0.000198291000000,0.000055278000000,0.000046982000000,0.000083327000000,0.000131525000000,0.000028232000000,0.000412019000000 +0.000018158000000,0.010998085000000,0.000148513000000,0.000039872000000,0.000016577500000,0.000042242000000,0.000026651500000,0.000048167000000,0.000048167000000,0.000021911000000,0.000040267000000,0.000116118000000,0.000160365000000,0.000169056000000,0.000168267000000,0.011693393000000,0.000204217000000,0.000055279000000,0.000046587000000,0.000121253000000,0.000129945000000,0.000028232000000,0.000407278000000 +0.000018947500000,0.011186134000000,0.000118093000000,0.000037106000000,0.000015590000000,0.000042241000000,0.000044034500000,0.000046587000000,0.000047773000000,0.000022503500000,0.000039081000000,0.000117699000000,0.000161551000000,0.000171427000000,0.000172612000000,0.012043022000000,0.000269797000000,0.000055278000000,0.000046982000000,0.000082537000000,0.000134291000000,0.000028232000000,0.000413599000000 +0.000017763000000,0.011476900000000,0.000128365000000,0.000037106000000,0.000016775000000,0.000041451000000,0.000026454000000,0.000046983000000,0.000048562000000,0.000043836500000,0.000039081000000,0.000116513000000,0.000180909000000,0.000171426000000,0.000169452000000,0.011935566000000,0.000197501000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000130736000000,0.000028034500000,0.000410834000000 +0.000017762500000,0.011175863000000,0.000114933000000,0.000039871000000,0.000016380000000,0.000042242000000,0.000026059000000,0.000046587000000,0.000046983000000,0.000022306000000,0.000039872000000,0.000140612000000,0.000163920000000,0.000171426000000,0.000170637000000,0.011555911000000,0.000202241000000,0.000092019000000,0.000046587000000,0.000082143000000,0.000128365000000,0.000028232000000,0.000452315000000 +0.000018158000000,0.011119764000000,0.000115328000000,0.000037106000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000048957000000,0.000022503500000,0.000038686000000,0.000117304000000,0.000161155000000,0.000170241000000,0.000169846000000,0.011453985000000,0.000204612000000,0.000054884000000,0.000098341000000,0.000085698000000,0.000131526000000,0.000028232000000,0.000409649000000 +0.000027244500000,0.011942677000000,0.000128760000000,0.000040267000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046982000000,0.000046983000000,0.000022898500000,0.000056068000000,0.000114142000000,0.000160760000000,0.000171821000000,0.000242538000000,0.013003416000000,0.000218044000000,0.000055278000000,0.000045797000000,0.000082933000000,0.000169451000000,0.000028232000000,0.000447180000000 +0.000018157500000,0.011243813000000,0.000118093000000,0.000074242000000,0.000016380000000,0.000136661000000,0.000026652000000,0.000046983000000,0.000047772000000,0.000022898500000,0.000052513000000,0.000116118000000,0.000160365000000,0.000172217000000,0.000169452000000,0.011925294000000,0.000200661000000,0.000054489000000,0.000046982000000,0.000088859000000,0.000128365000000,0.000028034500000,0.000415575000000 +0.000017960500000,0.011143467000000,0.000152069000000,0.000037501000000,0.000015590000000,0.000131526000000,0.000026256500000,0.000047377000000,0.000048168000000,0.000022306000000,0.000039476000000,0.000117698000000,0.000199081000000,0.000170242000000,0.000170241000000,0.011724208000000,0.000201847000000,0.000054883000000,0.000046587000000,0.000084908000000,0.000131921000000,0.000046404500000,0.000444809000000 +0.000017762500000,0.011341788000000,0.000118489000000,0.000037501000000,0.000015590000000,0.000128365000000,0.000026256500000,0.000046587000000,0.000099526000000,0.000022503500000,0.000039476000000,0.000118093000000,0.000165106000000,0.000171427000000,0.000168662000000,0.011750677000000,0.000204217000000,0.000055279000000,0.000045402000000,0.000088463000000,0.000129945000000,0.000028232000000,0.000412019000000 +0.000018158000000,0.011478084000000,0.000113352000000,0.000040267000000,0.000015787500000,0.000111772000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000114933000000,0.000163526000000,0.000169846000000,0.000169056000000,0.011404208000000,0.000406488000000,0.000055278000000,0.000046983000000,0.000100315000000,0.000131130000000,0.000028232000000,0.000444809000000 +0.000017960000000,0.011521541000000,0.000130340000000,0.000037106000000,0.000016577500000,0.000079772000000,0.000026652000000,0.000046588000000,0.000046982000000,0.000023096000000,0.000039476000000,0.000152464000000,0.000160365000000,0.000168662000000,0.000206192000000,0.012916503000000,0.000215673000000,0.000056069000000,0.000046982000000,0.000083723000000,0.000207377000000,0.000028034000000,0.000411229000000 +0.000018158000000,0.011073541000000,0.000118093000000,0.000037501000000,0.000015590000000,0.000043822000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116909000000,0.000161945000000,0.000168266000000,0.000170637000000,0.012204602000000,0.000201846000000,0.000055674000000,0.000046588000000,0.000104661000000,0.000127179000000,0.000028232000000,0.000461006000000 +0.000019145500000,0.011253689000000,0.000112958000000,0.000037896000000,0.000015392500000,0.000056464000000,0.000026256500000,0.000046982000000,0.000067525000000,0.000022898500000,0.000039081000000,0.000115328000000,0.000231871000000,0.000170242000000,0.000169451000000,0.011892504000000,0.000204217000000,0.000055673000000,0.000047377000000,0.000100711000000,0.000132316000000,0.000028232000000,0.000408463000000 +0.000018750500000,0.011143073000000,0.000162735000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000027047000000,0.000046982000000,0.000064365000000,0.000023096000000,0.000039081000000,0.000111377000000,0.000161945000000,0.000208563000000,0.000167476000000,0.011772405000000,0.000204217000000,0.000055279000000,0.000045403000000,0.000083328000000,0.000134291000000,0.000028231500000,0.000445599000000 +0.000018157500000,0.011578035000000,0.000113353000000,0.000040267000000,0.000015589500000,0.000042637000000,0.000026454000000,0.000082143000000,0.000060809000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000160760000000,0.000173007000000,0.000167872000000,0.011980208000000,0.000201451000000,0.000055278000000,0.000045797000000,0.000082933000000,0.000129550000000,0.000028034500000,0.000407278000000 +0.000017763000000,0.011080652000000,0.000126785000000,0.000040662000000,0.000015590000000,0.000043032000000,0.000027244500000,0.000046983000000,0.000048168000000,0.000022503500000,0.000039871000000,0.000117699000000,0.000195526000000,0.000170636000000,0.000253994000000,0.011738825000000,0.000220810000000,0.000056069000000,0.000046192000000,0.000085303000000,0.000128760000000,0.000028232000000,0.000445204000000 +0.000019145500000,0.011083418000000,0.000129945000000,0.000038291000000,0.000033763000000,0.000041846000000,0.000027046500000,0.000046587000000,0.000047772000000,0.000022701000000,0.000039476000000,0.000153649000000,0.000160760000000,0.000172217000000,0.000171822000000,0.011724997000000,0.000204612000000,0.000055278000000,0.000046983000000,0.000082933000000,0.000132315000000,0.000028232000000,0.000412809000000 +0.000018750000000,0.010992554000000,0.000117303000000,0.000037896000000,0.000016775000000,0.000078587000000,0.000044232000000,0.000046982000000,0.000048958000000,0.000032775000000,0.000039476000000,0.000128760000000,0.000208957000000,0.000171427000000,0.000168661000000,0.011645985000000,0.000204612000000,0.000055674000000,0.000046192000000,0.000167081000000,0.000129946000000,0.000028232000000,0.000554241000000 +0.000018158000000,0.012425047000000,0.000126785000000,0.000037896000000,0.000016182500000,0.000042636000000,0.000027244000000,0.000046192000000,0.000047773000000,0.000030602500000,0.000039872000000,0.000116118000000,0.000163131000000,0.000218439000000,0.000168661000000,0.011531418000000,0.000201451000000,0.000055674000000,0.000045798000000,0.000083723000000,0.000133105000000,0.000028232000000,0.000426242000000 +0.000017763000000,0.011340208000000,0.000164711000000,0.000037896000000,0.000015787500000,0.000042637000000,0.000026454500000,0.000047378000000,0.000048562000000,0.000029812000000,0.000039871000000,0.000098735000000,0.000161550000000,0.000172217000000,0.000206192000000,0.011655467000000,0.000238192000000,0.000054883000000,0.000044612000000,0.000085303000000,0.000164711000000,0.000028232000000,0.000445204000000 +0.000018552500000,0.011681541000000,0.000129550000000,0.000037895000000,0.000015589500000,0.000042637000000,0.000027046500000,0.000047377000000,0.000046193000000,0.000040873500000,0.000039871000000,0.000118094000000,0.000161155000000,0.000172611000000,0.000169846000000,0.011457936000000,0.000204217000000,0.000054884000000,0.000045797000000,0.000083723000000,0.000129155000000,0.000028231500000,0.000429401000000 +0.000018355500000,0.011137541000000,0.000118093000000,0.000037501000000,0.000016380500000,0.000042241000000,0.000026059000000,0.000047377000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000116118000000,0.000160760000000,0.000171426000000,0.000170242000000,0.011560652000000,0.000204217000000,0.000055278000000,0.000082143000000,0.000082933000000,0.000131131000000,0.000028232000000,0.000491427000000 +0.000018750500000,0.011588307000000,0.000132315000000,0.000037500000000,0.000016578000000,0.000042242000000,0.000027244500000,0.000046982000000,0.000046192000000,0.000023096000000,0.000039477000000,0.000102686000000,0.000243328000000,0.000173797000000,0.000170241000000,0.011620702000000,0.000201057000000,0.000055279000000,0.000044612000000,0.000086093000000,0.000131525000000,0.000028232000000,0.000412019000000 +0.000018157500000,0.011018233000000,0.000128365000000,0.000038291000000,0.000015589500000,0.000041452000000,0.000026651500000,0.000046983000000,0.000046983000000,0.000022108500000,0.000038686000000,0.000149303000000,0.000165105000000,0.000169847000000,0.000170242000000,0.011768849000000,0.000238192000000,0.000055278000000,0.000046588000000,0.000084513000000,0.000127970000000,0.000036330500000,0.000455080000000 +0.000017763000000,0.011378133000000,0.000127970000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000047377000000,0.000074241000000,0.000022701000000,0.000075031000000,0.000109402000000,0.000165896000000,0.000170637000000,0.000206982000000,0.011708405000000,0.000201056000000,0.000056069000000,0.000047377000000,0.000086489000000,0.000260315000000,0.000028232000000,0.000411624000000 +0.000017762500000,0.011706825000000,0.000198686000000,0.000060019000000,0.000016380000000,0.000041452000000,0.000026454500000,0.000047377000000,0.000048168000000,0.000022899000000,0.000039476000000,0.000109007000000,0.000163526000000,0.000168661000000,0.000169451000000,0.011532208000000,0.000204217000000,0.000054884000000,0.000046192000000,0.000125204000000,0.000267032000000,0.000028232000000,0.000499723000000 +0.000017960500000,0.011724207000000,0.000127970000000,0.000037106000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046588000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000116513000000,0.000197895000000,0.000171821000000,0.000168267000000,0.011909492000000,0.000197896000000,0.000055278000000,0.000045797000000,0.000085303000000,0.000129945000000,0.000028232000000,0.000408858000000 +0.000035738000000,0.011083023000000,0.000122044000000,0.000039871000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000046587000000,0.000048563000000,0.000022898500000,0.000039477000000,0.000143377000000,0.000161550000000,0.000187229000000,0.000169451000000,0.011646381000000,0.000254785000000,0.000055674000000,0.000045402000000,0.000082933000000,0.000181698000000,0.000028232000000,0.000417155000000 +0.000017763000000,0.011316505000000,0.000130735000000,0.000039871000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000046587000000,0.000045797000000,0.000022701000000,0.000039081000000,0.000112168000000,0.000163920000000,0.000170241000000,0.000169452000000,0.011462677000000,0.000204217000000,0.000055278000000,0.000045797000000,0.000087278000000,0.000130340000000,0.000028231500000,0.000428612000000 +0.000018750000000,0.011133196000000,0.000133106000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000046982000000,0.000045798000000,0.000022306000000,0.000039081000000,0.000153254000000,0.000161945000000,0.000172217000000,0.000451920000000,0.012201837000000,0.000203031000000,0.000054489000000,0.000046192000000,0.000086093000000,0.000128365000000,0.000028232000000,0.000603229000000 +0.000018948000000,0.011695763000000,0.000132710000000,0.000038291000000,0.000015589500000,0.000041452000000,0.000026651500000,0.000046983000000,0.000045797000000,0.000022306000000,0.000039477000000,0.000118093000000,0.000165106000000,0.000173402000000,0.000220415000000,0.011446875000000,0.000201451000000,0.000055278000000,0.000047377000000,0.000085304000000,0.000130735000000,0.000028232000000,0.000455476000000 +0.000018948000000,0.010981492000000,0.000162341000000,0.000039871000000,0.000015392500000,0.000041451000000,0.000026256500000,0.000046983000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000103081000000,0.000230291000000,0.000172217000000,0.000170241000000,0.011662183000000,0.000272958000000,0.000055279000000,0.000046982000000,0.000088068000000,0.000131526000000,0.000028231500000,0.000408463000000 +0.000018553000000,0.011079468000000,0.000130340000000,0.000040662000000,0.000015590000000,0.000041452000000,0.000026849500000,0.000065945000000,0.000047773000000,0.000022306000000,0.000039476000000,0.000114538000000,0.000173402000000,0.000170637000000,0.000205797000000,0.011940306000000,0.000217649000000,0.000055278000000,0.000047772000000,0.000084513000000,0.000134291000000,0.000028232000000,0.000444414000000 +0.000018158000000,0.011038776000000,0.000127969000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000044429500000,0.000062785000000,0.000047377000000,0.000022503500000,0.000039872000000,0.000109797000000,0.000163526000000,0.000170637000000,0.000168266000000,0.012075812000000,0.000204612000000,0.000054884000000,0.000046982000000,0.000085303000000,0.000131130000000,0.000028232000000,0.000412414000000 +0.000018552500000,0.011371418000000,0.000131525000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000109797000000,0.000160365000000,0.000227525000000,0.000170241000000,0.011271862000000,0.000201451000000,0.000055278000000,0.000045797000000,0.000120069000000,0.000130735000000,0.000028231500000,0.000449155000000 +0.000018158000000,0.014312255000000,0.000128760000000,0.000040267000000,0.000016380000000,0.000042637000000,0.000027047000000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000107822000000,0.000163920000000,0.000170636000000,0.000168266000000,0.011516405000000,0.000237797000000,0.000095970000000,0.000046983000000,0.000084118000000,0.000131131000000,0.000028034500000,0.000408464000000 +0.000018948000000,0.012051319000000,0.000128760000000,0.000037896000000,0.000016380000000,0.000062390000000,0.000026849000000,0.000046983000000,0.000046192000000,0.000022306000000,0.000039082000000,0.000152069000000,0.000197896000000,0.000170241000000,0.000169846000000,0.011380109000000,0.000201847000000,0.000094390000000,0.000046982000000,0.000083723000000,0.000171426000000,0.000028232000000,0.000445995000000 +0.000018552500000,0.013163417000000,0.000163130000000,0.000039871000000,0.000016380000000,0.000042242000000,0.000026849000000,0.000046587000000,0.000046193000000,0.000022306000000,0.000039476000000,0.000116513000000,0.000161945000000,0.000170241000000,0.000213698000000,0.011606084000000,0.000201452000000,0.000058439000000,0.000046193000000,0.000084513000000,0.000131920000000,0.000028232000000,0.000415180000000 +0.000019145500000,0.012455071000000,0.000130736000000,0.000037895000000,0.000015590000000,0.000042637000000,0.000026257000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000038686000000,0.000114143000000,0.000160364000000,0.000170637000000,0.000169452000000,0.011891714000000,0.000201451000000,0.000071081000000,0.000046587000000,0.000085304000000,0.000129945000000,0.000046009500000,0.000445994000000 +0.000018158000000,0.011809936000000,0.000129945000000,0.000037501000000,0.000016380500000,0.000041451000000,0.000026849000000,0.000046192000000,0.000048167000000,0.000030997500000,0.000040267000000,0.000102686000000,0.000160760000000,0.000170242000000,0.000170241000000,0.011387615000000,0.000234241000000,0.000055278000000,0.000115723000000,0.000084513000000,0.000130341000000,0.000028232000000,0.000408858000000 +0.000017762500000,0.011865640000000,0.000132316000000,0.000037500000000,0.000015589500000,0.000042242000000,0.000027046500000,0.000047378000000,0.000047377000000,0.000021911000000,0.000039476000000,0.000102291000000,0.000163920000000,0.000172612000000,0.000168266000000,0.011506134000000,0.000202241000000,0.000055279000000,0.000061204000000,0.000084513000000,0.000218834000000,0.000028231500000,0.000438883000000 +0.000017763000000,0.011737640000000,0.000132315000000,0.000040266000000,0.000026454500000,0.000042637000000,0.000026257000000,0.000046192000000,0.000078982000000,0.000022898500000,0.000039081000000,0.000114143000000,0.000329847000000,0.000170637000000,0.000189599000000,0.012133886000000,0.000204216000000,0.000054883000000,0.000046983000000,0.000083328000000,0.000131130000000,0.000028232000000,0.000406093000000 +0.000018750500000,0.012164306000000,0.000113352000000,0.000037501000000,0.000023688500000,0.000041451000000,0.000025861500000,0.000047377000000,0.000061204000000,0.000022701000000,0.000038686000000,0.000109402000000,0.000233451000000,0.000171032000000,0.000169846000000,0.011939516000000,0.000200661000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000410043000000 +0.000018750000000,0.011324405000000,0.000203032000000,0.000037501000000,0.000016577500000,0.000041452000000,0.000026849000000,0.000046192000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000111773000000,0.000161550000000,0.000171032000000,0.000168267000000,0.013334873000000,0.000238192000000,0.000054883000000,0.000047772000000,0.000117303000000,0.000133105000000,0.000028231500000,0.000408859000000 +0.000018750500000,0.011484011000000,0.000115723000000,0.000038291000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000046983000000,0.000048167000000,0.000022701000000,0.000056069000000,0.000103081000000,0.000165106000000,0.000169847000000,0.000169846000000,0.012920059000000,0.000204217000000,0.000055279000000,0.000046982000000,0.000083723000000,0.000131526000000,0.000028232000000,0.000410833000000 +0.000018158000000,0.011565392000000,0.000131525000000,0.000073846000000,0.000015590000000,0.000042636000000,0.000026652000000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000118093000000,0.000233056000000,0.000221995000000,0.000168662000000,0.014838872000000,0.000203427000000,0.000054883000000,0.000047377000000,0.000084908000000,0.000167081000000,0.000028232000000,0.000407673000000 +0.000019145500000,0.012125195000000,0.000127575000000,0.000040266000000,0.000015589500000,0.000043427000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000160760000000,0.000170637000000,0.000218044000000,0.012659713000000,0.000201057000000,0.000054884000000,0.000046982000000,0.000085699000000,0.000145747000000,0.000028232000000,0.000429007000000 +0.000018750500000,0.011519566000000,0.000129155000000,0.000040266000000,0.000016380000000,0.000041847000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000022108500000,0.000039082000000,0.000103476000000,0.000163921000000,0.000169452000000,0.000169846000000,0.015202328000000,0.000291130000000,0.000055279000000,0.000046587000000,0.000082933000000,0.000131526000000,0.000028232000000,0.000460612000000 +0.000019145000000,0.011615960000000,0.000128760000000,0.000038291000000,0.000016380000000,0.000043822000000,0.000027047000000,0.000046588000000,0.000047377000000,0.000021911000000,0.000039081000000,0.000117304000000,0.000163525000000,0.000169451000000,0.000170241000000,0.012511565000000,0.000203427000000,0.000055278000000,0.000047772000000,0.000088464000000,0.000132710000000,0.000028232000000,0.000410439000000 +0.000028034500000,0.011605294000000,0.000128760000000,0.000037501000000,0.000016775500000,0.000043822000000,0.000053516000000,0.000047377000000,0.000046587000000,0.000022898500000,0.000039871000000,0.000152464000000,0.000163525000000,0.000171426000000,0.000169451000000,0.012773886000000,0.000202241000000,0.000056069000000,0.000046192000000,0.000083723000000,0.000129945000000,0.000028232000000,0.000445995000000 +0.000026256500000,0.011980998000000,0.000110982000000,0.000037896000000,0.000015589500000,0.000042636000000,0.000034552500000,0.000046587000000,0.000048562000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000163525000000,0.000170636000000,0.000167476000000,0.013255861000000,0.000201451000000,0.000055673000000,0.000045402000000,0.000084908000000,0.000167476000000,0.000028231500000,0.000412809000000 +0.000018158000000,0.012070282000000,0.000118093000000,0.000037896000000,0.000016775500000,0.000041452000000,0.000026652000000,0.000100316000000,0.000045797000000,0.000022108500000,0.000039476000000,0.000116118000000,0.000166291000000,0.000168661000000,0.000206588000000,0.013292996000000,0.000199081000000,0.000054489000000,0.000046982000000,0.000119279000000,0.000131130000000,0.000028232000000,0.000440858000000 +0.000018948000000,0.011516405000000,0.000117698000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000046982000000,0.000048167000000,0.000022898500000,0.000039476000000,0.000118093000000,0.000161155000000,0.000170242000000,0.000169451000000,0.014375070000000,0.000203821000000,0.000055673000000,0.000046588000000,0.000082143000000,0.000131130000000,0.000028232000000,0.000411624000000 +0.000018158000000,0.011617541000000,0.000113353000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000026849000000,0.000046983000000,0.000046982000000,0.000022503500000,0.000038686000000,0.000117699000000,0.000163130000000,0.000169847000000,0.000172612000000,0.012683812000000,0.000204217000000,0.000054884000000,0.000046982000000,0.000085303000000,0.000131921000000,0.000028034000000,0.000444414000000 +0.000018157500000,0.012010627000000,0.000131526000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000046588000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000106637000000,0.000181303000000,0.000208168000000,0.000170242000000,0.014048749000000,0.000193945000000,0.000054883000000,0.000046588000000,0.000083328000000,0.000132315000000,0.000053713500000,0.000410043000000 +0.000018158000000,0.011394726000000,0.000165105000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000045798000000,0.000022898500000,0.000039476000000,0.000117699000000,0.000160760000000,0.000169452000000,0.000170636000000,0.014979909000000,0.000202241000000,0.000054884000000,0.000046982000000,0.000082142000000,0.000129551000000,0.000034948000000,0.000457846000000 +0.000018750500000,0.011642825000000,0.000131131000000,0.000040661000000,0.000015590000000,0.000113747000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039476000000,0.000188414000000,0.000163920000000,0.000171822000000,0.000206587000000,0.014060601000000,0.000204217000000,0.000055279000000,0.000061600000000,0.000083723000000,0.000129946000000,0.000028232000000,0.000406883000000 +0.000017762500000,0.011820603000000,0.000131130000000,0.000040661000000,0.000016775000000,0.000041452000000,0.000026849500000,0.000047378000000,0.000046192000000,0.000032182500000,0.000039872000000,0.000117303000000,0.000161945000000,0.000170242000000,0.000240562000000,0.013919959000000,0.000204612000000,0.000055673000000,0.000046587000000,0.000085303000000,0.000130340000000,0.000028231500000,0.000493007000000 +0.000017763000000,0.011608849000000,0.000129551000000,0.000037501000000,0.000015392500000,0.000042637000000,0.000027046500000,0.000047378000000,0.000048168000000,0.000022503500000,0.000039871000000,0.000110587000000,0.000160760000000,0.000170637000000,0.000168662000000,0.013956304000000,0.000197501000000,0.000055674000000,0.000047377000000,0.000083723000000,0.000130735000000,0.000028232000000,0.000417550000000 +0.000018948000000,0.011515220000000,0.000127970000000,0.000039872000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000047377000000,0.000082933000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000203032000000,0.000169056000000,0.000170636000000,0.014308304000000,0.000201451000000,0.000054883000000,0.000047377000000,0.000084513000000,0.000150094000000,0.000028232000000,0.000484710000000 +0.000018157500000,0.011547220000000,0.000131130000000,0.000040266000000,0.000015589500000,0.000042242000000,0.000026849000000,0.000046192000000,0.000046982000000,0.000023688500000,0.000039476000000,0.000116118000000,0.000165106000000,0.000169847000000,0.000206192000000,0.013298133000000,0.000202636000000,0.000056069000000,0.000046982000000,0.000149303000000,0.000131526000000,0.000028034000000,0.000413994000000 +0.000019145500000,0.011467417000000,0.000167871000000,0.000037896000000,0.000016775500000,0.000041451000000,0.000026059000000,0.000046983000000,0.000048168000000,0.000022898500000,0.000039871000000,0.000103081000000,0.000160760000000,0.000171031000000,0.000168267000000,0.014062181000000,0.000203426000000,0.000055674000000,0.000045797000000,0.000085699000000,0.000135081000000,0.000028232000000,0.000444809000000 +0.000017763000000,0.011617146000000,0.000128760000000,0.000037896000000,0.000015589500000,0.000041056000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000022306000000,0.000039476000000,0.000150488000000,0.000163130000000,0.000170636000000,0.000169846000000,0.013772996000000,0.000217649000000,0.000055673000000,0.000045797000000,0.000084513000000,0.000131921000000,0.000028232000000,0.000404908000000 +0.000017762500000,0.011427516000000,0.000129945000000,0.000040267000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000047377000000,0.000046983000000,0.000022503500000,0.000075426000000,0.000116118000000,0.000161550000000,0.000209747000000,0.000169451000000,0.013382676000000,0.000201846000000,0.000055674000000,0.000046982000000,0.000083723000000,0.000130736000000,0.000028232000000,0.000453895000000 +0.000017763000000,0.011577244000000,0.000129945000000,0.000040266000000,0.000016380000000,0.000042636000000,0.000047985000000,0.000046982000000,0.000046982000000,0.000022306000000,0.000039476000000,0.000107032000000,0.000196710000000,0.000169846000000,0.000169846000000,0.013253491000000,0.000204216000000,0.000055278000000,0.000046983000000,0.000082933000000,0.000167081000000,0.000028232000000,0.000408858000000 +0.000017762500000,0.011733690000000,0.000130340000000,0.000055279000000,0.000016182500000,0.000042637000000,0.000041269000000,0.000046588000000,0.000048563000000,0.000022306000000,0.000039476000000,0.000116908000000,0.000161550000000,0.000169451000000,0.000255180000000,0.013281935000000,0.000204216000000,0.000056464000000,0.000046587000000,0.000085303000000,0.000137056000000,0.000028232000000,0.000442439000000 +0.000018750500000,0.011925689000000,0.000147723000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000102291000000,0.000160365000000,0.000169847000000,0.000169847000000,0.012359862000000,0.000237797000000,0.000055279000000,0.000046192000000,0.000082932000000,0.000128760000000,0.000028232000000,0.000406489000000 +0.000017762500000,0.011784652000000,0.000117699000000,0.000040661000000,0.000035935500000,0.000041451000000,0.000026651500000,0.000046982000000,0.000046588000000,0.000022503500000,0.000039477000000,0.000116119000000,0.000163525000000,0.000169452000000,0.000170241000000,0.012895564000000,0.000201847000000,0.000055278000000,0.000046192000000,0.000084908000000,0.000132316000000,0.000028232000000,0.000557402000000 +0.000019145500000,0.011374578000000,0.000129945000000,0.000037501000000,0.000031392500000,0.000042242000000,0.000027244000000,0.000065945000000,0.000045797000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000161155000000,0.000171427000000,0.000169452000000,0.012855269000000,0.000201451000000,0.000055674000000,0.000046192000000,0.000156019000000,0.000132315000000,0.000046207500000,0.000411624000000 +0.000018750500000,0.011893689000000,0.000119279000000,0.000040661000000,0.000016577500000,0.000041847000000,0.000027047000000,0.000063575000000,0.000045797000000,0.000022503500000,0.000038686000000,0.000152859000000,0.000231081000000,0.000171032000000,0.000190784000000,0.013316700000000,0.000204612000000,0.000054883000000,0.000047378000000,0.000084513000000,0.000157994000000,0.000028232000000,0.000450340000000 +0.000018750500000,0.012140208000000,0.000128365000000,0.000037501000000,0.000022306000000,0.000041451000000,0.000026256500000,0.000046588000000,0.000046983000000,0.000021911000000,0.000038686000000,0.000106636000000,0.000159970000000,0.000169847000000,0.000170242000000,0.012912552000000,0.000241353000000,0.000055279000000,0.000047772000000,0.000084908000000,0.000131525000000,0.000028232000000,0.000409253000000 +0.000018355000000,0.011932405000000,0.000112957000000,0.000037501000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000047377000000,0.000046192000000,0.000022701000000,0.000038686000000,0.000104661000000,0.000163130000000,0.000171032000000,0.000169846000000,0.012777837000000,0.000198291000000,0.000055279000000,0.000046983000000,0.000086093000000,0.000132315000000,0.000028034500000,0.000460612000000 +0.000037318500000,0.011705639000000,0.000115723000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000047377000000,0.000046587000000,0.000022108500000,0.000039871000000,0.000102686000000,0.000165500000000,0.000173007000000,0.000171031000000,0.013376354000000,0.000203426000000,0.000056069000000,0.000046192000000,0.000082143000000,0.000130735000000,0.000028231500000,0.000444019000000 +0.000019145500000,0.012211714000000,0.000152859000000,0.000040267000000,0.000016775000000,0.000042636000000,0.000026059000000,0.000046983000000,0.000048563000000,0.000023293500000,0.000039081000000,0.000115328000000,0.000163921000000,0.000170637000000,0.000170242000000,0.012129936000000,0.000204217000000,0.000055674000000,0.000065551000000,0.000084908000000,0.000167081000000,0.000028232000000,0.000409254000000 +0.000018948000000,0.011967960000000,0.000112958000000,0.000037501000000,0.000016380000000,0.000041452000000,0.000026257000000,0.000046587000000,0.000046192000000,0.000023096000000,0.000039081000000,0.000099130000000,0.000197106000000,0.000170637000000,0.000241747000000,0.012524207000000,0.000233847000000,0.000055278000000,0.000046193000000,0.000085698000000,0.000129155000000,0.000028232000000,0.000446389000000 +0.000018750500000,0.011638085000000,0.000110587000000,0.000037501000000,0.000016380000000,0.000084513000000,0.000026059000000,0.000047377000000,0.000046983000000,0.000022503500000,0.000039476000000,0.000116514000000,0.000161945000000,0.000172217000000,0.000169057000000,0.012591762000000,0.000201452000000,0.000054884000000,0.000045797000000,0.000084908000000,0.000129945000000,0.000028231500000,0.000409649000000 +0.000018157500000,0.011449640000000,0.000114143000000,0.000037106000000,0.000015392500000,0.000042242000000,0.000026454000000,0.000047773000000,0.000047377000000,0.000040281500000,0.000039081000000,0.000154044000000,0.000161155000000,0.000168661000000,0.000171031000000,0.012233442000000,0.000204217000000,0.000054883000000,0.000046587000000,0.000156415000000,0.000131921000000,0.000028232000000,0.000447574000000 +0.000019145500000,0.011608455000000,0.000110588000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000046587000000,0.000082933000000,0.000022503500000,0.000038686000000,0.000102686000000,0.000161945000000,0.000171822000000,0.000170242000000,0.013168552000000,0.000202242000000,0.000055674000000,0.000046587000000,0.000084513000000,0.000134686000000,0.000028232000000,0.000413599000000 +0.000019145500000,0.011889343000000,0.000127970000000,0.000040267000000,0.000016380000000,0.000042636000000,0.000026454500000,0.000047377000000,0.000046193000000,0.000022701000000,0.000039476000000,0.000109797000000,0.000199081000000,0.000170241000000,0.000170241000000,0.013369244000000,0.000234242000000,0.000055278000000,0.000046587000000,0.000084513000000,0.000168266000000,0.000028034500000,0.000442043000000 +0.000018158000000,0.011830874000000,0.000166686000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000046983000000,0.000047377000000,0.000022701000000,0.000039081000000,0.000115723000000,0.000212118000000,0.000171031000000,0.000206983000000,0.013307219000000,0.000201847000000,0.000055279000000,0.000046193000000,0.000084908000000,0.000132316000000,0.000028034000000,0.000405698000000 +0.000018157500000,0.011543664000000,0.000128760000000,0.000037106000000,0.000016182500000,0.000042637000000,0.000061417000000,0.000046982000000,0.000046983000000,0.000022701000000,0.000039476000000,0.000116909000000,0.000160365000000,0.000173007000000,0.000169846000000,0.013030281000000,0.000204612000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000443624000000 +0.000017565500000,0.011624257000000,0.000128365000000,0.000037501000000,0.000015787500000,0.000041846000000,0.000028232000000,0.000046982000000,0.000046982000000,0.000023096000000,0.000039477000000,0.000104266000000,0.000161946000000,0.000170637000000,0.000169056000000,0.012820503000000,0.000195525000000,0.000055673000000,0.000045797000000,0.000088068000000,0.000131130000000,0.000028034500000,0.000411624000000 +0.000017960000000,0.011944652000000,0.000114538000000,0.000038291000000,0.000016972500000,0.000043032000000,0.000032972500000,0.000047773000000,0.000046982000000,0.000021911000000,0.000039081000000,0.000135871000000,0.000162735000000,0.000187229000000,0.000170241000000,0.013188305000000,0.000237797000000,0.000101896000000,0.000046192000000,0.000084118000000,0.000134686000000,0.000028231500000,0.000457056000000 +0.000018750500000,0.012204603000000,0.000130340000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000026849500000,0.000046982000000,0.000046983000000,0.000022898500000,0.000056069000000,0.000188019000000,0.000161155000000,0.000170241000000,0.000168266000000,0.014317786000000,0.000201846000000,0.000055279000000,0.000046192000000,0.000084118000000,0.000131131000000,0.000028232000000,0.000406883000000 +0.000018158000000,0.011424356000000,0.000134291000000,0.000057254000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000047377000000,0.000022898500000,0.000039871000000,0.000116118000000,0.000194735000000,0.000171821000000,0.000169451000000,0.012867120000000,0.000236612000000,0.000055278000000,0.000045007000000,0.000083328000000,0.000127575000000,0.000062799500000,0.000483921000000 +0.000017762500000,0.011580010000000,0.000220810000000,0.000038291000000,0.000015787000000,0.000042241000000,0.000027047000000,0.000046982000000,0.000047378000000,0.000022108500000,0.000038686000000,0.000117303000000,0.000160760000000,0.000172216000000,0.000169847000000,0.012854478000000,0.000204217000000,0.000055674000000,0.000046192000000,0.000086093000000,0.000131920000000,0.000034948000000,0.000415180000000 +0.000017763000000,0.011980997000000,0.000169057000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046588000000,0.000047772000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000160365000000,0.000171427000000,0.000168266000000,0.013043713000000,0.000340908000000,0.000054488000000,0.000046587000000,0.000084513000000,0.000127180000000,0.000028232000000,0.000496562000000 +0.000018552500000,0.011580010000000,0.000130735000000,0.000037501000000,0.000015787500000,0.000042242000000,0.000026256500000,0.000063575000000,0.000046983000000,0.000022108500000,0.000039476000000,0.000116908000000,0.000164711000000,0.000169452000000,0.000169846000000,0.013138132000000,0.000217254000000,0.000055279000000,0.000046193000000,0.000082932000000,0.000132316000000,0.000028232000000,0.000408069000000 +0.000018553000000,0.011854578000000,0.000129945000000,0.000040266000000,0.000016380000000,0.000041846000000,0.000026849500000,0.000046982000000,0.000045797000000,0.000022898500000,0.000038686000000,0.000138636000000,0.000201451000000,0.000169847000000,0.000205402000000,0.013296553000000,0.000203821000000,0.000055278000000,0.000047377000000,0.000081747000000,0.000127179000000,0.000028231500000,0.000444414000000 +0.000018355500000,0.011682726000000,0.000131526000000,0.000040266000000,0.000015787500000,0.000041452000000,0.000026256500000,0.000046587000000,0.000046982000000,0.000022108500000,0.000039476000000,0.000114142000000,0.000163526000000,0.000170241000000,0.000169451000000,0.012616651000000,0.000204216000000,0.000055279000000,0.000046983000000,0.000083328000000,0.000131131000000,0.000028232000000,0.000407278000000 +0.000018948000000,0.011843121000000,0.000137451000000,0.000037895000000,0.000015787500000,0.000041451000000,0.000026849000000,0.000046982000000,0.000045798000000,0.000022503500000,0.000039872000000,0.000115723000000,0.000161550000000,0.000169846000000,0.000168661000000,0.012807861000000,0.000199476000000,0.000056464000000,0.000046192000000,0.000082538000000,0.000127575000000,0.000028232000000,0.000444810000000 +0.000018552500000,0.012047763000000,0.000147723000000,0.000040266000000,0.000042849000000,0.000042637000000,0.000027047000000,0.000046983000000,0.000047772000000,0.000022306000000,0.000039476000000,0.000102291000000,0.000161945000000,0.000388711000000,0.000169846000000,0.012285195000000,0.000201847000000,0.000055673000000,0.000084908000000,0.000084908000000,0.000129550000000,0.000028231500000,0.000413204000000 +0.000018158000000,0.011587516000000,0.000131526000000,0.000040266000000,0.000016380500000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048563000000,0.000022503500000,0.000038686000000,0.000116909000000,0.000163921000000,0.000256364000000,0.000169847000000,0.012451910000000,0.000202241000000,0.000055279000000,0.000061995000000,0.000084908000000,0.000167871000000,0.000028232000000,0.000483920000000 +0.000017762500000,0.012218034000000,0.000116908000000,0.000037501000000,0.000016380500000,0.000042636000000,0.000026651500000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000198686000000,0.000209747000000,0.000205797000000,0.013625243000000,0.000223970000000,0.000055278000000,0.000046192000000,0.000125205000000,0.000131921000000,0.000028232000000,0.000408858000000 +0.000028429500000,0.011342973000000,0.000130735000000,0.000038291000000,0.000015590000000,0.000075822000000,0.000027047000000,0.000046982000000,0.000066341000000,0.000022503500000,0.000039081000000,0.000118488000000,0.000165106000000,0.000184464000000,0.000169451000000,0.012948503000000,0.000200266000000,0.000054884000000,0.000045798000000,0.000084513000000,0.000132711000000,0.000028232000000,0.000451130000000 +0.000027047000000,0.011518380000000,0.000130736000000,0.000040266000000,0.000016380000000,0.000044217000000,0.000044429500000,0.000046983000000,0.000047772000000,0.000041071500000,0.000039476000000,0.000139427000000,0.000160760000000,0.000169452000000,0.000167871000000,0.012072257000000,0.000201846000000,0.000055279000000,0.000045402000000,0.000084513000000,0.000128365000000,0.000028232000000,0.000406489000000 +0.000017960000000,0.011440159000000,0.000180513000000,0.000040661000000,0.000016577500000,0.000042242000000,0.000026651500000,0.000046982000000,0.000048563000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000160365000000,0.000170242000000,0.000170242000000,0.012015368000000,0.000204216000000,0.000056069000000,0.000046982000000,0.000084118000000,0.000131920000000,0.000028232000000,0.000445599000000 +0.000018355500000,0.011691812000000,0.000118488000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000117304000000,0.000163526000000,0.000169846000000,0.000168266000000,0.012236998000000,0.000240562000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000167872000000,0.000028232000000,0.000450340000000 +0.000017762500000,0.011737639000000,0.000112958000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046587000000,0.000048168000000,0.000022108500000,0.000038686000000,0.000117304000000,0.000230291000000,0.000173007000000,0.000207377000000,0.012238182000000,0.000196315000000,0.000054883000000,0.000045797000000,0.000088464000000,0.000131525000000,0.000028231500000,0.000453500000000 +0.000017763000000,0.011818627000000,0.000118094000000,0.000040661000000,0.000016577500000,0.000042637000000,0.000026454000000,0.000046983000000,0.000048562000000,0.000021911000000,0.000039081000000,0.000104267000000,0.000163921000000,0.000170242000000,0.000169056000000,0.012269392000000,0.000201846000000,0.000055279000000,0.000047378000000,0.000086489000000,0.000131525000000,0.000036528500000,0.000409648000000 +0.000018948000000,0.011370232000000,0.000126784000000,0.000037501000000,0.000016380000000,0.000043427000000,0.000027047000000,0.000046587000000,0.000048562000000,0.000022503500000,0.000038686000000,0.000117303000000,0.000161945000000,0.000169452000000,0.000169057000000,0.012162725000000,0.000204216000000,0.000056069000000,0.000046587000000,0.000081747000000,0.000129550000000,0.000028231500000,0.000444019000000 +0.000018750500000,0.012060010000000,0.000129550000000,0.000040267000000,0.000015392500000,0.000041452000000,0.000026651500000,0.000046587000000,0.000048958000000,0.000022503500000,0.000039871000000,0.000120069000000,0.000161550000000,0.000169056000000,0.000169451000000,0.012658133000000,0.000257550000000,0.000055278000000,0.000045798000000,0.000084118000000,0.000130341000000,0.000028232000000,0.000411624000000 +0.000018158000000,0.011504553000000,0.000156810000000,0.000037106000000,0.000015590000000,0.000043031000000,0.000026256500000,0.000046587000000,0.000045797000000,0.000022108500000,0.000075032000000,0.000130736000000,0.000160760000000,0.000171031000000,0.000169846000000,0.012236207000000,0.000214488000000,0.000054884000000,0.000046192000000,0.000104661000000,0.000220809000000,0.000028232000000,0.000445599000000 +0.000018948000000,0.012587021000000,0.000131525000000,0.000037500000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000047773000000,0.000048958000000,0.000022306000000,0.000039871000000,0.000116908000000,0.000244117000000,0.000249649000000,0.000240957000000,0.012095566000000,0.000201846000000,0.000055278000000,0.000046192000000,0.000083723000000,0.000130340000000,0.000028034000000,0.000412414000000 +0.000018355500000,0.012000751000000,0.000113352000000,0.000071871000000,0.000015392500000,0.000041847000000,0.000026652000000,0.000047772000000,0.000048957000000,0.000022898500000,0.000039476000000,0.000116908000000,0.000163920000000,0.000169451000000,0.000167871000000,0.012573590000000,0.000203821000000,0.000056069000000,0.000045798000000,0.000083328000000,0.000133106000000,0.000028232000000,0.000449550000000 +0.000017762500000,0.012022479000000,0.000132710000000,0.000062390000000,0.000016380000000,0.000042636000000,0.000026651500000,0.000082538000000,0.000048167000000,0.000023096000000,0.000039081000000,0.000115723000000,0.000161155000000,0.000171821000000,0.000169057000000,0.012843811000000,0.000239772000000,0.000054883000000,0.000046587000000,0.000084909000000,0.000131526000000,0.000028232000000,0.000413599000000 +0.000018553000000,0.011974676000000,0.000131131000000,0.000075427000000,0.000016577500000,0.000042637000000,0.000027047000000,0.000046982000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000115328000000,0.000165106000000,0.000170636000000,0.000168662000000,0.012579120000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000088463000000,0.000167871000000,0.000028231500000,0.000554636000000 +0.000017762500000,0.011531022000000,0.000129945000000,0.000040266000000,0.000015787500000,0.000041452000000,0.000026256500000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039477000000,0.000102686000000,0.000161550000000,0.000173402000000,0.000213303000000,0.012697244000000,0.000201847000000,0.000054883000000,0.000046588000000,0.000088464000000,0.000128760000000,0.000028232000000,0.000469303000000 +0.000018158000000,0.011480454000000,0.000152463000000,0.000069500000000,0.000016380000000,0.000042636000000,0.000026651500000,0.000046588000000,0.000048563000000,0.000022898500000,0.000039476000000,0.000134686000000,0.000182093000000,0.000169846000000,0.000169846000000,0.012619022000000,0.000204217000000,0.000056859000000,0.000045007000000,0.000083723000000,0.000137452000000,0.000028232000000,0.000411624000000 +0.000027639500000,0.012033541000000,0.000131920000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000038686000000,0.000114537000000,0.000161550000000,0.000171031000000,0.000168662000000,0.012573590000000,0.000239377000000,0.000055279000000,0.000138242000000,0.000083723000000,0.000130340000000,0.000028034500000,0.000494587000000 +0.000026059000000,0.011450825000000,0.000112957000000,0.000041057000000,0.000016182500000,0.000042242000000,0.000026454500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039477000000,0.000116909000000,0.000159970000000,0.000169056000000,0.000170241000000,0.011901195000000,0.000201056000000,0.000055673000000,0.000118884000000,0.000122044000000,0.000131525000000,0.000028231500000,0.000408068000000 +0.000018750500000,0.011544455000000,0.000128365000000,0.000039871000000,0.000016380000000,0.000041846000000,0.000044231500000,0.000047377000000,0.000047377000000,0.000022503500000,0.000038686000000,0.000109402000000,0.000163921000000,0.000170242000000,0.000167871000000,0.012095171000000,0.000201846000000,0.000056859000000,0.000084513000000,0.000083723000000,0.000166686000000,0.000028232000000,0.000445600000000 +0.000018947500000,0.011302282000000,0.000114142000000,0.000038291000000,0.000015589500000,0.000057648000000,0.000026849500000,0.000047378000000,0.000132315000000,0.000022898500000,0.000039871000000,0.000107032000000,0.000163526000000,0.000171822000000,0.000206982000000,0.013040553000000,0.000203822000000,0.000055279000000,0.000050142000000,0.000085698000000,0.000128365000000,0.000028232000000,0.000413205000000 +0.000025071000000,0.012226726000000,0.000131920000000,0.000037896000000,0.000015590000000,0.000135081000000,0.000026059000000,0.000046982000000,0.000048958000000,0.000022503500000,0.000039872000000,0.000117698000000,0.000196315000000,0.000169846000000,0.000168266000000,0.013692404000000,0.000285204000000,0.000055673000000,0.000059624000000,0.000098736000000,0.000129155000000,0.000028231500000,0.000479180000000 +0.000018158000000,0.012002331000000,0.000157995000000,0.000037896000000,0.000015590000000,0.000043427000000,0.000026849000000,0.000047377000000,0.000048168000000,0.000048380000000,0.000039081000000,0.000150488000000,0.000163920000000,0.000170241000000,0.000168266000000,0.013608651000000,0.000201057000000,0.000090044000000,0.000045007000000,0.000084118000000,0.000134291000000,0.000045417000000,0.000409254000000 +0.000018158000000,0.012206182000000,0.000129946000000,0.000037501000000,0.000024676500000,0.000042636000000,0.000027047000000,0.000047773000000,0.000047377000000,0.000022306000000,0.000039476000000,0.000133500000000,0.000165501000000,0.000168662000000,0.000169452000000,0.012602824000000,0.000201847000000,0.000055674000000,0.000046588000000,0.000083328000000,0.000131920000000,0.000035540500000,0.000443229000000 +0.000045219500000,0.011644010000000,0.000130735000000,0.000037501000000,0.000029022000000,0.000041451000000,0.000026059000000,0.000047377000000,0.000046983000000,0.000022701000000,0.000039081000000,0.000098735000000,0.000161551000000,0.000170242000000,0.000169846000000,0.012849737000000,0.000203822000000,0.000054884000000,0.000046587000000,0.000086093000000,0.000225550000000,0.000028232000000,0.000408859000000 +0.000018553000000,0.011918973000000,0.000129550000000,0.000037896000000,0.000015985000000,0.000042637000000,0.000026454000000,0.000046587000000,0.000048167000000,0.000022108500000,0.000039081000000,0.000105452000000,0.000199476000000,0.000207772000000,0.000204612000000,0.012579121000000,0.000284810000000,0.000055278000000,0.000046982000000,0.000084909000000,0.000135081000000,0.000028232000000,0.000478784000000 +0.000019145500000,0.011479270000000,0.000109402000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000048168000000,0.000021911000000,0.000039081000000,0.000118093000000,0.000162340000000,0.000169846000000,0.000169451000000,0.012445985000000,0.000200266000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000132316000000,0.000028232000000,0.000412019000000 +0.000018157500000,0.013808552000000,0.000128760000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046983000000,0.000048167000000,0.000022503500000,0.000039081000000,0.000107032000000,0.000160760000000,0.000178538000000,0.000167476000000,0.012648256000000,0.000201846000000,0.000055278000000,0.000046192000000,0.000154044000000,0.000130735000000,0.000028232000000,0.000463772000000 +0.000018750500000,0.012647862000000,0.000167871000000,0.000040267000000,0.000015787500000,0.000042242000000,0.000026849000000,0.000046982000000,0.000048562000000,0.000022701000000,0.000039476000000,0.000116118000000,0.000163526000000,0.000170242000000,0.000221205000000,0.012921639000000,0.000203822000000,0.000056069000000,0.000046587000000,0.000088464000000,0.000168266000000,0.000028429500000,0.000410439000000 +0.000017960500000,0.012320355000000,0.000131131000000,0.000060020000000,0.000015392500000,0.000041451000000,0.000027047000000,0.000046192000000,0.000048168000000,0.000023293500000,0.000038686000000,0.000152464000000,0.000162340000000,0.000171426000000,0.000186834000000,0.013198972000000,0.000203822000000,0.000055674000000,0.000046587000000,0.000084513000000,0.000134686000000,0.000028034500000,0.000897944000000 +0.000017762500000,0.011626233000000,0.000130340000000,0.000072266000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000046983000000,0.000045797000000,0.000022503500000,0.000075426000000,0.000098735000000,0.000196711000000,0.000169846000000,0.000244908000000,0.013107713000000,0.000200662000000,0.000054883000000,0.000065550000000,0.000084513000000,0.000130340000000,0.000028034000000,0.000506439000000 +0.000018750500000,0.012776256000000,0.000131131000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000101106000000,0.000046192000000,0.000022108500000,0.000039081000000,0.000102291000000,0.000160365000000,0.000170636000000,0.000170242000000,0.014089440000000,0.000198686000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000139032000000,0.000028232000000,0.000408464000000 +0.000017762500000,0.011932009000000,0.000131131000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026059000000,0.000046587000000,0.000046588000000,0.000022306000000,0.000039081000000,0.000109402000000,0.000164710000000,0.000170241000000,0.000168661000000,0.012569244000000,0.000204217000000,0.000055673000000,0.000047377000000,0.000121254000000,0.000130340000000,0.000028232000000,0.000444019000000 +0.000017763000000,0.011769245000000,0.000118489000000,0.000037501000000,0.000016775000000,0.000043032000000,0.000026257000000,0.000046982000000,0.000048562000000,0.000022503500000,0.000040266000000,0.000117699000000,0.000160365000000,0.000169846000000,0.000169847000000,0.013113243000000,0.000204217000000,0.000055279000000,0.000046983000000,0.000084513000000,0.000155624000000,0.000028231500000,0.000408859000000 +0.000018158000000,0.012094775000000,0.000166686000000,0.000037501000000,0.000015590000000,0.000041056000000,0.000027046500000,0.000046982000000,0.000045798000000,0.000022503500000,0.000038686000000,0.000109402000000,0.000163130000000,0.000173007000000,0.000186044000000,0.012627318000000,0.000197895000000,0.000054883000000,0.000045007000000,0.000088069000000,0.000132711000000,0.000036923500000,0.000497748000000 +0.000018552500000,0.011687862000000,0.000130735000000,0.000039871000000,0.000015590000000,0.000041846000000,0.000044627000000,0.000046588000000,0.000047377000000,0.000022108500000,0.000039476000000,0.000107426000000,0.000257945000000,0.000169847000000,0.000168266000000,0.013809737000000,0.000198291000000,0.000055279000000,0.000065945000000,0.000118883000000,0.000137451000000,0.000035540500000,0.000408859000000 +0.000019145500000,0.011699714000000,0.000129551000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046587000000,0.000046587000000,0.000022306000000,0.000039081000000,0.000157995000000,0.000319970000000,0.000169452000000,0.000167476000000,0.013282725000000,0.000204217000000,0.000054883000000,0.000082538000000,0.000085699000000,0.000131920000000,0.000037515500000,0.000412019000000 +0.000017763000000,0.011975862000000,0.000110587000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000026849500000,0.000046587000000,0.000063970000000,0.000022898500000,0.000038686000000,0.000116513000000,0.000178538000000,0.000171032000000,0.000169056000000,0.012686577000000,0.000197106000000,0.000056464000000,0.000048168000000,0.000084118000000,0.000181304000000,0.000034750000000,0.000410439000000 +0.000018552500000,0.011907911000000,0.000114143000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046587000000,0.000060414000000,0.000022701000000,0.000039081000000,0.000114538000000,0.000160365000000,0.000170637000000,0.000189600000000,0.014152651000000,0.000201452000000,0.000071871000000,0.000061600000000,0.000084118000000,0.000130735000000,0.000028232000000,0.000412019000000 +0.000018158000000,0.011623072000000,0.000130735000000,0.000040661000000,0.000015590000000,0.000077402000000,0.000026454000000,0.000046983000000,0.000048958000000,0.000022898500000,0.000039871000000,0.000115723000000,0.000163920000000,0.000225155000000,0.000169846000000,0.014298823000000,0.000201056000000,0.000055674000000,0.000046982000000,0.000082933000000,0.000129945000000,0.000028232000000,0.000412809000000 +0.000018158000000,0.012291516000000,0.000150093000000,0.000037501000000,0.000015589500000,0.000042242000000,0.000026454500000,0.000046587000000,0.000047377000000,0.000040083500000,0.000038686000000,0.000104662000000,0.000161155000000,0.000170636000000,0.000169056000000,0.013063466000000,0.000222784000000,0.000054488000000,0.000047377000000,0.000084514000000,0.000129155000000,0.000028034500000,0.000410044000000 +0.000017960000000,0.011947813000000,0.000130735000000,0.000040661000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000048563000000,0.000023096000000,0.000039871000000,0.000117698000000,0.000160364000000,0.000171821000000,0.000170637000000,0.013461293000000,0.000399377000000,0.000055279000000,0.000048563000000,0.000083328000000,0.000169451000000,0.000028232000000,0.000442043000000 +0.000018948000000,0.011631369000000,0.000129550000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000038686000000,0.000155624000000,0.000160364000000,0.000172217000000,0.000169846000000,0.013516206000000,0.000279278000000,0.000055278000000,0.000046982000000,0.000088464000000,0.000131525000000,0.000028232000000,0.000408068000000 +0.000018750500000,0.012095565000000,0.000113352000000,0.000058044000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000047378000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000099130000000,0.000162340000000,0.000171822000000,0.000206588000000,0.014932106000000,0.000233847000000,0.000055674000000,0.000047378000000,0.000104661000000,0.000132711000000,0.000028232000000,0.000448364000000 +0.000018355500000,0.012243713000000,0.000114537000000,0.000072267000000,0.000015590000000,0.000042637000000,0.000026454500000,0.000047377000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000114933000000,0.000165105000000,0.000171032000000,0.000168266000000,0.014236008000000,0.000204612000000,0.000055674000000,0.000045402000000,0.000088069000000,0.000132315000000,0.000028231500000,0.000409648000000 +0.000028232000000,0.011999961000000,0.000132316000000,0.000073847000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000116909000000,0.000163526000000,0.000169847000000,0.000169056000000,0.015217736000000,0.000203031000000,0.000055673000000,0.000046192000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000481945000000 +0.000043837000000,0.011404998000000,0.000129155000000,0.000077402000000,0.000015590000000,0.000043821000000,0.000026256500000,0.000046587000000,0.000046587000000,0.000022898500000,0.000039476000000,0.000117304000000,0.000161155000000,0.000168661000000,0.000170241000000,0.014952649000000,0.000201451000000,0.000054094000000,0.000065551000000,0.000084513000000,0.000171031000000,0.000028232000000,0.000409254000000 +0.000017763000000,0.011303862000000,0.000113352000000,0.000053698000000,0.000016380500000,0.000042241000000,0.000026849500000,0.000046588000000,0.000047377000000,0.000022898500000,0.000039476000000,0.000116908000000,0.000161945000000,0.000169057000000,0.000170637000000,0.013797885000000,0.000282439000000,0.000055278000000,0.000061600000000,0.000083328000000,0.000130340000000,0.000028034000000,0.000446389000000 +0.000017960000000,0.011982183000000,0.000118488000000,0.000040661000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000065550000000,0.000046983000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000161155000000,0.000172217000000,0.000252019000000,0.013361738000000,0.000204612000000,0.000054884000000,0.000046192000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000413599000000 +0.000018158000000,0.011728158000000,0.000158785000000,0.000040267000000,0.000034355500000,0.000042637000000,0.000027046500000,0.000049748000000,0.000046192000000,0.000022306000000,0.000057649000000,0.000152464000000,0.000213303000000,0.000170241000000,0.000167871000000,0.013030676000000,0.000203822000000,0.000055673000000,0.000046192000000,0.000083723000000,0.000136266000000,0.000028429500000,0.000447969000000 +0.000018157500000,0.011645985000000,0.000116908000000,0.000042637000000,0.000016380000000,0.000042636000000,0.000026454000000,0.000060019000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000107032000000,0.000161155000000,0.000173007000000,0.000170637000000,0.013271663000000,0.000199872000000,0.000054884000000,0.000046587000000,0.000083328000000,0.000131921000000,0.000028231500000,0.000424661000000 +0.000018158000000,0.012679467000000,0.000131526000000,0.000043032000000,0.000015590000000,0.000041451000000,0.000044627000000,0.000046983000000,0.000048167000000,0.000022306000000,0.000039476000000,0.000103081000000,0.000162735000000,0.000170637000000,0.000170241000000,0.013545045000000,0.000235822000000,0.000054883000000,0.000045797000000,0.000084909000000,0.000129550000000,0.000028232000000,0.000484710000000 +0.000017762500000,0.012120850000000,0.000128760000000,0.000092414000000,0.000015392500000,0.000042637000000,0.000027046500000,0.000047378000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000160365000000,0.000171822000000,0.000205797000000,0.012866330000000,0.000203427000000,0.000054884000000,0.000045007000000,0.000192760000000,0.000134291000000,0.000046207000000,0.000410834000000 +0.000018158000000,0.011468998000000,0.000134686000000,0.000073056000000,0.000015590000000,0.000041846000000,0.000026256500000,0.000046587000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000114933000000,0.000198685000000,0.000187624000000,0.000168661000000,0.012938626000000,0.000199476000000,0.000055673000000,0.000045402000000,0.000204217000000,0.000131921000000,0.000028232000000,0.000450340000000 +0.000018750500000,0.011755418000000,0.000132711000000,0.000057254000000,0.000015392500000,0.000042241000000,0.000026454500000,0.000046982000000,0.000083723000000,0.000022108500000,0.000039081000000,0.000109007000000,0.000162735000000,0.000169057000000,0.000167871000000,0.013773392000000,0.000201056000000,0.000054884000000,0.000046982000000,0.000088859000000,0.000135081000000,0.000028232000000,0.000407673000000 +0.000018157500000,0.011946627000000,0.000129155000000,0.000058044000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046588000000,0.000048168000000,0.000022503500000,0.000039477000000,0.000115328000000,0.000161550000000,0.000172217000000,0.000169057000000,0.013600750000000,0.000272562000000,0.000054883000000,0.000046192000000,0.000098340000000,0.000170636000000,0.000028232000000,0.000465747000000 +0.000018750500000,0.011964010000000,0.000129155000000,0.000037895000000,0.000015392000000,0.000042242000000,0.000026454000000,0.000047377000000,0.000048562000000,0.000022899000000,0.000039476000000,0.000161155000000,0.000161550000000,0.000172217000000,0.000170241000000,0.013494872000000,0.000204216000000,0.000055674000000,0.000046587000000,0.000084118000000,0.000131920000000,0.000028231500000,0.000421105000000 +0.000018750500000,0.011444110000000,0.000130340000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000026652000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000106636000000,0.000160760000000,0.000172217000000,0.000242537000000,0.013843317000000,0.000203821000000,0.000055279000000,0.000045797000000,0.000083723000000,0.000131131000000,0.000028232000000,0.000739525000000 +0.000018750500000,0.011546825000000,0.000130341000000,0.000037501000000,0.000015590000000,0.000061205000000,0.000026651500000,0.000047378000000,0.000045797000000,0.000039491000000,0.000039081000000,0.000116908000000,0.000231871000000,0.000173402000000,0.000170242000000,0.013744551000000,0.000201056000000,0.000055278000000,0.000047378000000,0.000138636000000,0.000130735000000,0.000028232000000,0.000459427000000 +0.000017762500000,0.011819418000000,0.000131131000000,0.000083723000000,0.000016380000000,0.000055674000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000030404500000,0.000039081000000,0.000116908000000,0.000164711000000,0.000169846000000,0.000170636000000,0.013168948000000,0.000197106000000,0.000055279000000,0.000047377000000,0.000084908000000,0.000129551000000,0.000028231500000,0.000413600000000 +0.000018750500000,0.011892899000000,0.000129945000000,0.000040662000000,0.000015590000000,0.000042242000000,0.000027047000000,0.000046587000000,0.000048168000000,0.000022701000000,0.000039081000000,0.000107032000000,0.000165896000000,0.000170241000000,0.000169452000000,0.013392157000000,0.000203427000000,0.000055278000000,0.000046587000000,0.000084513000000,0.000202636000000,0.000028232000000,0.000491426000000 +0.000019145500000,0.011433443000000,0.000129550000000,0.000040662000000,0.000016775000000,0.000043032000000,0.000026652000000,0.000046587000000,0.000048958000000,0.000022306000000,0.000038686000000,0.000117303000000,0.000163525000000,0.000168662000000,0.000169451000000,0.012979318000000,0.000199080000000,0.000056069000000,0.000046192000000,0.000083328000000,0.000129156000000,0.000028034500000,0.000410044000000 +0.000019145500000,0.011465838000000,0.000114537000000,0.000037501000000,0.000016577500000,0.000042636000000,0.000026651500000,0.000046983000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000152859000000,0.000161945000000,0.000173007000000,0.000198686000000,0.013466034000000,0.000219624000000,0.000055278000000,0.000048958000000,0.000084513000000,0.000131131000000,0.000028231500000,0.000493007000000 +0.000018947500000,0.011537738000000,0.000113352000000,0.000040661000000,0.000015590000000,0.000041452000000,0.000027047000000,0.000046587000000,0.000046587000000,0.000022503500000,0.000039081000000,0.000115328000000,0.000198291000000,0.000189599000000,0.000169452000000,0.013114824000000,0.000199871000000,0.000054884000000,0.000045797000000,0.000082143000000,0.000135081000000,0.000028232000000,0.000415970000000 +0.000019145500000,0.011962430000000,0.000115328000000,0.000059624000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000164316000000,0.000170242000000,0.000170241000000,0.012934281000000,0.000203822000000,0.000055674000000,0.000080168000000,0.000086884000000,0.000132711000000,0.000028232000000,0.000447575000000 +0.000018750500000,0.011320454000000,0.000146538000000,0.000053698000000,0.000016380500000,0.000042637000000,0.000026849000000,0.000046587000000,0.000046192000000,0.000021910500000,0.000039081000000,0.000098735000000,0.000162340000000,0.000171822000000,0.000168662000000,0.013578230000000,0.000204612000000,0.000054488000000,0.000048958000000,0.000086489000000,0.000134290000000,0.000028231500000,0.000410834000000 +0.000018553000000,0.011934381000000,0.000130340000000,0.000040266000000,0.000016380500000,0.000042637000000,0.000026651500000,0.000067131000000,0.000048958000000,0.000022306000000,0.000039476000000,0.000117698000000,0.000164316000000,0.000214094000000,0.000228315000000,0.013490922000000,0.000231081000000,0.000055279000000,0.000058439000000,0.000084908000000,0.000133896000000,0.000028232000000,0.000444810000000 +0.000034750500000,0.012002331000000,0.000130735000000,0.000039476000000,0.000016775500000,0.000041451000000,0.000036330500000,0.000046983000000,0.000046192000000,0.000022701000000,0.000039081000000,0.000118488000000,0.000160760000000,0.000261105000000,0.000169847000000,0.013598379000000,0.000202241000000,0.000055278000000,0.000045797000000,0.000105452000000,0.000130340000000,0.000046207000000,0.000410044000000 +0.000018750500000,0.012400948000000,0.000110192000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000042651500000,0.000046587000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000197106000000,0.000171032000000,0.000171031000000,0.013480651000000,0.000203426000000,0.000055279000000,0.000046587000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000462587000000 +0.000017960000000,0.011574875000000,0.000113748000000,0.000037895000000,0.000016577500000,0.000042242000000,0.000027047000000,0.000047377000000,0.000046587000000,0.000022306000000,0.000075426000000,0.000116908000000,0.000162736000000,0.000171032000000,0.000168661000000,0.014060601000000,0.000201451000000,0.000056068000000,0.000046192000000,0.000084513000000,0.000149698000000,0.000028232000000,0.000413994000000 +0.000018158000000,0.011342183000000,0.000130736000000,0.000037501000000,0.000016380000000,0.000041451000000,0.000026059000000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000118094000000,0.000160760000000,0.000207773000000,0.000169846000000,0.013722429000000,0.000260710000000,0.000055674000000,0.000046983000000,0.000082538000000,0.000130736000000,0.000028231500000,0.000447179000000 +0.000017762500000,0.011601738000000,0.000163920000000,0.000040661000000,0.000016380000000,0.000041452000000,0.000027046500000,0.000046588000000,0.000047377000000,0.000022898500000,0.000039476000000,0.000115723000000,0.000164315000000,0.000170637000000,0.000204612000000,0.012984849000000,0.000201451000000,0.000055279000000,0.000045007000000,0.000084513000000,0.000169451000000,0.000028034500000,0.000408463000000 +0.000018948000000,0.012165886000000,0.000131526000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000027244500000,0.000046982000000,0.000082933000000,0.000022701500000,0.000039081000000,0.000114933000000,0.000161946000000,0.000170637000000,0.000169847000000,0.013805391000000,0.000202636000000,0.000055278000000,0.000046587000000,0.000084513000000,0.000130735000000,0.000028232000000,0.000446389000000 +0.000017763000000,0.011241443000000,0.000131920000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046982000000,0.000047378000000,0.000021910500000,0.000039081000000,0.000107032000000,0.000197896000000,0.000171032000000,0.000171427000000,0.013636305000000,0.000204217000000,0.000054884000000,0.000045007000000,0.000084118000000,0.000133501000000,0.000028034500000,0.000408464000000 +0.000019145500000,0.011578035000000,0.000113353000000,0.000037896000000,0.000024874000000,0.000042637000000,0.000026454000000,0.000047377000000,0.000047772000000,0.000021911000000,0.000039081000000,0.000107821000000,0.000160760000000,0.000191575000000,0.000170241000000,0.014075613000000,0.000237797000000,0.000054883000000,0.000046192000000,0.000084513000000,0.000173797000000,0.000028231500000,0.000447575000000 +0.000018158000000,0.012000750000000,0.000117304000000,0.000037501000000,0.000023886500000,0.000041846000000,0.000026849500000,0.000046588000000,0.000047377000000,0.000022503500000,0.000040267000000,0.000139426000000,0.000160760000000,0.000171427000000,0.000169846000000,0.014664650000000,0.000201846000000,0.000090834000000,0.000046192000000,0.000104661000000,0.000132316000000,0.000028232000000,0.000408463000000 +0.000017763000000,0.012032751000000,0.000113747000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000046982000000,0.000046192000000,0.000022108500000,0.000039476000000,0.000116513000000,0.000163920000000,0.000171822000000,0.000481945000000,0.013673836000000,0.000203821000000,0.000069896000000,0.000046193000000,0.000084119000000,0.000130735000000,0.000028232000000,0.000479179000000 +0.000017762500000,0.011446084000000,0.000198686000000,0.000076612000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000047377000000,0.000045797000000,0.000040084000000,0.000039081000000,0.000119673000000,0.000160365000000,0.000171427000000,0.000191575000000,0.015212205000000,0.000203821000000,0.000054884000000,0.000045797000000,0.000084118000000,0.000129155000000,0.000028231500000,0.000408069000000 +0.000017763000000,0.011646775000000,0.000110982000000,0.000037501000000,0.000015590000000,0.000113352000000,0.000027047000000,0.000046983000000,0.000046982000000,0.000022701000000,0.000039477000000,0.000109402000000,0.000201847000000,0.000170637000000,0.000189205000000,0.014080749000000,0.000272957000000,0.000055278000000,0.000046192000000,0.000084513000000,0.000129946000000,0.000028034500000,0.000425847000000 +0.000018948000000,0.011690627000000,0.000132316000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000048167000000,0.000022701000000,0.000038686000000,0.000103081000000,0.000161945000000,0.000178537000000,0.000168662000000,0.014861390000000,0.000201451000000,0.000055279000000,0.000045402000000,0.000086489000000,0.000349600000000,0.000028232000000,0.000410044000000 +0.000017763000000,0.011991269000000,0.000129155000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000047377000000,0.000048168000000,0.000022898500000,0.000039871000000,0.000098735000000,0.000165501000000,0.000169847000000,0.000169846000000,0.014114725000000,0.000203822000000,0.000055673000000,0.000046982000000,0.000083723000000,0.000152069000000,0.000028232000000,0.000412414000000 +0.000018158000000,0.011474529000000,0.000129155000000,0.000038291000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000047378000000,0.000048562000000,0.000022701000000,0.000039081000000,0.000115328000000,0.000161155000000,0.000170637000000,0.000168662000000,0.014418526000000,0.000201451000000,0.000055674000000,0.000045797000000,0.000084908000000,0.000131130000000,0.000028232000000,0.000463772000000 +0.000018948000000,0.012757688000000,0.000112958000000,0.000039871000000,0.000015392500000,0.000041451000000,0.000027441500000,0.000046983000000,0.000046983000000,0.000021911000000,0.000039081000000,0.000152464000000,0.000160365000000,0.000170241000000,0.000171031000000,0.013636700000000,0.000271773000000,0.000055673000000,0.000082142000000,0.000085699000000,0.000172217000000,0.000028232000000,0.000413599000000 +0.000017763000000,0.011647170000000,0.000146142000000,0.000038686000000,0.000015590000000,0.000042242000000,0.000044034500000,0.000047377000000,0.000045797000000,0.000022701000000,0.000060019000000,0.000116513000000,0.000235822000000,0.000171032000000,0.000213303000000,0.013072157000000,0.000201846000000,0.000054884000000,0.000046587000000,0.000082538000000,0.000136662000000,0.000046009500000,0.000441254000000 +0.000017762500000,0.011621097000000,0.000129155000000,0.000037895000000,0.000016577500000,0.000042637000000,0.000026454000000,0.000065550000000,0.000046982000000,0.000022306000000,0.000041451000000,0.000102686000000,0.000163526000000,0.000169847000000,0.000170637000000,0.013777342000000,0.000203427000000,0.000055674000000,0.000046982000000,0.000124414000000,0.000131920000000,0.000028232000000,0.000409254000000 +0.000017763000000,0.011505739000000,0.000126785000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000098341000000,0.000046587000000,0.000023096000000,0.000053698000000,0.000114143000000,0.000163920000000,0.000170637000000,0.000169056000000,0.013812897000000,0.000202637000000,0.000092414000000,0.000046982000000,0.000085699000000,0.000131131000000,0.000028232000000,0.000448760000000 +0.000017762500000,0.011372998000000,0.000129945000000,0.000037896000000,0.000015590000000,0.000041847000000,0.000026454500000,0.000063180000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000109402000000,0.000163525000000,0.000170241000000,0.000168661000000,0.013530824000000,0.000265451000000,0.000055279000000,0.000045797000000,0.000086883000000,0.000128365000000,0.000028232000000,0.000413995000000 +0.000018158000000,0.011440159000000,0.000110982000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000060809000000,0.000046192000000,0.000021911000000,0.000058439000000,0.000116118000000,0.000165896000000,0.000168661000000,0.000208563000000,0.013408354000000,0.000201846000000,0.000055278000000,0.000045798000000,0.000084908000000,0.000182488000000,0.000028232000000,0.000444809000000 +0.000018158000000,0.011807960000000,0.000118488000000,0.000037896000000,0.000015590000000,0.000043031000000,0.000026454000000,0.000046192000000,0.000048562000000,0.000022306000000,0.000110192000000,0.000117303000000,0.000509204000000,0.000171427000000,0.000221600000000,0.012857639000000,0.000204612000000,0.000055279000000,0.000046192000000,0.000082538000000,0.000133106000000,0.000028232000000,0.000408858000000 +0.000017762500000,0.011403023000000,0.000173402000000,0.000037501000000,0.000015589500000,0.000042637000000,0.000026651500000,0.000047378000000,0.000046192000000,0.000022898500000,0.000074637000000,0.000131526000000,0.000178143000000,0.000170241000000,0.000169846000000,0.013928650000000,0.000236612000000,0.000055278000000,0.000047378000000,0.000084513000000,0.000134291000000,0.000028231500000,0.000443624000000 +0.000036725500000,0.011450825000000,0.000110192000000,0.000037105000000,0.000015590000000,0.000042637000000,0.000026454500000,0.000047377000000,0.000101896000000,0.000022898500000,0.000055674000000,0.000103476000000,0.000162340000000,0.000170636000000,0.000169847000000,0.013784848000000,0.000201451000000,0.000055279000000,0.000046587000000,0.000084908000000,0.000129946000000,0.000028232000000,0.000407278000000 +0.000018750000000,0.011796899000000,0.000132316000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046982000000,0.000048562000000,0.000023096000000,0.000071476000000,0.000116513000000,0.000160760000000,0.000169056000000,0.000170241000000,0.013806181000000,0.000201846000000,0.000055278000000,0.000045797000000,0.000083723000000,0.000165500000000,0.000028232000000,0.000456266000000 +0.000018750500000,0.011658233000000,0.000117698000000,0.000040266000000,0.000015392500000,0.000042242000000,0.000026651500000,0.000046983000000,0.000047377000000,0.000023294000000,0.000039871000000,0.000098341000000,0.000163921000000,0.000172217000000,0.000190389000000,0.014462773000000,0.000204612000000,0.000055674000000,0.000046587000000,0.000083723000000,0.000132711000000,0.000028231500000,0.000407278000000 +0.000018158000000,0.011331912000000,0.000117698000000,0.000040266000000,0.000015589500000,0.000042637000000,0.000026256500000,0.000046983000000,0.000048958000000,0.000022701000000,0.000039081000000,0.000117303000000,0.000161945000000,0.000208167000000,0.000169846000000,0.012875811000000,0.000315624000000,0.000055278000000,0.000046587000000,0.000116908000000,0.000128760000000,0.000028232000000,0.000446389000000 +0.000018750000000,0.011436998000000,0.000118093000000,0.000037895000000,0.000015590000000,0.000042636000000,0.000026454500000,0.000046982000000,0.000046982000000,0.000022108500000,0.000039477000000,0.000109402000000,0.000160365000000,0.000170241000000,0.000168662000000,0.013466823000000,0.000479180000000,0.000055279000000,0.000047378000000,0.000083723000000,0.000128364000000,0.000028232000000,0.000412019000000 +0.000018158000000,0.012075022000000,0.000174192000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000023096000000,0.000038686000000,0.000103081000000,0.000159970000000,0.000168266000000,0.000170636000000,0.013968157000000,0.000253994000000,0.000055279000000,0.000047377000000,0.000085698000000,0.000132316000000,0.000028232000000,0.000557007000000 +0.000017960500000,0.012028010000000,0.000113353000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046983000000,0.000048167000000,0.000030997000000,0.000039476000000,0.000116513000000,0.000165500000000,0.000169452000000,0.000170637000000,0.013325392000000,0.000217649000000,0.000054883000000,0.000046982000000,0.000083328000000,0.000213303000000,0.000028034500000,0.000407279000000 +0.000018355000000,0.011732899000000,0.000131525000000,0.000055278000000,0.000016182500000,0.000078192000000,0.000026652000000,0.000047377000000,0.000048563000000,0.000023096500000,0.000039476000000,0.000116908000000,0.000160760000000,0.000170637000000,0.000204217000000,0.013472749000000,0.000204217000000,0.000055279000000,0.000047377000000,0.000086094000000,0.000130340000000,0.000028232000000,0.000445204000000 +0.000018158000000,0.011766874000000,0.000112563000000,0.000037896000000,0.000015590000000,0.000041847000000,0.000026059000000,0.000046982000000,0.000045797000000,0.000022898500000,0.000038686000000,0.000106242000000,0.000163130000000,0.000171032000000,0.000170636000000,0.013130231000000,0.000201451000000,0.000055278000000,0.000046982000000,0.000084118000000,0.000130340000000,0.000046207000000,0.000413994000000 +0.000017762500000,0.011592257000000,0.000129550000000,0.000040266000000,0.000016380000000,0.000042636000000,0.000045022000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039871000000,0.000102291000000,0.000161550000000,0.000171822000000,0.000170242000000,0.012060800000000,0.000238192000000,0.000055279000000,0.000046192000000,0.000084513000000,0.000131130000000,0.000028034500000,0.000483921000000 +0.000018553000000,0.011777936000000,0.000127970000000,0.000040662000000,0.000033762500000,0.000041451000000,0.000026651500000,0.000046588000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000098735000000,0.000160365000000,0.000169847000000,0.000169846000000,0.012093590000000,0.000202241000000,0.000055278000000,0.000088464000000,0.000083328000000,0.000130736000000,0.000028232000000,0.000411624000000 +0.000018158000000,0.012055664000000,0.000144563000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026257000000,0.000065945000000,0.000048167000000,0.000022701000000,0.000039476000000,0.000105846000000,0.000176563000000,0.000168266000000,0.000171427000000,0.011766479000000,0.000204217000000,0.000055279000000,0.000046192000000,0.000122834000000,0.000132316000000,0.000028231500000,0.000453500000000 +0.000018750500000,0.011376159000000,0.000110982000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000063575000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000151674000000,0.000160760000000,0.000171426000000,0.000206192000000,0.011715517000000,0.000201056000000,0.000055279000000,0.000046192000000,0.000082142000000,0.000131131000000,0.000028232000000,0.000408858000000 +0.000018553000000,0.011597392000000,0.000116513000000,0.000040267000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000047377000000,0.000046982000000,0.000022108500000,0.000039476000000,0.000116118000000,0.000163920000000,0.000169846000000,0.000170242000000,0.011841146000000,0.000238192000000,0.000055279000000,0.000045797000000,0.000084909000000,0.000131526000000,0.000028232000000,0.000503278000000 +0.000017763000000,0.011845887000000,0.000129155000000,0.000037896000000,0.000015589500000,0.000041452000000,0.000027047000000,0.000046587000000,0.000047377000000,0.000022503500000,0.000072662000000,0.000103081000000,0.000161155000000,0.000170241000000,0.000170241000000,0.011773986000000,0.000201846000000,0.000055279000000,0.000046192000000,0.000085698000000,0.000129550000000,0.000028231500000,0.000408069000000 +0.000018750500000,0.011722628000000,0.000128760000000,0.000039871000000,0.000016380000000,0.000042241000000,0.000026651500000,0.000046983000000,0.000048957000000,0.000022701000000,0.000053699000000,0.000103081000000,0.000180513000000,0.000171032000000,0.000170637000000,0.011901590000000,0.000204217000000,0.000055673000000,0.000045797000000,0.000084118000000,0.000184464000000,0.000028232000000,0.000557007000000 +0.000018157500000,0.011660998000000,0.000130735000000,0.000037105000000,0.000015392500000,0.000044612000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022898500000,0.000039476000000,0.000115723000000,0.000160760000000,0.000170242000000,0.000171031000000,0.012218825000000,0.000201451000000,0.000054884000000,0.000046983000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000547130000000 +0.000018948000000,0.012054479000000,0.000128365000000,0.000037501000000,0.000016182500000,0.000042637000000,0.000026454500000,0.000046587000000,0.000085304000000,0.000023096000000,0.000039081000000,0.000115723000000,0.000162735000000,0.000172217000000,0.000205797000000,0.012274133000000,0.000237797000000,0.000055673000000,0.000046587000000,0.000085304000000,0.000133501000000,0.000028231500000,0.000411624000000 +0.000017763000000,0.012018924000000,0.000113353000000,0.000037895000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046192000000,0.000061599000000,0.000023096000000,0.000039476000000,0.000116118000000,0.000164711000000,0.000174982000000,0.000169846000000,0.011932405000000,0.000202242000000,0.000056069000000,0.000046588000000,0.000082537000000,0.000131920000000,0.000028232000000,0.000445600000000 +0.000018553000000,0.011376159000000,0.000128760000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000153254000000,0.000163526000000,0.000171427000000,0.000169846000000,0.012279269000000,0.000204612000000,0.000054884000000,0.000045797000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000410439000000 +0.000017960500000,0.011426331000000,0.000128365000000,0.000037501000000,0.000016578000000,0.000041057000000,0.000026257000000,0.000046587000000,0.000048958000000,0.000022503500000,0.000039476000000,0.000136267000000,0.000203426000000,0.000170241000000,0.000169846000000,0.013945638000000,0.000201451000000,0.000055278000000,0.000045797000000,0.000121254000000,0.000167871000000,0.000028232000000,0.000492612000000 +0.000018750500000,0.013770626000000,0.000112957000000,0.000037501000000,0.000016182500000,0.000042636000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000120464000000,0.000161550000000,0.000171822000000,0.000189600000000,0.013368058000000,0.000238192000000,0.000055674000000,0.000046983000000,0.000085303000000,0.000130340000000,0.000028232000000,0.000408464000000 +0.000036923500000,0.012363417000000,0.000116514000000,0.000037501000000,0.000016182500000,0.000042242000000,0.000026651500000,0.000046982000000,0.000046587000000,0.000022503500000,0.000039476000000,0.000115328000000,0.000201846000000,0.000169847000000,0.000170636000000,0.011950183000000,0.000197501000000,0.000054883000000,0.000045797000000,0.000085303000000,0.000130736000000,0.000028232000000,0.000445995000000 +0.000037713500000,0.011689838000000,0.000127179000000,0.000037501000000,0.000015589500000,0.000042242000000,0.000026454500000,0.000046983000000,0.000047378000000,0.000023293500000,0.000038686000000,0.000117698000000,0.000176562000000,0.000170242000000,0.000170637000000,0.011785837000000,0.000203822000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000133106000000,0.000028232000000,0.000408464000000 +0.000036528000000,0.011444900000000,0.000235821000000,0.000039871000000,0.000016380000000,0.000042636000000,0.000026651500000,0.000046983000000,0.000047772000000,0.000040676500000,0.000039477000000,0.000119279000000,0.000161155000000,0.000170242000000,0.000169846000000,0.013138132000000,0.000201452000000,0.000055278000000,0.000046192000000,0.000084909000000,0.000127970000000,0.000080775000000,0.000484315000000 +0.000025861500000,0.013817638000000,0.000140217000000,0.000039871000000,0.000015392500000,0.000042241000000,0.000044627000000,0.000046982000000,0.000045798000000,0.000022503500000,0.000039476000000,0.000152464000000,0.000199081000000,0.000170242000000,0.000169056000000,0.012780206000000,0.000250044000000,0.000055279000000,0.000046587000000,0.000084513000000,0.000134686000000,0.000028824000000,0.000412019000000 +0.000018553000000,0.011825343000000,0.000127180000000,0.000057254000000,0.000015590000000,0.000061205000000,0.000026849000000,0.000046587000000,0.000046982000000,0.000023491000000,0.000039476000000,0.000117303000000,0.000160760000000,0.000173007000000,0.000205797000000,0.012622182000000,0.000202242000000,0.000055279000000,0.000045403000000,0.000084908000000,0.000131130000000,0.000028231500000,0.000455081000000 +0.000018553000000,0.011852208000000,0.000130340000000,0.000037106000000,0.000015590000000,0.000074637000000,0.000026256500000,0.000046983000000,0.000046983000000,0.000022108000000,0.000039872000000,0.000117303000000,0.000162341000000,0.000171031000000,0.000170241000000,0.012812602000000,0.000204217000000,0.000056068000000,0.000046587000000,0.000088069000000,0.000133106000000,0.000028232000000,0.000408859000000 +0.000018355000000,0.011706825000000,0.000127180000000,0.000037501000000,0.000015590000000,0.000041846000000,0.000026652000000,0.000046587000000,0.000048562000000,0.000021911000000,0.000039081000000,0.000102686000000,0.000163130000000,0.000171031000000,0.000170242000000,0.012729244000000,0.000201451000000,0.000055279000000,0.000061995000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000921254000000 +0.000018355500000,0.011778726000000,0.000159180000000,0.000037106000000,0.000016380500000,0.000042242000000,0.000026849000000,0.000046982000000,0.000046193000000,0.000022898500000,0.000039476000000,0.000115723000000,0.000161945000000,0.000170242000000,0.000168266000000,0.012424651000000,0.000236217000000,0.000055278000000,0.000046587000000,0.000155229000000,0.000165105000000,0.000028231500000,0.000471674000000 +0.000018750500000,0.011700109000000,0.000110983000000,0.000037896000000,0.000016182500000,0.000041452000000,0.000026651500000,0.000082538000000,0.000046587000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000197896000000,0.000171032000000,0.000170241000000,0.012213688000000,0.000203821000000,0.000054884000000,0.000046588000000,0.000083328000000,0.000135476000000,0.000028232000000,0.000413600000000 +0.000018552500000,0.011515221000000,0.000126785000000,0.000037106000000,0.000016380500000,0.000042636000000,0.000026652000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000160760000000,0.000209748000000,0.000219229000000,0.013032256000000,0.000203426000000,0.000055278000000,0.000046192000000,0.000084118000000,0.000131130000000,0.000028232000000,0.000425452000000 +0.000019145500000,0.012147714000000,0.000132710000000,0.000037896000000,0.000016380500000,0.000041452000000,0.000026454000000,0.000046587000000,0.000046192000000,0.000022306000000,0.000039476000000,0.000261106000000,0.000160760000000,0.000170637000000,0.000167871000000,0.013747317000000,0.000201846000000,0.000055279000000,0.000046983000000,0.000084513000000,0.000129550000000,0.000028231500000,0.000410439000000 +0.000018553000000,0.012084109000000,0.000110982000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046588000000,0.000048562000000,0.000022306000000,0.000058044000000,0.000122044000000,0.000164710000000,0.000205402000000,0.000171427000000,0.012758479000000,0.000237402000000,0.000055279000000,0.000046587000000,0.000083328000000,0.000131131000000,0.000028232000000,0.000441649000000 +0.000018750500000,0.011351665000000,0.000131526000000,0.000040267000000,0.000015590000000,0.000043822000000,0.000027244000000,0.000046982000000,0.000083723000000,0.000022503500000,0.000057649000000,0.000102686000000,0.000165105000000,0.000170241000000,0.000168266000000,0.012829985000000,0.000201451000000,0.000055278000000,0.000047773000000,0.000081748000000,0.000219229000000,0.000028232000000,0.000408464000000 +0.000019145500000,0.012398973000000,0.000130735000000,0.000039872000000,0.000016182500000,0.000041451000000,0.000026256500000,0.000047377000000,0.000046982000000,0.000021911000000,0.000053303000000,0.000115328000000,0.000199871000000,0.000170636000000,0.000169057000000,0.012812996000000,0.000201056000000,0.000055279000000,0.000045007000000,0.000083328000000,0.000132316000000,0.000028231500000,0.000408858000000 +0.000017762500000,0.011376948000000,0.000128760000000,0.000037501000000,0.000033762500000,0.000043032000000,0.000026652000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000040266000000,0.000099131000000,0.000161946000000,0.000169846000000,0.000204611000000,0.012884503000000,0.000201847000000,0.000054883000000,0.000046587000000,0.000082538000000,0.000133501000000,0.000028232000000,0.000407278000000 +0.000018158000000,0.011944257000000,0.000125995000000,0.000039871000000,0.000023689000000,0.000042242000000,0.000027046500000,0.000047378000000,0.000047378000000,0.000023096000000,0.000039871000000,0.000103476000000,0.000161550000000,0.000171031000000,0.000169451000000,0.012701194000000,0.000237797000000,0.000055279000000,0.000046193000000,0.000119279000000,0.000133106000000,0.000028232000000,0.000406488000000 +0.000018158000000,0.011472553000000,0.000127575000000,0.000040661000000,0.000016972500000,0.000042241000000,0.000027046500000,0.000046982000000,0.000048958000000,0.000022898500000,0.000038686000000,0.000159180000000,0.000163920000000,0.000169846000000,0.000169846000000,0.013540700000000,0.000203032000000,0.000055278000000,0.000047377000000,0.000097155000000,0.000154834000000,0.000046404500000,0.000427822000000 +0.000017762500000,0.011438578000000,0.000130735000000,0.000037500000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000046587000000,0.000047377000000,0.000022306000000,0.000039476000000,0.000103476000000,0.000161945000000,0.000171821000000,0.000169451000000,0.013032256000000,0.000201451000000,0.000054884000000,0.000046588000000,0.000086093000000,0.000130735000000,0.000028232000000,0.000407674000000 +0.000018355500000,0.011654282000000,0.000133896000000,0.000037896000000,0.000016182500000,0.000042637000000,0.000027046500000,0.000047378000000,0.000048168000000,0.000022306000000,0.000039476000000,0.000115328000000,0.000366192000000,0.000171821000000,0.000189599000000,0.012689343000000,0.000199476000000,0.000055673000000,0.000046587000000,0.000084118000000,0.000130735000000,0.000028232000000,0.000448760000000 +0.000018552500000,0.012075418000000,0.000146933000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000045812500000,0.000047377000000,0.000048957000000,0.000023096000000,0.000039081000000,0.000109402000000,0.000206982000000,0.000168661000000,0.000167871000000,0.012388306000000,0.000251625000000,0.000055279000000,0.000046192000000,0.000084118000000,0.000136662000000,0.000028231500000,0.000448365000000 +0.000027639500000,0.011554726000000,0.000130340000000,0.000040266000000,0.000015392500000,0.000041452000000,0.000061219500000,0.000047377000000,0.000046983000000,0.000023096500000,0.000039476000000,0.000115723000000,0.000160365000000,0.000170242000000,0.000170241000000,0.013042133000000,0.000203032000000,0.000054488000000,0.000046587000000,0.000082933000000,0.000163920000000,0.000028232000000,0.000451920000000 +0.000031985000000,0.011826529000000,0.000126784000000,0.000037106000000,0.000015787500000,0.000042241000000,0.000036726000000,0.000046982000000,0.000047377000000,0.000045614500000,0.000039871000000,0.000098735000000,0.000182489000000,0.000170242000000,0.000168266000000,0.014187415000000,0.000201057000000,0.000076217000000,0.000046192000000,0.000084909000000,0.000203821000000,0.000028232000000,0.000406883000000 +0.000017763000000,0.011653886000000,0.000129551000000,0.000037896000000,0.000015392500000,0.000042636000000,0.000028429500000,0.000046983000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000137057000000,0.000174192000000,0.000172217000000,0.000170637000000,0.012236997000000,0.000201846000000,0.000055673000000,0.000047773000000,0.000088859000000,0.000131131000000,0.000028232000000,0.000450735000000 +0.000018157500000,0.012148109000000,0.000113353000000,0.000040267000000,0.000015590000000,0.000110192000000,0.000033762500000,0.000046982000000,0.000046192000000,0.000021911000000,0.000039476000000,0.000115328000000,0.000163920000000,0.000170636000000,0.000205402000000,0.012218429000000,0.000250834000000,0.000055279000000,0.000064760000000,0.000086093000000,0.000131525000000,0.000028232000000,0.000408464000000 +0.000019145500000,0.011450825000000,0.000130340000000,0.000073452000000,0.000016182500000,0.000056859000000,0.000026849000000,0.000046982000000,0.000046587000000,0.000022898500000,0.000039081000000,0.000116514000000,0.000161946000000,0.000169451000000,0.000168661000000,0.014804106000000,0.000203032000000,0.000055673000000,0.000050142000000,0.000145748000000,0.000128760000000,0.000028232000000,0.000479575000000 +0.000018158000000,0.011813097000000,0.000183278000000,0.000040662000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000047773000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000102291000000,0.000162736000000,0.000169452000000,0.000169847000000,0.012253195000000,0.000197895000000,0.000055279000000,0.000046587000000,0.000083723000000,0.000167872000000,0.000028232000000,0.000408464000000 +0.000017762500000,0.012110183000000,0.000129946000000,0.000037896000000,0.000016182500000,0.000042242000000,0.000027244500000,0.000082933000000,0.000048562000000,0.000022701000000,0.000039081000000,0.000118093000000,0.000198686000000,0.000170637000000,0.000169057000000,0.012153244000000,0.000197500000000,0.000055674000000,0.000045402000000,0.000088859000000,0.000129155000000,0.000028034000000,0.000451131000000 +0.000017763000000,0.012030775000000,0.000114143000000,0.000037896000000,0.000015392500000,0.000041451000000,0.000026454000000,0.000046192000000,0.000046192000000,0.000022701000000,0.000039871000000,0.000115723000000,0.000161155000000,0.000169452000000,0.000169451000000,0.013597589000000,0.000237007000000,0.000055673000000,0.000046192000000,0.000084118000000,0.000127970000000,0.000028232000000,0.000409649000000 +0.000017762500000,0.011506529000000,0.000129550000000,0.000038291000000,0.000015590000000,0.000042637000000,0.000027244000000,0.000046587000000,0.000047772000000,0.000022701000000,0.000039081000000,0.000102686000000,0.000163920000000,0.000170637000000,0.000205007000000,0.012482331000000,0.000202242000000,0.000054884000000,0.000046192000000,0.000082933000000,0.000132711000000,0.000028232000000,0.000445204000000 +0.000018750500000,0.011556306000000,0.000129155000000,0.000040266000000,0.000017960500000,0.000042242000000,0.000027047000000,0.000046982000000,0.000066341000000,0.000022898500000,0.000039476000000,0.000153648000000,0.000160364000000,0.000172217000000,0.000169056000000,0.011939121000000,0.000200266000000,0.000054488000000,0.000046587000000,0.000085303000000,0.000129550000000,0.000028231500000,0.000412019000000 +0.000017960500000,0.011747121000000,0.000130340000000,0.000037896000000,0.000015392500000,0.000044217000000,0.000026651500000,0.000046588000000,0.000059624000000,0.000022898500000,0.000055279000000,0.000107031000000,0.000165105000000,0.000171032000000,0.000168661000000,0.011382084000000,0.000201846000000,0.000054884000000,0.000046192000000,0.000088859000000,0.000203426000000,0.000028232000000,0.000459427000000 +0.000018750500000,0.011998775000000,0.000207772000000,0.000037501000000,0.000015589500000,0.000042637000000,0.000027244500000,0.000046982000000,0.000047378000000,0.000022701500000,0.000052513000000,0.000104267000000,0.000198291000000,0.000171822000000,0.000169846000000,0.014301193000000,0.000235426000000,0.000055673000000,0.000046587000000,0.000128365000000,0.000127970000000,0.000038306000000,0.000407278000000 +0.000018158000000,0.011613195000000,0.000116118000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039872000000,0.000109007000000,0.000165501000000,0.000171427000000,0.000169452000000,0.014457637000000,0.000235032000000,0.000055674000000,0.000046588000000,0.000100315000000,0.000130735000000,0.000061614500000,0.000447179000000 +0.000017762500000,0.011659812000000,0.000132315000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000045417000000,0.000046192000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000112957000000,0.000161550000000,0.000171031000000,0.000240563000000,0.015094872000000,0.000201056000000,0.000054883000000,0.000046192000000,0.000083328000000,0.000130735000000,0.000038503500000,0.000411228000000 +0.000018553000000,0.011493887000000,0.000120068000000,0.000040266000000,0.000016182500000,0.000041451000000,0.000041071000000,0.000046983000000,0.000046982000000,0.000022701000000,0.000040266000000,0.000107032000000,0.000160365000000,0.000169451000000,0.000169451000000,0.012892799000000,0.000221599000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000129945000000,0.000035935500000,0.000443624000000 +0.000018553000000,0.011811516000000,0.000131131000000,0.000039476000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000163921000000,0.000170637000000,0.000168661000000,0.012684207000000,0.000201056000000,0.000054883000000,0.000046588000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000413995000000 +0.000018158000000,0.012295862000000,0.000117698000000,0.000037500000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039476000000,0.000142192000000,0.000248858000000,0.000170636000000,0.000170242000000,0.013019219000000,0.000202636000000,0.000055279000000,0.000046192000000,0.000086093000000,0.000129550000000,0.000028231500000,0.000452710000000 +0.000018157500000,0.011434233000000,0.000215674000000,0.000036711000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046587000000,0.000046983000000,0.000022701000000,0.000039871000000,0.000115328000000,0.000163526000000,0.000254784000000,0.000205007000000,0.012698824000000,0.000198686000000,0.000055674000000,0.000045402000000,0.000088069000000,0.000139427000000,0.000028232000000,0.000413599000000 +0.000018158000000,0.011532208000000,0.000129550000000,0.000037896000000,0.000015392500000,0.000042637000000,0.000026651500000,0.000047378000000,0.000048562000000,0.000023491000000,0.000039081000000,0.000117304000000,0.000163526000000,0.000189995000000,0.000204612000000,0.012718577000000,0.000244908000000,0.000055278000000,0.000046192000000,0.000084118000000,0.000133106000000,0.000028232000000,0.000444809000000 +0.000018750500000,0.011755813000000,0.000129155000000,0.000037501000000,0.000034553000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000048168000000,0.000032577500000,0.000039476000000,0.000115723000000,0.000166686000000,0.000168661000000,0.000169847000000,0.019403806000000,0.000196711000000,0.000056069000000,0.000045797000000,0.000082143000000,0.000159180000000,0.000028231500000,0.000412414000000 +0.000019145500000,0.011436208000000,0.000118093000000,0.000038291000000,0.000016380000000,0.000041451000000,0.000027442000000,0.000046587000000,0.000067921000000,0.000038898500000,0.000039081000000,0.000116513000000,0.000162340000000,0.000170637000000,0.000169451000000,0.022947508000000,0.000202636000000,0.000054883000000,0.000046192000000,0.000156809000000,0.000372118000000,0.000028232000000,0.000445599000000 +0.000018553000000,0.011485986000000,0.000129946000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046587000000,0.000063970000000,0.000022701000000,0.000039476000000,0.000116118000000,0.000199081000000,0.000171822000000,0.000168266000000,0.022321731000000,0.000201451000000,0.000054884000000,0.000082142000000,0.000084118000000,0.000160365000000,0.000028232000000,0.000408463000000 +0.000018750500000,0.011826529000000,0.000167871000000,0.000037501000000,0.000015590000000,0.000059230000000,0.000026651500000,0.000047378000000,0.000062390000000,0.000022898500000,0.000039477000000,0.000161550000000,0.000161945000000,0.000169452000000,0.000212118000000,0.023760149000000,0.000236217000000,0.000055278000000,0.000046587000000,0.000085303000000,0.000167872000000,0.000028232000000,0.000447574000000 +0.000045417000000,0.011981788000000,0.000122044000000,0.000037501000000,0.000015787000000,0.000041451000000,0.000026652000000,0.000047377000000,0.000045797000000,0.000022503500000,0.000038686000000,0.000117699000000,0.000160365000000,0.000172217000000,0.000168662000000,0.021305632000000,0.000201451000000,0.000054884000000,0.000046192000000,0.000084118000000,0.000133895000000,0.000028232000000,0.000406883000000 +0.000036923500000,0.011956503000000,0.000118489000000,0.000076611000000,0.000016775000000,0.000042242000000,0.000026256500000,0.000101501000000,0.000047377000000,0.000022899000000,0.000040661000000,0.000116908000000,0.000163525000000,0.000169847000000,0.000170636000000,0.021837780000000,0.000202637000000,0.000055278000000,0.000046193000000,0.000088069000000,0.000131525000000,0.000028429500000,0.000889648000000 +0.000053911000000,0.011810331000000,0.000113747000000,0.000040661000000,0.000016380500000,0.000042241000000,0.000027046500000,0.000134291000000,0.000046193000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000161550000000,0.000170241000000,0.000169057000000,0.023780297000000,0.000201451000000,0.000054884000000,0.000046192000000,0.000085698000000,0.000131920000000,0.000046207000000,0.000952068000000 +0.000044034000000,0.011713541000000,0.000111377000000,0.000037501000000,0.000016380500000,0.000042241000000,0.000027047000000,0.000101106000000,0.000082933000000,0.000022108500000,0.000039477000000,0.000115723000000,0.000226340000000,0.000207772000000,0.000169846000000,0.018986622000000,0.000251624000000,0.000054883000000,0.000046587000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000490241000000 +0.000026849500000,0.011755022000000,0.000118094000000,0.000040266000000,0.000015985000000,0.000042637000000,0.000026256500000,0.000104661000000,0.000048167000000,0.000023096000000,0.000039081000000,0.000102291000000,0.000160760000000,0.000170241000000,0.000216463000000,0.019158078000000,0.000201056000000,0.000056464000000,0.000046192000000,0.000084908000000,0.000126784000000,0.000028232000000,0.000701994000000 +0.000019935500000,0.012075813000000,0.000133105000000,0.000040662000000,0.000015590000000,0.000041451000000,0.000036133000000,0.000049353000000,0.000046193000000,0.000022701500000,0.000039476000000,0.000121649000000,0.000164711000000,0.000170637000000,0.000168661000000,0.019928053000000,0.000201847000000,0.000055279000000,0.000046192000000,0.000084908000000,0.000129550000000,0.000028034000000,0.000409253000000 +0.000020133000000,0.011421195000000,0.000308909000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000051540500000,0.000063180000000,0.000046192000000,0.000022701000000,0.000075822000000,0.000355525000000,0.000160760000000,0.000169451000000,0.000170242000000,0.019222868000000,0.000200266000000,0.000055278000000,0.000046983000000,0.000084908000000,0.000132316000000,0.000028232000000,0.000495772000000 +0.000026256500000,0.011562628000000,0.000133501000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000032577500000,0.000046982000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000159179000000,0.000199080000000,0.000173007000000,0.000168661000000,0.018898128000000,0.000238192000000,0.000056069000000,0.000046192000000,0.000088069000000,0.000133106000000,0.000028232000000,0.000412415000000 +0.000018750500000,0.011689442000000,0.000127970000000,0.000040267000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000047377000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000109007000000,0.000161550000000,0.000169847000000,0.000202636000000,0.017378326000000,0.000199476000000,0.000055673000000,0.000046192000000,0.000082538000000,0.000165106000000,0.000028231500000,0.000495772000000 +0.000017763000000,0.011716701000000,0.000129550000000,0.000039872000000,0.000016380000000,0.000042636000000,0.000027047000000,0.000046983000000,0.000048563000000,0.000022306000000,0.000039081000000,0.000154834000000,0.000160365000000,0.000169057000000,0.000181698000000,0.013451811000000,0.000202636000000,0.000054884000000,0.000045797000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000407278000000 +0.000018750500000,0.011498232000000,0.000154439000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026849000000,0.000046587000000,0.000046982000000,0.000022898500000,0.000038686000000,0.000116513000000,0.000161550000000,0.000171822000000,0.000169451000000,0.012088059000000,0.000201451000000,0.000056069000000,0.000047377000000,0.000082143000000,0.000133896000000,0.000028232000000,0.000410439000000 +0.000017960500000,0.012219615000000,0.000129550000000,0.000037896000000,0.000016380000000,0.000041847000000,0.000027046500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000038686000000,0.000116908000000,0.000160760000000,0.000171032000000,0.000169846000000,0.013834230000000,0.000237797000000,0.000055278000000,0.000045403000000,0.000083723000000,0.000130735000000,0.000028232000000,0.000410834000000 +0.000017762500000,0.011954924000000,0.000114538000000,0.000040266000000,0.000016380000000,0.000042241000000,0.000026849500000,0.000046192000000,0.000046982000000,0.000022898500000,0.000039476000000,0.000104266000000,0.000218834000000,0.000209353000000,0.000169451000000,0.011709985000000,0.000201056000000,0.000055279000000,0.000046192000000,0.000081748000000,0.000128760000000,0.000028429500000,0.000415575000000 +0.000017763000000,0.011487565000000,0.000114933000000,0.000037896000000,0.000016380000000,0.000041846000000,0.000026454000000,0.000066736000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000116514000000,0.000161155000000,0.000169847000000,0.000294685000000,0.013007762000000,0.000202636000000,0.000054883000000,0.000046587000000,0.000085698000000,0.000167871000000,0.000028232000000,0.000410044000000 +0.000018750500000,0.011948603000000,0.000129945000000,0.000040266000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000063179000000,0.000048563000000,0.000032972500000,0.000039081000000,0.000114538000000,0.000160365000000,0.000171822000000,0.000190389000000,0.016242921000000,0.000197500000000,0.000055279000000,0.000045007000000,0.000119278000000,0.000133106000000,0.000028232000000,0.000411624000000 +0.000017960500000,0.011757393000000,0.000118094000000,0.000037895000000,0.000016380000000,0.000042636000000,0.000026454500000,0.000046983000000,0.000046982000000,0.000022898500000,0.000039476000000,0.000114537000000,0.000160365000000,0.000172217000000,0.000169451000000,0.015700500000000,0.000292710000000,0.000056069000000,0.000046587000000,0.000088464000000,0.000128365000000,0.000028034000000,0.000453105000000 +0.000028429500000,0.011903565000000,0.000127575000000,0.000037501000000,0.000015589500000,0.000043031000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000040478500000,0.000038686000000,0.000154044000000,0.000162736000000,0.000170636000000,0.000170242000000,0.012745047000000,0.000213303000000,0.000056068000000,0.000082143000000,0.000084908000000,0.000131525000000,0.000028232000000,0.000411229000000 +0.000017763000000,0.011572899000000,0.000117698000000,0.000037105000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046587000000,0.000048167000000,0.000037713500000,0.000040266000000,0.000117303000000,0.000201451000000,0.000171427000000,0.000205007000000,0.016062377000000,0.000203427000000,0.000054884000000,0.000046192000000,0.000088068000000,0.000129550000000,0.000038108500000,0.000449550000000 +0.000017960500000,0.011460306000000,0.000113353000000,0.000040266000000,0.000015590000000,0.000078587000000,0.000026454000000,0.000047378000000,0.000047378000000,0.000022306000000,0.000039082000000,0.000116118000000,0.000163921000000,0.000170241000000,0.000169451000000,0.013544255000000,0.000201451000000,0.000054883000000,0.000047772000000,0.000083723000000,0.000166686000000,0.000050750000000,0.000409254000000 +0.000018158000000,0.011980998000000,0.000130340000000,0.000037896000000,0.000016380000000,0.000041847000000,0.000026454500000,0.000047772000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000115328000000,0.000160365000000,0.000169057000000,0.000171427000000,0.013365292000000,0.000233057000000,0.000055279000000,0.000046192000000,0.000084118000000,0.000135476000000,0.000028232000000,0.000458636000000 +0.000017763000000,0.011764899000000,0.000117698000000,0.000057649000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046982000000,0.000046587000000,0.000022306000000,0.000039476000000,0.000117303000000,0.000161155000000,0.000168661000000,0.000170637000000,0.014260897000000,0.000201451000000,0.000054883000000,0.000045402000000,0.000082538000000,0.000127180000000,0.000028232000000,0.000416364000000 +0.000019145500000,0.011621097000000,0.000112958000000,0.000037500000000,0.000036330500000,0.000041452000000,0.000062799500000,0.000046587000000,0.000083327000000,0.000022898500000,0.000038686000000,0.000116513000000,0.000197105000000,0.000172611000000,0.000169846000000,0.015137933000000,0.000203031000000,0.000055279000000,0.000045797000000,0.000083328000000,0.000131921000000,0.000028231500000,0.000599673000000 +0.000019145500000,0.011521936000000,0.000130340000000,0.000037106000000,0.000015787500000,0.000042637000000,0.000034157500000,0.000046983000000,0.000048562000000,0.000022108500000,0.000039081000000,0.000111773000000,0.000420316000000,0.000170241000000,0.000215279000000,0.012694873000000,0.000196710000000,0.000056069000000,0.000047378000000,0.000084118000000,0.000133896000000,0.000028232000000,0.000407278000000 +0.000017763000000,0.011587121000000,0.000184069000000,0.000040266000000,0.000015590000000,0.000042636000000,0.000026652000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000300217000000,0.000172612000000,0.000167871000000,0.012207368000000,0.000238192000000,0.000055278000000,0.000046587000000,0.000119674000000,0.000129550000000,0.000028034500000,0.000445994000000 +0.000017762500000,0.012498528000000,0.000127180000000,0.000040267000000,0.000015589500000,0.000042636000000,0.000026454000000,0.000046587000000,0.000046587000000,0.000022503500000,0.000039871000000,0.000117303000000,0.000196711000000,0.000169846000000,0.000169846000000,0.012222775000000,0.000201057000000,0.000054884000000,0.000046587000000,0.000084908000000,0.000127970000000,0.000028231500000,0.000481550000000 +0.000018750500000,0.011862084000000,0.000128760000000,0.000037501000000,0.000015787500000,0.000041452000000,0.000026651500000,0.000046982000000,0.000047378000000,0.000022701000000,0.000058044000000,0.000115328000000,0.000160760000000,0.000171822000000,0.000171032000000,0.011936355000000,0.000202241000000,0.000055278000000,0.000046587000000,0.000083328000000,0.000131921000000,0.000028232000000,0.000633649000000 +0.000018553000000,0.011308603000000,0.000118093000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000046588000000,0.000047772000000,0.000022108500000,0.000039476000000,0.000114932000000,0.000162340000000,0.000171822000000,0.000168266000000,0.012129145000000,0.000201451000000,0.000070291000000,0.000046587000000,0.000084909000000,0.000129945000000,0.000028034500000,0.000481154000000 +0.000018157500000,0.011875121000000,0.000126785000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026059500000,0.000046982000000,0.000045797000000,0.000023096000000,0.000039871000000,0.000114932000000,0.000162736000000,0.000168662000000,0.000204217000000,0.012420306000000,0.000235031000000,0.000114933000000,0.000046192000000,0.000084118000000,0.000152859000000,0.000028232000000,0.000412809000000 +0.000017763000000,0.012165096000000,0.000127575000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000022306000000,0.000039476000000,0.000098736000000,0.000161550000000,0.000171822000000,0.000169057000000,0.012421095000000,0.000201451000000,0.000093995000000,0.000045797000000,0.000084908000000,0.000128760000000,0.000028232000000,0.000475229000000 +0.000018553000000,0.011624652000000,0.000170637000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046587000000,0.000047377000000,0.000022108500000,0.000039476000000,0.000151278000000,0.000197896000000,0.000172612000000,0.000170241000000,0.011925689000000,0.000202636000000,0.000059229000000,0.000046192000000,0.000083328000000,0.000129155000000,0.000028232000000,0.000408068000000 +0.000018157500000,0.011681937000000,0.000118093000000,0.000037500000000,0.000016380000000,0.000042241000000,0.000027047000000,0.000046983000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000160365000000,0.000189600000000,0.000171822000000,0.012167861000000,0.000201451000000,0.000069501000000,0.000046192000000,0.000083328000000,0.000131525000000,0.000028232000000,0.000513549000000 +0.000018750500000,0.011608850000000,0.000132316000000,0.000037501000000,0.000016775000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000047377000000,0.000022701000000,0.000039476000000,0.000102686000000,0.000159969000000,0.000172612000000,0.000189599000000,0.011625443000000,0.000238587000000,0.000055673000000,0.000046587000000,0.000084908000000,0.000131131000000,0.000028231500000,0.000409649000000 +0.000017763000000,0.011805986000000,0.000127970000000,0.000037895000000,0.000015590000000,0.000041452000000,0.000026651500000,0.000063970000000,0.000046983000000,0.000043244500000,0.000038686000000,0.000115723000000,0.000165105000000,0.000170636000000,0.000187229000000,0.011724208000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000164316000000,0.000055491500000,0.000475229000000 +0.000017565000000,0.011499023000000,0.000128365000000,0.000039871000000,0.000015590000000,0.000041846000000,0.000026849500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000109007000000,0.000165501000000,0.000171031000000,0.000169451000000,0.012099911000000,0.000202636000000,0.000055278000000,0.000046192000000,0.000085303000000,0.000129550000000,0.000028232000000,0.000413204000000 +0.000017763000000,0.011335072000000,0.000127575000000,0.000040266000000,0.000016380500000,0.000041452000000,0.000026256500000,0.000046587000000,0.000048563000000,0.000022701000000,0.000039871000000,0.000109402000000,0.000219229000000,0.000168661000000,0.000170242000000,0.011913837000000,0.000201451000000,0.000054884000000,0.000116513000000,0.000082538000000,0.000131921000000,0.000028034000000,0.000450735000000 +0.000017762500000,0.011954133000000,0.000162735000000,0.000037896000000,0.000015787500000,0.000041451000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000022701000000,0.000039477000000,0.000116118000000,0.000161945000000,0.000173402000000,0.000168266000000,0.011647566000000,0.000212908000000,0.000055673000000,0.000045403000000,0.000085303000000,0.000129945000000,0.000028232000000,0.000435327000000 +0.000018158000000,0.011346134000000,0.000121649000000,0.000039872000000,0.000016380000000,0.000041452000000,0.000054108000000,0.000047377000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000123229000000,0.000161550000000,0.000171031000000,0.000205402000000,0.011503763000000,0.000201056000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000135081000000,0.000028232000000,0.000444809000000 +0.000018157500000,0.011433048000000,0.000129550000000,0.000040662000000,0.000015590000000,0.000042637000000,0.000033762500000,0.000047377000000,0.000045798000000,0.000023096000000,0.000039081000000,0.000098736000000,0.000163921000000,0.000170637000000,0.000171427000000,0.011595418000000,0.000203031000000,0.000055278000000,0.000046192000000,0.000086884000000,0.000217649000000,0.000028232000000,0.000468908000000 +0.000018750500000,0.011707220000000,0.000132711000000,0.000037501000000,0.000015590000000,0.000136266000000,0.000026454000000,0.000046192000000,0.000047377000000,0.000023096000000,0.000039081000000,0.000115328000000,0.000162340000000,0.000172217000000,0.000167476000000,0.011679960000000,0.000201451000000,0.000054884000000,0.000045798000000,0.000086884000000,0.000128760000000,0.000028232000000,0.000452710000000 +0.000037713500000,0.011560652000000,0.000132711000000,0.000037896000000,0.000015590000000,0.000078982000000,0.000026652000000,0.000046983000000,0.000063970000000,0.000022108500000,0.000039871000000,0.000156019000000,0.000201057000000,0.000173007000000,0.000170241000000,0.011473344000000,0.000218438000000,0.000055279000000,0.000045797000000,0.000085303000000,0.000131130000000,0.000028232000000,0.000432958000000 +0.000026849500000,0.013892700000000,0.000131130000000,0.000078982000000,0.000015590000000,0.000130340000000,0.000026454000000,0.000047377000000,0.000048563000000,0.000022306000000,0.000039476000000,0.000118884000000,0.000160365000000,0.000208563000000,0.000169846000000,0.012315615000000,0.000201451000000,0.000056069000000,0.000045797000000,0.000145748000000,0.000131921000000,0.000028232000000,0.000433747000000 +0.000018750000000,0.011945837000000,0.000175378000000,0.000040662000000,0.000015392000000,0.000076217000000,0.000036133000000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000115328000000,0.000160760000000,0.000170637000000,0.000205797000000,0.011612405000000,0.000269402000000,0.000055279000000,0.000046588000000,0.000098736000000,0.000133500000000,0.000028232000000,0.000468908000000 +0.000018158000000,0.011409344000000,0.000127575000000,0.000037501000000,0.000015590000000,0.000061204000000,0.000027837000000,0.000046587000000,0.000046193000000,0.000022503500000,0.000040266000000,0.000156414000000,0.000163131000000,0.000171032000000,0.000170637000000,0.012218825000000,0.000237797000000,0.000055278000000,0.000045402000000,0.000085698000000,0.000131525000000,0.000028232000000,0.000438093000000 +0.000018750500000,0.012244108000000,0.000131921000000,0.000037500000000,0.000016380000000,0.000045007000000,0.000041466500000,0.000046983000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000109402000000,0.000160365000000,0.000169847000000,0.000170636000000,0.012071862000000,0.000192365000000,0.000054884000000,0.000046192000000,0.000083328000000,0.000130735000000,0.000028232000000,0.000438488000000 +0.000018157500000,0.013075318000000,0.000127970000000,0.000040661000000,0.000016380000000,0.000042241000000,0.000026651500000,0.000046982000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000107822000000,0.000200266000000,0.000171427000000,0.000168662000000,0.011536159000000,0.000199476000000,0.000055278000000,0.000046588000000,0.000085699000000,0.000130736000000,0.000028231500000,0.000433353000000 +0.000018750500000,0.011611615000000,0.000128365000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026849500000,0.000046982000000,0.000047377000000,0.000022306000000,0.000075427000000,0.000114933000000,0.000161945000000,0.000170637000000,0.000171426000000,0.011734084000000,0.000203031000000,0.000055279000000,0.000046982000000,0.000084118000000,0.000135477000000,0.000028232000000,0.000471278000000 +0.000017763000000,0.012563713000000,0.000128760000000,0.000040266000000,0.000016577500000,0.000042637000000,0.000026256500000,0.000046983000000,0.000046193000000,0.000021911000000,0.000039081000000,0.000117698000000,0.000161550000000,0.000170636000000,0.000187624000000,0.011996800000000,0.000236216000000,0.000055278000000,0.000046192000000,0.000084119000000,0.000168661000000,0.000028232000000,0.000439674000000 +0.000018750000000,0.012417935000000,0.000148118000000,0.000037501000000,0.000024281500000,0.000042242000000,0.000026256500000,0.000046587000000,0.000046192000000,0.000022108500000,0.000038686000000,0.000116119000000,0.000160364000000,0.000170241000000,0.000172217000000,0.011286084000000,0.000199871000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000129945000000,0.000063787500000,0.000443624000000 +0.000018355500000,0.011719072000000,0.000127970000000,0.000037501000000,0.000016380000000,0.000041451000000,0.000027047000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000040266000000,0.000102291000000,0.000160365000000,0.000170241000000,0.000169056000000,0.011826133000000,0.000201451000000,0.000055279000000,0.000045797000000,0.000086488000000,0.000130736000000,0.000028232000000,0.000430982000000 +0.000017763000000,0.011729343000000,0.000129551000000,0.000037501000000,0.000015787000000,0.000042242000000,0.000026256500000,0.000046587000000,0.000048563000000,0.000022108500000,0.000039476000000,0.000102686000000,0.000210537000000,0.000223575000000,0.000168266000000,0.011834825000000,0.000203032000000,0.000055673000000,0.000045798000000,0.000084118000000,0.000132315000000,0.000028232000000,0.000829204000000 +0.000018750000000,0.011656257000000,0.000130340000000,0.000039871000000,0.000016775500000,0.000042242000000,0.000047985000000,0.000115328000000,0.000046982000000,0.000032577500000,0.000039476000000,0.000115328000000,0.000160364000000,0.000171032000000,0.000260710000000,0.011900800000000,0.000237797000000,0.000055674000000,0.000045797000000,0.000083723000000,0.000131131000000,0.000028232000000,0.000468118000000 +0.000018553000000,0.011888158000000,0.000113353000000,0.000037501000000,0.000015392000000,0.000061204000000,0.000039688500000,0.000061995000000,0.000047773000000,0.000049565000000,0.000039476000000,0.000109797000000,0.000164710000000,0.000171032000000,0.000170242000000,0.011327962000000,0.000201846000000,0.000055673000000,0.000093204000000,0.000087278000000,0.000148118000000,0.000028231500000,0.000442044000000 +0.000018750500000,0.011468207000000,0.000130735000000,0.000037896000000,0.000016380000000,0.000055279000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000040874000000,0.000039871000000,0.000110983000000,0.000161945000000,0.000170242000000,0.000168661000000,0.011537738000000,0.000201452000000,0.000054884000000,0.000047377000000,0.000085699000000,0.000133106000000,0.000028232000000,0.000432562000000 +0.000018750500000,0.011657048000000,0.000178537000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000048562000000,0.000031195000000,0.000039871000000,0.000102291000000,0.000165500000000,0.000170242000000,0.000169846000000,0.011688257000000,0.000202637000000,0.000056069000000,0.000046193000000,0.000084118000000,0.000131920000000,0.000028232000000,0.000433353000000 +0.000018157500000,0.011564998000000,0.000131130000000,0.000037501000000,0.000015787500000,0.000042242000000,0.000027046500000,0.000046588000000,0.000046983000000,0.000029614500000,0.000039477000000,0.000118093000000,0.000197106000000,0.000171032000000,0.000169056000000,0.012018923000000,0.000274143000000,0.000055278000000,0.000046587000000,0.000083723000000,0.000129155000000,0.000028232000000,0.000430587000000 +0.000018948000000,0.011923714000000,0.000129155000000,0.000040266000000,0.000015590000000,0.000043426000000,0.000027047000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000145353000000,0.000160365000000,0.000170242000000,0.000187624000000,0.011718677000000,0.000202241000000,0.000054884000000,0.000046192000000,0.000085698000000,0.000151279000000,0.000028232000000,0.000438093000000 +0.000017763000000,0.011945047000000,0.000127180000000,0.000041451000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000046982000000,0.000066735000000,0.000023294000000,0.000039476000000,0.000103081000000,0.000163526000000,0.000170242000000,0.000169846000000,0.011837986000000,0.000201056000000,0.000056858000000,0.000046982000000,0.000082142000000,0.000131526000000,0.000028232000000,0.000430587000000 +0.000019145000000,0.011558676000000,0.000126785000000,0.000037896000000,0.000016380000000,0.000043822000000,0.000027046500000,0.000046587000000,0.000100316000000,0.000021911000000,0.000039872000000,0.000116513000000,0.000163921000000,0.000169452000000,0.000210932000000,0.011806380000000,0.000203032000000,0.000055674000000,0.000046192000000,0.000122439000000,0.000133105000000,0.000028232000000,0.000435328000000 +0.000018553000000,0.011980602000000,0.000146538000000,0.000037501000000,0.000016182500000,0.000044217000000,0.000026849500000,0.000046983000000,0.000083723000000,0.000022503500000,0.000040266000000,0.000115328000000,0.000163920000000,0.000305748000000,0.000169056000000,0.014411810000000,0.000252019000000,0.000054883000000,0.000046192000000,0.000097945000000,0.000129945000000,0.000028231500000,0.000433352000000 +0.000017763000000,0.012001145000000,0.000110588000000,0.000073846000000,0.000015787500000,0.000042637000000,0.000027046500000,0.000047377000000,0.000064365000000,0.000022306000000,0.000039476000000,0.000102686000000,0.000199871000000,0.000293501000000,0.000204217000000,0.012538429000000,0.000201847000000,0.000055279000000,0.000046192000000,0.000086883000000,0.000131130000000,0.000028232000000,0.000489846000000 +0.000018553000000,0.011619121000000,0.000118093000000,0.000037106000000,0.000016380500000,0.000041451000000,0.000026849500000,0.000046982000000,0.000060809000000,0.000022108500000,0.000039081000000,0.000116118000000,0.000165106000000,0.000168661000000,0.000169451000000,0.012281639000000,0.000201056000000,0.000055279000000,0.000046983000000,0.000083328000000,0.000173402000000,0.000028232000000,0.000432167000000 +0.000030800000000,0.011688652000000,0.000118489000000,0.000037500000000,0.000015392000000,0.000042637000000,0.000026454000000,0.000046587000000,0.000046587000000,0.000022306000000,0.000039872000000,0.000115723000000,0.000161550000000,0.000178933000000,0.000169847000000,0.012337738000000,0.000202241000000,0.000055673000000,0.000046587000000,0.000083724000000,0.000131525000000,0.000028231500000,0.000440859000000 +0.000018750500000,0.011832060000000,0.000112958000000,0.000037501000000,0.000016380000000,0.000041846000000,0.000026651500000,0.000046983000000,0.000046587000000,0.000022306000000,0.000038686000000,0.000153254000000,0.000162735000000,0.000169847000000,0.000169846000000,0.014035317000000,0.000237797000000,0.000056464000000,0.000046193000000,0.000083723000000,0.000131526000000,0.000045417000000,0.000433352000000 +0.000017762500000,0.011888553000000,0.000130735000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000027047000000,0.000046982000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000107427000000,0.000161946000000,0.000170636000000,0.000170242000000,0.014975563000000,0.000201847000000,0.000054883000000,0.000046192000000,0.000083723000000,0.000131920000000,0.000035145500000,0.000436118000000 +0.000018355500000,0.011343368000000,0.000129550000000,0.000037106000000,0.000015392500000,0.000041847000000,0.000026651500000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000196710000000,0.000169451000000,0.000206982000000,0.012255961000000,0.000195920000000,0.000055674000000,0.000046982000000,0.000082538000000,0.000129550000000,0.000028232000000,0.000433747000000 +0.000018750500000,0.011628207000000,0.000196316000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000036133000000,0.000046587000000,0.000045797000000,0.000022898500000,0.000056069000000,0.000116513000000,0.000163921000000,0.000172216000000,0.000171427000000,0.011855763000000,0.000203031000000,0.000055279000000,0.000045402000000,0.000084118000000,0.000176957000000,0.000028232000000,0.000431377000000 +0.000018158000000,0.011709590000000,0.000130736000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000051540500000,0.000046983000000,0.000045797000000,0.000023096000000,0.000039476000000,0.000116513000000,0.000161945000000,0.000172217000000,0.000170637000000,0.011713936000000,0.000233846000000,0.000055278000000,0.000046192000000,0.000205402000000,0.000129945000000,0.000028429500000,0.000436117000000 +0.000017960500000,0.011628997000000,0.000127969000000,0.000037500000000,0.000015590000000,0.000042242000000,0.000033170000000,0.000088858000000,0.000048563000000,0.000040676500000,0.000038686000000,0.000110587000000,0.000159970000000,0.000170637000000,0.000167871000000,0.011489146000000,0.000201846000000,0.000054884000000,0.000045402000000,0.000104661000000,0.000130735000000,0.000028232000000,0.000440859000000 +0.000018553000000,0.011702479000000,0.000129945000000,0.000039871000000,0.000015590000000,0.000041846000000,0.000026651500000,0.000046587000000,0.000047772000000,0.000022306000000,0.000039476000000,0.000102291000000,0.000160365000000,0.000168661000000,0.000170637000000,0.011629393000000,0.000201451000000,0.000055674000000,0.000046193000000,0.000083328000000,0.000131131000000,0.000028232000000,0.000437303000000 +0.000018157500000,0.011613196000000,0.000133106000000,0.000040266000000,0.000015787500000,0.000042242000000,0.000026454000000,0.000046587000000,0.000048563000000,0.000022108500000,0.000039871000000,0.000144957000000,0.000215673000000,0.000169846000000,0.000453895000000,0.011809936000000,0.000203427000000,0.000055279000000,0.000082143000000,0.000083723000000,0.000131525000000,0.000028232000000,0.000438489000000 +0.000018948000000,0.011500208000000,0.000148118000000,0.000037896000000,0.000016577500000,0.000041452000000,0.000026849500000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000103081000000,0.000160760000000,0.000170636000000,0.000191575000000,0.011630578000000,0.000271378000000,0.000055278000000,0.000047377000000,0.000088464000000,0.000135476000000,0.000028034000000,0.000468908000000 +0.000017763000000,0.012080553000000,0.000128364000000,0.000039081000000,0.000015590000000,0.000077797000000,0.000026651500000,0.000046983000000,0.000045797000000,0.000021911000000,0.000039476000000,0.000114538000000,0.000162736000000,0.000171821000000,0.000170242000000,0.011902776000000,0.000201847000000,0.000055674000000,0.000045797000000,0.000083328000000,0.000132315000000,0.000028034500000,0.000403328000000 +0.000018157500000,0.011751467000000,0.000128760000000,0.000040661000000,0.000025466500000,0.000041451000000,0.000027047000000,0.000046983000000,0.000083328000000,0.000022898500000,0.000039871000000,0.000117303000000,0.000161945000000,0.000172612000000,0.000205006000000,0.012108602000000,0.000201451000000,0.000055673000000,0.000046587000000,0.000083723000000,0.000130340000000,0.000028232000000,0.000481550000000 +0.000017763000000,0.011437788000000,0.000127574000000,0.000040661000000,0.000045614500000,0.000042636000000,0.000026454000000,0.000046587000000,0.000047377000000,0.000022503500000,0.000040267000000,0.000106637000000,0.000161155000000,0.000169847000000,0.000169057000000,0.011728553000000,0.000203031000000,0.000062390000000,0.000045402000000,0.000129946000000,0.000130735000000,0.000028231500000,0.000511180000000 +0.000018157500000,0.011682331000000,0.000127179000000,0.000038291000000,0.000043244000000,0.000043032000000,0.000026651500000,0.000046982000000,0.000048168000000,0.000022108500000,0.000039081000000,0.000115723000000,0.000233451000000,0.000169056000000,0.000170636000000,0.011647961000000,0.000236216000000,0.000055674000000,0.000046193000000,0.000084513000000,0.000156809000000,0.000028232000000,0.000440858000000 +0.000019145500000,0.011948998000000,0.000127575000000,0.000037501000000,0.000044034000000,0.000042637000000,0.000026651500000,0.000046983000000,0.000048168000000,0.000022306000000,0.000039476000000,0.000136266000000,0.000160365000000,0.000169846000000,0.000169847000000,0.011589491000000,0.000202241000000,0.000055278000000,0.000046982000000,0.000083328000000,0.000128760000000,0.000028232000000,0.000405303000000 +0.000018158000000,0.011538529000000,0.000118094000000,0.000040266000000,0.000051343000000,0.000041451000000,0.000026059000000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039476000000,0.000130340000000,0.000163921000000,0.000169846000000,0.000170636000000,0.011361936000000,0.000201451000000,0.000054884000000,0.000046983000000,0.000086884000000,0.000131921000000,0.000028231500000,0.000444414000000 +0.000018948000000,0.011373788000000,0.000129946000000,0.000037106000000,0.000016380500000,0.000042242000000,0.000027046500000,0.000046982000000,0.000047377000000,0.000022306000000,0.000039872000000,0.000116118000000,0.000161155000000,0.000171031000000,0.000241748000000,0.011850232000000,0.000203426000000,0.000055673000000,0.000045007000000,0.000084908000000,0.000132316000000,0.000047195000000,0.000412809000000 +0.000018948000000,0.012358281000000,0.000119278000000,0.000040266000000,0.000023886500000,0.000041452000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000116514000000,0.000160760000000,0.000171427000000,0.000171032000000,0.011406184000000,0.000237402000000,0.000055279000000,0.000045402000000,0.000084908000000,0.000134291000000,0.000036528000000,0.000449155000000 +0.000018552500000,0.011867220000000,0.000127970000000,0.000104267000000,0.000017170000000,0.000041451000000,0.000026651500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000107426000000,0.000160760000000,0.000171032000000,0.000171426000000,0.011867220000000,0.000199476000000,0.000055278000000,0.000046587000000,0.000085699000000,0.000202636000000,0.000043441500000,0.000408464000000 +0.000018158000000,0.011399467000000,0.000112957000000,0.000059624000000,0.000017368000000,0.000041057000000,0.000027046500000,0.000047377000000,0.000045797000000,0.000022701000000,0.000039477000000,0.000104266000000,0.000162736000000,0.000171822000000,0.000169847000000,0.011516405000000,0.000199871000000,0.000054884000000,0.000045007000000,0.000086884000000,0.000132315000000,0.000028232000000,0.000444809000000 +0.000017960500000,0.011332307000000,0.000393847000000,0.000061599000000,0.000022503500000,0.000042637000000,0.000060824500000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000164711000000,0.000173007000000,0.000242143000000,0.011488356000000,0.000203032000000,0.000055278000000,0.000046587000000,0.000082538000000,0.000131131000000,0.000028232000000,0.000407278000000 +0.000018947500000,0.011449640000000,0.000149303000000,0.000066340000000,0.000016972500000,0.000042636000000,0.000033763000000,0.000046982000000,0.000048958000000,0.000022503500000,0.000039081000000,0.000153254000000,0.000163920000000,0.000171031000000,0.000169451000000,0.011491122000000,0.000233847000000,0.000055279000000,0.000046587000000,0.000167081000000,0.000130735000000,0.000028232000000,0.000628907000000 +0.000038503500000,0.011621887000000,0.000113353000000,0.000054093000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000046983000000,0.000048167000000,0.000021911000000,0.000038686000000,0.000099130000000,0.000180118000000,0.000170636000000,0.000169847000000,0.011445690000000,0.000202242000000,0.000055279000000,0.000047377000000,0.000085303000000,0.000129945000000,0.000028232000000,0.000408859000000 +0.000026849000000,0.011651122000000,0.000110587000000,0.000040267000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000022108500000,0.000075032000000,0.000117304000000,0.000179328000000,0.000171821000000,0.000169846000000,0.011913047000000,0.000201451000000,0.000055278000000,0.000047773000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000535279000000 +0.000018158000000,0.011516800000000,0.000114538000000,0.000040267000000,0.000015392000000,0.000042241000000,0.000027046500000,0.000085303000000,0.000047377000000,0.000022503500000,0.000039872000000,0.000117303000000,0.000159969000000,0.000170241000000,0.000171032000000,0.011913047000000,0.000201451000000,0.000055279000000,0.000045007000000,0.000086093000000,0.000131130000000,0.000028232000000,0.001035426000000 +0.000018948000000,0.011815862000000,0.000109797000000,0.000039871000000,0.000015787500000,0.000042637000000,0.000026849000000,0.000065155000000,0.000046982000000,0.000047392000000,0.000039476000000,0.000102686000000,0.000161551000000,0.000170241000000,0.000242143000000,0.011478479000000,0.000237402000000,0.000055673000000,0.000046192000000,0.000085303000000,0.000134291000000,0.000028231500000,0.000543179000000 +0.000018750500000,0.011913047000000,0.000164710000000,0.000042636000000,0.000016380000000,0.000042241000000,0.000026257000000,0.000060020000000,0.000047772000000,0.000029417500000,0.000038686000000,0.000109797000000,0.000160760000000,0.000171031000000,0.000169451000000,0.011579615000000,0.000201846000000,0.000055279000000,0.000082933000000,0.000084514000000,0.000132315000000,0.000028034500000,0.000506439000000 +0.000018157500000,0.011670874000000,0.000129550000000,0.000043032000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039872000000,0.000116118000000,0.000199081000000,0.000170636000000,0.000169452000000,0.011675220000000,0.000196710000000,0.000056464000000,0.000046192000000,0.000085303000000,0.000152069000000,0.000028232000000,0.000447180000000 +0.000017763000000,0.011527072000000,0.000126785000000,0.000039871000000,0.000034750500000,0.000042242000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000021910500000,0.000039476000000,0.000133106000000,0.000160760000000,0.000172612000000,0.000170241000000,0.011916998000000,0.000203031000000,0.000056463000000,0.000046587000000,0.000085303000000,0.000157599000000,0.000028231500000,0.000481945000000 +0.000018750000000,0.011830479000000,0.000126785000000,0.000058834000000,0.000015590000000,0.000067525000000,0.000026256500000,0.000046983000000,0.000063574000000,0.000022503500000,0.000039081000000,0.000103477000000,0.000162340000000,0.000262685000000,0.000203032000000,0.011907912000000,0.000237402000000,0.000056069000000,0.000046193000000,0.000159575000000,0.000131131000000,0.000028232000000,0.000446784000000 +0.000017763000000,0.012111368000000,0.000114933000000,0.000041451000000,0.000016972500000,0.000075426000000,0.000026849500000,0.000046982000000,0.000046982000000,0.000022701000000,0.000040267000000,0.000116908000000,0.000163130000000,0.000170636000000,0.000183674000000,0.011412504000000,0.000202241000000,0.000054884000000,0.000044612000000,0.000083723000000,0.000133896000000,0.000028232000000,0.000485501000000 +0.000018750500000,0.012136651000000,0.000126389000000,0.000089254000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000045797000000,0.000022701000000,0.000039476000000,0.000116118000000,0.000161946000000,0.000170242000000,0.000168661000000,0.013085194000000,0.000201451000000,0.000055278000000,0.000045402000000,0.000083328000000,0.000131131000000,0.000046404500000,0.000461401000000 +0.000018750500000,0.011950973000000,0.000202636000000,0.000073057000000,0.000015590000000,0.000041056000000,0.000026849000000,0.000046982000000,0.000048563000000,0.000022701500000,0.000039871000000,0.000103081000000,0.000198291000000,0.000171822000000,0.000169452000000,0.011474924000000,0.000250834000000,0.000055674000000,0.000046192000000,0.000083328000000,0.000127575000000,0.000028232000000,0.000431772000000 +0.000017763000000,0.011689047000000,0.000127970000000,0.000041451000000,0.000015787500000,0.000042241000000,0.000027047000000,0.000046983000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000115328000000,0.000160760000000,0.000173402000000,0.000169451000000,0.011590677000000,0.000288760000000,0.000055673000000,0.000046192000000,0.000085303000000,0.000132316000000,0.000028034000000,0.000453895000000 +0.000018158000000,0.011985738000000,0.000131921000000,0.000090834000000,0.000015589500000,0.000042637000000,0.000026651500000,0.000047377000000,0.000046982000000,0.000022108500000,0.000039872000000,0.000150489000000,0.000160365000000,0.000170242000000,0.000250834000000,0.012894774000000,0.000202241000000,0.000055674000000,0.000046587000000,0.000084908000000,0.000127180000000,0.000028232000000,0.000411624000000 +0.000018750000000,0.011577640000000,0.000127970000000,0.000105452000000,0.000015590000000,0.000042242000000,0.000053318500000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000124810000000,0.000165106000000,0.000169056000000,0.000170242000000,0.013498033000000,0.000201451000000,0.000055674000000,0.000045007000000,0.000083327000000,0.000131920000000,0.000028232000000,0.000622192000000 +0.000018750500000,0.011425146000000,0.000127575000000,0.000128760000000,0.000016380000000,0.000041846000000,0.000041071500000,0.000046588000000,0.000046192000000,0.000022503500000,0.000038686000000,0.000109007000000,0.000165501000000,0.000170636000000,0.000168266000000,0.013323417000000,0.000235031000000,0.000055279000000,0.000046192000000,0.000082142000000,0.000163526000000,0.000028232000000,0.000423871000000 +0.000018158000000,0.012120849000000,0.000130340000000,0.000113353000000,0.000015392500000,0.000041452000000,0.000026849000000,0.000046983000000,0.000048563000000,0.000023096500000,0.000039477000000,0.000164316000000,0.000241747000000,0.000170637000000,0.000169056000000,0.013533984000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000103476000000,0.000131130000000,0.000028232000000,0.000502488000000 +0.000019145500000,0.011713541000000,0.000154044000000,0.000090439000000,0.000015590000000,0.000041846000000,0.000027047000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000132316000000,0.000161945000000,0.000171822000000,0.000168661000000,0.013598774000000,0.000200661000000,0.000054883000000,0.000046983000000,0.000097551000000,0.000142982000000,0.000028232000000,0.000406488000000 +0.000018750000000,0.011509689000000,0.000129155000000,0.000071476000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000102291000000,0.000161945000000,0.000170636000000,0.000205797000000,0.013775761000000,0.000201056000000,0.000054884000000,0.000046587000000,0.000116908000000,0.000129155000000,0.000028232000000,0.000414390000000 +0.000017763000000,0.011479664000000,0.000129945000000,0.000044217000000,0.000016380000000,0.000041057000000,0.000026454000000,0.000046983000000,0.000048958000000,0.000022898500000,0.000039082000000,0.000153254000000,0.000163921000000,0.000169846000000,0.000169847000000,0.013532799000000,0.000252019000000,0.000054883000000,0.000046588000000,0.000085303000000,0.000131526000000,0.000028231500000,0.000409254000000 +0.000018158000000,0.011710775000000,0.000117303000000,0.000085303000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039476000000,0.000115328000000,0.000162340000000,0.000171427000000,0.000169451000000,0.013536749000000,0.000201057000000,0.000056069000000,0.000046587000000,0.000086093000000,0.000168661000000,0.000028232000000,0.000406093000000 +0.000018948000000,0.011559072000000,0.000127179000000,0.000081352000000,0.000015787500000,0.000042636000000,0.000026257000000,0.000116513000000,0.000045797000000,0.000032577500000,0.000039081000000,0.000116908000000,0.000201057000000,0.000191970000000,0.000169452000000,0.013496454000000,0.000224365000000,0.000055278000000,0.000046587000000,0.000083328000000,0.000132316000000,0.000028232000000,0.000415969000000 +0.000036528500000,0.012284009000000,0.000128760000000,0.000043822000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000060415000000,0.000046982000000,0.000022503500000,0.000055674000000,0.000103476000000,0.000160760000000,0.000169056000000,0.000168266000000,0.013321836000000,0.000248464000000,0.000056464000000,0.000046192000000,0.000085698000000,0.000128365000000,0.000028232000000,0.000406094000000 +0.000018157500000,0.011606479000000,0.000158390000000,0.000043427000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046983000000,0.000048563000000,0.000022306000000,0.000038686000000,0.000116513000000,0.000160365000000,0.000170636000000,0.000199871000000,0.013382675000000,0.000219624000000,0.000075822000000,0.000097550000000,0.000083328000000,0.000131526000000,0.000028232000000,0.000429007000000 +0.000018158000000,0.012191565000000,0.000118094000000,0.000041451000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000047772000000,0.000046587000000,0.000022108000000,0.000039476000000,0.000116513000000,0.000163526000000,0.000170636000000,0.000168266000000,0.013385046000000,0.000201451000000,0.000055279000000,0.000046588000000,0.000120464000000,0.000131525000000,0.000028034500000,0.000410833000000 +0.000017762500000,0.011415270000000,0.000112957000000,0.000041451000000,0.000015590000000,0.000043032000000,0.000027046500000,0.000046982000000,0.000087674000000,0.000022305500000,0.000039081000000,0.000116908000000,0.000160760000000,0.000172216000000,0.000171031000000,0.013413490000000,0.000201846000000,0.000055674000000,0.000046587000000,0.000089254000000,0.000131525000000,0.000055491000000,0.000447179000000 +0.000017763000000,0.012307713000000,0.000118094000000,0.000044612000000,0.000016775000000,0.000043032000000,0.000026454000000,0.000046193000000,0.000048167000000,0.000022305500000,0.000039476000000,0.000140612000000,0.000199871000000,0.000171031000000,0.000169452000000,0.013318280000000,0.000239378000000,0.000055278000000,0.000046193000000,0.000085698000000,0.000131130000000,0.000058849000000,0.000417154000000 +0.000018750500000,0.011879467000000,0.000127179000000,0.000040661000000,0.000016380000000,0.000079377000000,0.000027047000000,0.000046982000000,0.000048562000000,0.000022899000000,0.000039081000000,0.000117303000000,0.000161945000000,0.000169451000000,0.000205006000000,0.013003022000000,0.000216464000000,0.000055279000000,0.000046192000000,0.000082143000000,0.000129945000000,0.000058257000000,0.000444414000000 +0.000018750500000,0.011895270000000,0.000127180000000,0.000075427000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046982000000,0.000047773000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000161550000000,0.000169056000000,0.000168661000000,0.012184850000000,0.000201057000000,0.000054883000000,0.000046587000000,0.000085303000000,0.000129945000000,0.000046009500000,0.000413599000000 +0.000018750500000,0.011719072000000,0.000110192000000,0.000074636000000,0.000015590000000,0.000043031000000,0.000035935500000,0.000046192000000,0.000045797000000,0.000022701000000,0.000039871000000,0.000114933000000,0.000160365000000,0.000171426000000,0.000169056000000,0.011661788000000,0.000201846000000,0.000054884000000,0.000046192000000,0.000088464000000,0.000148118000000,0.000038306000000,0.000450340000000 +0.000018948000000,0.011429492000000,0.000129945000000,0.000040267000000,0.000015392000000,0.000061599000000,0.000051935500000,0.000046588000000,0.000047377000000,0.000022503500000,0.000040267000000,0.000114143000000,0.000160365000000,0.000169056000000,0.000169056000000,0.011425541000000,0.000243723000000,0.000054883000000,0.000046587000000,0.000084118000000,0.000130341000000,0.000029812000000,0.000415574000000 +0.000018158000000,0.011320454000000,0.000113353000000,0.000040267000000,0.000015985000000,0.000057254000000,0.000026651500000,0.000046982000000,0.000048957000000,0.000022108000000,0.000039476000000,0.000115723000000,0.000213304000000,0.000170636000000,0.000168266000000,0.011815862000000,0.000203031000000,0.000055279000000,0.000045402000000,0.000083328000000,0.000133105000000,0.000034948000000,0.000451130000000 +0.000017762500000,0.011986528000000,0.000129945000000,0.000042637000000,0.000026059000000,0.000056859000000,0.000026256500000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000160760000000,0.000171822000000,0.000253600000000,0.012529738000000,0.000201451000000,0.000055278000000,0.000065155000000,0.000084909000000,0.000130735000000,0.000028232000000,0.000413599000000 +0.000019145500000,0.011457937000000,0.000130340000000,0.000039476000000,0.000042059000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000048562000000,0.000022701000000,0.000039476000000,0.000114143000000,0.000165501000000,0.000170637000000,0.000169057000000,0.011996405000000,0.000202241000000,0.000055279000000,0.000062390000000,0.000172216000000,0.000132315000000,0.000028232000000,0.000449550000000 +0.000017960500000,0.011469393000000,0.000127970000000,0.000108217000000,0.000015787500000,0.000041847000000,0.000026454000000,0.000046983000000,0.000048958000000,0.000022701000000,0.000039081000000,0.000102291000000,0.000161550000000,0.000172217000000,0.000169846000000,0.011434628000000,0.000237006000000,0.000055279000000,0.000076612000000,0.000088859000000,0.000165105000000,0.000028231500000,0.000410043000000 +0.000018355500000,0.011472554000000,0.000118489000000,0.000054488000000,0.000016380000000,0.000042636000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000098340000000,0.000165106000000,0.000171032000000,0.000203822000000,0.011661788000000,0.000202241000000,0.000054883000000,0.000046192000000,0.000084908000000,0.000137452000000,0.000028232000000,0.000557402000000 +0.000018355500000,0.011597393000000,0.000130735000000,0.000082143000000,0.000015392500000,0.000042637000000,0.000026257000000,0.000047377000000,0.000048562000000,0.000022898500000,0.000039476000000,0.000115723000000,0.000270587000000,0.000171032000000,0.000235427000000,0.012249244000000,0.000200661000000,0.000055279000000,0.000046193000000,0.000084118000000,0.000130735000000,0.000028232000000,0.000425056000000 +0.000018750500000,0.011504158000000,0.000112957000000,0.000044217000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046983000000,0.000045797000000,0.000022701000000,0.000039477000000,0.000117699000000,0.000173797000000,0.000170242000000,0.000169451000000,0.011888948000000,0.000201056000000,0.000054883000000,0.000046192000000,0.000085304000000,0.000131130000000,0.000046009500000,0.000445204000000 +0.000017762500000,0.011564997000000,0.000126785000000,0.000043822000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000083328000000,0.000046587000000,0.000022898500000,0.000039871000000,0.000109402000000,0.000163921000000,0.000171032000000,0.000168661000000,0.011426332000000,0.000238587000000,0.000055674000000,0.000065550000000,0.000084513000000,0.000130340000000,0.000028232000000,0.000409649000000 +0.000017960500000,0.011618331000000,0.000114933000000,0.000039871000000,0.000015392500000,0.000041452000000,0.000026849500000,0.000046983000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000143377000000,0.000163921000000,0.000170637000000,0.000170242000000,0.011910676000000,0.000203031000000,0.000077402000000,0.000045402000000,0.000084908000000,0.000179723000000,0.000028231500000,0.000568463000000 +0.000018750500000,0.012204602000000,0.000131525000000,0.000040266000000,0.000015589500000,0.000043427000000,0.000026651500000,0.000046982000000,0.000048957000000,0.000048775000000,0.000040267000000,0.000117699000000,0.000199476000000,0.000171427000000,0.000167871000000,0.011820208000000,0.000201451000000,0.000106241000000,0.000046983000000,0.000098340000000,0.000129155000000,0.000028232000000,0.000552266000000 +0.000018157500000,0.011320060000000,0.000122044000000,0.000039476000000,0.000015392500000,0.000043822000000,0.000026651500000,0.000046982000000,0.000046983000000,0.000030800000000,0.000073057000000,0.000114933000000,0.000163921000000,0.000169847000000,0.000252810000000,0.011513245000000,0.000201846000000,0.000069896000000,0.000045402000000,0.000157995000000,0.000134291000000,0.000028232000000,0.000441253000000 +0.000017763000000,0.013457737000000,0.000252809000000,0.000040266000000,0.000015392500000,0.000042241000000,0.000026454000000,0.000046983000000,0.000046982000000,0.000022701000000,0.000041452000000,0.000116118000000,0.000165896000000,0.000169451000000,0.000171031000000,0.012763614000000,0.000368168000000,0.000056069000000,0.000046587000000,0.000082143000000,0.000131921000000,0.000028232000000,0.000501303000000 +0.000018157500000,0.011637689000000,0.000145353000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000047377000000,0.000117303000000,0.000022503500000,0.000039477000000,0.000098735000000,0.000162340000000,0.000171031000000,0.000169847000000,0.012709490000000,0.000343674000000,0.000055278000000,0.000046193000000,0.000084513000000,0.000170241000000,0.000028232000000,0.000411624000000 +0.000018948000000,0.011423171000000,0.000127180000000,0.000086093000000,0.000015984500000,0.000042242000000,0.000027441500000,0.000047377000000,0.000048562000000,0.000022108500000,0.000039871000000,0.000105452000000,0.000163130000000,0.000170241000000,0.000167871000000,0.013210034000000,0.000201847000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000135081000000,0.000028232000000,0.000468907000000 +0.000046207500000,0.012200257000000,0.000110587000000,0.000053303000000,0.000016380500000,0.000042636000000,0.000060626500000,0.000046983000000,0.000046587000000,0.000022898500000,0.000039476000000,0.000153254000000,0.000211723000000,0.000243328000000,0.000189599000000,0.012075022000000,0.000201846000000,0.000055278000000,0.000046192000000,0.000084909000000,0.000132315000000,0.000028232000000,0.000413599000000 +0.000018158000000,0.011418825000000,0.000126785000000,0.000040266000000,0.000015590000000,0.000058835000000,0.000033763000000,0.000047772000000,0.000046982000000,0.000022108500000,0.000039871000000,0.000120464000000,0.000160760000000,0.000177747000000,0.000167871000000,0.011609245000000,0.000199476000000,0.000055674000000,0.000045797000000,0.000083328000000,0.000130736000000,0.000028232000000,0.000484710000000 +0.000019145500000,0.011841541000000,0.000165501000000,0.000069106000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000047377000000,0.000047377000000,0.000022306000000,0.000040267000000,0.000114933000000,0.000163920000000,0.000170636000000,0.000168266000000,0.011642430000000,0.000203031000000,0.000055279000000,0.000046982000000,0.000088464000000,0.000132315000000,0.000028429500000,0.000406093000000 +0.000017960000000,0.011919368000000,0.000127575000000,0.000043031000000,0.000015590000000,0.000041846000000,0.000026849500000,0.000047773000000,0.000048957000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000161946000000,0.000170242000000,0.000168266000000,0.011795318000000,0.000201056000000,0.000095575000000,0.000045798000000,0.000084908000000,0.000176957000000,0.000028232000000,0.000417550000000 +0.000017763000000,0.010934084000000,0.000177352000000,0.000039081000000,0.000016380000000,0.000042242000000,0.000026256500000,0.000046587000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000098736000000,0.000160364000000,0.000177748000000,0.000169847000000,0.011387616000000,0.000201452000000,0.000059625000000,0.000046192000000,0.000124019000000,0.000129946000000,0.000028034000000,0.000413204000000 +0.000018157500000,0.011201936000000,0.000128760000000,0.000043032000000,0.000016182500000,0.000041451000000,0.000026849500000,0.000046982000000,0.000046193000000,0.000021911000000,0.000039081000000,0.000102686000000,0.000197106000000,0.000169846000000,0.000242537000000,0.011573690000000,0.000201057000000,0.000067525000000,0.000046192000000,0.000084908000000,0.000139031000000,0.000028232000000,0.000768759000000 +0.000018158000000,0.011109492000000,0.000131130000000,0.000041847000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000046587000000,0.000046982000000,0.000022898500000,0.000039872000000,0.000109402000000,0.000165501000000,0.000170636000000,0.000169057000000,0.011630183000000,0.000202637000000,0.000055279000000,0.000046193000000,0.000084513000000,0.000130736000000,0.000028232000000,0.000408463000000 +0.000017960000000,0.011413295000000,0.000118093000000,0.000039871000000,0.000016775000000,0.000042242000000,0.000026454000000,0.000047773000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000150093000000,0.000160760000000,0.000170241000000,0.000169846000000,0.011716701000000,0.000201056000000,0.000054883000000,0.000047377000000,0.000084909000000,0.000138241000000,0.000037318000000,0.000409253000000 +0.000017763000000,0.011378924000000,0.000148118000000,0.000040266000000,0.000015589500000,0.000041451000000,0.000027047000000,0.000047772000000,0.000045797000000,0.000022108500000,0.000039081000000,0.000151674000000,0.000163131000000,0.000172217000000,0.000169057000000,0.011458726000000,0.000202242000000,0.000055674000000,0.000047378000000,0.000088859000000,0.000132711000000,0.000036528500000,0.000406883000000 +0.000018355000000,0.011816652000000,0.000129155000000,0.000042636000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000047772000000,0.000047377000000,0.000021911000000,0.000039871000000,0.000118488000000,0.000161550000000,0.000171822000000,0.000168661000000,0.011399863000000,0.000201452000000,0.000055279000000,0.000045797000000,0.000082933000000,0.000137056000000,0.000028231500000,0.000410438000000 +0.000018553000000,0.011275418000000,0.000128760000000,0.000043032000000,0.000015590000000,0.000041451000000,0.000026651500000,0.000046983000000,0.000046983000000,0.000022306000000,0.000039477000000,0.000114932000000,0.000245303000000,0.000169057000000,0.000210537000000,0.011619121000000,0.000203427000000,0.000054883000000,0.000046983000000,0.000085303000000,0.000131921000000,0.000028232000000,0.000407278000000 +0.000018158000000,0.011709195000000,0.000110982000000,0.000040267000000,0.000015590000000,0.000042242000000,0.000026257000000,0.000082537000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000117698000000,0.000161551000000,0.000171032000000,0.000169846000000,0.011819022000000,0.000218044000000,0.000055279000000,0.000082538000000,0.000081748000000,0.000129945000000,0.000028232000000,0.000447575000000 +0.000018553000000,0.011291615000000,0.000112957000000,0.000039872000000,0.000034750500000,0.000043032000000,0.000026256500000,0.000046587000000,0.000047773000000,0.000023096000000,0.000039871000000,0.000115328000000,0.000160365000000,0.000170637000000,0.000169847000000,0.012750577000000,0.000201847000000,0.000055278000000,0.000046587000000,0.000084118000000,0.000130340000000,0.000028232000000,0.000408859000000 +0.000017960000000,0.011265937000000,0.000131921000000,0.000042637000000,0.000031984500000,0.000041451000000,0.000026651500000,0.000046587000000,0.000048167000000,0.000039096000000,0.000040266000000,0.000169846000000,0.000163921000000,0.000172612000000,0.000169451000000,0.011708801000000,0.000201056000000,0.000055674000000,0.000046588000000,0.000082538000000,0.000129155000000,0.000028231500000,0.000484315000000 +0.000017763000000,0.011126875000000,0.000174192000000,0.000039871000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000046587000000,0.000046588000000,0.000022503500000,0.000039477000000,0.000104661000000,0.000181303000000,0.000169846000000,0.000169846000000,0.012091220000000,0.000203031000000,0.000055278000000,0.000046192000000,0.000085698000000,0.000129550000000,0.000028232000000,0.000430982000000 +0.000017960500000,0.011596208000000,0.000129945000000,0.000042636000000,0.000016380000000,0.000042242000000,0.000054108500000,0.000046983000000,0.000084118000000,0.000023293500000,0.000059624000000,0.000117303000000,0.000160760000000,0.000172217000000,0.000436908000000,0.012182084000000,0.000220414000000,0.000055279000000,0.000046587000000,0.000083723000000,0.000130341000000,0.000028232000000,0.000437303000000 +0.000018750500000,0.011048258000000,0.000129155000000,0.000039476000000,0.000015590000000,0.000042636000000,0.000078404500000,0.000047378000000,0.000045797000000,0.000022701000000,0.000055674000000,0.000115723000000,0.000160365000000,0.000172217000000,0.000187229000000,0.011559467000000,0.000252020000000,0.000055279000000,0.000045797000000,0.000088068000000,0.000131130000000,0.000028231500000,0.000434143000000 +0.000018157500000,0.011045887000000,0.000112957000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000079194500000,0.000046587000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000099131000000,0.000162735000000,0.000171032000000,0.000169452000000,0.012592158000000,0.000201451000000,0.000055279000000,0.000046982000000,0.000084909000000,0.000168661000000,0.000028232000000,0.000439278000000 +0.000018553000000,0.010904455000000,0.000114933000000,0.000040661000000,0.000024874000000,0.000042637000000,0.000075244500000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000165106000000,0.000208167000000,0.000239377000000,0.012394627000000,0.000203426000000,0.000054884000000,0.000045797000000,0.000087278000000,0.000132316000000,0.000028232000000,0.000432562000000 +0.000018553000000,0.011100801000000,0.000133106000000,0.000042637000000,0.000023096000000,0.000042637000000,0.000044429500000,0.000046982000000,0.000046983000000,0.000022108500000,0.000039476000000,0.000118489000000,0.000200266000000,0.000170241000000,0.000168661000000,0.011703270000000,0.000284019000000,0.000055278000000,0.000045797000000,0.000084909000000,0.000132711000000,0.000028231500000,0.000437698000000 +0.000027639500000,0.011346529000000,0.000161945000000,0.000039477000000,0.000016577500000,0.000079772000000,0.000035343000000,0.000046588000000,0.000046587000000,0.000022108500000,0.000039476000000,0.000151673000000,0.000161156000000,0.000168661000000,0.000169846000000,0.011692998000000,0.000201846000000,0.000055279000000,0.000045007000000,0.000084513000000,0.000135081000000,0.000028232000000,0.000433747000000 +0.000035738500000,0.011509294000000,0.000113353000000,0.000083723000000,0.000017367500000,0.000042242000000,0.000033763000000,0.000046982000000,0.000047377000000,0.000022306000000,0.000038686000000,0.000114933000000,0.000194341000000,0.000168266000000,0.000169451000000,0.011419220000000,0.000201452000000,0.000054883000000,0.000046982000000,0.000137846000000,0.000129945000000,0.000028232000000,0.000436118000000 +0.000019145500000,0.011284110000000,0.000118489000000,0.000037501000000,0.000022306000000,0.000042637000000,0.000026256500000,0.000047377000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000160365000000,0.000170636000000,0.000169451000000,0.012208553000000,0.000202637000000,0.000055279000000,0.000046982000000,0.000221204000000,0.000169846000000,0.000028231500000,0.000437698000000 +0.000024676000000,0.011269492000000,0.000112957000000,0.000037896000000,0.000016380000000,0.000043031000000,0.000026256500000,0.000046983000000,0.000047377000000,0.000022306000000,0.000039476000000,0.000109007000000,0.000161946000000,0.000294686000000,0.000168266000000,0.011431467000000,0.000236217000000,0.000055278000000,0.000047377000000,0.000105451000000,0.000136267000000,0.000046207500000,0.000492217000000 +0.000018158000000,0.011201937000000,0.000117303000000,0.000040267000000,0.000016577500000,0.000042637000000,0.000044429500000,0.000046587000000,0.000048957000000,0.000022898500000,0.000038686000000,0.000107032000000,0.000244118000000,0.000240562000000,0.000167871000000,0.011578430000000,0.000201847000000,0.000055279000000,0.000046192000000,0.000097946000000,0.000131525000000,0.000028232000000,0.000449945000000 +0.000018355500000,0.011339418000000,0.000129155000000,0.000040266000000,0.000015392500000,0.000041057000000,0.000026651500000,0.000046982000000,0.000048563000000,0.000022701000000,0.000039871000000,0.000102686000000,0.000162735000000,0.000170241000000,0.000169846000000,0.011745936000000,0.000201056000000,0.000055278000000,0.000046192000000,0.000085698000000,0.000129551000000,0.000028232000000,0.000435723000000 +0.000017960000000,0.010920258000000,0.000164710000000,0.000038291000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000047377000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000139427000000,0.000160365000000,0.000173007000000,0.000170636000000,0.011982973000000,0.000203031000000,0.000055279000000,0.000045007000000,0.000083723000000,0.000134291000000,0.000028232000000,0.000446389000000 +0.000018750500000,0.011391961000000,0.000118094000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000046588000000,0.000046192000000,0.000022701000000,0.000039476000000,0.000116118000000,0.000161945000000,0.000171822000000,0.000204612000000,0.011717491000000,0.000237797000000,0.000055279000000,0.000046587000000,0.000084908000000,0.000296661000000,0.000028232000000,0.000439278000000 +0.000018553000000,0.011123715000000,0.000130340000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046587000000,0.000048957000000,0.000022701000000,0.000039871000000,0.000109402000000,0.000162736000000,0.000168661000000,0.000168266000000,0.011505739000000,0.000199081000000,0.000055673000000,0.000046982000000,0.000083328000000,0.000151279000000,0.000028232000000,0.000432562000000 +0.000017762500000,0.011081838000000,0.000128760000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026256500000,0.000081747000000,0.000048168000000,0.000022701000000,0.000039476000000,0.000114933000000,0.000214488000000,0.000171426000000,0.000170637000000,0.011661788000000,0.000201451000000,0.000054884000000,0.000079772000000,0.000084513000000,0.000134291000000,0.000028232000000,0.000432957000000 +0.000019145500000,0.011046677000000,0.000130340000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026454500000,0.000082538000000,0.000048563000000,0.000022503500000,0.000039477000000,0.000115328000000,0.000161550000000,0.000172217000000,0.000169846000000,0.012803120000000,0.000203032000000,0.000054488000000,0.000061205000000,0.000084119000000,0.000167871000000,0.000028232000000,0.000432562000000 +0.000018750500000,0.011368258000000,0.000131525000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000085303000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000106242000000,0.000160365000000,0.000172217000000,0.000170241000000,0.011749097000000,0.000237402000000,0.000054884000000,0.000046192000000,0.000083723000000,0.000131525000000,0.000028231500000,0.000436118000000 +0.000018750000000,0.011391171000000,0.000146538000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000097550000000,0.000045797000000,0.000058256500000,0.000039476000000,0.000116908000000,0.000160760000000,0.000173007000000,0.000206587000000,0.011467418000000,0.000201846000000,0.000055673000000,0.000046983000000,0.000084118000000,0.000130340000000,0.000028232000000,0.000462587000000 +0.000017763000000,0.011146628000000,0.000129550000000,0.000038291000000,0.000016380500000,0.000042241000000,0.000026454500000,0.000102291000000,0.000065155000000,0.000022503500000,0.000040267000000,0.000164316000000,0.000183278000000,0.000169847000000,0.000170637000000,0.011571714000000,0.000201056000000,0.000054884000000,0.000046587000000,0.000086488000000,0.000168661000000,0.000028232000000,0.000438093000000 +0.000019145500000,0.011081048000000,0.000131131000000,0.000040267000000,0.000015392000000,0.000042637000000,0.000026651500000,0.000081748000000,0.000046588000000,0.000021911000000,0.000075427000000,0.000107031000000,0.000165896000000,0.000171032000000,0.000169451000000,0.011724603000000,0.000202242000000,0.000055278000000,0.000046193000000,0.000084908000000,0.000131921000000,0.000028231500000,0.000466932000000 +0.000018553000000,0.011033245000000,0.000129155000000,0.000040267000000,0.000026256500000,0.000042637000000,0.000026454000000,0.000104661000000,0.000048562000000,0.000022701000000,0.000039476000000,0.000114933000000,0.000163525000000,0.000168661000000,0.000170242000000,0.011393936000000,0.000237402000000,0.000054884000000,0.000045797000000,0.000081352000000,0.000179723000000,0.000028034500000,0.000410044000000 +0.000018750000000,0.011498233000000,0.000114143000000,0.000038291000000,0.000042257000000,0.000042242000000,0.000026059000000,0.000149698000000,0.000047772000000,0.000022108500000,0.000040267000000,0.000115328000000,0.000161551000000,0.000173402000000,0.000168266000000,0.011663368000000,0.000201452000000,0.000055278000000,0.000046192000000,0.000120859000000,0.000131525000000,0.000028232000000,0.000449550000000 +0.000019145500000,0.011011121000000,0.000114143000000,0.000040661000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000114933000000,0.000046587000000,0.000022503500000,0.000038686000000,0.000115328000000,0.000161550000000,0.000171031000000,0.000205402000000,0.011540109000000,0.000198686000000,0.000054884000000,0.000046193000000,0.000082933000000,0.000135476000000,0.000028231500000,0.000415575000000 +0.000019145500000,0.011423171000000,0.000115328000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000077006000000,0.000047378000000,0.000022898500000,0.000039476000000,0.000102686000000,0.000204217000000,0.000170636000000,0.000169847000000,0.011900010000000,0.000201452000000,0.000055278000000,0.000045797000000,0.000087674000000,0.000132710000000,0.000037516000000,0.000450735000000 +0.000019145500000,0.011021788000000,0.000142193000000,0.000037895000000,0.000016775000000,0.000042636000000,0.000026849000000,0.000046588000000,0.000046192000000,0.000022701000000,0.000039872000000,0.000098736000000,0.000177747000000,0.000172216000000,0.000168266000000,0.011669689000000,0.000238192000000,0.000056464000000,0.000045797000000,0.000086488000000,0.000134290000000,0.000043046500000,0.000413599000000 +0.000019145500000,0.011548405000000,0.000129550000000,0.000076217000000,0.000016577500000,0.000078587000000,0.000044232000000,0.000046982000000,0.000048563000000,0.000022898500000,0.000039476000000,0.000115328000000,0.000164710000000,0.000173007000000,0.000169846000000,0.011539714000000,0.000197106000000,0.000056859000000,0.000045798000000,0.000084908000000,0.000134291000000,0.000028232000000,0.000445204000000 +0.000017762500000,0.011211813000000,0.000130736000000,0.000040661000000,0.000016380000000,0.000041846000000,0.000025861500000,0.000046587000000,0.000046587000000,0.000022306000000,0.000039476000000,0.000117303000000,0.000160760000000,0.000199871000000,0.000169847000000,0.011335862000000,0.000197896000000,0.000090439000000,0.000046192000000,0.000088859000000,0.000130341000000,0.000028034500000,0.000412414000000 +0.000018355500000,0.011384060000000,0.000110192000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026454500000,0.000046192000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000160760000000,0.000169846000000,0.000240562000000,0.014700205000000,0.000203032000000,0.000054884000000,0.000047772000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000577945000000 +0.000045219500000,0.011114233000000,0.000113353000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000047773000000,0.000047377000000,0.000022898500000,0.000040266000000,0.000116908000000,0.000220809000000,0.000169846000000,0.000167871000000,0.012896355000000,0.000287970000000,0.000055278000000,0.000046587000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000499723000000 +0.000018157500000,0.011606084000000,0.000166686000000,0.000038291000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000047377000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000160365000000,0.000169846000000,0.000170241000000,0.017035018000000,0.000200266000000,0.000055279000000,0.000045402000000,0.000084514000000,0.000202242000000,0.000028232000000,0.000412809000000 +0.000018355500000,0.011043517000000,0.000129550000000,0.000040661000000,0.000016577500000,0.000041452000000,0.000027046500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000163526000000,0.000171821000000,0.000167476000000,0.016565291000000,0.000201452000000,0.000055673000000,0.000047378000000,0.000121253000000,0.000132710000000,0.000028232000000,0.000443229000000 +0.000019145500000,0.011101591000000,0.000131525000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026257000000,0.000047378000000,0.000048168000000,0.000022306000000,0.000039081000000,0.000149304000000,0.000161550000000,0.000171032000000,0.000206192000000,0.016587019000000,0.000203031000000,0.000056069000000,0.000046982000000,0.000085698000000,0.000130340000000,0.000028231500000,0.000409649000000 +0.000018157500000,0.011347319000000,0.000129551000000,0.000040267000000,0.000015985000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000107031000000,0.000161945000000,0.000169846000000,0.000171427000000,0.016434920000000,0.000201451000000,0.000054488000000,0.000082143000000,0.000084118000000,0.000133106000000,0.000028232000000,0.000456266000000 +0.000019145500000,0.011421986000000,0.000113747000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000046587000000,0.000048562000000,0.000022108500000,0.000039081000000,0.000108217000000,0.000394637000000,0.000171427000000,0.000169847000000,0.013786823000000,0.000201847000000,0.000056069000000,0.000046193000000,0.000085303000000,0.000137451000000,0.000028232000000,0.000409649000000 +0.000017763000000,0.011397097000000,0.000118488000000,0.000037105000000,0.000015590000000,0.000041846000000,0.000026256500000,0.000047377000000,0.000047378000000,0.000023096000000,0.000039872000000,0.000103081000000,0.000229105000000,0.000170242000000,0.000169847000000,0.012299417000000,0.000201451000000,0.000054883000000,0.000045797000000,0.000084908000000,0.000148909000000,0.000028231500000,0.000445600000000 +0.000018355500000,0.011038776000000,0.000113748000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026257000000,0.000047378000000,0.000084908000000,0.000040084000000,0.000039081000000,0.000117698000000,0.000163921000000,0.000172217000000,0.000168661000000,0.012493787000000,0.000203031000000,0.000055279000000,0.000046587000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000407674000000 +0.000017763000000,0.011049837000000,0.000129551000000,0.000040661000000,0.000016577500000,0.000042242000000,0.000027046500000,0.000047377000000,0.000078587000000,0.000022503500000,0.000040266000000,0.000116118000000,0.000197501000000,0.000171822000000,0.000240563000000,0.014410626000000,0.000201056000000,0.000055674000000,0.000046192000000,0.000084118000000,0.000129550000000,0.000028232000000,0.000445599000000 +0.000018355500000,0.011185344000000,0.000110192000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000109007000000,0.000164710000000,0.000170637000000,0.000183279000000,0.013473935000000,0.000201847000000,0.000054883000000,0.000046587000000,0.000084908000000,0.000130340000000,0.000028232000000,0.000409648000000 +0.000018355000000,0.011465443000000,0.000129550000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046983000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000139032000000,0.000161946000000,0.000170242000000,0.000169056000000,0.016729241000000,0.000201451000000,0.000055279000000,0.000046588000000,0.000084908000000,0.000134291000000,0.000028231500000,0.000446784000000 +0.000018750500000,0.011236702000000,0.000128760000000,0.000037500000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000047377000000,0.000046983000000,0.000022701000000,0.000055674000000,0.000099130000000,0.000165105000000,0.000169847000000,0.000169451000000,0.014268403000000,0.000221994000000,0.000055278000000,0.000046982000000,0.000082933000000,0.000144958000000,0.000049763000000,0.000412809000000 +0.000018355500000,0.011466627000000,0.000129550000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000065945000000,0.000047377000000,0.000022108500000,0.000041452000000,0.000116908000000,0.000161156000000,0.000187229000000,0.000169056000000,0.014175169000000,0.000201452000000,0.000055674000000,0.000045402000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000472068000000 +0.000018750500000,0.011708800000000,0.000113352000000,0.000040661000000,0.000015392500000,0.000041452000000,0.000044034500000,0.000060019000000,0.000046588000000,0.000022503500000,0.000039476000000,0.000117303000000,0.000231871000000,0.000170637000000,0.000171031000000,0.015013884000000,0.000201451000000,0.000075427000000,0.000046192000000,0.000084908000000,0.000135476000000,0.000028232000000,0.000411624000000 +0.000018157500000,0.011730924000000,0.000217649000000,0.000040661000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000047377000000,0.000046192000000,0.000021911000000,0.000039081000000,0.000116908000000,0.000163920000000,0.000169847000000,0.000169452000000,0.014802131000000,0.000201451000000,0.000071871000000,0.000046587000000,0.000082932000000,0.000136662000000,0.000028034500000,0.000455476000000 +0.000017763000000,0.011251319000000,0.000129550000000,0.000037500000000,0.000016577500000,0.000042636000000,0.000026849500000,0.000047377000000,0.000048168000000,0.000022108500000,0.000039476000000,0.000102686000000,0.000163526000000,0.000170242000000,0.000211723000000,0.013182379000000,0.000242142000000,0.000055278000000,0.000046983000000,0.000089649000000,0.000167871000000,0.000028232000000,0.000410439000000 +0.000017762500000,0.011040356000000,0.000127970000000,0.000036711000000,0.000015590000000,0.000060810000000,0.000027046500000,0.000046983000000,0.000046587000000,0.000022306000000,0.000039872000000,0.000117304000000,0.000163921000000,0.000206982000000,0.000215279000000,0.012400948000000,0.000201451000000,0.000055279000000,0.000045402000000,0.000084118000000,0.000130735000000,0.000028231500000,0.000459822000000 +0.000018158000000,0.011182183000000,0.000130735000000,0.000065946000000,0.000033763000000,0.000058044000000,0.000026651500000,0.000046982000000,0.000048168000000,0.000022306000000,0.000039476000000,0.000109797000000,0.000163526000000,0.000170636000000,0.000204217000000,0.013251515000000,0.000202241000000,0.000055279000000,0.000045402000000,0.000085303000000,0.000128365000000,0.000028232000000,0.000412809000000 +0.000017762500000,0.011435813000000,0.000110192000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000117698000000,0.000215278000000,0.000168661000000,0.000169846000000,0.012883713000000,0.000201056000000,0.000055674000000,0.000046983000000,0.000083328000000,0.000137056000000,0.000028034500000,0.000532512000000 +0.000018355500000,0.010987023000000,0.000136662000000,0.000037896000000,0.000015589500000,0.000043427000000,0.000026454000000,0.000046983000000,0.000048563000000,0.000022306000000,0.000039476000000,0.000116513000000,0.000161550000000,0.000170637000000,0.000169846000000,0.012761639000000,0.000238982000000,0.000054489000000,0.000045797000000,0.000116513000000,0.000133106000000,0.000028231500000,0.000407278000000 +0.000018750500000,0.011171517000000,0.000129550000000,0.000037500000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046983000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000114933000000,0.000163130000000,0.000169847000000,0.000170242000000,0.012502479000000,0.000201056000000,0.000055673000000,0.000047378000000,0.000097945000000,0.000189995000000,0.000028232000000,0.000456266000000 +0.000018947500000,0.011298332000000,0.000110192000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000026454500000,0.000047377000000,0.000048168000000,0.000021911000000,0.000039476000000,0.000103871000000,0.000162340000000,0.000170241000000,0.000169451000000,0.013200947000000,0.000196315000000,0.000055279000000,0.000047377000000,0.000083328000000,0.000129945000000,0.000028232000000,0.000406883000000 +0.000025664000000,0.011300702000000,0.000131131000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000116513000000,0.000160760000000,0.000169056000000,0.000186834000000,0.015813488000000,0.000201056000000,0.000054883000000,0.000118094000000,0.000082537000000,0.000129550000000,0.000028034000000,0.000497353000000 +0.000025663500000,0.011076702000000,0.000117303000000,0.000040661000000,0.000015392000000,0.000042637000000,0.000027046500000,0.000047378000000,0.000046193000000,0.000022701000000,0.000039872000000,0.000135081000000,0.000246093000000,0.000172217000000,0.000170636000000,0.013234133000000,0.000327871000000,0.000055674000000,0.000049748000000,0.000084119000000,0.000131921000000,0.000028232000000,0.000406488000000 +0.000018750500000,0.011129640000000,0.000118093000000,0.000040661000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000046982000000,0.000067920000000,0.000022898500000,0.000039081000000,0.000117303000000,0.000161945000000,0.000170637000000,0.000170637000000,0.012551862000000,0.000287575000000,0.000055279000000,0.000046192000000,0.000085303000000,0.000165106000000,0.000028232000000,0.000556217000000 +0.000018355500000,0.011066825000000,0.000117698000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000063180000000,0.000022503500000,0.000040266000000,0.000109007000000,0.000160365000000,0.000172217000000,0.000167871000000,0.012783367000000,0.000201452000000,0.000055278000000,0.000044612000000,0.000083723000000,0.000128365000000,0.000028232000000,0.000572809000000 +0.000018158000000,0.013353441000000,0.000209748000000,0.000039872000000,0.000016380000000,0.000041452000000,0.000027047000000,0.000046983000000,0.000048563000000,0.000061219500000,0.000039081000000,0.000102686000000,0.000159970000000,0.000169056000000,0.000209748000000,0.011730529000000,0.000237402000000,0.000055674000000,0.000047377000000,0.000083723000000,0.000131921000000,0.000046207000000,0.000409253000000 +0.000017762500000,0.011472553000000,0.000113352000000,0.000040662000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000045812000000,0.000039476000000,0.000114537000000,0.000165500000000,0.000169451000000,0.000169846000000,0.013929836000000,0.000203031000000,0.000055673000000,0.000045797000000,0.000084908000000,0.000132315000000,0.000028232000000,0.000457846000000 +0.000018355500000,0.011211813000000,0.000129155000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000026256500000,0.000047772000000,0.000048563000000,0.000067540500000,0.000039871000000,0.000117699000000,0.000160760000000,0.000170636000000,0.000168662000000,0.014517687000000,0.000199871000000,0.000056069000000,0.000045798000000,0.000121254000000,0.000129945000000,0.000028231500000,0.000407674000000 +0.000018157500000,0.011266331000000,0.000113747000000,0.000037501000000,0.000015392500000,0.000041847000000,0.000043837000000,0.000047377000000,0.000047772000000,0.000030010000000,0.000038686000000,0.000107427000000,0.000162735000000,0.000171031000000,0.000169846000000,0.012038282000000,0.000201452000000,0.000092019000000,0.000046982000000,0.000084908000000,0.000210143000000,0.000028232000000,0.000497747000000 +0.000018158000000,0.011211418000000,0.000128365000000,0.000039871000000,0.000016182500000,0.000042636000000,0.000034355500000,0.000066736000000,0.000045797000000,0.000023688500000,0.000075822000000,0.000140217000000,0.000161946000000,0.000179327000000,0.000169451000000,0.012216455000000,0.000236217000000,0.000056464000000,0.000046982000000,0.000083328000000,0.000131525000000,0.000028232000000,0.000412414000000 +0.000018948000000,0.011118578000000,0.000127180000000,0.000040661000000,0.000015589500000,0.000041452000000,0.000026849000000,0.000120858000000,0.000048562000000,0.000029614500000,0.000038686000000,0.000098735000000,0.000160760000000,0.000169847000000,0.000216464000000,0.011656257000000,0.000202637000000,0.000055674000000,0.000045797000000,0.000083723000000,0.000130735000000,0.000028231500000,0.000446785000000 +0.000018157500000,0.011144258000000,0.000127575000000,0.000037501000000,0.000015392500000,0.000041452000000,0.000027047000000,0.000101896000000,0.000048563000000,0.000022503500000,0.000039872000000,0.000105057000000,0.000161155000000,0.000168661000000,0.000171031000000,0.013672255000000,0.000200661000000,0.000054883000000,0.000047377000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000409253000000 +0.000017960500000,0.010977542000000,0.000110192000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000116118000000,0.000046587000000,0.000023886500000,0.000039476000000,0.000114537000000,0.000189600000000,0.000170636000000,0.000169452000000,0.014158972000000,0.000201846000000,0.000055674000000,0.000046983000000,0.000082538000000,0.000131526000000,0.000028232000000,0.000496167000000 +0.000018750500000,0.011527072000000,0.000117304000000,0.000039871000000,0.000015590000000,0.000042637000000,0.000028429500000,0.000064365000000,0.000046983000000,0.000021911000000,0.000040266000000,0.000113747000000,0.000163920000000,0.000169451000000,0.000170636000000,0.011685492000000,0.000237402000000,0.000054883000000,0.000047377000000,0.000084908000000,0.000131920000000,0.000028231500000,0.000410044000000 +0.000018750500000,0.010895369000000,0.000127575000000,0.000037501000000,0.000015589500000,0.000041451000000,0.000026454000000,0.000049748000000,0.000045797000000,0.000022898500000,0.000039476000000,0.000102686000000,0.000161155000000,0.000419130000000,0.000169452000000,0.011405788000000,0.000202637000000,0.000054884000000,0.000046587000000,0.000085304000000,0.000129550000000,0.000028232000000,0.000444414000000 +0.000019145500000,0.011308998000000,0.000129550000000,0.000040267000000,0.000016380500000,0.000078587000000,0.000026849500000,0.000063575000000,0.000048958000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000160365000000,0.000205797000000,0.000213698000000,0.012234232000000,0.000201056000000,0.000054883000000,0.000046587000000,0.000084513000000,0.000129155000000,0.000028232000000,0.000408463000000 +0.000018750500000,0.011523912000000,0.000129155000000,0.000100316000000,0.000015392500000,0.000045007000000,0.000026454000000,0.000046982000000,0.000046587000000,0.000022306000000,0.000039476000000,0.000150489000000,0.000196315000000,0.000169451000000,0.000170637000000,0.011123319000000,0.000202241000000,0.000055279000000,0.000046588000000,0.000101896000000,0.000131921000000,0.000028232000000,0.000482735000000 +0.000018750500000,0.011546035000000,0.000216859000000,0.000058439000000,0.000015985000000,0.000042242000000,0.000027244000000,0.000046982000000,0.000048168000000,0.000022701000000,0.000039081000000,0.000116118000000,0.000162340000000,0.000171821000000,0.000170242000000,0.012479170000000,0.000236216000000,0.000055673000000,0.000125994000000,0.000084908000000,0.000230291000000,0.000028232000000,0.000413600000000 +0.000017762500000,0.011027714000000,0.000114143000000,0.000056859000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000046588000000,0.000048167000000,0.000022108500000,0.000039872000000,0.000116513000000,0.000164710000000,0.000174192000000,0.000170636000000,0.013579416000000,0.000203031000000,0.000055279000000,0.000067921000000,0.000082933000000,0.000408464000000,0.000028232000000,0.000460217000000 +0.000018553000000,0.011145838000000,0.000128760000000,0.000042636000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000046982000000,0.000048168000000,0.000057664000000,0.000039081000000,0.000116513000000,0.000204216000000,0.000171031000000,0.000189599000000,0.012679861000000,0.000201451000000,0.000055279000000,0.000063970000000,0.000085303000000,0.000184068000000,0.000028429500000,0.000407673000000 +0.000017763000000,0.010914726000000,0.000176562000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000046982000000,0.000048167000000,0.000022898500000,0.000039871000000,0.000117304000000,0.000174587000000,0.000209747000000,0.000169451000000,0.014729835000000,0.000201847000000,0.000055673000000,0.000049352000000,0.000121254000000,0.000131920000000,0.000028231500000,0.000424661000000 +0.000017762500000,0.013350675000000,0.000113353000000,0.000037501000000,0.000016182500000,0.000042242000000,0.000027047000000,0.000047378000000,0.000082932000000,0.000022503500000,0.000039476000000,0.000103476000000,0.000247278000000,0.000174192000000,0.000169451000000,0.012135466000000,0.000235427000000,0.000055279000000,0.000059624000000,0.000097155000000,0.000130340000000,0.000046207500000,0.000409254000000 +0.000017763000000,0.011347319000000,0.000116513000000,0.000038291000000,0.000051935500000,0.000042242000000,0.000026454000000,0.000066735000000,0.000046587000000,0.000021911000000,0.000039476000000,0.000154044000000,0.000161155000000,0.000168661000000,0.000171426000000,0.012432948000000,0.000202242000000,0.000055278000000,0.000047377000000,0.000085303000000,0.000130736000000,0.000028231500000,0.000410439000000 +0.000045417000000,0.011553936000000,0.000128760000000,0.000037106000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000097945000000,0.000046192000000,0.000022503500000,0.000038686000000,0.000155624000000,0.000161550000000,0.000170636000000,0.000170637000000,0.012039071000000,0.000201452000000,0.000054884000000,0.000046193000000,0.000083328000000,0.000132710000000,0.000028232000000,0.000427426000000 +0.000020133000000,0.011123319000000,0.000110587000000,0.000039871000000,0.000016380500000,0.000042242000000,0.000044627000000,0.000047378000000,0.000046588000000,0.000022305500000,0.000039081000000,0.000117698000000,0.000160365000000,0.000170636000000,0.000251229000000,0.013405984000000,0.000202242000000,0.000055278000000,0.000046982000000,0.000120859000000,0.000174983000000,0.000028034500000,0.000427031000000 +0.000025861500000,0.011234331000000,0.000121649000000,0.000040662000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000115722000000,0.000163131000000,0.000171031000000,0.000170241000000,0.012870676000000,0.000237797000000,0.000054884000000,0.000046588000000,0.000084908000000,0.000134686000000,0.000028231500000,0.000482735000000 +0.000018355500000,0.012607960000000,0.000129946000000,0.000037896000000,0.000015392500000,0.000041451000000,0.000025862000000,0.000046587000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000117699000000,0.000231872000000,0.000174192000000,0.000169847000000,0.015527069000000,0.000203032000000,0.000055278000000,0.000046587000000,0.000085698000000,0.000131525000000,0.000028232000000,0.000411229000000 +0.000018750500000,0.011167567000000,0.000130340000000,0.000037896000000,0.000015590000000,0.000043032000000,0.000026256500000,0.000046982000000,0.000046983000000,0.000022503500000,0.000039082000000,0.000116514000000,0.000162735000000,0.000170241000000,0.000170241000000,0.011990874000000,0.000201452000000,0.000055279000000,0.000046192000000,0.000088068000000,0.000133106000000,0.000028232000000,0.000682241000000 +0.000018750500000,0.011383665000000,0.000129155000000,0.000037896000000,0.000015787500000,0.000041452000000,0.000026454000000,0.000047378000000,0.000046982000000,0.000022305500000,0.000073057000000,0.000139821000000,0.000163131000000,0.000170242000000,0.000170241000000,0.012983268000000,0.000201847000000,0.000055674000000,0.000046982000000,0.000083723000000,0.000174982000000,0.000028232000000,0.000817747000000 +0.000018355500000,0.011645195000000,0.000184068000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046587000000,0.000047377000000,0.000022701500000,0.000039081000000,0.000114933000000,0.000161550000000,0.000170637000000,0.000331427000000,0.014711267000000,0.000237797000000,0.000055279000000,0.000045797000000,0.000083723000000,0.000128760000000,0.000028231500000,0.000554637000000 +0.000018750500000,0.011148998000000,0.000109797000000,0.000037500000000,0.000016380000000,0.000041451000000,0.000026454500000,0.000046982000000,0.000046982000000,0.000022305500000,0.000039871000000,0.000116118000000,0.000161551000000,0.000171427000000,0.000169056000000,0.013163416000000,0.000203031000000,0.000054884000000,0.000047378000000,0.000082933000000,0.000135476000000,0.000028232000000,0.000412414000000 +0.000019145500000,0.011428306000000,0.000121649000000,0.000037501000000,0.000016577500000,0.000042242000000,0.000026849000000,0.000046982000000,0.000047772000000,0.000021911000000,0.000039081000000,0.000109403000000,0.000189995000000,0.000255970000000,0.000169451000000,0.011709591000000,0.000200266000000,0.000055278000000,0.000045797000000,0.000085303000000,0.000131130000000,0.000028232000000,0.000447180000000 +0.000019145500000,0.011248159000000,0.000131130000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046983000000,0.000047377000000,0.000022701000000,0.000039476000000,0.000117699000000,0.000160364000000,0.000169846000000,0.000168267000000,0.012757688000000,0.000202242000000,0.000055674000000,0.000045402000000,0.000084909000000,0.000129550000000,0.000028231500000,0.000413204000000 +0.000019145500000,0.011383269000000,0.000110983000000,0.000065550000000,0.000015194500000,0.000042637000000,0.000027047000000,0.000047377000000,0.000046982000000,0.000022306000000,0.000039476000000,0.000103081000000,0.000165105000000,0.000169451000000,0.000421895000000,0.012476405000000,0.000237402000000,0.000055278000000,0.000063179000000,0.000083328000000,0.000167477000000,0.000028232000000,0.000479574000000 +0.000018750000000,0.011385640000000,0.000131525000000,0.000039871000000,0.000015590000000,0.000063180000000,0.000026256500000,0.000046982000000,0.000048563000000,0.000023886500000,0.000039476000000,0.000102686000000,0.000165501000000,0.000170637000000,0.000205007000000,0.011851812000000,0.000203427000000,0.000055279000000,0.000057649000000,0.000082143000000,0.000133106000000,0.000028232000000,0.000408463000000 +0.000018948000000,0.011395517000000,0.000110587000000,0.000040661000000,0.000016380000000,0.000044217000000,0.000027046500000,0.000046982000000,0.000048168000000,0.000022898500000,0.000039476000000,0.000149303000000,0.000199871000000,0.000171822000000,0.000170242000000,0.012635219000000,0.000201452000000,0.000055278000000,0.000046587000000,0.000084118000000,0.000131920000000,0.000028231500000,0.000443229000000 +0.000018750500000,0.011008752000000,0.000130736000000,0.000037501000000,0.000016380000000,0.000056068000000,0.000026257000000,0.000046588000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000097945000000,0.000161550000000,0.000170637000000,0.000205007000000,0.011598974000000,0.000201056000000,0.000055674000000,0.000046193000000,0.000083328000000,0.000133501000000,0.000046405000000,0.000407278000000 +0.000018355500000,0.011374578000000,0.000126785000000,0.000040266000000,0.000016380000000,0.000041847000000,0.000026454000000,0.000048167000000,0.000046192000000,0.000040281000000,0.000039476000000,0.000103476000000,0.000161946000000,0.000170242000000,0.000169846000000,0.011357986000000,0.000267821000000,0.000055279000000,0.000046587000000,0.000084909000000,0.000133106000000,0.000028231500000,0.000457056000000 +0.000018157500000,0.011798479000000,0.000129155000000,0.000040266000000,0.000016973000000,0.000042242000000,0.000027046500000,0.000047772000000,0.000104266000000,0.000022898500000,0.000039476000000,0.000109402000000,0.000163920000000,0.000170242000000,0.000171032000000,0.010908406000000,0.000202242000000,0.000055278000000,0.000046193000000,0.000084908000000,0.000170637000000,0.000028232000000,0.000408068000000 +0.000017763000000,0.011659418000000,0.000130340000000,0.000037896000000,0.000016380500000,0.000042636000000,0.000026651500000,0.000047378000000,0.000051723000000,0.000022701000000,0.000039476000000,0.000103476000000,0.000163131000000,0.000171032000000,0.000169451000000,0.015256452000000,0.000195526000000,0.000054884000000,0.000047377000000,0.000086884000000,0.000130340000000,0.000028232000000,0.000536068000000 +0.000018158000000,0.011239468000000,0.000133106000000,0.000052909000000,0.000016380500000,0.000042637000000,0.000044429000000,0.000118488000000,0.000048167000000,0.000022701500000,0.000039081000000,0.000118093000000,0.000201846000000,0.000208167000000,0.000169452000000,0.014205194000000,0.000201452000000,0.000055278000000,0.000047378000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000412414000000 +0.000018947500000,0.011101986000000,0.000173402000000,0.000042637000000,0.000015589500000,0.000041452000000,0.000026454500000,0.000046983000000,0.000048563000000,0.000023293500000,0.000039081000000,0.000109007000000,0.000160760000000,0.000169056000000,0.000217648000000,0.013767860000000,0.000282834000000,0.000056464000000,0.000048562000000,0.000118883000000,0.000137056000000,0.000028231500000,0.000498142000000 +0.000018158000000,0.011460307000000,0.000129550000000,0.000042241000000,0.000015392500000,0.000041451000000,0.000026651500000,0.000046983000000,0.000046982000000,0.000022503500000,0.000040266000000,0.000151674000000,0.000160365000000,0.000169056000000,0.000169846000000,0.012183269000000,0.000201452000000,0.000054883000000,0.000046587000000,0.000082538000000,0.000132315000000,0.000028034500000,0.000416760000000 +0.000018553000000,0.011574479000000,0.000129550000000,0.000039871000000,0.000015787500000,0.000042637000000,0.000026256500000,0.000046982000000,0.000047773000000,0.000022701000000,0.000039476000000,0.000098735000000,0.000163526000000,0.000170242000000,0.000168266000000,0.012687763000000,0.000200266000000,0.000055674000000,0.000047377000000,0.000083723000000,0.000132316000000,0.000028232000000,0.000480365000000 +0.000045219500000,0.011126875000000,0.000130340000000,0.000039871000000,0.000015392500000,0.000042637000000,0.000026454000000,0.000046982000000,0.000046587000000,0.000022108500000,0.000039477000000,0.000115328000000,0.000160365000000,0.000173797000000,0.000171032000000,0.013236898000000,0.000201846000000,0.000056464000000,0.000046588000000,0.000088069000000,0.000131130000000,0.000028231500000,0.000412414000000 +0.000024676500000,0.011966380000000,0.000113747000000,0.000043427000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046983000000,0.000047773000000,0.000022503500000,0.000039476000000,0.000117304000000,0.000235426000000,0.000169846000000,0.000169451000000,0.012652207000000,0.000201452000000,0.000055278000000,0.000046587000000,0.000085698000000,0.000131526000000,0.000028232000000,0.000441649000000 +0.000019145500000,0.013879268000000,0.000129550000000,0.000040266000000,0.000026454500000,0.000042242000000,0.000026454000000,0.000046982000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000118093000000,0.000161945000000,0.000169846000000,0.000205007000000,0.012142577000000,0.000200266000000,0.000055279000000,0.000046588000000,0.000083723000000,0.000128365000000,0.000028232000000,0.000409254000000 +0.000018157500000,0.011165986000000,0.000113353000000,0.000042637000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000047377000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000161550000000,0.000169847000000,0.000189205000000,0.012679466000000,0.000198686000000,0.000055278000000,0.000047377000000,0.000084909000000,0.000151279000000,0.000028232000000,0.000455081000000 +0.000017763000000,0.011271072000000,0.000130735000000,0.000039871000000,0.000016577500000,0.000042636000000,0.000026454000000,0.000047378000000,0.000048562000000,0.000022306000000,0.000056069000000,0.000116908000000,0.000160760000000,0.000170637000000,0.000203426000000,0.012822873000000,0.000196316000000,0.000055279000000,0.000047378000000,0.000088068000000,0.000128760000000,0.000028232000000,0.000414389000000 +0.000017960000000,0.011421591000000,0.000114933000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000046983000000,0.000046192000000,0.000022701000000,0.000040266000000,0.000142983000000,0.000160365000000,0.000206587000000,0.000169452000000,0.012595714000000,0.000198686000000,0.000055674000000,0.000047377000000,0.000083723000000,0.000127179000000,0.000028232000000,0.000444415000000 +0.000017763000000,0.011349294000000,0.000126785000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000046192000000,0.000022701000000,0.000039082000000,0.000102686000000,0.000206982000000,0.000169846000000,0.000204612000000,0.014039663000000,0.000200266000000,0.000055278000000,0.000100316000000,0.000084118000000,0.000132711000000,0.000028232000000,0.000409254000000 +0.000018750000000,0.011433442000000,0.000127970000000,0.000042636000000,0.000018158000000,0.000042636000000,0.000036528000000,0.000046982000000,0.000045797000000,0.000021911000000,0.000039476000000,0.000116908000000,0.000160760000000,0.000171821000000,0.000168266000000,0.013790774000000,0.000201451000000,0.000055279000000,0.000058835000000,0.000085303000000,0.000129550000000,0.000028232000000,0.000412019000000 +0.000018157500000,0.011105541000000,0.000130340000000,0.000073452000000,0.000015590000000,0.000044612000000,0.000035145500000,0.000046588000000,0.000047773000000,0.000022503500000,0.000039476000000,0.000107031000000,0.000165105000000,0.000170636000000,0.000169057000000,0.017082426000000,0.000201847000000,0.000055278000000,0.000046587000000,0.000088859000000,0.000170242000000,0.000036923000000,0.000412414000000 +0.000018355500000,0.011223665000000,0.000180513000000,0.000040267000000,0.000015590000000,0.000042242000000,0.000033367500000,0.000046982000000,0.000047377000000,0.000022898500000,0.000039477000000,0.000104266000000,0.000162341000000,0.000172611000000,0.000169451000000,0.012754133000000,0.000216858000000,0.000055674000000,0.000046192000000,0.000088859000000,0.000128760000000,0.000028232000000,0.000515130000000 +0.000018157500000,0.011795714000000,0.000116118000000,0.000039872000000,0.000015589500000,0.000077402000000,0.000026454500000,0.000046982000000,0.000046983000000,0.000022108500000,0.000040266000000,0.000109402000000,0.000165106000000,0.000169846000000,0.000169451000000,0.012112948000000,0.000201451000000,0.000055673000000,0.000046193000000,0.000085303000000,0.000131130000000,0.000028232000000,0.000833945000000 +0.000017763000000,0.011150578000000,0.000129945000000,0.000039872000000,0.000015590000000,0.000056464000000,0.000036725500000,0.000046982000000,0.000048167000000,0.000032577500000,0.000039871000000,0.000133501000000,0.000460611000000,0.000171031000000,0.000205007000000,0.012290330000000,0.000240167000000,0.000056859000000,0.000045402000000,0.000085304000000,0.000130736000000,0.000028034500000,0.000522241000000 +0.000019145500000,0.011070381000000,0.000121649000000,0.000041847000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000046983000000,0.000065155000000,0.000030207000000,0.000039477000000,0.000107031000000,0.000250044000000,0.000169452000000,0.000169056000000,0.012128750000000,0.000254389000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000129550000000,0.000028231500000,0.000449155000000 +0.000018750500000,0.011249739000000,0.000129550000000,0.000043031000000,0.000015590000000,0.000042636000000,0.000026651500000,0.000065945000000,0.000047377000000,0.000022305500000,0.000039476000000,0.000102686000000,0.000183278000000,0.000170241000000,0.000168661000000,0.012698429000000,0.000201451000000,0.000055673000000,0.000046192000000,0.000084908000000,0.000165896000000,0.000028232000000,0.000451526000000 +0.000018157500000,0.011284899000000,0.000117699000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000097945000000,0.000046983000000,0.000022701000000,0.000039081000000,0.000109007000000,0.000163525000000,0.000208167000000,0.000170242000000,0.011655467000000,0.000203032000000,0.000054489000000,0.000046587000000,0.000121254000000,0.000129550000000,0.000028232000000,0.000408068000000 +0.000018158000000,0.011323220000000,0.000143377000000,0.000039871000000,0.000015392500000,0.000041847000000,0.000027047000000,0.000046587000000,0.000047377000000,0.000023096500000,0.000039871000000,0.000115723000000,0.000163525000000,0.000170636000000,0.000167871000000,0.012897540000000,0.000201056000000,0.000055674000000,0.000045402000000,0.000088069000000,0.000139427000000,0.000028231500000,0.000464562000000 +0.000018157500000,0.011047072000000,0.000130735000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000046983000000,0.000046983000000,0.000022898500000,0.000039081000000,0.000116118000000,0.000164315000000,0.000169846000000,0.000204611000000,0.011836800000000,0.000273353000000,0.000054883000000,0.000045402000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000407278000000 +0.000018948000000,0.011583566000000,0.000130735000000,0.000039871000000,0.000016577500000,0.000042242000000,0.000026454500000,0.000047377000000,0.000047377000000,0.000022898500000,0.000039476000000,0.000115328000000,0.000165501000000,0.000169056000000,0.000169846000000,0.011321245000000,0.000201056000000,0.000054884000000,0.000045402000000,0.000082933000000,0.000139032000000,0.000028232000000,0.000408463000000 +0.000018948000000,0.011574479000000,0.000118488000000,0.000039871000000,0.000016775000000,0.000041451000000,0.000027046500000,0.000047377000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000152069000000,0.000197896000000,0.000171032000000,0.000169451000000,0.012024454000000,0.000202636000000,0.000055673000000,0.000046587000000,0.000085698000000,0.000164316000000,0.000028232000000,0.000429006000000 +0.000018948000000,0.011067220000000,0.000129155000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000046587000000,0.000047772000000,0.000034157500000,0.000039476000000,0.000116118000000,0.000162736000000,0.000172217000000,0.000168266000000,0.011396702000000,0.000201451000000,0.000056069000000,0.000045403000000,0.000086094000000,0.000131130000000,0.000028232000000,0.000434932000000 +0.000018158000000,0.011193245000000,0.000130341000000,0.000040266000000,0.000015589500000,0.000042637000000,0.000026256500000,0.000046983000000,0.000046193000000,0.000023689000000,0.000039081000000,0.000114538000000,0.000162340000000,0.000169847000000,0.000170242000000,0.012363417000000,0.000234241000000,0.000054883000000,0.000046192000000,0.000084909000000,0.000131526000000,0.000028232000000,0.000435723000000 +0.000028034000000,0.011386430000000,0.000138637000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046587000000,0.000047377000000,0.000029417000000,0.000039081000000,0.000116908000000,0.000160365000000,0.000171427000000,0.000204217000000,0.011576060000000,0.000201451000000,0.000055674000000,0.000046983000000,0.000084118000000,0.000152463000000,0.000028232000000,0.000432167000000 +0.000048973000000,0.011420010000000,0.000118488000000,0.000043032000000,0.000016775000000,0.000042241000000,0.000027047000000,0.000046982000000,0.000046982000000,0.000021911000000,0.000039476000000,0.000116908000000,0.000163921000000,0.000169847000000,0.000168266000000,0.012459417000000,0.000202637000000,0.000055674000000,0.000046192000000,0.000088069000000,0.000215673000000,0.000028231500000,0.000475229000000 +0.000019145500000,0.011082233000000,0.000113748000000,0.000042637000000,0.000016380000000,0.000042242000000,0.000027046500000,0.000046588000000,0.000047377000000,0.000022306000000,0.000080563000000,0.000117303000000,0.000198291000000,0.000169846000000,0.000167871000000,0.011608059000000,0.000201452000000,0.000055278000000,0.000082538000000,0.000120463000000,0.000181303000000,0.000055689000000,0.000437303000000 +0.000019145500000,0.011254874000000,0.000110982000000,0.000039871000000,0.000016380000000,0.000042242000000,0.000036528000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039081000000,0.000114143000000,0.000160365000000,0.000186834000000,0.000169056000000,0.011470973000000,0.000238192000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000130340000000,0.000028232000000,0.000438883000000 +0.000018750500000,0.011096850000000,0.000118094000000,0.000042241000000,0.000016182500000,0.000042241000000,0.000051738500000,0.000046982000000,0.000047773000000,0.000022701000000,0.000038687000000,0.000119673000000,0.000160760000000,0.000170637000000,0.000169451000000,0.012090430000000,0.000201056000000,0.000054883000000,0.000046192000000,0.000084908000000,0.000126390000000,0.000028232000000,0.000437698000000 +0.000018158000000,0.011436998000000,0.000131920000000,0.000042636000000,0.000015392500000,0.000041452000000,0.000051738000000,0.000047377000000,0.000045797000000,0.000021911000000,0.000039081000000,0.000102686000000,0.000165501000000,0.000170637000000,0.000169056000000,0.012169046000000,0.000203032000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000165896000000,0.000028034500000,0.000433353000000 +0.000018948000000,0.011084208000000,0.000151673000000,0.000039872000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000046983000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000160760000000,0.000169847000000,0.000170241000000,0.011643615000000,0.000201452000000,0.000055278000000,0.000046588000000,0.000086094000000,0.000131920000000,0.000028232000000,0.000435328000000 +0.000018750500000,0.011329936000000,0.000114933000000,0.000040267000000,0.000043836500000,0.000043031000000,0.000026849000000,0.000046982000000,0.000047378000000,0.000021911000000,0.000039081000000,0.000116513000000,0.000199081000000,0.000172612000000,0.000169056000000,0.011578430000000,0.000237797000000,0.000056069000000,0.000046192000000,0.000087673000000,0.000133501000000,0.000028232000000,0.000437303000000 +0.000018750500000,0.011288455000000,0.000127970000000,0.000043032000000,0.000042257000000,0.000097551000000,0.000026256500000,0.000046982000000,0.000081748000000,0.000040281000000,0.000040266000000,0.000109007000000,0.000161945000000,0.000170241000000,0.000168267000000,0.011828109000000,0.000201056000000,0.000054884000000,0.000045797000000,0.000083723000000,0.000131131000000,0.000028231500000,0.000436118000000 +0.000018158000000,0.011617936000000,0.000129550000000,0.000043426000000,0.000051738000000,0.000058834000000,0.000026256500000,0.000046983000000,0.000048167000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000160760000000,0.000169056000000,0.000204217000000,0.012443219000000,0.000203032000000,0.000055278000000,0.000047378000000,0.000085303000000,0.000129945000000,0.000028232000000,0.000447180000000 +0.000019145000000,0.010998084000000,0.000118093000000,0.000039871000000,0.000049367500000,0.000042242000000,0.000026651500000,0.000118094000000,0.000047378000000,0.000021911000000,0.000039476000000,0.000150883000000,0.000161155000000,0.000171822000000,0.000169847000000,0.011422776000000,0.000201452000000,0.000055279000000,0.000046587000000,0.000082933000000,0.000157994000000,0.000028232000000,0.000436513000000 +0.000017763000000,0.011466627000000,0.000129551000000,0.000040661000000,0.000025269000000,0.000041451000000,0.000026652000000,0.000046982000000,0.000048562000000,0.000022898500000,0.000039081000000,0.000158785000000,0.000161155000000,0.000171032000000,0.000169451000000,0.011521541000000,0.000237797000000,0.000055673000000,0.000046588000000,0.000084118000000,0.000131130000000,0.000028231500000,0.000435723000000 +0.000017762500000,0.011103567000000,0.000185254000000,0.000043032000000,0.000024873500000,0.000043032000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000022701000000,0.000039476000000,0.000119674000000,0.000199871000000,0.000357106000000,0.000169057000000,0.012112948000000,0.000201451000000,0.000055674000000,0.000046587000000,0.000082143000000,0.000128365000000,0.000028232000000,0.000496957000000 +0.000017960500000,0.011872356000000,0.000114538000000,0.000039871000000,0.000016578000000,0.000041452000000,0.000026651500000,0.000047378000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000161155000000,0.000253599000000,0.000169451000000,0.011702480000000,0.000201847000000,0.000055278000000,0.000047378000000,0.000085698000000,0.000131525000000,0.000028232000000,0.000435327000000 +0.000018553000000,0.011267911000000,0.000128760000000,0.000042242000000,0.000015590000000,0.000042241000000,0.000026454500000,0.000047377000000,0.000049353000000,0.000023096500000,0.000039081000000,0.000114933000000,0.000161155000000,0.000186439000000,0.000242538000000,0.011384850000000,0.000198291000000,0.000054884000000,0.000045797000000,0.000083328000000,0.000132711000000,0.000028231500000,0.000435327000000 +0.000017960000000,0.011443714000000,0.000118489000000,0.000040266000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000046192000000,0.000022306000000,0.000039476000000,0.000115723000000,0.000160365000000,0.000189994000000,0.000170242000000,0.011922529000000,0.000345254000000,0.000055278000000,0.000046192000000,0.000088069000000,0.000128365000000,0.000028232000000,0.000477599000000 +0.000017763000000,0.011745936000000,0.000129550000000,0.000039871000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000048168000000,0.000022108500000,0.000039081000000,0.000189600000000,0.000162341000000,0.000171032000000,0.000170241000000,0.012449935000000,0.000215674000000,0.000054884000000,0.000045797000000,0.000084513000000,0.000131921000000,0.000028232000000,0.000435723000000 +0.000017762500000,0.011661393000000,0.000118489000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000047377000000,0.000046587000000,0.000021911000000,0.000039476000000,0.000116513000000,0.000307327000000,0.000170636000000,0.000168267000000,0.011860109000000,0.000203032000000,0.000055674000000,0.000045797000000,0.000088858000000,0.000129945000000,0.000046207000000,0.000412809000000 +0.000018355500000,0.011653097000000,0.000149303000000,0.000043031000000,0.000015392500000,0.000042242000000,0.000026059000000,0.000047772000000,0.000047773000000,0.000022306000000,0.000038686000000,0.000116513000000,0.000163525000000,0.000169846000000,0.000168661000000,0.011450035000000,0.000237402000000,0.000054883000000,0.000046587000000,0.000084514000000,0.000130735000000,0.000028232000000,0.000444414000000 +0.000017763000000,0.011489147000000,0.000128760000000,0.000040266000000,0.000016380500000,0.000041452000000,0.000026651500000,0.000046983000000,0.000045797000000,0.000022306000000,0.000039081000000,0.000116513000000,0.000160365000000,0.000170241000000,0.000214093000000,0.011750677000000,0.000201452000000,0.000055279000000,0.000046192000000,0.000120463000000,0.000186044000000,0.000028232000000,0.000425451000000 +0.000017960500000,0.011086183000000,0.000118094000000,0.000039871000000,0.000015589500000,0.000041846000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000023096000000,0.000039081000000,0.000115327000000,0.000161550000000,0.000168266000000,0.000170241000000,0.011664554000000,0.000201056000000,0.000055673000000,0.000084513000000,0.000082933000000,0.000127180000000,0.000028231500000,0.000489056000000 +0.000019145500000,0.011548800000000,0.000112957000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000047392000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116514000000,0.000160760000000,0.000170637000000,0.000169057000000,0.011948997000000,0.000198291000000,0.000055279000000,0.000075032000000,0.000083328000000,0.000132316000000,0.000028232000000,0.000405303000000 +0.000036528000000,0.011274233000000,0.000129551000000,0.000039871000000,0.000015590000000,0.000042636000000,0.000026257000000,0.000046587000000,0.000048168000000,0.000023096000000,0.000055278000000,0.000111377000000,0.000197896000000,0.000170637000000,0.000168661000000,0.011414085000000,0.000239377000000,0.000056464000000,0.000047377000000,0.000084118000000,0.000134291000000,0.000044824500000,0.000443624000000 +0.000017960500000,0.011217739000000,0.000113352000000,0.000042637000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046588000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000152859000000,0.000160760000000,0.000173402000000,0.000188019000000,0.011581195000000,0.000215674000000,0.000056068000000,0.000045797000000,0.000083723000000,0.000129550000000,0.000029812000000,0.000408858000000 +0.000018355500000,0.011030875000000,0.000236217000000,0.000043032000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000047772000000,0.000048168000000,0.000022701500000,0.000039477000000,0.000117698000000,0.000162735000000,0.000207773000000,0.000170242000000,0.012146923000000,0.000201451000000,0.000055674000000,0.000046587000000,0.000085304000000,0.000165106000000,0.000036528500000,0.000444810000000 +0.000018553000000,0.011097641000000,0.000318785000000,0.000076217000000,0.000024281500000,0.000041452000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000022306000000,0.000039081000000,0.000113352000000,0.000160365000000,0.000172217000000,0.000171032000000,0.013326182000000,0.000203426000000,0.000056069000000,0.000046982000000,0.000084118000000,0.000132316000000,0.000028232000000,0.000412414000000 +0.000018750500000,0.012805886000000,0.000125204000000,0.000040267000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046983000000,0.000083723000000,0.000022306000000,0.000039081000000,0.000114933000000,0.000162340000000,0.000171031000000,0.000168661000000,0.012397787000000,0.000235031000000,0.000055278000000,0.000046982000000,0.000084118000000,0.000130340000000,0.000028232000000,0.000611525000000 +0.000018158000000,0.011588306000000,0.000128365000000,0.000039871000000,0.000016380000000,0.000078588000000,0.000026256500000,0.000066735000000,0.000046193000000,0.000040676000000,0.000039477000000,0.000114933000000,0.000199081000000,0.000169451000000,0.000167871000000,0.012223961000000,0.000201846000000,0.000056069000000,0.000045402000000,0.000084118000000,0.000133501000000,0.000028232000000,0.000431772000000 +0.000017762500000,0.011221690000000,0.000162736000000,0.000039871000000,0.000015590000000,0.000042636000000,0.000026651500000,0.000050143000000,0.000047377000000,0.000022108500000,0.000040266000000,0.000098736000000,0.000161945000000,0.000171822000000,0.000216069000000,0.011713146000000,0.000201451000000,0.000055278000000,0.000046193000000,0.000161550000000,0.000165106000000,0.000028231500000,0.000481945000000 +0.000018948000000,0.011350875000000,0.000129550000000,0.000039476000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000060414000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000172216000000,0.000161945000000,0.000172217000000,0.000169451000000,0.011719467000000,0.000201847000000,0.000054884000000,0.000047772000000,0.000083723000000,0.000129155000000,0.000028232000000,0.000406883000000 +0.000018158000000,0.011531418000000,0.000118488000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000047378000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000160760000000,0.000171822000000,0.000170241000000,0.011668504000000,0.000276908000000,0.000054883000000,0.000045402000000,0.000083723000000,0.000131526000000,0.000028232000000,0.000473648000000 +0.000018947500000,0.011132801000000,0.000131920000000,0.000039871000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000101896000000,0.000160760000000,0.000173402000000,0.000170636000000,0.011453195000000,0.000196711000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000131920000000,0.000037910500000,0.000410834000000 +0.000018158000000,0.012022874000000,0.000127970000000,0.000039871000000,0.000015589500000,0.000041451000000,0.000027047000000,0.000047377000000,0.000047773000000,0.000022503500000,0.000038686000000,0.000114933000000,0.000201057000000,0.000169846000000,0.000171031000000,0.011775566000000,0.000201452000000,0.000054883000000,0.000045402000000,0.000087279000000,0.000127970000000,0.000053911000000,0.000406488000000 +0.000018355500000,0.011210233000000,0.000173797000000,0.000042637000000,0.000015392500000,0.000041452000000,0.000026849000000,0.000047377000000,0.000047377000000,0.000022503500000,0.000039082000000,0.000109007000000,0.000165106000000,0.000171426000000,0.000205797000000,0.011906331000000,0.000202636000000,0.000055279000000,0.000046192000000,0.000084908000000,0.000165896000000,0.000028232000000,0.000485106000000 +0.000018157500000,0.011284899000000,0.000155229000000,0.000042637000000,0.000016380000000,0.000041846000000,0.000026651500000,0.000046983000000,0.000046982000000,0.000022108500000,0.000039476000000,0.000109402000000,0.000163920000000,0.000169056000000,0.000169451000000,0.011974281000000,0.000236612000000,0.000055278000000,0.000045402000000,0.000082933000000,0.000132315000000,0.000028232000000,0.000410044000000 +0.000018355500000,0.011079467000000,0.000129550000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046587000000,0.000047377000000,0.000022108500000,0.000039871000000,0.000116118000000,0.000161550000000,0.000173797000000,0.000168266000000,0.011883813000000,0.000196316000000,0.000056069000000,0.000046192000000,0.000084908000000,0.000129551000000,0.000028231500000,0.000493007000000 +0.000018158000000,0.011016258000000,0.000121649000000,0.000042636000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000046982000000,0.000047773000000,0.000022503500000,0.000038686000000,0.000151279000000,0.000161945000000,0.000171032000000,0.000169452000000,0.011475714000000,0.000201057000000,0.000054489000000,0.000046192000000,0.000118884000000,0.000135081000000,0.000028232000000,0.000419130000000 +0.000017762500000,0.011244998000000,0.000129550000000,0.000043032000000,0.000015590000000,0.000042636000000,0.000043441500000,0.000046983000000,0.000046587000000,0.000022701000000,0.000039081000000,0.000099130000000,0.000199476000000,0.000170636000000,0.000170241000000,0.011916998000000,0.000203427000000,0.000055278000000,0.000082537000000,0.000086884000000,0.000129945000000,0.000028232000000,0.000540414000000 +0.000018553000000,0.011710380000000,0.000133895000000,0.000040267000000,0.000015590000000,0.000041452000000,0.000034355000000,0.000047378000000,0.000047378000000,0.000021911000000,0.000039476000000,0.000116513000000,0.000162340000000,0.000173007000000,0.000167476000000,0.011529837000000,0.000272958000000,0.000055674000000,0.000046192000000,0.000086488000000,0.000156415000000,0.000028034000000,0.000421896000000 +0.000018553000000,0.011084998000000,0.000209352000000,0.000040267000000,0.000015589500000,0.000041451000000,0.000026652000000,0.000047377000000,0.000047377000000,0.000022898500000,0.000039082000000,0.000115328000000,0.000165106000000,0.000173007000000,0.000170241000000,0.012256356000000,0.000199081000000,0.000055278000000,0.000045797000000,0.000084513000000,0.000130735000000,0.000028232000000,0.000445204000000 +0.000018552500000,0.011296356000000,0.000129550000000,0.000042637000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000047378000000,0.000046983000000,0.000022108500000,0.000038686000000,0.000103871000000,0.000161155000000,0.000170242000000,0.000169846000000,0.011608059000000,0.000195131000000,0.000056069000000,0.000046192000000,0.000089254000000,0.000131526000000,0.000028232000000,0.000407278000000 +0.000018355500000,0.011308998000000,0.000129155000000,0.000042636000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000046983000000,0.000048562000000,0.000022701000000,0.000074636000000,0.000116514000000,0.000160760000000,0.000170242000000,0.000169451000000,0.013232552000000,0.000201451000000,0.000055279000000,0.000046982000000,0.000085303000000,0.000133895000000,0.000028231500000,0.000479575000000 +0.000018158000000,0.013835416000000,0.000127970000000,0.000039476000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000047377000000,0.000046192000000,0.000022898500000,0.000039476000000,0.000145352000000,0.000163130000000,0.000170637000000,0.000204611000000,0.012029985000000,0.000289945000000,0.000056069000000,0.000045402000000,0.000085304000000,0.000131130000000,0.000028232000000,0.000411229000000 +0.000018552500000,0.011606875000000,0.000131921000000,0.000040661000000,0.000016380000000,0.000042637000000,0.000026651500000,0.000046982000000,0.000045797000000,0.000023491500000,0.000039081000000,0.000109007000000,0.000160365000000,0.000171822000000,0.000170241000000,0.011615961000000,0.000196711000000,0.000054884000000,0.000046193000000,0.000084118000000,0.000174982000000,0.000028232000000,0.000485106000000 +0.000027639500000,0.011299121000000,0.000128760000000,0.000043032000000,0.000016380000000,0.000042242000000,0.000026849500000,0.000046983000000,0.000082933000000,0.000022701000000,0.000039081000000,0.000107822000000,0.000163921000000,0.000170242000000,0.000169056000000,0.013112454000000,0.000201451000000,0.000054883000000,0.000046587000000,0.000084908000000,0.000131130000000,0.000028034000000,0.000407278000000 +0.000055688500000,0.011875516000000,0.000162736000000,0.000040266000000,0.000016380000000,0.000042241000000,0.000025861500000,0.000081747000000,0.000047772000000,0.000021910500000,0.000039871000000,0.000154044000000,0.000161945000000,0.000169846000000,0.000188415000000,0.012282429000000,0.000203032000000,0.000055674000000,0.000045007000000,0.000133501000000,0.000135476000000,0.000028232000000,0.000481945000000 +0.000051738000000,0.011380899000000,0.000127575000000,0.000042637000000,0.000016380000000,0.000060809000000,0.000026454000000,0.000050143000000,0.000047377000000,0.000043244500000,0.000039476000000,0.000117698000000,0.000161945000000,0.000169847000000,0.000187229000000,0.011830479000000,0.000542785000000,0.000055278000000,0.000045798000000,0.000084513000000,0.000131920000000,0.000038108500000,0.000415574000000 +0.000053713000000,0.011397887000000,0.000130340000000,0.000039871000000,0.000015590000000,0.000058834000000,0.000026651500000,0.000046983000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000115328000000,0.000211328000000,0.000173798000000,0.000205797000000,0.011830480000000,0.000235822000000,0.000055279000000,0.000045797000000,0.000084513000000,0.000129945000000,0.000044429500000,0.000443624000000 +0.000051935500000,0.013136157000000,0.000129155000000,0.000039871000000,0.000016380500000,0.000041846000000,0.000027047000000,0.000046982000000,0.000047773000000,0.000022503500000,0.000040266000000,0.000122834000000,0.000160760000000,0.000170242000000,0.000171822000000,0.011734084000000,0.000237797000000,0.000055278000000,0.000046192000000,0.000084513000000,0.000129945000000,0.000034947500000,0.000408464000000 +0.000035145500000,0.012222775000000,0.000131525000000,0.000040661000000,0.000015589500000,0.000043032000000,0.000026454000000,0.000046587000000,0.000048167000000,0.000022108500000,0.000039871000000,0.000116514000000,0.000163920000000,0.000170637000000,0.000168266000000,0.011393936000000,0.000203032000000,0.000055279000000,0.000047378000000,0.000085303000000,0.000132711000000,0.000028232000000,0.000784957000000 +0.000041466500000,0.011689838000000,0.000131131000000,0.000042636000000,0.000034750500000,0.000042637000000,0.000026849000000,0.000046587000000,0.000046193000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000160364000000,0.000170241000000,0.000170242000000,0.011742380000000,0.000201056000000,0.000056069000000,0.000045007000000,0.000083328000000,0.000131131000000,0.000028232000000,0.000406093000000 +0.000019935500000,0.011143467000000,0.000149698000000,0.000040661000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046192000000,0.000045797000000,0.000022701000000,0.000039082000000,0.000109402000000,0.000201451000000,0.000169846000000,0.000170241000000,0.011510084000000,0.000201846000000,0.000055278000000,0.000045007000000,0.000084908000000,0.000168661000000,0.000028232000000,0.000410834000000 +0.000019738000000,0.010936455000000,0.000130736000000,0.000039871000000,0.000016380000000,0.000041452000000,0.000028232000000,0.000046983000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000110982000000,0.000161550000000,0.000173797000000,0.000186044000000,0.012016158000000,0.000249253000000,0.000055279000000,0.000046193000000,0.000084908000000,0.000133106000000,0.000028232000000,0.000411624000000 +0.000025664000000,0.011269097000000,0.000115328000000,0.000041057000000,0.000015590000000,0.000042636000000,0.000044626500000,0.000046587000000,0.000048562000000,0.000021911000000,0.000039871000000,0.000102291000000,0.000164711000000,0.000169451000000,0.000169452000000,0.011388010000000,0.000201451000000,0.000055278000000,0.000047377000000,0.000102686000000,0.000131525000000,0.000028232000000,0.000444414000000 +0.000017762500000,0.011278578000000,0.000131131000000,0.000039872000000,0.000015787500000,0.000042637000000,0.000026652000000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039477000000,0.000118489000000,0.000161155000000,0.000171427000000,0.000169451000000,0.011612010000000,0.000201451000000,0.000055674000000,0.000046983000000,0.000084118000000,0.000128760000000,0.000028232000000,0.000405303000000 +0.000018750500000,0.011265541000000,0.000129945000000,0.000043032000000,0.000015590000000,0.000043427000000,0.000026651500000,0.000047378000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000125994000000,0.000160760000000,0.000170242000000,0.000170637000000,0.011676405000000,0.000201847000000,0.000055278000000,0.000101896000000,0.000085303000000,0.000131130000000,0.000028231500000,0.000448760000000 +0.000017763000000,0.011050628000000,0.000129155000000,0.000041846000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000046982000000,0.000046587000000,0.000022503500000,0.000038686000000,0.000103476000000,0.000206982000000,0.000169847000000,0.000206192000000,0.013180009000000,0.000273353000000,0.000061205000000,0.000045797000000,0.000082933000000,0.000167476000000,0.000028232000000,0.000406488000000 +0.000036725500000,0.011423171000000,0.000199476000000,0.000039871000000,0.000016577500000,0.000043426000000,0.000026652000000,0.000046587000000,0.000046588000000,0.000022503500000,0.000038686000000,0.000117303000000,0.000163526000000,0.000220415000000,0.000169847000000,0.011834430000000,0.000203032000000,0.000054883000000,0.000046192000000,0.000088068000000,0.000133106000000,0.000028034500000,0.000446390000000 +0.000018750500000,0.011625047000000,0.000129550000000,0.000040661000000,0.000016380000000,0.000043822000000,0.000026651500000,0.000046982000000,0.000047772000000,0.000022108500000,0.000039871000000,0.000114538000000,0.000163920000000,0.000169847000000,0.000169451000000,0.011816257000000,0.000201846000000,0.000055674000000,0.000046192000000,0.000084118000000,0.000129946000000,0.000028231500000,0.000408464000000 +0.000017763000000,0.011160060000000,0.000110587000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046588000000,0.000047773000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000163920000000,0.000170637000000,0.000167871000000,0.011577640000000,0.000200266000000,0.000056464000000,0.000047377000000,0.000085303000000,0.000130735000000,0.000028232000000,0.000447575000000 +0.000017763000000,0.011158085000000,0.000118094000000,0.000040266000000,0.000016380000000,0.000041057000000,0.000026454500000,0.000046982000000,0.000046192000000,0.000023096000000,0.000039082000000,0.000114143000000,0.000165501000000,0.000171426000000,0.000169451000000,0.011839566000000,0.000262291000000,0.000055278000000,0.000046192000000,0.000083328000000,0.000131921000000,0.000028232000000,0.000405303000000 +0.000019145500000,0.011209047000000,0.000118488000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000047377000000,0.000046982000000,0.000022898500000,0.000107427000000,0.000135081000000,0.000198291000000,0.000171426000000,0.000299031000000,0.011329542000000,0.000203031000000,0.000055279000000,0.000045007000000,0.000082143000000,0.000167871000000,0.000046207000000,0.000447969000000 +0.000018158000000,0.011539714000000,0.000113352000000,0.000039871000000,0.000016182500000,0.000041452000000,0.000026849000000,0.000047378000000,0.000063179000000,0.000022898500000,0.000073846000000,0.000357501000000,0.000163131000000,0.000173402000000,0.000274142000000,0.011435418000000,0.000200661000000,0.000055278000000,0.000045007000000,0.000179328000000,0.000131525000000,0.000028232000000,0.000500908000000 +0.000017762500000,0.011028109000000,0.000201057000000,0.000087673000000,0.000016380000000,0.000042242000000,0.000026454500000,0.000096365000000,0.000060809000000,0.000022701000000,0.000054884000000,0.000162340000000,0.000161945000000,0.000173007000000,0.000182883000000,0.011841146000000,0.000238192000000,0.000055674000000,0.000046587000000,0.000263476000000,0.000131920000000,0.000028231500000,0.000483130000000 +0.000017763000000,0.011604109000000,0.000128365000000,0.000041056000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000074242000000,0.000047378000000,0.000032380000000,0.000041847000000,0.000131526000000,0.000160760000000,0.000170241000000,0.000169847000000,0.011773986000000,0.000201056000000,0.000055278000000,0.000045007000000,0.000185649000000,0.000129155000000,0.000028232000000,0.000408068000000 +0.000019145500000,0.011801640000000,0.000129945000000,0.000043032000000,0.000015589500000,0.000042242000000,0.000026454000000,0.000047772000000,0.000047772000000,0.000023096000000,0.000042241000000,0.000151673000000,0.000164316000000,0.000169846000000,0.000206982000000,0.011487565000000,0.000203031000000,0.000055674000000,0.000046587000000,0.000173797000000,0.000129551000000,0.000028232000000,0.000452710000000 +0.000017763000000,0.011169541000000,0.000130341000000,0.000043031000000,0.000016182500000,0.000088069000000,0.000026256500000,0.000047377000000,0.000047377000000,0.000022701000000,0.000052513000000,0.000114933000000,0.000211723000000,0.000173007000000,0.000170242000000,0.011367072000000,0.000201451000000,0.000056069000000,0.000046192000000,0.000182883000000,0.000129945000000,0.000028232000000,0.000411229000000 +0.000017762500000,0.011075912000000,0.000128760000000,0.000039871000000,0.000015590000000,0.000042636000000,0.000026652000000,0.000046588000000,0.000048167000000,0.000023491000000,0.000039081000000,0.000110192000000,0.000160365000000,0.000169847000000,0.000168266000000,0.011591862000000,0.000237797000000,0.000054883000000,0.000046192000000,0.000178537000000,0.000130736000000,0.000028232000000,0.000485895000000 +0.000018948000000,0.011261986000000,0.000128760000000,0.000042637000000,0.000015392500000,0.000041451000000,0.000026651500000,0.000046982000000,0.000047378000000,0.000022108500000,0.000039081000000,0.000103081000000,0.000160365000000,0.000171822000000,0.000171032000000,0.012053689000000,0.000201451000000,0.000055279000000,0.000046192000000,0.000216859000000,0.000131525000000,0.000028232000000,0.000411624000000 +0.000017763000000,0.011248159000000,0.000148908000000,0.000043032000000,0.000016182500000,0.000042242000000,0.000044429500000,0.000046192000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000114932000000,0.000165106000000,0.000170242000000,0.000169846000000,0.011591467000000,0.000203427000000,0.000054488000000,0.000046192000000,0.000229501000000,0.000131921000000,0.000028034500000,0.000449154000000 +0.000018355000000,0.011472554000000,0.000129945000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000103082000000,0.000160760000000,0.000173402000000,0.000199871000000,0.012525392000000,0.000200661000000,0.000055279000000,0.000046193000000,0.000178537000000,0.000171427000000,0.000028231500000,0.000407278000000 +0.000017763000000,0.011306233000000,0.000126390000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046983000000,0.000046982000000,0.000023491500000,0.000038686000000,0.000114932000000,0.000199476000000,0.000171031000000,0.000169452000000,0.013269688000000,0.000238192000000,0.000055673000000,0.000047377000000,0.000105452000000,0.000132315000000,0.000028429500000,0.000441649000000 +0.000018158000000,0.011226035000000,0.000125995000000,0.000042241000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048563000000,0.000023096000000,0.000039871000000,0.000151674000000,0.000162340000000,0.000170241000000,0.000169847000000,0.012348010000000,0.000200661000000,0.000055674000000,0.000079773000000,0.000115723000000,0.000130735000000,0.000028232000000,0.000417155000000 +0.000018355500000,0.010963319000000,0.000127575000000,0.000042637000000,0.000016380500000,0.000042636000000,0.000027047000000,0.000047377000000,0.000045797000000,0.000022503500000,0.000039871000000,0.000107032000000,0.000160760000000,0.000169846000000,0.000169451000000,0.012056850000000,0.000200266000000,0.000055279000000,0.000048168000000,0.000090439000000,0.000131130000000,0.000028034000000,0.000444809000000 +0.000017763000000,0.011421985000000,0.000125599000000,0.000039872000000,0.000015985000000,0.000042637000000,0.000027244000000,0.000046983000000,0.000049748000000,0.000022306000000,0.000039477000000,0.000116908000000,0.000161550000000,0.000171032000000,0.000206982000000,0.011467812000000,0.000201451000000,0.000055278000000,0.000047377000000,0.000091625000000,0.000137057000000,0.000028232000000,0.000406094000000 +0.000018750500000,0.011297146000000,0.000194340000000,0.000040267000000,0.000016578000000,0.000042242000000,0.000026652000000,0.000046983000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000102291000000,0.000160365000000,0.000170636000000,0.000169847000000,0.011745936000000,0.000256760000000,0.000055674000000,0.000045797000000,0.000108612000000,0.000164710000000,0.000028232000000,0.000444414000000 +0.000018355500000,0.011208653000000,0.000118093000000,0.000042242000000,0.000024281500000,0.000041451000000,0.000027244000000,0.000046587000000,0.000046587000000,0.000022898500000,0.000039476000000,0.000114933000000,0.000290735000000,0.000171031000000,0.000170636000000,0.011564998000000,0.000201056000000,0.000055673000000,0.000046587000000,0.000206983000000,0.000131920000000,0.000028231500000,0.000407278000000 +0.000019145500000,0.011020208000000,0.000129155000000,0.000039476000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000047377000000,0.000021911000000,0.000058044000000,0.000116908000000,0.000192365000000,0.000203822000000,0.000169452000000,0.011532602000000,0.000202637000000,0.000055279000000,0.000046982000000,0.000229896000000,0.000132316000000,0.000037121000000,0.000447970000000 +0.000019145500000,0.011939121000000,0.000119279000000,0.000042241000000,0.000015589500000,0.000041847000000,0.000027047000000,0.000046588000000,0.000046983000000,0.000022898500000,0.000039871000000,0.000118489000000,0.000160760000000,0.000170637000000,0.000171031000000,0.011919763000000,0.000201452000000,0.000055278000000,0.000046982000000,0.000152068000000,0.000133501000000,0.000028231500000,0.000410044000000 +0.000028824500000,0.010835319000000,0.000127180000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000026651500000,0.000046587000000,0.000083328000000,0.000022898500000,0.000038686000000,0.000107427000000,0.000160365000000,0.000169847000000,0.000242143000000,0.011628208000000,0.000250439000000,0.000055279000000,0.000046192000000,0.000149698000000,0.000130735000000,0.000028232000000,0.000444414000000 +0.000018158000000,0.011242628000000,0.000112958000000,0.000040266000000,0.000016380000000,0.000041847000000,0.000026652000000,0.000080957000000,0.000045797000000,0.000023096000000,0.000038686000000,0.000105056000000,0.000199081000000,0.000178538000000,0.000170637000000,0.011778727000000,0.000201452000000,0.000055279000000,0.000047773000000,0.000090044000000,0.000175772000000,0.000028232000000,0.000409253000000 +0.000018158000000,0.011419220000000,0.000151278000000,0.000040266000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000062785000000,0.000048168000000,0.000023096500000,0.000039081000000,0.000102686000000,0.000206587000000,0.000172611000000,0.000170241000000,0.011566183000000,0.000202637000000,0.000055674000000,0.000045797000000,0.000168266000000,0.000131131000000,0.000028232000000,0.000479180000000 +0.000018750000000,0.011581590000000,0.000116513000000,0.000042241000000,0.000016775000000,0.000042241000000,0.000026454000000,0.000046587000000,0.000047772000000,0.000022898500000,0.000039082000000,0.000118883000000,0.000176957000000,0.000172612000000,0.000169846000000,0.011663369000000,0.000197106000000,0.000055674000000,0.000046983000000,0.000090439000000,0.000130340000000,0.000028429500000,0.000410834000000 +0.000019145500000,0.011091714000000,0.000112958000000,0.000039871000000,0.000016380000000,0.000041847000000,0.000026652000000,0.000046983000000,0.000046588000000,0.000040083500000,0.000039476000000,0.000099131000000,0.000160760000000,0.000170637000000,0.000169846000000,0.011900010000000,0.000237402000000,0.000055278000000,0.000046192000000,0.000091229000000,0.000129155000000,0.000028232000000,0.000425846000000 +0.000018750500000,0.011206677000000,0.000110192000000,0.000039871000000,0.000016380000000,0.000041846000000,0.000026256500000,0.000046587000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000116513000000,0.000161945000000,0.000169847000000,0.000169451000000,0.011794134000000,0.000200662000000,0.000055279000000,0.000045797000000,0.000089649000000,0.000129945000000,0.000028232000000,0.000407278000000 +0.000017763000000,0.011356010000000,0.000124020000000,0.000039871000000,0.000015590000000,0.000060809000000,0.000045614500000,0.000046587000000,0.000048563000000,0.000021911000000,0.000039082000000,0.000189599000000,0.000197106000000,0.000171031000000,0.000173402000000,0.011358381000000,0.000201056000000,0.000054883000000,0.000046588000000,0.000090439000000,0.000131526000000,0.000028231500000,0.000425846000000 +0.000018750000000,0.011100800000000,0.000110587000000,0.000039871000000,0.000015590000000,0.000058835000000,0.000034750000000,0.000047377000000,0.000048167000000,0.000022306000000,0.000038686000000,0.000101896000000,0.000162340000000,0.000169451000000,0.000171031000000,0.011481245000000,0.000201451000000,0.000055674000000,0.000046587000000,0.000089649000000,0.000134291000000,0.000028232000000,0.000412809000000 +0.000019145500000,0.011326380000000,0.000165106000000,0.000042637000000,0.000016380000000,0.000042241000000,0.000027047000000,0.000047378000000,0.000045798000000,0.000022898500000,0.000039476000000,0.000109797000000,0.000159970000000,0.000173402000000,0.000170241000000,0.012361442000000,0.000291920000000,0.000073451000000,0.000046983000000,0.000089649000000,0.000148119000000,0.000028232000000,0.000516316000000 +0.000018355500000,0.011194035000000,0.000131130000000,0.000043427000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000163130000000,0.000170242000000,0.000248069000000,0.013603910000000,0.000201056000000,0.000073452000000,0.000065550000000,0.000089254000000,0.000132315000000,0.000028231500000,0.000442439000000 +0.000018355500000,0.011120159000000,0.000129550000000,0.000040266000000,0.000016380000000,0.000042637000000,0.000026849000000,0.000047377000000,0.000048563000000,0.000022306000000,0.000039871000000,0.000116908000000,0.000160365000000,0.000173402000000,0.000170241000000,0.011992060000000,0.000201056000000,0.000103476000000,0.000069105000000,0.000146143000000,0.000216859000000,0.000028232000000,0.000404513000000 +0.000017960500000,0.011163221000000,0.000127970000000,0.000039871000000,0.000015590000000,0.000041846000000,0.000026257000000,0.000046983000000,0.000046587000000,0.000022108500000,0.000039476000000,0.000104266000000,0.000211723000000,0.000172217000000,0.000169846000000,0.011825344000000,0.000200266000000,0.000106241000000,0.000063970000000,0.000093600000000,0.000130736000000,0.000028232000000,0.000446784000000 +0.000018158000000,0.011422381000000,0.000114538000000,0.000040266000000,0.000016775000000,0.000043032000000,0.000027046500000,0.000046982000000,0.000048168000000,0.000022701000000,0.000039081000000,0.000118489000000,0.000163130000000,0.000169846000000,0.000171032000000,0.011808356000000,0.000285204000000,0.000057648000000,0.000046192000000,0.000089254000000,0.000133896000000,0.000028232000000,0.000411229000000 +0.000018552500000,0.011181393000000,0.000129550000000,0.000040661000000,0.000016182500000,0.000042242000000,0.000026651500000,0.000046982000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000278883000000,0.000161550000000,0.000169452000000,0.000168661000000,0.011446084000000,0.000252019000000,0.000069500000000,0.000045797000000,0.000088859000000,0.000131130000000,0.000046207500000,0.000479970000000 +0.000018750500000,0.010996505000000,0.000168661000000,0.000040266000000,0.000015787500000,0.000041451000000,0.000026651500000,0.000047377000000,0.000047378000000,0.000022503500000,0.000038686000000,0.000103476000000,0.000161550000000,0.000170637000000,0.000268612000000,0.011969146000000,0.000201056000000,0.000055674000000,0.000045402000000,0.000087674000000,0.000163921000000,0.000028232000000,0.000410044000000 +0.000018158000000,0.011454381000000,0.000130340000000,0.000040266000000,0.000015787000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000048562000000,0.000022898500000,0.000038686000000,0.000116118000000,0.000160760000000,0.000171032000000,0.000170242000000,0.011734874000000,0.000221205000000,0.000055674000000,0.000046982000000,0.000089254000000,0.000131920000000,0.000028232000000,0.000459032000000 +0.000018355000000,0.011176652000000,0.000130736000000,0.000039476000000,0.000015590000000,0.000042637000000,0.000026454500000,0.000047377000000,0.000046983000000,0.000022898500000,0.000038686000000,0.000116118000000,0.000196315000000,0.000169847000000,0.000168266000000,0.011869591000000,0.000202241000000,0.000055279000000,0.000046587000000,0.000089254000000,0.000127179000000,0.000028232000000,0.000409649000000 +0.000019145500000,0.010928950000000,0.000128760000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000023096500000,0.000039081000000,0.000117304000000,0.000164711000000,0.000171822000000,0.000170241000000,0.011482035000000,0.000201451000000,0.000055674000000,0.000047377000000,0.000088858000000,0.000132316000000,0.000028232000000,0.000459427000000 +0.000019145500000,0.011105146000000,0.000129945000000,0.000043032000000,0.000016380000000,0.000041847000000,0.000026454000000,0.000046983000000,0.000082143000000,0.000022503500000,0.000077797000000,0.000139031000000,0.000165501000000,0.000172612000000,0.000284019000000,0.011580406000000,0.000201452000000,0.000055278000000,0.000045402000000,0.000131130000000,0.000127575000000,0.000028232000000,0.000408859000000 +0.000017763000000,0.011377739000000,0.000129550000000,0.000043032000000,0.000015787500000,0.000041451000000,0.000026256500000,0.000101896000000,0.000048563000000,0.000022503500000,0.000078982000000,0.000118094000000,0.000163525000000,0.000172612000000,0.000396612000000,0.011545244000000,0.000236217000000,0.000055674000000,0.000047378000000,0.000149699000000,0.000178142000000,0.000028232000000,0.000480365000000 +0.000018552500000,0.011436603000000,0.000154044000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000062784000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000116513000000,0.000161550000000,0.000169057000000,0.000168266000000,0.011841541000000,0.000197106000000,0.000055674000000,0.000046587000000,0.000082538000000,0.000127179000000,0.000028232000000,0.000409254000000 +0.000018750500000,0.011342974000000,0.000130735000000,0.000078192000000,0.000015589500000,0.000042242000000,0.000026256500000,0.000047378000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000102291000000,0.000198686000000,0.000172217000000,0.000206192000000,0.011531813000000,0.000201451000000,0.000055278000000,0.000046193000000,0.000084908000000,0.000129550000000,0.000028231500000,0.000450735000000 +0.000018355500000,0.011064060000000,0.000131525000000,0.000043031000000,0.000036331000000,0.000041846000000,0.000044627000000,0.000046982000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000117303000000,0.000164316000000,0.000170241000000,0.000170241000000,0.011650727000000,0.000200661000000,0.000056069000000,0.000045402000000,0.000084514000000,0.000131921000000,0.000028232000000,0.000412414000000 +0.000037515500000,0.011213789000000,0.000117303000000,0.000040266000000,0.000017367500000,0.000042637000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000040478500000,0.000038686000000,0.000116909000000,0.000162340000000,0.000174588000000,0.000169057000000,0.011271862000000,0.000237007000000,0.000090439000000,0.000046982000000,0.000086093000000,0.000131921000000,0.000028232000000,0.000445994000000 +0.000026849000000,0.011804800000000,0.000129550000000,0.000040661000000,0.000022108500000,0.000042242000000,0.000027046500000,0.000046587000000,0.000047378000000,0.000024083500000,0.000039476000000,0.000116908000000,0.000165106000000,0.000205402000000,0.000169451000000,0.012363417000000,0.000196711000000,0.000054883000000,0.000047377000000,0.000083723000000,0.000169056000000,0.000028232000000,0.000417550000000 +0.000019145500000,0.010977147000000,0.000129945000000,0.000042242000000,0.000016380000000,0.000041451000000,0.000026257000000,0.000047378000000,0.000047377000000,0.000041269000000,0.000039476000000,0.000141007000000,0.000161155000000,0.000241353000000,0.000168266000000,0.011441344000000,0.000201057000000,0.000054884000000,0.000047377000000,0.000120859000000,0.000128365000000,0.000028232000000,0.000479179000000 +0.000018158000000,0.011045097000000,0.000158785000000,0.000043032000000,0.000016380000000,0.000078588000000,0.000026651500000,0.000047377000000,0.000048563000000,0.000023886500000,0.000038686000000,0.000116908000000,0.000197106000000,0.000169847000000,0.000257945000000,0.011561837000000,0.000203032000000,0.000056069000000,0.000046587000000,0.000083328000000,0.000131920000000,0.000028034500000,0.000410043000000 +0.000018750500000,0.010940801000000,0.000118094000000,0.000039871000000,0.000015392500000,0.000041451000000,0.000026651500000,0.000047773000000,0.000048167000000,0.000023096000000,0.000039081000000,0.000120068000000,0.000163921000000,0.000171032000000,0.000167872000000,0.011604109000000,0.000213303000000,0.000055674000000,0.000045797000000,0.000083723000000,0.000131526000000,0.000028232000000,0.000412809000000 +0.000017762500000,0.011676010000000,0.000113747000000,0.000072661000000,0.000015589500000,0.000042637000000,0.000027047000000,0.000046588000000,0.000046192000000,0.000022503500000,0.000039871000000,0.000116513000000,0.000160365000000,0.000171032000000,0.000171821000000,0.012030776000000,0.000413599000000,0.000054884000000,0.000081353000000,0.000088464000000,0.000130735000000,0.000028232000000,0.000409253000000 +0.000018158000000,0.011079862000000,0.000117699000000,0.000043032000000,0.000016578000000,0.000043032000000,0.000026849000000,0.000047377000000,0.000048562000000,0.000022306000000,0.000039081000000,0.000104661000000,0.000163920000000,0.000173007000000,0.000169057000000,0.011434233000000,0.000201056000000,0.000055278000000,0.000046588000000,0.000084908000000,0.000166686000000,0.000036726000000,0.000409649000000 +0.000018948000000,0.011122924000000,0.000129155000000,0.000040661000000,0.000016380000000,0.000043427000000,0.000026257000000,0.000047377000000,0.000048168000000,0.000022306000000,0.000039081000000,0.000114933000000,0.000161945000000,0.000169451000000,0.000188809000000,0.012353145000000,0.000246884000000,0.000055279000000,0.000045402000000,0.000083723000000,0.000148908000000,0.000028231500000,0.000406093000000 +0.000018750500000,0.010903270000000,0.000129550000000,0.000043427000000,0.000015589500000,0.000041451000000,0.000026256500000,0.000047378000000,0.000047773000000,0.000023096000000,0.000039081000000,0.000117303000000,0.000189995000000,0.000169451000000,0.000169451000000,0.012292306000000,0.000201056000000,0.000055673000000,0.000045007000000,0.000084118000000,0.000129945000000,0.000028232000000,0.000617056000000 +0.000018158000000,0.012268997000000,0.000110587000000,0.000040266000000,0.000015392500000,0.000043032000000,0.000026849000000,0.000046982000000,0.000047377000000,0.000022108500000,0.000039081000000,0.000157599000000,0.000160760000000,0.000172612000000,0.000171031000000,0.012148899000000,0.000200266000000,0.000055279000000,0.000045797000000,0.000088069000000,0.000128760000000,0.000028232000000,0.000495772000000 +0.000019145500000,0.011433837000000,0.000368958000000,0.000040266000000,0.000015590000000,0.000042242000000,0.000026849500000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039871000000,0.000115328000000,0.000160760000000,0.000173007000000,0.000169057000000,0.011427912000000,0.000195920000000,0.000054883000000,0.000045798000000,0.000083723000000,0.000167081000000,0.000028231500000,0.000410044000000 +0.000018158000000,0.012504849000000,0.000170242000000,0.000208167000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000049352000000,0.000022306000000,0.000039476000000,0.000117698000000,0.000163921000000,0.000169057000000,0.000167871000000,0.011450430000000,0.000238982000000,0.000055279000000,0.000046587000000,0.000151674000000,0.000132710000000,0.000028232000000,0.000538043000000 +0.000018750000000,0.011761739000000,0.000129550000000,0.000045007000000,0.000016380000000,0.000061205000000,0.000026651500000,0.000047773000000,0.000072267000000,0.000022503500000,0.000039081000000,0.000114538000000,0.000160760000000,0.000170242000000,0.000240562000000,0.011409739000000,0.000201056000000,0.000056464000000,0.000046982000000,0.000084908000000,0.000131130000000,0.000028034500000,0.000415574000000 +0.000019145500000,0.011843121000000,0.000164315000000,0.000041847000000,0.000016577500000,0.000058834000000,0.000026849000000,0.000065945000000,0.000046983000000,0.000022898500000,0.000039081000000,0.000115328000000,0.000165105000000,0.000172217000000,0.000168661000000,0.012547516000000,0.000202241000000,0.000055278000000,0.000046587000000,0.000088464000000,0.000132315000000,0.000028232000000,0.000496167000000 +0.000017960500000,0.011169542000000,0.000127970000000,0.000039871000000,0.000015787500000,0.000056069000000,0.000027047000000,0.000107822000000,0.000047377000000,0.000022306000000,0.000075427000000,0.000102686000000,0.000161551000000,0.000169847000000,0.000170242000000,0.011507714000000,0.000201056000000,0.000055279000000,0.000046982000000,0.000088069000000,0.000128761000000,0.000028232000000,0.000430192000000 +0.000017762500000,0.011060110000000,0.000118488000000,0.000039871000000,0.000016380000000,0.000042637000000,0.000044232000000,0.000046982000000,0.000048563000000,0.000022306000000,0.000039871000000,0.000135476000000,0.000165500000000,0.000219229000000,0.000169057000000,0.011313738000000,0.000238982000000,0.000054883000000,0.000046982000000,0.000084513000000,0.000173401000000,0.000028232000000,0.000423871000000 +0.000017763000000,0.011114628000000,0.000129550000000,0.000039476000000,0.000015589500000,0.000042637000000,0.000026454000000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000117698000000,0.000160760000000,0.000173007000000,0.000168266000000,0.011602924000000,0.000201057000000,0.000055279000000,0.000048168000000,0.000083327000000,0.000130735000000,0.000028232000000,0.000483526000000 +0.000017762500000,0.011737244000000,0.000113353000000,0.000043031000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000047378000000,0.000046982000000,0.000048380000000,0.000039476000000,0.000116513000000,0.000160365000000,0.000169452000000,0.000205402000000,0.011699318000000,0.000201451000000,0.000055278000000,0.000046587000000,0.000085303000000,0.000131130000000,0.000028231500000,0.000408464000000 +0.000017763000000,0.012122825000000,0.000127575000000,0.000043032000000,0.000016380000000,0.000041452000000,0.000026849500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000163526000000,0.000173007000000,0.000168266000000,0.011795714000000,0.000197500000000,0.000056069000000,0.000047378000000,0.000085303000000,0.000130340000000,0.000028034500000,0.000494982000000 +0.000018750500000,0.010968060000000,0.000150488000000,0.000040267000000,0.000015590000000,0.000041846000000,0.000026651500000,0.000046982000000,0.000047773000000,0.000022898500000,0.000039081000000,0.000106241000000,0.000163525000000,0.000206982000000,0.000170242000000,0.011359566000000,0.000274538000000,0.000055279000000,0.000045797000000,0.000121649000000,0.000128365000000,0.000028232000000,0.000413205000000 +0.000018355500000,0.011303073000000,0.000130340000000,0.000039872000000,0.000015590000000,0.000043821000000,0.000026256500000,0.000046983000000,0.000047772000000,0.000022701000000,0.000039476000000,0.000117699000000,0.000163920000000,0.000169847000000,0.000167476000000,0.011339813000000,0.000201451000000,0.000054883000000,0.000046982000000,0.000088069000000,0.000129155000000,0.000028231500000,0.000499723000000 +0.000030207500000,0.011246973000000,0.000122044000000,0.000040662000000,0.000015590000000,0.000043427000000,0.000026849500000,0.000046983000000,0.000046587000000,0.000022701000000,0.000038686000000,0.000115328000000,0.000163130000000,0.000168661000000,0.000167871000000,0.011785837000000,0.000201846000000,0.000055674000000,0.000047377000000,0.000083328000000,0.000134291000000,0.000046405000000,0.000409254000000 +0.000017565500000,0.011481244000000,0.000130736000000,0.000039872000000,0.000015392000000,0.000058835000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000023096000000,0.000039871000000,0.000129551000000,0.000184859000000,0.000172216000000,0.000206587000000,0.011478479000000,0.000201056000000,0.000055278000000,0.000047773000000,0.000082538000000,0.000131920000000,0.000028429500000,0.000489846000000 +0.000018552500000,0.011474923000000,0.000129945000000,0.000039872000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046982000000,0.000048563000000,0.000022306000000,0.000039081000000,0.000098735000000,0.000178143000000,0.000169451000000,0.000169057000000,0.013492898000000,0.000238982000000,0.000054884000000,0.000142192000000,0.000105056000000,0.000133896000000,0.000028232000000,0.000410044000000 +0.000018750500000,0.010968850000000,0.000129155000000,0.000040662000000,0.000034158000000,0.000042637000000,0.000026652000000,0.000066341000000,0.000046587000000,0.000022503500000,0.000039872000000,0.000105452000000,0.000162735000000,0.000171427000000,0.000167476000000,0.011967171000000,0.000201452000000,0.000055278000000,0.000133896000000,0.000089649000000,0.000154835000000,0.000028232000000,0.000493402000000 +0.000018553000000,0.011224455000000,0.000153253000000,0.000040662000000,0.000016380000000,0.000042637000000,0.000026651500000,0.000063179000000,0.000046588000000,0.000022503500000,0.000038686000000,0.000116118000000,0.000161946000000,0.000173007000000,0.000169056000000,0.012303368000000,0.000201846000000,0.000056069000000,0.000116513000000,0.000090044000000,0.000132711000000,0.000028232000000,0.000411229000000 +0.000017762500000,0.011438974000000,0.000128760000000,0.000040661000000,0.000015392000000,0.000041451000000,0.000026256500000,0.000060019000000,0.000046587000000,0.000022108500000,0.000039081000000,0.000145748000000,0.000160365000000,0.000174982000000,0.000168266000000,0.012473244000000,0.000201056000000,0.000055279000000,0.000097156000000,0.000088464000000,0.000129945000000,0.000028231500000,0.000494982000000 +0.000018750500000,0.011160455000000,0.000131526000000,0.000043426000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039477000000,0.000133896000000,0.000206587000000,0.000169451000000,0.000168266000000,0.011602924000000,0.000239378000000,0.000056068000000,0.000050933000000,0.000094785000000,0.000131920000000,0.000028232000000,0.000408068000000 +0.000017960500000,0.013565194000000,0.000129945000000,0.000042637000000,0.000015590000000,0.000041847000000,0.000026652000000,0.000046983000000,0.000046587000000,0.000022898500000,0.000039476000000,0.000152859000000,0.000161550000000,0.000169846000000,0.000168661000000,0.011766875000000,0.000199081000000,0.000056069000000,0.000061600000000,0.000089649000000,0.000134291000000,0.000028232000000,0.000500118000000 +0.000017762500000,0.011649541000000,0.000127970000000,0.000039871000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000047378000000,0.000045797000000,0.000022503500000,0.000038686000000,0.000098735000000,0.000160364000000,0.000169846000000,0.000169451000000,0.011645196000000,0.000202241000000,0.000055674000000,0.000046587000000,0.000090834000000,0.000165896000000,0.000028034000000,0.000411624000000 +0.000017763000000,0.011601739000000,0.000130735000000,0.000078983000000,0.000016182500000,0.000041452000000,0.000026849500000,0.000082143000000,0.000082933000000,0.000021911000000,0.000038686000000,0.000102291000000,0.000159970000000,0.000170241000000,0.000169452000000,0.011668109000000,0.000201057000000,0.000056068000000,0.000046982000000,0.000090044000000,0.000139427000000,0.000028232000000,0.000425451000000 +0.000017960000000,0.011177838000000,0.000186044000000,0.000045007000000,0.000015590000000,0.000041451000000,0.000060429000000,0.000061994000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000109007000000,0.000165106000000,0.000169846000000,0.000203821000000,0.011724998000000,0.000235427000000,0.000055674000000,0.000046192000000,0.000089649000000,0.000130341000000,0.000028232000000,0.000477205000000 +0.000018750500000,0.012384355000000,0.000118488000000,0.000057649000000,0.000016775000000,0.000042636000000,0.000033762500000,0.000047377000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000115328000000,0.000196710000000,0.000169846000000,0.000169451000000,0.011838776000000,0.000201057000000,0.000104661000000,0.000046192000000,0.000090044000000,0.000139032000000,0.000028034000000,0.000499723000000 +0.000017762500000,0.012231071000000,0.000131130000000,0.000040661000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046983000000,0.000045797000000,0.000022898500000,0.000058440000000,0.000109007000000,0.000163131000000,0.000171031000000,0.000168662000000,0.011679566000000,0.000199081000000,0.000054884000000,0.000045402000000,0.000093994000000,0.000132315000000,0.000028232000000,0.000452711000000 +0.000017763000000,0.011458332000000,0.000130736000000,0.000042636000000,0.000015589500000,0.000041451000000,0.000026454500000,0.000046982000000,0.000046192000000,0.000022701000000,0.000082933000000,0.000102686000000,0.000161550000000,0.000174982000000,0.000167871000000,0.011475714000000,0.000201452000000,0.000055278000000,0.000046587000000,0.000086883000000,0.000281254000000,0.000028429500000,0.000408859000000 +0.000018553000000,0.011240257000000,0.000128760000000,0.000042637000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000047772000000,0.000048563000000,0.000035935500000,0.000039476000000,0.000150884000000,0.000160760000000,0.000172217000000,0.000168266000000,0.011583961000000,0.000239377000000,0.000055279000000,0.000063970000000,0.000091229000000,0.000131921000000,0.000028429500000,0.000588217000000 +0.000018355500000,0.011028900000000,0.000110982000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046983000000,0.000045797000000,0.000021911000000,0.000039476000000,0.000117698000000,0.000161550000000,0.000223574000000,0.000205402000000,0.011891319000000,0.000199871000000,0.000055674000000,0.000059230000000,0.000099131000000,0.000129945000000,0.000037911000000,0.000410834000000 +0.000018948000000,0.011303863000000,0.000159575000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000026454500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000114538000000,0.000196711000000,0.000172612000000,0.000169452000000,0.011517590000000,0.000201847000000,0.000056069000000,0.000046982000000,0.000090044000000,0.000129946000000,0.000028034500000,0.000482340000000 +0.000018355500000,0.011378134000000,0.000130735000000,0.000043031000000,0.000015589500000,0.000041451000000,0.000026651500000,0.000046982000000,0.000048563000000,0.000022108500000,0.000040266000000,0.000115328000000,0.000163920000000,0.000171427000000,0.000169451000000,0.011563813000000,0.000201056000000,0.000055674000000,0.000046192000000,0.000087278000000,0.000165895000000,0.000028232000000,0.000412019000000 +0.000018157500000,0.011602529000000,0.000127575000000,0.000039476000000,0.000015392500000,0.000042242000000,0.000026651500000,0.000046983000000,0.000047377000000,0.000022701000000,0.000039082000000,0.000104662000000,0.000161155000000,0.000169846000000,0.000172217000000,0.011531812000000,0.000239377000000,0.000055278000000,0.000045797000000,0.000092809000000,0.000129550000000,0.000028232000000,0.000412019000000 +0.000018355500000,0.011162431000000,0.000129156000000,0.000042241000000,0.000016577500000,0.000042636000000,0.000026849500000,0.000046982000000,0.000046587000000,0.000023096000000,0.000040266000000,0.000117303000000,0.000160760000000,0.000169452000000,0.000170637000000,0.011763714000000,0.000201452000000,0.000055674000000,0.000047377000000,0.000088859000000,0.000130340000000,0.000028232000000,0.000409648000000 +0.000018553000000,0.011280949000000,0.000129155000000,0.000039871000000,0.000015590000000,0.000078192000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000021911000000,0.000038686000000,0.000151278000000,0.000160365000000,0.000170242000000,0.000240957000000,0.011284899000000,0.000252019000000,0.000055278000000,0.000045797000000,0.000095180000000,0.000130736000000,0.000028231500000,0.000406489000000 +0.000017762500000,0.011162825000000,0.000112957000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000046192000000,0.000046983000000,0.000022306000000,0.000039477000000,0.000099130000000,0.000198686000000,0.000173402000000,0.000169847000000,0.011242628000000,0.000219229000000,0.000055279000000,0.000046982000000,0.000090834000000,0.000132315000000,0.000028232000000,0.000411624000000 +0.000018948000000,0.011113838000000,0.000148118000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046588000000,0.000046982000000,0.000022306000000,0.000039476000000,0.000114933000000,0.000165896000000,0.000172611000000,0.000168266000000,0.011662183000000,0.000202637000000,0.000055278000000,0.000047378000000,0.000093994000000,0.000161155000000,0.000028232000000,0.000406883000000 +0.000042059000000,0.011190085000000,0.000146143000000,0.000043032000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000047772000000,0.000046587000000,0.000022108500000,0.000039871000000,0.000117304000000,0.000184464000000,0.000170241000000,0.000168266000000,0.011415664000000,0.000201452000000,0.000055279000000,0.000046587000000,0.000107821000000,0.000132711000000,0.000028034000000,0.000411229000000 +0.000017763000000,0.011689047000000,0.000130340000000,0.000039871000000,0.000015590000000,0.000043822000000,0.000027046500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000038686000000,0.000118884000000,0.000179328000000,0.000171822000000,0.000207377000000,0.011951763000000,0.000199476000000,0.000055674000000,0.000046193000000,0.000105846000000,0.000134686000000,0.000028232000000,0.000408464000000 +0.000017763000000,0.011383665000000,0.000113748000000,0.000039081000000,0.000016380000000,0.000042637000000,0.000044232000000,0.000046587000000,0.000046587000000,0.000022306000000,0.000038686000000,0.000116908000000,0.000161550000000,0.000171426000000,0.000170636000000,0.013217540000000,0.000237797000000,0.000055673000000,0.000046192000000,0.000086883000000,0.000180909000000,0.000028232000000,0.000447180000000 +0.000018158000000,0.011424751000000,0.000118093000000,0.000041057000000,0.000015590000000,0.000043031000000,0.000026454000000,0.000048168000000,0.000046587000000,0.000022701000000,0.000039081000000,0.000103081000000,0.000197106000000,0.000216859000000,0.000169846000000,0.011545245000000,0.000203032000000,0.000055674000000,0.000046588000000,0.000088068000000,0.000176167000000,0.000028231500000,0.000413204000000 +0.000017762500000,0.011309788000000,0.000112958000000,0.000039871000000,0.000016182500000,0.000043032000000,0.000026651500000,0.000117698000000,0.000120069000000,0.000022503500000,0.000039082000000,0.000165501000000,0.000161945000000,0.000170241000000,0.000168266000000,0.011802825000000,0.000195525000000,0.000055674000000,0.000046982000000,0.000089254000000,0.000136661000000,0.000028232000000,0.000490242000000 +0.000018750500000,0.011262776000000,0.000116514000000,0.000043426000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000070291000000,0.000021911000000,0.000038686000000,0.000107032000000,0.000160365000000,0.000171821000000,0.000168266000000,0.011695368000000,0.000202241000000,0.000055673000000,0.000045402000000,0.000088464000000,0.000131920000000,0.000028232000000,0.000425057000000 +0.000018157500000,0.011729739000000,0.000129946000000,0.000043427000000,0.000033565500000,0.000041451000000,0.000026256500000,0.000046192000000,0.000052908000000,0.000022701000000,0.000039476000000,0.000102686000000,0.000163131000000,0.000171427000000,0.000240958000000,0.011906726000000,0.000230686000000,0.000055279000000,0.000046982000000,0.000090440000000,0.000129551000000,0.000028232000000,0.000448760000000 +0.000017763000000,0.010939221000000,0.000126390000000,0.000040266000000,0.000015590000000,0.000042636000000,0.000026849500000,0.000046982000000,0.000063575000000,0.000022898500000,0.000039081000000,0.000103081000000,0.000160760000000,0.000169847000000,0.000171427000000,0.011341788000000,0.000203427000000,0.000055278000000,0.000047377000000,0.000086883000000,0.000133896000000,0.000028232000000,0.000413204000000 +0.000017762500000,0.011133986000000,0.000117698000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046587000000,0.000046192000000,0.000022898500000,0.000093204000000,0.000114933000000,0.000199081000000,0.000170636000000,0.000168266000000,0.012284010000000,0.000201452000000,0.000055279000000,0.000082537000000,0.000091624000000,0.000146143000000,0.000075639500000,0.000457451000000 +0.000019145500000,0.011151368000000,0.000126785000000,0.000039476000000,0.000015590000000,0.000042636000000,0.000027047000000,0.000046983000000,0.000046982000000,0.000040281000000,0.000051723000000,0.000109007000000,0.000163130000000,0.000171426000000,0.000167871000000,0.011973096000000,0.000202241000000,0.000055673000000,0.000045402000000,0.000088464000000,0.000135476000000,0.000047787500000,0.000407674000000 +0.000017763000000,0.012133491000000,0.000127575000000,0.000040267000000,0.000015392500000,0.000042636000000,0.000026454000000,0.000046983000000,0.000046982000000,0.000021910500000,0.000038686000000,0.000150488000000,0.000161550000000,0.000169846000000,0.000169451000000,0.011566183000000,0.000237797000000,0.000054884000000,0.000046587000000,0.000089254000000,0.000134290000000,0.000029812000000,0.000479180000000 +0.000018750500000,0.011530628000000,0.000129155000000,0.000040662000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000046587000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000161945000000,0.000170242000000,0.000212118000000,0.011770035000000,0.000203032000000,0.000055674000000,0.000047773000000,0.000089254000000,0.000131525000000,0.000036528000000,0.000407673000000 +0.000019145500000,0.010947122000000,0.000164710000000,0.000039477000000,0.000015590000000,0.000042242000000,0.000026849500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000106636000000,0.000160760000000,0.000171032000000,0.000170637000000,0.011948998000000,0.000199081000000,0.000055279000000,0.000047377000000,0.000088463000000,0.000168266000000,0.000028232000000,0.000446784000000 +0.000017763000000,0.011072356000000,0.000110192000000,0.000039872000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046588000000,0.000046192000000,0.000022898500000,0.000038686000000,0.000117303000000,0.000196711000000,0.000172217000000,0.000170241000000,0.011516010000000,0.000194735000000,0.000055279000000,0.000046588000000,0.000090044000000,0.000130735000000,0.000028232000000,0.000411624000000 +0.000018157500000,0.011516011000000,0.000131525000000,0.000039872000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000116908000000,0.000165105000000,0.000169451000000,0.000170637000000,0.012050133000000,0.000231872000000,0.000054883000000,0.000045797000000,0.000090834000000,0.000129155000000,0.000028232000000,0.000451525000000 +0.000018948000000,0.010990974000000,0.000129551000000,0.000042637000000,0.000015392500000,0.000042242000000,0.000027047000000,0.000047377000000,0.000047772000000,0.000022108500000,0.000038686000000,0.000107031000000,0.000165500000000,0.000172612000000,0.000169451000000,0.011346134000000,0.000203032000000,0.000055279000000,0.000046192000000,0.000090044000000,0.000131921000000,0.000028231500000,0.000410438000000 +0.000018750500000,0.011133591000000,0.000128365000000,0.000043031000000,0.000016775000000,0.000061600000000,0.000027046500000,0.000047377000000,0.000048168000000,0.000023096000000,0.000039081000000,0.000116119000000,0.000163526000000,0.000172216000000,0.000170241000000,0.011614381000000,0.000201451000000,0.000054883000000,0.000047377000000,0.000086884000000,0.000129155000000,0.000028232000000,0.000446784000000 +0.000018553000000,0.011474134000000,0.000114933000000,0.000040661000000,0.000016380000000,0.000113352000000,0.000026454000000,0.000047378000000,0.000045797000000,0.000022503500000,0.000039477000000,0.000284414000000,0.000161550000000,0.000171031000000,0.000167871000000,0.011689047000000,0.000202241000000,0.000055674000000,0.000046587000000,0.000126389000000,0.000217649000000,0.000028232000000,0.000461006000000 +0.000018948000000,0.011499813000000,0.000149698000000,0.000043032000000,0.000015590000000,0.000092809000000,0.000036726000000,0.000046982000000,0.000046983000000,0.000023096000000,0.000039476000000,0.000168266000000,0.000161945000000,0.000171032000000,0.000169451000000,0.011593837000000,0.000237797000000,0.000055673000000,0.000046193000000,0.000194735000000,0.000135871000000,0.000028231500000,0.000451526000000 +0.000018948000000,0.010983468000000,0.000115328000000,0.000042637000000,0.000015392500000,0.000043822000000,0.000027046500000,0.000046982000000,0.000080562000000,0.000022503500000,0.000039081000000,0.000102291000000,0.000163525000000,0.000170636000000,0.000171032000000,0.011704849000000,0.000202637000000,0.000055674000000,0.000047377000000,0.000092019000000,0.000132711000000,0.000028232000000,0.000409649000000 +0.000018947500000,0.011072356000000,0.000126785000000,0.000040266000000,0.000016577500000,0.000045007000000,0.000026256500000,0.000046588000000,0.000074637000000,0.000022503500000,0.000039082000000,0.000099131000000,0.000162341000000,0.000169846000000,0.000204217000000,0.011852603000000,0.000201451000000,0.000092019000000,0.000046983000000,0.000092019000000,0.000133896000000,0.000028232000000,0.000462982000000 +0.000018553000000,0.011028505000000,0.000129550000000,0.000040661000000,0.000016380000000,0.000045007000000,0.000027244500000,0.000066735000000,0.000061995000000,0.000022503500000,0.000039081000000,0.000134686000000,0.000165500000000,0.000172216000000,0.000189204000000,0.011502183000000,0.000201846000000,0.000054884000000,0.000046982000000,0.000090439000000,0.000169846000000,0.000046207000000,0.000408464000000 +0.000028232000000,0.011647961000000,0.000129550000000,0.000043427000000,0.000016380000000,0.000054488000000,0.000026651500000,0.000079772000000,0.000045797000000,0.000022306000000,0.000038686000000,0.000116118000000,0.000160760000000,0.000171426000000,0.000189994000000,0.011760158000000,0.000244908000000,0.000055278000000,0.000045798000000,0.000164710000000,0.000130340000000,0.000028034500000,0.000447970000000 +0.000039293500000,0.011099221000000,0.000110587000000,0.000043032000000,0.000016380000000,0.000041847000000,0.000026256500000,0.000046983000000,0.000047378000000,0.000022701000000,0.000038686000000,0.000102686000000,0.000160760000000,0.000171032000000,0.000169847000000,0.011447664000000,0.000200266000000,0.000056069000000,0.000046982000000,0.000092809000000,0.000130735000000,0.000028231500000,0.000411624000000 +0.000017763000000,0.011623467000000,0.000182093000000,0.000039871000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000116909000000,0.000163526000000,0.000172612000000,0.000167871000000,0.011967565000000,0.000201451000000,0.000054884000000,0.000046587000000,0.000092019000000,0.000129550000000,0.000028232000000,0.000448365000000 +0.000017762500000,0.010929739000000,0.000133105000000,0.000040661000000,0.000016380000000,0.000041451000000,0.000027047000000,0.000046587000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000116513000000,0.000160365000000,0.000169847000000,0.000206587000000,0.011579615000000,0.000194735000000,0.000055278000000,0.000046587000000,0.000088464000000,0.000130340000000,0.000028232000000,0.000411229000000 +0.000035738000000,0.011233936000000,0.000131130000000,0.000042636000000,0.000016380000000,0.000041452000000,0.000026849000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000038686000000,0.000116118000000,0.000163920000000,0.000170637000000,0.000168267000000,0.012004306000000,0.000237797000000,0.000055279000000,0.000115328000000,0.000091229000000,0.000279279000000,0.000028232000000,0.000444019000000 +0.000019935500000,0.011562627000000,0.000133106000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046588000000,0.000046587000000,0.000023096000000,0.000108217000000,0.000116118000000,0.000161550000000,0.000169847000000,0.000172217000000,0.011815862000000,0.000202636000000,0.000055278000000,0.000061600000000,0.000091229000000,0.000164315000000,0.000028232000000,0.000410044000000 +0.000032973000000,0.011305838000000,0.000130735000000,0.000042637000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046587000000,0.000047378000000,0.000049763000000,0.000039081000000,0.000143377000000,0.000256365000000,0.000170242000000,0.000171031000000,0.012122430000000,0.000201056000000,0.000054884000000,0.000046587000000,0.000089254000000,0.000133501000000,0.000028034500000,0.000444810000000 +0.000018553000000,0.011043122000000,0.000112958000000,0.000039872000000,0.000015590000000,0.000042241000000,0.000026651500000,0.000047377000000,0.000047377000000,0.000022701000000,0.000039476000000,0.000107822000000,0.000174587000000,0.000173007000000,0.000169847000000,0.011442924000000,0.000201846000000,0.000055278000000,0.000046983000000,0.000090044000000,0.000137057000000,0.000028232000000,0.000408069000000 +0.000017762500000,0.011411319000000,0.000154044000000,0.000039871000000,0.000015589500000,0.000041451000000,0.000027244500000,0.000046982000000,0.000047378000000,0.000022701000000,0.000039871000000,0.000103476000000,0.000160365000000,0.000170637000000,0.000168661000000,0.011389985000000,0.000237402000000,0.000055279000000,0.000046982000000,0.000089649000000,0.000168266000000,0.000028231500000,0.000562932000000 +0.000017762500000,0.011744356000000,0.000113748000000,0.000040266000000,0.000025269000000,0.000042637000000,0.000027244000000,0.000046588000000,0.000045797000000,0.000022899000000,0.000057254000000,0.000115723000000,0.000163920000000,0.000171426000000,0.000168267000000,0.011540899000000,0.000203031000000,0.000055278000000,0.000046587000000,0.000090439000000,0.000130735000000,0.000028232000000,0.000457451000000 +0.000018158000000,0.011083813000000,0.000129550000000,0.000042242000000,0.000042256500000,0.000042637000000,0.000026849500000,0.000047377000000,0.000045797000000,0.000022108000000,0.000041452000000,0.000114143000000,0.000197105000000,0.000171426000000,0.000169846000000,0.012382380000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000124809000000,0.000129551000000,0.000028232000000,0.000410044000000 +0.000017763000000,0.011514430000000,0.000110192000000,0.000039871000000,0.000015590000000,0.000060019000000,0.000027046500000,0.000047377000000,0.000048563000000,0.000022899000000,0.000041452000000,0.000109797000000,0.000165106000000,0.000169846000000,0.000169847000000,0.011316504000000,0.000202242000000,0.000055674000000,0.000046587000000,0.000092019000000,0.000130341000000,0.000028231500000,0.000452711000000 +0.000018947500000,0.011319664000000,0.000146538000000,0.000039871000000,0.000016380000000,0.000069106000000,0.000036528500000,0.000046983000000,0.000048958000000,0.000022503500000,0.000052909000000,0.000102291000000,0.000161945000000,0.000172612000000,0.000205402000000,0.011678776000000,0.000236612000000,0.000054883000000,0.000046982000000,0.000089649000000,0.000133896000000,0.000028232000000,0.000412019000000 +0.000017763000000,0.011413294000000,0.000128760000000,0.000039872000000,0.000015590000000,0.000041452000000,0.000027244500000,0.000046587000000,0.000048562000000,0.000022701000000,0.000039476000000,0.000134686000000,0.000165501000000,0.000169847000000,0.000169846000000,0.012323121000000,0.000202636000000,0.000055674000000,0.000047377000000,0.000088463000000,0.000131525000000,0.000028232000000,0.000448365000000 +0.000017762500000,0.011168752000000,0.000165501000000,0.000039872000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000046982000000,0.000102686000000,0.000022503500000,0.000039081000000,0.000117698000000,0.000161155000000,0.000171427000000,0.000169057000000,0.012017344000000,0.000201451000000,0.000054488000000,0.000046587000000,0.000088463000000,0.000131525000000,0.000037515500000,0.000413205000000 +0.000018948000000,0.011452010000000,0.000113353000000,0.000043032000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048167000000,0.000022503500000,0.000038686000000,0.000116908000000,0.000244513000000,0.000170242000000,0.000171031000000,0.011681541000000,0.000201847000000,0.000055674000000,0.000046192000000,0.000091624000000,0.000136266000000,0.000036528500000,0.000448365000000 +0.000017763000000,0.011171121000000,0.000110192000000,0.000043031000000,0.000015590000000,0.000042242000000,0.000026257000000,0.000046588000000,0.000046192000000,0.000022108500000,0.000039476000000,0.000118489000000,0.000163921000000,0.000170637000000,0.000170636000000,0.012105442000000,0.000326291000000,0.000055278000000,0.000046983000000,0.000086883000000,0.000136266000000,0.000028232000000,0.000407278000000 +0.000017960000000,0.011414874000000,0.000130340000000,0.000040267000000,0.000016380000000,0.000042636000000,0.000026454000000,0.000140216000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000163525000000,0.000170242000000,0.000206587000000,0.011559467000000,0.000231476000000,0.000056069000000,0.000046587000000,0.000093599000000,0.000167476000000,0.000028232000000,0.000446784000000 +0.000018355500000,0.011559072000000,0.000128760000000,0.000040267000000,0.000015590000000,0.000042241000000,0.000026651500000,0.000152069000000,0.000046193000000,0.000022108000000,0.000039872000000,0.000115723000000,0.000163525000000,0.000170242000000,0.000169451000000,0.011954529000000,0.000197500000000,0.000055673000000,0.000046983000000,0.000088859000000,0.000131130000000,0.000028232000000,0.000409253000000 +0.000017762500000,0.011408158000000,0.000131131000000,0.000068711000000,0.000015590000000,0.000041847000000,0.000026652000000,0.000134290000000,0.000046587000000,0.000022306000000,0.000039081000000,0.000109402000000,0.000183673000000,0.000170242000000,0.000167476000000,0.011520356000000,0.000202241000000,0.000054884000000,0.000045402000000,0.000091624000000,0.000128365000000,0.000028232000000,0.000498537000000 +0.000027639500000,0.011205097000000,0.000146933000000,0.000039872000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000082932000000,0.000046192000000,0.000022503500000,0.000038686000000,0.000115328000000,0.000165896000000,0.000172217000000,0.000169451000000,0.011467813000000,0.000249649000000,0.000056859000000,0.000048168000000,0.000088463000000,0.000136661000000,0.000028231500000,0.000408463000000 +0.000018750000000,0.011390776000000,0.000117698000000,0.000040266000000,0.000015392500000,0.000043426000000,0.000026849000000,0.000096365000000,0.000046983000000,0.000023689000000,0.000039082000000,0.000115723000000,0.000161550000000,0.000170636000000,0.000169452000000,0.011653096000000,0.000203032000000,0.000055278000000,0.000082933000000,0.000088464000000,0.000133106000000,0.000028232000000,0.000464167000000 +0.000017565500000,0.011397887000000,0.000127970000000,0.000039871000000,0.000015589500000,0.000042637000000,0.000026454000000,0.000050537000000,0.000046587000000,0.000022898500000,0.000058834000000,0.000118489000000,0.000162736000000,0.000173401000000,0.000278488000000,0.012013392000000,0.000201056000000,0.000054094000000,0.000045797000000,0.000089254000000,0.000206192000000,0.000028232000000,0.000406488000000 +0.000019145500000,0.010982678000000,0.000155624000000,0.000039872000000,0.000015590000000,0.000042242000000,0.000026454500000,0.000062390000000,0.000046588000000,0.000021911000000,0.000055279000000,0.000103081000000,0.000162340000000,0.000173402000000,0.000184858000000,0.011384850000000,0.000278093000000,0.000054883000000,0.000046193000000,0.000088464000000,0.000129945000000,0.000028231500000,0.000442044000000 +0.000017762500000,0.011228406000000,0.000129155000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000026651500000,0.000047377000000,0.000048562000000,0.000040478500000,0.000039081000000,0.000115328000000,0.000199081000000,0.000169846000000,0.000170636000000,0.011647960000000,0.000196315000000,0.000055674000000,0.000048167000000,0.000086884000000,0.000129551000000,0.000028232000000,0.000411624000000 +0.000018948000000,0.011403813000000,0.000118093000000,0.000042636000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046588000000,0.000047378000000,0.000023096000000,0.000039871000000,0.000098736000000,0.000163921000000,0.000169451000000,0.000171032000000,0.012597293000000,0.000203032000000,0.000055278000000,0.000047378000000,0.000088464000000,0.000131526000000,0.000028232000000,0.000441254000000 +0.000017960000000,0.010983072000000,0.000153649000000,0.000042637000000,0.000015589500000,0.000042242000000,0.000027047000000,0.000046587000000,0.000048957000000,0.000022306000000,0.000038686000000,0.000153253000000,0.000161945000000,0.000172611000000,0.000230686000000,0.012258330000000,0.000201056000000,0.000055279000000,0.000046982000000,0.000090044000000,0.000128365000000,0.000028231500000,0.000412809000000 +0.000019145500000,0.011247764000000,0.000118093000000,0.000040266000000,0.000015590000000,0.000043031000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000160365000000,0.000170636000000,0.000168266000000,0.011570134000000,0.000294290000000,0.000055278000000,0.000046193000000,0.000105056000000,0.000128760000000,0.000028232000000,0.000486290000000 +0.000017763000000,0.011436998000000,0.000127575000000,0.000042242000000,0.000016182500000,0.000041451000000,0.000036133000000,0.000082538000000,0.000048167000000,0.000022306000000,0.000039476000000,0.000102686000000,0.000160365000000,0.000302982000000,0.000170637000000,0.011482430000000,0.000200661000000,0.000055674000000,0.000046192000000,0.000088464000000,0.000131921000000,0.000028232000000,0.000408463000000 +0.000017762500000,0.011546430000000,0.000112958000000,0.000042636000000,0.000015590000000,0.000042637000000,0.000052331000000,0.000046982000000,0.000047378000000,0.000022306000000,0.000039477000000,0.000116513000000,0.000201056000000,0.000188019000000,0.000169846000000,0.011783862000000,0.000203031000000,0.000055279000000,0.000046192000000,0.000089254000000,0.000132316000000,0.000028034500000,0.000441253000000 +0.000017763000000,0.011144652000000,0.000129550000000,0.000039081000000,0.000016380000000,0.000042241000000,0.000038306000000,0.000047378000000,0.000046587000000,0.000023096000000,0.000039871000000,0.000116118000000,0.000160365000000,0.000173007000000,0.000168266000000,0.012071862000000,0.000201451000000,0.000092019000000,0.000045797000000,0.000090439000000,0.000129945000000,0.000046207500000,0.000409253000000 +0.000017762500000,0.011085789000000,0.000113353000000,0.000040266000000,0.000015392500000,0.000110192000000,0.000029022000000,0.000047377000000,0.000101501000000,0.000022899000000,0.000039081000000,0.000107032000000,0.000163525000000,0.000206192000000,0.000205402000000,0.011549590000000,0.000291131000000,0.000054883000000,0.000046982000000,0.000088464000000,0.000149698000000,0.000028232000000,0.000451130000000 +0.000017763000000,0.010983467000000,0.000164315000000,0.000042636000000,0.000016380000000,0.000042637000000,0.000034947500000,0.000046982000000,0.000063575000000,0.000023096000000,0.000039476000000,0.000102686000000,0.000161946000000,0.000184464000000,0.000169056000000,0.011741590000000,0.000201451000000,0.000055279000000,0.000046983000000,0.000088464000000,0.000131526000000,0.000028232000000,0.000410439000000 +0.000019145500000,0.012882528000000,0.000127180000000,0.000042242000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046982000000,0.000048168000000,0.000022701000000,0.000039081000000,0.000170242000000,0.000160760000000,0.000169846000000,0.000169846000000,0.012719762000000,0.000203031000000,0.000055279000000,0.000047377000000,0.000088464000000,0.000130340000000,0.000028232000000,0.000445204000000 +0.000017762500000,0.011485986000000,0.000111378000000,0.000039871000000,0.000025664000000,0.000041452000000,0.000027046500000,0.000046983000000,0.000067921000000,0.000022503500000,0.000038686000000,0.000105451000000,0.000253994000000,0.000172217000000,0.000171032000000,0.011880652000000,0.000201056000000,0.000054884000000,0.000046588000000,0.000090835000000,0.000132315000000,0.000028232000000,0.000405698000000 +0.000018750500000,0.011107122000000,0.000110588000000,0.000040267000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000047772000000,0.000062389000000,0.000022306000000,0.000039081000000,0.000115723000000,0.000160365000000,0.000170242000000,0.000169847000000,0.011481640000000,0.000274537000000,0.000054884000000,0.000046587000000,0.000135476000000,0.000130735000000,0.000028231500000,0.000445599000000 +0.000018355500000,0.011297936000000,0.000116118000000,0.000042637000000,0.000015392000000,0.000042241000000,0.000026257000000,0.000046587000000,0.000061599000000,0.000022503500000,0.000039476000000,0.000117304000000,0.000163920000000,0.000172611000000,0.000170242000000,0.011611615000000,0.000201451000000,0.000055674000000,0.000046983000000,0.000095180000000,0.000168661000000,0.000028232000000,0.000410043000000 +0.000017960000000,0.012108603000000,0.000127970000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046983000000,0.000045798000000,0.000022898500000,0.000038686000000,0.000102290000000,0.000161155000000,0.000172216000000,0.000169846000000,0.012120059000000,0.000203031000000,0.000055279000000,0.000046192000000,0.000090439000000,0.000129945000000,0.000028232000000,0.000444414000000 +0.000018553000000,0.011333491000000,0.000127180000000,0.000043822000000,0.000016380000000,0.000042636000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000160760000000,0.000170637000000,0.000170637000000,0.011864059000000,0.000238192000000,0.000055673000000,0.000046588000000,0.000082933000000,0.000129156000000,0.000028231500000,0.000410834000000 +0.000017762500000,0.011420011000000,0.000127575000000,0.000039872000000,0.000015392500000,0.000044216000000,0.000026652000000,0.000047772000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000112957000000,0.000209748000000,0.000170242000000,0.000171032000000,0.011397887000000,0.000201847000000,0.000055279000000,0.000058439000000,0.000084908000000,0.000131525000000,0.000028232000000,0.000449155000000 +0.000019145500000,0.011169146000000,0.000126785000000,0.000039871000000,0.000015985000000,0.000042241000000,0.000027046500000,0.000047377000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000131526000000,0.000162340000000,0.000169846000000,0.000216463000000,0.011622282000000,0.000201057000000,0.000055278000000,0.000046193000000,0.000084514000000,0.000133106000000,0.000028232000000,0.000411229000000 +0.000017763000000,0.011798875000000,0.000113748000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046983000000,0.000046983000000,0.000022306000000,0.000039872000000,0.000116908000000,0.000165501000000,0.000173007000000,0.000171031000000,0.013289836000000,0.000203031000000,0.000056069000000,0.000046192000000,0.000082142000000,0.000206192000000,0.000028231500000,0.000443229000000 +0.000018750500000,0.011074727000000,0.000127179000000,0.000042242000000,0.000015589500000,0.000041451000000,0.000043837000000,0.000046982000000,0.000048562000000,0.000022503500000,0.000081748000000,0.000114933000000,0.000163525000000,0.000172611000000,0.000169847000000,0.012239367000000,0.000273748000000,0.000055674000000,0.000046192000000,0.000084908000000,0.000129945000000,0.000028429500000,0.000410044000000 +0.000035738000000,0.011248949000000,0.000127180000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000034158000000,0.000047377000000,0.000047773000000,0.000039886000000,0.000060415000000,0.000117304000000,0.000250439000000,0.000170636000000,0.000169451000000,0.012195516000000,0.000201451000000,0.000055278000000,0.000045402000000,0.000136661000000,0.000131525000000,0.000028232000000,0.000408068000000 +0.000017762500000,0.011523912000000,0.000112958000000,0.000040266000000,0.000016182500000,0.000042242000000,0.000027046500000,0.000047378000000,0.000046587000000,0.000022701000000,0.000111378000000,0.000103476000000,0.000413599000000,0.000169846000000,0.000169847000000,0.011316899000000,0.000198291000000,0.000054884000000,0.000046982000000,0.000084909000000,0.000129945000000,0.000028232000000,0.000445204000000 +0.000017763000000,0.011418430000000,0.000147723000000,0.000039871000000,0.000016182500000,0.000042636000000,0.000026256500000,0.000047377000000,0.000046587000000,0.000023096500000,0.000129155000000,0.000115723000000,0.000178933000000,0.000171426000000,0.000220809000000,0.011664158000000,0.000202241000000,0.000056463000000,0.000045007000000,0.000085303000000,0.000166291000000,0.000028232000000,0.000406488000000 +0.000017762500000,0.011030084000000,0.000128364000000,0.000039476000000,0.000015392500000,0.000042242000000,0.000027047000000,0.000082933000000,0.000045797000000,0.000022306000000,0.000121254000000,0.000171822000000,0.000161550000000,0.000207772000000,0.000171032000000,0.013236108000000,0.000272167000000,0.000055279000000,0.000046982000000,0.000084118000000,0.000132710000000,0.000046405000000,0.000485105000000 +0.000018750500000,0.011111467000000,0.000110192000000,0.000043032000000,0.000016380000000,0.000042242000000,0.000026849000000,0.000046982000000,0.000085303000000,0.000022306000000,0.000077007000000,0.000135081000000,0.000160365000000,0.000172612000000,0.000169846000000,0.011547615000000,0.000200661000000,0.000055674000000,0.000046982000000,0.000084513000000,0.000127970000000,0.000028232000000,0.000442439000000 +0.000018553000000,0.010909986000000,0.000121649000000,0.000043032000000,0.000015392500000,0.000042241000000,0.000026652000000,0.000047377000000,0.000076612000000,0.000022503500000,0.000041847000000,0.000115723000000,0.000162735000000,0.000169452000000,0.000170242000000,0.011437788000000,0.000201057000000,0.000055673000000,0.000046587000000,0.000084513000000,0.000133896000000,0.000028232000000,0.000446784000000 +0.000018948000000,0.013985934000000,0.000127970000000,0.000040267000000,0.000024874000000,0.000060414000000,0.000027046500000,0.000046983000000,0.000047377000000,0.000022306000000,0.000053698000000,0.000117698000000,0.000160760000000,0.000172217000000,0.000169451000000,0.011363517000000,0.000202241000000,0.000055279000000,0.000045402000000,0.000084513000000,0.000130735000000,0.000028232000000,0.000406094000000 +0.000018552500000,0.011753838000000,0.000129550000000,0.000039872000000,0.000023491000000,0.000059229000000,0.000026256500000,0.000046982000000,0.000046983000000,0.000021911000000,0.000039477000000,0.000116513000000,0.000162340000000,0.000180908000000,0.000205797000000,0.011221294000000,0.000270587000000,0.000055673000000,0.000046588000000,0.000088463000000,0.000174587000000,0.000028232000000,0.000494982000000 +0.000017960500000,0.011725788000000,0.000184859000000,0.000039871000000,0.000016577500000,0.000041451000000,0.000026256500000,0.000047377000000,0.000046982000000,0.000022306000000,0.000038686000000,0.000103081000000,0.000162735000000,0.000170242000000,0.000172216000000,0.011242627000000,0.000201451000000,0.000055279000000,0.000046587000000,0.000120463000000,0.000130735000000,0.000028034500000,0.000417155000000 +0.000018355500000,0.011122530000000,0.000123229000000,0.000039871000000,0.000024676500000,0.000042637000000,0.000026849500000,0.000046982000000,0.000046587000000,0.000022108500000,0.000038686000000,0.000115328000000,0.000161550000000,0.000169846000000,0.000168267000000,0.011000455000000,0.000199476000000,0.000055673000000,0.000047377000000,0.000084118000000,0.000128365000000,0.000028232000000,0.000444809000000 +0.000019145500000,0.013287861000000,0.000110192000000,0.000039871000000,0.000016577500000,0.000041451000000,0.000026849000000,0.000047378000000,0.000046982000000,0.000022898500000,0.000072662000000,0.000115328000000,0.000161946000000,0.000171031000000,0.000169451000000,0.011362331000000,0.000202636000000,0.000055279000000,0.000046982000000,0.000084118000000,0.000135477000000,0.000028231500000,0.000410834000000 +0.000018948000000,0.011519566000000,0.000121649000000,0.000039871000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000047377000000,0.000046982000000,0.000022503500000,0.000039872000000,0.000109007000000,0.000160760000000,0.000170241000000,0.000170241000000,0.011090924000000,0.000512364000000,0.000055279000000,0.000046983000000,0.000084908000000,0.000130735000000,0.000028034500000,0.000496167000000 +0.000018553000000,0.011604899000000,0.000131921000000,0.000039476000000,0.000016577500000,0.000041452000000,0.000026651500000,0.000046982000000,0.000047773000000,0.000022898500000,0.000039081000000,0.000114933000000,0.000160365000000,0.000221204000000,0.000167476000000,0.010920653000000,0.000275722000000,0.000055278000000,0.000045797000000,0.000084909000000,0.000178933000000,0.000028232000000,0.000410439000000 +0.000018750500000,0.011190874000000,0.000110982000000,0.000039871000000,0.000015194500000,0.000042636000000,0.000028232000000,0.000047378000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000165106000000,0.000172216000000,0.000169846000000,0.011244998000000,0.000247673000000,0.000054489000000,0.000081353000000,0.000083328000000,0.000131131000000,0.000036726000000,0.000443229000000 +0.000018553000000,0.011564208000000,0.000162736000000,0.000078587000000,0.000015590000000,0.000044216000000,0.000026651500000,0.000047377000000,0.000048563000000,0.000023096000000,0.000039477000000,0.000103081000000,0.000165501000000,0.000173007000000,0.000168267000000,0.011219714000000,0.000199476000000,0.000055278000000,0.000046982000000,0.000082933000000,0.000132711000000,0.000035935500000,0.000407673000000 +0.000018947500000,0.011265146000000,0.000110192000000,0.000043032000000,0.000034355500000,0.000041451000000,0.000044627000000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000163525000000,0.000172612000000,0.000169451000000,0.011407368000000,0.000201452000000,0.000054884000000,0.000046983000000,0.000084513000000,0.000131920000000,0.000028232000000,0.000823673000000 +0.000018158000000,0.011165591000000,0.000125995000000,0.000040267000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000046983000000,0.000048167000000,0.000023096000000,0.000039871000000,0.000133106000000,0.000162340000000,0.000183279000000,0.000204612000000,0.010964504000000,0.000201846000000,0.000055278000000,0.000046587000000,0.000082538000000,0.000133500000000,0.000028231500000,0.000444414000000 +0.000017763000000,0.011219320000000,0.000126389000000,0.000042637000000,0.000016380000000,0.000041846000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000022108500000,0.000039871000000,0.000120464000000,0.000161550000000,0.000172612000000,0.000169056000000,0.011420405000000,0.000237402000000,0.000055279000000,0.000046192000000,0.000155624000000,0.000133500000000,0.000046405000000,0.000409649000000 +0.000018750000000,0.011694973000000,0.000126785000000,0.000041846000000,0.000016972500000,0.000042637000000,0.000026256500000,0.000047377000000,0.000048957000000,0.000031589500000,0.000039082000000,0.000109007000000,0.000183279000000,0.000170242000000,0.000169847000000,0.011002431000000,0.000201847000000,0.000055278000000,0.000045007000000,0.000084909000000,0.000134686000000,0.000028232000000,0.000444414000000 +0.000017763000000,0.010900505000000,0.000129155000000,0.000039476000000,0.000016577500000,0.000042242000000,0.000026256500000,0.000047378000000,0.000048958000000,0.000030404500000,0.000039476000000,0.000103081000000,0.000177352000000,0.000170242000000,0.000238982000000,0.011519566000000,0.000201451000000,0.000102686000000,0.000047377000000,0.000086093000000,0.000130340000000,0.000028232000000,0.000406883000000 +0.000017762500000,0.011199961000000,0.000233057000000,0.000040661000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046983000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000116118000000,0.000165106000000,0.000170637000000,0.000169846000000,0.011258825000000,0.000201056000000,0.000054884000000,0.000046192000000,0.000084118000000,0.000130735000000,0.000028232000000,0.000460612000000 +0.000018750500000,0.011140702000000,0.000142587000000,0.000042637000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000082933000000,0.000083724000000,0.000022898500000,0.000038686000000,0.000109402000000,0.000160760000000,0.000360661000000,0.000204612000000,0.011104751000000,0.000238193000000,0.000055673000000,0.000046982000000,0.000084909000000,0.000173401000000,0.000028232000000,0.000415180000000 +0.000027639500000,0.011481245000000,0.000128760000000,0.000042637000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000047772000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000160760000000,0.000400167000000,0.000169847000000,0.011284504000000,0.000203427000000,0.000055674000000,0.000046587000000,0.000082142000000,0.000132711000000,0.000028231500000,0.000451920000000 +0.000054108500000,0.011037986000000,0.000127575000000,0.000039871000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000021911000000,0.000039871000000,0.000135081000000,0.000200266000000,0.000171426000000,0.000169056000000,0.011802825000000,0.000201451000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000132711000000,0.000028232000000,0.000409649000000 +0.000018355000000,0.011427911000000,0.000130340000000,0.000039476000000,0.000015194500000,0.000042637000000,0.000026454000000,0.000047378000000,0.000048167000000,0.000022108500000,0.000039082000000,0.000129155000000,0.000160760000000,0.000169846000000,0.000171031000000,0.010940801000000,0.000201846000000,0.000055279000000,0.000045007000000,0.000088069000000,0.000130735000000,0.000028232000000,0.000450340000000 +0.000017763000000,0.011302678000000,0.000133106000000,0.000042636000000,0.000015590000000,0.000041452000000,0.000026849500000,0.000046587000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000163525000000,0.000173402000000,0.000189204000000,0.011225640000000,0.000231871000000,0.000055279000000,0.000046192000000,0.000157204000000,0.000131526000000,0.000028231500000,0.000406883000000 +0.000019145500000,0.011098035000000,0.000129945000000,0.000039081000000,0.000016380000000,0.000097155000000,0.000026256500000,0.000047377000000,0.000047772000000,0.000022503500000,0.000038686000000,0.000118884000000,0.000162736000000,0.000169452000000,0.000168266000000,0.011647960000000,0.000201846000000,0.000055278000000,0.000046192000000,0.000083723000000,0.000165501000000,0.000028034500000,0.000468118000000 +0.000017762500000,0.011610825000000,0.000113352000000,0.000042636000000,0.000015590000000,0.000057649000000,0.000026651500000,0.000046587000000,0.000048563000000,0.000021911000000,0.000039477000000,0.000102686000000,0.000162341000000,0.000168661000000,0.000169452000000,0.011549591000000,0.000201451000000,0.000055279000000,0.000046588000000,0.000084119000000,0.000131920000000,0.000028232000000,0.000409649000000 +0.000017763000000,0.011399862000000,0.000129946000000,0.000039476000000,0.000016380000000,0.000042637000000,0.000027047000000,0.000046983000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000116118000000,0.000197895000000,0.000173402000000,0.000169452000000,0.011117394000000,0.000201846000000,0.000054883000000,0.000047377000000,0.000087278000000,0.000129155000000,0.000028231500000,0.000500118000000 +0.000018157500000,0.011040356000000,0.000114933000000,0.000039476000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046982000000,0.000047773000000,0.000022306000000,0.000040266000000,0.000118094000000,0.000160364000000,0.000172217000000,0.000169056000000,0.011088158000000,0.000237402000000,0.000055279000000,0.000045797000000,0.000084118000000,0.000127574000000,0.000028232000000,0.000408068000000 +0.000017763000000,0.011357195000000,0.000128760000000,0.000039476000000,0.000015392000000,0.000042242000000,0.000026849500000,0.000046982000000,0.000045797000000,0.000022898500000,0.000056463000000,0.000102686000000,0.000163920000000,0.000168266000000,0.000215278000000,0.011045097000000,0.000201056000000,0.000055278000000,0.000045797000000,0.000083723000000,0.000132711000000,0.000028232000000,0.000410043000000 +0.000018948000000,0.011402232000000,0.000128760000000,0.000042636000000,0.000017960500000,0.000042637000000,0.000044034000000,0.000046983000000,0.000045797000000,0.000032380000000,0.000039081000000,0.000117699000000,0.000160760000000,0.000169847000000,0.000168662000000,0.011710381000000,0.000201056000000,0.000054884000000,0.000081353000000,0.000083723000000,0.000129945000000,0.000028231500000,0.000412019000000 +0.000017960000000,0.011113048000000,0.000146537000000,0.000040266000000,0.000015590000000,0.000044217000000,0.000026652000000,0.000046982000000,0.000045798000000,0.000030405000000,0.000039081000000,0.000107032000000,0.000164711000000,0.000172612000000,0.000169057000000,0.010987418000000,0.000201847000000,0.000055278000000,0.000045402000000,0.000088859000000,0.000133105000000,0.000028232000000,0.000424661000000 +0.000018750500000,0.011158085000000,0.000130341000000,0.000056859000000,0.000015589500000,0.000042637000000,0.000026454000000,0.000046982000000,0.000046192000000,0.000024083500000,0.000039476000000,0.000104661000000,0.000208957000000,0.000171032000000,0.000169451000000,0.010999270000000,0.000237797000000,0.000055279000000,0.000046982000000,0.000107427000000,0.000128760000000,0.000063787500000,0.000481550000000 +0.000017762500000,0.011687467000000,0.000115328000000,0.000039871000000,0.000015392500000,0.000042636000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039871000000,0.000109402000000,0.000165500000000,0.000169057000000,0.000169846000000,0.011267122000000,0.000223970000000,0.000056069000000,0.000045797000000,0.000084118000000,0.000130340000000,0.000028232000000,0.000410438000000 +0.000018158000000,0.011455961000000,0.000131130000000,0.000039476000000,0.000015590000000,0.000042242000000,0.000026849500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000113352000000,0.000161155000000,0.000172217000000,0.000218439000000,0.011513245000000,0.000201056000000,0.000055673000000,0.000046192000000,0.000085303000000,0.000150488000000,0.000028231500000,0.000446389000000 +0.000018948000000,0.011115813000000,0.000120464000000,0.000042636000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000040084000000,0.000039476000000,0.000143773000000,0.000161155000000,0.000169057000000,0.000169451000000,0.010999665000000,0.000202242000000,0.000055279000000,0.000047773000000,0.000084908000000,0.000154834000000,0.000028232000000,0.000409254000000 +0.000018750500000,0.011062085000000,0.000149699000000,0.000042637000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000046982000000,0.000046192000000,0.000022701000000,0.000039081000000,0.000102686000000,0.000163921000000,0.000173797000000,0.000168266000000,0.011373788000000,0.000217649000000,0.000056068000000,0.000047377000000,0.000084118000000,0.000129551000000,0.000028232000000,0.000448365000000 +0.000018157500000,0.011216554000000,0.000118489000000,0.000039872000000,0.000016380000000,0.000041452000000,0.000027047000000,0.000046983000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000200266000000,0.000170636000000,0.000170636000000,0.011587121000000,0.000203032000000,0.000054884000000,0.000046983000000,0.000085304000000,0.000129550000000,0.000028231500000,0.000408069000000 +0.000017763000000,0.011746726000000,0.000128365000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000082537000000,0.000118488000000,0.000022701000000,0.000040266000000,0.000118488000000,0.000163525000000,0.000169846000000,0.000168266000000,0.011453196000000,0.000201451000000,0.000055278000000,0.000046587000000,0.000088858000000,0.000139427000000,0.000028232000000,0.000450340000000 +0.000018750500000,0.011524306000000,0.000127970000000,0.000039871000000,0.000025071000000,0.000042637000000,0.000026849500000,0.000046983000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000116118000000,0.000163525000000,0.000168662000000,0.000184464000000,0.011661788000000,0.000202242000000,0.000056069000000,0.000046193000000,0.000084119000000,0.000133106000000,0.000028232000000,0.000404908000000 +0.000019145500000,0.011152948000000,0.000127575000000,0.000039476000000,0.000047590000000,0.000042242000000,0.000026849000000,0.000046587000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000114933000000,0.000165106000000,0.000172217000000,0.000169451000000,0.011105936000000,0.000248858000000,0.000055674000000,0.000046192000000,0.000082142000000,0.000139032000000,0.000028232000000,0.000458242000000 +0.000018750500000,0.011321640000000,0.000118093000000,0.000039081000000,0.000016577500000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048958000000,0.000022898500000,0.000039081000000,0.000116118000000,0.000161945000000,0.000221995000000,0.000169847000000,0.011342974000000,0.000203031000000,0.000055278000000,0.000046587000000,0.000121254000000,0.000132315000000,0.000028231500000,0.000408068000000 +0.000018553000000,0.011316109000000,0.000129945000000,0.000039476000000,0.000015392500000,0.000042637000000,0.000026849500000,0.000047377000000,0.000048167000000,0.000023096000000,0.000039081000000,0.000154439000000,0.000199081000000,0.000170637000000,0.000167871000000,0.011105146000000,0.000201451000000,0.000054489000000,0.000047772000000,0.000084118000000,0.000130735000000,0.000028232000000,0.000721352000000 +0.000026849000000,0.011495863000000,0.000147723000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000047378000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000161945000000,0.000173797000000,0.000208168000000,0.011438183000000,0.000257945000000,0.000054883000000,0.000046587000000,0.000085698000000,0.000167081000000,0.000028232000000,0.000512760000000 +0.000017763000000,0.011024554000000,0.000122044000000,0.000039476000000,0.000015590000000,0.000077402000000,0.000026651500000,0.000047377000000,0.000045797000000,0.000022306000000,0.000039082000000,0.000117698000000,0.000160760000000,0.000171032000000,0.000182093000000,0.010900110000000,0.000200266000000,0.000055674000000,0.000046587000000,0.000084118000000,0.000133896000000,0.000028231500000,0.000410439000000 +0.000018157500000,0.011223270000000,0.000118489000000,0.000043031000000,0.000016775500000,0.000042242000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000022701000000,0.000039476000000,0.000118093000000,0.000163525000000,0.000170241000000,0.000169056000000,0.011378923000000,0.000203032000000,0.000054883000000,0.000045007000000,0.000088464000000,0.000131921000000,0.000028232000000,0.000449550000000 +0.000018948000000,0.011308208000000,0.000113748000000,0.000043032000000,0.000016380000000,0.000042637000000,0.000064775000000,0.000046983000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000115328000000,0.000162340000000,0.000212118000000,0.000168266000000,0.011501788000000,0.000200662000000,0.000055279000000,0.000046192000000,0.000084513000000,0.000131920000000,0.000028232000000,0.000413994000000 +0.000018750500000,0.011120159000000,0.000110587000000,0.000040267000000,0.000016380000000,0.000042636000000,0.000027047000000,0.000046982000000,0.000046983000000,0.000022701000000,0.000039476000000,0.000116908000000,0.000241748000000,0.000183673000000,0.000172217000000,0.011360751000000,0.000273748000000,0.000054883000000,0.000047772000000,0.000085303000000,0.000129945000000,0.000046207000000,0.000449154000000 +0.000018750500000,0.011110678000000,0.000118489000000,0.000043032000000,0.000015985000000,0.000042637000000,0.000027244000000,0.000046587000000,0.000046982000000,0.000023096000000,0.000075032000000,0.000102686000000,0.000160365000000,0.000170242000000,0.000205797000000,0.011149393000000,0.000201056000000,0.000055674000000,0.000092810000000,0.000085699000000,0.000162735000000,0.000028034500000,0.000412414000000 +0.000017762500000,0.011403418000000,0.000184068000000,0.000043032000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000047378000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000103476000000,0.000164710000000,0.000169452000000,0.000169056000000,0.011202331000000,0.000202241000000,0.000055674000000,0.000046587000000,0.000103476000000,0.000129550000000,0.000028232000000,0.000442833000000 +0.000018553000000,0.011299912000000,0.000122044000000,0.000040267000000,0.000015590000000,0.000042241000000,0.000026257000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039871000000,0.000114933000000,0.000160365000000,0.000170637000000,0.000169057000000,0.011219319000000,0.000200661000000,0.000095575000000,0.000045402000000,0.000125204000000,0.000131921000000,0.000028232000000,0.000410834000000 +0.000018553000000,0.010997690000000,0.000114933000000,0.000040662000000,0.000016182500000,0.000042637000000,0.000026651500000,0.000047377000000,0.000045797000000,0.000022898500000,0.000039871000000,0.000115723000000,0.000163131000000,0.000170637000000,0.000168661000000,0.011885788000000,0.000237402000000,0.000163130000000,0.000045797000000,0.000259920000000,0.000133501000000,0.000028232000000,0.000558192000000 +0.000018947500000,0.011731318000000,0.000126389000000,0.000043032000000,0.000016380000000,0.000042637000000,0.000026651500000,0.000046982000000,0.000047378000000,0.000022899000000,0.000039476000000,0.000109402000000,0.000197895000000,0.000174192000000,0.000168266000000,0.011269887000000,0.000197501000000,0.000090439000000,0.000046982000000,0.000104266000000,0.000131525000000,0.000028232000000,0.000448760000000 +0.000017763000000,0.011056159000000,0.000129945000000,0.000043032000000,0.000016380000000,0.000042241000000,0.000027047000000,0.000046588000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000116514000000,0.000160365000000,0.000171031000000,0.000204612000000,0.011041147000000,0.000199476000000,0.000059229000000,0.000046193000000,0.000115723000000,0.000129945000000,0.000028231500000,0.000464168000000 +0.000018750500000,0.011516405000000,0.000118489000000,0.000040267000000,0.000015590000000,0.000043032000000,0.000026849000000,0.000046193000000,0.000047378000000,0.000040281000000,0.000039871000000,0.000116909000000,0.000161945000000,0.000169451000000,0.000169846000000,0.011713146000000,0.000201451000000,0.000068316000000,0.000045797000000,0.000082933000000,0.000133896000000,0.000028232000000,0.000413204000000 +0.000017762500000,0.011049048000000,0.000162340000000,0.000039871000000,0.000016182500000,0.000041057000000,0.000026454000000,0.000046982000000,0.000083328000000,0.000022503500000,0.000039081000000,0.000151673000000,0.000160760000000,0.000171821000000,0.000169056000000,0.011892504000000,0.000236217000000,0.000055674000000,0.000046587000000,0.000120069000000,0.000131131000000,0.000028034500000,0.000447179000000 +0.000018750500000,0.011112652000000,0.000114538000000,0.000042242000000,0.000016380000000,0.000042241000000,0.000026849500000,0.000083723000000,0.000048562000000,0.000022503500000,0.000039872000000,0.000104266000000,0.000164315000000,0.000170241000000,0.000170241000000,0.011041936000000,0.000201451000000,0.000055278000000,0.000046982000000,0.000082933000000,0.000128365000000,0.000028231500000,0.000415574000000 +0.000018158000000,0.011009146000000,0.000114538000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000197896000000,0.000169846000000,0.000170636000000,0.011170331000000,0.000203032000000,0.000054884000000,0.000045797000000,0.000086093000000,0.000151673000000,0.000028232000000,0.000447179000000 +0.000018750500000,0.011238282000000,0.000128365000000,0.000042242000000,0.000015590000000,0.000042242000000,0.000026652000000,0.000046983000000,0.000047773000000,0.000022701000000,0.000039081000000,0.000117303000000,0.000160365000000,0.000169057000000,0.000170637000000,0.011518381000000,0.000198686000000,0.000055278000000,0.000046192000000,0.000118094000000,0.000133106000000,0.000028232000000,0.000410833000000 +0.000017763000000,0.011440159000000,0.000118094000000,0.000040266000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046588000000,0.000047377000000,0.000021911000000,0.000039081000000,0.000117303000000,0.000159970000000,0.000169846000000,0.000169451000000,0.011463862000000,0.000238192000000,0.000055674000000,0.000046192000000,0.000162736000000,0.000166291000000,0.000028231500000,0.000499722000000 +0.000017762500000,0.011072356000000,0.000164711000000,0.000039871000000,0.000015589500000,0.000042636000000,0.000026849000000,0.000046587000000,0.000048168000000,0.000022503500000,0.000039476000000,0.000117699000000,0.000163130000000,0.000172217000000,0.000170241000000,0.011094480000000,0.000201057000000,0.000055279000000,0.000045798000000,0.000090044000000,0.000131920000000,0.000028232000000,0.000409254000000 +0.000018158000000,0.011169541000000,0.000117303000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000036528500000,0.000047377000000,0.000046982000000,0.000022306000000,0.000039871000000,0.000117304000000,0.000164711000000,0.000172217000000,0.000168266000000,0.010986628000000,0.000203032000000,0.000054489000000,0.000046192000000,0.000093204000000,0.000129945000000,0.000028232000000,0.000412809000000 +0.000018750500000,0.011655467000000,0.000113748000000,0.000043031000000,0.000015787500000,0.000041846000000,0.000034750500000,0.000046983000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000151673000000,0.000257155000000,0.000169452000000,0.000205006000000,0.011209838000000,0.000201451000000,0.000056069000000,0.000047377000000,0.000272167000000,0.000167081000000,0.000046009500000,0.000410834000000 +0.000017762500000,0.011447665000000,0.000128760000000,0.000040266000000,0.000016380000000,0.000060809000000,0.000026651500000,0.000047772000000,0.000047377000000,0.000023096000000,0.000038686000000,0.000117303000000,0.000263476000000,0.000171427000000,0.000170241000000,0.011509294000000,0.000235031000000,0.000055673000000,0.000046587000000,0.000125205000000,0.000136266000000,0.000028232000000,0.000410833000000 +0.000018158000000,0.011045492000000,0.000118093000000,0.000040266000000,0.000033565000000,0.000093205000000,0.000026454000000,0.000046982000000,0.000048168000000,0.000022306000000,0.000039476000000,0.000116908000000,0.000161551000000,0.000209748000000,0.000170242000000,0.010891023000000,0.000201056000000,0.000055279000000,0.000046192000000,0.000095970000000,0.000127179000000,0.000028232000000,0.000414389000000 +0.000035540500000,0.011139121000000,0.000113748000000,0.000041451000000,0.000015392500000,0.000041451000000,0.000026652000000,0.000046982000000,0.000048167000000,0.000022701000000,0.000038686000000,0.000119674000000,0.000160760000000,0.000172217000000,0.000169846000000,0.011188899000000,0.000203032000000,0.000054883000000,0.000065945000000,0.000083328000000,0.000131920000000,0.000028034500000,0.000403723000000 +0.000018750500000,0.011540109000000,0.000128760000000,0.000039476000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000046983000000,0.000048958000000,0.000022898500000,0.000039081000000,0.000111377000000,0.000197896000000,0.000169846000000,0.000168662000000,0.011388800000000,0.000193551000000,0.000054884000000,0.000061995000000,0.000084118000000,0.000133896000000,0.000028232000000,0.000424266000000 +0.000017762500000,0.011487171000000,0.000144167000000,0.000042242000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000046587000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000118489000000,0.000160760000000,0.000171821000000,0.000203822000000,0.012098726000000,0.000249649000000,0.000055278000000,0.000046192000000,0.000084513000000,0.000144167000000,0.000028232000000,0.000408859000000 +0.000018158000000,0.010949493000000,0.000128760000000,0.000043032000000,0.000015590000000,0.000043032000000,0.000027047000000,0.000046982000000,0.000047773000000,0.000023096000000,0.000080168000000,0.000188019000000,0.000163526000000,0.000171031000000,0.000170242000000,0.011483615000000,0.000201056000000,0.000055674000000,0.000045797000000,0.000160365000000,0.000128760000000,0.000028231500000,0.000448760000000 +0.000019145500000,0.011015862000000,0.000128365000000,0.000040661000000,0.000015589500000,0.000041451000000,0.000026256500000,0.000046983000000,0.000048563000000,0.000022701000000,0.000039081000000,0.000116118000000,0.000160365000000,0.000170636000000,0.000170241000000,0.011636504000000,0.000202241000000,0.000055279000000,0.000045007000000,0.000082933000000,0.000131920000000,0.000028232000000,0.000410439000000 +0.000018948000000,0.011277789000000,0.000117699000000,0.000039871000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000047377000000,0.000047377000000,0.000022503500000,0.000038686000000,0.000114538000000,0.000162340000000,0.000170242000000,0.000168266000000,0.011158875000000,0.000200266000000,0.000056464000000,0.000045797000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000484316000000 +0.000017762500000,0.011305047000000,0.000127180000000,0.000039871000000,0.000016380000000,0.000042242000000,0.000026652000000,0.000046587000000,0.000045797000000,0.000022108500000,0.000039081000000,0.000116908000000,0.000199476000000,0.000171427000000,0.000168662000000,0.011490331000000,0.000238193000000,0.000055279000000,0.000046587000000,0.000083723000000,0.000169846000000,0.000028231500000,0.000413204000000 +0.000018158000000,0.011019023000000,0.000161945000000,0.000039476000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000047773000000,0.000022899000000,0.000038686000000,0.000098341000000,0.000161550000000,0.000169847000000,0.000299426000000,0.011070381000000,0.000198686000000,0.000054883000000,0.000046192000000,0.000090044000000,0.000128760000000,0.000028232000000,0.000446390000000 +0.000018948000000,0.011004406000000,0.000142192000000,0.000040266000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000046588000000,0.000101501000000,0.000040281000000,0.000039476000000,0.000119278000000,0.000161945000000,0.000178142000000,0.000188414000000,0.011162430000000,0.000202637000000,0.000055279000000,0.000046587000000,0.000088069000000,0.000128760000000,0.000028034500000,0.000407674000000 +0.000017960000000,0.011292011000000,0.000118094000000,0.000039871000000,0.000016380000000,0.000042637000000,0.000027047000000,0.000066340000000,0.000129550000000,0.000022898500000,0.000039081000000,0.000116513000000,0.000160760000000,0.000170242000000,0.000170242000000,0.011379319000000,0.000201452000000,0.000054883000000,0.000046983000000,0.000088859000000,0.000131131000000,0.000028231500000,0.000455871000000 +0.000019145500000,0.012299417000000,0.000132711000000,0.000039871000000,0.000016577500000,0.000042241000000,0.000026651500000,0.000047378000000,0.000083328000000,0.000022306000000,0.000039477000000,0.000121649000000,0.000159970000000,0.000171822000000,0.000170241000000,0.011457146000000,0.000449945000000,0.000055279000000,0.000046982000000,0.000090439000000,0.000131525000000,0.000028232000000,0.000410044000000 +0.000017763000000,0.011806775000000,0.000129155000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000154043000000,0.000022503500000,0.000039081000000,0.000116513000000,0.000201057000000,0.000169056000000,0.000207377000000,0.011154924000000,0.000228316000000,0.000055278000000,0.000045798000000,0.000090044000000,0.000170241000000,0.000028232000000,0.000443229000000 +0.000018355500000,0.011074332000000,0.000129945000000,0.000042636000000,0.000015392500000,0.000041452000000,0.000027047000000,0.000047377000000,0.000150883000000,0.000022503500000,0.000039081000000,0.000109007000000,0.000165105000000,0.000172216000000,0.000169846000000,0.011073147000000,0.000252415000000,0.000054884000000,0.000046587000000,0.000090044000000,0.000129550000000,0.000028232000000,0.000413204000000 +0.000018355500000,0.011084209000000,0.000169846000000,0.000043427000000,0.000016380000000,0.000041451000000,0.000034750000000,0.000046983000000,0.000063970000000,0.000022108500000,0.000039081000000,0.000109797000000,0.000163525000000,0.000219624000000,0.000169452000000,0.010948703000000,0.000213303000000,0.000054883000000,0.000047378000000,0.000087673000000,0.000132315000000,0.000046207500000,0.000499328000000 +0.000017762500000,0.011619121000000,0.000130340000000,0.000039872000000,0.000015589500000,0.000041452000000,0.000026849000000,0.000046587000000,0.000048562000000,0.000022898500000,0.000039871000000,0.000116908000000,0.000161945000000,0.000170241000000,0.000167871000000,0.011143468000000,0.000214093000000,0.000061205000000,0.000046982000000,0.000090044000000,0.000129551000000,0.000028231500000,0.000410043000000 +0.000018158000000,0.011133591000000,0.000122044000000,0.000043032000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000060414000000,0.000022306000000,0.000039476000000,0.000107427000000,0.000161550000000,0.000170241000000,0.000208167000000,0.011341788000000,0.000210932000000,0.000054883000000,0.000046192000000,0.000088069000000,0.000135476000000,0.000028232000000,0.000455081000000 +0.000017762500000,0.011220504000000,0.000130340000000,0.000042241000000,0.000015392500000,0.000042637000000,0.000027046500000,0.000046982000000,0.000047773000000,0.000022503500000,0.000039476000000,0.000137846000000,0.000199871000000,0.000170637000000,0.000235031000000,0.011134776000000,0.000252414000000,0.000055279000000,0.000046587000000,0.000092019000000,0.000201451000000,0.000028232000000,0.000408068000000 +0.000019145500000,0.011249739000000,0.000132710000000,0.000039871000000,0.000015392500000,0.000060810000000,0.000026651500000,0.000046588000000,0.000082142000000,0.000022503500000,0.000039476000000,0.000184069000000,0.000162735000000,0.000169451000000,0.000168661000000,0.011166381000000,0.000213303000000,0.000075032000000,0.000046587000000,0.000091624000000,0.000128760000000,0.000028232000000,0.000467328000000 +0.000018553000000,0.011732109000000,0.000132316000000,0.000041056000000,0.000015392500000,0.000041452000000,0.000026256500000,0.000046587000000,0.000047377000000,0.000022898500000,0.000038686000000,0.000129945000000,0.000164711000000,0.000172217000000,0.000170637000000,0.011362331000000,0.000277303000000,0.000071871000000,0.000066341000000,0.000090045000000,0.000130735000000,0.000028034500000,0.000408463000000 +0.000018948000000,0.011266332000000,0.000167476000000,0.000042637000000,0.000015589500000,0.000041451000000,0.000026256500000,0.000047377000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000103476000000,0.000160760000000,0.000169847000000,0.000169846000000,0.013964206000000,0.000215674000000,0.000068315000000,0.000096760000000,0.000096365000000,0.000131526000000,0.000028232000000,0.000445204000000 +0.000019145500000,0.011496257000000,0.000131526000000,0.000043032000000,0.000015392500000,0.000041452000000,0.000026849500000,0.000046983000000,0.000048562000000,0.000023096500000,0.000039476000000,0.000115328000000,0.000160365000000,0.000171032000000,0.000219229000000,0.012020899000000,0.000212513000000,0.000055279000000,0.000046588000000,0.000091625000000,0.000152858000000,0.000028232000000,0.000406884000000 +0.000017762500000,0.011007171000000,0.000127575000000,0.000040266000000,0.000015787500000,0.000042637000000,0.000026059000000,0.000046587000000,0.000047378000000,0.000022898500000,0.000040266000000,0.000109402000000,0.000200266000000,0.000172612000000,0.000168266000000,0.011638874000000,0.000209352000000,0.000055279000000,0.000046192000000,0.000090044000000,0.000131130000000,0.000028034000000,0.000488266000000 +0.000028429500000,0.011586332000000,0.000132316000000,0.000040266000000,0.000016182500000,0.000042241000000,0.000027046500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000075426000000,0.000181304000000,0.000160365000000,0.000171031000000,0.000170241000000,0.011728553000000,0.000209353000000,0.000054883000000,0.000047377000000,0.000088464000000,0.000130341000000,0.000028232000000,0.000413204000000 +0.000048973000000,0.011143863000000,0.000127179000000,0.000043032000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000047377000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000107822000000,0.000163921000000,0.000169451000000,0.000168662000000,0.012716207000000,0.000269797000000,0.000054884000000,0.000046192000000,0.000090439000000,0.000130736000000,0.000028232000000,0.000443624000000 +0.000019145500000,0.011426332000000,0.000127969000000,0.000056464000000,0.000025861500000,0.000042637000000,0.000026454500000,0.000046983000000,0.000048167000000,0.000022503500000,0.000039476000000,0.000160760000000,0.000162340000000,0.000169846000000,0.000169846000000,0.011834035000000,0.000293106000000,0.000055278000000,0.000046587000000,0.000088858000000,0.000135476000000,0.000028231500000,0.000406884000000 +0.000018158000000,0.010947517000000,0.000269401000000,0.000043031000000,0.000024479000000,0.000042241000000,0.000026651500000,0.000046587000000,0.000046588000000,0.000022108000000,0.000039082000000,0.000130340000000,0.000162340000000,0.000169847000000,0.000252810000000,0.012159961000000,0.000213303000000,0.000056464000000,0.000046193000000,0.000090439000000,0.000167871000000,0.000028232000000,0.000542784000000 +0.000019145500000,0.011265146000000,0.000337747000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000046587000000,0.000047772000000,0.000032182500000,0.000039081000000,0.000116513000000,0.000196711000000,0.000173797000000,0.000169451000000,0.012255171000000,0.000216464000000,0.000055278000000,0.000046587000000,0.000090044000000,0.000129946000000,0.000028232000000,0.000409649000000 +0.000017960000000,0.013407564000000,0.000159180000000,0.000039871000000,0.000016380500000,0.000041452000000,0.000027244500000,0.000046982000000,0.000046587000000,0.000042652000000,0.000040266000000,0.000102686000000,0.000160365000000,0.000171821000000,0.000169451000000,0.011401048000000,0.000213303000000,0.000055279000000,0.000045797000000,0.000090044000000,0.000129945000000,0.000028231500000,0.000407674000000 +0.000018158000000,0.012931910000000,0.000171426000000,0.000039476000000,0.000015392000000,0.000042636000000,0.000026256500000,0.000062785000000,0.000046982000000,0.000040479000000,0.000039871000000,0.000173797000000,0.000163920000000,0.000171032000000,0.000168661000000,0.011073146000000,0.000215278000000,0.000055674000000,0.000045402000000,0.000089254000000,0.000132710000000,0.000055491500000,0.000447575000000 +0.000017762500000,0.011549196000000,0.000142982000000,0.000043032000000,0.000016973000000,0.000042241000000,0.000061812000000,0.000060020000000,0.000046982000000,0.000031589500000,0.000039081000000,0.000115723000000,0.000160365000000,0.000170241000000,0.000206192000000,0.011456356000000,0.000213303000000,0.000055278000000,0.000046192000000,0.000089253000000,0.000131130000000,0.000028232000000,0.000406093000000 +0.000019145500000,0.011488356000000,0.000113747000000,0.000039872000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046982000000,0.000045798000000,0.000024478500000,0.000039081000000,0.000109402000000,0.000165106000000,0.000170636000000,0.000170242000000,0.011453590000000,0.000216068000000,0.000054884000000,0.000047378000000,0.000090044000000,0.000168266000000,0.000028034500000,0.000448760000000 +0.000018750500000,0.011122134000000,0.000130341000000,0.000039871000000,0.000016380000000,0.000042241000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000023096000000,0.000039081000000,0.000111377000000,0.000306933000000,0.000172612000000,0.000169451000000,0.010838085000000,0.000211722000000,0.000055278000000,0.000046192000000,0.000090044000000,0.000133106000000,0.000028231500000,0.000408464000000 +0.000018750500000,0.010983073000000,0.000116118000000,0.000039871000000,0.000015392500000,0.000042636000000,0.000027047000000,0.000046982000000,0.000046587000000,0.000022306000000,0.000039872000000,0.000102686000000,0.000179327000000,0.000171822000000,0.000169451000000,0.011105936000000,0.000215279000000,0.000055674000000,0.000045797000000,0.000088859000000,0.000131525000000,0.000028232000000,0.000483130000000 +0.000017762500000,0.011571714000000,0.000132316000000,0.000039871000000,0.000015787500000,0.000042637000000,0.000026849000000,0.000046983000000,0.000048958000000,0.000022898500000,0.000039081000000,0.000117304000000,0.000161155000000,0.000170637000000,0.000168661000000,0.011073937000000,0.000213303000000,0.000055279000000,0.000045402000000,0.000088859000000,0.000128760000000,0.000028232000000,0.000407278000000 +0.000018948000000,0.011492701000000,0.000169056000000,0.000043032000000,0.000015590000000,0.000043427000000,0.000027047000000,0.000046982000000,0.000066735000000,0.000022108500000,0.000039476000000,0.000109007000000,0.000160364000000,0.000169847000000,0.000283229000000,0.011194825000000,0.000279673000000,0.000054884000000,0.000045797000000,0.000090439000000,0.000131526000000,0.000028034000000,0.000447180000000 +0.000017960500000,0.011124109000000,0.000129155000000,0.000043031000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000046982000000,0.000063970000000,0.000023096000000,0.000039081000000,0.000181698000000,0.000200266000000,0.000169847000000,0.000396612000000,0.011536553000000,0.000213303000000,0.000055279000000,0.000066341000000,0.000087673000000,0.000131921000000,0.000028232000000,0.000405698000000 +0.000018750500000,0.011280554000000,0.000128760000000,0.000040266000000,0.000016380500000,0.000043822000000,0.000026651500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000163525000000,0.000170242000000,0.000170241000000,0.011386035000000,0.000214488000000,0.000054883000000,0.000045797000000,0.000093994000000,0.000132710000000,0.000028232000000,0.000494587000000 +0.000018355000000,0.011106331000000,0.000130736000000,0.000039871000000,0.000016380500000,0.000112168000000,0.000026652000000,0.000046588000000,0.000047773000000,0.000022503500000,0.000040266000000,0.000117699000000,0.000163525000000,0.000170242000000,0.000205797000000,0.011355220000000,0.000212513000000,0.000055279000000,0.000045402000000,0.000089254000000,0.000129946000000,0.000028232000000,0.000407673000000 +0.000017763000000,0.011741590000000,0.000110587000000,0.000040266000000,0.000015589500000,0.000057254000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000022701000000,0.000039082000000,0.000102686000000,0.000163920000000,0.000169452000000,0.000168661000000,0.011170332000000,0.000205797000000,0.000055673000000,0.000065945000000,0.000092414000000,0.000130735000000,0.000028034500000,0.000449945000000 +0.000018750500000,0.011051813000000,0.000117699000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000026849000000,0.000046982000000,0.000045798000000,0.000021910500000,0.000039081000000,0.000114933000000,0.000165896000000,0.000172217000000,0.000169846000000,0.011172702000000,0.000211723000000,0.000056464000000,0.000061600000000,0.000088859000000,0.000151279000000,0.000028232000000,0.000421500000000 +0.000018750000000,0.011109492000000,0.000118093000000,0.000039476000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000046982000000,0.000048167000000,0.000022503500000,0.000039476000000,0.000118488000000,0.000198291000000,0.000170637000000,0.000169452000000,0.010859813000000,0.000212118000000,0.000056464000000,0.000060415000000,0.000087279000000,0.000131525000000,0.000028034500000,0.000874636000000 +0.000017763000000,0.010975172000000,0.000113353000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026454500000,0.000047378000000,0.000048563000000,0.000022306000000,0.000039082000000,0.000196711000000,0.000162736000000,0.000174192000000,0.000169056000000,0.011007171000000,0.000213303000000,0.000054883000000,0.000045797000000,0.000090044000000,0.000131131000000,0.000028232000000,0.000444809000000 +0.000017762500000,0.011612010000000,0.000129945000000,0.000040266000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000047377000000,0.000046982000000,0.000022503500000,0.000075032000000,0.000107427000000,0.000161945000000,0.000172612000000,0.000205007000000,0.011472554000000,0.000214094000000,0.000055674000000,0.000046192000000,0.000088859000000,0.000131920000000,0.000028232000000,0.000410834000000 +0.000018158000000,0.011216948000000,0.000129945000000,0.000039871000000,0.000015590000000,0.000041847000000,0.000027047000000,0.000046982000000,0.000047773000000,0.000043639500000,0.000039081000000,0.000115328000000,0.000160365000000,0.000212908000000,0.000170637000000,0.011337443000000,0.000206587000000,0.000055673000000,0.000046982000000,0.000087673000000,0.000129550000000,0.000046207000000,0.000444809000000 +0.000036528000000,0.011336652000000,0.000130341000000,0.000042637000000,0.000015590000000,0.000042637000000,0.000044627000000,0.000046983000000,0.000045797000000,0.000022503500000,0.000039871000000,0.000116513000000,0.000163921000000,0.000170242000000,0.000171032000000,0.010996504000000,0.000215278000000,0.000054884000000,0.000046587000000,0.000090044000000,0.000165896000000,0.000028232000000,0.000407673000000 +0.000018158000000,0.010880357000000,0.000129155000000,0.000043032000000,0.000016380000000,0.000041451000000,0.000027244000000,0.000065550000000,0.000045797000000,0.000022108500000,0.000039081000000,0.000117698000000,0.000198290000000,0.000172217000000,0.000170636000000,0.010996109000000,0.000230291000000,0.000055674000000,0.000046588000000,0.000091229000000,0.000129945000000,0.000028232000000,0.000503279000000 +0.000018355500000,0.011289640000000,0.000127575000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000090834000000,0.000046588000000,0.000022108500000,0.000039872000000,0.000110587000000,0.000160760000000,0.000263081000000,0.000189995000000,0.011120554000000,0.000214093000000,0.000055279000000,0.000046982000000,0.000088859000000,0.000130735000000,0.000028231500000,0.000414389000000 +0.000018552500000,0.011129640000000,0.000129945000000,0.000042241000000,0.000015589500000,0.000041452000000,0.000027046500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000174192000000,0.000160365000000,0.000172612000000,0.000170637000000,0.011532998000000,0.000213303000000,0.000054884000000,0.000046983000000,0.000089253000000,0.000131130000000,0.000028232000000,0.000448760000000 +0.000018355500000,0.011035220000000,0.000130340000000,0.000042242000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000047377000000,0.000048563000000,0.000022898500000,0.000039871000000,0.000114538000000,0.000164711000000,0.000169846000000,0.000169846000000,0.011032455000000,0.000214883000000,0.000055278000000,0.000048167000000,0.000088463000000,0.000131526000000,0.000028232000000,0.000413204000000 +0.000018948000000,0.011138331000000,0.000130736000000,0.000039872000000,0.000016380000000,0.000041452000000,0.000026652000000,0.000046983000000,0.000048958000000,0.000022306000000,0.000039871000000,0.000103081000000,0.000160365000000,0.000173402000000,0.000167871000000,0.011204307000000,0.000210933000000,0.000055279000000,0.000046588000000,0.000091624000000,0.000152859000000,0.000028231500000,0.000457847000000 +0.000018355500000,0.011549986000000,0.000128760000000,0.000039871000000,0.000032577500000,0.000041451000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000199476000000,0.000171822000000,0.000169056000000,0.011038381000000,0.000214489000000,0.000055278000000,0.000046192000000,0.000090439000000,0.000131920000000,0.000028232000000,0.000405303000000 +0.000017762500000,0.011117789000000,0.000129155000000,0.000043032000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000048563000000,0.000022503500000,0.000040266000000,0.000116908000000,0.000161945000000,0.000169846000000,0.000205797000000,0.011401837000000,0.000213698000000,0.000055674000000,0.000046192000000,0.000090439000000,0.000130735000000,0.000028034500000,0.000499722000000 +0.000018158000000,0.011006381000000,0.000148118000000,0.000042241000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000092414000000,0.000022503500000,0.000039476000000,0.000107032000000,0.000160365000000,0.000170241000000,0.000169451000000,0.011062875000000,0.000215278000000,0.000055674000000,0.000082142000000,0.000088069000000,0.000130735000000,0.000028232000000,0.000408068000000 +0.000017960000000,0.010989789000000,0.000129550000000,0.000039871000000,0.000015985000000,0.000043031000000,0.000026652000000,0.000047378000000,0.000047773000000,0.000022898500000,0.000039081000000,0.000116513000000,0.000161945000000,0.000172216000000,0.000171032000000,0.011126084000000,0.000213303000000,0.000055279000000,0.000045797000000,0.000090044000000,0.000136661000000,0.000028232000000,0.000406883000000 +0.000018750500000,0.010944356000000,0.000127575000000,0.000039476000000,0.000016380000000,0.000042637000000,0.000026849000000,0.000046587000000,0.000047772000000,0.000023491000000,0.000039081000000,0.000154044000000,0.000160365000000,0.000171031000000,0.000169451000000,0.011050628000000,0.000214094000000,0.000055279000000,0.000045007000000,0.000088069000000,0.000128760000000,0.000028232000000,0.000425846000000 +0.000018355500000,0.011666924000000,0.000118094000000,0.000042636000000,0.000015392500000,0.000041057000000,0.000026454000000,0.000046982000000,0.000046983000000,0.000023689000000,0.000039871000000,0.000115328000000,0.000200266000000,0.000170636000000,0.000170242000000,0.011414875000000,0.000213303000000,0.000054883000000,0.000045402000000,0.000090834000000,0.000131921000000,0.000028232000000,0.000404908000000 +0.000018750500000,0.010946726000000,0.000131525000000,0.000039871000000,0.000015590000000,0.000079772000000,0.000027047000000,0.000046983000000,0.000046587000000,0.000022701000000,0.000040266000000,0.000117698000000,0.000161946000000,0.000172612000000,0.000205797000000,0.011019813000000,0.000215278000000,0.000055674000000,0.000046982000000,0.000090439000000,0.000131920000000,0.000028232000000,0.000432563000000 +0.000018553000000,0.011039171000000,0.000118884000000,0.000043032000000,0.000015590000000,0.000056068000000,0.000026256500000,0.000046983000000,0.000045797000000,0.000022108500000,0.000039477000000,0.000117303000000,0.000160365000000,0.000170242000000,0.000171032000000,0.011023764000000,0.000250044000000,0.000055278000000,0.000045402000000,0.000089254000000,0.000150488000000,0.000028232000000,0.000410834000000 +0.000018553000000,0.010983862000000,0.000131525000000,0.000040267000000,0.000015590000000,0.000041847000000,0.000026454000000,0.000047377000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000107031000000,0.000160365000000,0.000169847000000,0.000170241000000,0.011973096000000,0.000214094000000,0.000055279000000,0.000046588000000,0.000090439000000,0.000167081000000,0.000028232000000,0.000445205000000 +0.000017762500000,0.011369442000000,0.000113353000000,0.000039477000000,0.000016182500000,0.000041847000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000104267000000,0.000162341000000,0.000171427000000,0.000169847000000,0.011400258000000,0.000213698000000,0.000055278000000,0.000045402000000,0.000089254000000,0.000132711000000,0.000046602500000,0.000408464000000 +0.000018158000000,0.011116999000000,0.000115328000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000044232000000,0.000046588000000,0.000047378000000,0.000022701000000,0.000039477000000,0.000173797000000,0.000201846000000,0.000172217000000,0.000170242000000,0.010979122000000,0.000215278000000,0.000054884000000,0.000045797000000,0.000087674000000,0.000130735000000,0.000080775000000,0.000478784000000 +0.000018750500000,0.011324800000000,0.000116908000000,0.000061600000000,0.000016775000000,0.000042242000000,0.000027046500000,0.000047377000000,0.000047772000000,0.000023293500000,0.000072661000000,0.000118883000000,0.000163526000000,0.000172612000000,0.000205402000000,0.011045097000000,0.000213698000000,0.000055674000000,0.000046193000000,0.000094390000000,0.000130341000000,0.000046800000000,0.000410439000000 +0.000018750500000,0.010958578000000,0.000113352000000,0.000039476000000,0.000016380000000,0.000041057000000,0.000026256500000,0.000046587000000,0.000046193000000,0.000047392500000,0.000039476000000,0.000099130000000,0.000195130000000,0.000170636000000,0.000169056000000,0.011273047000000,0.000214093000000,0.000054883000000,0.000046192000000,0.000090834000000,0.000129155000000,0.000036528000000,0.000481155000000 +0.000019145000000,0.011532208000000,0.000110982000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000026652000000,0.000083328000000,0.000047772000000,0.000028824500000,0.000039081000000,0.000117698000000,0.000161550000000,0.000169846000000,0.000169452000000,0.011231566000000,0.000213698000000,0.000054884000000,0.000046983000000,0.000125204000000,0.000241352000000,0.000034948000000,0.000446390000000 +0.000017763000000,0.011147023000000,0.000114538000000,0.000039871000000,0.000015392500000,0.000042637000000,0.000027046500000,0.000046982000000,0.000047378000000,0.000022898500000,0.000039081000000,0.000118094000000,0.000160365000000,0.000173402000000,0.000170241000000,0.011091715000000,0.000216464000000,0.000055278000000,0.000046192000000,0.000090044000000,0.000131130000000,0.000028232000000,0.000445205000000 +0.000018553000000,0.011552751000000,0.000146538000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046983000000,0.000046587000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000161945000000,0.000169847000000,0.000188415000000,0.011303467000000,0.000207377000000,0.000055279000000,0.000045797000000,0.000090439000000,0.000134291000000,0.000028231500000,0.000410439000000 +0.000028627000000,0.011496257000000,0.000130735000000,0.000054094000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000109797000000,0.000160760000000,0.000172612000000,0.000169846000000,0.011476505000000,0.000214093000000,0.000055278000000,0.000047773000000,0.000090439000000,0.000131921000000,0.000028034500000,0.000441649000000 +0.000018158000000,0.011982578000000,0.000132710000000,0.000040662000000,0.000016380000000,0.000041847000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000023096000000,0.000039476000000,0.000184464000000,0.000162735000000,0.000169846000000,0.000169056000000,0.011702875000000,0.000213698000000,0.000055279000000,0.000045007000000,0.000092019000000,0.000203822000000,0.000028232000000,0.000408858000000 +0.000017762500000,0.011184949000000,0.000127575000000,0.000038291000000,0.000016380000000,0.000042637000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000116513000000,0.000160760000000,0.000172216000000,0.000169846000000,0.011372603000000,0.000378439000000,0.000055278000000,0.000046588000000,0.000090439000000,0.000132316000000,0.000028231500000,0.000730833000000 +0.000017763000000,0.011157294000000,0.000131131000000,0.000037501000000,0.000015590000000,0.000041846000000,0.000026652000000,0.000047378000000,0.000046983000000,0.000022306000000,0.000039476000000,0.000103872000000,0.000180908000000,0.000171822000000,0.000168661000000,0.011358381000000,0.000245304000000,0.000055279000000,0.000048957000000,0.000095575000000,0.000131130000000,0.000028034500000,0.000459822000000 +0.000017762500000,0.011052603000000,0.000114143000000,0.000037896000000,0.000016775000000,0.000042637000000,0.000027046500000,0.000046982000000,0.000083328000000,0.000022306000000,0.000039477000000,0.000117303000000,0.000163525000000,0.000170637000000,0.000262290000000,0.011042726000000,0.000213698000000,0.000055278000000,0.000082537000000,0.000089254000000,0.000133896000000,0.000028232000000,0.000410044000000 +0.000018750500000,0.011300701000000,0.000168266000000,0.000036710000000,0.000016775000000,0.000042242000000,0.000026652000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000161946000000,0.000169846000000,0.000168267000000,0.011387220000000,0.000250834000000,0.000056069000000,0.000046192000000,0.000090044000000,0.000150489000000,0.000046207000000,0.000444019000000 +0.000017763000000,0.011346924000000,0.000179722000000,0.000037896000000,0.000015787500000,0.000041451000000,0.000026651500000,0.000046192000000,0.000048563000000,0.000022701000000,0.000039476000000,0.000103476000000,0.000161155000000,0.000170636000000,0.000169846000000,0.011334677000000,0.000214883000000,0.000055674000000,0.000046982000000,0.000088859000000,0.000127970000000,0.000028232000000,0.000410833000000 +0.000017762500000,0.011170332000000,0.000129945000000,0.000060019000000,0.000015787500000,0.000042242000000,0.000026256500000,0.000046588000000,0.000047377000000,0.000022306000000,0.000039872000000,0.000188020000000,0.000161156000000,0.000171426000000,0.000169847000000,0.011062085000000,0.000212118000000,0.000055673000000,0.000045797000000,0.000090044000000,0.000132316000000,0.000028232000000,0.000460611000000 +0.000017960500000,0.011160850000000,0.000131920000000,0.000083328000000,0.000015590000000,0.000061995000000,0.000027047000000,0.000046587000000,0.000047773000000,0.000022898500000,0.000039476000000,0.000116908000000,0.000196315000000,0.000169846000000,0.000168267000000,0.011357195000000,0.000213698000000,0.000054884000000,0.000046192000000,0.000090044000000,0.000127180000000,0.000028232000000,0.000409649000000 +0.000018553000000,0.011339417000000,0.000129155000000,0.000040267000000,0.000033565500000,0.000093600000000,0.000026849000000,0.000046587000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000165106000000,0.000172216000000,0.000277698000000,0.011336653000000,0.000250044000000,0.000055278000000,0.000046587000000,0.000088858000000,0.000131920000000,0.000028232000000,0.000444809000000 +0.000018750500000,0.011455566000000,0.000130340000000,0.000043031000000,0.000016380000000,0.000041846000000,0.000036528000000,0.000046982000000,0.000045798000000,0.000021911000000,0.000039872000000,0.000102291000000,0.000165501000000,0.000172217000000,0.000168661000000,0.011435813000000,0.000215279000000,0.000055674000000,0.000046587000000,0.000087278000000,0.000211723000000,0.000028232000000,0.000407674000000 +0.000017762500000,0.011342578000000,0.000167081000000,0.000054093000000,0.000015590000000,0.000041452000000,0.000054108500000,0.000046983000000,0.000046982000000,0.000022898500000,0.000039476000000,0.000116118000000,0.000163525000000,0.000173402000000,0.000169846000000,0.011717887000000,0.000213304000000,0.000055279000000,0.000047377000000,0.000088464000000,0.000131525000000,0.000028232000000,0.000444019000000 +0.000018553000000,0.010938430000000,0.000118094000000,0.000106242000000,0.000015589500000,0.000041451000000,0.000026256500000,0.000047377000000,0.000046982000000,0.000022899000000,0.000039476000000,0.000114933000000,0.000161550000000,0.000176958000000,0.000167871000000,0.011129245000000,0.000214094000000,0.000055673000000,0.000046982000000,0.000088464000000,0.000127575000000,0.000028232000000,0.000408068000000 +0.000018750500000,0.011652702000000,0.000131130000000,0.000039476000000,0.000015590000000,0.000042242000000,0.000027047000000,0.000046587000000,0.000045797000000,0.000032380000000,0.000039871000000,0.000101896000000,0.000233056000000,0.000172217000000,0.000251624000000,0.011484800000000,0.000249649000000,0.000055674000000,0.000047378000000,0.000090439000000,0.000129155000000,0.000028232000000,0.000449945000000 +0.000018158000000,0.011284505000000,0.000131131000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000027046500000,0.000100711000000,0.000048562000000,0.000021911000000,0.000039081000000,0.000256760000000,0.000163525000000,0.000169847000000,0.000169847000000,0.011879862000000,0.000214093000000,0.000054883000000,0.000045402000000,0.000089649000000,0.000131526000000,0.000028231500000,0.000412809000000 +0.000017565000000,0.011049838000000,0.000117303000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000027047000000,0.000081748000000,0.000046193000000,0.000022306000000,0.000056069000000,0.000115328000000,0.000162735000000,0.000174587000000,0.000169451000000,0.010937641000000,0.000213303000000,0.000054884000000,0.000046192000000,0.000091624000000,0.000146933000000,0.000028232000000,0.000442834000000 +0.000019145500000,0.011181788000000,0.000129550000000,0.000038686000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000060414000000,0.000045797000000,0.000022108500000,0.000039081000000,0.000116513000000,0.000165106000000,0.000171426000000,0.000169451000000,0.011375369000000,0.000213698000000,0.000055278000000,0.000048563000000,0.000089648000000,0.000132315000000,0.000028232000000,0.000414389000000 +0.000019145500000,0.011323220000000,0.000210143000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000047377000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000160760000000,0.000172217000000,0.000168661000000,0.011277788000000,0.000212908000000,0.000055279000000,0.000046982000000,0.000090044000000,0.000128365000000,0.000028232000000,0.000444414000000 +0.000017960000000,0.011721048000000,0.000122834000000,0.000040266000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000047378000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000118094000000,0.000197106000000,0.000171032000000,0.000212908000000,0.011517985000000,0.000214883000000,0.000055674000000,0.000047772000000,0.000086884000000,0.000132315000000,0.000028232000000,0.000408858000000 +0.000018158000000,0.011299121000000,0.000118094000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046982000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000153649000000,0.000163920000000,0.000169846000000,0.000168266000000,0.010919863000000,0.000211723000000,0.000055278000000,0.000046982000000,0.000090439000000,0.000203032000000,0.000028232000000,0.000447574000000 +0.000017960000000,0.011037591000000,0.000112957000000,0.000037501000000,0.000015787500000,0.000043032000000,0.000027046500000,0.000047377000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000118488000000,0.000160760000000,0.000169846000000,0.000171032000000,0.011355616000000,0.000261106000000,0.000055279000000,0.000046982000000,0.000093994000000,0.000131131000000,0.000047392500000,0.000411229000000 +0.000017960500000,0.011135171000000,0.000118093000000,0.000040661000000,0.000016775000000,0.000042636000000,0.000026256500000,0.000047378000000,0.000048168000000,0.000022503500000,0.000039476000000,0.000104661000000,0.000164315000000,0.000174192000000,0.000168661000000,0.011263961000000,0.000213303000000,0.000054488000000,0.000045797000000,0.000092809000000,0.000131525000000,0.000041861500000,0.000494192000000 +0.000018750500000,0.011391566000000,0.000131525000000,0.000038291000000,0.000016182500000,0.000043427000000,0.000027046500000,0.000047772000000,0.000099130000000,0.000022108500000,0.000039477000000,0.000115723000000,0.000162341000000,0.000169452000000,0.000188810000000,0.011866035000000,0.000214883000000,0.000055279000000,0.000082142000000,0.000088069000000,0.000129550000000,0.000028232000000,0.000406093000000 +0.000038306000000,0.011004405000000,0.000163525000000,0.000039872000000,0.000015589500000,0.000061205000000,0.000027047000000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000116513000000,0.000246094000000,0.000169451000000,0.000184464000000,0.011110282000000,0.000213303000000,0.000054488000000,0.000046982000000,0.000088463000000,0.000129945000000,0.000028231500000,0.000493007000000 +0.000026059000000,0.011191665000000,0.000110193000000,0.000037501000000,0.000015590000000,0.000059229000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039476000000,0.000115723000000,0.000160365000000,0.000172217000000,0.000169451000000,0.012106628000000,0.000278884000000,0.000054884000000,0.000046192000000,0.000093599000000,0.000129155000000,0.000028232000000,0.000411229000000 +0.000018750500000,0.011130431000000,0.000131920000000,0.000037500000000,0.000015590000000,0.000056464000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000022306000000,0.000039871000000,0.000116513000000,0.000160365000000,0.000171032000000,0.000169452000000,0.011839960000000,0.000213303000000,0.000055673000000,0.000046193000000,0.000083723000000,0.000130340000000,0.000028034500000,0.000451525000000 +0.000018750500000,0.011215369000000,0.000113747000000,0.000037896000000,0.000015392500000,0.000061600000000,0.000044429500000,0.000047377000000,0.000048957000000,0.000022701000000,0.000039081000000,0.000117303000000,0.000163525000000,0.000257550000000,0.000168662000000,0.011572899000000,0.000213303000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000132711000000,0.000028231500000,0.000412019000000 +0.000018750500000,0.011243418000000,0.000131131000000,0.000039871000000,0.000016380000000,0.000042241000000,0.000026454500000,0.000046982000000,0.000048563000000,0.000022108500000,0.000039081000000,0.000116908000000,0.000160365000000,0.000169847000000,0.000206192000000,0.011056949000000,0.000213699000000,0.000055279000000,0.000046587000000,0.000086488000000,0.000131526000000,0.000028232000000,0.000449945000000 +0.000018553000000,0.011255664000000,0.000129945000000,0.000037895000000,0.000016380000000,0.000042637000000,0.000026849000000,0.000046983000000,0.000048167000000,0.000022898500000,0.000038686000000,0.000116514000000,0.000201057000000,0.000172612000000,0.000168266000000,0.011503763000000,0.000257550000000,0.000075822000000,0.000045402000000,0.000088859000000,0.000214488000000,0.000028034500000,0.000412809000000 +0.000017763000000,0.011089343000000,0.000162340000000,0.000037896000000,0.000015787500000,0.000041451000000,0.000026651500000,0.000046587000000,0.000048562000000,0.000022898500000,0.000039081000000,0.000102291000000,0.000161550000000,0.000170242000000,0.000169451000000,0.011394726000000,0.000213698000000,0.000055278000000,0.000046192000000,0.000088069000000,0.000128760000000,0.000028232000000,0.000445600000000 +0.000017762500000,0.011816652000000,0.000118489000000,0.000037895000000,0.000016380000000,0.000042241000000,0.000026849500000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000098735000000,0.000165106000000,0.000178143000000,0.000169451000000,0.012016158000000,0.000214488000000,0.000055674000000,0.000045797000000,0.000123624000000,0.000137847000000,0.000028231500000,0.000413205000000 +0.000018158000000,0.010877196000000,0.000131130000000,0.000053699000000,0.000015392000000,0.000042637000000,0.000027046500000,0.000065945000000,0.000048562000000,0.000022503500000,0.000039082000000,0.000115723000000,0.000161155000000,0.000173007000000,0.000168661000000,0.011497047000000,0.000284020000000,0.000054883000000,0.000046982000000,0.000099526000000,0.000131130000000,0.000028232000000,0.000447969000000 +0.000017762500000,0.012150479000000,0.000112958000000,0.000040267000000,0.000015590000000,0.000041452000000,0.000026849500000,0.000062784000000,0.000047378000000,0.000045812000000,0.000039081000000,0.000152069000000,0.000160760000000,0.000169451000000,0.000205797000000,0.011437393000000,0.000214093000000,0.000055279000000,0.000046587000000,0.000085303000000,0.000131131000000,0.000028232000000,0.000407673000000 +0.000017763000000,0.011639269000000,0.000127575000000,0.000040661000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046983000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000235822000000,0.000172611000000,0.000168266000000,0.011668899000000,0.000212513000000,0.000054489000000,0.000046587000000,0.000084513000000,0.000146538000000,0.000028231500000,0.000445995000000 +0.000018553000000,0.011610035000000,0.000115328000000,0.000037896000000,0.000024874000000,0.000041452000000,0.000026849000000,0.000046587000000,0.000046193000000,0.000022503500000,0.000075427000000,0.000107032000000,0.000163525000000,0.000169451000000,0.000169846000000,0.011895269000000,0.000214883000000,0.000055278000000,0.000046982000000,0.000084909000000,0.000128760000000,0.000028232000000,0.000412809000000 +0.000019145500000,0.011091714000000,0.000163131000000,0.000037500000000,0.000023886000000,0.000043822000000,0.000026849500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000040266000000,0.000118883000000,0.000163130000000,0.000207377000000,0.000168266000000,0.011446084000000,0.000250439000000,0.000056069000000,0.000045797000000,0.000088463000000,0.000129155000000,0.000049170000000,0.000443229000000 +0.000018158000000,0.011294776000000,0.000122044000000,0.000037501000000,0.000015590000000,0.000043822000000,0.000026454000000,0.000047377000000,0.000046983000000,0.000023096500000,0.000039082000000,0.000115723000000,0.000163525000000,0.000169056000000,0.000171426000000,0.011779516000000,0.000213303000000,0.000054883000000,0.000047377000000,0.000120069000000,0.000134290000000,0.000028232000000,0.000409649000000 +0.000018158000000,0.011209048000000,0.000129945000000,0.000038291000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000046983000000,0.000048562000000,0.000022306000000,0.000039081000000,0.000118488000000,0.000185254000000,0.000172612000000,0.000186043000000,0.011339813000000,0.000212118000000,0.000055674000000,0.000046588000000,0.000103871000000,0.000226340000000,0.000028232000000,0.000451920000000 +0.000017762500000,0.011513245000000,0.000128760000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026652000000,0.000046982000000,0.000066735000000,0.000022108500000,0.000039081000000,0.000099131000000,0.000161945000000,0.000238192000000,0.000170241000000,0.011630973000000,0.000214883000000,0.000055278000000,0.000045402000000,0.000085303000000,0.000150883000000,0.000028231500000,0.000412414000000 +0.000018553000000,0.010934480000000,0.000127180000000,0.000037500000000,0.000015985000000,0.000042637000000,0.000027244000000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039477000000,0.000141007000000,0.000162736000000,0.000171427000000,0.000168266000000,0.011399467000000,0.000229500000000,0.000054884000000,0.000048168000000,0.000084908000000,0.000135476000000,0.000028232000000,0.000424266000000 +0.000018948000000,0.010987814000000,0.000110192000000,0.000037896000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046587000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000161945000000,0.000173401000000,0.000169846000000,0.014285786000000,0.000211723000000,0.000054883000000,0.000081352000000,0.000086094000000,0.000132710000000,0.000028232000000,0.000412414000000 +0.000017762500000,0.010992159000000,0.000163526000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000026652000000,0.000046588000000,0.000046587000000,0.000022108500000,0.000039081000000,0.000107427000000,0.000160760000000,0.000174982000000,0.000207378000000,0.013464848000000,0.000213303000000,0.000054884000000,0.000045797000000,0.000082933000000,0.000166686000000,0.000028232000000,0.000536464000000 +0.000018553000000,0.011229196000000,0.000129155000000,0.000039871000000,0.000015787500000,0.000042637000000,0.000044231500000,0.000046587000000,0.000046982000000,0.000023096500000,0.000039476000000,0.000115328000000,0.000200661000000,0.000170636000000,0.000375674000000,0.014355317000000,0.000251229000000,0.000056069000000,0.000046982000000,0.000088069000000,0.000132316000000,0.000028232000000,0.000444019000000 +0.000017763000000,0.011407368000000,0.000128365000000,0.000040661000000,0.000015787500000,0.000041451000000,0.000026454500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000152859000000,0.000161550000000,0.000169847000000,0.000187624000000,0.012293096000000,0.000213303000000,0.000055278000000,0.000046193000000,0.000085698000000,0.000134686000000,0.000028232000000,0.000414784000000 +0.000018158000000,0.011254084000000,0.000126785000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000111772000000,0.000160365000000,0.000219624000000,0.000169452000000,0.016572797000000,0.000213698000000,0.000055674000000,0.000045402000000,0.000084908000000,0.000129551000000,0.000028232000000,0.000484711000000 +0.000035343000000,0.011005591000000,0.000133500000000,0.000039871000000,0.000016380000000,0.000041847000000,0.000026256500000,0.000047378000000,0.000046587000000,0.000022898500000,0.000038686000000,0.000139031000000,0.000160760000000,0.000169847000000,0.000205402000000,0.013129441000000,0.000213698000000,0.000055278000000,0.000046587000000,0.000084908000000,0.000139032000000,0.000028231500000,0.000410834000000 +0.000025071500000,0.011581590000000,0.000131526000000,0.000039872000000,0.000015392500000,0.000095574000000,0.000026651500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000165500000000,0.000170242000000,0.000169452000000,0.013419021000000,0.000251229000000,0.000055674000000,0.000046587000000,0.000120069000000,0.000176562000000,0.000028232000000,0.000459427000000 +0.000017762500000,0.011267912000000,0.000153254000000,0.000037896000000,0.000016775000000,0.000095970000000,0.000027244000000,0.000046587000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000115723000000,0.000196711000000,0.000169846000000,0.000169846000000,0.012664059000000,0.000213699000000,0.000054883000000,0.000046982000000,0.000099526000000,0.000139031000000,0.000028232000000,0.000409254000000 +0.000017763000000,0.011441344000000,0.000131920000000,0.000037896000000,0.000015590000000,0.000108612000000,0.000026849000000,0.000046983000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000109007000000,0.000163130000000,0.000171427000000,0.000169057000000,0.013985539000000,0.000214094000000,0.000054884000000,0.000045798000000,0.000089254000000,0.000132316000000,0.000028231500000,0.000516710000000 +0.000017762500000,0.013298133000000,0.000129945000000,0.000039871000000,0.000015590000000,0.000043822000000,0.000026454500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000107427000000,0.000161946000000,0.000174192000000,0.000167871000000,0.013253095000000,0.000213303000000,0.000055279000000,0.000046587000000,0.000081748000000,0.000137056000000,0.000028232000000,0.000409253000000 +0.000018750500000,0.011656257000000,0.000129945000000,0.000092415000000,0.000015590000000,0.000071871000000,0.000027244000000,0.000063180000000,0.000046587000000,0.000022306000000,0.000039476000000,0.000115723000000,0.000160760000000,0.000172217000000,0.000167871000000,0.013372009000000,0.000312858000000,0.000055279000000,0.000045402000000,0.000085303000000,0.000187625000000,0.000038306000000,0.000445204000000 +0.000017763000000,0.011537344000000,0.000110193000000,0.000074636000000,0.000015787500000,0.000042637000000,0.000026849500000,0.000046587000000,0.000046192000000,0.000040083500000,0.000039081000000,0.000116118000000,0.000161550000000,0.000169846000000,0.000169451000000,0.012869885000000,0.000213303000000,0.000055279000000,0.000046982000000,0.000082933000000,0.000129155000000,0.000049367500000,0.000412019000000 +0.000018750000000,0.012782972000000,0.000112957000000,0.000073056000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000046982000000,0.000046192000000,0.000022108500000,0.000039081000000,0.000152069000000,0.000197105000000,0.000170637000000,0.000169451000000,0.012366578000000,0.000214488000000,0.000054883000000,0.000046192000000,0.000084909000000,0.000130340000000,0.000034553000000,0.000492216000000 +0.000018158000000,0.011616356000000,0.000184464000000,0.000040267000000,0.000015590000000,0.000041056000000,0.000026454000000,0.000046587000000,0.000048168000000,0.000022108500000,0.000040266000000,0.000114538000000,0.000163526000000,0.000207378000000,0.000169846000000,0.011419615000000,0.000267031000000,0.000056464000000,0.000046588000000,0.000082538000000,0.000129155000000,0.000028232000000,0.000415179000000 +0.000018158000000,0.011471763000000,0.000126784000000,0.000037896000000,0.000015589500000,0.000042637000000,0.000027047000000,0.000046983000000,0.000046192000000,0.000022503500000,0.000110192000000,0.000104266000000,0.000161155000000,0.000170242000000,0.000205797000000,0.011587122000000,0.000261105000000,0.000055278000000,0.000046982000000,0.000086883000000,0.000129155000000,0.000028232000000,0.000470488000000 +0.000017762500000,0.011624257000000,0.000127180000000,0.000040266000000,0.000016775500000,0.000042241000000,0.000027046500000,0.000046982000000,0.000048168000000,0.000023096000000,0.000039476000000,0.000117699000000,0.000160365000000,0.000169451000000,0.000170637000000,0.011599763000000,0.000212908000000,0.000054884000000,0.000045798000000,0.000110588000000,0.000166686000000,0.000028231500000,0.000408069000000 +0.000018553000000,0.011207467000000,0.000128760000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000026256500000,0.000047377000000,0.000082143000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000160365000000,0.000170241000000,0.000169847000000,0.011769245000000,0.000213698000000,0.000055278000000,0.000046587000000,0.000088069000000,0.000131130000000,0.000028232000000,0.000487476000000 +0.000018157500000,0.011271862000000,0.000113748000000,0.000037106000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000046983000000,0.000048167000000,0.000023096000000,0.000040266000000,0.000098735000000,0.000199081000000,0.000173007000000,0.000171426000000,0.011829689000000,0.000246489000000,0.000055674000000,0.000046587000000,0.000084118000000,0.000132315000000,0.000028232000000,0.000412809000000 +0.000018750500000,0.011302677000000,0.000114933000000,0.000037500000000,0.000015590000000,0.000042637000000,0.000064775000000,0.000046982000000,0.000047378000000,0.000023096000000,0.000039871000000,0.000116513000000,0.000165106000000,0.000172217000000,0.000168662000000,0.011543269000000,0.000214883000000,0.000054488000000,0.000064365000000,0.000088464000000,0.000131921000000,0.000028231500000,0.000421106000000 +0.000018750500000,0.011264752000000,0.000168266000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000078009500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039872000000,0.000167871000000,0.000164315000000,0.000169847000000,0.000205007000000,0.011417640000000,0.000210538000000,0.000054884000000,0.000045402000000,0.000084118000000,0.000133106000000,0.000028034500000,0.000484315000000 +0.000017762500000,0.011105146000000,0.000128761000000,0.000037896000000,0.000032182500000,0.000043822000000,0.000042059000000,0.000046192000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000160760000000,0.000171822000000,0.000171032000000,0.011983763000000,0.000216069000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000135081000000,0.000028232000000,0.000408463000000 +0.000017763000000,0.011190875000000,0.000113353000000,0.000037500000000,0.000034157500000,0.000061205000000,0.000036528500000,0.000047378000000,0.000047377000000,0.000021911000000,0.000039081000000,0.000115328000000,0.000195921000000,0.000171032000000,0.000170241000000,0.011396701000000,0.000212513000000,0.000055673000000,0.000046193000000,0.000082932000000,0.000130341000000,0.000028231500000,0.000447180000000 +0.000017762500000,0.011479270000000,0.000117699000000,0.000037896000000,0.000015590000000,0.000075822000000,0.000028034000000,0.000046982000000,0.000048563000000,0.000022701000000,0.000038686000000,0.000103081000000,0.000285995000000,0.000210537000000,0.000169847000000,0.011370628000000,0.000209353000000,0.000055674000000,0.000047377000000,0.000084118000000,0.000132710000000,0.000028232000000,0.000414784000000 +0.000018158000000,0.011259616000000,0.000112958000000,0.000038291000000,0.000016380000000,0.000042636000000,0.000033762500000,0.000046587000000,0.000046982000000,0.000022701000000,0.000039476000000,0.000109402000000,0.000180908000000,0.000170637000000,0.000168266000000,0.011489541000000,0.000213699000000,0.000055673000000,0.000047378000000,0.000119673000000,0.000135871000000,0.000028232000000,0.000525796000000 +0.000018750500000,0.010961739000000,0.000116908000000,0.000039871000000,0.000016380000000,0.000043031000000,0.000026256500000,0.000046587000000,0.000048957000000,0.000022503500000,0.000039081000000,0.000106637000000,0.000160760000000,0.000172612000000,0.000204216000000,0.012056060000000,0.000212908000000,0.000055279000000,0.000046192000000,0.000082933000000,0.000131920000000,0.000028231500000,0.000626537000000 +0.000017762500000,0.011653096000000,0.000131130000000,0.000040661000000,0.000015590000000,0.000041057000000,0.000027047000000,0.000047378000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000138637000000,0.000163130000000,0.000171427000000,0.000169451000000,0.011988899000000,0.000213699000000,0.000054883000000,0.000046983000000,0.000085698000000,0.000129550000000,0.000046207500000,0.000413204000000 +0.000017960500000,0.011853393000000,0.000163130000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000047377000000,0.000046587000000,0.000022701000000,0.000039081000000,0.000102686000000,0.000196710000000,0.000169846000000,0.000171032000000,0.011449245000000,0.000214489000000,0.000055279000000,0.000046192000000,0.000082538000000,0.000134290000000,0.000028232000000,0.000449945000000 +0.000027639000000,0.011350874000000,0.000118094000000,0.000127574000000,0.000015590000000,0.000041846000000,0.000027046500000,0.000046982000000,0.000047773000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000162735000000,0.000188019000000,0.000168266000000,0.013684502000000,0.000212118000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000132315000000,0.000028232000000,0.000410834000000 +0.000019145500000,0.010934085000000,0.000128365000000,0.000072661000000,0.000015589500000,0.000042242000000,0.000026849500000,0.000082933000000,0.000048167000000,0.000022305500000,0.000039081000000,0.000109007000000,0.000163526000000,0.000172217000000,0.000167871000000,0.012334577000000,0.000214883000000,0.000054488000000,0.000046587000000,0.000083328000000,0.000135476000000,0.000028232000000,0.000444019000000 +0.000017762500000,0.011249344000000,0.000128760000000,0.000055279000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000031392500000,0.000039871000000,0.000114538000000,0.000161550000000,0.000169846000000,0.000241748000000,0.011384850000000,0.000212908000000,0.000054884000000,0.000046192000000,0.000085303000000,0.000171031000000,0.000028034500000,0.000409253000000 +0.000018355500000,0.011181394000000,0.000127575000000,0.000053699000000,0.000015590000000,0.000042241000000,0.000052726000000,0.000047378000000,0.000048167000000,0.000030602500000,0.000039476000000,0.000117698000000,0.000161551000000,0.000169451000000,0.000169846000000,0.011637689000000,0.000214883000000,0.000054884000000,0.000046983000000,0.000083723000000,0.000131920000000,0.000028231500000,0.000442439000000 +0.000018553000000,0.011412899000000,0.000127180000000,0.000051723000000,0.000015590000000,0.000042241000000,0.000026651500000,0.000046587000000,0.000046587000000,0.000022898500000,0.000039081000000,0.000106637000000,0.000230291000000,0.000208167000000,0.000202242000000,0.014181885000000,0.000207773000000,0.000055674000000,0.000045402000000,0.000083723000000,0.000131525000000,0.000028034500000,0.000412809000000 +0.000017762500000,0.011055764000000,0.000146142000000,0.000037501000000,0.000015392000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000022108500000,0.000039081000000,0.000158785000000,0.000160760000000,0.000172216000000,0.000169846000000,0.011831270000000,0.000215673000000,0.000054883000000,0.000046192000000,0.000120859000000,0.000130341000000,0.000028232000000,0.000447970000000 +0.000018158000000,0.011139912000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046982000000,0.000046983000000,0.000022701000000,0.000056068000000,0.000114933000000,0.000165106000000,0.000169056000000,0.000206982000000,0.011529443000000,0.000213303000000,0.000054884000000,0.000046982000000,0.000084908000000,0.000129550000000,0.000028231500000,0.000469303000000 +0.000019145500000,0.011116998000000,0.000131130000000,0.000040267000000,0.000015590000000,0.000042241000000,0.000027244500000,0.000046588000000,0.000083328000000,0.000021911000000,0.000039476000000,0.000107032000000,0.000165896000000,0.000172217000000,0.000169451000000,0.011493097000000,0.000214488000000,0.000055278000000,0.000046982000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000460612000000 +0.000018750000000,0.011514430000000,0.000127180000000,0.000040661000000,0.000016775000000,0.000043032000000,0.000026651500000,0.000046587000000,0.000048958000000,0.000022503500000,0.000039081000000,0.000114933000000,0.000163525000000,0.000172217000000,0.000170242000000,0.011839961000000,0.000213304000000,0.000055674000000,0.000065156000000,0.000082538000000,0.000128760000000,0.000028232000000,0.000410044000000 +0.000018750500000,0.010934480000000,0.000114538000000,0.000037896000000,0.000016380000000,0.000043032000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000022898500000,0.000039871000000,0.000114933000000,0.000204217000000,0.000171032000000,0.000168661000000,0.012099516000000,0.000213699000000,0.000055278000000,0.000061995000000,0.000084909000000,0.000131526000000,0.000028231500000,0.000445600000000 +0.000018750500000,0.011323616000000,0.000114143000000,0.000040266000000,0.000015392500000,0.000041451000000,0.000026257000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000161945000000,0.000170242000000,0.000169846000000,0.011601344000000,0.000213303000000,0.000090835000000,0.000046982000000,0.000081748000000,0.000135081000000,0.000028034500000,0.000415970000000 +0.000018750500000,0.011096850000000,0.000204217000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000047378000000,0.000047378000000,0.000022503500000,0.000038686000000,0.000102686000000,0.000163920000000,0.000170241000000,0.000219625000000,0.011382874000000,0.000188415000000,0.000056068000000,0.000046983000000,0.000087674000000,0.000168661000000,0.000028232000000,0.000446389000000 +0.000018750000000,0.011647961000000,0.000179328000000,0.000037501000000,0.000016775000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000115328000000,0.000162735000000,0.000170241000000,0.000168661000000,0.011554726000000,0.000213303000000,0.000055674000000,0.000047377000000,0.000086489000000,0.000134291000000,0.000028232000000,0.000412019000000 +0.000019145500000,0.010983468000000,0.000129550000000,0.000038686000000,0.000016380000000,0.000078982000000,0.000026651500000,0.000046982000000,0.000047378000000,0.000022898500000,0.000038686000000,0.000118488000000,0.000165106000000,0.000199871000000,0.000170241000000,0.011988899000000,0.000223179000000,0.000055278000000,0.000046983000000,0.000085303000000,0.000134291000000,0.000047787500000,0.000444809000000 +0.000018158000000,0.011141097000000,0.000131130000000,0.000040267000000,0.000016380000000,0.000041847000000,0.000026454500000,0.000046983000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000244908000000,0.000170636000000,0.000170241000000,0.011659813000000,0.000213303000000,0.000054884000000,0.000045402000000,0.000106242000000,0.000130341000000,0.000044824500000,0.000412414000000 +0.000017762500000,0.011094480000000,0.000110193000000,0.000040267000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000047378000000,0.000047378000000,0.000021911000000,0.000039081000000,0.000102686000000,0.000160760000000,0.000170637000000,0.000169056000000,0.011364702000000,0.000215278000000,0.000056069000000,0.000046982000000,0.000086883000000,0.000130340000000,0.000028232000000,0.000450340000000 +0.000017763000000,0.011118184000000,0.000112957000000,0.000057254000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000047377000000,0.000067525000000,0.000022503500000,0.000039871000000,0.000116118000000,0.000163921000000,0.000173007000000,0.000167871000000,0.011984553000000,0.000213698000000,0.000055278000000,0.000046193000000,0.000084513000000,0.000205797000000,0.000028232000000,0.000414784000000 +0.000017762500000,0.011122134000000,0.000128760000000,0.000037895000000,0.000016380000000,0.000041847000000,0.000027047000000,0.000047377000000,0.000051327000000,0.000022503500000,0.000058044000000,0.000116513000000,0.000160760000000,0.000170241000000,0.000169846000000,0.011932010000000,0.000216069000000,0.000055279000000,0.000047377000000,0.000084513000000,0.000130736000000,0.000028231500000,0.000448760000000 +0.000017763000000,0.011298332000000,0.000129155000000,0.000041056000000,0.000033762500000,0.000041451000000,0.000044231500000,0.000046588000000,0.000059624000000,0.000022898500000,0.000042242000000,0.000151673000000,0.000163920000000,0.000171821000000,0.000168661000000,0.011543664000000,0.000210142000000,0.000055673000000,0.000046588000000,0.000083723000000,0.000132316000000,0.000028232000000,0.000407278000000 +0.000019145500000,0.010982282000000,0.000176563000000,0.000037896000000,0.000022898500000,0.000041847000000,0.000028627000000,0.000082537000000,0.000046982000000,0.000022306000000,0.000069895000000,0.000115723000000,0.000178537000000,0.000169451000000,0.000169846000000,0.012043813000000,0.000212513000000,0.000054884000000,0.000048167000000,0.000084118000000,0.000130340000000,0.000028034500000,0.000482340000000 +0.000017762500000,0.011167961000000,0.000129945000000,0.000039871000000,0.000015589500000,0.000041451000000,0.000033170500000,0.000047378000000,0.000047377000000,0.000022306000000,0.000039476000000,0.000106636000000,0.000161550000000,0.000170241000000,0.000213304000000,0.012188010000000,0.000213698000000,0.000055673000000,0.000047378000000,0.000085303000000,0.000133501000000,0.000028231500000,0.000408859000000 +0.000019145500000,0.011430282000000,0.000113352000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046982000000,0.000048563000000,0.000040676500000,0.000039081000000,0.000107427000000,0.000160365000000,0.000172216000000,0.000169847000000,0.012559762000000,0.000216069000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000137056000000,0.000028232000000,0.000456266000000 +0.000017960500000,0.010983072000000,0.000173797000000,0.000037501000000,0.000015392500000,0.000041452000000,0.000026849500000,0.000046587000000,0.000046587000000,0.000022701000000,0.000040267000000,0.000103476000000,0.000160364000000,0.000172612000000,0.000169847000000,0.012242528000000,0.000213698000000,0.000056069000000,0.000045007000000,0.000105057000000,0.000131921000000,0.000028034500000,0.000412019000000 +0.000045812000000,0.011390380000000,0.000127575000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046587000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000117699000000,0.000163921000000,0.000170637000000,0.000167871000000,0.011819813000000,0.000214883000000,0.000054883000000,0.000047377000000,0.000083723000000,0.000130735000000,0.000028231500000,0.000480365000000 +0.000035343000000,0.011022973000000,0.000129155000000,0.000040266000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046983000000,0.000063575000000,0.000022503500000,0.000103081000000,0.000114933000000,0.000500118000000,0.000170636000000,0.000169452000000,0.013463268000000,0.000213303000000,0.000054884000000,0.000045797000000,0.000083723000000,0.000129155000000,0.000028232000000,0.000408464000000 +0.000025664000000,0.011792553000000,0.000111378000000,0.000038291000000,0.000015589500000,0.000041452000000,0.000026849500000,0.000046587000000,0.000048563000000,0.000022306000000,0.000054883000000,0.000125995000000,0.000197500000000,0.000169846000000,0.000205797000000,0.011727368000000,0.000262290000000,0.000055673000000,0.000047377000000,0.000084513000000,0.000165896000000,0.000028232000000,0.000445205000000 +0.000020133500000,0.011873936000000,0.000131525000000,0.000037896000000,0.000016380500000,0.000042241000000,0.000026256500000,0.000046587000000,0.000048562000000,0.000022701000000,0.000052908000000,0.000102686000000,0.000197896000000,0.000173007000000,0.000168661000000,0.011952948000000,0.000213303000000,0.000055674000000,0.000067131000000,0.000084908000000,0.000134686000000,0.000028232000000,0.000410044000000 +0.000018750500000,0.011159665000000,0.000130736000000,0.000037896000000,0.000015195000000,0.000041452000000,0.000026256500000,0.000046587000000,0.000048168000000,0.000022503500000,0.000039476000000,0.000098735000000,0.000165500000000,0.000171031000000,0.000169847000000,0.011342973000000,0.000215279000000,0.000055278000000,0.000046192000000,0.000083328000000,0.000131526000000,0.000028232000000,0.000440463000000 +0.000024676000000,0.011698923000000,0.000165500000000,0.000037106000000,0.000015787500000,0.000042637000000,0.000026454000000,0.000046588000000,0.000046982000000,0.000022108500000,0.000039477000000,0.000116908000000,0.000161551000000,0.000170636000000,0.000168661000000,0.011907121000000,0.000276118000000,0.000055279000000,0.000045402000000,0.000084118000000,0.000131525000000,0.000037911000000,0.000412809000000 +0.000018750500000,0.011478874000000,0.000112957000000,0.000040266000000,0.000015392500000,0.000042636000000,0.000027047000000,0.000047377000000,0.000048167000000,0.000022503500000,0.000040266000000,0.000116513000000,0.000160364000000,0.000170241000000,0.000171427000000,0.011800850000000,0.000212513000000,0.000055279000000,0.000045402000000,0.000084908000000,0.000136266000000,0.000036528000000,0.000411624000000 +0.000018355500000,0.011163615000000,0.000110192000000,0.000040661000000,0.000015589500000,0.000042241000000,0.000026256500000,0.000046587000000,0.000047378000000,0.000022898500000,0.000039871000000,0.000117303000000,0.000163525000000,0.000170241000000,0.000221995000000,0.011542084000000,0.000212908000000,0.000055278000000,0.000046982000000,0.000084118000000,0.000186044000000,0.000028232000000,0.000406488000000 +0.000018157500000,0.011165985000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000047773000000,0.000046982000000,0.000022306000000,0.000038686000000,0.000122044000000,0.000203031000000,0.000170241000000,0.000170636000000,0.011568554000000,0.000215278000000,0.000055674000000,0.000046192000000,0.000124415000000,0.000131526000000,0.000028232000000,0.000593352000000 +0.000017763000000,0.011512455000000,0.000127970000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000046587000000,0.000047773000000,0.000022108500000,0.000039871000000,0.000114143000000,0.000163920000000,0.000336167000000,0.000169056000000,0.011811122000000,0.000215673000000,0.000056068000000,0.000046192000000,0.000085303000000,0.000131130000000,0.000028034000000,0.000463377000000 +0.000017762500000,0.011559467000000,0.000129945000000,0.000037501000000,0.000015392500000,0.000077797000000,0.000026256500000,0.000047377000000,0.000047772000000,0.000021911000000,0.000039476000000,0.000109402000000,0.000163525000000,0.000325896000000,0.000167871000000,0.011467418000000,0.000214489000000,0.000056069000000,0.000047378000000,0.000085304000000,0.000128365000000,0.000028232000000,0.000413599000000 +0.000017763000000,0.010870875000000,0.000111772000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000061812000000,0.000046587000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000166686000000,0.000172611000000,0.000205797000000,0.011904356000000,0.000243723000000,0.000055674000000,0.000047377000000,0.000084118000000,0.000136661000000,0.000028232000000,0.000457846000000 +0.000018750500000,0.011092505000000,0.000146932000000,0.000037501000000,0.000015590000000,0.000043426000000,0.000027047000000,0.000046983000000,0.000048562000000,0.000022108500000,0.000039477000000,0.000115723000000,0.000161945000000,0.000170637000000,0.000169056000000,0.012180504000000,0.000215279000000,0.000054883000000,0.000046587000000,0.000081748000000,0.000247278000000,0.000028231500000,0.000407674000000 +0.000017762500000,0.011100801000000,0.000128365000000,0.000073847000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000047378000000,0.000022898500000,0.000039476000000,0.000114537000000,0.000212118000000,0.000173007000000,0.000169057000000,0.011798479000000,0.000213699000000,0.000054884000000,0.000046192000000,0.000085303000000,0.000133896000000,0.000028232000000,0.000443228000000 +0.000018553000000,0.011487566000000,0.000110587000000,0.000037501000000,0.000015589500000,0.000042242000000,0.000026454000000,0.000082933000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000103476000000,0.000162735000000,0.000172216000000,0.000169451000000,0.011553542000000,0.000244908000000,0.000055278000000,0.000046588000000,0.000083328000000,0.000129945000000,0.000028232000000,0.000405303000000 +0.000017762500000,0.011565393000000,0.000129155000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000046587000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000184858000000,0.000160760000000,0.000169846000000,0.000171822000000,0.011531418000000,0.000227131000000,0.000055279000000,0.000046982000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000497748000000 +0.000018750500000,0.011415269000000,0.000116908000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039871000000,0.000098735000000,0.000163921000000,0.000171032000000,0.000207773000000,0.012217244000000,0.000217254000000,0.000054883000000,0.000046193000000,0.000083723000000,0.000168661000000,0.000028231500000,0.000406093000000 +0.000017763000000,0.011218924000000,0.000118094000000,0.000040662000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046588000000,0.000046983000000,0.000059639000000,0.000039081000000,0.000117699000000,0.000162340000000,0.000173007000000,0.000170636000000,0.012190380000000,0.000212513000000,0.000055279000000,0.000045402000000,0.000196710000000,0.000128760000000,0.000028232000000,0.000444809000000 +0.000018947500000,0.011236307000000,0.000118093000000,0.000037501000000,0.000015589500000,0.000042637000000,0.000026256500000,0.000046982000000,0.000067130000000,0.000022306000000,0.000039477000000,0.000109402000000,0.000242933000000,0.000170241000000,0.000171032000000,0.011648751000000,0.000214093000000,0.000057254000000,0.000046192000000,0.000103081000000,0.000128365000000,0.000028232000000,0.000413205000000 +0.000017960000000,0.011305048000000,0.000129155000000,0.000040266000000,0.000016577500000,0.000041451000000,0.000027047000000,0.000046982000000,0.000079773000000,0.000021911000000,0.000075427000000,0.000102686000000,0.000160365000000,0.000172612000000,0.000170636000000,0.011482035000000,0.000213303000000,0.000055278000000,0.000047378000000,0.000082933000000,0.000131920000000,0.000028231500000,0.000445204000000 +0.000038898500000,0.011037986000000,0.000112563000000,0.000039871000000,0.000025466500000,0.000042242000000,0.000026849000000,0.000046587000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000116118000000,0.000165105000000,0.000169847000000,0.000169451000000,0.011754232000000,0.000215674000000,0.000054884000000,0.000047377000000,0.000084118000000,0.000132315000000,0.000028034500000,0.000408858000000 +0.000017763000000,0.011256455000000,0.000129155000000,0.000038686000000,0.000016577500000,0.000042637000000,0.000026454500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000116909000000,0.000160760000000,0.000174192000000,0.000214093000000,0.011941886000000,0.000212513000000,0.000055673000000,0.000098735000000,0.000085304000000,0.000146143000000,0.000062799500000,0.000445600000000 +0.000018157500000,0.011479269000000,0.000112957000000,0.000037896000000,0.000015392500000,0.000041846000000,0.000026849000000,0.000046982000000,0.000045797000000,0.000022898500000,0.000039476000000,0.000107031000000,0.000163130000000,0.000170241000000,0.000179723000000,0.011662973000000,0.000208562000000,0.000055279000000,0.000061600000000,0.000083723000000,0.000163130000000,0.000028232000000,0.000413994000000 +0.000018158000000,0.011175467000000,0.000129550000000,0.000040661000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047772000000,0.000022898500000,0.000039871000000,0.000102290000000,0.000198290000000,0.000169451000000,0.000180513000000,0.011487170000000,0.000213303000000,0.000055279000000,0.000047377000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000475624000000 +0.000018750500000,0.011266331000000,0.000164315000000,0.000040661000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000046587000000,0.000022306000000,0.000039082000000,0.000098735000000,0.000160364000000,0.000170241000000,0.000240562000000,0.011888553000000,0.000217254000000,0.000055278000000,0.000045797000000,0.000116908000000,0.000130735000000,0.000028232000000,0.000411624000000 +0.000018552500000,0.011467023000000,0.000110983000000,0.000037500000000,0.000015392500000,0.000041451000000,0.000027046500000,0.000047773000000,0.000046587000000,0.000022701000000,0.000039476000000,0.000106241000000,0.000161945000000,0.000171821000000,0.000207377000000,0.011782677000000,0.000212118000000,0.000056069000000,0.000046587000000,0.000099525000000,0.000168662000000,0.000028232000000,0.000445994000000 +0.000017960500000,0.011211023000000,0.000110192000000,0.000037501000000,0.000015590000000,0.000041847000000,0.000035738000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000159970000000,0.000170636000000,0.000169847000000,0.011570923000000,0.000214093000000,0.000054883000000,0.000047773000000,0.000082143000000,0.000131130000000,0.000028232000000,0.000502093000000 +0.000017762500000,0.011068801000000,0.000116908000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000057466500000,0.000047377000000,0.000048562000000,0.000022306000000,0.000039871000000,0.000116513000000,0.000163525000000,0.000170636000000,0.000170242000000,0.011465048000000,0.000213303000000,0.000055279000000,0.000044612000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000410439000000 +0.000017763000000,0.011305837000000,0.000130735000000,0.000037500000000,0.000015590000000,0.000041846000000,0.000027047000000,0.000047378000000,0.000045798000000,0.000022108500000,0.000039081000000,0.000122439000000,0.000197501000000,0.000172217000000,0.000169452000000,0.012033541000000,0.000217253000000,0.000055278000000,0.000046192000000,0.000084909000000,0.000129945000000,0.000028231500000,0.000480365000000 +0.000018750500000,0.011153739000000,0.000129155000000,0.000040266000000,0.000016775000000,0.000061995000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000102686000000,0.000160365000000,0.000170242000000,0.000173402000000,0.011919763000000,0.000213304000000,0.000055279000000,0.000045402000000,0.000084513000000,0.000129155000000,0.000028034500000,0.000408859000000 +0.000017960000000,0.013067021000000,0.000177352000000,0.000037896000000,0.000015392500000,0.000044216000000,0.000027046500000,0.000047377000000,0.000045797000000,0.000022701000000,0.000039081000000,0.000113748000000,0.000160365000000,0.000220414000000,0.000201451000000,0.011442924000000,0.000212118000000,0.000054488000000,0.000045797000000,0.000085698000000,0.000182094000000,0.000028232000000,0.000691723000000 +0.000018948000000,0.011314529000000,0.000128760000000,0.000037896000000,0.000015985000000,0.000042636000000,0.000027047000000,0.000046983000000,0.000048168000000,0.000023096000000,0.000039871000000,0.000114538000000,0.000161945000000,0.000170241000000,0.000169847000000,0.011528653000000,0.000207772000000,0.000055279000000,0.000046192000000,0.000084118000000,0.000133501000000,0.000028231500000,0.000426241000000 +0.000037121000000,0.011346924000000,0.000113747000000,0.000037501000000,0.000016182500000,0.000041452000000,0.000026256500000,0.000083328000000,0.000048168000000,0.000023096000000,0.000039081000000,0.000118884000000,0.000165896000000,0.000172217000000,0.000171032000000,0.013113244000000,0.000215278000000,0.000054488000000,0.000046588000000,0.000082538000000,0.000131921000000,0.000028232000000,0.000425451000000 +0.000020133000000,0.011351269000000,0.000129155000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000199871000000,0.000173402000000,0.000169846000000,0.012120454000000,0.000213698000000,0.000055674000000,0.000045402000000,0.000163526000000,0.000130340000000,0.000028232000000,0.000408463000000 +0.000025664000000,0.011241047000000,0.000128760000000,0.000038291000000,0.000016577500000,0.000041057000000,0.000026849500000,0.000046982000000,0.000048958000000,0.000022306000000,0.000039081000000,0.000117303000000,0.000160365000000,0.000171031000000,0.000246489000000,0.012113344000000,0.000214093000000,0.000055279000000,0.000045797000000,0.000136661000000,0.000131526000000,0.000028232000000,0.000423871000000 +0.000017762500000,0.011165196000000,0.000113748000000,0.000037896000000,0.000016182500000,0.000042242000000,0.000027046500000,0.000046982000000,0.000067920000000,0.000030800000000,0.000039476000000,0.000139822000000,0.000161550000000,0.000169846000000,0.000329057000000,0.011338232000000,0.000210538000000,0.000056463000000,0.000045402000000,0.000092020000000,0.000130340000000,0.000028232000000,0.000445600000000 +0.000017763000000,0.011209838000000,0.000188019000000,0.000037896000000,0.000016380000000,0.000042636000000,0.000026454500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000160365000000,0.000172216000000,0.000185254000000,0.013100602000000,0.000215278000000,0.000055279000000,0.000046192000000,0.000090440000000,0.000130736000000,0.000046405000000,0.000406883000000 +0.000017762500000,0.011043122000000,0.000127180000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000117699000000,0.000216464000000,0.000169846000000,0.000170241000000,0.012059220000000,0.000213303000000,0.000055278000000,0.000046983000000,0.000088859000000,0.000133105000000,0.000028231500000,0.000482340000000 +0.000018948000000,0.011288850000000,0.000110982000000,0.000040267000000,0.000016380000000,0.000042242000000,0.000027046500000,0.000047377000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000117303000000,0.000160365000000,0.000173007000000,0.000241748000000,0.011493492000000,0.000214093000000,0.000054884000000,0.000065550000000,0.000145748000000,0.000128365000000,0.000028034500000,0.000411624000000 +0.000018750500000,0.011048258000000,0.000122044000000,0.000040661000000,0.000015590000000,0.000042636000000,0.000026454500000,0.000046982000000,0.000047772000000,0.000022701000000,0.000057648000000,0.000116118000000,0.000162736000000,0.000171427000000,0.000169847000000,0.011728553000000,0.000234242000000,0.000055278000000,0.000099130000000,0.000259526000000,0.000153648000000,0.000028232000000,0.000446390000000 +0.000019145500000,0.011174282000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046983000000,0.000045797000000,0.000022503500000,0.000038686000000,0.000117698000000,0.000161155000000,0.000172217000000,0.000169451000000,0.011966775000000,0.000248069000000,0.000055674000000,0.000096761000000,0.000156809000000,0.000156020000000,0.000028231500000,0.000406093000000 +0.000036725500000,0.010930530000000,0.000129945000000,0.000037896000000,0.000015589500000,0.000043032000000,0.000027047000000,0.000047377000000,0.000048563000000,0.000021911000000,0.000039081000000,0.000193155000000,0.000162340000000,0.000172612000000,0.000212513000000,0.012267417000000,0.000213303000000,0.000055279000000,0.000048562000000,0.000097155000000,0.000133106000000,0.000028232000000,0.000481945000000 +0.000017763000000,0.011542084000000,0.000163130000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000061022000000,0.000046982000000,0.000048958000000,0.000022108500000,0.000039082000000,0.000103081000000,0.000198686000000,0.000170636000000,0.000255179000000,0.011710776000000,0.000214093000000,0.000055279000000,0.000048562000000,0.000253204000000,0.000130735000000,0.000028232000000,0.000410834000000 +0.000017762500000,0.011352060000000,0.000123230000000,0.000037500000000,0.000016380000000,0.000042636000000,0.000027836500000,0.000046982000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000115723000000,0.000162340000000,0.000170241000000,0.000167871000000,0.011986924000000,0.000215278000000,0.000055279000000,0.000063180000000,0.000124414000000,0.000128365000000,0.000028231500000,0.000444809000000 +0.000018948000000,0.010948307000000,0.000110982000000,0.000037896000000,0.000016380000000,0.000041452000000,0.000033762500000,0.000046983000000,0.000048563000000,0.000023096000000,0.000039871000000,0.000114538000000,0.000161550000000,0.000223574000000,0.000170636000000,0.011863269000000,0.000212118000000,0.000054883000000,0.000046193000000,0.000088859000000,0.000135476000000,0.000028232000000,0.000412414000000 +0.000018948000000,0.011180603000000,0.000121649000000,0.000037501000000,0.000016577500000,0.000042636000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000022108500000,0.000039082000000,0.000109007000000,0.000160760000000,0.000169451000000,0.000169452000000,0.011626628000000,0.000209747000000,0.000055279000000,0.000046587000000,0.000164711000000,0.000131130000000,0.000028034500000,0.000494192000000 +0.000018948000000,0.012355911000000,0.000131131000000,0.000037501000000,0.000037318500000,0.000041846000000,0.000026256500000,0.000046587000000,0.000047773000000,0.000023096000000,0.000039871000000,0.000116118000000,0.000160365000000,0.000169846000000,0.000168266000000,0.011618726000000,0.000212118000000,0.000054488000000,0.000046192000000,0.000099131000000,0.000129550000000,0.000028231500000,0.000412414000000 +0.000018948000000,0.011792158000000,0.000111377000000,0.000037501000000,0.000015787500000,0.000042242000000,0.000026652000000,0.000046983000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000201056000000,0.000171821000000,0.000222390000000,0.011676406000000,0.000223575000000,0.000054884000000,0.000046587000000,0.000084513000000,0.000131130000000,0.000028232000000,0.000451130000000 +0.000018750500000,0.011391171000000,0.000149699000000,0.000040661000000,0.000015589500000,0.000043822000000,0.000026651500000,0.000046982000000,0.000046983000000,0.000022898500000,0.000039477000000,0.000138637000000,0.000165896000000,0.000209748000000,0.000168661000000,0.011852207000000,0.000216069000000,0.000055673000000,0.000046587000000,0.000082538000000,0.000181699000000,0.000028232000000,0.000408859000000 +0.000018750000000,0.011300702000000,0.000110587000000,0.000040661000000,0.000016380000000,0.000077797000000,0.000026454000000,0.000046587000000,0.000048562000000,0.000022108500000,0.000039476000000,0.000114933000000,0.000163921000000,0.000172612000000,0.000172216000000,0.011544455000000,0.000214093000000,0.000055279000000,0.000046982000000,0.000083328000000,0.000131920000000,0.000028034000000,0.000483920000000 +0.000017763000000,0.011328751000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000043032000000,0.000026652000000,0.000066340000000,0.000046588000000,0.000022503500000,0.000039476000000,0.000099131000000,0.000161945000000,0.000169057000000,0.000168266000000,0.011598973000000,0.000210932000000,0.000055278000000,0.000046192000000,0.000082932000000,0.000133500000000,0.000028232000000,0.000407673000000 +0.000017960000000,0.011638479000000,0.000126389000000,0.000039871000000,0.000016380500000,0.000041847000000,0.000026651500000,0.000050143000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000103476000000,0.000161550000000,0.000172612000000,0.000250439000000,0.011542480000000,0.000214488000000,0.000056069000000,0.000047377000000,0.000159969000000,0.000133501000000,0.000047590000000,0.000459822000000 +0.000017960500000,0.012458626000000,0.000130341000000,0.000076612000000,0.000016972500000,0.000042636000000,0.000026454000000,0.000046983000000,0.000048958000000,0.000022108500000,0.000039476000000,0.000109402000000,0.000206982000000,0.000170636000000,0.000169056000000,0.011860899000000,0.000215673000000,0.000055279000000,0.000044612000000,0.000195131000000,0.000134291000000,0.000042454500000,0.000408464000000 +0.000017762500000,0.011371022000000,0.000129550000000,0.000037501000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000046982000000,0.000083723000000,0.000031590000000,0.000039476000000,0.000103476000000,0.000162340000000,0.000208167000000,0.000169847000000,0.011469393000000,0.000214094000000,0.000056068000000,0.000046588000000,0.000100711000000,0.000212118000000,0.000028231500000,0.000493797000000 +0.000017763000000,0.011533393000000,0.000131525000000,0.000037895000000,0.000016577500000,0.000042242000000,0.000026651500000,0.000047377000000,0.000048562000000,0.000039293500000,0.000039871000000,0.000116118000000,0.000164711000000,0.000170637000000,0.000170241000000,0.011685096000000,0.000214489000000,0.000054884000000,0.000081747000000,0.000084118000000,0.000130341000000,0.000028232000000,0.000410833000000 +0.000019145500000,0.011362726000000,0.000110587000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000027244000000,0.000046982000000,0.000047377000000,0.000030207000000,0.000039081000000,0.000145748000000,0.000160760000000,0.000171822000000,0.000168661000000,0.011446480000000,0.000214093000000,0.000055673000000,0.000046982000000,0.000124020000000,0.000137056000000,0.000028232000000,0.000451920000000 +0.000017762500000,0.011101591000000,0.000134291000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026652000000,0.000047378000000,0.000046587000000,0.000022108500000,0.000039081000000,0.000116513000000,0.000160365000000,0.000169451000000,0.000253995000000,0.012609935000000,0.000216069000000,0.000055279000000,0.000046982000000,0.000118094000000,0.000132316000000,0.000028034000000,0.000416364000000 +0.000018948000000,0.011438578000000,0.000129155000000,0.000037501000000,0.000015787500000,0.000042242000000,0.000063194500000,0.000047377000000,0.000045798000000,0.000022503500000,0.000039081000000,0.000099130000000,0.000234636000000,0.000178537000000,0.000168266000000,0.011308603000000,0.000214093000000,0.000055674000000,0.000046982000000,0.000084118000000,0.000168661000000,0.000028232000000,0.000442439000000 +0.000017763000000,0.011260406000000,0.000130735000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000028034000000,0.000048167000000,0.000046587000000,0.000021911000000,0.000072662000000,0.000116513000000,0.000160365000000,0.000170242000000,0.000171427000000,0.011900800000000,0.000216858000000,0.000055279000000,0.000046982000000,0.000088464000000,0.000131131000000,0.000028232000000,0.000410439000000 +0.000018157500000,0.011223270000000,0.000113352000000,0.000040661000000,0.000015590000000,0.000041452000000,0.000034355000000,0.000046588000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000116514000000,0.000164316000000,0.000173402000000,0.000168661000000,0.011777936000000,0.000214094000000,0.000055279000000,0.000046192000000,0.000084513000000,0.000131525000000,0.000028232000000,0.000444414000000 +0.000019145500000,0.010972406000000,0.000130341000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000026454500000,0.000046982000000,0.000046587000000,0.000022108500000,0.000039476000000,0.000117698000000,0.000162340000000,0.000169056000000,0.000238192000000,0.012462972000000,0.000215674000000,0.000055278000000,0.000046587000000,0.000084118000000,0.000128760000000,0.000028034500000,0.000513945000000 +0.000017763000000,0.011146233000000,0.000195525000000,0.000040267000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000022898500000,0.000039476000000,0.000103081000000,0.000161945000000,0.000169452000000,0.000182883000000,0.011325591000000,0.000276908000000,0.000055674000000,0.000046587000000,0.000084513000000,0.000131921000000,0.000028232000000,0.000429007000000 +0.000018157500000,0.011253690000000,0.000129551000000,0.000037896000000,0.000016775000000,0.000042242000000,0.000027046500000,0.000046983000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000246489000000,0.000209748000000,0.000225550000000,0.000169451000000,0.011541295000000,0.000215673000000,0.000054883000000,0.000045007000000,0.000088069000000,0.000171427000000,0.000028232000000,0.000452315000000 +0.000018355500000,0.011452800000000,0.000114933000000,0.000037500000000,0.000015590000000,0.000041846000000,0.000027244500000,0.000046192000000,0.000045797000000,0.000022503500000,0.000039871000000,0.000148908000000,0.000160760000000,0.000171822000000,0.000169056000000,0.011426727000000,0.000214094000000,0.000055279000000,0.000047378000000,0.000085698000000,0.000127970000000,0.000028232000000,0.000406883000000 +0.000035935500000,0.010917492000000,0.000128760000000,0.000038291000000,0.000015589500000,0.000042242000000,0.000026849000000,0.000046587000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000103081000000,0.000163921000000,0.000169057000000,0.000168266000000,0.012107417000000,0.000213303000000,0.000055278000000,0.000045797000000,0.000082933000000,0.000132710000000,0.000028232000000,0.000445600000000 +0.000019145500000,0.011559862000000,0.000127970000000,0.000040266000000,0.000017960500000,0.000042242000000,0.000026652000000,0.000046587000000,0.000046192000000,0.000022898500000,0.000039477000000,0.000118093000000,0.000159970000000,0.000169451000000,0.000213304000000,0.011558282000000,0.000213303000000,0.000055674000000,0.000046982000000,0.000103871000000,0.000129550000000,0.000028034500000,0.000412019000000 +0.000017763000000,0.010966084000000,0.000165106000000,0.000037896000000,0.000015590000000,0.000044217000000,0.000026651500000,0.000046982000000,0.000047773000000,0.000022503500000,0.000039871000000,0.000106637000000,0.000165105000000,0.000172612000000,0.000168266000000,0.011380109000000,0.000249254000000,0.000055279000000,0.000046587000000,0.000088464000000,0.000133500000000,0.000046207000000,0.000482340000000 +0.000018948000000,0.011523912000000,0.000130340000000,0.000037896000000,0.000015589500000,0.000042636000000,0.000026651500000,0.000046588000000,0.000046192000000,0.000021911000000,0.000039871000000,0.000140612000000,0.000235821000000,0.000170242000000,0.000169846000000,0.011667319000000,0.000213698000000,0.000055278000000,0.000045797000000,0.000088069000000,0.000178537000000,0.000028232000000,0.000408859000000 +0.000017763000000,0.011245789000000,0.000116908000000,0.000038686000000,0.000015590000000,0.000061994000000,0.000026849500000,0.000067130000000,0.000046982000000,0.000023096000000,0.000039476000000,0.000109007000000,0.000165105000000,0.000207772000000,0.000169452000000,0.012021689000000,0.000212908000000,0.000055674000000,0.000045797000000,0.000084513000000,0.000130736000000,0.000028034000000,0.000445994000000 +0.000018158000000,0.011358776000000,0.000130735000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000046587000000,0.000047377000000,0.000022306000000,0.000039081000000,0.000113747000000,0.000161155000000,0.000173007000000,0.000169846000000,0.011517985000000,0.000214093000000,0.000055673000000,0.000046192000000,0.000083723000000,0.000130735000000,0.000028232000000,0.000410043000000 +0.000019145500000,0.011075912000000,0.000120069000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039476000000,0.000107032000000,0.000160365000000,0.000169451000000,0.000576365000000,0.011706035000000,0.000214884000000,0.000055674000000,0.000046192000000,0.000084908000000,0.000129155000000,0.000028232000000,0.000445204000000 +0.000018553000000,0.011604899000000,0.000129550000000,0.000041451000000,0.000043046500000,0.000042242000000,0.000027047000000,0.000047377000000,0.000082143000000,0.000039096000000,0.000039081000000,0.000102686000000,0.000210933000000,0.000173797000000,0.000168266000000,0.011610035000000,0.000214094000000,0.000056069000000,0.000046193000000,0.000086093000000,0.000129156000000,0.000028231500000,0.000418340000000 +0.000017763000000,0.010998085000000,0.000190390000000,0.000054883000000,0.000031985000000,0.000041451000000,0.000046207000000,0.000047378000000,0.000048562000000,0.000029812000000,0.000039081000000,0.000109402000000,0.000163525000000,0.000169451000000,0.000204612000000,0.012024455000000,0.000215674000000,0.000055278000000,0.000080957000000,0.000085303000000,0.000129550000000,0.000028232000000,0.000457451000000 +0.000017762500000,0.011147023000000,0.000129945000000,0.000037106000000,0.000034355500000,0.000041452000000,0.000034948000000,0.000046982000000,0.000046983000000,0.000022503500000,0.000039871000000,0.000118093000000,0.000163526000000,0.000169846000000,0.000170637000000,0.011430677000000,0.000216068000000,0.000055674000000,0.000059624000000,0.000098736000000,0.000139031000000,0.000028232000000,0.000415180000000 +0.000017763000000,0.011380899000000,0.000128760000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000033960000000,0.000065945000000,0.000048562000000,0.000022898500000,0.000039871000000,0.000152859000000,0.000163921000000,0.000168661000000,0.000167871000000,0.011600553000000,0.000212513000000,0.000054883000000,0.000046587000000,0.000120068000000,0.000133106000000,0.000028231500000,0.000444414000000 +0.000018750000000,0.011517986000000,0.000129945000000,0.000037106000000,0.000017367500000,0.000042241000000,0.000026849500000,0.000085304000000,0.000046983000000,0.000022701000000,0.000039082000000,0.000115328000000,0.000165106000000,0.000171821000000,0.000169451000000,0.011790973000000,0.000214093000000,0.000055279000000,0.000046588000000,0.000082538000000,0.000139427000000,0.000028232000000,0.000410043000000 +0.000018553000000,0.010984257000000,0.000163131000000,0.000037501000000,0.000031590000000,0.000041452000000,0.000026454000000,0.000061994000000,0.000046982000000,0.000022701000000,0.000038686000000,0.000116909000000,0.000286389000000,0.000171821000000,0.000169452000000,0.011738825000000,0.000215674000000,0.000095970000000,0.000047377000000,0.000085698000000,0.000168266000000,0.000028232000000,0.000442834000000 +0.000018948000000,0.011135171000000,0.000129155000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000046588000000,0.000046983000000,0.000021911000000,0.000039476000000,0.000116118000000,0.000416760000000,0.000169451000000,0.000240167000000,0.011375368000000,0.000250834000000,0.000058044000000,0.000047378000000,0.000086094000000,0.000131131000000,0.000028232000000,0.000417550000000 +0.000017960000000,0.010960159000000,0.000166686000000,0.000037896000000,0.000015787500000,0.000042636000000,0.000026454500000,0.000046982000000,0.000046982000000,0.000022701000000,0.000052513000000,0.000116513000000,0.000193945000000,0.000173402000000,0.000170241000000,0.011612405000000,0.000214488000000,0.000067525000000,0.000047377000000,0.000084514000000,0.000131525000000,0.000028034000000,0.000452710000000 +0.000017763000000,0.011167566000000,0.000122044000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000046982000000,0.000046983000000,0.000022306000000,0.000038686000000,0.000116513000000,0.000196711000000,0.000171032000000,0.000168662000000,0.011480849000000,0.000210538000000,0.000055674000000,0.000046587000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000407279000000 +0.000018355500000,0.011460702000000,0.000118488000000,0.000040266000000,0.000016775000000,0.000042637000000,0.000026454000000,0.000046587000000,0.000047377000000,0.000022306000000,0.000040266000000,0.000117303000000,0.000163920000000,0.000169847000000,0.000167476000000,0.011740405000000,0.000214094000000,0.000055674000000,0.000046982000000,0.000088464000000,0.000131920000000,0.000028429500000,0.000480365000000 +0.000018750500000,0.011073541000000,0.000113747000000,0.000040662000000,0.000016577500000,0.000042241000000,0.000026849500000,0.000046588000000,0.000046982000000,0.000023096000000,0.000039476000000,0.000131920000000,0.000161945000000,0.000261501000000,0.000168266000000,0.011587517000000,0.000212513000000,0.000054884000000,0.000045402000000,0.000084118000000,0.000203426000000,0.000037713000000,0.000411624000000 +0.000018553000000,0.011002826000000,0.000111773000000,0.000037106000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046587000000,0.000046192000000,0.000022701000000,0.000039871000000,0.000114933000000,0.000160365000000,0.000170242000000,0.000219624000000,0.011393937000000,0.000214488000000,0.000055278000000,0.000046982000000,0.000084118000000,0.000129945000000,0.000029812000000,0.000493797000000 +0.000019145500000,0.011113047000000,0.000118488000000,0.000040266000000,0.000016182500000,0.000042242000000,0.000026454000000,0.000046587000000,0.000047377000000,0.000023096000000,0.000038686000000,0.000102686000000,0.000160365000000,0.000170242000000,0.000169056000000,0.011735269000000,0.000213698000000,0.000055674000000,0.000047378000000,0.000129550000000,0.000147328000000,0.000028232000000,0.000444414000000 +0.000017762500000,0.011296751000000,0.000215279000000,0.000040266000000,0.000015590000000,0.000041846000000,0.000027047000000,0.000046982000000,0.000046983000000,0.000022898500000,0.000039081000000,0.000102685000000,0.000201056000000,0.000170637000000,0.000169057000000,0.012004306000000,0.000214093000000,0.000054489000000,0.000047377000000,0.000083328000000,0.000143377000000,0.000028231500000,0.000470883000000 +0.000018948000000,0.011240653000000,0.000122044000000,0.000037500000000,0.000015589500000,0.000042242000000,0.000027046500000,0.000082143000000,0.000045797000000,0.000021911000000,0.000039476000000,0.000116909000000,0.000160365000000,0.000170241000000,0.000169846000000,0.012044603000000,0.000210933000000,0.000054883000000,0.000047378000000,0.000084118000000,0.000167871000000,0.000028034500000,0.000460216000000 +0.000035343000000,0.011083418000000,0.000114933000000,0.000037501000000,0.000016182500000,0.000042637000000,0.000026256500000,0.000060414000000,0.000047377000000,0.000022503500000,0.000038686000000,0.000116513000000,0.000163131000000,0.000170241000000,0.000203032000000,0.011397492000000,0.000214883000000,0.000054884000000,0.000045797000000,0.000088463000000,0.000133106000000,0.000028232000000,0.000412019000000 +0.000020133000000,0.011186134000000,0.000126390000000,0.000039477000000,0.000016380000000,0.000042241000000,0.000036726000000,0.000046983000000,0.000047378000000,0.000022701000000,0.000039871000000,0.000145748000000,0.000161550000000,0.000174983000000,0.000182093000000,0.012193936000000,0.000214093000000,0.000055674000000,0.000045797000000,0.000082142000000,0.000131526000000,0.000028231500000,0.000495377000000 +0.000024281500000,0.011233146000000,0.000130735000000,0.000040662000000,0.000016380000000,0.000078192000000,0.000026849500000,0.000047377000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000116118000000,0.000160365000000,0.000172217000000,0.000169056000000,0.012890824000000,0.000215674000000,0.000055279000000,0.000046192000000,0.000085304000000,0.000129550000000,0.000028232000000,0.000407673000000 +0.000018750500000,0.010918678000000,0.000117698000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000064365000000,0.000022503500000,0.000039477000000,0.000116908000000,0.000208958000000,0.000170637000000,0.000169057000000,0.011794924000000,0.000219229000000,0.000054883000000,0.000081748000000,0.000082933000000,0.000133896000000,0.000028232000000,0.000447574000000 +0.000018750500000,0.011212998000000,0.000163130000000,0.000037500000000,0.000016380000000,0.000041451000000,0.000027244000000,0.000046983000000,0.000060810000000,0.000030997500000,0.000039081000000,0.000115723000000,0.000159969000000,0.000170242000000,0.000169846000000,0.011609245000000,0.000213698000000,0.000054884000000,0.000045797000000,0.000083328000000,0.000167476000000,0.000028034000000,0.000413599000000 +0.000017762500000,0.011517195000000,0.000114537000000,0.000076612000000,0.000016380000000,0.000042242000000,0.000026454500000,0.000046193000000,0.000046982000000,0.000022898500000,0.000039871000000,0.000103871000000,0.000164316000000,0.000170242000000,0.000339328000000,0.011929639000000,0.000208957000000,0.000055278000000,0.000045797000000,0.000174192000000,0.000128760000000,0.000028232000000,0.000447970000000 +0.000017763000000,0.011396307000000,0.000114933000000,0.000037106000000,0.000026059000000,0.000041451000000,0.000026651500000,0.000046587000000,0.000046983000000,0.000022306000000,0.000039081000000,0.000118094000000,0.000161155000000,0.000170242000000,0.000271377000000,0.011741591000000,0.000214093000000,0.000054884000000,0.000045402000000,0.000105451000000,0.000131526000000,0.000028232000000,0.000414784000000 +0.000019145500000,0.011222480000000,0.000128760000000,0.000040266000000,0.000023886500000,0.000042637000000,0.000026849000000,0.000046982000000,0.000048562000000,0.000022701000000,0.000039476000000,0.000133895000000,0.000160365000000,0.000169846000000,0.000170241000000,0.011326381000000,0.000216069000000,0.000055278000000,0.000046587000000,0.000083723000000,0.000133106000000,0.000028232000000,0.000447180000000 +0.000018355500000,0.011239467000000,0.000118488000000,0.000037896000000,0.000016182500000,0.000042637000000,0.000026454500000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000115328000000,0.000196315000000,0.000171031000000,0.000206192000000,0.011511664000000,0.000214488000000,0.000055279000000,0.000046588000000,0.000088464000000,0.000128365000000,0.000028232000000,0.000412414000000 +0.000018158000000,0.011185739000000,0.000129550000000,0.000038291000000,0.000015589500000,0.000043032000000,0.000027046500000,0.000046983000000,0.000048167000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000200267000000,0.000173402000000,0.000170242000000,0.011701689000000,0.000214093000000,0.000055278000000,0.000045797000000,0.000085698000000,0.000381599000000,0.000028034500000,0.000484710000000 +0.000017960000000,0.012165491000000,0.000187624000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046982000000,0.000048563000000,0.000022306000000,0.000039871000000,0.000118093000000,0.000178538000000,0.000172612000000,0.000168661000000,0.011592652000000,0.000216068000000,0.000054884000000,0.000046587000000,0.000090439000000,0.000165500000000,0.000028232000000,0.000411228000000 +0.000017763000000,0.010951467000000,0.000112957000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000046587000000,0.000046192000000,0.000022108500000,0.000074242000000,0.000115723000000,0.000163525000000,0.000169846000000,0.000169451000000,0.011446479000000,0.000214093000000,0.000055674000000,0.000046982000000,0.000084513000000,0.000131131000000,0.000064775500000,0.000445204000000 +0.000017762500000,0.011634923000000,0.000128760000000,0.000037895000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000046982000000,0.000045798000000,0.000022503500000,0.000052909000000,0.000117698000000,0.000180513000000,0.000171031000000,0.000170636000000,0.011748306000000,0.000214488000000,0.000055278000000,0.000045007000000,0.000117303000000,0.000206982000000,0.000028231500000,0.000408859000000 +0.000017763000000,0.011088948000000,0.000117698000000,0.000037501000000,0.000015392500000,0.000042636000000,0.000026256500000,0.000046983000000,0.000046587000000,0.000023096000000,0.000039081000000,0.000117303000000,0.000161550000000,0.000171427000000,0.000244118000000,0.011695368000000,0.000214093000000,0.000060019000000,0.000046588000000,0.000096760000000,0.000127575000000,0.000028232000000,0.000575575000000 +0.000019145500000,0.011578825000000,0.000113353000000,0.000037500000000,0.000015589500000,0.000041452000000,0.000026849000000,0.000046982000000,0.000048563000000,0.000022701000000,0.000039081000000,0.000181698000000,0.000160365000000,0.000172217000000,0.000183673000000,0.012558183000000,0.000215673000000,0.000055278000000,0.000046192000000,0.000083723000000,0.000132316000000,0.000028232000000,0.000408464000000 +0.000018552500000,0.011233146000000,0.000129155000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026652000000,0.000046982000000,0.000047772000000,0.000022503500000,0.000039081000000,0.000111378000000,0.000161550000000,0.000170242000000,0.000167871000000,0.012029590000000,0.000208167000000,0.000056069000000,0.000047378000000,0.000084513000000,0.000134291000000,0.000028231500000,0.000406093000000 +0.000017763000000,0.011257640000000,0.000149698000000,0.000040266000000,0.000015590000000,0.000042636000000,0.000026256500000,0.000047773000000,0.000046983000000,0.000022898500000,0.000038686000000,0.000116513000000,0.000160365000000,0.000173797000000,0.000168266000000,0.011356405000000,0.000214489000000,0.000055673000000,0.000046587000000,0.000083328000000,0.000129550000000,0.000028232000000,0.000409254000000 +0.000018158000000,0.011100011000000,0.000126389000000,0.000039872000000,0.000015590000000,0.000042637000000,0.000035935500000,0.000136266000000,0.000048562000000,0.000022108500000,0.000039476000000,0.000116513000000,0.000182489000000,0.000172612000000,0.000188809000000,0.011883417000000,0.000213304000000,0.000055279000000,0.000045797000000,0.000084909000000,0.000181303000000,0.000028232000000,0.000408068000000 +0.000019145500000,0.012176553000000,0.000128760000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000056676500000,0.000082933000000,0.000046983000000,0.000022503500000,0.000039476000000,0.000114538000000,0.000175377000000,0.000170637000000,0.000172216000000,0.011819417000000,0.000224760000000,0.000054093000000,0.000046192000000,0.000082538000000,0.000132315000000,0.000028232000000,0.000431772000000 +0.000018750500000,0.011082233000000,0.000117304000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000050143000000,0.000048167000000,0.000021911000000,0.000039081000000,0.000116118000000,0.000162340000000,0.000171032000000,0.000168266000000,0.011455566000000,0.000213698000000,0.000055279000000,0.000046982000000,0.000085303000000,0.000129946000000,0.000028034500000,0.000408858000000 +0.000018355500000,0.011210232000000,0.000128760000000,0.000037501000000,0.000016577500000,0.000042637000000,0.000026256500000,0.000049747000000,0.000082933000000,0.000022306000000,0.000038686000000,0.000151278000000,0.000162736000000,0.000171822000000,0.000168266000000,0.011724208000000,0.000212513000000,0.000055278000000,0.000046982000000,0.000083328000000,0.000133500000000,0.000028232000000,0.000444019000000 +0.000018157500000,0.011532602000000,0.000129155000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000026849500000,0.000060415000000,0.000047773000000,0.000022898500000,0.000039476000000,0.000098735000000,0.000161550000000,0.000169452000000,0.000169056000000,0.012180898000000,0.000214488000000,0.000055279000000,0.000082143000000,0.000170637000000,0.000148118000000,0.000028232000000,0.000407673000000 +0.000028429500000,0.011568949000000,0.000182883000000,0.000037501000000,0.000015589500000,0.000058834000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000031985000000,0.000039476000000,0.000115328000000,0.000198290000000,0.000171031000000,0.000206192000000,0.011983763000000,0.000218044000000,0.000054883000000,0.000045007000000,0.000083328000000,0.000129155000000,0.000028232000000,0.000447969000000 +0.000025861500000,0.011062085000000,0.000131525000000,0.000037501000000,0.000016182500000,0.000042242000000,0.000026849000000,0.000047377000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000161155000000,0.000170636000000,0.000170241000000,0.011589887000000,0.000214488000000,0.000054489000000,0.000046983000000,0.000083328000000,0.000131525000000,0.000028232000000,0.000408858000000 +0.000019145500000,0.011402628000000,0.000129946000000,0.000037501000000,0.000016577500000,0.000042637000000,0.000026257000000,0.000046983000000,0.000047772000000,0.000021911000000,0.000039081000000,0.000102686000000,0.000161155000000,0.000172216000000,0.000170242000000,0.011343763000000,0.000214489000000,0.000054883000000,0.000046587000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000493007000000 +0.000017763000000,0.011023368000000,0.000129155000000,0.000073846000000,0.000015392500000,0.000042241000000,0.000026849000000,0.000046982000000,0.000048563000000,0.000022108500000,0.000039081000000,0.000114538000000,0.000164315000000,0.000169056000000,0.000170636000000,0.011700504000000,0.000214093000000,0.000054884000000,0.000045402000000,0.000084908000000,0.000127970000000,0.000028034000000,0.000418340000000 +0.000017762500000,0.011259615000000,0.000129945000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000165501000000,0.000173007000000,0.000169847000000,0.011813886000000,0.000281253000000,0.000055674000000,0.000046192000000,0.000084513000000,0.000210143000000,0.000076232000000,0.000446389000000 +0.000017565500000,0.011483221000000,0.000130735000000,0.000040266000000,0.000016380000000,0.000041846000000,0.000026849500000,0.000046192000000,0.000046983000000,0.000022503500000,0.000038686000000,0.000139821000000,0.000200661000000,0.000172612000000,0.000205797000000,0.011668899000000,0.000214489000000,0.000055279000000,0.000045797000000,0.000082538000000,0.000131920000000,0.000087886000000,0.000407673000000 +0.000017762500000,0.011201541000000,0.000163921000000,0.000037501000000,0.000015787500000,0.000041451000000,0.000026651500000,0.000047378000000,0.000046192000000,0.000022305500000,0.000039476000000,0.000117698000000,0.000161945000000,0.000169847000000,0.000167476000000,0.011382479000000,0.000214488000000,0.000054884000000,0.000046587000000,0.000085303000000,0.000129945000000,0.000079589500000,0.000451525000000 +0.000018158000000,0.011063665000000,0.000122044000000,0.000040662000000,0.000016775000000,0.000041452000000,0.000026256500000,0.000046983000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000107822000000,0.000161945000000,0.000170637000000,0.000171427000000,0.011705639000000,0.000213303000000,0.000057253000000,0.000045402000000,0.000116908000000,0.000134686000000,0.000054898500000,0.000406093000000 +0.000017762500000,0.011182973000000,0.000130340000000,0.000040267000000,0.000016380000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000023096500000,0.000074637000000,0.000098735000000,0.000163526000000,0.000170637000000,0.000170636000000,0.013933786000000,0.000302587000000,0.000054884000000,0.000063180000000,0.000100711000000,0.000129945000000,0.000044429500000,0.000454685000000 +0.000018553000000,0.012485096000000,0.000132710000000,0.000037896000000,0.000042256500000,0.000041057000000,0.000026257000000,0.000046982000000,0.000046192000000,0.000022898500000,0.000039871000000,0.000116513000000,0.000162340000000,0.000170636000000,0.000168266000000,0.012566479000000,0.000201452000000,0.000056069000000,0.000061205000000,0.000086489000000,0.000127970000000,0.000029812000000,0.000414389000000 +0.000019145500000,0.011622677000000,0.000132316000000,0.000037501000000,0.000022306000000,0.000041451000000,0.000026849000000,0.000047378000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000211723000000,0.000172217000000,0.000206982000000,0.011888553000000,0.000201847000000,0.000055279000000,0.000045797000000,0.000085303000000,0.000130735000000,0.000028034500000,0.000484315000000 +0.000018948000000,0.010987023000000,0.000129155000000,0.000039871000000,0.000015392500000,0.000041451000000,0.000061614500000,0.000063574000000,0.000048562000000,0.000021911000000,0.000038686000000,0.000141402000000,0.000160760000000,0.000171031000000,0.000169452000000,0.013042528000000,0.000203822000000,0.000055674000000,0.000046192000000,0.000089649000000,0.000131526000000,0.000028232000000,0.000407673000000 +0.000018355500000,0.011588701000000,0.000163526000000,0.000039871000000,0.000015589500000,0.000041452000000,0.000026849500000,0.000046983000000,0.000046983000000,0.000022306000000,0.000039476000000,0.000116908000000,0.000160365000000,0.000170636000000,0.000171821000000,0.012402528000000,0.000203822000000,0.000055278000000,0.000045403000000,0.000084908000000,0.000133896000000,0.000046207500000,0.000442439000000 +0.000017762500000,0.011239072000000,0.000125600000000,0.000038291000000,0.000015787500000,0.000042241000000,0.000027046500000,0.000047377000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000163920000000,0.000172217000000,0.000168267000000,0.011333492000000,0.000200267000000,0.000054884000000,0.000047377000000,0.000084118000000,0.000181698000000,0.000028232000000,0.000405698000000 +0.000018355500000,0.011132011000000,0.000130735000000,0.000037895000000,0.000016380000000,0.000042637000000,0.000026651500000,0.000046982000000,0.000046193000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000160760000000,0.000178143000000,0.000169846000000,0.011959269000000,0.000200266000000,0.000055673000000,0.000046983000000,0.000084118000000,0.000130341000000,0.000028232000000,0.000444414000000 +0.000017762500000,0.011114233000000,0.000128760000000,0.000040661000000,0.000016577500000,0.000042242000000,0.000026652000000,0.000046983000000,0.000048167000000,0.000022898500000,0.000039476000000,0.000107427000000,0.000241748000000,0.000170637000000,0.000168266000000,0.011607270000000,0.000203031000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000131131000000,0.000028232000000,0.000406883000000 +0.000018355500000,0.011787023000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000026849000000,0.000046587000000,0.000082538000000,0.000022306000000,0.000039081000000,0.000115723000000,0.000162340000000,0.000169847000000,0.000169451000000,0.011474529000000,0.000203427000000,0.000055278000000,0.000082538000000,0.000155624000000,0.000135081000000,0.000028232000000,0.000483920000000 +0.000017762500000,0.011408949000000,0.000128365000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000027244000000,0.000047377000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000161946000000,0.000169451000000,0.000171031000000,0.011102776000000,0.000201846000000,0.000054884000000,0.000046982000000,0.000084513000000,0.000131921000000,0.000028231500000,0.000408463000000 +0.000018750500000,0.011020603000000,0.000209352000000,0.000037501000000,0.000015787500000,0.000042637000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000021911000000,0.000038686000000,0.000151279000000,0.000160760000000,0.000173007000000,0.000170242000000,0.011011122000000,0.000201847000000,0.000054883000000,0.000047772000000,0.000086883000000,0.000182883000000,0.000028232000000,0.000445599000000 +0.000017763000000,0.011290035000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000094390000000,0.000026256500000,0.000046983000000,0.000048563000000,0.000040676000000,0.000039871000000,0.000137056000000,0.000161155000000,0.000208563000000,0.000208168000000,0.011646776000000,0.000200266000000,0.000055674000000,0.000046588000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000415179000000 +0.000017762500000,0.011146628000000,0.000132710000000,0.000038291000000,0.000015590000000,0.000059229000000,0.000027837000000,0.000046982000000,0.000046982000000,0.000023096000000,0.000039081000000,0.000119278000000,0.000199871000000,0.000170636000000,0.000168266000000,0.011028504000000,0.000203427000000,0.000055279000000,0.000047377000000,0.000083723000000,0.000132711000000,0.000028034000000,0.000449550000000 +0.000017960500000,0.011634134000000,0.000132711000000,0.000040266000000,0.000016972500000,0.000042637000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000116513000000,0.000160760000000,0.000170242000000,0.000169847000000,0.011640455000000,0.000197501000000,0.000055673000000,0.000047378000000,0.000084119000000,0.000131130000000,0.000028232000000,0.000402537000000 +0.000018947500000,0.010965689000000,0.000113748000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000047377000000,0.000046983000000,0.000022503500000,0.000039476000000,0.000109402000000,0.000165501000000,0.000186834000000,0.000170241000000,0.011120949000000,0.000202242000000,0.000056464000000,0.000047377000000,0.000085698000000,0.000173797000000,0.000028232000000,0.000446389000000 +0.000036528500000,0.011069196000000,0.000132710000000,0.000094389000000,0.000016775000000,0.000041452000000,0.000027046500000,0.000046588000000,0.000048562000000,0.000022701000000,0.000038686000000,0.000111378000000,0.000161945000000,0.000173797000000,0.000169057000000,0.011008356000000,0.000201847000000,0.000055278000000,0.000047378000000,0.000086884000000,0.000133105000000,0.000028232000000,0.000406489000000 +0.000018750500000,0.010906825000000,0.000133105000000,0.000051723000000,0.000015590000000,0.000042637000000,0.000026652000000,0.000046982000000,0.000046587000000,0.000022899000000,0.000039476000000,0.000139031000000,0.000165501000000,0.000170241000000,0.000212513000000,0.012014577000000,0.000215673000000,0.000055278000000,0.000046192000000,0.000120069000000,0.000131131000000,0.000028231500000,0.000457451000000 +0.000017762500000,0.013233738000000,0.000130340000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000046587000000,0.000048562000000,0.000022305500000,0.000039081000000,0.000117698000000,0.000225550000000,0.000170241000000,0.000168662000000,0.011706430000000,0.000201451000000,0.000055279000000,0.000046588000000,0.000085303000000,0.000129156000000,0.000028232000000,0.000415970000000 +0.000018553000000,0.011873146000000,0.000129945000000,0.000040267000000,0.000015392000000,0.000043427000000,0.000043244500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000109007000000,0.000160760000000,0.000170241000000,0.000170241000000,0.011028900000000,0.000202241000000,0.000054883000000,0.000046587000000,0.000086884000000,0.000131130000000,0.000028232000000,0.000451526000000 +0.000018157500000,0.011573690000000,0.000129946000000,0.000040267000000,0.000016380000000,0.000041452000000,0.000035540500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000103081000000,0.000163921000000,0.000169846000000,0.000170242000000,0.011465838000000,0.000203821000000,0.000055674000000,0.000046192000000,0.000082538000000,0.000202241000000,0.000028231500000,0.000410044000000 +0.000018553000000,0.013084404000000,0.000129945000000,0.000038291000000,0.000016380000000,0.000043822000000,0.000027046500000,0.000047377000000,0.000046982000000,0.000022503500000,0.000080168000000,0.000115723000000,0.000163525000000,0.000171032000000,0.000170242000000,0.011417245000000,0.000203426000000,0.000055278000000,0.000046192000000,0.000088464000000,0.000132710000000,0.000036726000000,0.000502883000000 +0.000019145500000,0.011863270000000,0.000130340000000,0.000037896000000,0.000016775500000,0.000043822000000,0.000027047000000,0.000082538000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000116908000000,0.000199871000000,0.000169846000000,0.000241352000000,0.011061690000000,0.000201451000000,0.000055279000000,0.000045402000000,0.000084118000000,0.000129946000000,0.000028231500000,0.000412809000000 +0.000017763000000,0.012013787000000,0.000175378000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000046982000000,0.000047773000000,0.000022108500000,0.000038686000000,0.000102686000000,0.000163525000000,0.000169057000000,0.000169057000000,0.011446875000000,0.000201846000000,0.000055278000000,0.000047378000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000521451000000 +0.000018157500000,0.011423170000000,0.000118093000000,0.000037896000000,0.000016972500000,0.000041452000000,0.000026652000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000294291000000,0.000164711000000,0.000172612000000,0.000169451000000,0.011167566000000,0.000200266000000,0.000054489000000,0.000046982000000,0.000082933000000,0.000131130000000,0.000028232000000,0.000446785000000 +0.000018948000000,0.011702480000000,0.000118488000000,0.000038291000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000046588000000,0.000047378000000,0.000022108500000,0.000038686000000,0.000184464000000,0.000161550000000,0.000170636000000,0.000169056000000,0.011426726000000,0.000216859000000,0.000054883000000,0.000047378000000,0.000083328000000,0.000146538000000,0.000028231500000,0.000410043000000 +0.000017763000000,0.011728158000000,0.000112958000000,0.000037896000000,0.000016577500000,0.000041451000000,0.000026849000000,0.000047377000000,0.000067130000000,0.000022306000000,0.000038291000000,0.000129945000000,0.000163130000000,0.000173402000000,0.000204216000000,0.011145048000000,0.000201451000000,0.000055674000000,0.000045007000000,0.000155229000000,0.000131526000000,0.000028232000000,0.000491031000000 +0.000017762500000,0.011097641000000,0.000130735000000,0.000037896000000,0.000034553000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000098735000000,0.000022898500000,0.000039476000000,0.000106242000000,0.000198290000000,0.000172217000000,0.000183278000000,0.010961344000000,0.000202241000000,0.000055674000000,0.000081748000000,0.000082933000000,0.000132315000000,0.000028232000000,0.000409649000000 +0.000018158000000,0.011540109000000,0.000129550000000,0.000037501000000,0.000015590000000,0.000041847000000,0.000026651500000,0.000046983000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000135871000000,0.000160365000000,0.000169452000000,0.000170241000000,0.011061689000000,0.000221994000000,0.000055673000000,0.000046982000000,0.000082538000000,0.000169056000000,0.000028232000000,0.000446785000000 +0.000018553000000,0.011364702000000,0.000155229000000,0.000039872000000,0.000015590000000,0.000042241000000,0.000026651500000,0.000047377000000,0.000047773000000,0.000022503500000,0.000040267000000,0.000131130000000,0.000163920000000,0.000169452000000,0.000170242000000,0.011261591000000,0.000218044000000,0.000056069000000,0.000045403000000,0.000085699000000,0.000174982000000,0.000028034500000,0.000417945000000 +0.000017762500000,0.011554331000000,0.000130735000000,0.000040662000000,0.000016577500000,0.000041452000000,0.000027047000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039871000000,0.000116513000000,0.000161550000000,0.000237797000000,0.000170636000000,0.011043121000000,0.000201846000000,0.000055278000000,0.000046982000000,0.000084513000000,0.000130736000000,0.000028232000000,0.000487476000000 +0.000018158000000,0.011090134000000,0.000127970000000,0.000037501000000,0.000015590000000,0.000077797000000,0.000026651500000,0.000046587000000,0.000048563000000,0.000040084000000,0.000039081000000,0.000110587000000,0.000160365000000,0.000169846000000,0.000204217000000,0.012758083000000,0.000196710000000,0.000055279000000,0.000046983000000,0.000084118000000,0.000130340000000,0.000028232000000,0.000408068000000 +0.000019145500000,0.011384849000000,0.000127970000000,0.000040661000000,0.000015590000000,0.000056464000000,0.000026256500000,0.000046588000000,0.000047377000000,0.000021911000000,0.000039081000000,0.000102291000000,0.000207377000000,0.000171031000000,0.000170637000000,0.011293986000000,0.000220809000000,0.000055279000000,0.000045797000000,0.000082933000000,0.000131130000000,0.000028232000000,0.000443624000000 +0.000018158000000,0.011356801000000,0.000131131000000,0.000040661000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000047377000000,0.000047378000000,0.000022306000000,0.000039476000000,0.000114933000000,0.000165106000000,0.000169846000000,0.000169451000000,0.011595417000000,0.000408068000000,0.000094784000000,0.000047377000000,0.000084118000000,0.000131525000000,0.000028232000000,0.000407278000000 +0.000018553000000,0.011389196000000,0.000129945000000,0.000073846000000,0.000016380000000,0.000041846000000,0.000027244500000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039871000000,0.000103081000000,0.000160365000000,0.000173797000000,0.000167476000000,0.011404998000000,0.000201846000000,0.000105056000000,0.000046982000000,0.000121649000000,0.000180118000000,0.000028232000000,0.000708710000000 +0.000018157500000,0.011303863000000,0.000235031000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000061812000000,0.000047377000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000150489000000,0.000162735000000,0.000170242000000,0.000169846000000,0.011028504000000,0.000204611000000,0.000072661000000,0.000046587000000,0.000084118000000,0.000131920000000,0.000028231500000,0.000452710000000 +0.000017763000000,0.010932900000000,0.000142587000000,0.000040662000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046588000000,0.000048167000000,0.000022898500000,0.000039872000000,0.000116118000000,0.000161945000000,0.000170242000000,0.000205007000000,0.011378134000000,0.000201451000000,0.000069896000000,0.000046982000000,0.000082932000000,0.000130735000000,0.000063590000000,0.000409254000000 +0.000017960000000,0.011023764000000,0.000129550000000,0.000039871000000,0.000016577500000,0.000042241000000,0.000026849500000,0.000046982000000,0.000045797000000,0.000023491000000,0.000039476000000,0.000107427000000,0.000231476000000,0.000170637000000,0.000170242000000,0.011418825000000,0.000203426000000,0.000054884000000,0.000046192000000,0.000083328000000,0.000130735000000,0.000028232000000,0.000454686000000 +0.000017763000000,0.011339417000000,0.000128760000000,0.000038291000000,0.000015985000000,0.000043032000000,0.000026849000000,0.000046587000000,0.000048168000000,0.000022503500000,0.000039476000000,0.000117303000000,0.000171427000000,0.000171427000000,0.000171031000000,0.011127665000000,0.000199871000000,0.000054883000000,0.000045798000000,0.000086883000000,0.000206587000000,0.000028231500000,0.000403723000000 +0.000035935500000,0.011013097000000,0.000127575000000,0.000037896000000,0.000016577500000,0.000042637000000,0.000026454000000,0.000046587000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000101896000000,0.000170241000000,0.000171427000000,0.000169452000000,0.011250133000000,0.000204217000000,0.000055279000000,0.000046587000000,0.000082143000000,0.000128760000000,0.000028232000000,0.000446784000000 +0.000025071500000,0.011661788000000,0.000179723000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000088464000000,0.000048562000000,0.000022503500000,0.000078588000000,0.000114933000000,0.000173402000000,0.000171031000000,0.000170241000000,0.011565788000000,0.000197896000000,0.000055674000000,0.000047378000000,0.000084908000000,0.000132315000000,0.000028232000000,0.000404908000000 +0.000018948000000,0.011441739000000,0.000129550000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026651500000,0.000046983000000,0.000045798000000,0.000022306000000,0.000070291000000,0.000116118000000,0.000180908000000,0.000174192000000,0.000186834000000,0.011534974000000,0.000203427000000,0.000055279000000,0.000047377000000,0.000084908000000,0.000131921000000,0.000028034000000,0.000477204000000 +0.000018750500000,0.011459121000000,0.000118884000000,0.000039871000000,0.000015590000000,0.000041847000000,0.000026454000000,0.000046982000000,0.000046192000000,0.000023096000000,0.000059229000000,0.000168266000000,0.000196711000000,0.000170242000000,0.000170637000000,0.010928554000000,0.000201847000000,0.000055279000000,0.000047378000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000410439000000 +0.000018750000000,0.011044307000000,0.000127970000000,0.000037106000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046982000000,0.000046587000000,0.000022503500000,0.000041451000000,0.000106636000000,0.000160365000000,0.000170242000000,0.000172612000000,0.011622677000000,0.000204217000000,0.000055279000000,0.000045797000000,0.000155625000000,0.000159969000000,0.000028232000000,0.000485501000000 +0.000017960500000,0.011232357000000,0.000113353000000,0.000037501000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000067921000000,0.000082143000000,0.000023294000000,0.000041451000000,0.000104267000000,0.000181303000000,0.000172217000000,0.000170241000000,0.011265147000000,0.000201847000000,0.000055279000000,0.000046587000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000411624000000 +0.000018157500000,0.010982282000000,0.000115328000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000062390000000,0.000048563000000,0.000022306000000,0.000052513000000,0.000102291000000,0.000195131000000,0.000172217000000,0.000206587000000,0.011635714000000,0.000203427000000,0.000055278000000,0.000062784000000,0.000146143000000,0.000131131000000,0.000028232000000,0.000445205000000 +0.000018553000000,0.011156504000000,0.000133501000000,0.000040661000000,0.000016775000000,0.000043031000000,0.000026454500000,0.000060414000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000116513000000,0.000203031000000,0.000173006000000,0.000169056000000,0.010942776000000,0.000202242000000,0.000055279000000,0.000046587000000,0.000090044000000,0.000130735000000,0.000028429500000,0.000459031000000 +0.000018355500000,0.011093690000000,0.000113352000000,0.000037896000000,0.000016577500000,0.000041452000000,0.000027046500000,0.000046982000000,0.000046587000000,0.000022305500000,0.000039081000000,0.000099130000000,0.000302587000000,0.000169846000000,0.000214094000000,0.011201147000000,0.000197106000000,0.000055673000000,0.000046587000000,0.000090439000000,0.000223575000000,0.000028232000000,0.000443229000000 +0.000018750500000,0.011098036000000,0.000110588000000,0.000037896000000,0.000016577500000,0.000041847000000,0.000026454000000,0.000046983000000,0.000048563000000,0.000023096500000,0.000039081000000,0.000171427000000,0.000176168000000,0.000170241000000,0.000172612000000,0.011212998000000,0.000214884000000,0.000055674000000,0.000046193000000,0.000142587000000,0.000326686000000,0.000028231500000,0.000405303000000 +0.000018355000000,0.011293196000000,0.000114538000000,0.000037501000000,0.000015590000000,0.000043031000000,0.000026652000000,0.000046983000000,0.000046982000000,0.000022503500000,0.000038686000000,0.000117303000000,0.000160365000000,0.000172612000000,0.000171031000000,0.011818232000000,0.000233056000000,0.000055674000000,0.000045402000000,0.000165501000000,0.000145747000000,0.000028232000000,0.000462587000000 +0.000019145500000,0.011280158000000,0.000110192000000,0.000038291000000,0.000015392500000,0.000075822000000,0.000046009500000,0.000046982000000,0.000046982000000,0.000033960000000,0.000038686000000,0.000102686000000,0.000208562000000,0.000170242000000,0.000207378000000,0.011915812000000,0.000200661000000,0.000055673000000,0.000046982000000,0.000084118000000,0.000170636000000,0.000028232000000,0.000413599000000 +0.000018750500000,0.011516010000000,0.000126785000000,0.000040266000000,0.000016973000000,0.000045007000000,0.000034948000000,0.000046587000000,0.000047772000000,0.000022701000000,0.000039081000000,0.000110192000000,0.000160365000000,0.000172612000000,0.000170241000000,0.011430677000000,0.000204612000000,0.000055674000000,0.000045797000000,0.000085304000000,0.000140217000000,0.000048775000000,0.000445599000000 +0.000017763000000,0.011433442000000,0.000174587000000,0.000058834000000,0.000016380000000,0.000041452000000,0.000027244000000,0.000046588000000,0.000047377000000,0.000023096000000,0.000039476000000,0.000116118000000,0.000163131000000,0.000170241000000,0.000169847000000,0.012095960000000,0.000201847000000,0.000055278000000,0.000046192000000,0.000084908000000,0.000140217000000,0.000028034500000,0.000411624000000 +0.000018355000000,0.011237887000000,0.000127969000000,0.000054488000000,0.000024676000000,0.000042242000000,0.000026651500000,0.000046983000000,0.000048562000000,0.000022701500000,0.000039081000000,0.000116514000000,0.000160365000000,0.000173402000000,0.000169451000000,0.011832060000000,0.000203032000000,0.000055279000000,0.000046588000000,0.000084118000000,0.000140612000000,0.000028231500000,0.000490636000000 +0.000017763000000,0.011246973000000,0.000129155000000,0.000068316000000,0.000015590000000,0.000041846000000,0.000026454500000,0.000045797000000,0.000046587000000,0.000022899000000,0.000039476000000,0.000103476000000,0.000162735000000,0.000172612000000,0.000169057000000,0.011450430000000,0.000201451000000,0.000054883000000,0.000046982000000,0.000107822000000,0.000175377000000,0.000028034500000,0.000412414000000 +0.000017762500000,0.011166776000000,0.000114538000000,0.000037896000000,0.000016775000000,0.000042637000000,0.000027244000000,0.000046587000000,0.000046982000000,0.000021910500000,0.000039081000000,0.000189599000000,0.000253995000000,0.000170637000000,0.000186834000000,0.011708010000000,0.000204612000000,0.000055279000000,0.000046193000000,0.000100710000000,0.000142193000000,0.000028232000000,0.000454290000000 +0.000018553000000,0.011245788000000,0.000129550000000,0.000037105000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039477000000,0.000114933000000,0.000161550000000,0.000169847000000,0.000168661000000,0.011908701000000,0.000201847000000,0.000055278000000,0.000047377000000,0.000152464000000,0.000139427000000,0.000028231500000,0.000406093000000 +0.000017763000000,0.011364702000000,0.000133501000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000027244000000,0.000082538000000,0.000048167000000,0.000022503500000,0.000075032000000,0.000103476000000,0.000161155000000,0.000170637000000,0.000169451000000,0.011945047000000,0.000203822000000,0.000054884000000,0.000045402000000,0.000097550000000,0.000135476000000,0.000028232000000,0.000445600000000 +0.000017763000000,0.011286085000000,0.000162735000000,0.000037500000000,0.000015787500000,0.000042637000000,0.000026256500000,0.000046192000000,0.000047773000000,0.000022899000000,0.000039081000000,0.000116513000000,0.000160760000000,0.000280069000000,0.000169451000000,0.011689838000000,0.000201847000000,0.000054883000000,0.000046982000000,0.000085303000000,0.000140611000000,0.000028232000000,0.000409254000000 +0.000017762500000,0.011333492000000,0.000131131000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000043837000000,0.000046983000000,0.000047377000000,0.000022503500000,0.000039871000000,0.000115723000000,0.000160365000000,0.000185648000000,0.000204612000000,0.011553936000000,0.000203427000000,0.000054884000000,0.000046192000000,0.000085303000000,0.000134686000000,0.000028231500000,0.000456266000000 +0.000019145500000,0.011097245000000,0.000128365000000,0.000037895000000,0.000015590000000,0.000042241000000,0.000034553000000,0.000046982000000,0.000048168000000,0.000022108000000,0.000038686000000,0.000116118000000,0.000215278000000,0.000171822000000,0.000171427000000,0.011496257000000,0.000199871000000,0.000055279000000,0.000046588000000,0.000082933000000,0.000140217000000,0.000028034500000,0.000404908000000 +0.000036923500000,0.010994135000000,0.000129155000000,0.000040661000000,0.000016380000000,0.000041846000000,0.000026651500000,0.000046982000000,0.000098735000000,0.000022503500000,0.000039082000000,0.000210143000000,0.000165500000000,0.000172612000000,0.000168266000000,0.011746331000000,0.000203427000000,0.000055278000000,0.000045007000000,0.000083723000000,0.000135081000000,0.000028232000000,0.000447179000000 +0.000018355000000,0.011655862000000,0.000129945000000,0.000040661000000,0.000015589500000,0.000041452000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000022899000000,0.000039081000000,0.000114933000000,0.000163526000000,0.000210143000000,0.000169452000000,0.011355221000000,0.000202242000000,0.000055279000000,0.000065550000000,0.000083723000000,0.000139427000000,0.000028232000000,0.000406488000000 +0.000018948000000,0.011524701000000,0.000117698000000,0.000037106000000,0.000015590000000,0.000042636000000,0.000027244500000,0.000046983000000,0.000046193000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000161155000000,0.000168661000000,0.000168266000000,0.012009442000000,0.000202637000000,0.000075426000000,0.000095970000000,0.000082143000000,0.000135081000000,0.000028232000000,0.000449945000000 +0.000018553000000,0.011024949000000,0.000167081000000,0.000039872000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039871000000,0.000101896000000,0.000161550000000,0.000172217000000,0.000206192000000,0.012066726000000,0.000201846000000,0.000071872000000,0.000060414000000,0.000103871000000,0.000137451000000,0.000028429500000,0.000408463000000 +0.000018355500000,0.011367862000000,0.000130736000000,0.000040267000000,0.000016775000000,0.000041057000000,0.000062799500000,0.000046587000000,0.000048958000000,0.000022503500000,0.000039476000000,0.000117303000000,0.000215674000000,0.000169847000000,0.000169452000000,0.011867220000000,0.000203427000000,0.000054883000000,0.000045797000000,0.000084908000000,0.000139821000000,0.000028232000000,0.000447575000000 +0.000017762500000,0.011125690000000,0.000117303000000,0.000037106000000,0.000016380000000,0.000042636000000,0.000071688500000,0.000046983000000,0.000046982000000,0.000022701000000,0.000038686000000,0.000114933000000,0.000162735000000,0.000171427000000,0.000169451000000,0.011617936000000,0.000195920000000,0.000055279000000,0.000046982000000,0.000086884000000,0.000139822000000,0.000038108000000,0.000408859000000 +0.000018948000000,0.011526282000000,0.000126785000000,0.000037500000000,0.000015590000000,0.000042242000000,0.000061021500000,0.000046983000000,0.000047377000000,0.000022306000000,0.000058440000000,0.000187229000000,0.000164710000000,0.000187624000000,0.000169846000000,0.011743566000000,0.000202637000000,0.000056068000000,0.000046588000000,0.000083723000000,0.000141007000000,0.000028232000000,0.000427032000000 +0.000018948000000,0.011288455000000,0.000128760000000,0.000039871000000,0.000016380000000,0.000041451000000,0.000035738000000,0.000046982000000,0.000047772000000,0.000040478500000,0.000090044000000,0.000107031000000,0.000160760000000,0.000172217000000,0.000167871000000,0.011616356000000,0.000201451000000,0.000055674000000,0.000047377000000,0.000084513000000,0.000137056000000,0.000028231500000,0.000405698000000 +0.000017762500000,0.011092900000000,0.000122044000000,0.000040266000000,0.000016577500000,0.000042636000000,0.000034553000000,0.000046587000000,0.000048563000000,0.000022898500000,0.000053698000000,0.000117303000000,0.000199871000000,0.000169847000000,0.000299821000000,0.011834825000000,0.000203426000000,0.000055673000000,0.000046588000000,0.000082143000000,0.000139821000000,0.000028232000000,0.000428612000000 +0.000018750500000,0.011002825000000,0.000152069000000,0.000037501000000,0.000015590000000,0.000077402000000,0.000026454000000,0.000046587000000,0.000046587000000,0.000022306000000,0.000039476000000,0.000116908000000,0.000161155000000,0.000169847000000,0.000185649000000,0.011593443000000,0.000197896000000,0.000054489000000,0.000046192000000,0.000084118000000,0.000139427000000,0.000038503500000,0.000406093000000 +0.000017763000000,0.011533393000000,0.000113353000000,0.000037896000000,0.000015392000000,0.000076611000000,0.000026454000000,0.000046588000000,0.000046192000000,0.000022899000000,0.000039476000000,0.000117303000000,0.000165896000000,0.000207377000000,0.000171427000000,0.012444405000000,0.000202242000000,0.000055278000000,0.000045797000000,0.000088068000000,0.000139031000000,0.000036528000000,0.000411624000000 +0.000017762500000,0.011083418000000,0.000118093000000,0.000060019000000,0.000016775500000,0.000045402000000,0.000026454500000,0.000046587000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000104661000000,0.000161550000000,0.000172612000000,0.000169056000000,0.012317985000000,0.000237797000000,0.000054884000000,0.000046192000000,0.000084514000000,0.000139032000000,0.000034948000000,0.000513550000000 +0.000018553000000,0.011614775000000,0.000129156000000,0.000070291000000,0.000016577500000,0.000043427000000,0.000027046500000,0.000046982000000,0.000046587000000,0.000022306000000,0.000039081000000,0.000115328000000,0.000162340000000,0.000169057000000,0.000205007000000,0.011879072000000,0.000203821000000,0.000054883000000,0.000046982000000,0.000154834000000,0.000173402000000,0.000028034500000,0.000439278000000 +0.000018553000000,0.011546825000000,0.000128760000000,0.000040267000000,0.000015589500000,0.000041846000000,0.000026454000000,0.000047378000000,0.000048958000000,0.000022108000000,0.000039082000000,0.000167871000000,0.000244118000000,0.000169451000000,0.000169846000000,0.011607269000000,0.000197501000000,0.000054884000000,0.000045403000000,0.000089254000000,0.000137847000000,0.000028232000000,0.000466143000000 +0.000018553000000,0.011336653000000,0.000127970000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000082933000000,0.000045797000000,0.000023096500000,0.000075032000000,0.000115723000000,0.000163131000000,0.000208167000000,0.000169847000000,0.011583960000000,0.000202242000000,0.000054883000000,0.000046982000000,0.000093599000000,0.000137056000000,0.000028034000000,0.000410044000000 +0.000018947500000,0.011514430000000,0.000165896000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000046588000000,0.000047378000000,0.000022701000000,0.000039872000000,0.000116513000000,0.000163130000000,0.000184859000000,0.000169451000000,0.011725393000000,0.000198291000000,0.000054884000000,0.000046587000000,0.000096761000000,0.000138241000000,0.000028232000000,0.000515130000000 +0.000017763000000,0.011116603000000,0.000127180000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000035343000000,0.000047377000000,0.000049352000000,0.000023096000000,0.000038686000000,0.000118093000000,0.000161551000000,0.000169056000000,0.000168266000000,0.011576455000000,0.000203427000000,0.000055279000000,0.000046192000000,0.000082933000000,0.000177352000000,0.000028232000000,0.000409648000000 +0.000017762500000,0.011246974000000,0.000115723000000,0.000040266000000,0.000034552500000,0.000042242000000,0.000026257000000,0.000046982000000,0.000066736000000,0.000023293500000,0.000039081000000,0.000116909000000,0.000165895000000,0.000170241000000,0.000205007000000,0.011450430000000,0.000201451000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000138637000000,0.000028231500000,0.000451525000000 +0.000018750500000,0.011592653000000,0.000126784000000,0.000038291000000,0.000016578000000,0.000043032000000,0.000027046500000,0.000046983000000,0.000099920000000,0.000022898500000,0.000039082000000,0.000115328000000,0.000240168000000,0.000171822000000,0.000169056000000,0.011771220000000,0.000201847000000,0.000055674000000,0.000046588000000,0.000088464000000,0.000139821000000,0.000028232000000,0.000406883000000 +0.000017763000000,0.011243023000000,0.000120858000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046587000000,0.000086093000000,0.000023491500000,0.000039081000000,0.000174193000000,0.000161155000000,0.000207772000000,0.000169451000000,0.011711961000000,0.000203822000000,0.000055278000000,0.000062785000000,0.000088464000000,0.000135871000000,0.000028232000000,0.000447970000000 +0.000017960000000,0.011308208000000,0.000129550000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000026652000000,0.000080957000000,0.000051723000000,0.000022503500000,0.000039871000000,0.000098735000000,0.000161945000000,0.000169056000000,0.000169451000000,0.011896849000000,0.000203427000000,0.000054489000000,0.000046587000000,0.000121254000000,0.000145748000000,0.000063787500000,0.000408463000000 +0.000018158000000,0.010892208000000,0.000167081000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000086884000000,0.000062785000000,0.000022108500000,0.000039082000000,0.000115328000000,0.000162340000000,0.000173007000000,0.000169057000000,0.011772010000000,0.000201451000000,0.000055673000000,0.000046193000000,0.000083328000000,0.000180908000000,0.000028034000000,0.000453106000000 +0.000018750500000,0.011578035000000,0.000120464000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000050143000000,0.000045797000000,0.000023096500000,0.000039081000000,0.000116513000000,0.000165501000000,0.000169056000000,0.000257550000000,0.011525887000000,0.000201847000000,0.000055674000000,0.000045797000000,0.000085304000000,0.000139427000000,0.000028232000000,0.000417550000000 +0.000026059000000,0.011286875000000,0.000128760000000,0.000040662000000,0.000016577500000,0.000041451000000,0.000027244000000,0.000050143000000,0.000047377000000,0.000022898500000,0.000039081000000,0.000109797000000,0.000207378000000,0.000171822000000,0.000168267000000,0.011826133000000,0.000239772000000,0.000054884000000,0.000046587000000,0.000085303000000,0.000138242000000,0.000028232000000,0.000513154000000 +0.000017960000000,0.011251714000000,0.000115328000000,0.000038291000000,0.000015787500000,0.000041847000000,0.000026256500000,0.000060414000000,0.000048168000000,0.000022701000000,0.000039081000000,0.000107031000000,0.000161551000000,0.000207377000000,0.000170241000000,0.011972701000000,0.000203032000000,0.000054883000000,0.000045797000000,0.000086093000000,0.000136266000000,0.000028231500000,0.000412809000000 +0.000018750500000,0.010905246000000,0.000131525000000,0.000037896000000,0.000015589500000,0.000043427000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000022898500000,0.000039871000000,0.000137847000000,0.000161945000000,0.000169846000000,0.000168661000000,0.011530627000000,0.000201451000000,0.000055279000000,0.000046587000000,0.000097550000000,0.000137452000000,0.000028232000000,0.000441649000000 +0.000018750500000,0.011992454000000,0.000131526000000,0.000037500000000,0.000015590000000,0.000043822000000,0.000027047000000,0.000046983000000,0.000048168000000,0.000040676000000,0.000039081000000,0.000116118000000,0.000161945000000,0.000169056000000,0.000210538000000,0.013737836000000,0.000201451000000,0.000055279000000,0.000046588000000,0.000084908000000,0.000142587000000,0.000028232000000,0.000408859000000 +0.000017762500000,0.011218529000000,0.000165106000000,0.000037106000000,0.000015195000000,0.000078192000000,0.000026454000000,0.000047377000000,0.000046982000000,0.000022701000000,0.000039082000000,0.000117303000000,0.000231476000000,0.000171821000000,0.000169846000000,0.011870381000000,0.000244117000000,0.000055279000000,0.000046982000000,0.000154044000000,0.000140217000000,0.000028231500000,0.000453501000000 +0.000017763000000,0.012157985000000,0.000131130000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000047377000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000098736000000,0.000176562000000,0.000207772000000,0.000169847000000,0.012007072000000,0.000216069000000,0.000055278000000,0.000048168000000,0.000199081000000,0.000141797000000,0.000028232000000,0.000419131000000 +0.000019145500000,0.011763319000000,0.000113352000000,0.000037501000000,0.000015985000000,0.000042241000000,0.000026257000000,0.000046587000000,0.000048167000000,0.000021911000000,0.000039476000000,0.000104661000000,0.000161945000000,0.000170636000000,0.000167871000000,0.012751762000000,0.000243723000000,0.000056069000000,0.000045007000000,0.000261106000000,0.000143377000000,0.000028232000000,0.000407673000000 +0.000018947500000,0.012067911000000,0.000130340000000,0.000057254000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046983000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000161550000000,0.000173007000000,0.000169056000000,0.012139022000000,0.000304562000000,0.000054883000000,0.000046192000000,0.000206193000000,0.000176167000000,0.000028232000000,0.000406093000000 +0.000017763000000,0.011171911000000,0.000130736000000,0.000050933000000,0.000015589500000,0.000041451000000,0.000026651500000,0.000063970000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000107031000000,0.000162735000000,0.000171426000000,0.000239772000000,0.012230281000000,0.000214489000000,0.000055279000000,0.000044612000000,0.000088069000000,0.000138241000000,0.000028232000000,0.000408464000000 +0.000019343000000,0.011193640000000,0.000128365000000,0.000039871000000,0.000015590000000,0.000042636000000,0.000044034500000,0.000046982000000,0.000046587000000,0.000022108500000,0.000039871000000,0.000184859000000,0.000198291000000,0.000170241000000,0.000168661000000,0.011455961000000,0.000211328000000,0.000055278000000,0.000046587000000,0.000138242000000,0.000139822000000,0.000028232000000,0.000408464000000 +0.000018158000000,0.010955418000000,0.000161945000000,0.000039871000000,0.000015590000000,0.000041847000000,0.000027046500000,0.000046587000000,0.000093600000000,0.000022898500000,0.000039081000000,0.000117303000000,0.000161945000000,0.000207772000000,0.000168266000000,0.011583961000000,0.000214488000000,0.000055674000000,0.000044612000000,0.000084908000000,0.000142587000000,0.000028034500000,0.000410044000000 +0.000018157500000,0.011165196000000,0.000127574000000,0.000037896000000,0.000016577500000,0.000042242000000,0.000026849500000,0.000047377000000,0.000047377000000,0.000022503500000,0.000055279000000,0.000133500000000,0.000165895000000,0.000170242000000,0.000169451000000,0.011528257000000,0.000216069000000,0.000057649000000,0.000046983000000,0.000084513000000,0.000138637000000,0.000028231500000,0.000406488000000 +0.000017763000000,0.011480060000000,0.000130340000000,0.000039871000000,0.000016577500000,0.000041451000000,0.000027046500000,0.000046588000000,0.000045797000000,0.000022503500000,0.000039871000000,0.000161550000000,0.000165501000000,0.000169847000000,0.000170242000000,0.011819022000000,0.000204612000000,0.000108612000000,0.000046587000000,0.000084908000000,0.000155624000000,0.000046207500000,0.000498537000000 +0.000018355000000,0.011051023000000,0.000130340000000,0.000040661000000,0.000015392500000,0.000041452000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000038686000000,0.000109402000000,0.000161945000000,0.000169451000000,0.000243723000000,0.011657442000000,0.000215673000000,0.000055278000000,0.000065155000000,0.000084909000000,0.000130341000000,0.000028231500000,0.000482735000000 +0.000018158000000,0.010938431000000,0.000130341000000,0.000038291000000,0.000016775000000,0.000042241000000,0.000027244000000,0.000046587000000,0.000048167000000,0.000022503500000,0.000039871000000,0.000116514000000,0.000250439000000,0.000207772000000,0.000169846000000,0.011680751000000,0.000213699000000,0.000055674000000,0.000111773000000,0.000085698000000,0.000139031000000,0.000028232000000,0.000412414000000 +0.000017565000000,0.011132011000000,0.000130340000000,0.000037500000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000047377000000,0.000047377000000,0.000022306000000,0.000038686000000,0.000109402000000,0.000162340000000,0.000170242000000,0.000169056000000,0.011484010000000,0.000215278000000,0.000056068000000,0.000084513000000,0.000087674000000,0.000132316000000,0.000028232000000,0.000476414000000 +0.000017763000000,0.011378529000000,0.000165106000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026257000000,0.000046588000000,0.000047377000000,0.000022898500000,0.000040267000000,0.000102686000000,0.000163131000000,0.000174587000000,0.000168266000000,0.011942282000000,0.000214489000000,0.000055279000000,0.000049352000000,0.000082538000000,0.000173402000000,0.000028231500000,0.000408069000000 +0.000019145500000,0.011137542000000,0.000125994000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000045797000000,0.000048167000000,0.000022701000000,0.000039081000000,0.000115328000000,0.000162735000000,0.000171822000000,0.000204217000000,0.011559072000000,0.000265056000000,0.000056069000000,0.000059625000000,0.000084513000000,0.000131921000000,0.000028232000000,0.000443624000000 +0.000018157500000,0.011009937000000,0.000133500000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000118093000000,0.000161155000000,0.000170242000000,0.000169451000000,0.011728553000000,0.000236217000000,0.000055673000000,0.000046192000000,0.000083328000000,0.000129550000000,0.000028232000000,0.000416760000000 +0.000018553000000,0.011438578000000,0.000120463000000,0.000038291000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000046982000000,0.000047773000000,0.000022503500000,0.000039081000000,0.000114933000000,0.000231081000000,0.000300217000000,0.000170242000000,0.012258331000000,0.000211328000000,0.000055279000000,0.000046588000000,0.000084513000000,0.000130736000000,0.000028034500000,0.000476019000000 +0.000017763000000,0.011487566000000,0.000129945000000,0.000040266000000,0.000023886000000,0.000041451000000,0.000027046500000,0.000046983000000,0.000047772000000,0.000022503500000,0.000040266000000,0.000116908000000,0.000161550000000,0.000186044000000,0.000169056000000,0.012058824000000,0.000213698000000,0.000055278000000,0.000046982000000,0.000082537000000,0.000129155000000,0.000028232000000,0.000404512000000 +0.000017763000000,0.010955023000000,0.000130340000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000046193000000,0.000022503500000,0.000039476000000,0.000261105000000,0.000162340000000,0.000169056000000,0.000170636000000,0.011352060000000,0.000203426000000,0.000055279000000,0.000045402000000,0.000087279000000,0.000146933000000,0.000028232000000,0.000487476000000 +0.000034553000000,0.013114429000000,0.000163921000000,0.000040267000000,0.000016577500000,0.000042241000000,0.000026849500000,0.000046982000000,0.000048167000000,0.000048775000000,0.000039476000000,0.000246489000000,0.000165896000000,0.000169452000000,0.000242143000000,0.011525097000000,0.000250439000000,0.000055674000000,0.000046587000000,0.000082933000000,0.000130735000000,0.000028232000000,0.000504069000000 +0.000020133000000,0.011461097000000,0.000120464000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039082000000,0.000133106000000,0.000233056000000,0.000208168000000,0.000169847000000,0.011495467000000,0.000201846000000,0.000054883000000,0.000045402000000,0.000088859000000,0.000131130000000,0.000028231500000,0.000412809000000 +0.000024676500000,0.011960454000000,0.000120859000000,0.000037895000000,0.000016380000000,0.000078192000000,0.000026651500000,0.000047378000000,0.000067130000000,0.000022701000000,0.000039476000000,0.000099131000000,0.000165106000000,0.000172217000000,0.000170241000000,0.012321540000000,0.000201056000000,0.000054884000000,0.000046588000000,0.000084908000000,0.000132315000000,0.000028232000000,0.000452315000000 +0.000018948000000,0.011154529000000,0.000130340000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000044429500000,0.000046587000000,0.000063970000000,0.000022898500000,0.000040266000000,0.000152463000000,0.000161945000000,0.000172217000000,0.000212513000000,0.011755418000000,0.000202636000000,0.000055673000000,0.000046587000000,0.000088068000000,0.000131526000000,0.000028232000000,0.000407278000000 +0.000018750000000,0.011514034000000,0.000129946000000,0.000040266000000,0.000015589500000,0.000042637000000,0.000026454500000,0.000082933000000,0.000080168000000,0.000022898500000,0.000039081000000,0.000117698000000,0.000162735000000,0.000169451000000,0.000189204000000,0.011548010000000,0.000279278000000,0.000056069000000,0.000044612000000,0.000120464000000,0.000133105000000,0.000028231500000,0.000483526000000 +0.000017763000000,0.011378923000000,0.000120464000000,0.000073846000000,0.000015590000000,0.000043822000000,0.000026454000000,0.000046587000000,0.000049353000000,0.000022503500000,0.000038686000000,0.000118488000000,0.000165896000000,0.000173006000000,0.000242538000000,0.011557887000000,0.000222390000000,0.000054883000000,0.000046588000000,0.000084118000000,0.000134686000000,0.000037516000000,0.000411229000000 +0.000017762500000,0.011586727000000,0.000140216000000,0.000037500000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046587000000,0.000047772000000,0.000022108500000,0.000039476000000,0.000114933000000,0.000396612000000,0.000171031000000,0.000203821000000,0.011806775000000,0.000201846000000,0.000055674000000,0.000045797000000,0.000082933000000,0.000129945000000,0.000036528000000,0.000448760000000 +0.000017960500000,0.011694578000000,0.000129550000000,0.000038291000000,0.000015590000000,0.000042241000000,0.000026651500000,0.000046983000000,0.000046983000000,0.000022503500000,0.000038686000000,0.000102686000000,0.000353550000000,0.000172217000000,0.000169847000000,0.011425541000000,0.000203822000000,0.000055674000000,0.000082143000000,0.000082933000000,0.000133106000000,0.000028232000000,0.000405698000000 +0.000017762500000,0.011534973000000,0.000121254000000,0.000038291000000,0.000016380000000,0.000042637000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000075032000000,0.000109402000000,0.000195526000000,0.000170242000000,0.000205007000000,0.011646381000000,0.000203822000000,0.000055673000000,0.000045797000000,0.000084513000000,0.000172612000000,0.000028429500000,0.000494982000000 +0.000017763000000,0.011083418000000,0.000124810000000,0.000040267000000,0.000016380000000,0.000043032000000,0.000027046500000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000107427000000,0.000162340000000,0.000171822000000,0.000167871000000,0.011944652000000,0.000202241000000,0.000054884000000,0.000045402000000,0.000083723000000,0.000131920000000,0.000028231500000,0.000413994000000 +0.000018355500000,0.011795319000000,0.000129945000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000047377000000,0.000047377000000,0.000022701000000,0.000039081000000,0.000151674000000,0.000162340000000,0.000173007000000,0.000169846000000,0.012090034000000,0.000201452000000,0.000055278000000,0.000046192000000,0.000085303000000,0.000129550000000,0.000028232000000,0.000453105000000 +0.000018158000000,0.011261986000000,0.000112958000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026849000000,0.000047378000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000162735000000,0.000170241000000,0.000170241000000,0.012645491000000,0.000201056000000,0.000055279000000,0.000046982000000,0.000083328000000,0.000133896000000,0.000028232000000,0.000409648000000 +0.000018158000000,0.011127665000000,0.000189995000000,0.000037105000000,0.000015589500000,0.000041847000000,0.000027047000000,0.000046587000000,0.000048168000000,0.000022899000000,0.000039081000000,0.000114538000000,0.000164315000000,0.000171032000000,0.000168266000000,0.011625442000000,0.000203427000000,0.000055278000000,0.000046982000000,0.000084909000000,0.000131920000000,0.000028231500000,0.000479575000000 +0.000018750500000,0.011583171000000,0.000127970000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000046587000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000109007000000,0.000208958000000,0.000171427000000,0.000206192000000,0.011715121000000,0.000202242000000,0.000055674000000,0.000046982000000,0.000119673000000,0.000172217000000,0.000028232000000,0.000406093000000 +0.000017763000000,0.011888553000000,0.000165896000000,0.000037105000000,0.000015590000000,0.000042241000000,0.000028429500000,0.000046982000000,0.000046983000000,0.000023096000000,0.000039081000000,0.000115723000000,0.000161550000000,0.000170242000000,0.000169451000000,0.011879862000000,0.000201847000000,0.000054883000000,0.000046192000000,0.000084909000000,0.000134686000000,0.000028232000000,0.000468908000000 +0.000018750500000,0.011340603000000,0.000120859000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026651500000,0.000047378000000,0.000048957000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000161550000000,0.000171031000000,0.000169846000000,0.011609639000000,0.000203427000000,0.000054884000000,0.000046982000000,0.000083328000000,0.000131525000000,0.000028232000000,0.000417550000000 +0.000019145500000,0.011216159000000,0.000112958000000,0.000037896000000,0.000015589500000,0.000042242000000,0.000026256500000,0.000046587000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000126785000000,0.000163130000000,0.000170636000000,0.000171031000000,0.011675615000000,0.000203427000000,0.000055278000000,0.000046588000000,0.000084118000000,0.000131526000000,0.000028034000000,0.000494191000000 +0.000018750000000,0.011466232000000,0.000130341000000,0.000037896000000,0.000015590000000,0.000043032000000,0.000027047000000,0.000046982000000,0.000047377000000,0.000022306000000,0.000038686000000,0.000115723000000,0.000165896000000,0.000171821000000,0.000171032000000,0.011430677000000,0.000202241000000,0.000056859000000,0.000046982000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000444414000000 +0.000018158000000,0.011596998000000,0.000149303000000,0.000037500000000,0.000016182500000,0.000042636000000,0.000027046500000,0.000046587000000,0.000046982000000,0.000030799500000,0.000039476000000,0.000116908000000,0.000199081000000,0.000169056000000,0.000455871000000,0.011601739000000,0.000201847000000,0.000056069000000,0.000046193000000,0.000084514000000,0.000129550000000,0.000028034500000,0.000425056000000 +0.000018750500000,0.011138331000000,0.000112958000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000044429500000,0.000046983000000,0.000048958000000,0.000022108500000,0.000039081000000,0.000107032000000,0.000162341000000,0.000173402000000,0.000206192000000,0.011263566000000,0.000201452000000,0.000054488000000,0.000046982000000,0.000084908000000,0.000131921000000,0.000028231500000,0.000413600000000 +0.000019145500000,0.011135171000000,0.000128365000000,0.000040266000000,0.000016775000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000114932000000,0.000162340000000,0.000171822000000,0.000170241000000,0.011397096000000,0.000203427000000,0.000055279000000,0.000045402000000,0.000082143000000,0.000129550000000,0.000028232000000,0.000792068000000 +0.000019145500000,0.010927764000000,0.000114143000000,0.000037106000000,0.000016577500000,0.000076217000000,0.000026454500000,0.000046587000000,0.000047378000000,0.000022898500000,0.000039476000000,0.000115327000000,0.000160760000000,0.000169847000000,0.000228711000000,0.011652702000000,0.000202242000000,0.000055673000000,0.000046192000000,0.000085303000000,0.000131526000000,0.000063590000000,0.000458636000000 +0.000028232000000,0.011624652000000,0.000129551000000,0.000039871000000,0.000015590000000,0.000043822000000,0.000027046500000,0.000082933000000,0.000084118000000,0.000023491500000,0.000039081000000,0.000116118000000,0.000161945000000,0.000171032000000,0.000183279000000,0.011844702000000,0.000201451000000,0.000055674000000,0.000045402000000,0.000098735000000,0.000135081000000,0.000028232000000,0.000408858000000 +0.000019738500000,0.011176257000000,0.000123624000000,0.000039871000000,0.000025269000000,0.000043822000000,0.000026059000000,0.000046587000000,0.000047377000000,0.000022898500000,0.000038686000000,0.000138636000000,0.000237402000000,0.000170636000000,0.000171426000000,0.011550775000000,0.000203427000000,0.000054884000000,0.000045007000000,0.000086883000000,0.000132710000000,0.000028232000000,0.000454291000000 +0.000025861500000,0.011184949000000,0.000162340000000,0.000056069000000,0.000016577500000,0.000045402000000,0.000026256500000,0.000046588000000,0.000046193000000,0.000022306000000,0.000039081000000,0.000099526000000,0.000164315000000,0.000171031000000,0.000168266000000,0.011563418000000,0.000566488000000,0.000054883000000,0.000046193000000,0.000086489000000,0.000134686000000,0.000028232000000,0.000406883000000 +0.000018552500000,0.011153739000000,0.000127970000000,0.000037501000000,0.000016380000000,0.000045007000000,0.000026257000000,0.000047378000000,0.000048167000000,0.000022503500000,0.000038686000000,0.000115723000000,0.000161155000000,0.000172217000000,0.000171031000000,0.011689837000000,0.000202637000000,0.000055279000000,0.000115328000000,0.000085303000000,0.000133896000000,0.000028231500000,0.000447970000000 +0.000017763000000,0.011791763000000,0.000129155000000,0.000040266000000,0.000016380000000,0.000046193000000,0.000026651500000,0.000046982000000,0.000047378000000,0.000022306000000,0.000059229000000,0.000117303000000,0.000163131000000,0.000170636000000,0.000237006000000,0.011979022000000,0.000201847000000,0.000054488000000,0.000060414000000,0.000088464000000,0.000129946000000,0.000028232000000,0.000407278000000 +0.000017960000000,0.011380899000000,0.000131526000000,0.000039477000000,0.000016182500000,0.000044217000000,0.000026454000000,0.000047378000000,0.000047377000000,0.000022898500000,0.000042241000000,0.000102686000000,0.000162735000000,0.000169451000000,0.000169057000000,0.011468208000000,0.000205007000000,0.000055279000000,0.000047377000000,0.000085304000000,0.000167081000000,0.000028034500000,0.000496167000000 +0.000017763000000,0.011073936000000,0.000120859000000,0.000037106000000,0.000016380000000,0.000045007000000,0.000026256500000,0.000046983000000,0.000045798000000,0.000022701000000,0.000053303000000,0.000116118000000,0.000197106000000,0.000172217000000,0.000168661000000,0.011503369000000,0.000201451000000,0.000055278000000,0.000046587000000,0.000084513000000,0.000129550000000,0.000028232000000,0.000405303000000 +0.000017762500000,0.011174677000000,0.000113353000000,0.000037500000000,0.000016380000000,0.000043822000000,0.000026257000000,0.000046982000000,0.000046587000000,0.000022503500000,0.000038686000000,0.000117304000000,0.000165896000000,0.000208563000000,0.000171427000000,0.011864850000000,0.000201451000000,0.000055279000000,0.000046982000000,0.000083723000000,0.000130340000000,0.000028232000000,0.000406883000000 +0.000018750500000,0.011066826000000,0.000173402000000,0.000040266000000,0.000016577500000,0.000043822000000,0.000026849000000,0.000046982000000,0.000045797000000,0.000022108500000,0.000038291000000,0.000152463000000,0.000161945000000,0.000224760000000,0.000204612000000,0.011939121000000,0.000202242000000,0.000055673000000,0.000048563000000,0.000123624000000,0.000132315000000,0.000028232000000,0.000407278000000 +0.000018553000000,0.011323615000000,0.000130735000000,0.000037501000000,0.000015392500000,0.000044217000000,0.000026849000000,0.000047773000000,0.000046983000000,0.000022306000000,0.000038686000000,0.000114933000000,0.000161551000000,0.000170242000000,0.000169846000000,0.011455961000000,0.000205007000000,0.000055674000000,0.000045797000000,0.000084513000000,0.000130341000000,0.000028232000000,0.000403327000000 +0.000017762500000,0.011171912000000,0.000113353000000,0.000040267000000,0.000015787500000,0.000043822000000,0.000027047000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039477000000,0.000107031000000,0.000161551000000,0.000169452000000,0.000171032000000,0.011645591000000,0.000201451000000,0.000054883000000,0.000046192000000,0.000102291000000,0.000260315000000,0.000028231500000,0.000408068000000 +0.000018750500000,0.011203122000000,0.000120859000000,0.000037896000000,0.000015787500000,0.000046983000000,0.000026454000000,0.000046982000000,0.000048563000000,0.000022898500000,0.000038686000000,0.000107427000000,0.000199080000000,0.000174192000000,0.000169847000000,0.011431862000000,0.000196710000000,0.000055279000000,0.000046982000000,0.000089649000000,0.000153254000000,0.000028232000000,0.000413600000000 +0.000017763000000,0.011231566000000,0.000127970000000,0.000037106000000,0.000015590000000,0.000044217000000,0.000027046500000,0.000047773000000,0.000046982000000,0.000022306000000,0.000039871000000,0.000103081000000,0.000162735000000,0.000169846000000,0.000169057000000,0.011645986000000,0.000201451000000,0.000055674000000,0.000045797000000,0.000090834000000,0.000132315000000,0.000028232000000,0.000483920000000 +0.000018750500000,0.011298727000000,0.000129946000000,0.000037501000000,0.000015589500000,0.000045007000000,0.000049762500000,0.000046982000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000116513000000,0.000161550000000,0.000170636000000,0.000254784000000,0.011475319000000,0.000205797000000,0.000056069000000,0.000046588000000,0.000088859000000,0.000130736000000,0.000028231500000,0.000409649000000 +0.000017763000000,0.011203912000000,0.000156809000000,0.000040266000000,0.000016380000000,0.000045007000000,0.000026256500000,0.000047377000000,0.000045797000000,0.000032182500000,0.000039476000000,0.000133896000000,0.000165896000000,0.000170636000000,0.000169452000000,0.012120454000000,0.000201847000000,0.000056464000000,0.000045797000000,0.000124415000000,0.000165500000000,0.000046010000000,0.000448760000000 +0.000017762500000,0.011089739000000,0.000128760000000,0.000037501000000,0.000015590000000,0.000068315000000,0.000027047000000,0.000046982000000,0.000048562000000,0.000048972500000,0.000039081000000,0.000109402000000,0.000162735000000,0.000170636000000,0.000169451000000,0.011393936000000,0.000202242000000,0.000092414000000,0.000045797000000,0.000109402000000,0.000130341000000,0.000028231500000,0.000408859000000 +0.000018750500000,0.011162825000000,0.000129155000000,0.000037501000000,0.000016577500000,0.000065155000000,0.000026849000000,0.000046588000000,0.000048563000000,0.000040676500000,0.000038686000000,0.000102686000000,0.000197106000000,0.000180118000000,0.000169057000000,0.011958084000000,0.000201846000000,0.000054884000000,0.000045797000000,0.000090439000000,0.000134290000000,0.000028232000000,0.000500118000000 +0.000017763000000,0.011325986000000,0.000112958000000,0.000037501000000,0.000015392500000,0.000057649000000,0.000026849500000,0.000046982000000,0.000048563000000,0.000031195000000,0.000039871000000,0.000098735000000,0.000161550000000,0.000169846000000,0.000208167000000,0.011813097000000,0.000241747000000,0.000056068000000,0.000047377000000,0.000088069000000,0.000132315000000,0.000028034500000,0.000406488000000 +0.000018355000000,0.011162035000000,0.000130735000000,0.000037501000000,0.000015590000000,0.000049353000000,0.000026454000000,0.000067130000000,0.000063575000000,0.000030207000000,0.000039081000000,0.000118884000000,0.000163130000000,0.000170636000000,0.000169451000000,0.011657048000000,0.000201056000000,0.000055279000000,0.000046588000000,0.000089254000000,0.000131131000000,0.000028232000000,0.000447179000000 +0.000018750500000,0.011209838000000,0.000120464000000,0.000040266000000,0.000015590000000,0.000043822000000,0.000026454000000,0.000092019000000,0.000048167000000,0.000022503500000,0.000039477000000,0.000117698000000,0.000165896000000,0.000169846000000,0.000171032000000,0.011470183000000,0.000202241000000,0.000055279000000,0.000046587000000,0.000092019000000,0.000153649000000,0.000028231500000,0.000409648000000 +0.000018158000000,0.011365097000000,0.000146143000000,0.000040266000000,0.000015392000000,0.000044612000000,0.000026256500000,0.000046983000000,0.000045798000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000161945000000,0.000169451000000,0.000169451000000,0.011987319000000,0.000199081000000,0.000054884000000,0.000082933000000,0.000087674000000,0.000136661000000,0.000028232000000,0.000498142000000 +0.000018157500000,0.011427121000000,0.000116118000000,0.000037500000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000046982000000,0.000022898500000,0.000038686000000,0.000139427000000,0.000204612000000,0.000170241000000,0.000170241000000,0.011509690000000,0.000278489000000,0.000055279000000,0.000046587000000,0.000138241000000,0.000163525000000,0.000028232000000,0.000413994000000 +0.000017763000000,0.011186924000000,0.000112957000000,0.000057649000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039872000000,0.000114933000000,0.000161550000000,0.000169846000000,0.000242933000000,0.011649146000000,0.000201452000000,0.000056068000000,0.000046982000000,0.000089648000000,0.000131130000000,0.000028231500000,0.000460611000000 +0.000035935500000,0.011080653000000,0.000129550000000,0.000072662000000,0.000015590000000,0.000041846000000,0.000027046500000,0.000046983000000,0.000048167000000,0.000022701000000,0.000039081000000,0.000109007000000,0.000161550000000,0.000171031000000,0.000170637000000,0.011724997000000,0.000201847000000,0.000055674000000,0.000045403000000,0.000090044000000,0.000170637000000,0.000028232000000,0.000409253000000 +0.000018355500000,0.011366677000000,0.000129945000000,0.000052118000000,0.000016775000000,0.000042637000000,0.000027047000000,0.000047377000000,0.000046192000000,0.000023096500000,0.000039476000000,0.000116908000000,0.000162735000000,0.000172216000000,0.000169846000000,0.012088454000000,0.000219624000000,0.000055278000000,0.000046192000000,0.000088859000000,0.000137451000000,0.000028232000000,0.000443624000000 +0.000017762500000,0.011689047000000,0.000129945000000,0.000037501000000,0.000015590000000,0.000043032000000,0.000026651500000,0.000047377000000,0.000048167000000,0.000022701000000,0.000085698000000,0.000116908000000,0.000163526000000,0.000171427000000,0.000169452000000,0.011784257000000,0.000220809000000,0.000054884000000,0.000046192000000,0.000087673000000,0.000133106000000,0.000028231500000,0.000409253000000 +0.000017960500000,0.011342578000000,0.000129550000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026849500000,0.000046983000000,0.000046587000000,0.000022898500000,0.000039081000000,0.000114538000000,0.000198291000000,0.000173402000000,0.000195920000000,0.011788602000000,0.000201846000000,0.000054883000000,0.000046982000000,0.000089254000000,0.000134291000000,0.000028232000000,0.000442834000000 +0.000018552500000,0.011201146000000,0.000252019000000,0.000037501000000,0.000033762500000,0.000042241000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000103081000000,0.000161945000000,0.000172612000000,0.000187229000000,0.012785342000000,0.000202242000000,0.000055279000000,0.000046982000000,0.000088859000000,0.000129946000000,0.000028232000000,0.000415574000000 +0.000017565500000,0.011557097000000,0.000145748000000,0.000037106000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000047377000000,0.000046982000000,0.000022701000000,0.000039476000000,0.000157995000000,0.000162735000000,0.000170242000000,0.000170636000000,0.012210529000000,0.000201847000000,0.000055278000000,0.000046982000000,0.000088069000000,0.000200661000000,0.000028231500000,0.000768759000000 +0.000018750500000,0.011403813000000,0.000127970000000,0.000040267000000,0.000015590000000,0.000042636000000,0.000044429500000,0.000046982000000,0.000046193000000,0.000022503500000,0.000039871000000,0.000099131000000,0.000161550000000,0.000170241000000,0.000171031000000,0.011621887000000,0.000239378000000,0.000055674000000,0.000045402000000,0.000088858000000,0.000131130000000,0.000037911000000,0.000444809000000 +0.000017762500000,0.011332307000000,0.000129550000000,0.000040662000000,0.000015589500000,0.000042241000000,0.000027046500000,0.000046983000000,0.000047772000000,0.000022898500000,0.000039477000000,0.000117303000000,0.000162340000000,0.000238587000000,0.000170637000000,0.011214183000000,0.000201452000000,0.000054883000000,0.000046983000000,0.000090439000000,0.000128365000000,0.000028231500000,0.000413204000000 +0.000019145500000,0.011182184000000,0.000128760000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000026849500000,0.000046587000000,0.000046588000000,0.000030602000000,0.000039476000000,0.000109402000000,0.000237797000000,0.000169846000000,0.000240562000000,0.011531418000000,0.000202242000000,0.000091625000000,0.000046587000000,0.000088464000000,0.000127970000000,0.000028232000000,0.000443624000000 +0.000017763000000,0.010927369000000,0.000156810000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000022503500000,0.000038686000000,0.000102291000000,0.000165501000000,0.000171426000000,0.000170637000000,0.011870776000000,0.000201846000000,0.000055278000000,0.000046192000000,0.000089649000000,0.000131920000000,0.000028232000000,0.000412019000000 +0.000018158000000,0.011396306000000,0.000120859000000,0.000039476000000,0.000015590000000,0.000042636000000,0.000027047000000,0.000046983000000,0.000047773000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000161550000000,0.000169451000000,0.000169451000000,0.011700504000000,0.000203427000000,0.000054884000000,0.000045402000000,0.000088859000000,0.000132711000000,0.000028232000000,0.000443624000000 +0.000018158000000,0.011228011000000,0.000127575000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046983000000,0.000048167000000,0.000022503500000,0.000039871000000,0.000117698000000,0.000165896000000,0.000208167000000,0.000167871000000,0.011387220000000,0.000201847000000,0.000055278000000,0.000045402000000,0.000090440000000,0.000129945000000,0.000028232000000,0.000412414000000 +0.000017762500000,0.013895860000000,0.000120859000000,0.000037501000000,0.000015590000000,0.000041847000000,0.000026256500000,0.000065945000000,0.000066340000000,0.000022503500000,0.000039476000000,0.000122834000000,0.000198290000000,0.000184859000000,0.000168662000000,0.011627023000000,0.000202242000000,0.000055279000000,0.000045007000000,0.000088464000000,0.000130340000000,0.000028232000000,0.000483525000000 +0.000017763000000,0.015685883000000,0.000120464000000,0.000040267000000,0.000016380000000,0.000077797000000,0.000027046500000,0.000097550000000,0.000046192000000,0.000022503500000,0.000039871000000,0.000103081000000,0.000163525000000,0.000170242000000,0.000219229000000,0.011850233000000,0.000201846000000,0.000054883000000,0.000046983000000,0.000088464000000,0.000131526000000,0.000028232000000,0.000404908000000 +0.000018948000000,0.013569934000000,0.000113352000000,0.000040266000000,0.000015590000000,0.000055279000000,0.000026454000000,0.000060020000000,0.000048562000000,0.000022305500000,0.000039081000000,0.000098736000000,0.000162341000000,0.000170637000000,0.000169451000000,0.011418430000000,0.000282834000000,0.000055674000000,0.000045797000000,0.000087674000000,0.000165105000000,0.000028231500000,0.000461797000000 +0.000018157500000,0.013992255000000,0.000169056000000,0.000037106000000,0.000015589500000,0.000041451000000,0.000027046500000,0.000047377000000,0.000048562000000,0.000022701500000,0.000039476000000,0.000105846000000,0.000160760000000,0.000171032000000,0.000170637000000,0.012253985000000,0.000201451000000,0.000054884000000,0.000142192000000,0.000089649000000,0.000132710000000,0.000028232000000,0.000407673000000 +0.000018553000000,0.014501885000000,0.000129550000000,0.000037500000000,0.000015590000000,0.000041452000000,0.000026849500000,0.000046982000000,0.000045797000000,0.000022503500000,0.000038686000000,0.000116118000000,0.000165896000000,0.000207773000000,0.000169451000000,0.011841146000000,0.000202242000000,0.000055279000000,0.000046982000000,0.000087673000000,0.000131130000000,0.000028232000000,0.000457056000000 +0.000017762500000,0.011998776000000,0.000128365000000,0.000060019000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000049352000000,0.000022108500000,0.000039871000000,0.000115723000000,0.000198291000000,0.000170637000000,0.000255179000000,0.011774381000000,0.000203427000000,0.000055674000000,0.000046192000000,0.000090044000000,0.000131920000000,0.000028231500000,0.000415970000000 +0.000017763000000,0.011468998000000,0.000120859000000,0.000038291000000,0.000015590000000,0.000041846000000,0.000026454000000,0.000046983000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000141007000000,0.000205007000000,0.000172217000000,0.000169452000000,0.011507714000000,0.000203031000000,0.000054883000000,0.000048562000000,0.000144167000000,0.000129945000000,0.000028232000000,0.000455081000000 +0.000019145500000,0.011851812000000,0.000112957000000,0.000040266000000,0.000016380000000,0.000042637000000,0.000026849500000,0.000046587000000,0.000048957000000,0.000022899000000,0.000039081000000,0.000118094000000,0.000181303000000,0.000170241000000,0.000170241000000,0.012841836000000,0.000201451000000,0.000055279000000,0.000045402000000,0.000092020000000,0.000165501000000,0.000028034500000,0.000407278000000 +0.000017960000000,0.011604109000000,0.000129156000000,0.000037501000000,0.000015590000000,0.000044217000000,0.000027046500000,0.000046587000000,0.000045797000000,0.000023096500000,0.000039081000000,0.000115328000000,0.000165501000000,0.000170636000000,0.000169847000000,0.011965195000000,0.000202241000000,0.000073846000000,0.000047377000000,0.000090044000000,0.000131920000000,0.000028231500000,0.000478785000000 +0.000018553000000,0.012044602000000,0.000149698000000,0.000037501000000,0.000015985000000,0.000042637000000,0.000026256500000,0.000047378000000,0.000048562000000,0.000022701000000,0.000072266000000,0.000115328000000,0.000164711000000,0.000170241000000,0.000169451000000,0.011999170000000,0.000199476000000,0.000071871000000,0.000046192000000,0.000090439000000,0.000133896000000,0.000028232000000,0.000405303000000 +0.000027046500000,0.011369047000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000064182500000,0.000046587000000,0.000046983000000,0.000021911000000,0.000042242000000,0.000115328000000,0.000197501000000,0.000171822000000,0.000170637000000,0.012410825000000,0.000219625000000,0.000069896000000,0.000046192000000,0.000087279000000,0.000131921000000,0.000062405000000,0.000496167000000 +0.000026651500000,0.011556702000000,0.000113748000000,0.000040267000000,0.000015590000000,0.000041452000000,0.000026652000000,0.000046587000000,0.000047377000000,0.000022701000000,0.000039477000000,0.000116118000000,0.000162340000000,0.000172217000000,0.000171031000000,0.011769640000000,0.000201451000000,0.000055674000000,0.000046192000000,0.000091229000000,0.000129945000000,0.000035343000000,0.000408068000000 +0.000017762500000,0.012547516000000,0.000112957000000,0.000037501000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048958000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000165896000000,0.000170242000000,0.000169847000000,0.011980997000000,0.000201846000000,0.000056069000000,0.000046193000000,0.000090440000000,0.000148118000000,0.000028231500000,0.000423080000000 +0.000017763000000,0.012400948000000,0.000120463000000,0.000037501000000,0.000016182500000,0.000042637000000,0.000026256500000,0.000047378000000,0.000048563000000,0.000023096000000,0.000039476000000,0.000120464000000,0.000161550000000,0.000171032000000,0.000169451000000,0.012270578000000,0.000201451000000,0.000055278000000,0.000046192000000,0.000089649000000,0.000130341000000,0.000028232000000,0.000407278000000 +0.000017762500000,0.011553147000000,0.000128760000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000047772000000,0.000046587000000,0.000041269000000,0.000039476000000,0.000116118000000,0.000165896000000,0.000171822000000,0.000242538000000,0.011602924000000,0.000203031000000,0.000056069000000,0.000045402000000,0.000090439000000,0.000130340000000,0.000028232000000,0.000402538000000 +0.000017763000000,0.012047368000000,0.000113748000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000042454000000,0.000039081000000,0.000118093000000,0.000198291000000,0.000170242000000,0.000173007000000,0.011489936000000,0.000201451000000,0.000055673000000,0.000045797000000,0.000088463000000,0.000132316000000,0.000028231500000,0.000406488000000 +0.000019145500000,0.011587121000000,0.000129155000000,0.000039872000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000046983000000,0.000046587000000,0.000029022000000,0.000039476000000,0.000118094000000,0.000162735000000,0.000173402000000,0.000169847000000,0.011746331000000,0.000199871000000,0.000054884000000,0.000046192000000,0.000089254000000,0.000127970000000,0.000028232000000,0.000410439000000 +0.000018750500000,0.012066726000000,0.000129155000000,0.000040662000000,0.000025268500000,0.000042637000000,0.000027047000000,0.000046192000000,0.000047772000000,0.000022701000000,0.000039477000000,0.000118488000000,0.000162340000000,0.000170241000000,0.000169451000000,0.012002331000000,0.000196711000000,0.000055279000000,0.000046587000000,0.000089649000000,0.000134686000000,0.000028034500000,0.000408464000000 +0.000018552500000,0.011804801000000,0.000112958000000,0.000037896000000,0.000023688500000,0.000041451000000,0.000026256500000,0.000082933000000,0.000088464000000,0.000031985000000,0.000039476000000,0.000155229000000,0.000162735000000,0.000173402000000,0.000169846000000,0.011595812000000,0.000240563000000,0.000055278000000,0.000045402000000,0.000090044000000,0.000131131000000,0.000028232000000,0.000407278000000 +0.000018750500000,0.011398677000000,0.000128760000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000063970000000,0.000030405000000,0.000039476000000,0.000151674000000,0.000164711000000,0.000173402000000,0.000223179000000,0.011906331000000,0.000201451000000,0.000055674000000,0.000065550000000,0.000093204000000,0.000133106000000,0.000028232000000,0.000417155000000 +0.000017763000000,0.011853788000000,0.000129551000000,0.000037896000000,0.000015590000000,0.000077797000000,0.000026256500000,0.000046587000000,0.000046983000000,0.000029614500000,0.000039476000000,0.000103081000000,0.000198291000000,0.000169056000000,0.000170242000000,0.011789393000000,0.000202242000000,0.000055278000000,0.000046587000000,0.000088858000000,0.000131130000000,0.000028232000000,0.000427032000000 +0.000018157500000,0.011646381000000,0.000130340000000,0.000037501000000,0.000016380500000,0.000042636000000,0.000026652000000,0.000046983000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000114933000000,0.000161155000000,0.000169451000000,0.000168266000000,0.011412110000000,0.000201452000000,0.000055279000000,0.000046983000000,0.000088068000000,0.000163526000000,0.000028232000000,0.000451130000000 +0.000018750500000,0.011502578000000,0.000146538000000,0.000037896000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000046983000000,0.000046982000000,0.000023096000000,0.000039871000000,0.000116118000000,0.000161155000000,0.000171031000000,0.000170242000000,0.011458726000000,0.000203031000000,0.000054883000000,0.000045797000000,0.000108217000000,0.000135871000000,0.000028232000000,0.000410044000000 +0.000018750500000,0.011530233000000,0.000129945000000,0.000037896000000,0.000016380500000,0.000042242000000,0.000027046500000,0.000046587000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000109797000000,0.000162735000000,0.000170242000000,0.000169451000000,0.011529442000000,0.000201451000000,0.000054884000000,0.000045797000000,0.000090439000000,0.000131526000000,0.000028232000000,0.000446784000000 +0.000018948000000,0.012090035000000,0.000128760000000,0.000037501000000,0.000016380500000,0.000041846000000,0.000026256500000,0.000047377000000,0.000047773000000,0.000023096000000,0.000039872000000,0.000117303000000,0.000165896000000,0.000170637000000,0.000186835000000,0.012188405000000,0.000201847000000,0.000055278000000,0.000046192000000,0.000090044000000,0.000129550000000,0.000028232000000,0.000413205000000 +0.000018750000000,0.011486380000000,0.000133896000000,0.000058044000000,0.000015590000000,0.000042637000000,0.000036331000000,0.000046587000000,0.000048167000000,0.000022701000000,0.000039871000000,0.000102686000000,0.000247278000000,0.000171427000000,0.000169846000000,0.011442134000000,0.000201452000000,0.000055674000000,0.000046982000000,0.000088463000000,0.000131131000000,0.000046010000000,0.000442044000000 +0.000018750500000,0.011572109000000,0.000129551000000,0.000056464000000,0.000015590000000,0.000044217000000,0.000034750500000,0.000046983000000,0.000046588000000,0.000022503500000,0.000039871000000,0.000120069000000,0.000162340000000,0.000173007000000,0.000168267000000,0.011335072000000,0.000275328000000,0.000055278000000,0.000046193000000,0.000087673000000,0.000169451000000,0.000028034000000,0.000413995000000 +0.000018553000000,0.011386035000000,0.000164315000000,0.000040662000000,0.000016182500000,0.000041451000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000022701000000,0.000039082000000,0.000112957000000,0.000162735000000,0.000173797000000,0.000169846000000,0.011410134000000,0.000201451000000,0.000055674000000,0.000047377000000,0.000088859000000,0.000131921000000,0.000028232000000,0.000448760000000 +0.000017960000000,0.013588107000000,0.000130340000000,0.000037501000000,0.000016577500000,0.000043031000000,0.000026652000000,0.000046982000000,0.000046982000000,0.000022108500000,0.000039476000000,0.000098736000000,0.000161155000000,0.000168661000000,0.000264266000000,0.012069886000000,0.000199871000000,0.000055279000000,0.000047378000000,0.000087674000000,0.000133106000000,0.000028232000000,0.000410044000000 +0.000018355500000,0.012340504000000,0.000129155000000,0.000040266000000,0.000016380000000,0.000041847000000,0.000026256500000,0.000046983000000,0.000046193000000,0.000022306000000,0.000055279000000,0.000103081000000,0.000182093000000,0.000172216000000,0.000491822000000,0.011443319000000,0.000201451000000,0.000055673000000,0.000046192000000,0.000090044000000,0.000132711000000,0.000028232000000,0.000447970000000 +0.000017763000000,0.012148899000000,0.000129156000000,0.000040266000000,0.000016775000000,0.000042242000000,0.000026651500000,0.000047377000000,0.000048957000000,0.000022108500000,0.000039081000000,0.000109797000000,0.000161945000000,0.000170241000000,0.000207378000000,0.011967565000000,0.000202637000000,0.000055279000000,0.000046588000000,0.000089649000000,0.000134291000000,0.000028231500000,0.000415180000000 +0.000017762500000,0.011536158000000,0.000113352000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000047772000000,0.000047773000000,0.000045417000000,0.000039081000000,0.000103476000000,0.000165106000000,0.000170636000000,0.000240957000000,0.011338233000000,0.000199871000000,0.000055278000000,0.000047377000000,0.000091230000000,0.000147328000000,0.000028232000000,0.000551476000000 +0.000017763000000,0.013112059000000,0.000131131000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000026849500000,0.000047773000000,0.000048168000000,0.000022898500000,0.000039082000000,0.000116908000000,0.000161945000000,0.000171427000000,0.000169847000000,0.011807961000000,0.000201846000000,0.000055279000000,0.000046588000000,0.000088464000000,0.000130340000000,0.000028232000000,0.000427031000000 +0.000036528000000,0.012031171000000,0.000201846000000,0.000040266000000,0.000015590000000,0.000041847000000,0.000026454000000,0.000047377000000,0.000048167000000,0.000022108500000,0.000039476000000,0.000160760000000,0.000163526000000,0.000171426000000,0.000167871000000,0.011537739000000,0.000200662000000,0.000055278000000,0.000046587000000,0.000090044000000,0.000137056000000,0.000028231500000,0.000482340000000 +0.000017763000000,0.011804010000000,0.000126784000000,0.000040266000000,0.000015590000000,0.000043031000000,0.000027046500000,0.000046587000000,0.000048563000000,0.000023096000000,0.000039476000000,0.000116118000000,0.000199081000000,0.000207377000000,0.000169451000000,0.011692603000000,0.000239377000000,0.000056069000000,0.000046588000000,0.000088068000000,0.000132711000000,0.000028232000000,0.000409254000000 +0.000018750500000,0.011773590000000,0.000113747000000,0.000037105000000,0.000015787500000,0.000042636000000,0.000026257000000,0.000046983000000,0.000082143000000,0.000022108000000,0.000039477000000,0.000098735000000,0.000160760000000,0.000186439000000,0.000204612000000,0.011989689000000,0.000201451000000,0.000055279000000,0.000046587000000,0.000089254000000,0.000168661000000,0.000028232000000,0.000518290000000 +0.000017763000000,0.011777936000000,0.000128761000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000118489000000,0.000048957000000,0.000022701500000,0.000039081000000,0.000115328000000,0.000166291000000,0.000172217000000,0.000171427000000,0.012146924000000,0.000202241000000,0.000055278000000,0.000046587000000,0.000093600000000,0.000131131000000,0.000028034000000,0.000408069000000 +0.000018355000000,0.011519171000000,0.000129550000000,0.000040662000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000161550000000,0.000326290000000,0.000169056000000,0.011706430000000,0.000201056000000,0.000055279000000,0.000080167000000,0.000091229000000,0.000132315000000,0.000028034500000,0.000498142000000 +0.000018948000000,0.011369837000000,0.000116908000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000026651500000,0.000046587000000,0.000046982000000,0.000023096500000,0.000039477000000,0.000116908000000,0.000161550000000,0.000182884000000,0.000168266000000,0.012222775000000,0.000203426000000,0.000055278000000,0.000063575000000,0.000086883000000,0.000128760000000,0.000028232000000,0.000417550000000 +0.000017763000000,0.012046578000000,0.000169846000000,0.000040661000000,0.000015590000000,0.000041452000000,0.000026849000000,0.000046588000000,0.000046983000000,0.000022898500000,0.000039476000000,0.000139031000000,0.000197896000000,0.000169452000000,0.000169847000000,0.012038677000000,0.000201451000000,0.000056464000000,0.000045402000000,0.000090044000000,0.000131921000000,0.000028232000000,0.000423476000000 +0.000017762500000,0.011948208000000,0.000128760000000,0.000037896000000,0.000016380000000,0.000059624000000,0.000026454500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116513000000,0.000162735000000,0.000173797000000,0.000205401000000,0.011935171000000,0.000201846000000,0.000054884000000,0.000046587000000,0.000093599000000,0.000165106000000,0.000045022000000,0.000484711000000 +0.000017763000000,0.011470578000000,0.000114933000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000045797000000,0.000047773000000,0.000022503500000,0.000039871000000,0.000115723000000,0.000163131000000,0.000171821000000,0.000169056000000,0.012862775000000,0.000201057000000,0.000054884000000,0.000046983000000,0.000090044000000,0.000127575000000,0.000035738000000,0.000404513000000 +0.000018157500000,0.011583566000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000034750500000,0.000047377000000,0.000047772000000,0.000022898500000,0.000039081000000,0.000103081000000,0.000161550000000,0.000168661000000,0.000168266000000,0.011834035000000,0.000261501000000,0.000055279000000,0.000045797000000,0.000088069000000,0.000132710000000,0.000028034000000,0.000493402000000 +0.000018948000000,0.011577245000000,0.000128760000000,0.000039871000000,0.000038701000000,0.000042242000000,0.000034355500000,0.000046983000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000117304000000,0.000165896000000,0.000170241000000,0.000171822000000,0.011871961000000,0.000216859000000,0.000056069000000,0.000045402000000,0.000091624000000,0.000129945000000,0.000028232000000,0.000407674000000 +0.000017960500000,0.011927664000000,0.000122834000000,0.000077402000000,0.000023294000000,0.000044217000000,0.000027244000000,0.000047772000000,0.000047773000000,0.000022898500000,0.000039081000000,0.000107031000000,0.000253204000000,0.000172611000000,0.000168267000000,0.012158380000000,0.000201847000000,0.000055279000000,0.000046588000000,0.000093995000000,0.000132711000000,0.000028232000000,0.000494587000000 +0.000018553000000,0.011645985000000,0.000163920000000,0.000052118000000,0.000016577500000,0.000043032000000,0.000026849500000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000103476000000,0.000199476000000,0.000169846000000,0.000205797000000,0.012055269000000,0.000203427000000,0.000055278000000,0.000047377000000,0.000093204000000,0.000158785000000,0.000028231500000,0.000417549000000 +0.000017960000000,0.012833540000000,0.000128760000000,0.000038291000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000046983000000,0.000046983000000,0.000022306000000,0.000039871000000,0.000180513000000,0.000161945000000,0.000169056000000,0.000169452000000,0.012311268000000,0.000202637000000,0.000054884000000,0.000046588000000,0.000089648000000,0.000130340000000,0.000028232000000,0.000498932000000 +0.000018158000000,0.011866825000000,0.000128760000000,0.000037895000000,0.000015392500000,0.000042636000000,0.000027244500000,0.000047377000000,0.000046982000000,0.000021911000000,0.000039476000000,0.000113352000000,0.000162340000000,0.000172612000000,0.000168661000000,0.011755417000000,0.000199871000000,0.000054488000000,0.000046192000000,0.000089649000000,0.000130736000000,0.000028232000000,0.000405698000000 +0.000018750000000,0.012391466000000,0.000127970000000,0.000039871000000,0.000016380000000,0.000041452000000,0.000027046500000,0.000047377000000,0.000047378000000,0.000023096000000,0.000075032000000,0.000106242000000,0.000165501000000,0.000169056000000,0.000169846000000,0.011981393000000,0.000201846000000,0.000055279000000,0.000046192000000,0.000090044000000,0.000165105000000,0.000028232000000,0.000480365000000 +0.000018750500000,0.011925689000000,0.000133106000000,0.000041056000000,0.000015392500000,0.000042241000000,0.000026454000000,0.000046983000000,0.000046982000000,0.000032182500000,0.000038686000000,0.000103081000000,0.000161945000000,0.000216858000000,0.000168266000000,0.011493887000000,0.000201452000000,0.000055674000000,0.000047773000000,0.000089649000000,0.000165501000000,0.000028231500000,0.000409254000000 +0.000017565500000,0.011580405000000,0.000129155000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000027047000000,0.000046587000000,0.000048563000000,0.000053318500000,0.000038686000000,0.000109402000000,0.000161945000000,0.000170242000000,0.000207378000000,0.011938726000000,0.000573995000000,0.000055279000000,0.000045797000000,0.000090439000000,0.000129945000000,0.000028232000000,0.000440463000000 +0.000017762500000,0.011664948000000,0.000157205000000,0.000038291000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000115723000000,0.000161550000000,0.000170242000000,0.000168267000000,0.011778331000000,0.000234636000000,0.000056069000000,0.000046983000000,0.000105056000000,0.000139031000000,0.000028232000000,0.000409253000000 +0.000027639500000,0.012007467000000,0.000122044000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026256500000,0.000047377000000,0.000046983000000,0.000021910500000,0.000038686000000,0.000152069000000,0.000161155000000,0.000168661000000,0.000168266000000,0.011599764000000,0.000197106000000,0.000055278000000,0.000046982000000,0.000090044000000,0.000133106000000,0.000028232000000,0.000880956000000 +0.000019738000000,0.011544455000000,0.000120859000000,0.000038291000000,0.000016380500000,0.000042637000000,0.000026256500000,0.000083328000000,0.000064760000000,0.000022898500000,0.000038686000000,0.000114538000000,0.000161945000000,0.000171822000000,0.000169057000000,0.011546430000000,0.000201847000000,0.000055279000000,0.000045007000000,0.000090044000000,0.000139427000000,0.000028232000000,0.000442438000000 +0.000025466500000,0.011637294000000,0.000128760000000,0.000037896000000,0.000016380500000,0.000041452000000,0.000026454500000,0.000046983000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000163525000000,0.000171427000000,0.000169451000000,0.011458727000000,0.000203032000000,0.000054883000000,0.000045007000000,0.000089649000000,0.000175377000000,0.000028232000000,0.000407673000000 +0.000026849000000,0.011864455000000,0.000130735000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000021910500000,0.000039081000000,0.000116908000000,0.000161945000000,0.000169847000000,0.000168266000000,0.011658627000000,0.000201846000000,0.000055674000000,0.000081352000000,0.000090044000000,0.000131131000000,0.000037910500000,0.000453105000000 +0.000017763000000,0.011651121000000,0.000129550000000,0.000038291000000,0.000015392500000,0.000042637000000,0.000026849000000,0.000046982000000,0.000047378000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000161946000000,0.000173402000000,0.000168661000000,0.011637689000000,0.000204217000000,0.000055674000000,0.000046587000000,0.000090834000000,0.000131525000000,0.000059244500000,0.000414389000000 +0.000017762500000,0.011470973000000,0.000162736000000,0.000037896000000,0.000015787500000,0.000041452000000,0.000036726000000,0.000047377000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000117304000000,0.000162735000000,0.000170636000000,0.000168266000000,0.011577639000000,0.000201451000000,0.000054883000000,0.000046982000000,0.000100711000000,0.000133896000000,0.000028232000000,0.000444019000000 +0.000017960500000,0.011698923000000,0.000129945000000,0.000039872000000,0.000016577500000,0.000042241000000,0.000042651500000,0.000047378000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000161945000000,0.000170241000000,0.000168266000000,0.011463862000000,0.000203427000000,0.000054884000000,0.000045797000000,0.000088069000000,0.000132316000000,0.000028232000000,0.000408464000000 +0.000018750500000,0.011518776000000,0.000121649000000,0.000040662000000,0.000016182500000,0.000080958000000,0.000026256500000,0.000046982000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000166686000000,0.000174983000000,0.000169451000000,0.000210933000000,0.011562232000000,0.000201451000000,0.000061995000000,0.000045402000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000448760000000 +0.000018355000000,0.012095171000000,0.000131130000000,0.000037501000000,0.000016380000000,0.000092414000000,0.000026454500000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039476000000,0.000114538000000,0.000166291000000,0.000170636000000,0.000169847000000,0.011653492000000,0.000246883000000,0.000129155000000,0.000046982000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000457846000000 +0.000018750500000,0.011357986000000,0.000127970000000,0.000039871000000,0.000015985000000,0.000062390000000,0.000027046500000,0.000046587000000,0.000048563000000,0.000022701000000,0.000039081000000,0.000102291000000,0.000165896000000,0.000170241000000,0.000169846000000,0.011679170000000,0.000201451000000,0.000110982000000,0.000046982000000,0.000085303000000,0.000126784000000,0.000028231500000,0.000447970000000 +0.000017960000000,0.011427122000000,0.000129946000000,0.000040661000000,0.000015590000000,0.000043822000000,0.000026651500000,0.000046983000000,0.000047772000000,0.000023096000000,0.000039476000000,0.000102686000000,0.000161550000000,0.000169451000000,0.000169452000000,0.011701294000000,0.000203427000000,0.000138636000000,0.000046587000000,0.000086489000000,0.000129945000000,0.000028034500000,0.000416365000000 +0.000019145500000,0.011519171000000,0.000166291000000,0.000073847000000,0.000015589500000,0.000045007000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000237797000000,0.000208168000000,0.000169846000000,0.012406083000000,0.000191575000000,0.000073057000000,0.000047772000000,0.000085303000000,0.000170242000000,0.000028232000000,0.000429797000000 +0.000018948000000,0.011913047000000,0.000129155000000,0.000037896000000,0.000016182500000,0.000043032000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000023096000000,0.000039081000000,0.000116118000000,0.000161946000000,0.000170241000000,0.000205402000000,0.011632949000000,0.000201452000000,0.000088068000000,0.000045402000000,0.000109007000000,0.000133106000000,0.000028034000000,0.000412810000000 +0.000018750500000,0.011842726000000,0.000127575000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000026256500000,0.000046588000000,0.000046192000000,0.000022503500000,0.000039872000000,0.000109402000000,0.000163525000000,0.000174982000000,0.000204612000000,0.011649541000000,0.000201847000000,0.000055674000000,0.000045798000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000417945000000 +0.000017762500000,0.011448850000000,0.000131526000000,0.000040661000000,0.000016380000000,0.000042241000000,0.000026454500000,0.000046982000000,0.000046587000000,0.000022306000000,0.000039476000000,0.000118093000000,0.000162736000000,0.000171427000000,0.000167476000000,0.011627418000000,0.000202242000000,0.000054884000000,0.000046982000000,0.000087279000000,0.000129550000000,0.000028429500000,0.000412019000000 +0.000019145500000,0.012203417000000,0.000129550000000,0.000037501000000,0.000033565500000,0.000042637000000,0.000026454000000,0.000046587000000,0.000048563000000,0.000031985000000,0.000038686000000,0.000116118000000,0.000161155000000,0.000169452000000,0.000169847000000,0.012079368000000,0.000201846000000,0.000054883000000,0.000047378000000,0.000082933000000,0.000133896000000,0.000028232000000,0.000411624000000 +0.000018355500000,0.012046578000000,0.000131921000000,0.000037896000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022306000000,0.000111378000000,0.000116513000000,0.000202636000000,0.000171822000000,0.000169846000000,0.011799270000000,0.000202636000000,0.000054489000000,0.000045797000000,0.000083723000000,0.000274933000000,0.000028232000000,0.000412809000000 +0.000018355500000,0.011365097000000,0.000171426000000,0.000040266000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000046983000000,0.000048563000000,0.000022306000000,0.000075822000000,0.000103871000000,0.000161550000000,0.000170637000000,0.000205401000000,0.011588306000000,0.000201846000000,0.000054883000000,0.000086489000000,0.000082538000000,0.000158785000000,0.000028232000000,0.000408858000000 +0.000018355000000,0.011550381000000,0.000114933000000,0.000037501000000,0.000016380000000,0.000041451000000,0.000026652000000,0.000046982000000,0.000084118000000,0.000022503500000,0.000042241000000,0.000117699000000,0.000204217000000,0.000170242000000,0.000170241000000,0.012812206000000,0.000203031000000,0.000054883000000,0.000050143000000,0.000085303000000,0.000131525000000,0.000047590000000,0.000495377000000 +0.000019145500000,0.011851023000000,0.000120859000000,0.000040267000000,0.000015392000000,0.000042242000000,0.000027244000000,0.000066340000000,0.000046983000000,0.000023096500000,0.000043427000000,0.000114933000000,0.000179723000000,0.000169452000000,0.000170242000000,0.011357196000000,0.000200266000000,0.000056069000000,0.000058834000000,0.000083328000000,0.000132710000000,0.000042849000000,0.000409253000000 +0.000018355500000,0.012267417000000,0.000127970000000,0.000037106000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000050143000000,0.000047377000000,0.000022108500000,0.000039081000000,0.000207772000000,0.000165501000000,0.000244513000000,0.000170241000000,0.011900800000000,0.000231476000000,0.000054884000000,0.000098736000000,0.000089649000000,0.000164711000000,0.000028232000000,0.000445995000000 +0.000017762500000,0.011497837000000,0.000129155000000,0.000037500000000,0.000015590000000,0.000042637000000,0.000044231500000,0.000046982000000,0.000046983000000,0.000022306000000,0.000038686000000,0.000150883000000,0.000194735000000,0.000173007000000,0.000209747000000,0.011612406000000,0.000202242000000,0.000054883000000,0.000046982000000,0.000252019000000,0.000131921000000,0.000028232000000,0.000412809000000 +0.000018158000000,0.011549590000000,0.000129155000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000046983000000,0.000047377000000,0.000022108000000,0.000039081000000,0.000116513000000,0.000161945000000,0.000173007000000,0.000168662000000,0.011549195000000,0.000203822000000,0.000056464000000,0.000047378000000,0.000110193000000,0.000129946000000,0.000028232000000,0.000448365000000 +0.000017762500000,0.011626627000000,0.000252415000000,0.000039871000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000023096500000,0.000039081000000,0.000116118000000,0.000162340000000,0.000169846000000,0.000169056000000,0.011652701000000,0.000201452000000,0.000055674000000,0.000046192000000,0.000100316000000,0.000131130000000,0.000028232000000,0.000408463000000 +0.000017763000000,0.012063961000000,0.000139031000000,0.000037896000000,0.000016380000000,0.000080167000000,0.000026454000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000116908000000,0.000166291000000,0.000171821000000,0.000170241000000,0.012593738000000,0.000204217000000,0.000055279000000,0.000046983000000,0.000084118000000,0.000135871000000,0.000028232000000,0.000445599000000 +0.000047985000000,0.011497047000000,0.000128365000000,0.000037106000000,0.000015590000000,0.000058044000000,0.000026652000000,0.000046983000000,0.000046982000000,0.000023096000000,0.000039081000000,0.000118883000000,0.000197501000000,0.000209353000000,0.000170241000000,0.011819417000000,0.000194736000000,0.000055279000000,0.000046982000000,0.000081748000000,0.000157204000000,0.000028232000000,0.000407278000000 +0.000026849000000,0.011352850000000,0.000120463000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026651500000,0.000046588000000,0.000046983000000,0.000022701000000,0.000038686000000,0.000151674000000,0.000166291000000,0.000172612000000,0.000206192000000,0.011472553000000,0.000203822000000,0.000054883000000,0.000045402000000,0.000083328000000,0.000132711000000,0.000028231500000,0.000445600000000 +0.000018553000000,0.011687467000000,0.000112957000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000047377000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000111377000000,0.000161945000000,0.000170637000000,0.000168661000000,0.012143368000000,0.000201846000000,0.000055674000000,0.000047377000000,0.000117698000000,0.000134291000000,0.000028429500000,0.000406488000000 +0.000017763000000,0.011909491000000,0.000156810000000,0.000040267000000,0.000015590000000,0.000042637000000,0.000026652000000,0.000047377000000,0.000046193000000,0.000022503500000,0.000038686000000,0.000116118000000,0.000162340000000,0.000173797000000,0.000168266000000,0.011636899000000,0.000204217000000,0.000055673000000,0.000047378000000,0.000096760000000,0.000129155000000,0.000028232000000,0.000453106000000 +0.000017960000000,0.011744355000000,0.000129945000000,0.000040662000000,0.000015590000000,0.000042637000000,0.000026059000000,0.000046588000000,0.000048562000000,0.000022503500000,0.000039871000000,0.000116514000000,0.000161946000000,0.000173007000000,0.000169846000000,0.011987319000000,0.000200662000000,0.000055279000000,0.000046982000000,0.000086884000000,0.000165105000000,0.000028231500000,0.000408463000000 +0.000018948000000,0.011521936000000,0.000112958000000,0.000037896000000,0.000015590000000,0.000041846000000,0.000026849000000,0.000047377000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000114932000000,0.000199081000000,0.000170242000000,0.000170636000000,0.011612010000000,0.000203427000000,0.000055278000000,0.000046983000000,0.000082933000000,0.000132316000000,0.000028232000000,0.000448760000000 +0.000018750500000,0.012539614000000,0.000129155000000,0.000073846000000,0.000016380500000,0.000042637000000,0.000027047000000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000164710000000,0.000170637000000,0.000203822000000,0.012072257000000,0.000201451000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000130340000000,0.000028034500000,0.000405698000000 +0.000018355500000,0.011861294000000,0.000112958000000,0.000037896000000,0.000016380500000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000022108500000,0.000039081000000,0.000150883000000,0.000161946000000,0.000172217000000,0.000168661000000,0.011512060000000,0.000223575000000,0.000055279000000,0.000046192000000,0.000084908000000,0.000133501000000,0.000028231500000,0.000442043000000 +0.000018355500000,0.011493886000000,0.000114537000000,0.000037895000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046588000000,0.000046982000000,0.000022503500000,0.000074637000000,0.000098736000000,0.000161155000000,0.000169847000000,0.000169057000000,0.011701689000000,0.000201451000000,0.000054883000000,0.000045402000000,0.000084908000000,0.000128365000000,0.000046207500000,0.000406488000000 +0.000018948000000,0.011866034000000,0.000113353000000,0.000038686000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000049565000000,0.000039871000000,0.000115723000000,0.000161156000000,0.000171031000000,0.000169451000000,0.011601343000000,0.000203426000000,0.000055674000000,0.000046192000000,0.000083723000000,0.000200662000000,0.000028231500000,0.000506044000000 +0.000018355500000,0.011842726000000,0.000191575000000,0.000037896000000,0.000016577500000,0.000042242000000,0.000026849000000,0.000046587000000,0.000048563000000,0.000045812500000,0.000038686000000,0.000117303000000,0.000234637000000,0.000171031000000,0.000170242000000,0.011873936000000,0.000194340000000,0.000075821000000,0.000046588000000,0.000083328000000,0.000131130000000,0.000028232000000,0.000409254000000 +0.000018750000000,0.011681146000000,0.000128365000000,0.000037896000000,0.000016577500000,0.000042241000000,0.000026454000000,0.000046982000000,0.000101501000000,0.000064380000000,0.000039081000000,0.000101896000000,0.000166291000000,0.000171821000000,0.000170242000000,0.011290430000000,0.000203821000000,0.000054884000000,0.000046587000000,0.000120463000000,0.000131526000000,0.000028232000000,0.000493797000000 +0.000017763000000,0.011804010000000,0.000129155000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000044627000000,0.000066736000000,0.000092809000000,0.000064775500000,0.000040662000000,0.000114933000000,0.000162340000000,0.000169451000000,0.000170636000000,0.011296751000000,0.000201846000000,0.000054883000000,0.000081353000000,0.000084513000000,0.000127970000000,0.000028232000000,0.000419130000000 +0.000017762500000,0.011326776000000,0.000127970000000,0.000040267000000,0.000015392500000,0.000041847000000,0.000027047000000,0.000046983000000,0.000045797000000,0.000074256500000,0.000038686000000,0.000109007000000,0.000162341000000,0.000172612000000,0.000169451000000,0.011570529000000,0.000203426000000,0.000055279000000,0.000046587000000,0.000085303000000,0.000129550000000,0.000028232000000,0.000587031000000 +0.000017763000000,0.011781097000000,0.000112958000000,0.000040267000000,0.000016182500000,0.000041451000000,0.000027046500000,0.000046982000000,0.000046983000000,0.000067738000000,0.000039081000000,0.000152069000000,0.000162340000000,0.000292316000000,0.000169846000000,0.013197786000000,0.000201846000000,0.000054883000000,0.000046192000000,0.000083328000000,0.000132315000000,0.000028232000000,0.000405303000000 +0.000017763000000,0.012001146000000,0.000127970000000,0.000037501000000,0.000025071000000,0.000041452000000,0.000026652000000,0.000046982000000,0.000045797000000,0.000065367500000,0.000039477000000,0.000114537000000,0.000211723000000,0.000183673000000,0.000239377000000,0.012034726000000,0.000201846000000,0.000055674000000,0.000045797000000,0.000084908000000,0.000129946000000,0.000028034500000,0.000414784000000 +0.000017763000000,0.011938726000000,0.000128365000000,0.000039871000000,0.000046997500000,0.000041451000000,0.000026651500000,0.000046983000000,0.000047773000000,0.000068133000000,0.000039476000000,0.000107427000000,0.000162340000000,0.000171822000000,0.000169451000000,0.012016553000000,0.000201847000000,0.000054093000000,0.000047378000000,0.000083328000000,0.000135081000000,0.000028232000000,0.000406883000000 +0.000018355500000,0.011862874000000,0.000119278000000,0.000040267000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000046587000000,0.000061022000000,0.000039081000000,0.000098341000000,0.000161550000000,0.000237797000000,0.000170242000000,0.011884603000000,0.000203427000000,0.000055674000000,0.000047377000000,0.000086884000000,0.000129945000000,0.000028232000000,0.000415574000000 +0.000019145500000,0.011656652000000,0.000129945000000,0.000037501000000,0.000015590000000,0.000077402000000,0.000026849000000,0.000046982000000,0.000046587000000,0.000033170000000,0.000039081000000,0.000114538000000,0.000164710000000,0.000185253000000,0.000168266000000,0.011898430000000,0.000231081000000,0.000055278000000,0.000046983000000,0.000086488000000,0.000183673000000,0.000028034500000,0.000476810000000 +0.000019145500000,0.012741491000000,0.000115723000000,0.000038291000000,0.000015590000000,0.000041847000000,0.000026651500000,0.000046587000000,0.000045798000000,0.000031195000000,0.000039476000000,0.000114933000000,0.000161550000000,0.000172217000000,0.000170637000000,0.011435418000000,0.000220809000000,0.000055279000000,0.000046192000000,0.000152463000000,0.000130736000000,0.000028231500000,0.000408859000000 +0.000018948000000,0.011939121000000,0.000127179000000,0.000041057000000,0.000015590000000,0.000041451000000,0.000028627000000,0.000047378000000,0.000046982000000,0.000023688500000,0.000039081000000,0.000103081000000,0.000209747000000,0.000170636000000,0.000240957000000,0.012715812000000,0.000201847000000,0.000055674000000,0.000046587000000,0.000089649000000,0.000131525000000,0.000028232000000,0.000445204000000 +0.000018948000000,0.011619517000000,0.000131920000000,0.000040661000000,0.000015590000000,0.000041451000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000024084000000,0.000039081000000,0.000152463000000,0.000162736000000,0.000170241000000,0.000169451000000,0.012670775000000,0.000203427000000,0.000055278000000,0.000047377000000,0.000084908000000,0.000133896000000,0.000028232000000,0.000408068000000 +0.000026849500000,0.011761738000000,0.000154439000000,0.000038687000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046982000000,0.000046588000000,0.000023096000000,0.000039476000000,0.000109007000000,0.000160760000000,0.000210538000000,0.000167871000000,0.012180108000000,0.000200266000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000131130000000,0.000028231500000,0.000442043000000 +0.000018355500000,0.011770430000000,0.000127575000000,0.000038291000000,0.000016380000000,0.000042241000000,0.000027047000000,0.000047378000000,0.000046192000000,0.000023688500000,0.000039081000000,0.000109007000000,0.000165896000000,0.000169847000000,0.000171032000000,0.011396307000000,0.000202636000000,0.000055278000000,0.000045797000000,0.000084513000000,0.000167081000000,0.000037911000000,0.000408464000000 +0.000017763000000,0.011773590000000,0.000128365000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000047377000000,0.000046587000000,0.000024479000000,0.000039081000000,0.000107427000000,0.000161945000000,0.000169847000000,0.000171032000000,0.011606874000000,0.000201451000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000130735000000,0.000078404500000,0.000478785000000 +0.000019145500000,0.012173392000000,0.000112958000000,0.000056068000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000047377000000,0.000046192000000,0.000023886000000,0.000039081000000,0.000116513000000,0.000408859000000,0.000170242000000,0.000170242000000,0.011874331000000,0.000199476000000,0.000054883000000,0.000046983000000,0.000084118000000,0.000135081000000,0.000082750500000,0.000413204000000 +0.000017762500000,0.011716307000000,0.000121254000000,0.000111773000000,0.000016380000000,0.000042241000000,0.000036528500000,0.000046982000000,0.000046982000000,0.000023294000000,0.000038686000000,0.000118489000000,0.000181698000000,0.000169846000000,0.000170241000000,0.011926479000000,0.000201451000000,0.000056069000000,0.000046587000000,0.000084118000000,0.000132711000000,0.000054306000000,0.000482340000000 +0.000018948000000,0.011499418000000,0.000147723000000,0.000072662000000,0.000015590000000,0.000042636000000,0.000035145500000,0.000046983000000,0.000080168000000,0.000024281000000,0.000038686000000,0.000133896000000,0.000163130000000,0.000173402000000,0.000170242000000,0.011352455000000,0.000202241000000,0.000054883000000,0.000047378000000,0.000085698000000,0.000129945000000,0.000030009500000,0.000409648000000 +0.000017960000000,0.011905936000000,0.000127179000000,0.000041057000000,0.000016380500000,0.000041452000000,0.000028429500000,0.000046982000000,0.000063180000000,0.000023886500000,0.000090044000000,0.000137846000000,0.000234636000000,0.000170637000000,0.000169451000000,0.011576059000000,0.000201846000000,0.000055279000000,0.000047377000000,0.000085303000000,0.000371327000000,0.000036133500000,0.000452710000000 +0.000018158000000,0.011631764000000,0.000127970000000,0.000039871000000,0.000015392000000,0.000042241000000,0.000033565000000,0.000046982000000,0.000046982000000,0.000023886000000,0.000053303000000,0.000116908000000,0.000161945000000,0.000171032000000,0.000204217000000,0.011774775000000,0.000203822000000,0.000054883000000,0.000064760000000,0.000083328000000,0.000132710000000,0.000028232000000,0.000409254000000 +0.000018355500000,0.011991269000000,0.000129551000000,0.000039871000000,0.000016775000000,0.000042241000000,0.000026059000000,0.000046587000000,0.000046588000000,0.000041071500000,0.000039081000000,0.000116118000000,0.000165895000000,0.000169846000000,0.000169451000000,0.011896849000000,0.000201846000000,0.000055674000000,0.000096365000000,0.000084118000000,0.000130736000000,0.000028232000000,0.000474043000000 +0.000018948000000,0.011455961000000,0.000121254000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000027047000000,0.000063180000000,0.000045797000000,0.000024676500000,0.000039081000000,0.000109402000000,0.000162736000000,0.000208167000000,0.000169451000000,0.011679566000000,0.000202636000000,0.000054884000000,0.000059624000000,0.000085303000000,0.000224365000000,0.000028232000000,0.000409648000000 +0.000018947500000,0.011468602000000,0.000123229000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048563000000,0.000024083500000,0.000039476000000,0.000110982000000,0.000161550000000,0.000172612000000,0.000168661000000,0.011391171000000,0.000483130000000,0.000056463000000,0.000046587000000,0.000086883000000,0.000132710000000,0.000028231500000,0.000444019000000 +0.000018553000000,0.011455961000000,0.000115723000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026652000000,0.000047378000000,0.000046982000000,0.000023294000000,0.000039477000000,0.000102686000000,0.000369748000000,0.000169847000000,0.000169847000000,0.012170232000000,0.000218044000000,0.000055674000000,0.000046982000000,0.000083723000000,0.000131526000000,0.000028232000000,0.000405303000000 +0.000018553000000,0.013129836000000,0.000155229000000,0.000037501000000,0.000015787500000,0.000042637000000,0.000026256500000,0.000046982000000,0.000048563000000,0.000023293500000,0.000039081000000,0.000153254000000,0.000162340000000,0.000170242000000,0.000205007000000,0.011991664000000,0.000238192000000,0.000055278000000,0.000045797000000,0.000085303000000,0.000128760000000,0.000058059000000,0.000493007000000 +0.000019145500000,0.011832454000000,0.000120859000000,0.000040662000000,0.000015590000000,0.000043427000000,0.000027046500000,0.000046982000000,0.000046192000000,0.000024281500000,0.000039081000000,0.000109402000000,0.000165896000000,0.000170242000000,0.000171427000000,0.011489146000000,0.000202241000000,0.000054489000000,0.000046192000000,0.000085303000000,0.000165500000000,0.000028231500000,0.000413600000000 +0.000017565000000,0.012494973000000,0.000129550000000,0.000039872000000,0.000016380500000,0.000041451000000,0.000026849500000,0.000046588000000,0.000048168000000,0.000023688500000,0.000039081000000,0.000103081000000,0.000161945000000,0.000197106000000,0.000169451000000,0.011456751000000,0.000201847000000,0.000055674000000,0.000046588000000,0.000119278000000,0.000131525000000,0.000028232000000,0.000765599000000 +0.000018553000000,0.011887763000000,0.000128365000000,0.000037501000000,0.000016380500000,0.000043822000000,0.000027046500000,0.000046587000000,0.000046192000000,0.000023886500000,0.000039476000000,0.000116118000000,0.000233451000000,0.000170241000000,0.000170637000000,0.012073047000000,0.000203427000000,0.000055279000000,0.000047377000000,0.000088464000000,0.000132711000000,0.000028232000000,0.000501698000000 +0.000019145500000,0.013395712000000,0.000113353000000,0.000037896000000,0.000016380000000,0.000060415000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000023293500000,0.000039476000000,0.000114933000000,0.000161550000000,0.000169847000000,0.000169847000000,0.011975072000000,0.000240168000000,0.000055279000000,0.000046588000000,0.000083723000000,0.000129945000000,0.000028231500000,0.000411229000000 +0.000018750500000,0.012040257000000,0.000211723000000,0.000037501000000,0.000015590000000,0.000056463000000,0.000026849500000,0.000047377000000,0.000047773000000,0.000024281500000,0.000039477000000,0.000102686000000,0.000161550000000,0.000169452000000,0.000204611000000,0.011477294000000,0.000202637000000,0.000054883000000,0.000047377000000,0.000084908000000,0.000131131000000,0.000028232000000,0.000479575000000 +0.000017762500000,0.011996405000000,0.000116513000000,0.000037501000000,0.000033960500000,0.000041451000000,0.000026454000000,0.000067131000000,0.000046192000000,0.000023886000000,0.000039476000000,0.000114933000000,0.000161945000000,0.000215674000000,0.000169452000000,0.011629788000000,0.000201452000000,0.000054884000000,0.000046588000000,0.000083328000000,0.000167871000000,0.000028034500000,0.000409649000000 +0.000019145500000,0.012151269000000,0.000128760000000,0.000037896000000,0.000022898500000,0.000042242000000,0.000027046500000,0.000063575000000,0.000047378000000,0.000023886500000,0.000039081000000,0.000132711000000,0.000163526000000,0.000170636000000,0.000172217000000,0.011617146000000,0.000203427000000,0.000055278000000,0.000046982000000,0.000085303000000,0.000131130000000,0.000028231500000,0.000459427000000 +0.000017763000000,0.011704060000000,0.000120464000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000061204000000,0.000048562000000,0.000024083500000,0.000039476000000,0.000117304000000,0.000233451000000,0.000173402000000,0.000169846000000,0.011635714000000,0.000210538000000,0.000075032000000,0.000046588000000,0.000084118000000,0.000131526000000,0.000028034500000,0.000406884000000 +0.000017762500000,0.011465838000000,0.000129945000000,0.000054093000000,0.000016380000000,0.000042242000000,0.000027046500000,0.000046983000000,0.000046983000000,0.000024281500000,0.000039081000000,0.000107426000000,0.000161550000000,0.000172611000000,0.000169452000000,0.011333097000000,0.000202241000000,0.000071476000000,0.000045402000000,0.000083328000000,0.000131921000000,0.000028232000000,0.000484315000000 +0.000035738000000,0.011566183000000,0.000131131000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000044232000000,0.000046587000000,0.000045797000000,0.000024281000000,0.000039081000000,0.000116514000000,0.000163130000000,0.000169846000000,0.000285204000000,0.011343763000000,0.000201846000000,0.000055279000000,0.000046587000000,0.000082538000000,0.000129155000000,0.000028232000000,0.000408068000000 +0.000018750500000,0.011702479000000,0.000198291000000,0.000040267000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046982000000,0.000127970000000,0.000024478500000,0.000039871000000,0.000115328000000,0.000161550000000,0.000185649000000,0.000183673000000,0.011765294000000,0.000200661000000,0.000055673000000,0.000046588000000,0.000120464000000,0.000172217000000,0.000028231500000,0.000489452000000 +0.000017960500000,0.012453886000000,0.000129945000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026652000000,0.000047377000000,0.000047773000000,0.000023491000000,0.000078193000000,0.000116909000000,0.000161946000000,0.000172217000000,0.000169847000000,0.012157985000000,0.000203427000000,0.000054489000000,0.000065155000000,0.000086884000000,0.000129945000000,0.000028232000000,0.000407278000000 +0.000018750500000,0.011486776000000,0.000127575000000,0.000037896000000,0.000015589500000,0.000042637000000,0.000026454000000,0.000046588000000,0.000046587000000,0.000033367500000,0.000055673000000,0.000146538000000,0.000199081000000,0.000169846000000,0.000167871000000,0.011809146000000,0.000202241000000,0.000055673000000,0.000063180000000,0.000084513000000,0.000130736000000,0.000028232000000,0.000436908000000 +0.000018750500000,0.011609639000000,0.000120859000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000082932000000,0.000046982000000,0.000038898500000,0.000039081000000,0.000102686000000,0.000165500000000,0.000171427000000,0.000207772000000,0.011878281000000,0.000323920000000,0.000055279000000,0.000046588000000,0.000083328000000,0.000130735000000,0.000028231500000,0.000407279000000 +0.000017763000000,0.011414085000000,0.000129945000000,0.000040267000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046193000000,0.000046588000000,0.000024083500000,0.000039476000000,0.000115328000000,0.000161945000000,0.000227130000000,0.000169451000000,0.011756602000000,0.000203822000000,0.000055279000000,0.000045402000000,0.000083328000000,0.000131526000000,0.000046207500000,0.000407278000000 +0.000018355000000,0.011675615000000,0.000128760000000,0.000037501000000,0.000016380000000,0.000041451000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000023886500000,0.000039477000000,0.000103081000000,0.000165896000000,0.000173402000000,0.000202636000000,0.011606479000000,0.000325895000000,0.000055278000000,0.000046982000000,0.000086093000000,0.000135081000000,0.000028231500000,0.000477204000000 +0.000017960500000,0.011697738000000,0.000163920000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000024083500000,0.000038686000000,0.000115328000000,0.000257945000000,0.000170242000000,0.000183278000000,0.011566973000000,0.000202241000000,0.000055279000000,0.000046982000000,0.000084514000000,0.000131526000000,0.000028232000000,0.000415969000000 +0.000018355000000,0.011872750000000,0.000129155000000,0.000040662000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000047377000000,0.000046588000000,0.000023688500000,0.000041056000000,0.000115723000000,0.000176958000000,0.000169451000000,0.000212513000000,0.011597393000000,0.000199871000000,0.000055278000000,0.000046192000000,0.000083328000000,0.000130735000000,0.000028232000000,0.000447180000000 +0.000017763000000,0.011686282000000,0.000112957000000,0.000039476000000,0.000016578000000,0.000042636000000,0.000027046500000,0.000047378000000,0.000045797000000,0.000023886000000,0.000039476000000,0.000107032000000,0.000162735000000,0.000169846000000,0.000168661000000,0.012020504000000,0.000203032000000,0.000054884000000,0.000046192000000,0.000083328000000,0.000130340000000,0.000028231500000,0.000408464000000 +0.000018158000000,0.011587121000000,0.000112958000000,0.000037501000000,0.000015985000000,0.000042637000000,0.000026651500000,0.000046982000000,0.000048168000000,0.000023293500000,0.000039872000000,0.000153254000000,0.000160760000000,0.000171822000000,0.000171427000000,0.011754627000000,0.000201846000000,0.000055278000000,0.000046192000000,0.000121254000000,0.000190390000000,0.000028232000000,0.000493401000000 +0.000018552500000,0.012014182000000,0.000116908000000,0.000037896000000,0.000016380500000,0.000042637000000,0.000027047000000,0.000046587000000,0.000047772000000,0.000024479000000,0.000039081000000,0.000101896000000,0.000205007000000,0.000170241000000,0.000169452000000,0.011497837000000,0.000202241000000,0.000055279000000,0.000046588000000,0.000082538000000,0.000128760000000,0.000028232000000,0.000410834000000 +0.000018158000000,0.011686677000000,0.000129945000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046982000000,0.000046588000000,0.000023886000000,0.000040266000000,0.000116908000000,0.000161945000000,0.000170636000000,0.000169451000000,0.011468208000000,0.000201846000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000131525000000,0.000028232000000,0.000486291000000 +0.000018750500000,0.013188700000000,0.000162736000000,0.000037896000000,0.000015590000000,0.000097155000000,0.000026454000000,0.000046983000000,0.000045797000000,0.000024084000000,0.000039081000000,0.000116513000000,0.000162340000000,0.000171822000000,0.000206587000000,0.011578430000000,0.000201847000000,0.000055278000000,0.000047378000000,0.000085303000000,0.000131921000000,0.000028232000000,0.000405698000000 +0.000019145500000,0.012369343000000,0.000127180000000,0.000039872000000,0.000015590000000,0.000054884000000,0.000026652000000,0.000046587000000,0.000047377000000,0.000023886500000,0.000039872000000,0.000116118000000,0.000165896000000,0.000207773000000,0.000170636000000,0.011627023000000,0.000201846000000,0.000056069000000,0.000046192000000,0.000084119000000,0.000133501000000,0.000028034500000,0.000493007000000 +0.000018947500000,0.012241739000000,0.000127575000000,0.000037501000000,0.000015392500000,0.000041451000000,0.000026454000000,0.000046982000000,0.000046588000000,0.000023886000000,0.000039081000000,0.000107031000000,0.000165500000000,0.000169847000000,0.000170242000000,0.011503763000000,0.000202241000000,0.000054883000000,0.000046192000000,0.000084909000000,0.000167081000000,0.000028232000000,0.000473253000000 +0.000018158000000,0.011656257000000,0.000120859000000,0.000037500000000,0.000016775000000,0.000041452000000,0.000044232000000,0.000046983000000,0.000046982000000,0.000023886500000,0.000038686000000,0.000104267000000,0.000184859000000,0.000170242000000,0.000169846000000,0.011523912000000,0.000201847000000,0.000055279000000,0.000046192000000,0.000084513000000,0.000132711000000,0.000028232000000,0.000485105000000 +0.000018158000000,0.011999171000000,0.000127179000000,0.000037106000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046983000000,0.000047378000000,0.000023688500000,0.000039477000000,0.000191179000000,0.000173797000000,0.000172612000000,0.000170241000000,0.011476109000000,0.000201056000000,0.000057254000000,0.000046587000000,0.000082143000000,0.000130735000000,0.000028232000000,0.000406488000000 +0.000018552500000,0.011391566000000,0.000129550000000,0.000078587000000,0.000016775000000,0.000042636000000,0.000027047000000,0.000046982000000,0.000083328000000,0.000024479000000,0.000039081000000,0.000116513000000,0.000162340000000,0.000173007000000,0.000206192000000,0.012017738000000,0.000203822000000,0.000054883000000,0.000045798000000,0.000103081000000,0.000130340000000,0.000028429500000,0.000709106000000 +0.000018948000000,0.012277294000000,0.000156415000000,0.000065155000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000046192000000,0.000023293500000,0.000039081000000,0.000099525000000,0.000166291000000,0.000186439000000,0.000169452000000,0.011852998000000,0.000202637000000,0.000054884000000,0.000046192000000,0.000086094000000,0.000129155000000,0.000028231500000,0.000442044000000 +0.000018750500000,0.011477294000000,0.000130340000000,0.000037896000000,0.000016182500000,0.000041451000000,0.000026454000000,0.000046588000000,0.000046982000000,0.000023886000000,0.000039081000000,0.000117699000000,0.000161155000000,0.000171032000000,0.000169846000000,0.011378134000000,0.000192760000000,0.000056068000000,0.000067131000000,0.000084513000000,0.000145353000000,0.000037713500000,0.000407278000000 +0.000017763000000,0.012562528000000,0.000115328000000,0.000057254000000,0.000053515500000,0.000042242000000,0.000027047000000,0.000046588000000,0.000046982000000,0.000058652000000,0.000113748000000,0.000116908000000,0.000217254000000,0.000171821000000,0.000169847000000,0.011689442000000,0.000200661000000,0.000056069000000,0.000078192000000,0.000084908000000,0.000131130000000,0.000036528000000,0.000448365000000 +0.000018750000000,0.011715517000000,0.000129550000000,0.000053698000000,0.000015787500000,0.000042637000000,0.000026849000000,0.000089254000000,0.000046982000000,0.000023688500000,0.000053698000000,0.000102686000000,0.000162341000000,0.000169846000000,0.000170636000000,0.011784652000000,0.000234637000000,0.000055674000000,0.000046982000000,0.000084513000000,0.000134291000000,0.000028232000000,0.000412809000000 +0.000026652000000,0.011832455000000,0.000112958000000,0.000072266000000,0.000016775000000,0.000042241000000,0.000027046500000,0.000046192000000,0.000045797000000,0.000023689000000,0.000039081000000,0.000146143000000,0.000162735000000,0.000210538000000,0.000185649000000,0.011653887000000,0.000199871000000,0.000054883000000,0.000047377000000,0.000085699000000,0.000131920000000,0.000028232000000,0.000447970000000 +0.000024873500000,0.011471368000000,0.000120859000000,0.000040661000000,0.000016380000000,0.000041846000000,0.000027047000000,0.000046982000000,0.000047772000000,0.000023491000000,0.000039871000000,0.000116118000000,0.000161550000000,0.000169847000000,0.000169846000000,0.011906726000000,0.000201846000000,0.000054884000000,0.000046983000000,0.000084118000000,0.000169057000000,0.000028231500000,0.000411624000000 +0.000017763000000,0.012122429000000,0.000133501000000,0.000037896000000,0.000016577500000,0.000042242000000,0.000026651500000,0.000046982000000,0.000046983000000,0.000024479000000,0.000039081000000,0.000116513000000,0.000162341000000,0.000172217000000,0.000170242000000,0.011525096000000,0.000253599000000,0.000055278000000,0.000047377000000,0.000084513000000,0.000131920000000,0.000028232000000,0.000444414000000 +0.000017762500000,0.011428306000000,0.000368563000000,0.000037500000000,0.000015787500000,0.000041846000000,0.000026849000000,0.000046983000000,0.000048167000000,0.000023293500000,0.000039081000000,0.000103872000000,0.000236216000000,0.000172217000000,0.000169056000000,0.012013787000000,0.000236612000000,0.000056069000000,0.000046588000000,0.000088464000000,0.000131130000000,0.000028232000000,0.000413599000000 +0.000017763000000,0.012002726000000,0.000197501000000,0.000037106000000,0.000016972500000,0.000043032000000,0.000026256500000,0.000047772000000,0.000046983000000,0.000022898500000,0.000039477000000,0.000116908000000,0.000161550000000,0.000170637000000,0.000206192000000,0.011889739000000,0.000202242000000,0.000055279000000,0.000046587000000,0.000120069000000,0.000134291000000,0.000028232000000,0.000472464000000 +0.000019145500000,0.012031566000000,0.000143378000000,0.000038291000000,0.000016775500000,0.000042637000000,0.000026651500000,0.000047377000000,0.000045797000000,0.000022898500000,0.000039476000000,0.000116513000000,0.000160760000000,0.000205797000000,0.000168267000000,0.011592257000000,0.000201847000000,0.000055673000000,0.000046587000000,0.000084513000000,0.000131526000000,0.000028232000000,0.000406488000000 +0.000018158000000,0.012080158000000,0.000149303000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000047378000000,0.000046982000000,0.000022306000000,0.000039871000000,0.000103476000000,0.000160760000000,0.000171031000000,0.000173007000000,0.011707615000000,0.000203032000000,0.000056069000000,0.000045402000000,0.000083328000000,0.000164315000000,0.000028232000000,0.000445599000000 +0.000018158000000,0.011593047000000,0.000120858000000,0.000037500000000,0.000015787500000,0.000042241000000,0.000026849500000,0.000047377000000,0.000048563000000,0.000023096000000,0.000039082000000,0.000151674000000,0.000163526000000,0.000170241000000,0.000169056000000,0.011667319000000,0.000201846000000,0.000076217000000,0.000046192000000,0.000085303000000,0.000131921000000,0.000028034500000,0.000409648000000 +0.000017763000000,0.011494282000000,0.000129946000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000115328000000,0.000201846000000,0.000170242000000,0.000168266000000,0.011431863000000,0.000202242000000,0.000054884000000,0.000046983000000,0.000084513000000,0.000126785000000,0.000028231500000,0.000453501000000 +0.000018750000000,0.011319270000000,0.000128760000000,0.000037896000000,0.000015787500000,0.000058834000000,0.000054306000000,0.000048168000000,0.000048563000000,0.000022306000000,0.000039081000000,0.000117303000000,0.000162736000000,0.000285600000000,0.000206983000000,0.011416059000000,0.000201847000000,0.000054883000000,0.000046192000000,0.000084118000000,0.000132315000000,0.000028232000000,0.000404117000000 +0.000018750500000,0.011951763000000,0.000112958000000,0.000039871000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000046982000000,0.000047378000000,0.000022898500000,0.000039477000000,0.000102291000000,0.000162735000000,0.000255575000000,0.000167871000000,0.011506924000000,0.000203427000000,0.000055279000000,0.000046192000000,0.000082538000000,0.000127574000000,0.000028034500000,0.000484315000000 +0.000017763000000,0.011483220000000,0.000129155000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000027244000000,0.000046982000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000162341000000,0.000172217000000,0.000169452000000,0.011459516000000,0.000197896000000,0.000055278000000,0.000046982000000,0.000083723000000,0.000131526000000,0.000028231500000,0.000406883000000 +0.000018947500000,0.011632553000000,0.000176958000000,0.000073451000000,0.000015589500000,0.000041452000000,0.000026849500000,0.000046587000000,0.000064760000000,0.000023096000000,0.000039871000000,0.000117303000000,0.000161155000000,0.000168661000000,0.000168661000000,0.011796899000000,0.000202636000000,0.000055279000000,0.000046982000000,0.000082143000000,0.000127575000000,0.000028034500000,0.000452711000000 +0.000018750500000,0.011591467000000,0.000131525000000,0.000040266000000,0.000015392500000,0.000042637000000,0.000027046500000,0.000047378000000,0.000078587000000,0.000021911000000,0.000038686000000,0.000102291000000,0.000246488000000,0.000173402000000,0.000242538000000,0.011357196000000,0.000200661000000,0.000055673000000,0.000046193000000,0.000143773000000,0.000129550000000,0.000045417000000,0.000408464000000 +0.000018158000000,0.011662973000000,0.000129551000000,0.000040266000000,0.000016577500000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048562000000,0.000022898500000,0.000038686000000,0.000118883000000,0.000161550000000,0.000170242000000,0.000169847000000,0.011856948000000,0.000203427000000,0.000055279000000,0.000065155000000,0.000084513000000,0.000131525000000,0.000035343000000,0.000491426000000 +0.000017762500000,0.011662183000000,0.000129550000000,0.000038291000000,0.000016380000000,0.000042242000000,0.000026652000000,0.000046982000000,0.000045797000000,0.000030602500000,0.000039081000000,0.000115723000000,0.000164710000000,0.000171822000000,0.000169451000000,0.011589097000000,0.000203821000000,0.000055279000000,0.000047772000000,0.000086094000000,0.000131921000000,0.000028232000000,0.000409253000000 +0.000019145500000,0.011665343000000,0.000120464000000,0.000037896000000,0.000015590000000,0.000076612000000,0.000026454000000,0.000046983000000,0.000046587000000,0.000022503500000,0.000058440000000,0.000118093000000,0.000161550000000,0.000170242000000,0.000169056000000,0.012146528000000,0.000202241000000,0.000055279000000,0.000045798000000,0.000084513000000,0.000132316000000,0.000028232000000,0.000424266000000 +0.000019145500000,0.011910282000000,0.000120463000000,0.000040661000000,0.000016775000000,0.000044217000000,0.000026651500000,0.000081747000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000199476000000,0.000171822000000,0.000167871000000,0.012349985000000,0.000201451000000,0.000055279000000,0.000046587000000,0.000086489000000,0.000127970000000,0.000028232000000,0.000461797000000 +0.000017763000000,0.011632949000000,0.000196315000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000027244500000,0.000060810000000,0.000046983000000,0.000023096000000,0.000038686000000,0.000118489000000,0.000162735000000,0.000169846000000,0.000206588000000,0.012226330000000,0.000203822000000,0.000054883000000,0.000046588000000,0.000082537000000,0.000131526000000,0.000028232000000,0.000412414000000 +0.000017762500000,0.011388405000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027244000000,0.000046982000000,0.000048957000000,0.000022503500000,0.000039476000000,0.000118488000000,0.000161155000000,0.000170242000000,0.000167476000000,0.011269887000000,0.000203031000000,0.000055279000000,0.000047772000000,0.000084118000000,0.000131525000000,0.000028232000000,0.000426241000000 +0.000017763000000,0.011519961000000,0.000120859000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046192000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000155624000000,0.000165896000000,0.000169847000000,0.000170242000000,0.011576060000000,0.000202241000000,0.000054883000000,0.000046588000000,0.000088464000000,0.000203032000000,0.000028231500000,0.000411624000000 +0.000018355000000,0.011854973000000,0.000127180000000,0.000040266000000,0.000016775000000,0.000042637000000,0.000027244000000,0.000046588000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000104661000000,0.000161945000000,0.000173007000000,0.000169056000000,0.011383270000000,0.000201056000000,0.000055279000000,0.000045402000000,0.000121649000000,0.000130735000000,0.000028232000000,0.000440859000000 +0.000046405000000,0.011943072000000,0.000120464000000,0.000038291000000,0.000034750500000,0.000043427000000,0.000026652000000,0.000046192000000,0.000047378000000,0.000022306000000,0.000039476000000,0.000115723000000,0.000217253000000,0.000207377000000,0.000169451000000,0.011657442000000,0.000202242000000,0.000055673000000,0.000046982000000,0.000083723000000,0.000129945000000,0.000028232000000,0.000400957000000 +0.000033367500000,0.011813886000000,0.000127575000000,0.000040267000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000047772000000,0.000047772000000,0.000023491000000,0.000039476000000,0.000116908000000,0.000478390000000,0.000169057000000,0.000259131000000,0.011625047000000,0.000201847000000,0.000056069000000,0.000046192000000,0.000084908000000,0.000129945000000,0.000028231500000,0.000455871000000 +0.000027441500000,0.011785442000000,0.000173402000000,0.000038291000000,0.000015985000000,0.000043032000000,0.000036726000000,0.000046587000000,0.000046193000000,0.000022306000000,0.000039082000000,0.000115723000000,0.000182093000000,0.000172612000000,0.000169846000000,0.012039072000000,0.000200266000000,0.000055279000000,0.000048167000000,0.000087674000000,0.000129155000000,0.000028232000000,0.000410044000000 +0.000019738500000,0.011589887000000,0.000129550000000,0.000037105000000,0.000015787500000,0.000042242000000,0.000026454000000,0.000046588000000,0.000048957000000,0.000022503500000,0.000040266000000,0.000114538000000,0.000199476000000,0.000171821000000,0.000169846000000,0.011335073000000,0.000202241000000,0.000055673000000,0.000047773000000,0.000084908000000,0.000130340000000,0.000028232000000,0.000485501000000 +0.000018552500000,0.012012208000000,0.000126390000000,0.000037896000000,0.000025071500000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048958000000,0.000021911000000,0.000039081000000,0.000116908000000,0.000161946000000,0.000169056000000,0.000168267000000,0.012341689000000,0.000203426000000,0.000054884000000,0.000045402000000,0.000084909000000,0.000169847000000,0.000028232000000,0.000410834000000 +0.000024676500000,0.011529443000000,0.000115328000000,0.000040266000000,0.000017170000000,0.000078588000000,0.000026651500000,0.000047377000000,0.000046982000000,0.000022306000000,0.000039081000000,0.000114933000000,0.000165500000000,0.000170636000000,0.000169451000000,0.011687467000000,0.000201056000000,0.000055278000000,0.000045797000000,0.000087278000000,0.000131131000000,0.000028232000000,0.000451920000000 +0.000018553000000,0.011596208000000,0.000129550000000,0.000037895000000,0.000017565500000,0.000043031000000,0.000026652000000,0.000046983000000,0.000046982000000,0.000022108500000,0.000038686000000,0.000115723000000,0.000162736000000,0.000172217000000,0.000197501000000,0.011555122000000,0.000202241000000,0.000055279000000,0.000046192000000,0.000089254000000,0.000131920000000,0.000046009500000,0.000404908000000 +0.000018158000000,0.011648356000000,0.000120859000000,0.000037501000000,0.000016577500000,0.000041452000000,0.000026651500000,0.000046982000000,0.000084513000000,0.000022898500000,0.000039476000000,0.000102291000000,0.000160760000000,0.000169846000000,0.000169451000000,0.011563417000000,0.000199872000000,0.000055674000000,0.000046587000000,0.000088069000000,0.000165501000000,0.000028232000000,0.000450735000000 +0.000018157500000,0.011855368000000,0.000164316000000,0.000037895000000,0.000023688500000,0.000042637000000,0.000026256500000,0.000047377000000,0.000048168000000,0.000022701000000,0.000039476000000,0.000098735000000,0.000197896000000,0.000168661000000,0.000171032000000,0.011524307000000,0.000203822000000,0.000054883000000,0.000045402000000,0.000084118000000,0.000137451000000,0.000028232000000,0.000411228000000 +0.000017763000000,0.011850232000000,0.000131921000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000027047000000,0.000046587000000,0.000082143000000,0.000022898500000,0.000039871000000,0.000116908000000,0.000162735000000,0.000173007000000,0.000168661000000,0.011807961000000,0.000203822000000,0.000055279000000,0.000045402000000,0.000084118000000,0.000130736000000,0.000028232000000,0.000454290000000 +0.000017762500000,0.011420800000000,0.000120464000000,0.000092019000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046588000000,0.000048957000000,0.000022108500000,0.000039081000000,0.000116119000000,0.000165895000000,0.000169451000000,0.000207377000000,0.012652602000000,0.000202637000000,0.000054883000000,0.000084513000000,0.000086489000000,0.000131130000000,0.000028034000000,0.000419130000000 +0.000017960500000,0.011824159000000,0.000129550000000,0.000040266000000,0.000016182500000,0.000041452000000,0.000026256500000,0.000046587000000,0.000058834000000,0.000039688500000,0.000039476000000,0.000145352000000,0.000161946000000,0.000173007000000,0.000168266000000,0.012096750000000,0.000201057000000,0.000054884000000,0.000062785000000,0.000084513000000,0.000130340000000,0.000028232000000,0.000557797000000 +0.000017762500000,0.011966380000000,0.000115328000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000046982000000,0.000047377000000,0.000040281000000,0.000039871000000,0.000107032000000,0.000161551000000,0.000170241000000,0.000170637000000,0.012394232000000,0.000203032000000,0.000055673000000,0.000045402000000,0.000084908000000,0.000165106000000,0.000028232000000,0.000412414000000 +0.000018948000000,0.011389986000000,0.000128365000000,0.000037501000000,0.000015590000000,0.000043427000000,0.000026256500000,0.000120859000000,0.000047773000000,0.000022898500000,0.000039871000000,0.000118094000000,0.000198291000000,0.000170241000000,0.000167871000000,0.011649146000000,0.000263476000000,0.000055279000000,0.000045797000000,0.000097946000000,0.000129156000000,0.000028034000000,0.000441649000000 +0.000017763000000,0.012690528000000,0.000167476000000,0.000037500000000,0.000015590000000,0.000043822000000,0.000026454000000,0.000082538000000,0.000047377000000,0.000022503500000,0.000078982000000,0.000116118000000,0.000161945000000,0.000169846000000,0.000169056000000,0.011527072000000,0.000202241000000,0.000055673000000,0.000047377000000,0.000085304000000,0.000134290000000,0.000028232000000,0.000408859000000 +0.000018750000000,0.012722923000000,0.000125994000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000062785000000,0.000046983000000,0.000022503500000,0.000054884000000,0.000115328000000,0.000162735000000,0.000172216000000,0.000216069000000,0.012685392000000,0.000202242000000,0.000055279000000,0.000047378000000,0.000082143000000,0.000131920000000,0.000028232000000,0.000454291000000 +0.000017960500000,0.012281639000000,0.000127574000000,0.000037500000000,0.000015590000000,0.000041846000000,0.000026849500000,0.000049748000000,0.000048562000000,0.000022108500000,0.000039081000000,0.000099130000000,0.000163131000000,0.000170636000000,0.000169451000000,0.012248849000000,0.000200662000000,0.000055674000000,0.000046192000000,0.000240957000000,0.000133896000000,0.000028231500000,0.000420316000000 +0.000018355500000,0.011567763000000,0.000112957000000,0.000037896000000,0.000015985000000,0.000042242000000,0.000026256500000,0.000060414000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000104662000000,0.000162340000000,0.000169451000000,0.000167871000000,0.011659023000000,0.000200661000000,0.000095179000000,0.000045402000000,0.000097945000000,0.000135476000000,0.000028232000000,0.000457451000000 +0.000018948000000,0.011379319000000,0.000128365000000,0.000037105000000,0.000016380500000,0.000042637000000,0.000026454000000,0.000046587000000,0.000048563000000,0.000022306000000,0.000039081000000,0.000151278000000,0.000198291000000,0.000172611000000,0.000169846000000,0.012161146000000,0.000202241000000,0.000072662000000,0.000046983000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000406488000000 +0.000027442000000,0.011408553000000,0.000127970000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000034750500000,0.000046983000000,0.000046982000000,0.000022503500000,0.000038686000000,0.000107031000000,0.000162736000000,0.000178933000000,0.000168662000000,0.011702480000000,0.000201056000000,0.000055673000000,0.000046982000000,0.000083723000000,0.000130340000000,0.000028232000000,0.000534093000000 +0.000044232000000,0.011946627000000,0.000158389000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000027244000000,0.000046982000000,0.000048168000000,0.000022898500000,0.000039476000000,0.000115328000000,0.000161945000000,0.000169846000000,0.000185648000000,0.012316404000000,0.000203426000000,0.000055674000000,0.000046193000000,0.000089254000000,0.000132315000000,0.000028232000000,0.000494982000000 +0.000018158000000,0.011362331000000,0.000128364000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026652000000,0.000046982000000,0.000048167000000,0.000022898500000,0.000039871000000,0.000116909000000,0.000162340000000,0.000169846000000,0.000167871000000,0.011484010000000,0.000270982000000,0.000056069000000,0.000046587000000,0.000084514000000,0.000154044000000,0.000028232000000,0.000412019000000 +0.000017763000000,0.011573689000000,0.000119278000000,0.000037500000000,0.000016380000000,0.000042636000000,0.000026651500000,0.000046983000000,0.000045797000000,0.000022898500000,0.000040266000000,0.000099130000000,0.000165896000000,0.000170242000000,0.000169452000000,0.011385245000000,0.000237402000000,0.000055673000000,0.000045797000000,0.000085304000000,0.000217254000000,0.000046009500000,0.000444809000000 +0.000017762500000,0.011508109000000,0.000126785000000,0.000039871000000,0.000016182500000,0.000041451000000,0.000026651500000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000202241000000,0.000170637000000,0.000169451000000,0.011675220000000,0.000201451000000,0.000055279000000,0.000047377000000,0.000086093000000,0.000138637000000,0.000028034500000,0.000406883000000 +0.000017763000000,0.011903961000000,0.000127575000000,0.000039871000000,0.000025664000000,0.000041847000000,0.000026257000000,0.000046982000000,0.000103476000000,0.000022108500000,0.000039871000000,0.000109402000000,0.000161945000000,0.000169847000000,0.000230686000000,0.011847072000000,0.000202242000000,0.000055278000000,0.000045797000000,0.000101896000000,0.000129945000000,0.000028232000000,0.000479970000000 +0.000018158000000,0.011440553000000,0.000125995000000,0.000037501000000,0.000033367500000,0.000078192000000,0.000027046500000,0.000046587000000,0.000062785000000,0.000022503500000,0.000039871000000,0.000157995000000,0.000165895000000,0.000170637000000,0.000170242000000,0.011588307000000,0.000199476000000,0.000055674000000,0.000045798000000,0.000084908000000,0.000197106000000,0.000028231500000,0.000413205000000 +0.000017763000000,0.011468998000000,0.000161945000000,0.000038686000000,0.000015590000000,0.000041846000000,0.000027047000000,0.000046192000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000109007000000,0.000161945000000,0.000170637000000,0.000169451000000,0.011730134000000,0.000196711000000,0.000055278000000,0.000046192000000,0.000089649000000,0.000132710000000,0.000028232000000,0.000441254000000 +0.000017763000000,0.012179318000000,0.000174587000000,0.000040661000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000046588000000,0.000047773000000,0.000022503500000,0.000039477000000,0.000121254000000,0.000163130000000,0.000174587000000,0.000167871000000,0.011734084000000,0.000201451000000,0.000054489000000,0.000064365000000,0.000082538000000,0.000137452000000,0.000028232000000,0.000407278000000 +0.000018553000000,0.011845096000000,0.000112958000000,0.000060019000000,0.000015590000000,0.000041452000000,0.000026651500000,0.000047377000000,0.000048167000000,0.000022503500000,0.000039476000000,0.000146933000000,0.000239773000000,0.000173007000000,0.000167871000000,0.012372504000000,0.000203426000000,0.000055278000000,0.000062389000000,0.000086488000000,0.000131921000000,0.000028231500000,0.000444810000000 +0.000017763000000,0.012792849000000,0.000134686000000,0.000038291000000,0.000015590000000,0.000042241000000,0.000026257000000,0.000083723000000,0.000046193000000,0.000032182500000,0.000039476000000,0.000116118000000,0.000161550000000,0.000169452000000,0.000205797000000,0.011664554000000,0.000244908000000,0.000055279000000,0.000045403000000,0.000082537000000,0.000129550000000,0.000028232000000,0.000413994000000 +0.000018552500000,0.012657738000000,0.000120859000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046587000000,0.000047772000000,0.000030207000000,0.000039476000000,0.000112563000000,0.000165896000000,0.000171032000000,0.000169847000000,0.011370233000000,0.000202241000000,0.000055674000000,0.000046587000000,0.000083723000000,0.000130340000000,0.000028034500000,0.000477994000000 +0.000017960500000,0.011771220000000,0.000127575000000,0.000040267000000,0.000015392500000,0.000041452000000,0.000026256500000,0.000047378000000,0.000048563000000,0.000022306000000,0.000039872000000,0.000152859000000,0.000161550000000,0.000170242000000,0.000170636000000,0.011527863000000,0.000201451000000,0.000055673000000,0.000046192000000,0.000083723000000,0.000129945000000,0.000028232000000,0.000407674000000 +0.000018750500000,0.012068306000000,0.000177353000000,0.000037106000000,0.000015589500000,0.000042636000000,0.000026849000000,0.000047377000000,0.000047772000000,0.000022108500000,0.000039081000000,0.000103871000000,0.000205402000000,0.000170637000000,0.000170636000000,0.011571319000000,0.000203821000000,0.000056069000000,0.000046192000000,0.000132711000000,0.000129155000000,0.000028232000000,0.000465352000000 +0.000018157500000,0.013192256000000,0.000128760000000,0.000040661000000,0.000016380000000,0.000042637000000,0.000026257000000,0.000046982000000,0.000046588000000,0.000022898500000,0.000055674000000,0.000117303000000,0.000166291000000,0.000206982000000,0.000170242000000,0.011416059000000,0.000223179000000,0.000055278000000,0.000046192000000,0.000083723000000,0.000130340000000,0.000028232000000,0.000417154000000 +0.000018553000000,0.012167072000000,0.000120463000000,0.000037500000000,0.000015787500000,0.000042637000000,0.000026256500000,0.000046983000000,0.000047377000000,0.000021911000000,0.000039476000000,0.000115328000000,0.000165895000000,0.000170242000000,0.000212908000000,0.011426726000000,0.000217253000000,0.000054884000000,0.000046983000000,0.000088464000000,0.000167081000000,0.000028232000000,0.000451130000000 +0.000017762500000,0.012161146000000,0.000120464000000,0.000038291000000,0.000016380000000,0.000041451000000,0.000044034500000,0.000046982000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000099130000000,0.000164710000000,0.000173007000000,0.000170241000000,0.011685887000000,0.000199871000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000409254000000 +0.000019145500000,0.011620702000000,0.000125994000000,0.000037895000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046982000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000161550000000,0.000173007000000,0.000167871000000,0.011747516000000,0.000201847000000,0.000056068000000,0.000046587000000,0.000089649000000,0.000131920000000,0.000028232000000,0.000443229000000 +0.000018750500000,0.011546035000000,0.000129945000000,0.000039476000000,0.000015787500000,0.000042242000000,0.000026256500000,0.000046982000000,0.000045798000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000198290000000,0.000169846000000,0.000169057000000,0.011546825000000,0.000253600000000,0.000056069000000,0.000046192000000,0.000083723000000,0.000133106000000,0.000045022000000,0.000410439000000 +0.000018355500000,0.011880256000000,0.000191575000000,0.000037501000000,0.000015590000000,0.000043822000000,0.000026256500000,0.000046983000000,0.000047772000000,0.000022503500000,0.000039476000000,0.000256365000000,0.000166291000000,0.000171031000000,0.000170637000000,0.011630578000000,0.000201847000000,0.000056069000000,0.000047377000000,0.000084909000000,0.000135081000000,0.000028232000000,0.000445994000000 +0.000018355000000,0.011618332000000,0.000120464000000,0.000038290000000,0.000016380500000,0.000042636000000,0.000027047000000,0.000046982000000,0.000046192000000,0.000021911000000,0.000039081000000,0.000147723000000,0.000161155000000,0.000172216000000,0.000169847000000,0.011694973000000,0.000200661000000,0.000054883000000,0.000045402000000,0.000081748000000,0.000166686000000,0.000028231500000,0.000408859000000 +0.000017763000000,0.011424751000000,0.000126785000000,0.000037896000000,0.000015589500000,0.000042241000000,0.000027046500000,0.000047377000000,0.000047377000000,0.000023491000000,0.000039081000000,0.000102686000000,0.000166291000000,0.000172612000000,0.000170242000000,0.011699319000000,0.000203821000000,0.000055279000000,0.000046192000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000454291000000 +0.000027244000000,0.011597393000000,0.000120859000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000027244500000,0.000047378000000,0.000082538000000,0.000022503500000,0.000038686000000,0.000109402000000,0.000161945000000,0.000170242000000,0.000168266000000,0.011353245000000,0.000203427000000,0.000056069000000,0.000045797000000,0.000084908000000,0.000190390000000,0.000028232000000,0.000409254000000 +0.000019343000000,0.011489541000000,0.000124414000000,0.000039476000000,0.000016577500000,0.000043032000000,0.000026651500000,0.000046982000000,0.000048563000000,0.000023096000000,0.000039081000000,0.000106241000000,0.000199081000000,0.000173007000000,0.000167871000000,0.011694578000000,0.000202637000000,0.000054884000000,0.000046587000000,0.000125205000000,0.000132315000000,0.000028231500000,0.000451525000000 +0.000025269000000,0.012097541000000,0.000128365000000,0.000040661000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000047377000000,0.000048167000000,0.000021911000000,0.000039871000000,0.000102686000000,0.000161550000000,0.000171031000000,0.000206192000000,0.011929245000000,0.000201451000000,0.000055673000000,0.000046587000000,0.000099920000000,0.000168266000000,0.000028232000000,0.000407674000000 +0.000017762500000,0.011523122000000,0.000150094000000,0.000037896000000,0.000015590000000,0.000062389000000,0.000027244500000,0.000046587000000,0.000046983000000,0.000022503500000,0.000039476000000,0.000103081000000,0.000162341000000,0.000170241000000,0.000171427000000,0.011848652000000,0.000203821000000,0.000055279000000,0.000046588000000,0.000084118000000,0.000133501000000,0.000028232000000,0.000452315000000 +0.000017763000000,0.011920948000000,0.000127575000000,0.000037896000000,0.000015590000000,0.000074242000000,0.000026454000000,0.000047378000000,0.000046192000000,0.000022306000000,0.000039476000000,0.000115723000000,0.000164315000000,0.000171031000000,0.000167871000000,0.011559863000000,0.000238587000000,0.000054883000000,0.000066340000000,0.000084513000000,0.000132711000000,0.000028034000000,0.000408068000000 +0.000018947500000,0.012300208000000,0.000129945000000,0.000037501000000,0.000015589500000,0.000042242000000,0.000027244000000,0.000046982000000,0.000046587000000,0.000023096000000,0.000039476000000,0.000109402000000,0.000161946000000,0.000171031000000,0.000168266000000,0.011546035000000,0.000202241000000,0.000056069000000,0.000132711000000,0.000083328000000,0.000132711000000,0.000028232000000,0.000443624000000 +0.000018158000000,0.012105047000000,0.000120858000000,0.000037501000000,0.000015590000000,0.000042241000000,0.000025861500000,0.000118093000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000114933000000,0.000211328000000,0.000170636000000,0.000169847000000,0.012169837000000,0.000201846000000,0.000055674000000,0.000134291000000,0.000084118000000,0.000132316000000,0.000028034500000,0.000451131000000 +0.000018750500000,0.013157885000000,0.000120859000000,0.000071871000000,0.000015787500000,0.000042637000000,0.000027046500000,0.000046983000000,0.000048562000000,0.000040479000000,0.000039871000000,0.000116513000000,0.000161155000000,0.000169452000000,0.000296266000000,0.012075417000000,0.000197896000000,0.000054883000000,0.000150094000000,0.000102686000000,0.000180118000000,0.000028232000000,0.000451525000000 +0.000018750500000,0.011879071000000,0.000113353000000,0.000039871000000,0.000033565000000,0.000042242000000,0.000026256500000,0.000046982000000,0.000048167000000,0.000022306000000,0.000039081000000,0.000106636000000,0.000162341000000,0.000221600000000,0.000203032000000,0.011556702000000,0.000203821000000,0.000092019000000,0.000114538000000,0.000099525000000,0.000132316000000,0.000028232000000,0.000408859000000 +0.000018750000000,0.011683122000000,0.000166291000000,0.000038291000000,0.000015787500000,0.000042241000000,0.000026652000000,0.000046982000000,0.000046192000000,0.000022503500000,0.000039872000000,0.000155229000000,0.000165895000000,0.000171822000000,0.000173401000000,0.011467418000000,0.000202241000000,0.000095180000000,0.000063179000000,0.000084909000000,0.000130735000000,0.000028232000000,0.000574389000000 +0.000017763000000,0.011952948000000,0.000113748000000,0.000038686000000,0.000016380000000,0.000042241000000,0.000070898500000,0.000047377000000,0.000047773000000,0.000023096000000,0.000039081000000,0.000116513000000,0.000162341000000,0.000169847000000,0.000170241000000,0.011668504000000,0.000201846000000,0.000058834000000,0.000062389000000,0.000084513000000,0.000129550000000,0.000028232000000,0.000444019000000 +0.000018948000000,0.011443714000000,0.000113353000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000044627000000,0.000046983000000,0.000046982000000,0.000022306000000,0.000073451000000,0.000107032000000,0.000199081000000,0.000173007000000,0.000242143000000,0.011789788000000,0.000203031000000,0.000069106000000,0.000059229000000,0.000085303000000,0.000132316000000,0.000028231500000,0.000411624000000 +0.000019145500000,0.011409344000000,0.000128760000000,0.000040661000000,0.000016577500000,0.000043032000000,0.000027837000000,0.000046587000000,0.000046983000000,0.000023096000000,0.000054488000000,0.000115723000000,0.000162340000000,0.000171426000000,0.000170242000000,0.011702084000000,0.000240167000000,0.000055674000000,0.000047377000000,0.000081748000000,0.000131130000000,0.000173219500000,0.000483920000000 +0.000018750000000,0.011534183000000,0.000115328000000,0.000037896000000,0.000016380000000,0.000042636000000,0.000028232000000,0.000047377000000,0.000046192000000,0.000022701000000,0.000039871000000,0.000114933000000,0.000161550000000,0.000170241000000,0.000167871000000,0.011462677000000,0.000200661000000,0.000054883000000,0.000045797000000,0.000085303000000,0.000131526000000,0.000030009500000,0.000410439000000 +0.000019145500000,0.011598578000000,0.000126785000000,0.000040267000000,0.000015392500000,0.000041452000000,0.000032380000000,0.000046983000000,0.000046587000000,0.000022899000000,0.000059229000000,0.000115723000000,0.000162341000000,0.000171031000000,0.000170636000000,0.011778726000000,0.000201452000000,0.000054884000000,0.000082933000000,0.000082143000000,0.000132710000000,0.000029812500000,0.000446389000000 +0.000018750500000,0.011408949000000,0.000166291000000,0.000039871000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000046983000000,0.000048562000000,0.000022306000000,0.000055278000000,0.000102686000000,0.000161945000000,0.000171822000000,0.000170241000000,0.011923713000000,0.000203822000000,0.000055278000000,0.000045007000000,0.000088069000000,0.000132710000000,0.000030009500000,0.000403328000000 +0.000018948000000,0.011769245000000,0.000127970000000,0.000037501000000,0.000016380500000,0.000042636000000,0.000026454500000,0.000046982000000,0.000047773000000,0.000022503500000,0.000054093000000,0.000116118000000,0.000201056000000,0.000169451000000,0.000239377000000,0.011250529000000,0.000203822000000,0.000054489000000,0.000047773000000,0.000122439000000,0.000173007000000,0.000030009500000,0.000458242000000 +0.000019145500000,0.012059615000000,0.000127575000000,0.000038291000000,0.000016380500000,0.000042637000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000117698000000,0.000161155000000,0.000172216000000,0.000171031000000,0.011766479000000,0.000202242000000,0.000056068000000,0.000046192000000,0.000085304000000,0.000132711000000,0.000055491000000,0.000411624000000 +0.000017762500000,0.012125590000000,0.000129550000000,0.000040266000000,0.000016578000000,0.000041847000000,0.000026651500000,0.000046588000000,0.000097155000000,0.000022701500000,0.000039477000000,0.000115723000000,0.000163525000000,0.000170636000000,0.000171032000000,0.011912256000000,0.000201847000000,0.000054884000000,0.000046192000000,0.000088464000000,0.000130735000000,0.000030010000000,0.000445995000000 +0.000017763000000,0.012125195000000,0.000129551000000,0.000040661000000,0.000016775500000,0.000041451000000,0.000027047000000,0.000046982000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000102686000000,0.000162735000000,0.000170241000000,0.000170241000000,0.012264652000000,0.000203031000000,0.000055279000000,0.000046587000000,0.000085303000000,0.000132710000000,0.000034947500000,0.000404908000000 +0.000018157500000,0.011683122000000,0.000120463000000,0.000037501000000,0.000016380000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000023096500000,0.000040266000000,0.000117304000000,0.000160364000000,0.000210142000000,0.000204217000000,0.011493886000000,0.000265846000000,0.000054883000000,0.000047377000000,0.000086884000000,0.000130736000000,0.000028232000000,0.000713056000000 +0.000017960500000,0.011611220000000,0.000148908000000,0.000037895000000,0.000016182500000,0.000041451000000,0.000026651500000,0.000046982000000,0.000046588000000,0.000023293500000,0.000039081000000,0.000116513000000,0.000203031000000,0.000170637000000,0.000170637000000,0.011505738000000,0.000201846000000,0.000055674000000,0.000045797000000,0.000082933000000,0.000167081000000,0.000038108500000,0.000462192000000 +0.000018750500000,0.012274133000000,0.000127575000000,0.000040661000000,0.000016380000000,0.000077402000000,0.000026454000000,0.000046983000000,0.000047377000000,0.000022503500000,0.000038686000000,0.000155229000000,0.000161550000000,0.000170242000000,0.000168266000000,0.011465048000000,0.000201846000000,0.000056068000000,0.000045797000000,0.000084513000000,0.000133501000000,0.000028034500000,0.000407674000000 +0.000046009500000,0.013009343000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000041846000000,0.000027047000000,0.000066735000000,0.000046983000000,0.000022898500000,0.000039081000000,0.000115328000000,0.000161550000000,0.000170637000000,0.000169847000000,0.011915023000000,0.000203427000000,0.000055279000000,0.000046587000000,0.000084118000000,0.000131526000000,0.000028232000000,0.000443229000000 +0.000026257000000,0.011680751000000,0.000113353000000,0.000040267000000,0.000015590000000,0.000041452000000,0.000044232000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000106637000000,0.000161550000000,0.000171032000000,0.000171426000000,0.011674035000000,0.000203426000000,0.000054883000000,0.000046192000000,0.000084513000000,0.000181698000000,0.000028232000000,0.000406488000000 +0.000018552500000,0.011718281000000,0.000120464000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000023096000000,0.000039081000000,0.000107031000000,0.000162340000000,0.000172217000000,0.000256365000000,0.011831664000000,0.000202241000000,0.000055279000000,0.000047377000000,0.000086883000000,0.000192760000000,0.000028232000000,0.000449550000000 +0.000018355500000,0.012016949000000,0.000127970000000,0.000057649000000,0.000015590000000,0.000041451000000,0.000026651500000,0.000046982000000,0.000045797000000,0.000056874000000,0.000039871000000,0.000103872000000,0.000199476000000,0.000171031000000,0.000168661000000,0.011662973000000,0.000201846000000,0.000054488000000,0.000046587000000,0.000084908000000,0.000133106000000,0.000028232000000,0.000415575000000 +0.000017960500000,0.011476504000000,0.000149698000000,0.000050933000000,0.000015392500000,0.000042242000000,0.000027047000000,0.000047378000000,0.000046192000000,0.000029417000000,0.000039081000000,0.000116513000000,0.000161945000000,0.000171426000000,0.000167871000000,0.011547220000000,0.000203427000000,0.000056464000000,0.000046982000000,0.000084118000000,0.000132316000000,0.000028232000000,0.000446389000000 +0.000017762500000,0.011495862000000,0.000120463000000,0.000039871000000,0.000016380000000,0.000042241000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000117698000000,0.000166291000000,0.000170637000000,0.000169056000000,0.012092405000000,0.000321549000000,0.000055279000000,0.000046983000000,0.000083328000000,0.000129155000000,0.000028231500000,0.000412414000000 +0.000017960500000,0.011683121000000,0.000127970000000,0.000037106000000,0.000015392000000,0.000041451000000,0.000026652000000,0.000046587000000,0.000046588000000,0.000023096000000,0.000075427000000,0.000159179000000,0.000162736000000,0.000171427000000,0.000169847000000,0.011412900000000,0.000216858000000,0.000054883000000,0.000046982000000,0.000087279000000,0.000130341000000,0.000028232000000,0.000445995000000 +0.000019145500000,0.012107417000000,0.000125994000000,0.000037500000000,0.000016182500000,0.000042242000000,0.000027046500000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000103081000000,0.000161155000000,0.000173007000000,0.000185649000000,0.011755418000000,0.000201846000000,0.000055279000000,0.000046983000000,0.000085303000000,0.000171821000000,0.000028232000000,0.000405698000000 +0.000018158000000,0.011928059000000,0.000112957000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000047773000000,0.000046982000000,0.000021911000000,0.000039476000000,0.000098735000000,0.000197896000000,0.000169847000000,0.000169451000000,0.011847071000000,0.000212118000000,0.000054883000000,0.000046192000000,0.000083327000000,0.000132315000000,0.000028231500000,0.000472069000000 +0.000017565000000,0.011344949000000,0.000130736000000,0.000037895000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046587000000,0.000047772000000,0.000022306000000,0.000038686000000,0.000116513000000,0.000162340000000,0.000170637000000,0.000169057000000,0.011563417000000,0.000200661000000,0.000055279000000,0.000081353000000,0.000084513000000,0.000131130000000,0.000028232000000,0.000406884000000 +0.000018750500000,0.011972306000000,0.000120859000000,0.000039871000000,0.000015590000000,0.000041847000000,0.000026849000000,0.000046982000000,0.000048958000000,0.000021911000000,0.000039081000000,0.000115723000000,0.000166291000000,0.000169846000000,0.000170636000000,0.011667714000000,0.000202636000000,0.000054883000000,0.000046983000000,0.000158390000000,0.000135872000000,0.000028232000000,0.000458241000000 +0.000017960500000,0.011634134000000,0.000127179000000,0.000040266000000,0.000040478500000,0.000042636000000,0.000026454500000,0.000046982000000,0.000047377000000,0.000023096000000,0.000039476000000,0.000115723000000,0.000161945000000,0.000170636000000,0.000224760000000,0.011589097000000,0.000195130000000,0.000055674000000,0.000046192000000,0.000122439000000,0.000137452000000,0.000028232000000,0.000406489000000 +0.000017762500000,0.011664949000000,0.000116118000000,0.000037501000000,0.000017368000000,0.000042241000000,0.000026256500000,0.000046588000000,0.000093995000000,0.000022503500000,0.000038686000000,0.000102686000000,0.000161945000000,0.000171032000000,0.000485105000000,0.012011418000000,0.000203427000000,0.000054883000000,0.000046192000000,0.000119674000000,0.000132711000000,0.000028232000000,0.000447575000000 +0.000017763000000,0.011954133000000,0.000112563000000,0.000037501000000,0.000015392000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000046983000000,0.000040084000000,0.000040267000000,0.000128365000000,0.000197896000000,0.000170241000000,0.000187229000000,0.011482825000000,0.000201846000000,0.000055279000000,0.000046983000000,0.000085303000000,0.000130736000000,0.000028034500000,0.000422291000000 +0.000018750000000,0.011850233000000,0.000132316000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000038108000000,0.000039081000000,0.000109007000000,0.000161945000000,0.000169846000000,0.000203822000000,0.012049738000000,0.000191574000000,0.000054883000000,0.000045402000000,0.000085304000000,0.000128365000000,0.000062602000000,0.000447180000000 +0.000017763000000,0.011673245000000,0.000131525000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026849500000,0.000046587000000,0.000045797000000,0.000023096000000,0.000039871000000,0.000116514000000,0.000162735000000,0.000171821000000,0.000169451000000,0.011780702000000,0.000201846000000,0.000055279000000,0.000046588000000,0.000083723000000,0.000137451000000,0.000035343000000,0.000408068000000 +0.000018750500000,0.011765294000000,0.000127969000000,0.000037501000000,0.000015787500000,0.000043032000000,0.000026256500000,0.000047378000000,0.000046983000000,0.000023688500000,0.000039871000000,0.000116513000000,0.000163131000000,0.000263476000000,0.000169452000000,0.012174972000000,0.000203031000000,0.000119279000000,0.000046192000000,0.000082538000000,0.000168266000000,0.000045219500000,0.000479969000000 +0.000018750500000,0.011351665000000,0.000179723000000,0.000038291000000,0.000015590000000,0.000042637000000,0.000046602500000,0.000046982000000,0.000046587000000,0.000022108500000,0.000038686000000,0.000114932000000,0.000161945000000,0.000173797000000,0.000169451000000,0.011614380000000,0.000217648000000,0.000054883000000,0.000047773000000,0.000084118000000,0.000134291000000,0.000052330500000,0.000405698000000 +0.000018948000000,0.011519566000000,0.000128760000000,0.000038291000000,0.000015589500000,0.000042637000000,0.000027046500000,0.000065550000000,0.000046587000000,0.000022108500000,0.000038686000000,0.000103871000000,0.000178933000000,0.000173007000000,0.000169847000000,0.011368652000000,0.000201846000000,0.000055674000000,0.000047772000000,0.000084513000000,0.000129550000000,0.000028232000000,0.000453896000000 +0.000017763000000,0.011805195000000,0.000130340000000,0.000037501000000,0.000015392500000,0.000112957000000,0.000027047000000,0.000097156000000,0.000048167000000,0.000040676000000,0.000039081000000,0.000152463000000,0.000163130000000,0.000169451000000,0.000241748000000,0.011604899000000,0.000201056000000,0.000054883000000,0.000046193000000,0.000082538000000,0.000131526000000,0.000028232000000,0.000407278000000 +0.000019145500000,0.011822578000000,0.000128365000000,0.000039871000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000060020000000,0.000047773000000,0.000022503500000,0.000040267000000,0.000098735000000,0.000161155000000,0.000171426000000,0.000201846000000,0.011958084000000,0.000205007000000,0.000056069000000,0.000045797000000,0.000083328000000,0.000129550000000,0.000028232000000,0.000443228000000 +0.000025664000000,0.011804405000000,0.000128365000000,0.000040661000000,0.000015392500000,0.000042242000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000022108000000,0.000039081000000,0.000117698000000,0.000162340000000,0.000171822000000,0.000170636000000,0.011751862000000,0.000200661000000,0.000055278000000,0.000046982000000,0.000086489000000,0.000176958000000,0.000028232000000,0.000413204000000 +0.000026059000000,0.015492304000000,0.000165106000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046982000000,0.000046983000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000165896000000,0.000170242000000,0.000167476000000,0.011393146000000,0.000239377000000,0.000055279000000,0.000046192000000,0.000084908000000,0.000127970000000,0.000028232000000,0.000445600000000 +0.000018158000000,0.012611120000000,0.000120859000000,0.000095180000000,0.000016380500000,0.000041451000000,0.000026651500000,0.000046983000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000102686000000,0.000165896000000,0.000172217000000,0.000207773000000,0.011743960000000,0.000201057000000,0.000055674000000,0.000046192000000,0.000082933000000,0.000130735000000,0.000028232000000,0.000411624000000 +0.000018157500000,0.011939121000000,0.000120464000000,0.000040662000000,0.000015590000000,0.000042637000000,0.000026849000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039476000000,0.000115723000000,0.000161550000000,0.000176958000000,0.000169846000000,0.011611220000000,0.000205402000000,0.000055278000000,0.000045798000000,0.000083723000000,0.000133896000000,0.000028231500000,0.000457847000000 +0.000017763000000,0.011644800000000,0.000128365000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000048957000000,0.000022108500000,0.000040266000000,0.000117303000000,0.000166291000000,0.000176167000000,0.000167476000000,0.011470578000000,0.000199476000000,0.000054884000000,0.000046982000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000413994000000 +0.000017762500000,0.011922134000000,0.000120859000000,0.000037500000000,0.000015590000000,0.000041846000000,0.000026256500000,0.000046982000000,0.000046983000000,0.000022108500000,0.000074241000000,0.000235822000000,0.000161945000000,0.000169846000000,0.000169847000000,0.011719072000000,0.000195525000000,0.000055278000000,0.000064760000000,0.000122439000000,0.000167081000000,0.000028232000000,0.000450340000000 +0.000017763000000,0.011471368000000,0.000120859000000,0.000040266000000,0.000016182500000,0.000042637000000,0.000026059000000,0.000047378000000,0.000047772000000,0.000022503500000,0.000054093000000,0.000157599000000,0.000182489000000,0.000169451000000,0.000169847000000,0.011627022000000,0.000201451000000,0.000055279000000,0.000078587000000,0.000098735000000,0.000131525000000,0.000046207000000,0.000405698000000 +0.000019145500000,0.011721442000000,0.000114538000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000047377000000,0.000046588000000,0.000022503500000,0.000039476000000,0.000098736000000,0.000162735000000,0.000169847000000,0.000205797000000,0.011803220000000,0.000201056000000,0.000054883000000,0.000045402000000,0.000083328000000,0.000130340000000,0.000028232000000,0.000502093000000 +0.000018355000000,0.012214084000000,0.000150094000000,0.000037106000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000047377000000,0.000067130000000,0.000022306000000,0.000039081000000,0.000106241000000,0.000197501000000,0.000173402000000,0.000171031000000,0.011660207000000,0.000200266000000,0.000054884000000,0.000046193000000,0.000085303000000,0.000132316000000,0.000028231500000,0.000577549000000 +0.000018355500000,0.011898430000000,0.000129945000000,0.000037896000000,0.000015392000000,0.000041452000000,0.000026454000000,0.000046983000000,0.000098341000000,0.000022503500000,0.000039872000000,0.000114933000000,0.000165896000000,0.000169846000000,0.000169847000000,0.013398873000000,0.000201451000000,0.000054883000000,0.000046192000000,0.000082933000000,0.000131921000000,0.000028232000000,0.000419920000000 +0.000017762500000,0.011499813000000,0.000131921000000,0.000040266000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000046982000000,0.000049352000000,0.000023096000000,0.000039476000000,0.000151674000000,0.000161945000000,0.000170636000000,0.000170637000000,0.012224750000000,0.000196711000000,0.000056069000000,0.000045797000000,0.000084514000000,0.000146538000000,0.000028232000000,0.000504463000000 +0.000017763000000,0.011446874000000,0.000120463000000,0.000037105000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000045798000000,0.000023096500000,0.000039476000000,0.000102291000000,0.000228316000000,0.000172217000000,0.000169452000000,0.011942676000000,0.000202241000000,0.000055674000000,0.000046193000000,0.000084908000000,0.000132316000000,0.000028231500000,0.000410439000000 +0.000018948000000,0.012412010000000,0.000113748000000,0.000040266000000,0.000016380000000,0.000042637000000,0.000044231500000,0.000046587000000,0.000048562000000,0.000022898500000,0.000039081000000,0.000102686000000,0.000215674000000,0.000170636000000,0.000207772000000,0.011622282000000,0.000200662000000,0.000055278000000,0.000045797000000,0.000084908000000,0.000129550000000,0.000028034500000,0.000512364000000 +0.000017762500000,0.012211713000000,0.000130341000000,0.000037501000000,0.000015590000000,0.000044217000000,0.000026454500000,0.000046983000000,0.000046983000000,0.000022108500000,0.000039476000000,0.000114933000000,0.000165896000000,0.000171427000000,0.000171427000000,0.011715912000000,0.000201451000000,0.000055674000000,0.000046192000000,0.000084908000000,0.000133106000000,0.000028232000000,0.000410043000000 +0.000018750500000,0.011528257000000,0.000256760000000,0.000037501000000,0.000033960000000,0.000042636000000,0.000026651500000,0.000047377000000,0.000048562000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000164710000000,0.000169847000000,0.000170242000000,0.013009738000000,0.000194340000000,0.000055278000000,0.000046982000000,0.000121254000000,0.000169452000000,0.000028231500000,0.000764019000000 +0.000017762500000,0.011638875000000,0.000141797000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000082933000000,0.000046983000000,0.000022306000000,0.000039476000000,0.000116908000000,0.000161550000000,0.000172217000000,0.000170636000000,0.012341688000000,0.000203031000000,0.000055674000000,0.000046587000000,0.000082143000000,0.000132710000000,0.000028232000000,0.000470884000000 +0.000018750500000,0.011551961000000,0.000113353000000,0.000040662000000,0.000015392500000,0.000041452000000,0.000027047000000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000115328000000,0.000162341000000,0.000172612000000,0.000169847000000,0.011599369000000,0.000199476000000,0.000056069000000,0.000045797000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000408859000000 +0.000017763000000,0.012202232000000,0.000112957000000,0.000037501000000,0.000016380000000,0.000058439000000,0.000026849000000,0.000046982000000,0.000048168000000,0.000040479000000,0.000039081000000,0.000117698000000,0.000166291000000,0.000170636000000,0.000228315000000,0.011894874000000,0.000201846000000,0.000055278000000,0.000047377000000,0.000086094000000,0.000131921000000,0.000028034500000,0.000452315000000 +0.000018157500000,0.012137047000000,0.000120859000000,0.000037501000000,0.000016182500000,0.000042242000000,0.000026454000000,0.000046193000000,0.000046982000000,0.000022503500000,0.000039871000000,0.000103476000000,0.000161155000000,0.000169846000000,0.000169846000000,0.011811517000000,0.000201452000000,0.000055279000000,0.000046193000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000407278000000 +0.000017763000000,0.012220010000000,0.000164711000000,0.000037896000000,0.000016380000000,0.000042636000000,0.000026454500000,0.000046982000000,0.000046983000000,0.000022503500000,0.000039082000000,0.000115723000000,0.000165896000000,0.000171822000000,0.000170637000000,0.011450825000000,0.000203032000000,0.000055278000000,0.000045797000000,0.000084908000000,0.000131130000000,0.000028232000000,0.000439673000000 +0.000017762500000,0.011815861000000,0.000113352000000,0.000037896000000,0.000015392500000,0.000042637000000,0.000026454000000,0.000046587000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000117303000000,0.000181303000000,0.000169847000000,0.000170636000000,0.011692998000000,0.000203427000000,0.000055674000000,0.000045797000000,0.000083328000000,0.000131921000000,0.000028232000000,0.000408464000000 +0.000019145500000,0.011955319000000,0.000130340000000,0.000076612000000,0.000016380000000,0.000042242000000,0.000026849000000,0.000046982000000,0.000048168000000,0.000023096000000,0.000039081000000,0.000116908000000,0.000162735000000,0.000173007000000,0.000206192000000,0.011849442000000,0.000202242000000,0.000055278000000,0.000046983000000,0.000085303000000,0.000127970000000,0.000037910500000,0.000446390000000 +0.000036726000000,0.011591071000000,0.000175377000000,0.000040661000000,0.000015589500000,0.000042241000000,0.000027047000000,0.000046983000000,0.000046192000000,0.000023096000000,0.000039081000000,0.000115328000000,0.000161945000000,0.000171427000000,0.000169846000000,0.012044208000000,0.000201452000000,0.000055279000000,0.000046587000000,0.000103476000000,0.000134686000000,0.000053713500000,0.000408858000000 +0.000018552500000,0.011726183000000,0.000113353000000,0.000038291000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000022701000000,0.000039476000000,0.000152464000000,0.000163130000000,0.000172612000000,0.000169847000000,0.011294775000000,0.000202636000000,0.000054489000000,0.000092415000000,0.000084513000000,0.000131525000000,0.000034750500000,0.000443229000000 +0.000019145500000,0.011838380000000,0.000127180000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000047378000000,0.000022108500000,0.000075031000000,0.000116513000000,0.000164711000000,0.000173007000000,0.000169846000000,0.011531418000000,0.000239377000000,0.000054883000000,0.000046192000000,0.000088069000000,0.000133105000000,0.000028232000000,0.000417550000000 +0.000018158000000,0.012103861000000,0.000162340000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046587000000,0.000082537000000,0.000021911000000,0.000040266000000,0.000103476000000,0.000198291000000,0.000189205000000,0.000170637000000,0.011682726000000,0.000199871000000,0.000055279000000,0.000046983000000,0.000083723000000,0.000131921000000,0.000028232000000,0.000458241000000 +0.000017762500000,0.011665343000000,0.000127574000000,0.000037501000000,0.000016577500000,0.000042241000000,0.000026454000000,0.000046983000000,0.000061204000000,0.000022701000000,0.000038686000000,0.000114933000000,0.000161155000000,0.000185253000000,0.000205797000000,0.011991269000000,0.000201452000000,0.000075426000000,0.000045797000000,0.000083723000000,0.000131131000000,0.000028232000000,0.000413599000000 +0.000019145500000,0.011424357000000,0.000129550000000,0.000037896000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000047377000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000115723000000,0.000161155000000,0.000170637000000,0.000169846000000,0.011861689000000,0.000203032000000,0.000071872000000,0.000047377000000,0.000083328000000,0.000132315000000,0.000028232000000,0.000769155000000 +0.000019145500000,0.013319861000000,0.000129945000000,0.000037501000000,0.000016577500000,0.000042242000000,0.000044231500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000148118000000,0.000163130000000,0.000170242000000,0.000169451000000,0.011635714000000,0.000203427000000,0.000056068000000,0.000046587000000,0.000084908000000,0.000221995000000,0.000028232000000,0.000445600000000 +0.000018750500000,0.012116899000000,0.000128760000000,0.000037896000000,0.000016380000000,0.000041846000000,0.000026454500000,0.000046587000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000136661000000,0.000166686000000,0.000169847000000,0.000167871000000,0.011417640000000,0.000201847000000,0.000054884000000,0.000046587000000,0.000086488000000,0.000149699000000,0.000028232000000,0.000411624000000 +0.000018750500000,0.012058034000000,0.000133105000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046983000000,0.000048167000000,0.000022898500000,0.000039871000000,0.000102686000000,0.000198686000000,0.000172217000000,0.000170242000000,0.012019714000000,0.000201452000000,0.000054883000000,0.000045402000000,0.000082933000000,0.000131920000000,0.000028232000000,0.000482735000000 +0.000018947500000,0.011500208000000,0.000164710000000,0.000039871000000,0.000015392000000,0.000044217000000,0.000027046500000,0.000046982000000,0.000046588000000,0.000021911000000,0.000039476000000,0.000102686000000,0.000162736000000,0.000173797000000,0.000204217000000,0.011674035000000,0.000203426000000,0.000054884000000,0.000046192000000,0.000097945000000,0.000133106000000,0.000028231500000,0.000413599000000 +0.000018750500000,0.012090825000000,0.000129946000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000026849500000,0.000046982000000,0.000047377000000,0.000022108500000,0.000039081000000,0.000114932000000,0.000162340000000,0.000172217000000,0.000169846000000,0.011445294000000,0.000203427000000,0.000054488000000,0.000046192000000,0.000083723000000,0.000169057000000,0.000028232000000,0.000500118000000 +0.000018158000000,0.012867516000000,0.000129155000000,0.000037105000000,0.000016577500000,0.000043031000000,0.000026651500000,0.000086884000000,0.000046983000000,0.000022898500000,0.000039476000000,0.000099130000000,0.000161155000000,0.000169056000000,0.000168266000000,0.011654282000000,0.000201847000000,0.000055279000000,0.000045797000000,0.000082933000000,0.000132315000000,0.000028232000000,0.000408859000000 +0.000017762500000,0.012278084000000,0.000128365000000,0.000040266000000,0.000016380000000,0.000041847000000,0.000026256500000,0.000063179000000,0.000045797000000,0.000022503500000,0.000039081000000,0.000103081000000,0.000162341000000,0.000172612000000,0.000171822000000,0.012024454000000,0.000201056000000,0.000055278000000,0.000046982000000,0.000085303000000,0.000133106000000,0.000028231500000,0.000447180000000 +0.000018158000000,0.011938331000000,0.000129550000000,0.000039871000000,0.000016775500000,0.000042637000000,0.000027047000000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000198291000000,0.000169847000000,0.000169847000000,0.011501393000000,0.000203031000000,0.000054884000000,0.000046587000000,0.000084513000000,0.000135476000000,0.000028232000000,0.000411624000000 +0.000017763000000,0.012075022000000,0.000113352000000,0.000037896000000,0.000016380000000,0.000097155000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000057861500000,0.000039081000000,0.000145748000000,0.000164710000000,0.000171822000000,0.000185254000000,0.011372603000000,0.000198686000000,0.000055278000000,0.000045402000000,0.000086884000000,0.000130736000000,0.000046404500000,0.000444019000000 +0.000018355500000,0.011621492000000,0.000164711000000,0.000038291000000,0.000016380000000,0.000112958000000,0.000027046500000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000116118000000,0.000161551000000,0.000170636000000,0.000169451000000,0.012101886000000,0.000201057000000,0.000054884000000,0.000046193000000,0.000084118000000,0.000204611000000,0.000028232000000,0.000549105000000 +0.000019145500000,0.011651121000000,0.000129946000000,0.000040266000000,0.000015590000000,0.000125204000000,0.000027047000000,0.000046587000000,0.000048562000000,0.000022306000000,0.000039081000000,0.000109402000000,0.000163920000000,0.000172217000000,0.000168661000000,0.012101491000000,0.000201451000000,0.000056069000000,0.000045402000000,0.000084513000000,0.000137847000000,0.000028232000000,0.000426637000000 +0.000018158000000,0.011996010000000,0.000127575000000,0.000040266000000,0.000025269000000,0.000063179000000,0.000026849000000,0.000046983000000,0.000046588000000,0.000022898500000,0.000039081000000,0.000116513000000,0.000163131000000,0.000169847000000,0.000169847000000,0.011504159000000,0.000203427000000,0.000055673000000,0.000045797000000,0.000154834000000,0.000130735000000,0.000028232000000,0.000445204000000 +0.000018552500000,0.011950578000000,0.000113352000000,0.000037500000000,0.000041466500000,0.000045007000000,0.000026454500000,0.000047377000000,0.000046192000000,0.000022503500000,0.000039476000000,0.000098735000000,0.000197500000000,0.000170241000000,0.000204216000000,0.011383665000000,0.000200661000000,0.000054884000000,0.000065945000000,0.000083723000000,0.000132711000000,0.000028232000000,0.000411624000000 +0.000018750500000,0.011745146000000,0.000128760000000,0.000106637000000,0.000015590000000,0.000058044000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000021911000000,0.000039081000000,0.000116118000000,0.000166291000000,0.000207772000000,0.000171427000000,0.011659023000000,0.000201056000000,0.000055278000000,0.000118093000000,0.000088069000000,0.000224365000000,0.000028232000000,0.000471278000000 +0.000017763000000,0.011490727000000,0.000127970000000,0.000113747000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000117303000000,0.000161551000000,0.000172612000000,0.000169452000000,0.011788998000000,0.000201846000000,0.000061600000000,0.000048958000000,0.000085698000000,0.000130736000000,0.000028232000000,0.000405303000000 +0.000019145500000,0.011496258000000,0.000163130000000,0.000040266000000,0.000016380000000,0.000042637000000,0.000026849500000,0.000046588000000,0.000099130000000,0.000022898500000,0.000039476000000,0.000186439000000,0.000161945000000,0.000169452000000,0.000168267000000,0.011478084000000,0.000203822000000,0.000056069000000,0.000045797000000,0.000082933000000,0.000129945000000,0.000028231500000,0.000477204000000 +0.000027441500000,0.012011022000000,0.000126785000000,0.000057649000000,0.000015590000000,0.000042241000000,0.000044231500000,0.000046982000000,0.000046983000000,0.000021911000000,0.000088859000000,0.000102291000000,0.000161945000000,0.000169846000000,0.000169451000000,0.011532998000000,0.000203821000000,0.000054488000000,0.000046193000000,0.000084908000000,0.000130735000000,0.000028232000000,0.000406093000000 +0.000043046500000,0.011366677000000,0.000127970000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000026257000000,0.000046982000000,0.000048562000000,0.000023096000000,0.000052908000000,0.000117698000000,0.000212513000000,0.000173797000000,0.000205402000000,0.011693788000000,0.000201846000000,0.000055279000000,0.000045797000000,0.000088464000000,0.000130341000000,0.000028232000000,0.000446389000000 +0.000025071000000,0.011812701000000,0.000114933000000,0.000037501000000,0.000015392000000,0.000041847000000,0.000026849000000,0.000047378000000,0.000046192000000,0.000022701000000,0.000039872000000,0.000116513000000,0.000163130000000,0.000172217000000,0.000169056000000,0.011790578000000,0.000201451000000,0.000055278000000,0.000045007000000,0.000083723000000,0.000182488000000,0.000028034000000,0.000405698000000 +0.000017763000000,0.011470183000000,0.000130341000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000046192000000,0.000022108500000,0.000039476000000,0.000103081000000,0.000161551000000,0.000169056000000,0.000168266000000,0.011843516000000,0.000202636000000,0.000055279000000,0.000045798000000,0.000083723000000,0.000131921000000,0.000028232000000,0.000444414000000 +0.000018948000000,0.012029590000000,0.000129945000000,0.000040266000000,0.000017960500000,0.000042241000000,0.000026256500000,0.000046982000000,0.000047378000000,0.000021911000000,0.000039476000000,0.000116513000000,0.000165895000000,0.000170242000000,0.000169056000000,0.012504454000000,0.000206192000000,0.000056068000000,0.000046587000000,0.000085303000000,0.000129155000000,0.000028232000000,0.000406489000000 +0.000017762500000,0.011391171000000,0.000157995000000,0.000037105000000,0.000015589500000,0.000044612000000,0.000026651500000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000106636000000,0.000162736000000,0.000172217000000,0.000277698000000,0.011794133000000,0.000201451000000,0.000054884000000,0.000046587000000,0.000088464000000,0.000133106000000,0.000037713000000,0.000449550000000 +0.000019145500000,0.011746331000000,0.000120068000000,0.000037896000000,0.000015590000000,0.000114143000000,0.000027046500000,0.000066736000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000104266000000,0.000197501000000,0.000171426000000,0.000169452000000,0.011789788000000,0.000201451000000,0.000056069000000,0.000046982000000,0.000088464000000,0.000129550000000,0.000036923500000,0.000417155000000 +0.000018158000000,0.011655862000000,0.000129550000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046587000000,0.000048563000000,0.000022898500000,0.000039871000000,0.000109007000000,0.000161155000000,0.000169451000000,0.000169452000000,0.011261195000000,0.000203427000000,0.000055673000000,0.000046192000000,0.000084909000000,0.000144957000000,0.000053318500000,0.000561352000000 +0.000017762500000,0.012010232000000,0.000129155000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000027046500000,0.000046588000000,0.000048562000000,0.000021911000000,0.000039871000000,0.000113353000000,0.000162340000000,0.000172611000000,0.000169451000000,0.012206183000000,0.000203032000000,0.000055279000000,0.000045798000000,0.000083328000000,0.000129945000000,0.000028232000000,0.000410043000000 +0.000018948000000,0.011337048000000,0.000127575000000,0.000040266000000,0.000016380000000,0.000041846000000,0.000026257000000,0.000046587000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000106636000000,0.000165896000000,0.000169451000000,0.000169056000000,0.012068701000000,0.000201846000000,0.000055278000000,0.000045797000000,0.000084908000000,0.000130736000000,0.000028232000000,0.000445204000000 +0.000018948000000,0.011833245000000,0.000132711000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000040281500000,0.000039081000000,0.000102686000000,0.000161945000000,0.000172217000000,0.000205007000000,0.012185640000000,0.000201451000000,0.000054884000000,0.000046587000000,0.000083723000000,0.000129550000000,0.000028232000000,0.000409254000000 +0.000018355500000,0.012011812000000,0.000162735000000,0.000038290000000,0.000016380000000,0.000041451000000,0.000026849000000,0.000046982000000,0.000046982000000,0.000022701000000,0.000039081000000,0.000109007000000,0.000197501000000,0.000171032000000,0.000170242000000,0.011628602000000,0.000235822000000,0.000056069000000,0.000047377000000,0.000084908000000,0.000167081000000,0.000028231500000,0.000476414000000 +0.000017762500000,0.012034726000000,0.000120858000000,0.000074242000000,0.000015589500000,0.000041451000000,0.000026849500000,0.000046193000000,0.000046587000000,0.000022306000000,0.000039871000000,0.000163526000000,0.000161550000000,0.000169847000000,0.000167872000000,0.011567369000000,0.000201846000000,0.000054883000000,0.000046982000000,0.000208958000000,0.000140612000000,0.000028232000000,0.000410834000000 +0.000018750500000,0.011453591000000,0.000122044000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000046982000000,0.000048168000000,0.000022898500000,0.000039081000000,0.000116908000000,0.000161551000000,0.000168661000000,0.000167871000000,0.011625838000000,0.000201451000000,0.000055279000000,0.000097550000000,0.000259525000000,0.000133501000000,0.000028232000000,0.000444019000000 +0.000018948000000,0.011690627000000,0.000120859000000,0.000038291000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000023096000000,0.000039081000000,0.000113748000000,0.000161550000000,0.000172217000000,0.000170242000000,0.011736454000000,0.000201056000000,0.000075426000000,0.000047772000000,0.000099130000000,0.000139427000000,0.000028231500000,0.000408069000000 +0.000018948000000,0.011592257000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000047378000000,0.000046983000000,0.000022701000000,0.000039081000000,0.000116908000000,0.000163130000000,0.000171427000000,0.000206587000000,0.011356800000000,0.000203032000000,0.000114143000000,0.000046192000000,0.000084909000000,0.000131920000000,0.000028232000000,0.000492612000000 +0.000018947500000,0.012852108000000,0.000131525000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000044429500000,0.000046982000000,0.000118093000000,0.000022701000000,0.000039081000000,0.000118093000000,0.000222390000000,0.000170242000000,0.000167871000000,0.011670084000000,0.000203427000000,0.000075427000000,0.000046192000000,0.000085303000000,0.000168266000000,0.000028232000000,0.000414390000000 +0.000018750500000,0.011847862000000,0.000172216000000,0.000037501000000,0.000015195000000,0.000042637000000,0.000026652000000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000161945000000,0.000172612000000,0.000227525000000,0.011467813000000,0.000202241000000,0.000086883000000,0.000046983000000,0.000084513000000,0.000132711000000,0.000028232000000,0.000413599000000 +0.000018355500000,0.012084109000000,0.000127970000000,0.000038291000000,0.000015787500000,0.000041451000000,0.000026849000000,0.000047377000000,0.000047377000000,0.000022306000000,0.000075822000000,0.000116909000000,0.000163131000000,0.000171032000000,0.000168267000000,0.011738035000000,0.000201057000000,0.000055279000000,0.000046192000000,0.000083328000000,0.000133501000000,0.000028232000000,0.000589797000000 +0.000017762500000,0.012145738000000,0.000130340000000,0.000039871000000,0.000016775500000,0.000042242000000,0.000046800000000,0.000046983000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000152068000000,0.000161550000000,0.000169847000000,0.000187624000000,0.011713936000000,0.000203032000000,0.000055278000000,0.000047378000000,0.000088464000000,0.000132315000000,0.000028232000000,0.000548315000000 +0.000018948000000,0.012292701000000,0.000121649000000,0.000040662000000,0.000034552500000,0.000042636000000,0.000028627000000,0.000046982000000,0.000045798000000,0.000022306000000,0.000039081000000,0.000116118000000,0.000161945000000,0.000171031000000,0.000168661000000,0.011542084000000,0.000201056000000,0.000054884000000,0.000046192000000,0.000085303000000,0.000131920000000,0.000028232000000,0.000425056000000 +0.000018750500000,0.011979417000000,0.000126389000000,0.000037896000000,0.000016577500000,0.000042241000000,0.000033367500000,0.000046587000000,0.000047377000000,0.000022898500000,0.000039476000000,0.000116513000000,0.000203031000000,0.000169846000000,0.000169451000000,0.012103071000000,0.000321155000000,0.000054488000000,0.000046982000000,0.000084118000000,0.000357896000000,0.000028034000000,0.000406883000000 +0.000027442000000,0.011403417000000,0.000127575000000,0.000039871000000,0.000015985000000,0.000042242000000,0.000026651500000,0.000046587000000,0.000048563000000,0.000022898500000,0.000039476000000,0.000103081000000,0.000165501000000,0.000169451000000,0.000169846000000,0.011943467000000,0.000199871000000,0.000054884000000,0.000045402000000,0.000116513000000,0.000181699000000,0.000038108500000,0.000800365000000 +0.000018355000000,0.011723022000000,0.000221600000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000026257000000,0.000047378000000,0.000047377000000,0.000022306000000,0.000039477000000,0.000103081000000,0.000161155000000,0.000169846000000,0.000169057000000,0.011787023000000,0.000202636000000,0.000055278000000,0.000045402000000,0.000084908000000,0.000167476000000,0.000028231500000,0.000416365000000 +0.000018553000000,0.011968751000000,0.000127970000000,0.000037105000000,0.000015590000000,0.000042241000000,0.000026849000000,0.000066340000000,0.000046983000000,0.000022503500000,0.000039476000000,0.000114933000000,0.000165896000000,0.000170241000000,0.000206192000000,0.012019714000000,0.000217254000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000132710000000,0.000028034500000,0.000413204000000 +0.000018553000000,0.011557492000000,0.000129550000000,0.000038686000000,0.000016380000000,0.000059625000000,0.000026651500000,0.000135081000000,0.000047377000000,0.000022306000000,0.000039476000000,0.000136266000000,0.000161945000000,0.000235031000000,0.000169056000000,0.012013787000000,0.000278883000000,0.000054883000000,0.000045797000000,0.000088859000000,0.000132315000000,0.000028232000000,0.000411228000000 +0.000018355000000,0.011556702000000,0.000129550000000,0.000040661000000,0.000016182500000,0.000042241000000,0.000027047000000,0.000116118000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000124809000000,0.000216464000000,0.000174587000000,0.000167871000000,0.012026035000000,0.000201056000000,0.000055279000000,0.000046587000000,0.000099130000000,0.000134291000000,0.000028429500000,0.000463772000000 +0.000017763000000,0.011640060000000,0.000130340000000,0.000039871000000,0.000016577500000,0.000043032000000,0.000026059000000,0.000096365000000,0.000048957000000,0.000022503500000,0.000038686000000,0.000116909000000,0.000162735000000,0.000171821000000,0.000171032000000,0.011438579000000,0.000202637000000,0.000055674000000,0.000046982000000,0.000084908000000,0.000131525000000,0.000028429500000,0.000407279000000 +0.000018553000000,0.011832849000000,0.000127970000000,0.000037501000000,0.000015392500000,0.000042637000000,0.000026256500000,0.000082933000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000117304000000,0.000161155000000,0.000171031000000,0.000169846000000,0.011245394000000,0.000203032000000,0.000056069000000,0.000045797000000,0.000083328000000,0.000169451000000,0.000028232000000,0.000455476000000 +0.000017762500000,0.011761344000000,0.000179723000000,0.000037896000000,0.000016182500000,0.000041451000000,0.000026652000000,0.000050143000000,0.000048958000000,0.000040084000000,0.000039081000000,0.000116118000000,0.000197896000000,0.000249649000000,0.000241353000000,0.011511269000000,0.000201846000000,0.000054884000000,0.000045402000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000413600000000 +0.000018750500000,0.011520751000000,0.000122439000000,0.000040267000000,0.000016577500000,0.000042242000000,0.000026059000000,0.000050143000000,0.000048562000000,0.000023096000000,0.000039872000000,0.000104266000000,0.000198291000000,0.000169847000000,0.000169847000000,0.011785047000000,0.000201057000000,0.000055673000000,0.000082143000000,0.000082143000000,0.000129550000000,0.000028232000000,0.000445994000000 +0.000017762500000,0.012130725000000,0.000115723000000,0.000037501000000,0.000016380000000,0.000041452000000,0.000036528000000,0.000046982000000,0.000047378000000,0.000022306000000,0.000039081000000,0.000116908000000,0.000162736000000,0.000169847000000,0.000168661000000,0.011510874000000,0.000202637000000,0.000054489000000,0.000046192000000,0.000086094000000,0.000132316000000,0.000028232000000,0.000415179000000 +0.000018750500000,0.011677195000000,0.000120859000000,0.000040266000000,0.000015392500000,0.000042636000000,0.000026849000000,0.000047378000000,0.000048167000000,0.000022503500000,0.000039476000000,0.000151279000000,0.000165896000000,0.000169451000000,0.000170637000000,0.011388405000000,0.000203032000000,0.000054883000000,0.000045402000000,0.000083328000000,0.000132710000000,0.000028232000000,0.000493796000000 +0.000018158000000,0.011555516000000,0.000127575000000,0.000037896000000,0.000016380500000,0.000042241000000,0.000026454500000,0.000047377000000,0.000115723000000,0.000022701000000,0.000039477000000,0.000115723000000,0.000165500000000,0.000170241000000,0.000169846000000,0.011585541000000,0.000198686000000,0.000055279000000,0.000045797000000,0.000088859000000,0.000206192000000,0.000028231500000,0.000442834000000 +0.000017762500000,0.011590282000000,0.000131130000000,0.000037106000000,0.000015392500000,0.000042637000000,0.000026849000000,0.000046982000000,0.000062389000000,0.000023096000000,0.000039081000000,0.000116908000000,0.000164710000000,0.000173007000000,0.000170242000000,0.012084108000000,0.000199476000000,0.000054883000000,0.000045402000000,0.000121254000000,0.000132315000000,0.000028232000000,0.000441648000000 +0.000017763000000,0.011429887000000,0.000128365000000,0.000037500000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046588000000,0.000048168000000,0.000022306000000,0.000039476000000,0.000116908000000,0.000208958000000,0.000172612000000,0.000168266000000,0.011873541000000,0.000203032000000,0.000055279000000,0.000046193000000,0.000089254000000,0.000129550000000,0.000028232000000,0.000436513000000 +0.000017960000000,0.011841146000000,0.000120859000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000026257000000,0.000047377000000,0.000047378000000,0.000022108500000,0.000039477000000,0.000116118000000,0.000162340000000,0.000170241000000,0.000169056000000,0.011290825000000,0.000238192000000,0.000055278000000,0.000046587000000,0.000083723000000,0.000131130000000,0.000028231500000,0.000435723000000 +0.000017763000000,0.012085689000000,0.000120464000000,0.000037106000000,0.000016577500000,0.000041847000000,0.000027046500000,0.000081748000000,0.000045797000000,0.000022306000000,0.000039476000000,0.000117303000000,0.000166291000000,0.000172216000000,0.000170241000000,0.011780306000000,0.000201451000000,0.000054884000000,0.000046983000000,0.000083328000000,0.000152463000000,0.000028232000000,0.000435328000000 +0.000017762500000,0.011633739000000,0.000128760000000,0.000038290000000,0.000015392500000,0.000041451000000,0.000026454000000,0.000061204000000,0.000048562000000,0.000022503500000,0.000091229000000,0.000153254000000,0.000161156000000,0.000172611000000,0.000224760000000,0.011708405000000,0.000201056000000,0.000054488000000,0.000046192000000,0.000082143000000,0.000127575000000,0.000080972500000,0.000470883000000 +0.000018750500000,0.012117293000000,0.000120859000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000027047000000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000165896000000,0.000172217000000,0.000338933000000,0.011576455000000,0.000203032000000,0.000054884000000,0.000046983000000,0.000082933000000,0.000132316000000,0.000028232000000,0.000434538000000 +0.000018750500000,0.012172207000000,0.000113748000000,0.000037500000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000046983000000,0.000047772000000,0.000022503500000,0.000039476000000,0.000111377000000,0.000198291000000,0.000170242000000,0.000223970000000,0.011550775000000,0.000202637000000,0.000055279000000,0.000046192000000,0.000082933000000,0.000134291000000,0.000028232000000,0.000432562000000 +0.000017762500000,0.012183269000000,0.000156019000000,0.000040266000000,0.000015392500000,0.000042636000000,0.000026849500000,0.000046982000000,0.000045798000000,0.000022108500000,0.000039081000000,0.000116118000000,0.000162736000000,0.000172217000000,0.000210538000000,0.011745936000000,0.000201846000000,0.000055674000000,0.000046192000000,0.000082933000000,0.000131130000000,0.000028231500000,0.000433352000000 +0.000018355500000,0.011700899000000,0.000128365000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000047377000000,0.000048167000000,0.000022701000000,0.000039477000000,0.000116118000000,0.000161945000000,0.000171426000000,0.000169846000000,0.011770035000000,0.000201057000000,0.000055674000000,0.000046587000000,0.000085304000000,0.000164316000000,0.000028232000000,0.000489056000000 +0.000019145500000,0.011734874000000,0.000112958000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000046983000000,0.000047378000000,0.000022701000000,0.000038686000000,0.000114932000000,0.000162340000000,0.000245698000000,0.000171822000000,0.011574480000000,0.000197106000000,0.000054488000000,0.000046587000000,0.000163130000000,0.000133106000000,0.000028232000000,0.000437698000000 +0.000028429500000,0.011427122000000,0.000125994000000,0.000037500000000,0.000016182500000,0.000080957000000,0.000027046500000,0.000046983000000,0.000048562000000,0.000022503500000,0.000040266000000,0.000117303000000,0.000164316000000,0.000203822000000,0.000167476000000,0.011415269000000,0.000203427000000,0.000056069000000,0.000046983000000,0.000084908000000,0.000132315000000,0.000028231500000,0.000431772000000 +0.000034157500000,0.011357591000000,0.000113352000000,0.000037106000000,0.000025862000000,0.000058834000000,0.000026651500000,0.000047377000000,0.000045798000000,0.000022108500000,0.000039871000000,0.000150883000000,0.000197896000000,0.000171821000000,0.000168661000000,0.011386825000000,0.000195131000000,0.000055278000000,0.000045797000000,0.000084118000000,0.000133501000000,0.000028232000000,0.000432562000000 +0.000035145500000,0.011780306000000,0.000113748000000,0.000037501000000,0.000041268500000,0.000042637000000,0.000026256500000,0.000047377000000,0.000047772000000,0.000023688500000,0.000039082000000,0.000098736000000,0.000161155000000,0.000170241000000,0.000205402000000,0.011956503000000,0.000201452000000,0.000055279000000,0.000045797000000,0.000084908000000,0.000128760000000,0.000028232000000,0.000433352000000 +0.000019738000000,0.011800455000000,0.000149303000000,0.000037501000000,0.000015590000000,0.000043032000000,0.000036133000000,0.000046983000000,0.000046192000000,0.000032182500000,0.000039476000000,0.000115328000000,0.000161155000000,0.000171032000000,0.000169451000000,0.011464652000000,0.000199476000000,0.000055279000000,0.000046982000000,0.000084908000000,0.000213698000000,0.000028232000000,0.000436118000000 +0.000017763000000,0.011497048000000,0.000128760000000,0.000037501000000,0.000016380000000,0.000042241000000,0.000027046500000,0.000046982000000,0.000048167000000,0.000046997500000,0.000039476000000,0.000117303000000,0.000162735000000,0.000170637000000,0.000170242000000,0.011685096000000,0.000201452000000,0.000054884000000,0.000081748000000,0.000083723000000,0.000131525000000,0.000028232000000,0.000433748000000 +0.000018948000000,0.011504554000000,0.000128760000000,0.000037501000000,0.000016577500000,0.000042241000000,0.000026651500000,0.000046982000000,0.000045797000000,0.000029614500000,0.000039477000000,0.000102686000000,0.000166291000000,0.000171822000000,0.000170636000000,0.011502974000000,0.000201847000000,0.000054884000000,0.000045402000000,0.000085304000000,0.000132316000000,0.000028232000000,0.000567278000000 +0.000017762500000,0.011472948000000,0.000128760000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000046587000000,0.000063180000000,0.000022503500000,0.000039081000000,0.000113353000000,0.000205007000000,0.000169056000000,0.000170637000000,0.013853193000000,0.000196711000000,0.000055674000000,0.000045007000000,0.000084908000000,0.000129551000000,0.000028034500000,0.000552660000000 +0.000018750500000,0.011678775000000,0.000127574000000,0.000079377000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000047378000000,0.000047773000000,0.000022701000000,0.000039081000000,0.000109007000000,0.000163131000000,0.000171821000000,0.000206192000000,0.012048553000000,0.000202637000000,0.000055279000000,0.000046587000000,0.000105056000000,0.000129945000000,0.000028232000000,0.000431772000000 +0.000018750500000,0.012164306000000,0.000113748000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000026651500000,0.000080957000000,0.000046982000000,0.000022108500000,0.000039081000000,0.000109007000000,0.000162340000000,0.000173007000000,0.000169452000000,0.011772405000000,0.000222390000000,0.000055278000000,0.000045797000000,0.000083328000000,0.000133106000000,0.000046207500000,0.000444019000000 +0.000017960000000,0.012182479000000,0.000162340000000,0.000037106000000,0.000015590000000,0.000041846000000,0.000026849500000,0.000062390000000,0.000045798000000,0.000022503500000,0.000039081000000,0.000116118000000,0.000161155000000,0.000169451000000,0.000168266000000,0.013471565000000,0.000197896000000,0.000056069000000,0.000046983000000,0.000084513000000,0.000131526000000,0.000028232000000,0.000417155000000 +0.000017763000000,0.011959269000000,0.000128365000000,0.000040662000000,0.000016972500000,0.000041451000000,0.000026454000000,0.000081748000000,0.000046587000000,0.000022306000000,0.000039081000000,0.000107427000000,0.000162341000000,0.000171426000000,0.000169846000000,0.012417145000000,0.000201056000000,0.000055674000000,0.000045007000000,0.000082933000000,0.000132711000000,0.000028232000000,0.000451130000000 +0.000017762500000,0.011977837000000,0.000119279000000,0.000040267000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000061599000000,0.000046192000000,0.000022306000000,0.000039081000000,0.000099131000000,0.000197896000000,0.000170636000000,0.000170242000000,0.012078577000000,0.000202636000000,0.000055278000000,0.000046192000000,0.000087279000000,0.000129945000000,0.000028232000000,0.000417155000000 +0.000018553000000,0.011341393000000,0.000131920000000,0.000037106000000,0.000015590000000,0.000041451000000,0.000026256500000,0.000046983000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000165106000000,0.000169847000000,0.000184464000000,0.012212504000000,0.000203031000000,0.000054884000000,0.000046193000000,0.000086488000000,0.000165501000000,0.000028231500000,0.000489056000000 +0.000018948000000,0.011764109000000,0.000115327000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000026257000000,0.000046982000000,0.000047377000000,0.000022503500000,0.000056068000000,0.000153253000000,0.000161155000000,0.000172612000000,0.000171031000000,0.011987714000000,0.000201846000000,0.000055673000000,0.000046982000000,0.000085303000000,0.000169451000000,0.000028232000000,0.000413994000000 +0.000018750500000,0.011898430000000,0.000175378000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000026849000000,0.000046982000000,0.000048563000000,0.000022898500000,0.000039081000000,0.000164315000000,0.000163130000000,0.000170637000000,0.000171032000000,0.011463072000000,0.000201056000000,0.000055674000000,0.000048563000000,0.000091229000000,0.000131920000000,0.000028232000000,0.000445204000000 +0.000018552500000,0.011962430000000,0.000164315000000,0.000040266000000,0.000015392500000,0.000041846000000,0.000026256500000,0.000046587000000,0.000048562000000,0.000022503500000,0.000039081000000,0.000169056000000,0.000162736000000,0.000170637000000,0.000169846000000,0.011527467000000,0.000203031000000,0.000054883000000,0.000047377000000,0.000084909000000,0.000134291000000,0.000028231500000,0.000408068000000 +0.000017763000000,0.011477689000000,0.000128760000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000047773000000,0.000046193000000,0.000022108500000,0.000039476000000,0.000109402000000,0.000177352000000,0.000172217000000,0.000204611000000,0.011587911000000,0.000203426000000,0.000054884000000,0.000046983000000,0.000189599000000,0.000132710000000,0.000028232000000,0.000525797000000 +0.000018948000000,0.011444109000000,0.000130340000000,0.000038291000000,0.000016577500000,0.000042241000000,0.000026652000000,0.000047377000000,0.000047377000000,0.000022503500000,0.000039871000000,0.000109402000000,0.000166290000000,0.000171426000000,0.000170636000000,0.011908702000000,0.000201846000000,0.000055674000000,0.000046587000000,0.000083723000000,0.000147328000000,0.000028232000000,0.000408068000000 +0.000017762500000,0.011984553000000,0.000130736000000,0.000040266000000,0.000016577500000,0.000042241000000,0.000026256500000,0.000046587000000,0.000048563000000,0.000022108500000,0.000039081000000,0.000107821000000,0.000161550000000,0.000170241000000,0.000168661000000,0.011374973000000,0.000201056000000,0.000054883000000,0.000046193000000,0.000085303000000,0.000131130000000,0.000028231500000,0.000443229000000 +0.000018948000000,0.012431763000000,0.000113353000000,0.000037501000000,0.000016380000000,0.000078587000000,0.000026651500000,0.000046983000000,0.000047772000000,0.000022306000000,0.000039477000000,0.000115723000000,0.000161550000000,0.000170241000000,0.000169846000000,0.011428307000000,0.000202637000000,0.000055279000000,0.000046587000000,0.000084513000000,0.000134686000000,0.000028232000000,0.000412019000000 +0.000017960500000,0.011440554000000,0.000121254000000,0.000039476000000,0.000016380000000,0.000042241000000,0.000034948000000,0.000046982000000,0.000045798000000,0.000022306000000,0.000039476000000,0.000188415000000,0.000161550000000,0.000170241000000,0.000170637000000,0.011522331000000,0.000201057000000,0.000055673000000,0.000045797000000,0.000084513000000,0.000133501000000,0.000028232000000,0.000445599000000 +0.000054108000000,0.011427122000000,0.000166291000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000047772000000,0.000041664000000,0.000039081000000,0.000114933000000,0.000284019000000,0.000172612000000,0.000264661000000,0.011975862000000,0.000214488000000,0.000055279000000,0.000046587000000,0.000085303000000,0.000165896000000,0.000028232000000,0.000409649000000 +0.000018355500000,0.011562232000000,0.000131130000000,0.000037500000000,0.000016380500000,0.000041451000000,0.000026256500000,0.000046982000000,0.000046587000000,0.000038503500000,0.000039871000000,0.000102291000000,0.000163130000000,0.000208563000000,0.000171427000000,0.011883023000000,0.000198685000000,0.000055278000000,0.000095575000000,0.000086094000000,0.000130340000000,0.000028232000000,0.000643920000000 +0.000017763000000,0.014106033000000,0.000127575000000,0.000037501000000,0.000015589500000,0.000042636000000,0.000026651500000,0.000046588000000,0.000067920000000,0.000022701000000,0.000039081000000,0.000102686000000,0.000161550000000,0.000170242000000,0.000168661000000,0.011997986000000,0.000202636000000,0.000054884000000,0.000060019000000,0.000083723000000,0.000131921000000,0.000028034500000,0.000496562000000 +0.000017762500000,0.012001936000000,0.000128365000000,0.000040662000000,0.000016775500000,0.000042242000000,0.000026256500000,0.000047377000000,0.000136266000000,0.000022701000000,0.000038686000000,0.000116118000000,0.000165896000000,0.000170637000000,0.000169056000000,0.011793344000000,0.000241352000000,0.000055278000000,0.000047377000000,0.000131130000000,0.000131525000000,0.000062997000000,0.000402537000000 +0.000018948000000,0.011895664000000,0.000120858000000,0.000037896000000,0.000015590000000,0.000041057000000,0.000026257000000,0.000047377000000,0.000145747000000,0.000023096000000,0.000038686000000,0.000109007000000,0.000209353000000,0.000170242000000,0.000169847000000,0.011824554000000,0.000277698000000,0.000055674000000,0.000046587000000,0.000085698000000,0.000131921000000,0.000035343000000,0.000448760000000 +0.000018553000000,0.011863664000000,0.000130340000000,0.000074242000000,0.000034158000000,0.000041451000000,0.000026849000000,0.000046983000000,0.000151278000000,0.000023096000000,0.000039476000000,0.000111377000000,0.000161155000000,0.000173402000000,0.000186834000000,0.011399863000000,0.000201056000000,0.000054883000000,0.000045797000000,0.000084908000000,0.000169846000000,0.000028232000000,0.000406488000000 +0.000018750500000,0.011786627000000,0.000151279000000,0.000038291000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000130735000000,0.000022108500000,0.000039476000000,0.000157205000000,0.000161550000000,0.000169846000000,0.000169452000000,0.011450430000000,0.000201056000000,0.000055279000000,0.000046587000000,0.000083327000000,0.000131525000000,0.000028232000000,0.000442044000000 +0.000018750500000,0.011572504000000,0.000130735000000,0.000037896000000,0.000015589500000,0.000042241000000,0.000026454000000,0.000082538000000,0.000064365000000,0.000022503500000,0.000039081000000,0.000118488000000,0.000162341000000,0.000170241000000,0.000168661000000,0.011868405000000,0.000203032000000,0.000055279000000,0.000046193000000,0.000084118000000,0.000129945000000,0.000028232000000,0.000418340000000 +0.000018948000000,0.013461688000000,0.000120464000000,0.000040662000000,0.000015392500000,0.000043821000000,0.000027046500000,0.000046982000000,0.000061600000000,0.000022503500000,0.000039081000000,0.000109402000000,0.000165896000000,0.000169846000000,0.000171427000000,0.011800454000000,0.000201846000000,0.000054883000000,0.000046587000000,0.000084908000000,0.000131526000000,0.000028232000000,0.000450735000000 +0.000017763000000,0.012368948000000,0.000128365000000,0.000039477000000,0.000016380000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000046982000000,0.000022503500000,0.000039081000000,0.000103872000000,0.000254389000000,0.000169846000000,0.000206192000000,0.011483615000000,0.000200662000000,0.000054884000000,0.000046588000000,0.000083723000000,0.000132710000000,0.000028232000000,0.000410044000000 +0.000018948000000,0.011812306000000,0.000129551000000,0.000037896000000,0.000016380000000,0.000043427000000,0.000026256500000,0.000046983000000,0.000046588000000,0.000022108500000,0.000039476000000,0.000116118000000,0.000161550000000,0.000348415000000,0.000170637000000,0.011542480000000,0.000202637000000,0.000055278000000,0.000046982000000,0.000087674000000,0.000191179000000,0.000028232000000,0.000445994000000 +0.000018750000000,0.011709590000000,0.000112957000000,0.000037501000000,0.000016577500000,0.000043822000000,0.000027046500000,0.000046983000000,0.000047377000000,0.000023096000000,0.000094785000000,0.000116118000000,0.000161155000000,0.000289155000000,0.000169451000000,0.011620307000000,0.000234637000000,0.000054489000000,0.000045797000000,0.000083723000000,0.000131525000000,0.000028232000000,0.000411624000000 +0.000017763000000,0.011503763000000,0.000165895000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000026849000000,0.000046192000000,0.000084513000000,0.000023096000000,0.000114933000000,0.000138636000000,0.000161550000000,0.000170242000000,0.000169056000000,0.011837985000000,0.000201452000000,0.000055673000000,0.000045402000000,0.000112562000000,0.000133105000000,0.000028232000000,0.000444414000000 +0.000017762500000,0.011675615000000,0.000117303000000,0.000037500000000,0.000016380000000,0.000041451000000,0.000026257000000,0.000046587000000,0.000045797000000,0.000022503500000,0.000108216000000,0.000116118000000,0.000199081000000,0.000173007000000,0.000338538000000,0.011361146000000,0.000201056000000,0.000054884000000,0.000046982000000,0.000083723000000,0.000131921000000,0.000028232000000,0.000409648000000 +0.000018948000000,0.011852997000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000046982000000,0.000022701000000,0.000111377000000,0.000115723000000,0.000163131000000,0.000170241000000,0.000182884000000,0.011462677000000,0.000202636000000,0.000054883000000,0.000046983000000,0.000082933000000,0.000180908000000,0.000028231500000,0.000445994000000 +0.000017763000000,0.011468998000000,0.000120859000000,0.000037896000000,0.000016182500000,0.000041451000000,0.000061614500000,0.000046983000000,0.000048168000000,0.000022503500000,0.000111377000000,0.000116118000000,0.000161945000000,0.000174192000000,0.000227130000000,0.011430677000000,0.000203031000000,0.000055279000000,0.000045402000000,0.000084118000000,0.000131921000000,0.000028232000000,0.000407278000000 +0.000017960000000,0.011415665000000,0.000128365000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000046982000000,0.000023096000000,0.000073451000000,0.000107032000000,0.000161550000000,0.000171822000000,0.000184464000000,0.011486776000000,0.000193155000000,0.000054883000000,0.000045007000000,0.000082933000000,0.000131525000000,0.000028232000000,0.000447574000000 +0.000017763000000,0.011611220000000,0.000132711000000,0.000037501000000,0.000015590000000,0.000061600000000,0.000026454500000,0.000047377000000,0.000045798000000,0.000021911000000,0.000041057000000,0.000114933000000,0.000163131000000,0.000169451000000,0.000170241000000,0.011475714000000,0.000201057000000,0.000055674000000,0.000046983000000,0.000083328000000,0.000129155000000,0.000037515500000,0.000405699000000 +0.000019145500000,0.011596208000000,0.000164316000000,0.000040662000000,0.000015392000000,0.000075032000000,0.000026454000000,0.000046193000000,0.000045797000000,0.000040084000000,0.000055278000000,0.000115327000000,0.000233846000000,0.000170241000000,0.000200661000000,0.011301492000000,0.000202637000000,0.000055279000000,0.000100315000000,0.000083723000000,0.000127970000000,0.000036528500000,0.000496562000000 +0.000017762500000,0.011687862000000,0.000129550000000,0.000040661000000,0.000016380000000,0.000041451000000,0.000026651500000,0.000046982000000,0.000046587000000,0.000022108000000,0.000041846000000,0.000133896000000,0.000161550000000,0.000172612000000,0.000170242000000,0.011523912000000,0.000286390000000,0.000055674000000,0.000046192000000,0.000085303000000,0.000201452000000,0.000028231500000,0.000408068000000 +0.000017960500000,0.011303467000000,0.000130340000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000047377000000,0.000048563000000,0.000022504000000,0.000058834000000,0.000110587000000,0.000166291000000,0.000169846000000,0.000167476000000,0.011747122000000,0.000201452000000,0.000055279000000,0.000046587000000,0.000119674000000,0.000132315000000,0.000028232000000,0.000444809000000 +0.000028429000000,0.012238182000000,0.000120859000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000026652000000,0.000046982000000,0.000047377000000,0.000022305500000,0.000039081000000,0.000102686000000,0.000165896000000,0.000172217000000,0.000171427000000,0.011450430000000,0.000201056000000,0.000055278000000,0.000045798000000,0.000083328000000,0.000130736000000,0.000028232000000,0.000407278000000 +0.000054701000000,0.014223366000000,0.000129155000000,0.000040267000000,0.000015590000000,0.000042242000000,0.000026256500000,0.000046983000000,0.000046983000000,0.000022305500000,0.000039081000000,0.000114142000000,0.000161550000000,0.000170636000000,0.000206192000000,0.011760158000000,0.000202636000000,0.000055279000000,0.000046587000000,0.000084909000000,0.000130735000000,0.000028232000000,0.000569254000000 +0.000046997000000,0.012276504000000,0.000129550000000,0.000037501000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000023688500000,0.000039871000000,0.000103081000000,0.000202242000000,0.000173402000000,0.000168266000000,0.012089639000000,0.000203031000000,0.000055278000000,0.000046983000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000407673000000 +0.000051738000000,0.013194626000000,0.000202636000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000047377000000,0.000046192000000,0.000022503500000,0.000039081000000,0.000116513000000,0.000162340000000,0.000169847000000,0.000169451000000,0.011813097000000,0.000201846000000,0.000055279000000,0.000046982000000,0.000083723000000,0.000338933000000,0.000028232000000,0.000432167000000 +0.000050948000000,0.012385541000000,0.000172216000000,0.000056859000000,0.000015589500000,0.000041452000000,0.000026849000000,0.000082538000000,0.000047377000000,0.000022108500000,0.000039872000000,0.000178538000000,0.000163131000000,0.000170241000000,0.000169452000000,0.011467418000000,0.000199081000000,0.000055673000000,0.000045797000000,0.000082933000000,0.000147723000000,0.000028034500000,0.000412809000000 +0.000052528000000,0.012340108000000,0.000113353000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046982000000,0.000046192000000,0.000022898500000,0.000039476000000,0.000160760000000,0.000162735000000,0.000170241000000,0.000169847000000,0.011583171000000,0.000202636000000,0.000055279000000,0.000046587000000,0.000083328000000,0.000131131000000,0.000028231500000,0.000474043000000 +0.000028824500000,0.012273738000000,0.000113352000000,0.000038291000000,0.000015985000000,0.000042636000000,0.000026454500000,0.000046193000000,0.000048168000000,0.000022306000000,0.000039081000000,0.000130340000000,0.000161550000000,0.000173007000000,0.000208167000000,0.011526282000000,0.000250834000000,0.000055674000000,0.000046192000000,0.000085304000000,0.000154044000000,0.000028232000000,0.000442439000000 +0.000026257000000,0.011673244000000,0.000116513000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000047772000000,0.000047772000000,0.000022503500000,0.000039476000000,0.000101895000000,0.000252810000000,0.000170242000000,0.000169452000000,0.011677196000000,0.000199476000000,0.000055673000000,0.000045402000000,0.000082933000000,0.000127575000000,0.000028232000000,0.000413994000000 +0.000019343000000,0.011866430000000,0.000127969000000,0.000040661000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000048167000000,0.000022898500000,0.000039872000000,0.000115723000000,0.000162340000000,0.000170637000000,0.000170637000000,0.011366282000000,0.000193155000000,0.000055674000000,0.000045402000000,0.000086094000000,0.000132315000000,0.000028231500000,0.000489846000000 +0.000019738000000,0.011361937000000,0.000192364000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000036330500000,0.000046587000000,0.000082933000000,0.000023096000000,0.000039081000000,0.000116513000000,0.000162341000000,0.000173402000000,0.000169452000000,0.011642035000000,0.000201847000000,0.000055278000000,0.000046587000000,0.000085698000000,0.000132711000000,0.000028232000000,0.000406883000000 +0.000025466500000,0.011708010000000,0.000128365000000,0.000040267000000,0.000049762500000,0.000041846000000,0.000026651500000,0.000046588000000,0.000045797000000,0.000022898500000,0.000038686000000,0.000152859000000,0.000166290000000,0.000170636000000,0.000170636000000,0.011378529000000,0.000203032000000,0.000056069000000,0.000046193000000,0.000084118000000,0.000133895000000,0.000028034500000,0.000449550000000 +0.000018750500000,0.011642035000000,0.000128365000000,0.000038686000000,0.000016577500000,0.000041452000000,0.000026849500000,0.000046982000000,0.000046983000000,0.000022503500000,0.000038686000000,0.000107031000000,0.000165501000000,0.000178142000000,0.000186834000000,0.012232652000000,0.000201452000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000129945000000,0.000028231500000,0.000412809000000 +0.000017762500000,0.011870775000000,0.000121254000000,0.000037896000000,0.000016380500000,0.000041451000000,0.000027046500000,0.000046587000000,0.000046587000000,0.000022503500000,0.000039081000000,0.000104266000000,0.000197501000000,0.000169846000000,0.000169056000000,0.012172603000000,0.000201056000000,0.000054883000000,0.000045797000000,0.000085699000000,0.000132711000000,0.000064973000000,0.000493797000000 +0.000038306000000,0.011603319000000,0.000126390000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000027047000000,0.000046982000000,0.000048563000000,0.000022898500000,0.000039476000000,0.000102291000000,0.000161550000000,0.000172217000000,0.000169847000000,0.011493491000000,0.000202636000000,0.000054884000000,0.000046587000000,0.000082933000000,0.000130341000000,0.000046405000000,0.000405698000000 +0.000018355500000,0.011351270000000,0.000131130000000,0.000042636000000,0.000016775000000,0.000042242000000,0.000026256500000,0.000046588000000,0.000047377000000,0.000022503500000,0.000039476000000,0.000116908000000,0.000162736000000,0.000172612000000,0.000170241000000,0.011588307000000,0.000237797000000,0.000055278000000,0.000116118000000,0.000085303000000,0.000130735000000,0.000030009500000,0.000443624000000 +0.000018552500000,0.011635713000000,0.000147328000000,0.000040662000000,0.000016775500000,0.000075032000000,0.000026454000000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039081000000,0.000098736000000,0.000165896000000,0.000172216000000,0.000205797000000,0.011831664000000,0.000201846000000,0.000055279000000,0.000046192000000,0.000085303000000,0.000171427000000,0.000035343000000,0.000406093000000 +0.000018750500000,0.012047763000000,0.000129945000000,0.000050538000000,0.000016578000000,0.000056859000000,0.000026651500000,0.000046982000000,0.000081353000000,0.000049565500000,0.000039872000000,0.000117698000000,0.000180118000000,0.000170636000000,0.000169846000000,0.011398282000000,0.000200662000000,0.000055278000000,0.000046192000000,0.000122044000000,0.000132315000000,0.000028232000000,0.000490241000000 +0.000017763000000,0.011671664000000,0.000114933000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000026454500000,0.000046983000000,0.000078982000000,0.000065960500000,0.000039476000000,0.000154044000000,0.000481945000000,0.000202241000000,0.000171032000000,0.011551171000000,0.000203032000000,0.000054884000000,0.000045797000000,0.000085303000000,0.000131921000000,0.000028232000000,0.000412414000000 +0.000018552500000,0.011825739000000,0.000129945000000,0.000037501000000,0.000015787500000,0.000042242000000,0.000026454000000,0.000046982000000,0.000046983000000,0.000058849500000,0.000039476000000,0.000102686000000,0.000214488000000,0.000169846000000,0.000171031000000,0.011984948000000,0.000203032000000,0.000055278000000,0.000046983000000,0.000083723000000,0.000133501000000,0.000028231500000,0.000452316000000 +0.000018750500000,0.011933590000000,0.000112958000000,0.000040266000000,0.000016577500000,0.000042637000000,0.000026849000000,0.000047377000000,0.000045797000000,0.000065762500000,0.000058439000000,0.000110193000000,0.000198686000000,0.000173007000000,0.000169847000000,0.012186825000000,0.000201451000000,0.000054884000000,0.000046982000000,0.000084908000000,0.000132710000000,0.000028034500000,0.000410044000000 +0.000017763000000,0.012073837000000,0.000166686000000,0.000040266000000,0.000016380000000,0.000041451000000,0.000027047000000,0.000047377000000,0.000047377000000,0.000064972500000,0.000038686000000,0.000114537000000,0.000176562000000,0.000170636000000,0.000241748000000,0.011877096000000,0.000201056000000,0.000055279000000,0.000046193000000,0.000084909000000,0.000169846000000,0.000028232000000,0.000496958000000 +0.000018157500000,0.011480060000000,0.000114537000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000046588000000,0.000046587000000,0.000049367500000,0.000039081000000,0.000115723000000,0.000162340000000,0.000172217000000,0.000169846000000,0.011563418000000,0.000201056000000,0.000055278000000,0.000046587000000,0.000084909000000,0.000132316000000,0.000028231500000,0.000407278000000 +0.000017960500000,0.011819023000000,0.000127574000000,0.000057649000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000087278000000,0.000048562000000,0.000047589500000,0.000039476000000,0.000115723000000,0.000164710000000,0.000172217000000,0.000169452000000,0.011664158000000,0.000239377000000,0.000056464000000,0.000047378000000,0.000088069000000,0.000131526000000,0.000028232000000,0.000450735000000 +0.000017762500000,0.011655467000000,0.000129945000000,0.000037501000000,0.000016972500000,0.000043031000000,0.000026652000000,0.000046982000000,0.000048167000000,0.000024084000000,0.000039476000000,0.000102686000000,0.000161946000000,0.000171031000000,0.000169846000000,0.011836801000000,0.000201451000000,0.000056069000000,0.000046982000000,0.000085303000000,0.000135871000000,0.000028232000000,0.000416759000000 +0.000018948000000,0.011928454000000,0.000128760000000,0.000037896000000,0.000016577500000,0.000042242000000,0.000026651500000,0.000046588000000,0.000047377000000,0.000045022000000,0.000039871000000,0.000115327000000,0.000199081000000,0.000171032000000,0.000168266000000,0.011878282000000,0.000197106000000,0.000055278000000,0.000046193000000,0.000083328000000,0.000131130000000,0.000028232000000,0.000867129000000 +0.000017763000000,0.011421590000000,0.000112958000000,0.000037106000000,0.000015590000000,0.000041452000000,0.000036133000000,0.000046982000000,0.000107426000000,0.000030800000000,0.000039872000000,0.000115723000000,0.000160760000000,0.000171427000000,0.000212118000000,0.011500603000000,0.000202636000000,0.000055674000000,0.000046982000000,0.000162341000000,0.000145747000000,0.000037713500000,0.000453500000000 +0.000017762500000,0.011644800000000,0.000120859000000,0.000037501000000,0.000015787500000,0.000042241000000,0.000026256500000,0.000046587000000,0.000063970000000,0.000022701000000,0.000039476000000,0.000116513000000,0.000162341000000,0.000170242000000,0.000169847000000,0.011363121000000,0.000203032000000,0.000055278000000,0.000046192000000,0.000097156000000,0.000132315000000,0.000036330500000,0.000409253000000 +0.000018158000000,0.011683121000000,0.000156810000000,0.000037896000000,0.000015590000000,0.000042241000000,0.000027047000000,0.000046982000000,0.000046587000000,0.000022503500000,0.000038686000000,0.000114933000000,0.000165896000000,0.000169452000000,0.000168266000000,0.011591467000000,0.000201846000000,0.000055279000000,0.000045402000000,0.000085303000000,0.000127969000000,0.000028232000000,0.000447179000000 +0.000018750500000,0.011800849000000,0.000128365000000,0.000037501000000,0.000015590000000,0.000062390000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000022306000000,0.000039477000000,0.000098735000000,0.000162340000000,0.000171427000000,0.000170242000000,0.011854578000000,0.000201056000000,0.000055279000000,0.000046982000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000403327000000 +0.000018750000000,0.011891318000000,0.000113748000000,0.000040267000000,0.000016380500000,0.000057649000000,0.000026454000000,0.000046587000000,0.000046587000000,0.000022701000000,0.000039476000000,0.000117303000000,0.000199081000000,0.000173402000000,0.000201846000000,0.011307023000000,0.000202242000000,0.000055278000000,0.000046193000000,0.000082538000000,0.000145748000000,0.000028232000000,0.000446389000000 +0.000017960500000,0.011553146000000,0.000127970000000,0.000040267000000,0.000015392000000,0.000056859000000,0.000026454000000,0.000047377000000,0.000048167000000,0.000022503500000,0.000039476000000,0.000147328000000,0.000162340000000,0.000172217000000,0.000169451000000,0.011542874000000,0.000238588000000,0.000055279000000,0.000046982000000,0.000083723000000,0.000130735000000,0.000028231500000,0.000457056000000 +0.000018750500000,0.011668504000000,0.000127970000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000026256500000,0.000047378000000,0.000046192000000,0.000021911000000,0.000039476000000,0.000115723000000,0.000161155000000,0.000168661000000,0.000168661000000,0.011955713000000,0.000242933000000,0.000054883000000,0.000101106000000,0.000083723000000,0.000127180000000,0.000028232000000,0.000412809000000 +0.000018552500000,0.011956899000000,0.000164316000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000026454000000,0.000046982000000,0.000045797000000,0.000022306000000,0.000039871000000,0.000118884000000,0.000162340000000,0.000172216000000,0.000169847000000,0.011427911000000,0.000198290000000,0.000055279000000,0.000046587000000,0.000085304000000,0.000196315000000,0.000028232000000,0.000407278000000 +0.000018750500000,0.012149689000000,0.000126390000000,0.000040661000000,0.000016577500000,0.000060020000000,0.000026652000000,0.000046982000000,0.000046982000000,0.000022701000000,0.000038686000000,0.000098340000000,0.000161550000000,0.000169846000000,0.000171427000000,0.013082824000000,0.000202636000000,0.000054488000000,0.000045402000000,0.000121254000000,0.000133106000000,0.000028231500000,0.000410834000000 +0.000018158000000,0.011382875000000,0.000128760000000,0.000037896000000,0.000050948000000,0.000045007000000,0.000026849000000,0.000046587000000,0.000045798000000,0.000022108500000,0.000038686000000,0.000099921000000,0.000242933000000,0.000208562000000,0.000240562000000,0.012029986000000,0.000202241000000,0.000055674000000,0.000046587000000,0.000085698000000,0.000168661000000,0.000028232000000,0.000442834000000 +0.000037120500000,0.012392651000000,0.000120464000000,0.000037896000000,0.000016577500000,0.000056068000000,0.000025861500000,0.000046192000000,0.000045797000000,0.000022306000000,0.000039871000000,0.000102686000000,0.000161551000000,0.000170636000000,0.000169451000000,0.012099121000000,0.000199476000000,0.000055278000000,0.000046587000000,0.000083328000000,0.000132711000000,0.000028034500000,0.000411229000000 +0.000018750500000,0.011600158000000,0.000120463000000,0.000040266000000,0.000022898500000,0.000041847000000,0.000027046500000,0.000046983000000,0.000046982000000,0.000023096000000,0.000039476000000,0.000116513000000,0.000163130000000,0.000171426000000,0.000167476000000,0.011902380000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000084514000000,0.000131130000000,0.000028232000000,0.000444019000000 +0.000017763000000,0.011622282000000,0.000125600000000,0.000039477000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046982000000,0.000046588000000,0.000022701000000,0.000039081000000,0.000139032000000,0.000162340000000,0.000170241000000,0.000169451000000,0.011256455000000,0.000203031000000,0.000055674000000,0.000046192000000,0.000082933000000,0.000133106000000,0.000028232000000,0.000412810000000 +0.000018355000000,0.011361147000000,0.000146538000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027046500000,0.000047377000000,0.000048562000000,0.000022108500000,0.000039081000000,0.000098735000000,0.000161155000000,0.000171031000000,0.000167871000000,0.011431862000000,0.000493401000000,0.000054883000000,0.000047378000000,0.000084118000000,0.000130341000000,0.000028232000000,0.000443229000000 +0.000017763000000,0.011150578000000,0.000282438000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000026454500000,0.000046983000000,0.000046587000000,0.000022701000000,0.000080562000000,0.000098340000000,0.000182488000000,0.000169056000000,0.000206587000000,0.011829294000000,0.000289155000000,0.000055279000000,0.000045402000000,0.000088464000000,0.000132316000000,0.000028232000000,0.000410834000000 +0.000017762500000,0.011508109000000,0.000151279000000,0.000040267000000,0.000016775500000,0.000043032000000,0.000026849000000,0.000082932000000,0.000046587000000,0.000022898500000,0.000053699000000,0.000116118000000,0.000161945000000,0.000173401000000,0.000168661000000,0.011576455000000,0.000203031000000,0.000055673000000,0.000046587000000,0.000086488000000,0.000131130000000,0.000028034000000,0.000441254000000 +0.000018750500000,0.011180603000000,0.000120858000000,0.000037501000000,0.000016380000000,0.000043427000000,0.000026256500000,0.000046983000000,0.000048563000000,0.000022503500000,0.000039081000000,0.000116513000000,0.000161945000000,0.000169846000000,0.000169056000000,0.011441343000000,0.000202241000000,0.000055279000000,0.000046982000000,0.000082537000000,0.000127970000000,0.000063787500000,0.000404908000000 +0.000018948000000,0.011231171000000,0.000128365000000,0.000086883000000,0.000015589500000,0.000041451000000,0.000052133500000,0.000047377000000,0.000082143000000,0.000040676500000,0.000039476000000,0.000102686000000,0.000161550000000,0.000169056000000,0.000170637000000,0.011626232000000,0.000201451000000,0.000055674000000,0.000046192000000,0.000119674000000,0.000131921000000,0.000028232000000,0.000472858000000 +0.000017762500000,0.011194430000000,0.000166291000000,0.000037501000000,0.000015590000000,0.000043032000000,0.000026256500000,0.000046982000000,0.000061204000000,0.000022503500000,0.000039871000000,0.000116909000000,0.000162735000000,0.000174193000000,0.000188414000000,0.011768059000000,0.000199872000000,0.000054488000000,0.000046588000000,0.000088464000000,0.000130340000000,0.000028231500000,0.000411624000000 +0.000018948000000,0.011531812000000,0.000129550000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000047378000000,0.000048562000000,0.000022306000000,0.000040267000000,0.000188019000000,0.000163525000000,0.000171822000000,0.000253994000000,0.011671665000000,0.000202636000000,0.000056859000000,0.000046192000000,0.000084118000000,0.000133105000000,0.000028232000000,0.000447179000000 +0.000017763000000,0.011153344000000,0.000126389000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000049353000000,0.000022108000000,0.000039081000000,0.000103081000000,0.000161945000000,0.000169057000000,0.000169056000000,0.011427122000000,0.000202637000000,0.000056068000000,0.000046983000000,0.000082933000000,0.000133501000000,0.000028232000000,0.000410834000000 +0.000018157500000,0.010981887000000,0.000114537000000,0.000039871000000,0.000016380000000,0.000042636000000,0.000026257000000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000114933000000,0.000165895000000,0.000169451000000,0.000168267000000,0.011969936000000,0.000199871000000,0.000074242000000,0.000045797000000,0.000085303000000,0.000132711000000,0.000028231500000,0.000452711000000 +0.000018948000000,0.011331912000000,0.000129155000000,0.000037501000000,0.000016577500000,0.000042637000000,0.000026454000000,0.000047378000000,0.000048168000000,0.000021911000000,0.000039081000000,0.000118093000000,0.000162736000000,0.000172612000000,0.000169057000000,0.011796899000000,0.000201451000000,0.000058834000000,0.000045402000000,0.000089254000000,0.000131921000000,0.000028232000000,0.000404513000000 +0.000017763000000,0.011577640000000,0.000121254000000,0.000037896000000,0.000015590000000,0.000041847000000,0.000026849000000,0.000046587000000,0.000046587000000,0.000022503500000,0.000039476000000,0.000115328000000,0.000161155000000,0.000170637000000,0.000205797000000,0.011452405000000,0.000201451000000,0.000070291000000,0.000082143000000,0.000107032000000,0.000212118000000,0.000028232000000,0.000449550000000 +0.000017762500000,0.011027320000000,0.000206192000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000026256500000,0.000046982000000,0.000047378000000,0.000022503500000,0.000039871000000,0.000115723000000,0.000161945000000,0.000168661000000,0.000169057000000,0.012878182000000,0.000201451000000,0.000054884000000,0.000046193000000,0.000103081000000,0.000137847000000,0.000028232000000,0.000408068000000 +0.000018158000000,0.012356701000000,0.000131525000000,0.000037501000000,0.000015589500000,0.000042637000000,0.000026652000000,0.000046982000000,0.000048167000000,0.000022898500000,0.000039476000000,0.000153648000000,0.000161945000000,0.000173007000000,0.000168661000000,0.011804405000000,0.000201057000000,0.000055278000000,0.000045797000000,0.000119673000000,0.000130735000000,0.000028231500000,0.000449549000000 +0.000018158000000,0.011678380000000,0.000120858000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026454000000,0.000046983000000,0.000045797000000,0.000022503500000,0.000039476000000,0.000101896000000,0.000165896000000,0.000169452000000,0.000169451000000,0.012185244000000,0.000197896000000,0.000054884000000,0.000046587000000,0.000085303000000,0.000131920000000,0.000028232000000,0.000419525000000 +0.000018355500000,0.011598578000000,0.000129945000000,0.000041451000000,0.000016380000000,0.000041451000000,0.000027244500000,0.000046982000000,0.000045797000000,0.000022701000000,0.000039081000000,0.000116513000000,0.000162340000000,0.000172612000000,0.000167476000000,0.011362331000000,0.000203032000000,0.000055278000000,0.000046193000000,0.000084513000000,0.000129945000000,0.000028232000000,0.000445204000000 +0.000018158000000,0.011177838000000,0.000114538000000,0.000038291000000,0.000015590000000,0.000078192000000,0.000026849000000,0.000046587000000,0.000046192000000,0.000022899000000,0.000038686000000,0.000116513000000,0.000181698000000,0.000169847000000,0.000241353000000,0.011060900000000,0.000202242000000,0.000055279000000,0.000045007000000,0.000084908000000,0.000129550000000,0.000028034000000,0.000412414000000 +0.000018948000000,0.011274628000000,0.000131921000000,0.000037500000000,0.000015590000000,0.000043426000000,0.000027046500000,0.000046982000000,0.000048563000000,0.000022503500000,0.000039871000000,0.000099526000000,0.000161550000000,0.000169847000000,0.000198291000000,0.012059615000000,0.000200662000000,0.000056069000000,0.000046982000000,0.000088464000000,0.000129945000000,0.000028232000000,0.000448365000000 +0.000017762500000,0.010963715000000,0.000180118000000,0.000037501000000,0.000015392500000,0.000043821000000,0.000026652000000,0.000046588000000,0.000048563000000,0.000021910500000,0.000039476000000,0.000116118000000,0.000161155000000,0.000168266000000,0.000226340000000,0.011817047000000,0.000201451000000,0.000055674000000,0.000045798000000,0.000084513000000,0.000134291000000,0.000028232000000,0.000411229000000 +0.000017763000000,0.011686282000000,0.000126390000000,0.000037500000000,0.000015589500000,0.000042242000000,0.000026651500000,0.000046982000000,0.000048562000000,0.000023096500000,0.000038686000000,0.000115723000000,0.000162340000000,0.000171822000000,0.000188414000000,0.012061985000000,0.000200661000000,0.000055279000000,0.000046192000000,0.000082538000000,0.000132316000000,0.000046404500000,0.000513945000000 +0.000017762500000,0.011084998000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000041057000000,0.000044034500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039476000000,0.000166291000000,0.000163131000000,0.000192760000000,0.000188415000000,0.011406183000000,0.000203031000000,0.000055673000000,0.000046983000000,0.000084908000000,0.000170241000000,0.000028232000000,0.000419525000000 +0.000035935500000,0.011190480000000,0.000112958000000,0.000037500000000,0.000026059000000,0.000042241000000,0.000026256500000,0.000066341000000,0.000046587000000,0.000022701000000,0.000074637000000,0.000118883000000,0.000197895000000,0.000202636000000,0.000183674000000,0.011171122000000,0.000200661000000,0.000054884000000,0.000046587000000,0.000084514000000,0.000136267000000,0.000028232000000,0.000443624000000 +0.000026454000000,0.011118184000000,0.000128760000000,0.000037106000000,0.000052725500000,0.000042637000000,0.000026454000000,0.000063179000000,0.000048168000000,0.000022503500000,0.000054094000000,0.000116909000000,0.000161945000000,0.000189600000000,0.000169451000000,0.011337838000000,0.000201451000000,0.000055278000000,0.000046192000000,0.000226736000000,0.000133500000000,0.000028232000000,0.000406093000000 +0.000018355500000,0.011265541000000,0.000128365000000,0.000037500000000,0.000043244500000,0.000041452000000,0.000026454500000,0.000046588000000,0.000065155000000,0.000022701000000,0.000039477000000,0.000117303000000,0.000163130000000,0.000228710000000,0.000202241000000,0.011174283000000,0.000201452000000,0.000055279000000,0.000046982000000,0.000136266000000,0.000130735000000,0.000028232000000,0.000447970000000 +0.000018750500000,0.011291615000000,0.000193945000000,0.000059229000000,0.000024676000000,0.000042636000000,0.000026256500000,0.000046982000000,0.000048168000000,0.000040676000000,0.000039081000000,0.000118094000000,0.000161945000000,0.000214884000000,0.000168266000000,0.011100011000000,0.000255180000000,0.000055674000000,0.000046587000000,0.000120069000000,0.000131525000000,0.000028232000000,0.000408464000000 +0.000018158000000,0.011499417000000,0.000128760000000,0.000040266000000,0.000034158000000,0.000041451000000,0.000026454000000,0.000046982000000,0.000048562000000,0.000023491500000,0.000039081000000,0.000102686000000,0.000161945000000,0.000179722000000,0.000168662000000,0.011285690000000,0.000201056000000,0.000055278000000,0.000045797000000,0.000084908000000,0.000168266000000,0.000028231500000,0.000589007000000 +0.000018157500000,0.011226825000000,0.000113352000000,0.000037501000000,0.000017367500000,0.000042637000000,0.000026651500000,0.000046982000000,0.000046192000000,0.000022108500000,0.000039081000000,0.000152463000000,0.000208562000000,0.000170242000000,0.000170241000000,0.011306233000000,0.000201452000000,0.000056069000000,0.000046982000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000409649000000 +0.000018750500000,0.011246183000000,0.000128760000000,0.000040661000000,0.000017565500000,0.000041846000000,0.000026454500000,0.000046983000000,0.000046192000000,0.000022701500000,0.000039081000000,0.000116909000000,0.000165896000000,0.000169847000000,0.000168661000000,0.011076702000000,0.000201056000000,0.000055278000000,0.000045797000000,0.000084908000000,0.000139822000000,0.000028232000000,0.000406883000000 +0.000017762500000,0.010932504000000,0.000128365000000,0.000040266000000,0.000022306000000,0.000041452000000,0.000026256500000,0.000047772000000,0.000046982000000,0.000022898500000,0.000039081000000,0.000115723000000,0.000161155000000,0.000171427000000,0.000205402000000,0.011353245000000,0.000219229000000,0.000055279000000,0.000046587000000,0.000084908000000,0.000130340000000,0.000028231500000,0.000406884000000 +0.000017763000000,0.013494082000000,0.000147723000000,0.000037501000000,0.000016775000000,0.000042636000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000022503500000,0.000039872000000,0.000117303000000,0.000165896000000,0.000169846000000,0.000169847000000,0.011629788000000,0.000201056000000,0.000055674000000,0.000082143000000,0.000087279000000,0.000139822000000,0.000028034500000,0.000427031000000 +0.000018157500000,0.011953738000000,0.000130735000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046983000000,0.000046192000000,0.000022898500000,0.000039081000000,0.000117303000000,0.000162340000000,0.000170241000000,0.000168266000000,0.011238677000000,0.000201451000000,0.000055279000000,0.000045402000000,0.000088069000000,0.000150489000000,0.000028232000000,0.000476019000000 +0.000017763000000,0.011314134000000,0.000129550000000,0.000040266000000,0.000015589500000,0.000041452000000,0.000027046500000,0.000046982000000,0.000047378000000,0.000022306000000,0.000040266000000,0.000116118000000,0.000199871000000,0.000174193000000,0.000168661000000,0.011152159000000,0.000202241000000,0.000055279000000,0.000047773000000,0.000082538000000,0.000135476000000,0.000028232000000,0.000408463000000 +0.000018750500000,0.011247763000000,0.000113353000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000046192000000,0.000047772000000,0.000022503500000,0.000039081000000,0.000114933000000,0.000205797000000,0.000172217000000,0.000168266000000,0.010842430000000,0.000199081000000,0.000055278000000,0.000046192000000,0.000084908000000,0.000133106000000,0.000028232000000,0.000492612000000 +0.000017762500000,0.011033245000000,0.000133896000000,0.000037500000000,0.000015590000000,0.000042242000000,0.000026454000000,0.000046587000000,0.000047378000000,0.000022898500000,0.000039082000000,0.000135081000000,0.000174982000000,0.000171822000000,0.000241352000000,0.011435023000000,0.000200266000000,0.000054884000000,0.000046588000000,0.000083328000000,0.000129550000000,0.000028034500000,0.000413205000000 +0.000019145500000,0.012824058000000,0.000120859000000,0.000037896000000,0.000015392500000,0.000042637000000,0.000026849000000,0.000046983000000,0.000046192000000,0.000022108500000,0.000039476000000,0.000116513000000,0.000165896000000,0.000171032000000,0.000169452000000,0.011278183000000,0.000199081000000,0.000056068000000,0.000046982000000,0.000085698000000,0.000130340000000,0.000038108500000,0.000440858000000 +0.000018158000000,0.012017738000000,0.000149303000000,0.000040661000000,0.000015590000000,0.000061204000000,0.000026454000000,0.000046587000000,0.000048958000000,0.000022701000000,0.000040266000000,0.000168662000000,0.000161945000000,0.000170637000000,0.000169056000000,0.010925393000000,0.000201057000000,0.000090835000000,0.000046193000000,0.000082142000000,0.000130340000000,0.000044824500000,0.000409253000000 +0.000017762500000,0.011586727000000,0.000128365000000,0.000037500000000,0.000015392500000,0.000074242000000,0.000044232000000,0.000046587000000,0.000045797000000,0.000022898500000,0.000039081000000,0.000116118000000,0.000180118000000,0.000169846000000,0.000169452000000,0.011251714000000,0.000202637000000,0.000055673000000,0.000047377000000,0.000121648000000,0.000129155000000,0.000028232000000,0.000451525000000 +0.000018158000000,0.011417245000000,0.000128365000000,0.000040266000000,0.000016380000000,0.000055279000000,0.000026849500000,0.000046982000000,0.000046587000000,0.000023096000000,0.000039476000000,0.000099525000000,0.000165896000000,0.000169057000000,0.000204612000000,0.011199961000000,0.000200662000000,0.000055674000000,0.000046193000000,0.000083328000000,0.000131130000000,0.000028232000000,0.000412414000000 +0.000018750500000,0.011260801000000,0.000120859000000,0.000037501000000,0.000015787500000,0.000042241000000,0.000027046500000,0.000046983000000,0.000046193000000,0.000022898500000,0.000039476000000,0.000115328000000,0.000165501000000,0.000208563000000,0.000182884000000,0.011285689000000,0.000201846000000,0.000054883000000,0.000046192000000,0.000088069000000,0.000132711000000,0.000028231500000,0.000447179000000 +0.000017763000000,0.011836800000000,0.000120859000000,0.000038291000000,0.000016380000000,0.000041451000000,0.000026256500000,0.000046587000000,0.000047377000000,0.000021911000000,0.000039081000000,0.000189600000000,0.000164711000000,0.000171822000000,0.000170241000000,0.011277789000000,0.000201056000000,0.000055674000000,0.000046587000000,0.000084908000000,0.000171427000000,0.000028232000000,0.000405303000000 +0.000018948000000,0.011025739000000,0.000125994000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000026849500000,0.000063575000000,0.000066736000000,0.000022898500000,0.000072662000000,0.000116513000000,0.000161155000000,0.000208168000000,0.000167871000000,0.010870480000000,0.000203031000000,0.000056069000000,0.000046192000000,0.000088464000000,0.000131525000000,0.000028232000000,0.000477599000000 +0.000018553000000,0.011047467000000,0.000147723000000,0.000039872000000,0.000033565000000,0.000042636000000,0.000026454000000,0.000046982000000,0.000097550000000,0.000022701500000,0.000055279000000,0.000102686000000,0.000162736000000,0.000201451000000,0.000169056000000,0.011093689000000,0.000198686000000,0.000055279000000,0.000046982000000,0.000084118000000,0.000132316000000,0.000028232000000,0.000411229000000 +0.000018355000000,0.011005196000000,0.000135476000000,0.000037896000000,0.000015590000000,0.000043821000000,0.000026059000000,0.000046982000000,0.000061995000000,0.000022503500000,0.000039476000000,0.000102291000000,0.000165896000000,0.000288760000000,0.000263476000000,0.011618726000000,0.000201846000000,0.000054884000000,0.000046983000000,0.000082933000000,0.000133105000000,0.000028232000000,0.000445995000000 +0.000035540500000,0.011697344000000,0.000120859000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000046983000000,0.000045797000000,0.000030800000000,0.000038686000000,0.000117698000000,0.000161155000000,0.000188414000000,0.000434143000000,0.010904455000000,0.000195130000000,0.000055278000000,0.000047377000000,0.000082933000000,0.000132710000000,0.000028232000000,0.000412414000000 +0.000017763000000,0.010919468000000,0.000127180000000,0.000073847000000,0.000015590000000,0.000042242000000,0.000027244000000,0.000046982000000,0.000046587000000,0.000022701000000,0.000039476000000,0.000118093000000,0.000165895000000,0.000172216000000,0.000492216000000,0.011212998000000,0.000205007000000,0.000054884000000,0.000046192000000,0.000083723000000,0.000195525000000,0.000028232000000,0.000444414000000 +0.000017762500000,0.011315319000000,0.000121254000000,0.000037896000000,0.000016577500000,0.000042637000000,0.000027047000000,0.000046982000000,0.000047773000000,0.000022306000000,0.000039477000000,0.000116514000000,0.000180514000000,0.000170241000000,0.000388710000000,0.011276208000000,0.000201451000000,0.000055278000000,0.000046192000000,0.000120069000000,0.000137057000000,0.000028429000000,0.000427426000000 +0.000017763000000,0.011310578000000,0.000124809000000,0.000040266000000,0.000016380000000,0.000042636000000,0.000026257000000,0.000046587000000,0.000047377000000,0.000022503500000,0.000039871000000,0.000249649000000,0.000179328000000,0.000173007000000,0.000170637000000,0.011531812000000,0.000237402000000,0.000055674000000,0.000045797000000,0.000083723000000,0.000131920000000,0.000028232000000,0.000459032000000 +0.000017762500000,0.011265936000000,0.000129550000000,0.000040266000000,0.000015590000000,0.000041847000000,0.000026849000000,0.000046588000000,0.000048562000000,0.000022503500000,0.000039476000000,0.000152069000000,0.000161945000000,0.000171822000000,0.000170242000000,0.011081048000000,0.000212513000000,0.000055278000000,0.000122044000000,0.000085699000000,0.000129945000000,0.000028232000000,0.000408069000000 +0.000018750500000,0.011611616000000,0.000128760000000,0.000037896000000,0.000015589500000,0.000042637000000,0.000026651500000,0.000046982000000,0.000048168000000,0.000022503500000,0.000039081000000,0.000118488000000,0.000162340000000,0.000169846000000,0.000171032000000,0.011066826000000,0.000295081000000,0.000055674000000,0.000133106000000,0.000082143000000,0.000194341000000,0.000028231500000,0.000735179000000 +0.000018553000000,0.011369047000000,0.000128365000000,0.000037501000000,0.000015590000000,0.000041846000000,0.000027047000000,0.000046982000000,0.000046587000000,0.000022108500000,0.000057649000000,0.000117699000000,0.000164711000000,0.000170636000000,0.000169056000000,0.011060110000000,0.000201451000000,0.000056069000000,0.000148513000000,0.000084908000000,0.000146933000000,0.000046207500000,0.000443229000000 +0.000018553000000,0.011041541000000,0.000129550000000,0.000037501000000,0.000015590000000,0.000042637000000,0.000027046500000,0.000047377000000,0.000047377000000,0.000022898500000,0.000041847000000,0.000116909000000,0.000197896000000,0.000171427000000,0.000167871000000,0.011182578000000,0.000201452000000,0.000075821000000,0.000082142000000,0.000084908000000,0.000132315000000,0.000028231500000,0.000405303000000 +0.000018158000000,0.011306233000000,0.000120858000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000026849500000,0.000046588000000,0.000047377000000,0.000024084000000,0.000041847000000,0.000186044000000,0.000160760000000,0.000171032000000,0.000243328000000,0.011427912000000,0.000201056000000,0.000055674000000,0.000062785000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000486291000000 +0.000019145500000,0.011395517000000,0.000120859000000,0.000037501000000,0.000015589500000,0.000042241000000,0.000045022000000,0.000046587000000,0.000048563000000,0.000024083500000,0.000052909000000,0.000120068000000,0.000161155000000,0.000169846000000,0.000169847000000,0.011032455000000,0.000201056000000,0.000055279000000,0.000060809000000,0.000084118000000,0.000130736000000,0.000028232000000,0.000417550000000 +0.000019145500000,0.011295566000000,0.000112563000000,0.000037896000000,0.000015392500000,0.000042636000000,0.000026256500000,0.000046587000000,0.000046587000000,0.000023886000000,0.000039081000000,0.000114932000000,0.000162735000000,0.000170637000000,0.000170636000000,0.010979122000000,0.000201451000000,0.000054884000000,0.000046193000000,0.000084118000000,0.000150093000000,0.000028034000000,0.000448364000000 +0.000017762500000,0.011091714000000,0.000164711000000,0.000037501000000,0.000015590000000,0.000078193000000,0.000027046500000,0.000047377000000,0.000046192000000,0.000024281500000,0.000039476000000,0.000098736000000,0.000166291000000,0.000172217000000,0.000170242000000,0.011074331000000,0.000201847000000,0.000054884000000,0.000046192000000,0.000102291000000,0.000130736000000,0.000028232000000,0.000410834000000 +0.000018158000000,0.011255665000000,0.000112958000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000026652000000,0.000046983000000,0.000048563000000,0.000023886000000,0.000039081000000,0.000116118000000,0.000198686000000,0.000168662000000,0.000171031000000,0.011459911000000,0.000201452000000,0.000054884000000,0.000045007000000,0.000085303000000,0.000129550000000,0.000028232000000,0.000490636000000 +0.000018750500000,0.011231961000000,0.000112957000000,0.000039871000000,0.000015392500000,0.000042637000000,0.000026849000000,0.000046982000000,0.000046587000000,0.000023491500000,0.000039081000000,0.000117303000000,0.000161945000000,0.000173006000000,0.000216463000000,0.011135567000000,0.000239772000000,0.000054884000000,0.000046192000000,0.000084513000000,0.000131920000000,0.000028231500000,0.000412414000000 +0.000019145500000,0.011232357000000,0.000128760000000,0.000040266000000,0.000016775000000,0.000042637000000,0.000026849000000,0.000046192000000,0.000066736000000,0.000023886000000,0.000039476000000,0.000137057000000,0.000161946000000,0.000171031000000,0.000169846000000,0.010933690000000,0.000201451000000,0.000054884000000,0.000046982000000,0.000082538000000,0.000255574000000,0.000028232000000,0.000448760000000 +0.000019145000000,0.011132406000000,0.000114932000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000026257000000,0.000082933000000,0.000047773000000,0.000023886000000,0.000058439000000,0.000131921000000,0.000161155000000,0.000170241000000,0.000168266000000,0.011250529000000,0.000201846000000,0.000054488000000,0.000046982000000,0.000084513000000,0.000148513000000,0.000028232000000,0.000409649000000 +0.000018553000000,0.011098035000000,0.000127574000000,0.000040266000000,0.000015392500000,0.000041451000000,0.000027046500000,0.000046982000000,0.000048168000000,0.000024281000000,0.000075426000000,0.000099921000000,0.000162340000000,0.000170241000000,0.000169846000000,0.011226430000000,0.000201057000000,0.000055279000000,0.000081747000000,0.000083328000000,0.000132711000000,0.000028232000000,0.000493797000000 +0.000018553000000,0.011297937000000,0.000159179000000,0.000040661000000,0.000015589500000,0.000041452000000,0.000026651500000,0.000046983000000,0.000048167000000,0.000024479000000,0.000039476000000,0.000118093000000,0.000197896000000,0.000171427000000,0.000169846000000,0.010889442000000,0.000203426000000,0.000055674000000,0.000047377000000,0.000087279000000,0.000133106000000,0.000028232000000,0.000403328000000 +0.000018948000000,0.011073541000000,0.000129945000000,0.000038291000000,0.000016577500000,0.000042636000000,0.000027047000000,0.000046983000000,0.000046192000000,0.000024083500000,0.000040266000000,0.000120069000000,0.000165106000000,0.000169452000000,0.000168266000000,0.011132406000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000086489000000,0.000154044000000,0.000028034500000,0.000443624000000 +0.000018750500000,0.011115418000000,0.000129945000000,0.000037896000000,0.000016380000000,0.000042241000000,0.000026454000000,0.000046587000000,0.000048562000000,0.000023886500000,0.000039476000000,0.000113747000000,0.000161550000000,0.000171822000000,0.000170241000000,0.011747912000000,0.000201846000000,0.000055673000000,0.000047378000000,0.000123624000000,0.000133105000000,0.000028232000000,0.000412019000000 +0.000018552500000,0.011452010000000,0.000130736000000,0.000040266000000,0.000016380500000,0.000041847000000,0.000026454000000,0.000046587000000,0.000045797000000,0.000024084000000,0.000038686000000,0.000101106000000,0.000163526000000,0.000170242000000,0.000169451000000,0.011329542000000,0.000193550000000,0.000055674000000,0.000046192000000,0.000103476000000,0.000130736000000,0.000028034000000,0.000491821000000 +0.000017763000000,0.011553936000000,0.000129945000000,0.000090834000000,0.000016380000000,0.000041451000000,0.000026454500000,0.000046587000000,0.000045797000000,0.000023886000000,0.000039081000000,0.000157995000000,0.000162340000000,0.000170242000000,0.000169451000000,0.011026134000000,0.000204612000000,0.000055673000000,0.000046588000000,0.000085699000000,0.000132710000000,0.000028232000000,0.000408463000000 +0.000018157500000,0.010975961000000,0.000120463000000,0.000051723000000,0.000016380000000,0.000042242000000,0.000026651500000,0.000046193000000,0.000046587000000,0.000023491000000,0.000039872000000,0.000098340000000,0.000197106000000,0.000173402000000,0.000269797000000,0.011070381000000,0.000194735000000,0.000056069000000,0.000046192000000,0.000084118000000,0.000130736000000,0.000062799500000,0.000425056000000 +0.000026652000000,0.011229196000000,0.000184069000000,0.000037896000000,0.000026454500000,0.000041452000000,0.000027046500000,0.000047377000000,0.000048168000000,0.000023689000000,0.000039081000000,0.000116118000000,0.000166291000000,0.000170241000000,0.000170637000000,0.011710381000000,0.000201846000000,0.000090044000000,0.000046982000000,0.000083723000000,0.000188414000000,0.000035343000000,0.000408069000000 +0.000017762500000,0.011154134000000,0.000126785000000,0.000040661000000,0.000016380000000,0.000041846000000,0.000026652000000,0.000046982000000,0.000046192000000,0.000024281000000,0.000039476000000,0.000118488000000,0.000161550000000,0.000169846000000,0.000168661000000,0.011605295000000,0.000201057000000,0.000069501000000,0.000046192000000,0.000085303000000,0.000133105000000,0.000028232000000,0.000458241000000 +0.000018750500000,0.011695368000000,0.000127575000000,0.000037501000000,0.000015590000000,0.000041452000000,0.000039096000000,0.000046983000000,0.000047377000000,0.000023689000000,0.000039081000000,0.000114143000000,0.000161550000000,0.000169846000000,0.000170242000000,0.011470973000000,0.000204612000000,0.000055674000000,0.000046192000000,0.000083328000000,0.000131526000000,0.000028232000000,0.000404512000000 +0.000017762500000,0.010987023000000,0.000112958000000,0.000040267000000,0.000015590000000,0.000041451000000,0.000042256500000,0.000047377000000,0.000048563000000,0.000023886000000,0.000039476000000,0.000115723000000,0.000161550000000,0.000169847000000,0.000171031000000,0.011843516000000,0.000197105000000,0.000055278000000,0.000046193000000,0.000084513000000,0.000133106000000,0.000028231500000,0.000406093000000 +0.000018750500000,0.011059714000000,0.000120859000000,0.000037106000000,0.000015590000000,0.000042637000000,0.000026454000000,0.000047377000000,0.000047378000000,0.000024479000000,0.000039081000000,0.000171822000000,0.000205402000000,0.000583081000000,0.000205797000000,0.011192060000000,0.000200266000000,0.000055279000000,0.000046192000000,0.000084908000000,0.000137452000000,0.000028232000000,0.000550290000000 +0.000017763000000,0.011271073000000,0.000128760000000,0.000037105000000,0.000015787000000,0.000041452000000,0.000026454500000,0.000046983000000,0.000047377000000,0.000024479000000,0.000039871000000,0.000132316000000,0.000163130000000,0.000171821000000,0.000206192000000,0.011293590000000,0.000201452000000,0.000055673000000,0.000046192000000,0.000103081000000,0.000133106000000,0.000028232000000,0.000413599000000 +0.000018552500000,0.011832454000000,0.000187624000000,0.000037501000000,0.000015590000000,0.000043031000000,0.000026651500000,0.000046192000000,0.000045797000000,0.000023688500000,0.000039081000000,0.000103871000000,0.000161550000000,0.000173007000000,0.000186439000000,0.011066035000000,0.000385155000000,0.000055674000000,0.000046587000000,0.000084908000000,0.000131921000000,0.000028232000000,0.000459031000000 +0.000018750500000,0.011128455000000,0.000120859000000,0.000040662000000,0.000016380000000,0.000061995000000,0.000026849000000,0.000046587000000,0.000045797000000,0.000024084000000,0.000040266000000,0.000115328000000,0.000165896000000,0.000170241000000,0.000170242000000,0.011489541000000,0.000220019000000,0.000055278000000,0.000046192000000,0.000083328000000,0.000129945000000,0.000028231500000,0.000411624000000 +0.000018750500000,0.011096850000000,0.000127180000000,0.000037501000000,0.000015590000000,0.000092810000000,0.000026849500000,0.000046982000000,0.000048167000000,0.000024281000000,0.000039476000000,0.000116118000000,0.000162736000000,0.000169846000000,0.000205797000000,0.011003220000000,0.000199871000000,0.000054884000000,0.000046193000000,0.000085698000000,0.000130341000000,0.000028232000000,0.000570043000000 +0.000018750500000,0.011142282000000,0.000126785000000,0.000037896000000,0.000016380000000,0.000042637000000,0.000027046500000,0.000046983000000,0.000084118000000,0.000023886500000,0.000039871000000,0.000118489000000,0.000291920000000,0.000172612000000,0.000168661000000,0.011444109000000,0.000201451000000,0.000055278000000,0.000047772000000,0.000084514000000,0.000154835000000,0.000028232000000,0.000420710000000 +0.000018157500000,0.012349590000000,0.000113352000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000027047000000,0.000105451000000,0.000046983000000,0.000024478500000,0.000039872000000,0.000118488000000,0.000193945000000,0.000169847000000,0.000170637000000,0.010938825000000,0.000202637000000,0.000056069000000,0.000047773000000,0.000083328000000,0.000132711000000,0.000028231500000,0.000443624000000 +0.000018355500000,0.011637294000000,0.000131920000000,0.000037106000000,0.000015590000000,0.000042242000000,0.000026849000000,0.000063575000000,0.000046982000000,0.000023294000000,0.000072661000000,0.000102686000000,0.000162340000000,0.000172217000000,0.000169451000000,0.011182183000000,0.000199476000000,0.000055674000000,0.000063180000000,0.000084513000000,0.000131131000000,0.000028232000000,0.000409253000000 +0.000018948000000,0.011721837000000,0.000156810000000,0.000041057000000,0.000015589500000,0.000041451000000,0.000026256500000,0.000046983000000,0.000048563000000,0.000024281000000,0.000039081000000,0.000098735000000,0.000165896000000,0.000170636000000,0.000171426000000,0.011270677000000,0.000201847000000,0.000055278000000,0.000046192000000,0.000085303000000,0.000135871000000,0.000028034500000,0.000442044000000 +0.000018157500000,0.011426332000000,0.000130735000000,0.000039081000000,0.000025071500000,0.000042637000000,0.000026454500000,0.000046982000000,0.000045797000000,0.000041071500000,0.000039081000000,0.000102686000000,0.000198291000000,0.000170636000000,0.000205797000000,0.011585146000000,0.000203427000000,0.000056069000000,0.000046588000000,0.000101895000000,0.000137056000000,0.000028231500000,0.000408859000000 +0.000017763000000,0.011621492000000,0.000116514000000,0.000037501000000,0.000017367500000,0.000042637000000,0.000026849000000,0.000046982000000,0.000048563000000,0.000023491500000,0.000039081000000,0.000116908000000,0.000161550000000,0.000169846000000,0.000170636000000,0.011630578000000,0.000203032000000,0.000055278000000,0.000044612000000,0.000103476000000,0.000168266000000,0.000036528500000,0.000450340000000 +0.000017762500000,0.011056159000000,0.000112958000000,0.000037105000000,0.000016380000000,0.000042242000000,0.000027046500000,0.000046587000000,0.000046587000000,0.000023886000000,0.000039871000000,0.000117304000000,0.000161550000000,0.000169847000000,0.000169452000000,0.010947912000000,0.000199871000000,0.000055279000000,0.000046587000000,0.000084513000000,0.000131130000000,0.000037713000000,0.000423081000000 +0.000018158000000,0.011176652000000,0.000131130000000,0.000057254000000,0.000022306000000,0.000041846000000,0.000026454500000,0.000046983000000,0.000048958000000,0.000024874000000,0.000039476000000,0.000115723000000,0.000162341000000,0.000171822000000,0.000167871000000,0.011134381000000,0.000199081000000,0.000055279000000,0.000046193000000,0.000084513000000,0.000127970000000,0.000030009500000,0.000445994000000 +0.000017960500000,0.011132010000000,0.000130735000000,0.000037501000000,0.000016775500000,0.000042637000000,0.000026849000000,0.000046587000000,0.000047772000000,0.000024281500000,0.000039082000000,0.000138636000000,0.000162340000000,0.000171822000000,0.000169846000000,0.012174578000000,0.000203427000000,0.000056068000000,0.000045797000000,0.000083723000000,0.000137846000000,0.000036331000000,0.000408068000000 +0.000017763000000,0.011184554000000,0.000174982000000,0.000037105000000,0.000015589500000,0.000043427000000,0.000044627000000,0.000046587000000,0.000046983000000,0.000024478500000,0.000039871000000,0.000118489000000,0.000234637000000,0.000170637000000,0.000240957000000,0.011974677000000,0.000203031000000,0.000055279000000,0.000046192000000,0.000082538000000,0.000131921000000,0.000028231500000,0.000454291000000 +0.000018355500000,0.011448059000000,0.000129945000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000027046500000,0.000047378000000,0.000046587000000,0.000024084000000,0.000039476000000,0.000116513000000,0.000161550000000,0.000173797000000,0.000169056000000,0.011268307000000,0.000201056000000,0.000055279000000,0.000046982000000,0.000084118000000,0.000182883000000,0.000028232000000,0.000407673000000 +0.000018750000000,0.011380899000000,0.000132316000000,0.000037500000000,0.000015787500000,0.000042241000000,0.000026257000000,0.000047378000000,0.000046983000000,0.000024281500000,0.000039081000000,0.000119278000000,0.000161945000000,0.000173402000000,0.000169846000000,0.010940406000000,0.000199476000000,0.000054883000000,0.000046192000000,0.000083328000000,0.000129945000000,0.000028232000000,0.000454686000000 +0.000017960500000,0.011444899000000,0.000131920000000,0.000037501000000,0.000015590000000,0.000041847000000,0.000026454000000,0.000046982000000,0.000047772000000,0.000023886000000,0.000039476000000,0.000118883000000,0.000163131000000,0.000169452000000,0.000170241000000,0.011297542000000,0.000198291000000,0.000054884000000,0.000045007000000,0.000082143000000,0.000131131000000,0.000028231500000,0.000407673000000 +0.000035738000000,0.011471368000000,0.000127574000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000026059000000,0.000046587000000,0.000047378000000,0.000023491000000,0.000039871000000,0.000118093000000,0.000161550000000,0.000170242000000,0.000207378000000,0.011020603000000,0.000203032000000,0.000056068000000,0.000046982000000,0.000130341000000,0.000129550000000,0.000028232000000,0.000444415000000 +0.000019145500000,0.011969146000000,0.000127180000000,0.000039871000000,0.000015392500000,0.000042241000000,0.000026651500000,0.000047378000000,0.000047772000000,0.000024084000000,0.000039871000000,0.000098736000000,0.000198291000000,0.000172612000000,0.000170241000000,0.011093690000000,0.000195131000000,0.000055674000000,0.000046192000000,0.000084513000000,0.000163921000000,0.000028232000000,0.000412809000000 +0.000025071500000,0.011601739000000,0.000177748000000,0.000037106000000,0.000025269000000,0.000042637000000,0.000026257000000,0.000046982000000,0.000047773000000,0.000023688500000,0.000039081000000,0.000150883000000,0.000166291000000,0.000169846000000,0.000168266000000,0.010986233000000,0.000201847000000,0.000055278000000,0.000046193000000,0.000083328000000,0.000127970000000,0.000028232000000,0.000445995000000 +0.000017763000000,0.011103171000000,0.000120859000000,0.000039871000000,0.000033170000000,0.000041452000000,0.000027046500000,0.000046982000000,0.000046982000000,0.000023688500000,0.000039081000000,0.000118884000000,0.000165501000000,0.000173007000000,0.000171032000000,0.011428702000000,0.000201056000000,0.000055674000000,0.000046982000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000412019000000 +0.000017763000000,0.011282924000000,0.000166686000000,0.000040266000000,0.000015590000000,0.000061994000000,0.000026849000000,0.000046983000000,0.000046983000000,0.000023886000000,0.000039476000000,0.000114933000000,0.000161945000000,0.000169451000000,0.000170637000000,0.011632158000000,0.000240562000000,0.000055279000000,0.000046983000000,0.000083723000000,0.000134291000000,0.000028034500000,0.000471278000000 +0.000018355500000,0.011345344000000,0.000128760000000,0.000037106000000,0.000016380000000,0.000042637000000,0.000026849500000,0.000082932000000,0.000133896000000,0.000023293500000,0.000039871000000,0.000102291000000,0.000165895000000,0.000174587000000,0.000205007000000,0.011013493000000,0.000201056000000,0.000055278000000,0.000046192000000,0.000085303000000,0.000131921000000,0.000028232000000,0.000412019000000 +0.000017762500000,0.011174283000000,0.000120464000000,0.000037501000000,0.000015590000000,0.000041846000000,0.000026849000000,0.000047378000000,0.000047377000000,0.000023688500000,0.000038687000000,0.000116118000000,0.000198686000000,0.000170242000000,0.000169847000000,0.011081838000000,0.000201451000000,0.000055674000000,0.000071871000000,0.000083723000000,0.000203032000000,0.000061812000000,0.000411229000000 +0.000017763000000,0.010995319000000,0.000120464000000,0.000040267000000,0.000016380000000,0.000042637000000,0.000026256500000,0.000046587000000,0.000047773000000,0.000023491500000,0.000039081000000,0.000118489000000,0.000162735000000,0.000169847000000,0.000169846000000,0.011553541000000,0.000201057000000,0.000055673000000,0.000045007000000,0.000082933000000,0.000131526000000,0.000035540500000,0.000476809000000 +0.000019145500000,0.011333887000000,0.000260315000000,0.000040662000000,0.000015590000000,0.000041452000000,0.000027047000000,0.000046982000000,0.000046982000000,0.000023293500000,0.000039476000000,0.000187624000000,0.000181698000000,0.000289945000000,0.000169451000000,0.011382874000000,0.000240958000000,0.000056069000000,0.000045797000000,0.000083723000000,0.000130735000000,0.000028232000000,0.000409648000000 +0.000018355000000,0.011343368000000,0.000153254000000,0.000037106000000,0.000015590000000,0.000041451000000,0.000026454000000,0.000046587000000,0.000047377000000,0.000041664000000,0.000055673000000,0.000132316000000,0.000176957000000,0.000171822000000,0.000170637000000,0.010879566000000,0.000200662000000,0.000054884000000,0.000046982000000,0.000102686000000,0.000132316000000,0.000028231500000,0.000456661000000 +0.000017763000000,0.011036406000000,0.000130735000000,0.000037500000000,0.000015590000000,0.000041452000000,0.000027046500000,0.000047378000000,0.000046193000000,0.000024083500000,0.000039081000000,0.000118488000000,0.000223970000000,0.000169847000000,0.000240957000000,0.011053788000000,0.000201451000000,0.000054883000000,0.000046192000000,0.000083328000000,0.000131920000000,0.000028232000000,0.000419920000000 +0.000018750500000,0.011186134000000,0.000127969000000,0.000040266000000,0.000015590000000,0.000042241000000,0.000027046500000,0.000046587000000,0.000049748000000,0.000023886500000,0.000039871000000,0.000116909000000,0.000161945000000,0.000208958000000,0.000170637000000,0.012307713000000,0.000269797000000,0.000054884000000,0.000046192000000,0.000084118000000,0.000131525000000,0.000028232000000,0.000452711000000 +0.000018158000000,0.011980208000000,0.000120463000000,0.000037501000000,0.000015590000000,0.000041846000000,0.000044034500000,0.000046982000000,0.000045797000000,0.000023688500000,0.000039476000000,0.000116908000000,0.000162735000000,0.000186834000000,0.000169451000000,0.012195515000000,0.000202637000000,0.000055278000000,0.000047377000000,0.000084908000000,0.000131921000000,0.000028231500000,0.000424661000000 +0.000018355500000,0.012040257000000,0.000148909000000,0.000040267000000,0.000016182500000,0.000042637000000,0.000026454000000,0.000046983000000,0.000048562000000,0.000023294000000,0.000039476000000,0.000117698000000,0.000166686000000,0.000170637000000,0.000171032000000,0.011400652000000,0.000201056000000,0.000056464000000,0.000086884000000,0.000084118000000,0.000129550000000,0.000028232000000,0.000452711000000 +0.000017762500000,0.011470973000000,0.000127575000000,0.000073452000000,0.000015589500000,0.000044217000000,0.000026454000000,0.000046587000000,0.000045797000000,0.000023886000000,0.000039476000000,0.000100316000000,0.000165896000000,0.000170242000000,0.000206982000000,0.011599763000000,0.000198686000000,0.000055674000000,0.000048958000000,0.000084909000000,0.000131921000000,0.000028232000000,0.000409649000000 +0.000018355500000,0.011286084000000,0.000113352000000,0.000037501000000,0.000015985000000,0.000042637000000,0.000026454500000,0.000047377000000,0.000046982000000,0.000024084000000,0.000039081000000,0.000114932000000,0.000201056000000,0.000170242000000,0.000169847000000,0.011536553000000,0.000202637000000,0.000054883000000,0.000060019000000,0.000084513000000,0.000190390000000,0.000028231500000,0.000443624000000 +0.000017763000000,0.011466233000000,0.000127179000000,0.000037501000000,0.000015787500000,0.000041056000000,0.000026454000000,0.000046983000000,0.000046983000000,0.000023688500000,0.000039476000000,0.000115723000000,0.000161155000000,0.000209748000000,0.000169847000000,0.012479170000000,0.000202637000000,0.000055674000000,0.000046982000000,0.000082933000000,0.000132711000000,0.000028429500000,0.000409254000000 +0.000019145500000,0.011205096000000,0.000113748000000,0.000040266000000,0.000015787500000,0.000041452000000,0.000027046500000,0.000046588000000,0.000046587000000,0.000024281500000,0.000039476000000,0.000118093000000,0.000162341000000,0.000172612000000,0.000169846000000,0.012139022000000,0.000288760000000,0.000054883000000,0.000046587000000,0.000104266000000,0.000132316000000,0.000028232000000,0.000482735000000 +0.000017763000000,0.011422775000000,0.000112958000000,0.000037501000000,0.000016380000000,0.000041846000000,0.000026454500000,0.000046982000000,0.000048563000000,0.000023886000000,0.000039082000000,0.000099131000000,0.000165896000000,0.000169451000000,0.000170637000000,0.011395121000000,0.000201451000000,0.000054884000000,0.000047377000000,0.000084909000000,0.000131921000000,0.000028232000000,0.000403723000000 +0.000017960000000,0.011044702000000,0.000140217000000,0.000037500000000,0.000016182500000,0.000042242000000,0.000036133000000,0.000047377000000,0.000046982000000,0.000023689000000,0.000038686000000,0.000117698000000,0.000161155000000,0.000170241000000,0.000205402000000,0.011465837000000,0.000203031000000,0.000054883000000,0.000046982000000,0.000084513000000,0.000130736000000,0.000028232000000,0.000457056000000 +0.000017763000000,0.011436998000000,0.000129156000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000028231500000,0.000046983000000,0.000048168000000,0.000023688500000,0.000038686000000,0.000116513000000,0.000202241000000,0.000171427000000,0.000171031000000,0.011660602000000,0.000202636000000,0.000055279000000,0.000046192000000,0.000084908000000,0.000147328000000,0.000028232000000,0.000402143000000 +0.000017762500000,0.011293591000000,0.000113353000000,0.000037895000000,0.000015590000000,0.000042241000000,0.000028429500000,0.000046982000000,0.000045797000000,0.000024281500000,0.000038686000000,0.000155229000000,0.000162341000000,0.000177748000000,0.000170637000000,0.011196801000000,0.000201056000000,0.000055278000000,0.000046587000000,0.000083723000000,0.000132316000000,0.000046207000000,0.000444414000000 +0.000018553000000,0.011107121000000,0.000131131000000,0.000040266000000,0.000016182500000,0.000043032000000,0.000026257000000,0.000047377000000,0.000063970000000,0.000023886000000,0.000039081000000,0.000103081000000,0.000162340000000,0.000172611000000,0.000169847000000,0.011284899000000,0.000201846000000,0.000055279000000,0.000047773000000,0.000085699000000,0.000128365000000,0.000028232000000,0.000409648000000 +0.000027639500000,0.011491911000000,0.000128365000000,0.000040266000000,0.000015589500000,0.000042637000000,0.000026454000000,0.000083328000000,0.000047378000000,0.000024479000000,0.000040266000000,0.000116908000000,0.000161945000000,0.000170241000000,0.000169451000000,0.011534973000000,0.000237007000000,0.000055279000000,0.000082933000000,0.000085303000000,0.000134290000000,0.000028232000000,0.000445994000000 +0.000018948000000,0.011367863000000,0.000113353000000,0.000037896000000,0.000015590000000,0.000112563000000,0.000026256500000,0.000046982000000,0.000046982000000,0.000023293500000,0.000039081000000,0.000098340000000,0.000162736000000,0.000171822000000,0.000434933000000,0.011448455000000,0.000202636000000,0.000055674000000,0.000046982000000,0.000085303000000,0.000131525000000,0.000028231500000,0.000406489000000 +0.000018948000000,0.011892899000000,0.000126784000000,0.000037106000000,0.000015590000000,0.000042636000000,0.000026454000000,0.000046983000000,0.000048168000000,0.000023886500000,0.000039476000000,0.000117303000000,0.000201056000000,0.000193945000000,0.000478784000000,0.011401048000000,0.000200661000000,0.000055674000000,0.000046587000000,0.000088069000000,0.000343674000000,0.000028232000000,0.000578735000000 +0.000018355500000,0.011017838000000,0.000129550000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000026454500000,0.000047377000000,0.000048562000000,0.000023491000000,0.000039081000000,0.000117303000000,0.000161550000000,0.000170241000000,0.000203822000000,0.011611615000000,0.000201451000000,0.000061599000000,0.000046982000000,0.000102291000000,0.000150093000000,0.000028232000000,0.000411229000000 +0.000017763000000,0.011054579000000,0.000129155000000,0.000037106000000,0.000043836500000,0.000042242000000,0.000046207000000,0.000046982000000,0.000045797000000,0.000023886500000,0.000039872000000,0.000115328000000,0.000161155000000,0.000169452000000,0.000168266000000,0.012116504000000,0.000203427000000,0.000055279000000,0.000047772000000,0.000084118000000,0.000172612000000,0.000028231500000,0.000418735000000 +0.000018750500000,0.011141887000000,0.000130340000000,0.000037501000000,0.000017368000000,0.000041451000000,0.000080182500000,0.000046587000000,0.000046982000000,0.000023688500000,0.000077797000000,0.000131526000000,0.000161155000000,0.000170637000000,0.000169452000000,0.011459516000000,0.000200267000000,0.000054883000000,0.000046587000000,0.000083723000000,0.000164710000000,0.000028232000000,0.000430982000000 +0.000018948000000,0.013383070000000,0.000129156000000,0.000037501000000,0.000022898500000,0.000042637000000,0.000082553000000,0.000046983000000,0.000047378000000,0.000024084000000,0.000041452000000,0.000117698000000,0.000162735000000,0.000169847000000,0.000169056000000,0.010977147000000,0.000195130000000,0.000054884000000,0.000046192000000,0.000084118000000,0.000131130000000,0.000028034500000,0.000409253000000 +0.000018948000000,0.011400257000000,0.000127180000000,0.000037896000000,0.000018157500000,0.000041452000000,0.000045022000000,0.000046982000000,0.000045797000000,0.000024478500000,0.000041451000000,0.000098735000000,0.000202241000000,0.000170637000000,0.000211328000000,0.010948702000000,0.000201451000000,0.000055278000000,0.000046982000000,0.000085698000000,0.000131130000000,0.000028231500000,0.000445205000000 +0.000018750500000,0.011786233000000,0.000134291000000,0.000037106000000,0.000015392500000,0.000042636000000,0.000070108500000,0.000046982000000,0.000047772000000,0.000024084000000,0.000040266000000,0.000118093000000,0.000162340000000,0.000171032000000,0.000170636000000,0.011274628000000,0.000209747000000,0.000055279000000,0.000046588000000,0.000082933000000,0.000131526000000,0.000028232000000,0.000410834000000 +0.000018355000000,0.011295171000000,0.000130735000000,0.000039871000000,0.000015590000000,0.000043821000000,0.000038503500000,0.000046588000000,0.000048168000000,0.000024083500000,0.000038686000000,0.000137056000000,0.000162341000000,0.000173007000000,0.000168267000000,0.011583565000000,0.000202636000000,0.000055279000000,0.000045797000000,0.000082538000000,0.000169451000000,0.000028232000000,0.000451920000000 +0.000018355500000,0.012874232000000,0.000131130000000,0.000040661000000,0.000016380000000,0.000041452000000,0.000044429000000,0.000046983000000,0.000046982000000,0.000024083500000,0.000039081000000,0.000118093000000,0.000162735000000,0.000172612000000,0.000169451000000,0.010967270000000,0.000201056000000,0.000055673000000,0.000047773000000,0.000083723000000,0.000132710000000,0.000028231500000,0.000450340000000 +0.000017763000000,0.011621096000000,0.000127575000000,0.000073846000000,0.000016380000000,0.000043032000000,0.000058849000000,0.000047772000000,0.000048563000000,0.000024479000000,0.000039871000000,0.000207378000000,0.000161155000000,0.000169056000000,0.000169056000000,0.011204307000000,0.000201452000000,0.000055279000000,0.000045797000000,0.000103477000000,0.000131920000000,0.000028232000000,0.000447180000000 +0.000018157500000,0.011620702000000,0.000127575000000,0.000040266000000,0.000016380000000,0.000041846000000,0.000222602000000,0.000046587000000,0.000047773000000,0.000023886000000,0.000039872000000,0.000117303000000,0.000306538000000,0.000223179000000,0.000205797000000,0.011271862000000,0.000202242000000,0.000055278000000,0.000046588000000,0.000121254000000,0.000133501000000,0.000028232000000,0.000412414000000 +0.000018553000000,0.011256850000000,0.000130736000000,0.000040266000000,0.000016972500000,0.000042242000000,0.000051145500000,0.000046983000000,0.000049352000000,0.000023886500000,0.000039081000000,0.000117698000000,0.000194340000000,0.000170241000000,0.000169451000000,0.011381294000000,0.000202637000000,0.000055674000000,0.000045402000000,0.000084119000000,0.000135476000000,0.000047392500000,0.000506043000000 +0.000018158000000,0.011582380000000,0.000112957000000,0.000037896000000,0.000016380000000,0.000042242000000,0.000058651500000,0.000046982000000,0.000048563000000,0.000023491000000,0.000039081000000,0.000117303000000,0.000164711000000,0.000171032000000,0.000170242000000,0.011052603000000,0.000200267000000,0.000054883000000,0.000046982000000,0.000085303000000,0.000130736000000,0.000093812000000,0.000406488000000 +0.000017960000000,0.011041147000000,0.000141007000000,0.000038291000000,0.000016380000000,0.000042636000000,0.000046800000000,0.000047377000000,0.000046587000000,0.000023491000000,0.000039081000000,0.000118093000000,0.000161550000000,0.000170636000000,0.000169451000000,0.011749096000000,0.000195525000000,0.000055674000000,0.000046192000000,0.000084118000000,0.000132710000000,0.000087886500000,0.000493797000000 +0.000018750500000,0.011233146000000,0.000130736000000,0.000039871000000,0.000015590000000,0.000041451000000,0.000054503500000,0.000046587000000,0.000083328000000,0.000023293500000,0.000039476000000,0.000118883000000,0.000200266000000,0.000208957000000,0.000168266000000,0.011387220000000,0.000194735000000,0.000055279000000,0.000046982000000,0.000084513000000,0.000138242000000,0.000077022000000,0.000408858000000 +0.000018158000000,0.011337442000000,0.000126785000000,0.000039872000000,0.000015590000000,0.000041452000000,0.000065367500000,0.000047378000000,0.000046982000000,0.000023688500000,0.000039081000000,0.000152859000000,0.000162735000000,0.000169846000000,0.000241747000000,0.011433442000000,0.000203031000000,0.000055278000000,0.000046193000000,0.000081747000000,0.000130735000000,0.000047787500000,0.000485896000000 +0.000019145500000,0.011373393000000,0.000112958000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000083738000000,0.000066735000000,0.000045797000000,0.000024281500000,0.000040266000000,0.000116908000000,0.000160760000000,0.000170241000000,0.000167081000000,0.010900504000000,0.000199081000000,0.000056069000000,0.000113748000000,0.000084119000000,0.000167871000000,0.000029812000000,0.000410834000000 +0.000018158000000,0.011272257000000,0.000129945000000,0.000037896000000,0.000015589500000,0.000042242000000,0.000059244000000,0.000046982000000,0.000048563000000,0.000023293500000,0.000039081000000,0.000114538000000,0.000165895000000,0.000170636000000,0.000171032000000,0.015474130000000,0.000200662000000,0.000056068000000,0.000045402000000,0.000088068000000,0.000132316000000,0.000028232000000,0.000500118000000 +0.000017763000000,0.011232357000000,0.000164711000000,0.000039871000000,0.000015590000000,0.000065155000000,0.000052923000000,0.000046587000000,0.000047377000000,0.000023294000000,0.000039871000000,0.000114933000000,0.000161946000000,0.000173402000000,0.000221995000000,0.012285985000000,0.000200661000000,0.000055674000000,0.000046587000000,0.000104266000000,0.000131131000000,0.000028232000000,0.000404908000000 +0.000019145500000,0.010969640000000,0.000117303000000,0.000037501000000,0.000016380000000,0.000042637000000,0.000029417500000,0.000046983000000,0.000048563000000,0.000023688500000,0.000039081000000,0.000117303000000,0.000233451000000,0.000205402000000,0.000253204000000,0.011324801000000,0.000203426000000,0.000054884000000,0.000046588000000,0.000082933000000,0.000129550000000,0.000028232000000,0.000453895000000 +0.000036133500000,0.011410134000000,0.000125600000000,0.000039872000000,0.000015590000000,0.000041452000000,0.000034750500000,0.000046587000000,0.000046982000000,0.000023886500000,0.000039477000000,0.000116118000000,0.000161550000000,0.000169452000000,0.000169056000000,0.011118578000000,0.000201451000000,0.000055279000000,0.000047377000000,0.000084513000000,0.000129945000000,0.000057071500000,0.000410833000000 +0.000018750000000,0.010937640000000,0.000129550000000,0.000037501000000,0.000016182500000,0.000042241000000,0.000044034000000,0.000046982000000,0.000048563000000,0.000023886000000,0.000038686000000,0.000104661000000,0.000162735000000,0.000173007000000,0.000188415000000,0.010892999000000,0.000201451000000,0.000055674000000,0.000046588000000,0.000088859000000,0.000166686000000,0.000028232000000,0.000447969000000 +0.000017763000000,0.011154134000000,0.000114933000000,0.000037501000000,0.000015590000000,0.000041847000000,0.000027836500000,0.000046587000000,0.000047773000000,0.000023688500000,0.000056069000000,0.000348809000000,0.000162736000000,0.000171426000000,0.000179723000000,0.010780011000000,0.000201057000000,0.000054883000000,0.000046192000000,0.000083328000000,0.000131920000000,0.000028232000000,0.000403328000000 +0.000018157500000,0.011483221000000,0.000128760000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000028429000000,0.000046588000000,0.000047772000000,0.000024084000000,0.000039476000000,0.000227525000000,0.000161945000000,0.000299822000000,0.000178933000000,0.011657442000000,0.000204612000000,0.000055279000000,0.000046193000000,0.000083328000000,0.000131921000000,0.000028231500000,0.000443229000000 +0.000018355500000,0.011300702000000,0.000129945000000,0.000040661000000,0.000017960500000,0.000042636000000,0.000045614500000,0.000046983000000,0.000045797000000,0.000024084000000,0.000039081000000,0.000118489000000,0.000212908000000,0.000169847000000,0.000179328000000,0.011187715000000,0.000200662000000,0.000055278000000,0.000046982000000,0.000084908000000,0.000129550000000,0.000028232000000,0.000406884000000 +0.000018158000000,0.011303467000000,0.000122834000000,0.000037501000000,0.000015590000000,0.000044217000000,0.000028034500000,0.000046982000000,0.000047772000000,0.000024281000000,0.000039081000000,0.000135476000000,0.000162736000000,0.000172612000000,0.000179328000000,0.011169541000000,0.000201451000000,0.000055279000000,0.000045797000000,0.000088464000000,0.000133106000000,0.000028232000000,0.000449155000000 +0.000019145500000,0.011508899000000,0.000120464000000,0.000037896000000,0.000025466500000,0.000042242000000,0.000042849000000,0.000046587000000,0.000047377000000,0.000023886500000,0.000039476000000,0.000117698000000,0.000161550000000,0.000170637000000,0.000179723000000,0.011035616000000,0.000201056000000,0.000055278000000,0.000046192000000,0.000135081000000,0.000129945000000,0.000028231500000,0.000418340000000 +0.000017762500000,0.011269492000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000035145500000,0.000046983000000,0.000048167000000,0.000023491000000,0.000039871000000,0.000114933000000,0.000161945000000,0.000206587000000,0.000179723000000,0.011420405000000,0.000204612000000,0.000054884000000,0.000045402000000,0.000084513000000,0.000130735000000,0.000028232000000,0.001084413000000 +0.000017763000000,0.011907121000000,0.000130735000000,0.000037501000000,0.000015787500000,0.000042636000000,0.000028231500000,0.000046587000000,0.000047378000000,0.000023491000000,0.000039476000000,0.000114538000000,0.000163130000000,0.000172612000000,0.000179723000000,0.011094875000000,0.000200661000000,0.000054883000000,0.000046587000000,0.000083723000000,0.000129945000000,0.000028232000000,0.000532513000000 +0.000019145500000,0.010964109000000,0.000129155000000,0.000056859000000,0.000016380000000,0.000041451000000,0.000045812500000,0.000046982000000,0.000048957000000,0.000023294000000,0.000038686000000,0.000116908000000,0.000244117000000,0.000169452000000,0.000179722000000,0.011209443000000,0.000199477000000,0.000054884000000,0.000046192000000,0.000085303000000,0.000130736000000,0.000028232000000,0.000482340000000 +0.000018947500000,0.011402232000000,0.000133105000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000078404500000,0.000046587000000,0.000046983000000,0.000023491000000,0.000039476000000,0.000117303000000,0.000161945000000,0.000171822000000,0.000178537000000,0.011640455000000,0.000201056000000,0.000055279000000,0.000045797000000,0.000085303000000,0.000129945000000,0.000028231500000,0.000447969000000 +0.000018158000000,0.011687862000000,0.000128760000000,0.000037896000000,0.000016380000000,0.000041451000000,0.000074651500000,0.000046982000000,0.000048167000000,0.000025861500000,0.000039081000000,0.000114933000000,0.000161550000000,0.000170636000000,0.000180908000000,0.011493886000000,0.000204216000000,0.000055278000000,0.000045798000000,0.000085304000000,0.000128365000000,0.000028232000000,0.000550686000000 +0.000017763000000,0.011386430000000,0.000120859000000,0.000037895000000,0.000015392000000,0.000041452000000,0.000069713500000,0.000046588000000,0.000116514000000,0.000024084000000,0.000039477000000,0.000152068000000,0.000161550000000,0.000171031000000,0.000181304000000,0.011066826000000,0.000201056000000,0.000055279000000,0.000046192000000,0.000088068000000,0.000140611000000,0.000028232000000,0.000481945000000 +0.000018158000000,0.011214579000000,0.000121649000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000042454000000,0.000046982000000,0.000061994000000,0.000023886000000,0.000039081000000,0.000115328000000,0.000180908000000,0.000168661000000,0.000178142000000,0.011291221000000,0.000201451000000,0.000055673000000,0.000117303000000,0.000084908000000,0.000133896000000,0.000028231500000,0.000409649000000 +0.000018553000000,0.011138331000000,0.000120463000000,0.000037896000000,0.000016577500000,0.000042241000000,0.000041663500000,0.000046587000000,0.000046982000000,0.000023886500000,0.000039476000000,0.000115328000000,0.000162735000000,0.000173007000000,0.000180118000000,0.011022183000000,0.000201057000000,0.000054489000000,0.000046587000000,0.000083328000000,0.000139821000000,0.000038108500000,0.000445204000000 +0.000018750500000,0.011449640000000,0.000129946000000,0.000037501000000,0.000016577500000,0.000041452000000,0.000044232000000,0.000063970000000,0.000048168000000,0.000023886000000,0.000039081000000,0.000114142000000,0.000163130000000,0.000170241000000,0.000180908000000,0.011212603000000,0.000204612000000,0.000055278000000,0.000047377000000,0.000121253000000,0.000168266000000,0.000028231500000,0.000406488000000 +0.000018947500000,0.011225640000000,0.000131525000000,0.000037501000000,0.000015392500000,0.000042637000000,0.000026651500000,0.000046982000000,0.000046982000000,0.000023886500000,0.000039871000000,0.000115328000000,0.000161550000000,0.000169847000000,0.000178143000000,0.011147418000000,0.000201451000000,0.000055674000000,0.000047377000000,0.000084908000000,0.000132316000000,0.000028232000000,0.000505649000000 +0.000018158000000,0.011267516000000,0.000145353000000,0.000037106000000,0.000015590000000,0.000084513000000,0.000027047000000,0.000046983000000,0.000047377000000,0.000024676000000,0.000039081000000,0.000114933000000,0.000161945000000,0.000189994000000,0.000179723000000,0.011062874000000,0.000199872000000,0.000056069000000,0.000046192000000,0.000084513000000,0.000132711000000,0.000028232000000,0.000415179000000 +0.000018158000000,0.010945146000000,0.000128760000000,0.000037105000000,0.000015590000000,0.000093599000000,0.000027046500000,0.000046982000000,0.000046192000000,0.000041664000000,0.000039476000000,0.000098735000000,0.000201451000000,0.000171427000000,0.000178537000000,0.011516801000000,0.000201056000000,0.000054488000000,0.000046192000000,0.000083328000000,0.000133501000000,0.000028232000000,0.000446785000000 +0.000018157500000,0.011340603000000,0.000129945000000,0.000040266000000,0.000016775000000,0.000046588000000,0.000026256500000,0.000046982000000,0.000047377000000,0.000023293500000,0.000039476000000,0.000155229000000,0.000161550000000,0.000170241000000,0.000178538000000,0.011094480000000,0.000296661000000,0.000055279000000,0.000045797000000,0.000088464000000,0.000132315000000,0.000028231500000,0.000408464000000 +0.000018948000000,0.011376949000000,0.000121649000000,0.000040266000000,0.000016380000000,0.000046587000000,0.000026256500000,0.000046982000000,0.000045797000000,0.000023688500000,0.000039476000000,0.000117303000000,0.000161550000000,0.000169847000000,0.000178537000000,0.011444109000000,0.000530142000000,0.000055278000000,0.000047378000000,0.000085698000000,0.000168266000000,0.000028232000000,0.000482735000000 +0.000018750500000,0.011543665000000,0.000130735000000,0.000037501000000,0.000016380000000,0.000061600000000,0.000026454000000,0.000046983000000,0.000047377000000,0.000023294000000,0.000075426000000,0.000117699000000,0.000166291000000,0.000171427000000,0.000179328000000,0.011429097000000,0.000613500000000,0.000055279000000,0.000045797000000,0.000085303000000,0.000131921000000,0.000028232000000,0.000406489000000 +0.000019145500000,0.011270677000000,0.000128365000000,0.000040267000000,0.000015985000000,0.000044612000000,0.000026849000000,0.000047377000000,0.000046982000000,0.000024083500000,0.000038686000000,0.000116908000000,0.000165896000000,0.000169846000000,0.000212908000000,0.011255269000000,0.000307328000000,0.000054883000000,0.000046192000000,0.000084514000000,0.000128365000000,0.000028231500000,0.000457451000000 +0.000026059000000,0.010969245000000,0.000183674000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000026454500000,0.000046982000000,0.000046588000000,0.000024479000000,0.000038686000000,0.000115328000000,0.000197896000000,0.000170242000000,0.000179723000000,0.011828504000000,0.000221204000000,0.000055674000000,0.000046193000000,0.000085303000000,0.000131131000000,0.000028034500000,0.000416364000000 +0.000018553000000,0.011281739000000,0.000128760000000,0.000037501000000,0.000015787500000,0.000042241000000,0.000026454000000,0.000047378000000,0.000047377000000,0.000023688500000,0.000039477000000,0.000100315000000,0.000165895000000,0.000169451000000,0.000179723000000,0.011294381000000,0.000219624000000,0.000055278000000,0.000046192000000,0.000084908000000,0.000132711000000,0.000028232000000,0.000507624000000 +0.000019145500000,0.011334282000000,0.000130340000000,0.000037895000000,0.000016380000000,0.000042636000000,0.000027046500000,0.000046982000000,0.000047378000000,0.000023689000000,0.000039081000000,0.000160759000000,0.000161946000000,0.000170241000000,0.000178933000000,0.011099220000000,0.000220019000000,0.000055674000000,0.000046983000000,0.000088464000000,0.000132316000000,0.000028232000000,0.000411229000000 +0.000018750500000,0.010964900000000,0.000130341000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000027047000000,0.000046587000000,0.000046192000000,0.000023886000000,0.000039476000000,0.000116513000000,0.000163525000000,0.000389896000000,0.000178143000000,0.012470874000000,0.000220809000000,0.000055279000000,0.000046192000000,0.000083328000000,0.000134291000000,0.000028232000000,0.000799969000000 +0.000017763000000,0.011049443000000,0.000131525000000,0.000039871000000,0.000016182500000,0.000042637000000,0.000036725500000,0.000047377000000,0.000046982000000,0.000023689000000,0.000039476000000,0.000098340000000,0.000203032000000,0.000189599000000,0.000178538000000,0.011957294000000,0.000221204000000,0.000054488000000,0.000046587000000,0.000087279000000,0.000131920000000,0.000028232000000,0.000913747000000 +0.000018355000000,0.011476109000000,0.000173402000000,0.000057649000000,0.000015590000000,0.000042636000000,0.000048775000000,0.000046588000000,0.000046588000000,0.000023688500000,0.000039081000000,0.000098736000000,0.000181303000000,0.000169846000000,0.000180513000000,0.011359171000000,0.000219624000000,0.000054884000000,0.000047377000000,0.000082538000000,0.000133106000000,0.000028034500000,0.000540019000000 +0.000017763000000,0.011371813000000,0.000131130000000,0.000054093000000,0.000016380000000,0.000041452000000,0.000026454000000,0.000046982000000,0.000129155000000,0.000023688500000,0.000039476000000,0.000103476000000,0.000165895000000,0.000171822000000,0.000180118000000,0.011221690000000,0.000220415000000,0.000055278000000,0.000046587000000,0.000083723000000,0.000167871000000,0.000028232000000,0.000451920000000 +0.000017762500000,0.011131616000000,0.000122834000000,0.000040266000000,0.000016775000000,0.000042242000000,0.000026454000000,0.000046982000000,0.000047377000000,0.000024281000000,0.000039871000000,0.000122044000000,0.000161156000000,0.000169847000000,0.000180118000000,0.010881936000000,0.000236216000000,0.000056464000000,0.000082142000000,0.000082538000000,0.000129155000000,0.000046207500000,0.000408858000000 +0.000018355500000,0.011243418000000,0.000114933000000,0.000037106000000,0.000016380000000,0.000041846000000,0.000026257000000,0.000046982000000,0.000048167000000,0.000023293500000,0.000039477000000,0.000103081000000,0.000161945000000,0.000170242000000,0.000181698000000,0.011083813000000,0.000213304000000,0.000055279000000,0.000046587000000,0.000085303000000,0.000131920000000,0.000028034000000,0.000452710000000 +0.000018750500000,0.011174677000000,0.000120464000000,0.000039871000000,0.000042059000000,0.000042242000000,0.000026454000000,0.000046588000000,0.000046982000000,0.000024281000000,0.000039081000000,0.000153649000000,0.000166291000000,0.000169846000000,0.000180908000000,0.011448850000000,0.000209353000000,0.000055674000000,0.000047377000000,0.000119674000000,0.000133106000000,0.000028232000000,0.000411229000000 +0.000018157500000,0.011963615000000,0.000129550000000,0.000038291000000,0.000024479000000,0.000042637000000,0.000026651500000,0.000093600000000,0.000046192000000,0.000023293500000,0.000038686000000,0.000118093000000,0.000250439000000,0.000169846000000,0.000180118000000,0.010940011000000,0.000201846000000,0.000055279000000,0.000046983000000,0.000088464000000,0.000128365000000,0.000028232000000,0.000459426000000 +0.000018750500000,0.010983467000000,0.000161945000000,0.000037896000000,0.000015590000000,0.000078982000000,0.000026652000000,0.000046982000000,0.000047772000000,0.000023886000000,0.000039476000000,0.000099921000000,0.000164710000000,0.000173402000000,0.000180118000000,0.011107912000000,0.000203031000000,0.000055673000000,0.000046982000000,0.000084908000000,0.000168661000000,0.000028034000000,0.000414389000000 +0.000018158000000,0.011344554000000,0.000140612000000,0.000037896000000,0.000015589500000,0.000041452000000,0.000026651500000,0.000067921000000,0.000048563000000,0.000023491000000,0.000039476000000,0.000098735000000,0.000161155000000,0.000172217000000,0.000178933000000,0.011308208000000,0.000202637000000,0.000055674000000,0.000046982000000,0.000088069000000,0.000129550000000,0.000028034500000,0.000487871000000 +0.000017762500000,0.011378529000000,0.000120859000000,0.000039871000000,0.000015392500000,0.000042241000000,0.000026454000000,0.000049748000000,0.000045797000000,0.000023689000000,0.000039476000000,0.000117698000000,0.000162340000000,0.000169452000000,0.000179722000000,0.012661294000000,0.000201846000000,0.000056464000000,0.000046587000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000408858000000 +0.000017763000000,0.012026430000000,0.000120464000000,0.000037895000000,0.000016380000000,0.000041452000000,0.000026256500000,0.000059624000000,0.000046588000000,0.000023688500000,0.000039477000000,0.000099131000000,0.000166291000000,0.000172612000000,0.000180908000000,0.011673245000000,0.000199871000000,0.000055278000000,0.000046983000000,0.000084514000000,0.000132316000000,0.000028231500000,0.000445994000000 +0.000018750500000,0.011037986000000,0.000126784000000,0.000037501000000,0.000015590000000,0.000041451000000,0.000034948000000,0.000047377000000,0.000047377000000,0.000024281500000,0.000039476000000,0.000098736000000,0.000161155000000,0.000171032000000,0.000180513000000,0.010960158000000,0.000238982000000,0.000055279000000,0.000047772000000,0.000082142000000,0.000127575000000,0.000028232000000,0.000408858000000 +0.000019145500000,0.011000455000000,0.000120859000000,0.000037500000000,0.000015392500000,0.000041451000000,0.000027837000000,0.000046982000000,0.000047377000000,0.000024281500000,0.000038686000000,0.000194735000000,0.000166290000000,0.000207772000000,0.000180908000000,0.011674825000000,0.000202636000000,0.000055278000000,0.000065550000000,0.000082932000000,0.000132710000000,0.000028034500000,0.000434142000000 +0.000018948000000,0.011269887000000,0.000149698000000,0.000037896000000,0.000015589500000,0.000042637000000,0.000028034500000,0.000046588000000,0.000047377000000,0.000023293500000,0.000039476000000,0.000116118000000,0.000161945000000,0.000170241000000,0.000178142000000,0.011463072000000,0.000201056000000,0.000056069000000,0.000099131000000,0.000083723000000,0.000133896000000,0.000028231500000,0.000431377000000 +0.000018158000000,0.012030380000000,0.000120858000000,0.000039476000000,0.000015590000000,0.000042636000000,0.000028232000000,0.000046982000000,0.000046192000000,0.000023688500000,0.000090439000000,0.000117303000000,0.000163130000000,0.000172217000000,0.000179327000000,0.010922233000000,0.000198290000000,0.000054884000000,0.000060019000000,0.000120069000000,0.000131526000000,0.000028232000000,0.000430191000000 +0.000018158000000,0.010904060000000,0.000129945000000,0.000039477000000,0.000015590000000,0.000042636000000,0.000028034500000,0.000046982000000,0.000046588000000,0.000023689000000,0.000052908000000,0.000114143000000,0.000180513000000,0.000171822000000,0.000180118000000,0.011284505000000,0.000245303000000,0.000054883000000,0.000047773000000,0.000084908000000,0.000127575000000,0.000028232000000,0.000431772000000 +0.000019145500000,0.011180998000000,0.000112958000000,0.000037896000000,0.000015392500000,0.000042242000000,0.000028034000000,0.000046982000000,0.000048562000000,0.000023688500000,0.000039477000000,0.000114933000000,0.000177353000000,0.000178143000000,0.000181699000000,0.011362727000000,0.000203426000000,0.000056069000000,0.000045007000000,0.000082143000000,0.000152069000000,0.000028034500000,0.000439279000000 +0.000018750500000,0.011563813000000,0.000127574000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000027836500000,0.000046588000000,0.000048563000000,0.000023689000000,0.000039476000000,0.000115328000000,0.000165106000000,0.000170241000000,0.000178933000000,0.011645591000000,0.000201846000000,0.000054883000000,0.000045797000000,0.000084908000000,0.000133106000000,0.000028232000000,0.000432957000000 +0.000036923500000,0.011447270000000,0.000113747000000,0.000037896000000,0.000016380000000,0.000042636000000,0.000028034500000,0.000046982000000,0.000048167000000,0.000023491000000,0.000039081000000,0.000189205000000,0.000161550000000,0.000172217000000,0.000179328000000,0.010942381000000,0.000202636000000,0.000055674000000,0.000047772000000,0.000083723000000,0.000154834000000,0.000028232000000,0.000468118000000 +0.000039491000000,0.011081443000000,0.000113748000000,0.000037896000000,0.000015590000000,0.000042637000000,0.000028627000000,0.000046982000000,0.000083328000000,0.000023491000000,0.000039476000000,0.000117303000000,0.000160365000000,0.000169846000000,0.000179723000000,0.011132010000000,0.000239772000000,0.000056069000000,0.000084118000000,0.000085303000000,0.000128365000000,0.000036528000000,0.000434143000000 +0.000018355500000,0.011094480000000,0.000153649000000,0.000073847000000,0.000015589500000,0.000042637000000,0.000028232000000,0.000046587000000,0.000046982000000,0.000024281000000,0.000039871000000,0.000117303000000,0.000197895000000,0.000169846000000,0.000180118000000,0.011145443000000,0.000203031000000,0.000054884000000,0.000062390000000,0.000083723000000,0.000129945000000,0.000028232000000,0.000436513000000 +0.000017960000000,0.010951467000000,0.000125995000000,0.000037105000000,0.000016380000000,0.000042241000000,0.000028824500000,0.000046588000000,0.000048168000000,0.000023886500000,0.000039081000000,0.000103081000000,0.000162736000000,0.000171427000000,0.000170637000000,0.011436998000000,0.000201846000000,0.000055279000000,0.000046982000000,0.000083723000000,0.000202637000000,0.000028232000000,0.000432562000000 +0.000018750500000,0.011643220000000,0.000130340000000,0.000037896000000,0.000016578000000,0.000042636000000,0.000028034500000,0.000046982000000,0.000047772000000,0.000023688500000,0.000039081000000,0.000115723000000,0.000166291000000,0.000171822000000,0.000170637000000,0.011118184000000,0.000202241000000,0.000054883000000,0.000045798000000,0.000084118000000,0.000132316000000,0.000028231500000,0.000440069000000 +0.000018158000000,0.011492306000000,0.000129946000000,0.000037896000000,0.000015392500000,0.000041057000000,0.000028232000000,0.000082538000000,0.000047378000000,0.000023886500000,0.000039476000000,0.000119279000000,0.000162735000000,0.000169056000000,0.000206982000000,0.011140306000000,0.000239772000000,0.000055279000000,0.000045402000000,0.000114538000000,0.000129946000000,0.000028232000000,0.000443229000000 +0.000018750000000,0.011286085000000,0.000129155000000,0.000040266000000,0.000015590000000,0.000041451000000,0.000028231500000,0.000046982000000,0.000045797000000,0.000024281000000,0.000039081000000,0.000151674000000,0.000162340000000,0.000172612000000,0.000169452000000,0.011138332000000,0.000203426000000,0.000055673000000,0.000045797000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000477204000000 +0.000017763000000,0.011031665000000,0.000113352000000,0.000039871000000,0.000016380000000,0.000041452000000,0.000028627000000,0.000046587000000,0.000046587000000,0.000023689000000,0.000039871000000,0.000114933000000,0.000232267000000,0.000171822000000,0.000169846000000,0.012829195000000,0.000201451000000,0.000054884000000,0.000046192000000,0.000082538000000,0.000133501000000,0.000028231500000,0.000432168000000 +0.000018750500000,0.011333492000000,0.000127180000000,0.000037501000000,0.000015590000000,0.000041847000000,0.000027837000000,0.000046983000000,0.000047773000000,0.000024281000000,0.000039477000000,0.000117699000000,0.000161155000000,0.000170637000000,0.000169057000000,0.012188404000000,0.000201451000000,0.000055278000000,0.000047772000000,0.000085698000000,0.000131921000000,0.000028232000000,0.000443624000000 +0.000017762500000,0.012393047000000,0.000127970000000,0.000039872000000,0.000016380000000,0.000058439000000,0.000028627000000,0.000047378000000,0.000046587000000,0.000032973000000,0.000039081000000,0.000118489000000,0.000162340000000,0.000171427000000,0.000169451000000,0.011370628000000,0.000432562000000,0.000055279000000,0.000046983000000,0.000082538000000,0.000132711000000,0.000028232000000,0.000439673000000 +0.000018158000000,0.011610035000000,0.000119674000000,0.000040266000000,0.000015590000000,0.000042637000000,0.000028232000000,0.000046587000000,0.000046983000000,0.000024281500000,0.000039081000000,0.000117698000000,0.000161550000000,0.000170637000000,0.000212909000000,0.011386430000000,0.000621007000000,0.000055278000000,0.000045007000000,0.000087278000000,0.000129945000000,0.000028231500000,0.000440858000000 +0.000018948000000,0.011210233000000,0.000131130000000,0.000037501000000,0.000025269000000,0.000041451000000,0.000028627000000,0.000046982000000,0.000047772000000,0.000023293500000,0.000039081000000,0.000100316000000,0.000165106000000,0.000170241000000,0.000167871000000,0.011788602000000,0.000214884000000,0.000054884000000,0.000045797000000,0.000086488000000,0.000129550000000,0.000028034500000,0.000439673000000 +0.000019145500000,0.011263171000000,0.000115328000000,0.000037895000000,0.000023886000000,0.000041452000000,0.000028232000000,0.000046588000000,0.000046983000000,0.000023886500000,0.000039081000000,0.000105846000000,0.000231871000000,0.000210142000000,0.000173797000000,0.011164405000000,0.000202242000000,0.000054883000000,0.000046587000000,0.000085304000000,0.000168661000000,0.000028232000000,0.000434143000000 +0.000018355000000,0.011398678000000,0.000130341000000,0.000040661000000,0.000015392500000,0.000041451000000,0.000028232000000,0.000046982000000,0.000048167000000,0.000023688500000,0.000039476000000,0.000186834000000,0.000163131000000,0.000170241000000,0.000169847000000,0.012779021000000,0.000194341000000,0.000055279000000,0.000047772000000,0.000144562000000,0.000131920000000,0.000028231500000,0.000474834000000 +0.000018750500000,0.011063665000000,0.000146933000000,0.000040266000000,0.000015589500000,0.000041452000000,0.000067935500000,0.000046587000000,0.000047773000000,0.000023689000000,0.000058439000000,0.000117698000000,0.000162340000000,0.000169846000000,0.000245698000000,0.011331122000000,0.000204612000000,0.000055279000000,0.000046983000000,0.000150883000000,0.000134291000000,0.000028232000000,0.000409649000000 +0.000018158000000,0.011461492000000,0.000129155000000,0.000037501000000,0.000015787500000,0.000042241000000,0.000067343000000,0.000047377000000,0.000046192000000,0.000023293500000,0.000039082000000,0.000117303000000,0.000160760000000,0.000173007000000,0.000180908000000,0.012084109000000,0.000201847000000,0.000054884000000,0.000046587000000,0.000100316000000,0.000132710000000,0.000028232000000,0.000462982000000 +0.000018948000000,0.011581590000000,0.000130341000000,0.000037501000000,0.000016380000000,0.000042636000000,0.000042849500000,0.000046588000000,0.000047773000000,0.000023886000000,0.000039081000000,0.000117303000000,0.000166291000000,0.000170242000000,0.000171031000000,0.011080653000000,0.000201452000000,0.000054884000000,0.000045402000000,0.000084118000000,0.000131131000000,0.000046009500000,0.000407278000000 +0.000018552500000,0.011527863000000,0.000128760000000,0.000040266000000,0.000016380000000,0.000042242000000,0.000028034500000,0.000046587000000,0.000047377000000,0.000023886500000,0.000039081000000,0.000117698000000,0.000412414000000,0.000170241000000,0.000168662000000,0.011329147000000,0.000198686000000,0.000056068000000,0.000047377000000,0.000086489000000,0.000167871000000,0.000028232000000,0.000442834000000 +0.000019145500000,0.011214973000000,0.000112958000000,0.000037501000000,0.000016380000000,0.000042242000000,0.000028429500000,0.000046587000000,0.000066341000000,0.000023886000000,0.000039477000000,0.000118489000000,0.000231476000000,0.000169846000000,0.000169846000000,0.011200751000000,0.000205797000000,0.000055674000000,0.000065945000000,0.000084118000000,0.000134686000000,0.000028232000000,0.000412415000000 +0.000017763000000,0.011066826000000,0.000121254000000,0.000040267000000,0.000016380000000,0.000042241000000,0.000027836500000,0.000046587000000,0.000152069000000,0.000023886500000,0.000039081000000,0.000131920000000,0.000161551000000,0.000169847000000,0.000206983000000,0.011523121000000,0.000197106000000,0.000055673000000,0.000061994000000,0.000085304000000,0.000132710000000,0.000028232000000,0.000545155000000 +0.000019145500000,0.011071962000000,0.000166686000000,0.000037501000000,0.000015590000000,0.000042242000000,0.000028232000000,0.000046983000000,0.000153649000000,0.000023688500000,0.000039081000000,0.000123624000000,0.000234241000000,0.000172612000000,0.000170636000000,0.011055369000000,0.000321550000000,0.000054884000000,0.000045797000000,0.000084908000000,0.000129945000000,0.000028232000000,0.000411624000000 +0.000027442000000,0.011435813000000,0.000127575000000,0.000037500000000,0.000016577500000,0.000041452000000,0.000028627000000,0.000046587000000,0.000095180000000,0.000024281500000,0.000040266000000,0.000118093000000,0.000163131000000,0.000205797000000,0.000169451000000,0.011047862000000,0.000216464000000,0.000055674000000,0.000046192000000,0.000156414000000,0.000129945000000,0.000028232000000,0.000454291000000 +0.000025861500000,0.011113443000000,0.000129550000000,0.000060019000000,0.000015590000000,0.000042241000000,0.000027837000000,0.000046982000000,0.000067130000000,0.000023688500000,0.000039081000000,0.000120464000000,0.000161945000000,0.000170241000000,0.000168267000000,0.011026530000000,0.000331426000000,0.000055674000000,0.000045007000000,0.000083328000000,0.000132315000000,0.000028231500000,0.000415180000000 +0.000018355500000,0.011264752000000,0.000130341000000,0.000040266000000,0.000016972500000,0.000042637000000,0.000028232000000,0.000082933000000,0.000048958000000,0.000023688500000,0.000039081000000,0.000115723000000,0.000165896000000,0.000171032000000,0.000169451000000,0.011565788000000,0.000201846000000,0.000054884000000,0.000046982000000,0.000084118000000,0.000131526000000,0.000028232000000,0.000438488000000 +0.000018750500000,0.011019813000000,0.000120859000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000027837000000,0.000046982000000,0.000062390000000,0.000024083500000,0.000039476000000,0.000117698000000,0.000162735000000,0.000170637000000,0.000300217000000,0.011122529000000,0.000202241000000,0.000055279000000,0.000045402000000,0.000084513000000,0.000132315000000,0.000028232000000,0.000408463000000 +0.000018552500000,0.013294577000000,0.000165105000000,0.000037105000000,0.000016577500000,0.000041451000000,0.000028824500000,0.000047378000000,0.000067130000000,0.000023886000000,0.000039476000000,0.000152069000000,0.000197501000000,0.000171821000000,0.000184858000000,0.011147023000000,0.000203821000000,0.000055674000000,0.000046192000000,0.000084118000000,0.000132711000000,0.000028231500000,0.000445599000000 +0.000018948000000,0.011635319000000,0.000116118000000,0.000037896000000,0.000015392500000,0.000042242000000,0.000028429500000,0.000046982000000,0.000063574000000,0.000023886000000,0.000039476000000,0.000118094000000,0.000161155000000,0.000208167000000,0.000169057000000,0.010892603000000,0.000203427000000,0.000055673000000,0.000046192000000,0.000083328000000,0.000151674000000,0.000028232000000,0.000405698000000 +0.000018158000000,0.011629393000000,0.000128365000000,0.000038291000000,0.000015787500000,0.000042637000000,0.000028627000000,0.000046982000000,0.000061599000000,0.000023688500000,0.000039476000000,0.000098735000000,0.000162341000000,0.000170241000000,0.000169056000000,0.011952553000000,0.000226735000000,0.000056069000000,0.000046192000000,0.000083723000000,0.000155229000000,0.000028232000000,0.000455871000000 +0.000018948000000,0.011446085000000,0.000120859000000,0.000040266000000,0.000015392500000,0.000079772000000,0.000028429500000,0.000046982000000,0.000047378000000,0.000023491000000,0.000038686000000,0.000119674000000,0.000165896000000,0.000170636000000,0.000242143000000,0.011181788000000,0.000214489000000,0.000055279000000,0.000045797000000,0.000085699000000,0.000131130000000,0.000028034500000,0.000414390000000 +0.000018157500000,0.012340108000000,0.000128760000000,0.000040661000000,0.000016775000000,0.000041452000000,0.000028627000000,0.000046588000000,0.000048562000000,0.000024084000000,0.000039081000000,0.000118883000000,0.000161550000000,0.000170241000000,0.000169847000000,0.011657047000000,0.000215673000000,0.000055279000000,0.000045007000000,0.000128760000000,0.000132316000000,0.000028232000000,0.000460216000000 +0.000018553000000,0.011435813000000,0.000129550000000,0.000038291000000,0.000016380000000,0.000043822000000,0.000027836500000,0.000047377000000,0.000064760000000,0.000023688500000,0.000038686000000,0.000116513000000,0.000246093000000,0.000171426000000,0.000170241000000,0.011287665000000,0.000212513000000,0.000056069000000,0.000046587000000,0.000088859000000,0.000133896000000,0.000028232000000,0.000408858000000 +0.000028627000000,0.011721837000000,0.000113747000000,0.000037500000000,0.000016380000000,0.000043822000000,0.000028034500000,0.000046982000000,0.000047772000000,0.000023689000000,0.000039871000000,0.000115723000000,0.000161550000000,0.000169846000000,0.000169847000000,0.011204307000000,0.000208563000000,0.000054883000000,0.000046192000000,0.000084118000000,0.000131920000000,0.000037911000000,0.000430192000000 +0.000025664000000,0.012001146000000,0.000131526000000,0.000037501000000,0.000015590000000,0.000042636000000,0.000028232000000,0.000046588000000,0.000048563000000,0.000024281000000,0.000038686000000,0.000187229000000,0.000161946000000,0.000170241000000,0.000168661000000,0.011723812000000,0.000213303000000,0.000055279000000,0.000046192000000,0.000085698000000,0.000132711000000,0.000036330500000,0.000407674000000 +0.000019343000000,0.011640850000000,0.000116908000000,0.000038291000000,0.000016380000000,0.000041847000000,0.000027837000000,0.000046982000000,0.000045797000000,0.000024281000000,0.000039081000000,0.000118094000000,0.000161550000000,0.000171426000000,0.000203031000000,0.011091714000000,0.000216463000000,0.000057254000000,0.000046983000000,0.000083328000000,0.000132316000000,0.000028232000000,0.000413599000000 +0.000026059000000,0.011233146000000,0.000128760000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000028232000000,0.000046982000000,0.000046982000000,0.000023491000000,0.000075032000000,0.000118093000000,0.000182488000000,0.000170241000000,0.000169451000000,0.011018628000000,0.000215279000000,0.000124019000000,0.000046192000000,0.000083328000000,0.000131525000000,0.000028231500000,0.000409254000000 +0.000018750500000,0.011479269000000,0.000120859000000,0.000038291000000,0.000016577500000,0.000041451000000,0.000028429500000,0.000046587000000,0.000046983000000,0.000023491000000,0.000038686000000,0.000115723000000,0.000162341000000,0.000224365000000,0.000169451000000,0.011200752000000,0.000214093000000,0.000092414000000,0.000047378000000,0.000085303000000,0.000168266000000,0.000028232000000,0.000407673000000 +0.000017762500000,0.011252504000000,0.000128760000000,0.000037501000000,0.000016577500000,0.000042242000000,0.000027836500000,0.000046983000000,0.000046982000000,0.000023886000000,0.000039081000000,0.000115723000000,0.000161550000000,0.000172217000000,0.000169451000000,0.011239468000000,0.000214883000000,0.000071872000000,0.000065945000000,0.000083328000000,0.000131525000000,0.000028232000000,0.000412019000000 +0.000017763000000,0.011850628000000,0.000132316000000,0.000037500000000,0.000033763000000,0.000041846000000,0.000027837000000,0.000046587000000,0.000047773000000,0.000023294000000,0.000039081000000,0.000117699000000,0.000163525000000,0.000169846000000,0.000206982000000,0.011084604000000,0.000216069000000,0.000067920000000,0.000046192000000,0.000082143000000,0.000129155000000,0.000028231500000,0.000408068000000 +0.000018553000000,0.011423961000000,0.000205007000000,0.000040266000000,0.000015589500000,0.000042636000000,0.000028034500000,0.000046587000000,0.000046982000000,0.000023688500000,0.000039871000000,0.000152464000000,0.000161550000000,0.000169846000000,0.000171427000000,0.011093294000000,0.000215673000000,0.000055674000000,0.000046983000000,0.000170242000000,0.000128365000000,0.000028232000000,0.000438093000000 +0.000018157500000,0.011226431000000,0.000143772000000,0.000040266000000,0.000016380000000,0.000041452000000,0.000028627000000,0.000046982000000,0.000046192000000,0.000023491000000,0.000039081000000,0.000118488000000,0.000198291000000,0.000172216000000,0.000170637000000,0.011169937000000,0.000214093000000,0.000054883000000,0.000046587000000,0.000086488000000,0.000129550000000,0.000028232000000,0.000407278000000 +0.000017960500000,0.011497837000000,0.000129550000000,0.000037896000000,0.000015590000000,0.000042636000000,0.000027639500000,0.000046588000000,0.000047377000000,0.000023491000000,0.000039476000000,0.000115723000000,0.000165896000000,0.000170242000000,0.000168266000000,0.011380504000000,0.000213304000000,0.000055279000000,0.000047378000000,0.000082933000000,0.000168662000000,0.000028034000000,0.000480760000000 +0.000018948000000,0.011615961000000,0.000120464000000,0.000076216000000,0.000015590000000,0.000041451000000,0.000027836500000,0.000083327000000,0.000047377000000,0.000024281000000,0.000039081000000,0.000118093000000,0.000165500000000,0.000171822000000,0.000170636000000,0.011653887000000,0.000216464000000,0.000055278000000,0.000045797000000,0.000083328000000,0.000130735000000,0.000028232000000,0.000458241000000 +0.000018157500000,0.011105146000000,0.000128365000000,0.000039871000000,0.000015590000000,0.000042242000000,0.000028429500000,0.000046588000000,0.000046982000000,0.000024083500000,0.000039476000000,0.000116513000000,0.000161551000000,0.000237402000000,0.000253600000000,0.011022183000000,0.000216069000000,0.000054884000000,0.000046192000000,0.000083723000000,0.000130736000000,0.000028034500000,0.000459031000000 +0.000036528500000,0.011087763000000,0.000184859000000,0.000037106000000,0.000016380000000,0.000041451000000,0.000028429500000,0.000046982000000,0.000047377000000,0.000023293500000,0.000039871000000,0.000115723000000,0.000165896000000,0.000172611000000,0.000168661000000,0.011302677000000,0.000213698000000,0.000089254000000,0.000045798000000,0.000086094000000,0.000132710000000,0.000028232000000,0.000407674000000 +0.000018157500000,0.011171516000000,0.000127180000000,0.000037896000000,0.000015590000000,0.000041452000000,0.000028232000000,0.000046982000000,0.000047378000000,0.000023689000000,0.000039081000000,0.000100316000000,0.000233452000000,0.000323525000000,0.000169847000000,0.011295566000000,0.000206192000000,0.000070291000000,0.000045797000000,0.000085698000000,0.000130736000000,0.000028232000000,0.000454686000000 +0.000018158000000,0.011534183000000,0.000127970000000,0.000040661000000,0.000015589500000,0.000041451000000,0.000027639500000,0.000046983000000,0.000046587000000,0.000023886000000,0.000039872000000,0.000139427000000,0.000210932000000,0.000169846000000,0.000169452000000,0.011024158000000,0.000214093000000,0.000054488000000,0.000045797000000,0.000083328000000,0.000202241000000,0.000028232000000,0.000411229000000 +0.000017762500000,0.011206677000000,0.000112958000000,0.000040661000000,0.000016380000000,0.000042241000000,0.000027837000000,0.000046587000000,0.000046587000000,0.000023689000000,0.000039081000000,0.000114933000000,0.000163130000000,0.000170241000000,0.000169451000000,0.011304652000000,0.000216069000000,0.000055674000000,0.000046193000000,0.000154044000000,0.000130736000000,0.000028232000000,0.000445994000000 +0.000017763000000,0.011217343000000,0.000113353000000,0.000037896000000,0.000015985000000,0.000042637000000,0.000028429500000,0.000046982000000,0.000067525000000,0.000024083500000,0.000039081000000,0.000102686000000,0.000161155000000,0.000171031000000,0.000170636000000,0.011619517000000,0.000214093000000,0.000092809000000,0.000046982000000,0.000085304000000,0.000137451000000,0.000046207000000,0.000406883000000 +0.000018553000000,0.011354035000000,0.000116909000000,0.000037896000000,0.000016380000000,0.000078587000000,0.000027639000000,0.000046982000000,0.000060810000000,0.000023689000000,0.000039081000000,0.000120464000000,0.000166291000000,0.000221204000000,0.000169056000000,0.011566578000000,0.000211723000000,0.000054884000000,0.000046193000000,0.000082933000000,0.000127575000000,0.000028232000000,0.000447180000000 +0.000017762500000,0.011749492000000,0.000195920000000,0.000040266000000,0.000015590000000,0.000041452000000,0.000028627000000,0.000047378000000,0.000046982000000,0.000023886000000,0.000039476000000,0.000116118000000,0.000197896000000,0.000170636000000,0.000170241000000,0.010930529000000,0.000214093000000,0.000055278000000,0.000046192000000,0.000084908000000,0.000151673000000,0.000028232000000,0.000406488000000 +0.000018750500000,0.011503764000000,0.000118489000000,0.000037896000000,0.000016972500000,0.000042242000000,0.000028429500000,0.000046587000000,0.000047378000000,0.000023886500000,0.000039081000000,0.000101106000000,0.000162735000000,0.000172612000000,0.000170242000000,0.011063665000000,0.000215673000000,0.000055279000000,0.000045797000000,0.000085303000000,0.000133105000000,0.000028232000000,0.000444809000000 +0.000018750500000,0.011139912000000,0.000128365000000,0.000040267000000,0.000015590000000,0.000041846000000,0.000027639500000,0.000046982000000,0.000046982000000,0.000023886000000,0.000039871000000,0.000115723000000,0.000165896000000,0.000171032000000,0.000242537000000,0.011043912000000,0.000214094000000,0.000055279000000,0.000047378000000,0.000083723000000,0.000133896000000,0.000028232000000,0.000409254000000 +0.000018552500000,0.011200356000000,0.000127575000000,0.000037896000000,0.000015590000000,0.000041847000000,0.000028824500000,0.000046587000000,0.000047773000000,0.000023689000000,0.000039082000000,0.000134291000000,0.000166291000000,0.000170637000000,0.000169847000000,0.011504554000000,0.000266242000000,0.000054884000000,0.000046587000000,0.000085303000000,0.000130340000000,0.000028034000000,0.000449155000000 +0.000018355500000,0.011575270000000,0.000120464000000,0.000037105000000,0.000016380000000,0.000041451000000,0.000028627000000,0.000047378000000,0.000047377000000,0.000030404500000,0.000058439000000,0.000117699000000,0.000165106000000,0.000170242000000,0.000169451000000,0.010968456000000,0.000213698000000,0.000055279000000,0.000045798000000,0.000084513000000,0.000132710000000,0.000028232000000,0.000412019000000 +0.000017762500000,0.010891418000000,0.000128365000000,0.000037896000000,0.000015392500000,0.000042241000000,0.000027837000000,0.000047377000000,0.000046983000000,0.000022701000000,0.000060809000000,0.000116118000000,0.000161550000000,0.000172612000000,0.000171031000000,0.011131616000000,0.000216069000000,0.000055673000000,0.000082933000000,0.000101106000000,0.000201057000000,0.000028232000000,0.000442834000000 +0.000018750500000,0.010919073000000,0.000211328000000,0.000039871000000,0.000016972500000,0.000042637000000,0.000028824500000,0.000046982000000,0.000048562000000,0.000022898500000,0.000095970000000,0.000103081000000,0.000162340000000,0.000172611000000,0.000169452000000,0.011334282000000,0.000214093000000,0.000054884000000,0.000045797000000,0.000117303000000,0.000130735000000,0.000028231500000,0.000406884000000 +0.000018750500000,0.011215763000000,0.000120464000000,0.000037895000000,0.000016182500000,0.000041451000000,0.000028034500000,0.000046982000000,0.000046192000000,0.000022108500000,0.000121254000000,0.000119673000000,0.000165896000000,0.000169846000000,0.000205797000000,0.011438973000000,0.000212513000000,0.000054883000000,0.000046192000000,0.000085698000000,0.000129946000000,0.000028232000000,0.000442044000000 +0.000018750500000,0.011444504000000,0.000128760000000,0.000056859000000,0.000016380000000,0.000041451000000,0.000027639000000,0.000047378000000,0.000048562000000,0.000022306000000,0.000056464000000,0.000102686000000,0.000161550000000,0.000171031000000,0.000169451000000,0.011764899000000,0.000214093000000,0.000055674000000,0.000045797000000,0.000121254000000,0.000132316000000,0.000028232000000,0.000405303000000 +0.000018157500000,0.011267912000000,0.000114933000000,0.000053698000000,0.000015590000000,0.000042242000000,0.000029022000000,0.000047377000000,0.000046982000000,0.000022503500000,0.000054884000000,0.000136266000000,0.000166291000000,0.000171032000000,0.000170637000000,0.011005196000000,0.000215278000000,0.000054883000000,0.000045402000000,0.000085303000000,0.000131525000000,0.000028232000000,0.000651427000000 +0.000018553000000,0.011397492000000,0.000130736000000,0.000053698000000,0.000015787500000,0.000042636000000,0.000028429500000,0.000067131000000,0.000047377000000,0.000022898500000,0.000052908000000,0.000118094000000,0.000161945000000,0.000169847000000,0.000170636000000,0.011291615000000,0.000210143000000,0.000056069000000,0.000045797000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000432562000000 +0.000019145500000,0.011051813000000,0.000113352000000,0.000056464000000,0.000016182500000,0.000042637000000,0.000027639500000,0.000046587000000,0.000047772000000,0.000023096000000,0.000039081000000,0.000114933000000,0.000162735000000,0.000173007000000,0.000169451000000,0.011353640000000,0.000211723000000,0.000055278000000,0.000046192000000,0.000084909000000,0.000132711000000,0.000028232000000,0.000412810000000 +0.000017960500000,0.011553541000000,0.000204216000000,0.000040662000000,0.000016380000000,0.000041452000000,0.000027837000000,0.000046193000000,0.000046192000000,0.000023096500000,0.000039081000000,0.000116118000000,0.000161550000000,0.000171031000000,0.000221599000000,0.011548010000000,0.000211328000000,0.000054884000000,0.000046192000000,0.000084908000000,0.000133106000000,0.000028232000000,0.000467328000000 +0.000017762500000,0.011442528000000,0.000114537000000,0.000038291000000,0.000026454000000,0.000042241000000,0.000028232000000,0.000046587000000,0.000048168000000,0.000022108500000,0.000038686000000,0.000116908000000,0.000162340000000,0.000409254000000,0.000169451000000,0.011013887000000,0.000216068000000,0.000055674000000,0.000045797000000,0.000156019000000,0.000182488000000,0.000037910500000,0.000404907000000 +0.000018158000000,0.011084998000000,0.000201056000000,0.000037501000000,0.000031194500000,0.000041847000000,0.000028232000000,0.000046982000000,0.000047377000000,0.000022701500000,0.000038686000000,0.000115328000000,0.000201451000000,0.000191180000000,0.000169451000000,0.011255665000000,0.000214093000000,0.000055673000000,0.000046192000000,0.000088069000000,0.000202241000000,0.000028232000000,0.000460611000000 +0.000018157500000,0.011269097000000,0.000128760000000,0.000037896000000,0.000024084000000,0.000043032000000,0.000027836500000,0.000047772000000,0.000048167000000,0.000040281000000,0.000039476000000,0.000102686000000,0.000161550000000,0.000169846000000,0.000169846000000,0.011196406000000,0.000214884000000,0.000054884000000,0.000045402000000,0.000083328000000,0.000135871000000,0.000028231500000,0.000415179000000 +0.000028627000000,0.011531418000000,0.000128365000000,0.000037896000000,0.000016380000000,0.000042636000000,0.000028232000000,0.000046588000000,0.000087279000000,0.000022306000000,0.000039476000000,0.000133896000000,0.000161155000000,0.000177353000000,0.000205007000000,0.011487170000000,0.000219624000000,0.000055278000000,0.000046983000000,0.000083723000000,0.000131130000000,0.000028232000000,0.000478784000000 +0.000018157500000,0.011317294000000,0.000191575000000,0.000037500000000,0.000015787500000,0.000041451000000,0.000027639500000,0.000046982000000,0.000046982000000,0.000022701000000,0.000039082000000,0.000118489000000,0.000160760000000,0.000171821000000,0.000169846000000,0.011368257000000,0.000203427000000,0.000055279000000,0.000045797000000,0.000083723000000,0.000129945000000,0.000028232000000,0.000410043000000 +0.000018158000000,0.011236306000000,0.000120464000000,0.000037501000000,0.000015787000000,0.000101106000000,0.000028627000000,0.000047377000000,0.000048563000000,0.000022701000000,0.000038686000000,0.000117303000000,0.000163130000000,0.000169846000000,0.000169451000000,0.011069591000000,0.000201847000000,0.000055674000000,0.000045797000000,0.000086093000000,0.000132710000000,0.000028231500000,0.000513155000000 +0.000018158000000,0.010925789000000,0.000130341000000,0.000037501000000,0.000015392500000,0.000058834000000,0.000027837000000,0.000046982000000,0.000046982000000,0.000023096000000,0.000093994000000,0.000116908000000,0.000202242000000,0.000169846000000,0.000169056000000,0.011086184000000,0.000204217000000,0.000055279000000,0.000045798000000,0.000084513000000,0.000127575000000,0.000028232000000,0.000408859000000 +0.000028034500000,0.011177442000000,0.000128365000000,0.000037896000000,0.000015590000000,0.000042242000000,0.000029022000000,0.000046983000000,0.000046983000000,0.000022306000000,0.000039477000000,0.000098735000000,0.000162735000000,0.000171426000000,0.000170637000000,0.011460306000000,0.000201846000000,0.000055279000000,0.000047377000000,0.000083723000000,0.000133501000000,0.000028232000000,0.000477994000000 +0.000019935500000,0.011504159000000,0.000113748000000,0.000040267000000,0.000016577500000,0.000041846000000,0.000027639000000,0.000046982000000,0.000046982000000,0.000022898500000,0.000039476000000,0.000117303000000,0.000163526000000,0.000173797000000,0.000366587000000,0.010919468000000,0.000203427000000,0.000055278000000,0.000046983000000,0.000121253000000,0.000127575000000,0.000028231500000,0.000412019000000 +0.000025664000000,0.011051023000000,0.000127970000000,0.000040267000000,0.000015590000000,0.000041452000000,0.000027639000000,0.000046982000000,0.000046983000000,0.000021911000000,0.000039476000000,0.000207773000000,0.000162340000000,0.000172217000000,0.000372513000000,0.011141097000000,0.000292316000000,0.000055674000000,0.000046587000000,0.000083723000000,0.000130735000000,0.000028034500000,0.000444809000000 +0.000020331000000,0.011085788000000,0.000220810000000,0.000037896000000,0.000015590000000,0.000041451000000,0.000028627000000,0.000046587000000,0.000046192000000,0.000022701000000,0.000039081000000,0.000266636000000,0.000161550000000,0.000168661000000,0.000184069000000,0.011272653000000,0.000214093000000,0.000055673000000,0.000084118000000,0.000082538000000,0.000127575000000,0.000028232000000,0.000417155000000 +0.000019540500000,0.011420801000000,0.000129551000000,0.000040266000000,0.000015589500000,0.000042242000000,0.000027837000000,0.000046588000000,0.000047377000000,0.000022306000000,0.000039871000000,0.000153649000000,0.000253205000000,0.000172217000000,0.000203821000000,0.011758183000000,0.000449945000000,0.000055279000000,0.000061995000000,0.000084513000000,0.000129550000000,0.000028231500000,0.000635624000000 diff --git a/docs/source/media/bench/lua bench tests swig.csv b/docs/source/media/bench/lua bench tests swig.csv new file mode 100644 index 00000000..6c751cbf --- /dev/null +++ b/docs/source/media/bench/lua bench tests swig.csv @@ -0,0 +1,2001 @@ +"swig - member function calls","swig - c function","swig - c function through lua","swig - userdata variable access (simple)","swig - lua function","swig - member function calls (simple)","swig - userdata variable access","swig - many userdata variables access last registered","swig - many userdata variables access","swig - many userdata variable access (simple)","swig - many userdata variables access last registered (simple)","swig - multi return","swig - stateful c function","swig - return userdata","swig - base call on derived" +0.000341697000000,0.000051722000000,0.000060414000000,0.000270981000000,0.000039476000000,0.000332216000000,0.000264660000000,0.000274536000000,0.017148795000000,0.017661980000000,0.000269006000000,0.000075031000000,0.000079376000000,0.000269796000000,0.000162735000000 +0.000373302000000,0.000048167000000,0.000058833000000,0.000272166000000,0.000037895000000,0.000390289000000,0.000267821000000,0.000313253000000,0.018118276000000,0.017987905000000,0.000305747000000,0.000073846000000,0.000078191000000,0.000195524000000,0.000159969000000 +0.000357499000000,0.000045401000000,0.000057253000000,0.000269796000000,0.000037895000000,0.000359080000000,0.000334191000000,0.000264265000000,0.018068103000000,0.017365288000000,0.000265056000000,0.000073845000000,0.000078982000000,0.000246092000000,0.000160364000000 +0.000432167000000,0.000045796000000,0.000060414000000,0.000340512000000,0.000038290000000,0.000395030000000,0.000271771000000,0.000270191000000,0.017270869000000,0.017573091000000,0.000300216000000,0.000075426000000,0.000079771000000,0.000195524000000,0.000159179000000 +0.000327475000000,0.000045402000000,0.000058833000000,0.000262289000000,0.000037895000000,0.000340907000000,0.000267030000000,0.000274536000000,0.017477881000000,0.017637091000000,0.000274536000000,0.000072266000000,0.000077796000000,0.000220018000000,0.000158388000000 +0.000394240000000,0.000048166000000,0.000059623000000,0.000262290000000,0.000037895000000,0.000332216000000,0.000262685000000,0.000268216000000,0.017578227000000,0.017529239000000,0.000263870000000,0.000071871000000,0.000078982000000,0.000239377000000,0.000159179000000 +0.000330635000000,0.000045006000000,0.000057253000000,0.000303771000000,0.000037500000000,0.000381994000000,0.000282042000000,0.000408858000000,0.018074028000000,0.017451412000000,0.000310092000000,0.000071081000000,0.000077006000000,0.000229105000000,0.000167870000000 +0.000389500000000,0.000047377000000,0.000058833000000,0.000268610000000,0.000037894000000,0.000349598000000,0.000346042000000,0.000301796000000,0.018091017000000,0.017170918000000,0.000267821000000,0.000074240000000,0.000080562000000,0.000256759000000,0.000159179000000 +0.000325895000000,0.000064364000000,0.000057648000000,0.000263080000000,0.000037895000000,0.000367376000000,0.000267820000000,0.000348413000000,0.017468005000000,0.017368449000000,0.000264660000000,0.000073846000000,0.000079377000000,0.000323129000000,0.000159969000000 +0.000355919000000,0.000045401000000,0.000074241000000,0.000262684000000,0.000038685000000,0.000362240000000,0.000270191000000,0.000265845000000,0.017693585000000,0.017804992000000,0.000301006000000,0.000077401000000,0.000078982000000,0.000232660000000,0.000160364000000 +0.000338536000000,0.000047377000000,0.000058438000000,0.000264265000000,0.000038290000000,0.000379623000000,0.000262684000000,0.000266241000000,0.017413091000000,0.017576646000000,0.000266240000000,0.000108216000000,0.000092808000000,0.000194734000000,0.000161549000000 +0.000361846000000,0.000047772000000,0.000058834000000,0.000317204000000,0.000038290000000,0.000363820000000,0.000268611000000,0.000363030000000,0.017081635000000,0.018260103000000,0.000268216000000,0.000073845000000,0.000096759000000,0.000258339000000,0.000159969000000 +0.000460611000000,0.000047771000000,0.000057648000000,0.000272562000000,0.000037895000000,0.000369747000000,0.000378833000000,0.000293104000000,0.017862276000000,0.017347116000000,0.000262685000000,0.000071870000000,0.000084907000000,0.000219228000000,0.000163920000000 +0.000362240000000,0.000048166000000,0.000060019000000,0.000278487000000,0.000037895000000,0.000334981000000,0.000282043000000,0.000302982000000,0.017880448000000,0.017180795000000,0.000269006000000,0.000073846000000,0.000080561000000,0.000213698000000,0.000159179000000 +0.000491425000000,0.000045401000000,0.000058043000000,0.000302586000000,0.000037895000000,0.000370142000000,0.000269006000000,0.000263475000000,0.018091412000000,0.017364104000000,0.000370142000000,0.000071870000000,0.000081747000000,0.000225154000000,0.000157599000000 +0.000328660000000,0.000124019000000,0.000056857000000,0.000268611000000,0.000037895000000,0.000327475000000,0.000309697000000,0.000263475000000,0.017067412000000,0.017222277000000,0.000269006000000,0.000073451000000,0.000078586000000,0.000189598000000,0.000159574000000 +0.000380808000000,0.000083722000000,0.000057648000000,0.000306932000000,0.000037895000000,0.000350784000000,0.000269401000000,0.000338537000000,0.017741387000000,0.017373190000000,0.000275722000000,0.000110191000000,0.000078191000000,0.000237796000000,0.000159573000000 +0.000333796000000,0.000047771000000,0.000059228000000,0.000264660000000,0.000037895000000,0.000371722000000,0.000301401000000,0.000263870000000,0.018040449000000,0.017698721000000,0.000283623000000,0.000071870000000,0.000167476000000,0.000191969000000,0.000160759000000 +0.000378438000000,0.000045401000000,0.000057648000000,0.000269401000000,0.000037895000000,0.000332215000000,0.000269796000000,0.000299426000000,0.017268894000000,0.017596400000000,0.000265055000000,0.000072661000000,0.000078586000000,0.000243722000000,0.000162735000000 +0.000366191000000,0.000044610000000,0.000057648000000,0.000304167000000,0.000090043000000,0.000389500000000,0.000267426000000,0.000270586000000,0.017682523000000,0.018238374000000,0.000319574000000,0.000071475000000,0.000078191000000,0.000225944000000,0.000158784000000 +0.000416759000000,0.000047377000000,0.000060413000000,0.000264660000000,0.000037895000000,0.000365401000000,0.000299821000000,0.000264265000000,0.017471165000000,0.017135363000000,0.000275722000000,0.000074636000000,0.000078586000000,0.000315228000000,0.000158388000000 +0.000340117000000,0.000047376000000,0.000059623000000,0.000265845000000,0.000037500000000,0.000384363000000,0.000266636000000,0.000348413000000,0.017532400000000,0.017879659000000,0.000265450000000,0.000088463000000,0.000079376000000,0.000237796000000,0.000157204000000 +0.000394636000000,0.000047772000000,0.000059623000000,0.000424265000000,0.000037895000000,0.000332610000000,0.000280858000000,0.000264660000000,0.017307609000000,0.017688449000000,0.000314043000000,0.000110981000000,0.000077401000000,0.000213698000000,0.000158389000000 +0.000330635000000,0.000046981000000,0.000095969000000,0.000273352000000,0.000037895000000,0.000424265000000,0.000272956000000,0.000264660000000,0.018170424000000,0.017113634000000,0.000263870000000,0.000073845000000,0.000082142000000,0.000226734000000,0.000161154000000 +0.000361055000000,0.000047772000000,0.000100709000000,0.000316413000000,0.000037895000000,0.000329055000000,0.000267426000000,0.000299426000000,0.017428104000000,0.017356203000000,0.000265055000000,0.000071870000000,0.000080957000000,0.000223969000000,0.000200660000000 +0.000356314000000,0.000045401000000,0.000058438000000,0.000267426000000,0.000037895000000,0.000375278000000,0.000300610000000,0.000277698000000,0.017761930000000,0.017324597000000,0.000269006000000,0.000074241000000,0.000082537000000,0.000274141000000,0.000152857000000 +0.000328660000000,0.000046586000000,0.000058439000000,0.000265845000000,0.000037895000000,0.000331425000000,0.000264660000000,0.000306536000000,0.017487757000000,0.017499610000000,0.000363821000000,0.000073845000000,0.000076611000000,0.000227524000000,0.000149302000000 +0.000413203000000,0.000045796000000,0.000093994000000,0.000350388000000,0.000037894000000,0.000330240000000,0.000277697000000,0.000261500000000,0.017864251000000,0.018092201000000,0.000300215000000,0.000071475000000,0.000078981000000,0.000210932000000,0.000148117000000 +0.000332216000000,0.000101105000000,0.000058833000000,0.000263080000000,0.000037894000000,0.000508413000000,0.000307327000000,0.000260314000000,0.017841733000000,0.018396399000000,0.000268215000000,0.000144957000000,0.000079771000000,0.000281253000000,0.000185648000000 +0.000399771000000,0.000047771000000,0.000057253000000,0.000357499000000,0.000037895000000,0.000331031000000,0.000266240000000,0.000336956000000,0.017737832000000,0.017908498000000,0.000263080000000,0.000071871000000,0.000079772000000,0.000289154000000,0.000150093000000 +0.000366981000000,0.000045796000000,0.000057253000000,0.000265451000000,0.000037895000000,0.000353549000000,0.000265056000000,0.000267821000000,0.018966472000000,0.017738622000000,0.000301796000000,0.000072265000000,0.000075425000000,0.000193944000000,0.000149698000000 +0.000406092000000,0.000047376000000,0.000057253000000,0.000270586000000,0.000037895000000,0.000355920000000,0.000317994000000,0.000265055000000,0.017296548000000,0.017464844000000,0.000265450000000,0.000073845000000,0.000078586000000,0.000417549000000,0.000149302000000 +0.000361845000000,0.000047376000000,0.000059623000000,0.000351969000000,0.000038290000000,0.000404117000000,0.000267426000000,0.000286389000000,0.019490324000000,0.017946819000000,0.000300610000000,0.000073846000000,0.000076216000000,0.000234241000000,0.000147722000000 +0.000399772000000,0.000045006000000,0.000059228000000,0.000266635000000,0.000037895000000,0.000380018000000,0.000262290000000,0.000260709000000,0.017303264000000,0.017835017000000,0.000263870000000,0.000073846000000,0.000112957000000,0.000261895000000,0.000148907000000 +0.000336561000000,0.000045401000000,0.000058834000000,0.000265055000000,0.000037895000000,0.000348413000000,0.000265845000000,0.000391870000000,0.017363313000000,0.017630770000000,0.000263080000000,0.000120462000000,0.000080167000000,0.000199080000000,0.000148907000000 +0.000417944000000,0.000045006000000,0.000059624000000,0.000267820000000,0.000037895000000,0.000344067000000,0.000262685000000,0.000261500000000,0.018765386000000,0.019191658000000,0.000341302000000,0.000073846000000,0.000076611000000,0.000227129000000,0.000182487000000 +0.000333796000000,0.000047376000000,0.000057253000000,0.000267426000000,0.000038290000000,0.000440858000000,0.000315623000000,0.000263475000000,0.018275510000000,0.017507511000000,0.000265845000000,0.000071871000000,0.000084117000000,0.000278488000000,0.000255179000000 +0.000333401000000,0.000045796000000,0.000059623000000,0.000432561000000,0.000037895000000,0.000338537000000,0.000262290000000,0.000301005000000,0.018796596000000,0.017359758000000,0.000261500000000,0.000072660000000,0.000077796000000,0.000197895000000,0.000170636000000 +0.000369351000000,0.000044611000000,0.000059228000000,0.000744264000000,0.000037895000000,0.000372117000000,0.000348808000000,0.000263475000000,0.018404300000000,0.017458128000000,0.000276117000000,0.000071870000000,0.000076216000000,0.000238981000000,0.000153253000000 +0.000358290000000,0.000047377000000,0.000057648000000,0.000283228000000,0.000060019000000,0.000335376000000,0.000272167000000,0.000263475000000,0.017648152000000,0.017452202000000,0.000263080000000,0.000074635000000,0.000079771000000,0.000190389000000,0.000150093000000 +0.000475228000000,0.000045006000000,0.000078587000000,0.000314043000000,0.000038685000000,0.000446388000000,0.000280462000000,0.000585055000000,0.019494670000000,0.017749684000000,0.000332216000000,0.000110191000000,0.000078586000000,0.000251228000000,0.000147722000000 +0.000348018000000,0.000047772000000,0.000057648000000,0.000278487000000,0.000037895000000,0.000333006000000,0.000314833000000,0.000298636000000,0.018100498000000,0.017511066000000,0.000260709000000,0.000070685000000,0.000078192000000,0.000237401000000,0.000149697000000 +0.000417944000000,0.000047772000000,0.000060019000000,0.000283228000000,0.000038290000000,0.000330635000000,0.000269401000000,0.000265845000000,0.017764696000000,0.017709782000000,0.000264660000000,0.000071870000000,0.000077796000000,0.000284809000000,0.000146932000000 +0.000331031000000,0.000080167000000,0.000058833000000,0.000335771000000,0.000038685000000,0.000338537000000,0.000265055000000,0.000261105000000,0.019047460000000,0.018062177000000,0.000302981000000,0.000074636000000,0.000076610000000,0.000243722000000,0.000151277000000 +0.000395425000000,0.000047771000000,0.000059228000000,0.000267425000000,0.000039081000000,0.000358290000000,0.000322339000000,0.000327475000000,0.018059411000000,0.017295362000000,0.000263080000000,0.000072265000000,0.000079772000000,0.000191573000000,0.000206191000000 +0.000351178000000,0.000044611000000,0.000059623000000,0.000265846000000,0.000037895000000,0.000429796000000,0.000268611000000,0.000273351000000,0.017148400000000,0.019029287000000,0.000267821000000,0.000071870000000,0.000082932000000,0.000293895000000,0.000147327000000 +0.000403327000000,0.000047376000000,0.000058833000000,0.000265055000000,0.000037895000000,0.000336561000000,0.000267426000000,0.000330240000000,0.017663560000000,0.017890325000000,0.000370142000000,0.000071475000000,0.000077401000000,0.000192364000000,0.000150487000000 +0.000329450000000,0.000047376000000,0.000058043000000,0.000269006000000,0.000037895000000,0.000442043000000,0.000269796000000,0.000262684000000,0.017685683000000,0.017554128000000,0.000263475000000,0.000071475000000,0.000078587000000,0.000246882000000,0.000148118000000 +0.000326685000000,0.000048166000000,0.000059623000000,0.000299425000000,0.000038290000000,0.000334191000000,0.000272167000000,0.000262684000000,0.017277585000000,0.019293188000000,0.000299031000000,0.000071080000000,0.000082932000000,0.000267031000000,0.000163525000000 +0.000336956000000,0.000048166000000,0.000056858000000,0.000263079000000,0.000037895000000,0.000403327000000,0.000299425000000,0.000298636000000,0.016922030000000,0.018104053000000,0.000270191000000,0.000075031000000,0.000082141000000,0.000201055000000,0.000150883000000 +0.000346833000000,0.000045401000000,0.000059228000000,0.000265055000000,0.000037895000000,0.000363030000000,0.000264661000000,0.000269796000000,0.017293387000000,0.017817238000000,0.000272956000000,0.000073845000000,0.000081746000000,0.000299426000000,0.000147722000000 +0.000382784000000,0.000093599000000,0.000059228000000,0.000346833000000,0.000038290000000,0.000404512000000,0.000269401000000,0.000263475000000,0.017734276000000,0.018089436000000,0.000348018000000,0.000073845000000,0.000094783000000,0.000213302000000,0.000147327000000 +0.000335771000000,0.000047376000000,0.000056068000000,0.000314043000000,0.000037895000000,0.000345648000000,0.000314043000000,0.000302191000000,0.017435610000000,0.016995116000000,0.000264265000000,0.000071475000000,0.000078191000000,0.000247278000000,0.000202241000000 +0.000376067000000,0.000047771000000,0.000057648000000,0.000299821000000,0.000038290000000,0.000677499000000,0.000262684000000,0.000271376000000,0.017081635000000,0.018748398000000,0.000269006000000,0.000167475000000,0.000077006000000,0.000234240000000,0.000150092000000 +0.000445994000000,0.000050142000000,0.000095179000000,0.000263870000000,0.000037895000000,0.000434537000000,0.000264660000000,0.000262290000000,0.017847264000000,0.017299708000000,0.000262290000000,0.000071080000000,0.000077796000000,0.000280463000000,0.000147327000000 +0.000422684000000,0.000044611000000,0.000059623000000,0.000263080000000,0.000038290000000,0.000335771000000,0.000263080000000,0.000265451000000,0.017734276000000,0.017220301000000,0.000268216000000,0.000074241000000,0.000078191000000,0.000212512000000,0.000149303000000 +0.000355129000000,0.000047376000000,0.000059228000000,0.000312858000000,0.000037895000000,0.000325500000000,0.000266240000000,0.000264265000000,0.017829486000000,0.017902177000000,0.000354734000000,0.000071870000000,0.000081747000000,0.000209747000000,0.000199870000000 +0.000449154000000,0.000045006000000,0.000057253000000,0.000263475000000,0.000037895000000,0.000343278000000,0.000302586000000,0.000316808000000,0.017339610000000,0.017777338000000,0.000469697000000,0.000073056000000,0.000089648000000,0.000252808000000,0.000149697000000 +0.000328660000000,0.000064364000000,0.000059623000000,0.000269006000000,0.000037895000000,0.000364215000000,0.000283228000000,0.000261104000000,0.017802622000000,0.017961436000000,0.000299425000000,0.000073451000000,0.000079376000000,0.000250833000000,0.000152068000000 +0.000448363000000,0.000047771000000,0.000058834000000,0.000334587000000,0.000082932000000,0.000372907000000,0.000269401000000,0.000279673000000,0.017424152000000,0.018217831000000,0.000266636000000,0.000073845000000,0.000077796000000,0.000189598000000,0.000152068000000 +0.000360660000000,0.000047376000000,0.000059229000000,0.000263080000000,0.000054092000000,0.000349598000000,0.000282833000000,0.000414388000000,0.017324202000000,0.017428498000000,0.000297450000000,0.000073845000000,0.000080561000000,0.000295870000000,0.000231475000000 +0.000395031000000,0.000045401000000,0.000139426000000,0.000334586000000,0.000037895000000,0.000370536000000,0.000265450000000,0.000316809000000,0.017354227000000,0.017735857000000,0.000267425000000,0.000071870000000,0.000078191000000,0.000220018000000,0.000150093000000 +0.000342092000000,0.000047376000000,0.000060018000000,0.000277302000000,0.000037895000000,0.000335771000000,0.000300611000000,0.000292709000000,0.017601931000000,0.017419017000000,0.000264660000000,0.000073450000000,0.000077796000000,0.000230685000000,0.000150883000000 +0.000432166000000,0.000047376000000,0.000059623000000,0.000263475000000,0.000038290000000,0.000366191000000,0.000272562000000,0.000290734000000,0.017578622000000,0.017318276000000,0.000374882000000,0.000073846000000,0.000213302000000,0.000243722000000,0.000147722000000 +0.000329846000000,0.000047377000000,0.000058438000000,0.000305746000000,0.000037500000000,0.000353549000000,0.000275327000000,0.000356314000000,0.018005683000000,0.017213585000000,0.000265055000000,0.000071475000000,0.000079376000000,0.000228710000000,0.000186438000000 +0.000333005000000,0.000047377000000,0.000059623000000,0.000265451000000,0.000037895000000,0.000384363000000,0.000300611000000,0.000290734000000,0.017803016000000,0.017300893000000,0.000263080000000,0.000122438000000,0.000075820000000,0.000251228000000,0.000148908000000 +0.000331425000000,0.000046982000000,0.000058438000000,0.000267031000000,0.000037895000000,0.000329055000000,0.000263870000000,0.000310092000000,0.017654868000000,0.017794325000000,0.000281648000000,0.000074240000000,0.000079377000000,0.000270191000000,0.000150883000000 +0.000331030000000,0.000045006000000,0.000078586000000,0.000264660000000,0.000038290000000,0.000327870000000,0.000265450000000,0.000346833000000,0.017615758000000,0.017283116000000,0.000265055000000,0.000074241000000,0.000078981000000,0.000233451000000,0.000148117000000 +0.000385549000000,0.000046981000000,0.000059623000000,0.000266241000000,0.000038290000000,0.000329055000000,0.000380413000000,0.000299820000000,0.017417437000000,0.017222276000000,0.000301796000000,0.000073845000000,0.000078192000000,0.000256364000000,0.000222389000000 +0.000421894000000,0.000046982000000,0.000058438000000,0.000301006000000,0.000037895000000,0.000335771000000,0.000262685000000,0.000328660000000,0.017934967000000,0.017632746000000,0.000260709000000,0.000074240000000,0.000079771000000,0.000265055000000,0.000148907000000 +0.000345648000000,0.000064759000000,0.000058043000000,0.000277302000000,0.000037895000000,0.000365401000000,0.000440067000000,0.000288759000000,0.017048845000000,0.017191067000000,0.000262685000000,0.000074240000000,0.000079376000000,0.000239377000000,0.000152463000000 +0.000360661000000,0.000048562000000,0.000060018000000,0.000265055000000,0.000037895000000,0.000330635000000,0.000264265000000,0.000296265000000,0.017592449000000,0.017675807000000,0.000299426000000,0.000109796000000,0.000078586000000,0.000178537000000,0.000152858000000 +0.000398981000000,0.000050142000000,0.000059228000000,0.000301796000000,0.000038290000000,0.000364611000000,0.000287968000000,0.000334981000000,0.017648942000000,0.018048350000000,0.000264266000000,0.000073845000000,0.000116117000000,0.000284019000000,0.000189994000000 +0.000334191000000,0.000063969000000,0.000059228000000,0.000263080000000,0.000037894000000,0.000349598000000,0.000262685000000,0.000376462000000,0.017099808000000,0.017626819000000,0.000263080000000,0.000075821000000,0.000081351000000,0.000195919000000,0.000148512000000 +0.000794437000000,0.000049747000000,0.000093599000000,0.000267426000000,0.000038685000000,0.000365006000000,0.000263080000000,0.000379228000000,0.017394918000000,0.018365979000000,0.000316413000000,0.000074240000000,0.000075821000000,0.000247278000000,0.000146932000000 +0.000387129000000,0.000048167000000,0.000058833000000,0.000262290000000,0.000037895000000,0.000369747000000,0.000353549000000,0.000293500000000,0.017460894000000,0.017022771000000,0.000264660000000,0.000073846000000,0.000077796000000,0.000197894000000,0.000151277000000 +0.000329056000000,0.000047772000000,0.000058438000000,0.000271376000000,0.000038290000000,0.000333005000000,0.000264660000000,0.000291129000000,0.017194227000000,0.017311165000000,0.000285599000000,0.000073845000000,0.000078586000000,0.000241747000000,0.000188018000000 +0.000390290000000,0.000048166000000,0.000059228000000,0.000299030000000,0.000038290000000,0.000368957000000,0.000264660000000,0.000288759000000,0.017948004000000,0.017535956000000,0.000261500000000,0.000109796000000,0.000080166000000,0.000216462000000,0.000149697000000 +0.000328265000000,0.000083327000000,0.000060019000000,0.000267426000000,0.000037895000000,0.000374882000000,0.000284414000000,0.000309302000000,0.017033832000000,0.017376745000000,0.000266635000000,0.000074240000000,0.000144957000000,0.000193549000000,0.000152463000000 +0.000355919000000,0.000048167000000,0.000065549000000,0.000265451000000,0.000056463000000,0.000334191000000,0.000269796000000,0.000291130000000,0.017726770000000,0.017433239000000,0.000299426000000,0.000071475000000,0.000080562000000,0.000453500000000,0.000154043000000 +0.000347228000000,0.000045006000000,0.000059228000000,0.000299030000000,0.000089253000000,0.000361845000000,0.000301796000000,0.000291129000000,0.018007263000000,0.018375855000000,0.000269005000000,0.000071476000000,0.000076611000000,0.000195524000000,0.000183278000000 +0.000353549000000,0.000045006000000,0.000078191000000,0.000268216000000,0.000038290000000,0.000370932000000,0.000267030000000,0.000356709000000,0.017103363000000,0.017345535000000,0.000264661000000,0.000073451000000,0.000080166000000,0.000284808000000,0.000149302000000 +0.000362240000000,0.000045006000000,0.000058043000000,0.000306536000000,0.000037894000000,0.000331821000000,0.000265055000000,0.000280462000000,0.017497634000000,0.018007659000000,0.000264265000000,0.000072266000000,0.000078981000000,0.000232265000000,0.000148907000000 +0.000353944000000,0.000045006000000,0.000057253000000,0.000714240000000,0.000037894000000,0.000363821000000,0.000311672000000,0.000292710000000,0.017365288000000,0.017212399000000,0.000268216000000,0.000078587000000,0.000079376000000,0.000296660000000,0.000146537000000 +0.000373302000000,0.000045006000000,0.000059228000000,0.000270981000000,0.000038290000000,0.000349203000000,0.000266241000000,0.000295079000000,0.017381091000000,0.017466029000000,0.000312462000000,0.000074240000000,0.000117303000000,0.000267821000000,0.000260314000000 +0.000332216000000,0.000047377000000,0.000059228000000,0.000263870000000,0.000037895000000,0.000385549000000,0.000264660000000,0.000282833000000,0.017856745000000,0.017622869000000,0.000274141000000,0.000073845000000,0.000077797000000,0.000215277000000,0.000165105000000 +0.000374092000000,0.000045401000000,0.000059228000000,0.000318389000000,0.000037895000000,0.000327080000000,0.000339722000000,0.000286389000000,0.017777338000000,0.017416647000000,0.000267426000000,0.000077796000000,0.000080957000000,0.000224759000000,0.000152462000000 +0.000357105000000,0.000045401000000,0.000059623000000,0.000267030000000,0.000038685000000,0.000355129000000,0.000265450000000,0.000333795000000,0.017205684000000,0.017252696000000,0.000317994000000,0.000074240000000,0.000077006000000,0.000215277000000,0.000215673000000 +0.000428610000000,0.000045401000000,0.000093598000000,0.000266636000000,0.000037895000000,0.000329055000000,0.000262290000000,0.000316019000000,0.017208844000000,0.018097337000000,0.000269401000000,0.000074635000000,0.000080957000000,0.000244907000000,0.000152068000000 +0.000333006000000,0.000045006000000,0.000059623000000,0.000265846000000,0.000038290000000,0.000342092000000,0.000267820000000,0.000319969000000,0.017144449000000,0.017663165000000,0.000272166000000,0.000075426000000,0.000080166000000,0.000317994000000,0.000149302000000 +0.000356709000000,0.000045006000000,0.000057647000000,0.000266240000000,0.000037895000000,0.000383969000000,0.000262290000000,0.000265450000000,0.017522919000000,0.018898917000000,0.000267821000000,0.000164710000000,0.000077401000000,0.000239771000000,0.000148907000000 +0.000328265000000,0.000047377000000,0.000059623000000,0.000306932000000,0.000037895000000,0.000348808000000,0.000352364000000,0.000414784000000,0.017524103000000,0.017812103000000,0.000261895000000,0.000103475000000,0.000082142000000,0.000218437000000,0.000185253000000 +0.000359080000000,0.000046587000000,0.000058833000000,0.000285203000000,0.000037895000000,0.000398586000000,0.000267030000000,0.000277302000000,0.017365684000000,0.017095857000000,0.000304561000000,0.000071870000000,0.000076216000000,0.000209351000000,0.000148512000000 +0.000387524000000,0.000066339000000,0.000059623000000,0.000286784000000,0.000039080000000,0.000329056000000,0.000269795000000,0.000299031000000,0.018127757000000,0.017654868000000,0.000274142000000,0.000074240000000,0.000082536000000,0.000251229000000,0.000153253000000 +0.000354734000000,0.000046981000000,0.000058043000000,0.000283228000000,0.000039475000000,0.000368561000000,0.000311673000000,0.000267821000000,0.017088746000000,0.017101387000000,0.000261895000000,0.000073845000000,0.000082142000000,0.000235425000000,0.000149302000000 +0.000401352000000,0.000049746000000,0.000095179000000,0.000284018000000,0.000037895000000,0.000338932000000,0.000280463000000,0.000269400000000,0.018230078000000,0.017963806000000,0.000338931000000,0.000073845000000,0.000079377000000,0.000191178000000,0.000189598000000 +0.000332215000000,0.000046192000000,0.000056858000000,0.000280858000000,0.000038685000000,0.000336956000000,0.000269795000000,0.000304957000000,0.020540002000000,0.018134078000000,0.000266636000000,0.000073055000000,0.000110586000000,0.000264660000000,0.000149302000000 +0.000419524000000,0.000045006000000,0.000057648000000,0.000282438000000,0.000038290000000,0.000408463000000,0.000262685000000,0.000263080000000,0.017673436000000,0.017853980000000,0.000262685000000,0.000071870000000,0.000078191000000,0.000203425000000,0.000155624000000 +0.000350389000000,0.000047377000000,0.000059229000000,0.000282043000000,0.000038290000000,0.000329055000000,0.000271376000000,0.000275326000000,0.017525683000000,0.017893486000000,0.000357895000000,0.000075426000000,0.000082141000000,0.000236216000000,0.000150488000000 +0.000370141000000,0.000045006000000,0.000057648000000,0.000315228000000,0.000057252000000,0.000330241000000,0.000314833000000,0.000264660000000,0.018692300000000,0.017218721000000,0.000268215000000,0.000073451000000,0.000080167000000,0.000295475000000,0.000223969000000 +0.000330240000000,0.000046981000000,0.000058438000000,0.000279673000000,0.000090043000000,0.000334586000000,0.000265055000000,0.000265450000000,0.017773782000000,0.017401635000000,0.000301796000000,0.000072265000000,0.000080562000000,0.000185252000000,0.000151673000000 +0.000368166000000,0.000117302000000,0.000058439000000,0.000289154000000,0.000051722000000,0.000404907000000,0.000263080000000,0.000300611000000,0.017568350000000,0.019454373000000,0.000265845000000,0.000073055000000,0.000077797000000,0.000242537000000,0.000148512000000 +0.000351178000000,0.000045006000000,0.000058833000000,0.000291524000000,0.000039475000000,0.000368167000000,0.000299821000000,0.000269796000000,0.017346326000000,0.018429189000000,0.000261895000000,0.000110981000000,0.000082537000000,0.000212117000000,0.000152067000000 +0.000328265000000,0.000044611000000,0.000073055000000,0.000297845000000,0.000038290000000,0.000368562000000,0.000269006000000,0.000263475000000,0.017246375000000,0.019535756000000,0.000316413000000,0.000071870000000,0.000080166000000,0.000234240000000,0.000189203000000 +0.000350388000000,0.000047377000000,0.000057253000000,0.000286784000000,0.000039475000000,0.000353549000000,0.000263870000000,0.000306142000000,0.017471560000000,0.018191758000000,0.000273352000000,0.000074240000000,0.000077796000000,0.000227525000000,0.000150487000000 +0.000353549000000,0.000048167000000,0.000059624000000,0.000285203000000,0.000037895000000,0.000440463000000,0.000500512000000,0.000268216000000,0.017125486000000,0.017926671000000,0.000261895000000,0.000073450000000,0.000079377000000,0.000205796000000,0.000154043000000 +0.000385944000000,0.000047377000000,0.000057253000000,0.000284808000000,0.000037895000000,0.000328265000000,0.000266635000000,0.000261500000000,0.018468695000000,0.018204004000000,0.000269796000000,0.000074241000000,0.000078192000000,0.000219623000000,0.000155623000000 +0.000349993000000,0.000047771000000,0.000058833000000,0.000321154000000,0.000038290000000,0.000365401000000,0.000300611000000,0.000308117000000,0.016966277000000,0.017471165000000,0.000273747000000,0.000071475000000,0.000116907000000,0.000178537000000,0.000222388000000 +0.000370537000000,0.000046981000000,0.000059624000000,0.000287573000000,0.000037895000000,0.000338141000000,0.000266635000000,0.000262290000000,0.017690424000000,0.017847659000000,0.000300215000000,0.000086883000000,0.000077796000000,0.000324315000000,0.000152858000000 +0.000328265000000,0.000045006000000,0.000057253000000,0.000282043000000,0.000037895000000,0.000328660000000,0.000269796000000,0.000304957000000,0.017640251000000,0.016835116000000,0.000280857000000,0.000074241000000,0.000077401000000,0.000205006000000,0.000152067000000 +0.000368956000000,0.000047376000000,0.000059623000000,0.000289944000000,0.000037895000000,0.000328660000000,0.000307327000000,0.000260709000000,0.017314721000000,0.016760055000000,0.000264660000000,0.000072265000000,0.000078192000000,0.000262290000000,0.000147327000000 +0.000352759000000,0.000045006000000,0.000058833000000,0.000279673000000,0.000037895000000,0.000331426000000,0.000269796000000,0.000269006000000,0.017624844000000,0.016705536000000,0.000299426000000,0.000071475000000,0.000080957000000,0.000277697000000,0.000186043000000 +0.000398981000000,0.000048167000000,0.000059623000000,0.000291920000000,0.000037895000000,0.000362635000000,0.000305746000000,0.000300611000000,0.017600351000000,0.016789289000000,0.000271376000000,0.000073845000000,0.000077006000000,0.000212117000000,0.000148907000000 +0.000342882000000,0.000046982000000,0.000057648000000,0.000284018000000,0.000037895000000,0.000353154000000,0.000270191000000,0.000321945000000,0.017225832000000,0.017335264000000,0.000263080000000,0.000073450000000,0.000097549000000,0.000228709000000,0.000156808000000 +0.000389500000000,0.000045401000000,0.000089648000000,0.000278883000000,0.000037895000000,0.000422684000000,0.000273352000000,0.000314043000000,0.017645387000000,0.017076894000000,0.000304956000000,0.000071475000000,0.000076611000000,0.000216067000000,0.000187228000000 +0.000329845000000,0.000045401000000,0.000059623000000,0.000283228000000,0.000037895000000,0.000326290000000,0.000336166000000,0.000266240000000,0.017144054000000,0.016499314000000,0.000267030000000,0.000071870000000,0.000079771000000,0.000291524000000,0.000150092000000 +0.000362240000000,0.000081352000000,0.000057648000000,0.000283228000000,0.000037499000000,0.000365006000000,0.000270981000000,0.000269006000000,0.017277585000000,0.017550177000000,0.000336562000000,0.000074241000000,0.000079772000000,0.000234240000000,0.000149697000000 +0.000465351000000,0.000047376000000,0.000060414000000,0.000289549000000,0.000037895000000,0.000330240000000,0.000306932000000,0.000410833000000,0.017653684000000,0.017343955000000,0.000261895000000,0.000071080000000,0.000079772000000,0.000233451000000,0.000149697000000 +0.000357500000000,0.000047771000000,0.000058043000000,0.000283228000000,0.000073846000000,0.000334586000000,0.000263475000000,0.000261500000000,0.017514227000000,0.017531215000000,0.000261894000000,0.000073845000000,0.000076611000000,0.000214093000000,0.000167080000000 +0.000370142000000,0.000047377000000,0.000061204000000,0.000273351000000,0.000038685000000,0.000329450000000,0.000312462000000,0.000302981000000,0.017230967000000,0.017212004000000,0.000352759000000,0.000075426000000,0.000115327000000,0.000201451000000,0.000150487000000 +0.000352364000000,0.000045006000000,0.000063969000000,0.000298241000000,0.000037895000000,0.000353549000000,0.000334191000000,0.000272956000000,0.017724004000000,0.016841832000000,0.000268216000000,0.000071475000000,0.000078586000000,0.000267425000000,0.000151672000000 +0.000399376000000,0.000047376000000,0.000057253000000,0.000263870000000,0.000037895000000,0.000381598000000,0.000265451000000,0.000267031000000,0.017875708000000,0.016575956000000,0.000297450000000,0.000073055000000,0.000078192000000,0.000261105000000,0.000148908000000 +0.000331030000000,0.000048562000000,0.000058438000000,0.000261895000000,0.000037895000000,0.000329845000000,0.000263870000000,0.000346833000000,0.018130128000000,0.017030672000000,0.000262685000000,0.000071870000000,0.000080562000000,0.000191969000000,0.000149697000000 +0.000364611000000,0.000058833000000,0.000059228000000,0.000351179000000,0.000037500000000,0.000661302000000,0.000263080000000,0.000268610000000,0.017139708000000,0.016710277000000,0.000260710000000,0.000073845000000,0.000080166000000,0.000289944000000,0.000148117000000 +0.000327870000000,0.000062389000000,0.000062389000000,0.000265450000000,0.000038290000000,0.000343277000000,0.000267426000000,0.000261895000000,0.017988695000000,0.017074523000000,0.000351968000000,0.000073845000000,0.000076611000000,0.000192759000000,0.000154043000000 +0.000391475000000,0.000047772000000,0.000059623000000,0.000262685000000,0.000037894000000,0.000356709000000,0.000331821000000,0.000283624000000,0.018099708000000,0.017030672000000,0.000268216000000,0.000071080000000,0.000148512000000,0.000216463000000,0.000150093000000 +0.000400167000000,0.000047376000000,0.000058438000000,0.000262685000000,0.000038290000000,0.000364610000000,0.000265056000000,0.000263080000000,0.017714523000000,0.017347906000000,0.000285993000000,0.000109796000000,0.000076216000000,0.000284018000000,0.000150882000000 +0.000370536000000,0.000046981000000,0.000058834000000,0.000266635000000,0.000037895000000,0.000425846000000,0.000267030000000,0.000338141000000,0.017647363000000,0.017228597000000,0.000260710000000,0.000073845000000,0.000076611000000,0.000214487000000,0.000150882000000 +0.000330636000000,0.000047376000000,0.000057253000000,0.000303376000000,0.000037895000000,0.000357105000000,0.000346438000000,0.000263079000000,0.017942868000000,0.016933881000000,0.000264265000000,0.000071080000000,0.000080562000000,0.000240957000000,0.000149697000000 +0.000358290000000,0.000046981000000,0.000059228000000,0.000264265000000,0.000037895000000,0.000365796000000,0.000265056000000,0.000260315000000,0.017392943000000,0.016684597000000,0.000303771000000,0.000071870000000,0.000078586000000,0.000233845000000,0.000149303000000 +0.000331031000000,0.000047376000000,0.000060018000000,0.000308117000000,0.000037500000000,0.000348808000000,0.000310092000000,0.000330240000000,0.017566375000000,0.016912944000000,0.000308512000000,0.000074240000000,0.000082142000000,0.000249648000000,0.000152068000000 +0.000327475000000,0.000081351000000,0.000058834000000,0.000307327000000,0.000037895000000,0.000417153000000,0.000262290000000,0.000265846000000,0.017413881000000,0.016445190000000,0.000312462000000,0.000072660000000,0.000093204000000,0.000192759000000,0.000148512000000 +0.000365796000000,0.000047376000000,0.000056858000000,0.000266240000000,0.000038685000000,0.000331425000000,0.000266635000000,0.000326289000000,0.017356992000000,0.016651018000000,0.000266636000000,0.000071475000000,0.000079771000000,0.000291525000000,0.000150488000000 +0.000357895000000,0.000045006000000,0.000060413000000,0.000373697000000,0.000038290000000,0.000425450000000,0.000341697000000,0.000262289000000,0.017985931000000,0.017036598000000,0.000265055000000,0.000072265000000,0.000080957000000,0.000214882000000,0.000148907000000 +0.000367771000000,0.000047377000000,0.000058438000000,0.000293104000000,0.000043426000000,0.000332611000000,0.000263080000000,0.000262290000000,0.017093092000000,0.017143659000000,0.000339327000000,0.000072266000000,0.000078191000000,0.000182092000000,0.000186043000000 +0.000355129000000,0.000045006000000,0.000058833000000,0.000265055000000,0.000037895000000,0.000438488000000,0.000263475000000,0.000299426000000,0.018294473000000,0.016631659000000,0.000269796000000,0.000071080000000,0.000076611000000,0.000249648000000,0.000149302000000 +0.000406487000000,0.000045401000000,0.000056858000000,0.000262290000000,0.000037895000000,0.000351178000000,0.000340117000000,0.000268216000000,0.017136548000000,0.017088746000000,0.000276512000000,0.000072660000000,0.000098339000000,0.000192364000000,0.000148117000000 +0.000356314000000,0.000047376000000,0.000059623000000,0.000271772000000,0.000038290000000,0.000348413000000,0.000329055000000,0.000260709000000,0.017194622000000,0.016607956000000,0.000266241000000,0.000075426000000,0.000077006000000,0.000246093000000,0.000148907000000 +0.000429796000000,0.000046586000000,0.000059623000000,0.000351178000000,0.000037500000000,0.000352364000000,0.000360265000000,0.000337747000000,0.017766276000000,0.016868302000000,0.000263475000000,0.000073845000000,0.000078586000000,0.000222388000000,0.000180117000000 +0.000370537000000,0.000045796000000,0.000059623000000,0.000269401000000,0.000112166000000,0.000353944000000,0.000276907000000,0.000263475000000,0.017941683000000,0.016683413000000,0.000300611000000,0.000107821000000,0.000077796000000,0.000279277000000,0.000147327000000 +0.000396215000000,0.000047376000000,0.000058043000000,0.000263475000000,0.000041845000000,0.000406093000000,0.000298635000000,0.000301401000000,0.017513042000000,0.016622969000000,0.000261104000000,0.000071080000000,0.000078191000000,0.000225944000000,0.000148512000000 +0.000335376000000,0.000050141000000,0.000057253000000,0.000301401000000,0.000072660000000,0.000368561000000,0.000267821000000,0.000263079000000,0.017500794000000,0.017272450000000,0.000262684000000,0.000072660000000,0.000077006000000,0.000289549000000,0.000150487000000 +0.000328660000000,0.000046982000000,0.000115722000000,0.000273746000000,0.000128364000000,0.000359870000000,0.000265451000000,0.000271377000000,0.018793040000000,0.017312350000000,0.000299820000000,0.000074241000000,0.000115722000000,0.000220018000000,0.000151277000000 +0.000421895000000,0.000049351000000,0.000088463000000,0.000338142000000,0.000124018000000,0.000336167000000,0.000303376000000,0.000335771000000,0.018012004000000,0.017487758000000,0.000264660000000,0.000073055000000,0.000084117000000,0.000199079000000,0.000148117000000 +0.000388709000000,0.000047376000000,0.000058833000000,0.000266241000000,0.000072660000000,0.000425055000000,0.000262290000000,0.000263870000000,0.017429684000000,0.016711857000000,0.000265450000000,0.000072266000000,0.000079377000000,0.000327475000000,0.000152463000000 +0.000333006000000,0.000047376000000,0.000058833000000,0.000270981000000,0.000041450000000,0.000331821000000,0.000313252000000,0.000271376000000,0.017356992000000,0.016670771000000,0.000264660000000,0.000131525000000,0.000077401000000,0.000233056000000,0.000195920000000 +0.000350388000000,0.000086488000000,0.000057252000000,0.000337351000000,0.000053698000000,0.000391475000000,0.000304562000000,0.000264660000000,0.018106819000000,0.017384647000000,0.000267426000000,0.000074241000000,0.000078191000000,0.000214092000000,0.000148907000000 +0.000381203000000,0.000067130000000,0.000099524000000,0.000262290000000,0.000051722000000,0.000332216000000,0.000263080000000,0.000317598000000,0.017272054000000,0.017057141000000,0.000301796000000,0.000074636000000,0.000078191000000,0.000319969000000,0.000149697000000 +0.000354340000000,0.000050141000000,0.000060018000000,0.000266241000000,0.000038290000000,0.000403326000000,0.000262685000000,0.000335376000000,0.017504745000000,0.017988300000000,0.000266241000000,0.000072660000000,0.000133895000000,0.000196314000000,0.000148512000000 +0.000332216000000,0.000047376000000,0.000058833000000,0.000318388000000,0.000073846000000,0.000333006000000,0.000284808000000,0.000275326000000,0.017524104000000,0.018265633000000,0.000262685000000,0.000074636000000,0.000136265000000,0.000228315000000,0.000153648000000 +0.000331426000000,0.000045006000000,0.000060413000000,0.000269006000000,0.000037895000000,0.000331820000000,0.000270586000000,0.000262685000000,0.016973783000000,0.016977733000000,0.000397006000000,0.000073845000000,0.000097155000000,0.000325894000000,0.000146932000000 +0.000407277000000,0.000047377000000,0.000057648000000,0.000297450000000,0.000038290000000,0.000329055000000,0.000302191000000,0.000302981000000,0.017453783000000,0.016530524000000,0.000265451000000,0.000109401000000,0.000080562000000,0.000197104000000,0.000148907000000 +0.000352759000000,0.000045006000000,0.000057648000000,0.000267031000000,0.000038290000000,0.000346043000000,0.000268611000000,0.000267426000000,0.019496250000000,0.017002622000000,0.000271772000000,0.000086883000000,0.000077401000000,0.000232660000000,0.000150487000000 +0.000399376000000,0.000118883000000,0.000059623000000,0.000264265000000,0.000039080000000,0.000596117000000,0.000264265000000,0.000319573000000,0.018335560000000,0.016409635000000,0.000263080000000,0.000073450000000,0.000114932000000,0.000291129000000,0.000147327000000 +0.000381203000000,0.000045006000000,0.000059623000000,0.000353154000000,0.000037895000000,0.000337352000000,0.000299821000000,0.000266635000000,0.018089041000000,0.016863561000000,0.000265055000000,0.000073845000000,0.000079771000000,0.000231080000000,0.000242142000000 +0.000427426000000,0.000047377000000,0.000059623000000,0.000263475000000,0.000041451000000,0.000364611000000,0.000263080000000,0.000261499000000,0.019391164000000,0.017178820000000,0.000335376000000,0.000075031000000,0.000078982000000,0.000218043000000,0.000149302000000 +0.000331425000000,0.000046982000000,0.000057253000000,0.000283228000000,0.000037895000000,0.000333401000000,0.000265056000000,0.000299821000000,0.017690029000000,0.017062672000000,0.000262684000000,0.000110586000000,0.000078191000000,0.000283228000000,0.000150883000000 +0.000385154000000,0.000047377000000,0.000056858000000,0.000269401000000,0.000037895000000,0.000380413000000,0.000262685000000,0.000274537000000,0.017526079000000,0.017140103000000,0.000264265000000,0.000073450000000,0.000077796000000,0.000248857000000,0.000186438000000 +0.000359080000000,0.000047376000000,0.000057648000000,0.000270981000000,0.000037895000000,0.000331031000000,0.000264660000000,0.000267425000000,0.017281931000000,0.017083610000000,0.000321944000000,0.000073846000000,0.000078191000000,0.000200661000000,0.000149697000000 +0.000406487000000,0.000045402000000,0.000060018000000,0.000449549000000,0.000038290000000,0.000434537000000,0.000301796000000,0.000703969000000,0.017829881000000,0.019022966000000,0.000278093000000,0.000074636000000,0.000097550000000,0.000313647000000,0.000150488000000 +0.000329055000000,0.000047376000000,0.000060018000000,0.000389105000000,0.000037894000000,0.000332610000000,0.000264265000000,0.000313648000000,0.017700695000000,0.017661190000000,0.000329846000000,0.000071870000000,0.000121253000000,0.000193155000000,0.000151278000000 +0.000373302000000,0.000047377000000,0.000105845000000,0.000315228000000,0.000038290000000,0.000383179000000,0.000263870000000,0.000280068000000,0.017703066000000,0.018040843000000,0.000261105000000,0.000072266000000,0.000083327000000,0.000223969000000,0.000187228000000 +0.000353549000000,0.000047772000000,0.000058438000000,0.000266240000000,0.000056858000000,0.000379228000000,0.000334586000000,0.000282438000000,0.017075709000000,0.017061091000000,0.000268216000000,0.000145747000000,0.000078191000000,0.000316808000000,0.000150487000000 +0.000330241000000,0.000049352000000,0.000056858000000,0.000359870000000,0.000054092000000,0.000365796000000,0.000266240000000,0.000279277000000,0.018530720000000,0.017225832000000,0.000267031000000,0.000073450000000,0.000079771000000,0.000206587000000,0.000147722000000 +0.000373698000000,0.000047376000000,0.000058438000000,0.000263080000000,0.000052512000000,0.000330240000000,0.000262290000000,0.000280068000000,0.017994227000000,0.016553833000000,0.000283228000000,0.000073845000000,0.000076611000000,0.000329845000000,0.000155228000000 +0.000348809000000,0.000047376000000,0.000059228000000,0.000302586000000,0.000037895000000,0.000349203000000,0.000333796000000,0.000285598000000,0.017427708000000,0.016897536000000,0.000355129000000,0.000071870000000,0.000080562000000,0.000237006000000,0.000184068000000 +0.000393450000000,0.000049352000000,0.000058833000000,0.000272166000000,0.000037895000000,0.000334586000000,0.000263080000000,0.000278882000000,0.017014869000000,0.016946919000000,0.000265055000000,0.000074240000000,0.000084908000000,0.000258340000000,0.000150487000000 +0.000334191000000,0.000117697000000,0.000056462000000,0.000266635000000,0.000037895000000,0.000345252000000,0.000299820000000,0.000288364000000,0.017736646000000,0.016600055000000,0.000267426000000,0.000072660000000,0.000077401000000,0.000235030000000,0.000148907000000 +0.000400166000000,0.000063178000000,0.000074240000000,0.000302586000000,0.000073846000000,0.000381598000000,0.000264266000000,0.000283623000000,0.017108894000000,0.017274424000000,0.000269006000000,0.000109796000000,0.000080956000000,0.000255968000000,0.000147327000000 +0.000336166000000,0.000047376000000,0.000057648000000,0.000263870000000,0.000037895000000,0.000330636000000,0.000271376000000,0.000286388000000,0.017421387000000,0.016503265000000,0.000268611000000,0.000071475000000,0.000079376000000,0.000226340000000,0.000233055000000 +0.000380808000000,0.000047376000000,0.000056463000000,0.000266240000000,0.000037895000000,0.000372117000000,0.000315228000000,0.000279672000000,0.017564399000000,0.017470770000000,0.000331426000000,0.000071475000000,0.000120067000000,0.000180512000000,0.000150487000000 +0.000351969000000,0.000045006000000,0.000058438000000,0.000279277000000,0.000037895000000,0.000327870000000,0.000270586000000,0.000285599000000,0.017279165000000,0.017204498000000,0.000278488000000,0.000070290000000,0.000082537000000,0.000264265000000,0.000150487000000 +0.000378043000000,0.000046982000000,0.000058833000000,0.000273747000000,0.000037895000000,0.000379228000000,0.000266635000000,0.000281648000000,0.017451807000000,0.016661684000000,0.000287968000000,0.000074240000000,0.000080561000000,0.000195524000000,0.000157204000000 +0.000794437000000,0.000047376000000,0.000060018000000,0.000350389000000,0.000037895000000,0.000336167000000,0.000266241000000,0.000282438000000,0.017186326000000,0.017068993000000,0.000351179000000,0.000073451000000,0.000080957000000,0.000285993000000,0.000184858000000 +0.000359870000000,0.000047771000000,0.000056858000000,0.000266240000000,0.000037500000000,0.000336561000000,0.000265450000000,0.000286389000000,0.017420597000000,0.017323017000000,0.000265450000000,0.000073451000000,0.000079376000000,0.000215278000000,0.000150092000000 +0.000334981000000,0.000047772000000,0.000059228000000,0.000262685000000,0.000037895000000,0.000360265000000,0.000304561000000,0.000282043000000,0.017611016000000,0.016679857000000,0.000266240000000,0.000073451000000,0.000078982000000,0.000211722000000,0.000150092000000 +0.000403722000000,0.000045797000000,0.000057648000000,0.000299030000000,0.000037895000000,0.000343277000000,0.000269006000000,0.000282833000000,0.017189486000000,0.017189486000000,0.000485895000000,0.000073845000000,0.000077796000000,0.000290734000000,0.000150488000000 +0.000365005000000,0.000047772000000,0.000058833000000,0.000268216000000,0.000037895000000,0.000393846000000,0.000269401000000,0.000277302000000,0.017984350000000,0.016814573000000,0.000306141000000,0.000071475000000,0.000077796000000,0.000212512000000,0.000184858000000 +0.000407673000000,0.000045401000000,0.000059228000000,0.000264660000000,0.000037500000000,0.000354734000000,0.000300611000000,0.000280858000000,0.017173289000000,0.016566870000000,0.000267031000000,0.000071475000000,0.000077796000000,0.000212907000000,0.000152463000000 +0.000447178000000,0.000048956000000,0.000058833000000,0.000305352000000,0.000037500000000,0.000365401000000,0.000266636000000,0.000282438000000,0.017942868000000,0.017425338000000,0.000267030000000,0.000072266000000,0.000080167000000,0.000263475000000,0.000148907000000 +0.000329845000000,0.000047376000000,0.000057253000000,0.000262290000000,0.000037895000000,0.000331425000000,0.000306931000000,0.000280068000000,0.017640646000000,0.017264548000000,0.000300611000000,0.000071870000000,0.000078191000000,0.000201450000000,0.000148117000000 +0.000385154000000,0.000046981000000,0.000057648000000,0.000265845000000,0.000038290000000,0.000365401000000,0.000270981000000,0.000282833000000,0.017747313000000,0.017077684000000,0.000265451000000,0.000088463000000,0.000077796000000,0.000225944000000,0.000185648000000 +0.000393845000000,0.000084117000000,0.000057253000000,0.000267820000000,0.000037895000000,0.000349203000000,0.000265450000000,0.000279277000000,0.017805387000000,0.016887265000000,0.000261894000000,0.000092414000000,0.000135475000000,0.000197500000000,0.000149697000000 +0.000332611000000,0.000047376000000,0.000059229000000,0.000266636000000,0.000037499000000,0.000340907000000,0.000300216000000,0.000281648000000,0.017229387000000,0.016304549000000,0.000300215000000,0.000074636000000,0.000077796000000,0.000217253000000,0.000150092000000 +0.000367376000000,0.000045006000000,0.000057648000000,0.000312857000000,0.000038685000000,0.000327870000000,0.000266635000000,0.000280067000000,0.017797881000000,0.017298523000000,0.000262685000000,0.000072661000000,0.000080956000000,0.000253204000000,0.000153648000000 +0.000330635000000,0.000045006000000,0.000058833000000,0.000262290000000,0.000037500000000,0.000364216000000,0.000268216000000,0.000280857000000,0.018818720000000,0.017051610000000,0.000271376000000,0.000071475000000,0.000082142000000,0.000198685000000,0.000168660000000 +0.000380413000000,0.000045006000000,0.000059228000000,0.000263080000000,0.000037500000000,0.000395821000000,0.000316413000000,0.000279277000000,0.017552942000000,0.016581092000000,0.000264265000000,0.000073845000000,0.000080167000000,0.000296266000000,0.000152463000000 +0.000335771000000,0.000047377000000,0.000059228000000,0.000301400000000,0.000037500000000,0.000371327000000,0.000262684000000,0.000276117000000,0.017103758000000,0.016782573000000,0.000267426000000,0.000088463000000,0.000078587000000,0.000265845000000,0.000153252000000 +0.000333401000000,0.000047377000000,0.000093598000000,0.000267821000000,0.000074240000000,0.000378043000000,0.000270191000000,0.000263870000000,0.017855559000000,0.016971412000000,0.000300215000000,0.000073846000000,0.000112166000000,0.000261105000000,0.000149303000000 +0.000380018000000,0.000046191000000,0.000060413000000,0.000263475000000,0.000037895000000,0.000338141000000,0.000262685000000,0.000349993000000,0.017951164000000,0.016284006000000,0.000267426000000,0.000072266000000,0.000077401000000,0.000210141000000,0.000192759000000 +0.000339327000000,0.000062783000000,0.000060808000000,0.000286388000000,0.000037895000000,0.000390290000000,0.000266635000000,0.000270191000000,0.017329338000000,0.017283116000000,0.000264265000000,0.000071080000000,0.000080561000000,0.000224364000000,0.000148907000000 +0.000378833000000,0.000045006000000,0.000057253000000,0.000279278000000,0.000038289000000,0.000326289000000,0.000356710000000,0.000270981000000,0.018123806000000,0.016814968000000,0.000335376000000,0.000071475000000,0.000082537000000,0.000372117000000,0.000186438000000 +0.000351968000000,0.000054092000000,0.000059623000000,0.000302586000000,0.000037499000000,0.000389895000000,0.000291525000000,0.000265846000000,0.016995906000000,0.017383857000000,0.000273352000000,0.000071475000000,0.000080167000000,0.000189204000000,0.000148907000000 +0.000404117000000,0.000045401000000,0.000056858000000,0.000265845000000,0.000037895000000,0.000331031000000,0.000264266000000,0.000261894000000,0.018373485000000,0.017446277000000,0.000264265000000,0.000074241000000,0.000077796000000,0.000234635000000,0.000183278000000 +0.000334981000000,0.000045006000000,0.000063969000000,0.000266241000000,0.000037895000000,0.000427425000000,0.000291919000000,0.000305747000000,0.017395709000000,0.017143264000000,0.000333401000000,0.000075426000000,0.000114142000000,0.000269005000000,0.000150883000000 +0.000414388000000,0.000047377000000,0.000058043000000,0.000266240000000,0.000037895000000,0.000327870000000,0.000263080000000,0.000265056000000,0.017718474000000,0.017017240000000,0.000271771000000,0.000073450000000,0.000077796000000,0.000251623000000,0.000150092000000 +0.000365006000000,0.000047376000000,0.000057253000000,0.000266241000000,0.000037500000000,0.000335376000000,0.000308512000000,0.000263080000000,0.017482622000000,0.016732006000000,0.000300611000000,0.000073451000000,0.000078191000000,0.000211722000000,0.000149302000000 +0.000329450000000,0.000126784000000,0.000057253000000,0.000306537000000,0.000037895000000,0.000442043000000,0.000266241000000,0.000334586000000,0.017169733000000,0.017226227000000,0.000263870000000,0.000072660000000,0.000082142000000,0.000229500000000,0.000185252000000 +0.000327870000000,0.000045006000000,0.000059623000000,0.000315623000000,0.000041055000000,0.000441647000000,0.000268215000000,0.000267426000000,0.018761041000000,0.017132992000000,0.000265450000000,0.000071080000000,0.000077401000000,0.000236216000000,0.000151277000000 +0.000350388000000,0.000045006000000,0.000059624000000,0.000265450000000,0.000037895000000,0.000334191000000,0.000315623000000,0.000274141000000,0.017353437000000,0.016956400000000,0.000370932000000,0.000144562000000,0.000076216000000,0.000178537000000,0.000148512000000 +0.000400562000000,0.000045401000000,0.000093994000000,0.000293104000000,0.000038685000000,0.000327475000000,0.000265451000000,0.000267030000000,0.017454178000000,0.016581487000000,0.000267030000000,0.000073451000000,0.000112957000000,0.000274537000000,0.000150487000000 +0.000333006000000,0.000047377000000,0.000071476000000,0.000268216000000,0.000037895000000,0.000390289000000,0.000262685000000,0.000267821000000,0.017454573000000,0.017153140000000,0.000263870000000,0.000071080000000,0.000077796000000,0.000225154000000,0.000220413000000 +0.000363031000000,0.000047771000000,0.000058833000000,0.000314438000000,0.000038685000000,0.000379228000000,0.000262290000000,0.000324709000000,0.017820795000000,0.016644301000000,0.000293500000000,0.000073845000000,0.000076611000000,0.000212512000000,0.000148907000000 +0.000348808000000,0.000045006000000,0.000056857000000,0.000263475000000,0.000037895000000,0.000364216000000,0.000271376000000,0.000272561000000,0.017262968000000,0.016938622000000,0.000263475000000,0.000073450000000,0.000078587000000,0.000245698000000,0.000148117000000 +0.000366981000000,0.000044611000000,0.000058043000000,0.000263870000000,0.000038290000000,0.000348413000000,0.000336166000000,0.000272562000000,0.017514622000000,0.016991956000000,0.000302587000000,0.000073055000000,0.000076611000000,0.000215278000000,0.000150093000000 +0.000355130000000,0.000061598000000,0.000058043000000,0.000449944000000,0.000037500000000,0.000395031000000,0.000265845000000,0.000310487000000,0.017368449000000,0.016986424000000,0.000280463000000,0.000073845000000,0.000076611000000,0.000384364000000,0.000195525000000 +0.000389894000000,0.000044611000000,0.000059229000000,0.000287573000000,0.000038290000000,0.000356315000000,0.000269796000000,0.000263870000000,0.017840547000000,0.017525288000000,0.000278487000000,0.000072660000000,0.000160364000000,0.000233846000000,0.000157994000000 +0.000351179000000,0.000046982000000,0.000127574000000,0.000345252000000,0.000037500000000,0.000364215000000,0.000299820000000,0.000268216000000,0.016954820000000,0.017729140000000,0.000305746000000,0.000075425000000,0.000081747000000,0.000248067000000,0.000149698000000 +0.000360660000000,0.000048167000000,0.000057253000000,0.000273746000000,0.000037895000000,0.000328265000000,0.000266240000000,0.000261894000000,0.020054866000000,0.016624943000000,0.000265450000000,0.000071870000000,0.000078192000000,0.000238191000000,0.000148512000000 +0.000336561000000,0.000047376000000,0.000058833000000,0.000267030000000,0.000076611000000,0.000329846000000,0.000269401000000,0.000261895000000,0.018193733000000,0.016993141000000,0.000260709000000,0.000073845000000,0.000079377000000,0.000265055000000,0.000184068000000 +0.000360265000000,0.000046981000000,0.000057648000000,0.000301795000000,0.000080562000000,0.000403722000000,0.000266636000000,0.000315623000000,0.018094572000000,0.017305634000000,0.000297055000000,0.000073450000000,0.000079772000000,0.000216068000000,0.000148907000000 +0.000425450000000,0.000046982000000,0.000057648000000,0.000265845000000,0.000037895000000,0.000333796000000,0.000275327000000,0.000299425000000,0.017593239000000,0.017393733000000,0.000269401000000,0.000092808000000,0.000076215000000,0.000212117000000,0.000151672000000 +0.000351574000000,0.000147327000000,0.000058833000000,0.000306537000000,0.000040265000000,0.000370537000000,0.000301006000000,0.000272561000000,0.018570226000000,0.017393338000000,0.000302981000000,0.000070685000000,0.000077796000000,0.000266241000000,0.000148907000000 +0.000368562000000,0.000073055000000,0.000057253000000,0.000267031000000,0.000037895000000,0.000329845000000,0.000264660000000,0.000272957000000,0.017317091000000,0.016856845000000,0.000262290000000,0.000074241000000,0.000075426000000,0.000246092000000,0.000187623000000 +0.000331821000000,0.000051327000000,0.000103080000000,0.000272561000000,0.000037895000000,0.000384364000000,0.000270586000000,0.000263080000000,0.017962226000000,0.017559659000000,0.000260709000000,0.000075030000000,0.000077796000000,0.000191969000000,0.000147722000000 +0.000473648000000,0.000050537000000,0.000059623000000,0.000347228000000,0.000037500000000,0.000336561000000,0.000334586000000,0.000345647000000,0.017473930000000,0.017234128000000,0.000309697000000,0.000073450000000,0.000082932000000,0.000255969000000,0.000153648000000 +0.000357500000000,0.000050932000000,0.000058833000000,0.000272561000000,0.000037895000000,0.000379227000000,0.000267031000000,0.000294290000000,0.017518968000000,0.016514326000000,0.000267820000000,0.000074241000000,0.000078191000000,0.000190388000000,0.000152858000000 +0.000363820000000,0.000071080000000,0.000062389000000,0.000265450000000,0.000037895000000,0.000361055000000,0.000269005000000,0.000267821000000,0.017059116000000,0.019000052000000,0.000263870000000,0.000109796000000,0.000078191000000,0.000237796000000,0.000264265000000 +0.000361056000000,0.000133895000000,0.000057648000000,0.000301006000000,0.000037894000000,0.000328660000000,0.000376462000000,0.000283228000000,0.017027906000000,0.018249041000000,0.000270191000000,0.000071080000000,0.000077402000000,0.000255969000000,0.000169450000000 +0.000389500000000,0.000051722000000,0.000059624000000,0.000278882000000,0.000037894000000,0.000355524000000,0.000265056000000,0.000263475000000,0.017707807000000,0.016771512000000,0.000269401000000,0.000073451000000,0.000077401000000,0.000228315000000,0.000155228000000 +0.000357894000000,0.000065945000000,0.000078982000000,0.000302586000000,0.000038685000000,0.000325895000000,0.000308908000000,0.000266636000000,0.017085190000000,0.019016645000000,0.000303376000000,0.000073056000000,0.000080166000000,0.000245302000000,0.000150487000000 +0.000351574000000,0.000154043000000,0.000058833000000,0.000265846000000,0.000038290000000,0.000368956000000,0.000278093000000,0.000263870000000,0.017733091000000,0.017863856000000,0.000266240000000,0.000070685000000,0.000077401000000,0.000193154000000,0.000153253000000 +0.000353549000000,0.000047772000000,0.000058833000000,0.000265055000000,0.000037895000000,0.000352759000000,0.000269796000000,0.000267425000000,0.017042918000000,0.016835906000000,0.000270981000000,0.000071475000000,0.000081747000000,0.000247277000000,0.000148117000000 +0.000352759000000,0.000050537000000,0.000058833000000,0.000300611000000,0.000037895000000,0.000380018000000,0.000322339000000,0.000298635000000,0.017843708000000,0.016879363000000,0.000305746000000,0.000092809000000,0.000078586000000,0.000199870000000,0.000148512000000 +0.000345648000000,0.000048166000000,0.000058833000000,0.000270586000000,0.000037895000000,0.000370932000000,0.000263870000000,0.000267425000000,0.017458918000000,0.017138129000000,0.000265451000000,0.000071080000000,0.000095969000000,0.000248463000000,0.000162734000000 +0.000351178000000,0.000114141000000,0.000059229000000,0.000266241000000,0.000038290000000,0.000379623000000,0.000301796000000,0.000267426000000,0.017733090000000,0.017295363000000,0.000266636000000,0.000073055000000,0.000077796000000,0.000215672000000,0.000153253000000 +0.000396216000000,0.000048167000000,0.000057253000000,0.000353154000000,0.000038290000000,0.000357105000000,0.000267031000000,0.000304561000000,0.016968252000000,0.017816054000000,0.000287178000000,0.000076216000000,0.000079771000000,0.000205401000000,0.000199080000000 +0.000333796000000,0.000084117000000,0.000059624000000,0.000267821000000,0.000037895000000,0.000393055000000,0.000263870000000,0.000263475000000,0.017744548000000,0.016615857000000,0.000268215000000,0.000073845000000,0.000083722000000,0.000395425000000,0.000148512000000 +0.000393845000000,0.000045796000000,0.000058833000000,0.000320364000000,0.000056463000000,0.000363820000000,0.000348808000000,0.000274141000000,0.016986030000000,0.017725585000000,0.000306537000000,0.000071870000000,0.000077006000000,0.000210932000000,0.000186043000000 +0.000359475000000,0.000047377000000,0.000058833000000,0.000267031000000,0.000054488000000,0.000370931000000,0.000266636000000,0.000288363000000,0.017323412000000,0.017190671000000,0.000294684000000,0.000072266000000,0.000076216000000,0.000241352000000,0.000155228000000 +0.000411228000000,0.000046981000000,0.000058833000000,0.000267031000000,0.000037895000000,0.000330636000000,0.000281648000000,0.000263080000000,0.017575856000000,0.016563709000000,0.000262289000000,0.000086883000000,0.000076611000000,0.000215277000000,0.000149302000000 +0.000360660000000,0.000045401000000,0.000058833000000,0.000306537000000,0.000037895000000,0.000351179000000,0.000265450000000,0.000309697000000,0.017204499000000,0.016886079000000,0.000300611000000,0.000072660000000,0.000077796000000,0.000251623000000,0.000148907000000 +0.000405302000000,0.000045006000000,0.000057253000000,0.000283623000000,0.000037895000000,0.000336956000000,0.000263475000000,0.000267031000000,0.017198968000000,0.016754524000000,0.000267821000000,0.000071870000000,0.000080562000000,0.000237401000000,0.000237796000000 +0.000331820000000,0.000045796000000,0.000057648000000,0.000305352000000,0.000038290000000,0.000357105000000,0.000337352000000,0.000264265000000,0.018331609000000,0.017733485000000,0.000262685000000,0.000074241000000,0.000077401000000,0.000240167000000,0.000157204000000 +0.000387129000000,0.000048167000000,0.000059623000000,0.000266240000000,0.000037895000000,0.000364610000000,0.000262685000000,0.000311673000000,0.017576646000000,0.016467709000000,0.000280068000000,0.000073451000000,0.000077006000000,0.000235425000000,0.000152462000000 +0.000368561000000,0.000085302000000,0.000062388000000,0.000268215000000,0.000037895000000,0.000346833000000,0.000262290000000,0.000264265000000,0.017784844000000,0.016951264000000,0.000277697000000,0.000073846000000,0.000079771000000,0.000199870000000,0.000150092000000 +0.000380413000000,0.000137450000000,0.000063178000000,0.000540018000000,0.000038290000000,0.000388314000000,0.000300215000000,0.000262685000000,0.017404400000000,0.017139314000000,0.000334981000000,0.000074241000000,0.000081747000000,0.000284018000000,0.000184463000000 +0.000367771000000,0.000067129000000,0.000063179000000,0.000280068000000,0.000037895000000,0.000336957000000,0.000263870000000,0.000316808000000,0.017515412000000,0.016692499000000,0.000264660000000,0.000072266000000,0.000076611000000,0.000217253000000,0.000150092000000 +0.000372907000000,0.000047376000000,0.000061598000000,0.000308512000000,0.000037895000000,0.000443623000000,0.000263475000000,0.000261895000000,0.017497634000000,0.016547512000000,0.000263080000000,0.000073845000000,0.000077796000000,0.000213302000000,0.000153648000000 +0.000349599000000,0.000102685000000,0.000120068000000,0.000276117000000,0.000037500000000,0.000356709000000,0.000279277000000,0.000297450000000,0.017092696000000,0.017135363000000,0.000307327000000,0.000075821000000,0.000077401000000,0.000291130000000,0.000150487000000 +0.000369746000000,0.000045006000000,0.000117302000000,0.000298636000000,0.000038290000000,0.000329055000000,0.000264660000000,0.000263080000000,0.017742968000000,0.016970228000000,0.000265450000000,0.000075031000000,0.000095573000000,0.000214092000000,0.000220414000000 +0.000336956000000,0.000047771000000,0.000063574000000,0.000263475000000,0.000037894000000,0.000416759000000,0.000299820000000,0.000265055000000,0.017640251000000,0.017033437000000,0.000263080000000,0.000074240000000,0.000082142000000,0.000210536000000,0.000148907000000 +0.000361450000000,0.000047771000000,0.000060808000000,0.000266241000000,0.000037499000000,0.000369352000000,0.000266240000000,0.000302586000000,0.017307609000000,0.017375560000000,0.000265846000000,0.000072661000000,0.000078192000000,0.000246488000000,0.000149698000000 +0.000367771000000,0.000047772000000,0.000061993000000,0.000306141000000,0.000037894000000,0.000357104000000,0.000263870000000,0.000263475000000,0.017921930000000,0.016713042000000,0.000269005000000,0.000071475000000,0.000077796000000,0.000192759000000,0.000200266000000 +0.000337351000000,0.000047771000000,0.000062389000000,0.000267821000000,0.000038685000000,0.000336957000000,0.000346833000000,0.000263475000000,0.017939708000000,0.017222276000000,0.000354734000000,0.000073450000000,0.000077796000000,0.000237796000000,0.000165105000000 +0.000370537000000,0.000047376000000,0.000062389000000,0.000264661000000,0.000038290000000,0.000363425000000,0.000263475000000,0.000302586000000,0.017578621000000,0.016922820000000,0.000265055000000,0.000075031000000,0.000083327000000,0.000202240000000,0.000148513000000 +0.000367771000000,0.000047376000000,0.000061994000000,0.000344067000000,0.000037500000000,0.000331031000000,0.000268215000000,0.000263080000000,0.018198473000000,0.017116795000000,0.000263475000000,0.000073846000000,0.000076610000000,0.000247672000000,0.000149697000000 +0.000373302000000,0.000045401000000,0.000062388000000,0.000269401000000,0.000039080000000,0.000329845000000,0.000263080000000,0.000263080000000,0.017353041000000,0.016669980000000,0.000267821000000,0.000073846000000,0.000077006000000,0.000209747000000,0.000151278000000 +0.000350389000000,0.000047376000000,0.000061203000000,0.000302586000000,0.000037895000000,0.000349203000000,0.000266636000000,0.000264265000000,0.017756795000000,0.016312845000000,0.000267426000000,0.000215673000000,0.000077796000000,0.000253204000000,0.000213698000000 +0.000368561000000,0.000045006000000,0.000063179000000,0.000266240000000,0.000071080000000,0.000445598000000,0.000346833000000,0.000262289000000,0.017559263000000,0.017082029000000,0.000316413000000,0.000109401000000,0.000080561000000,0.000232265000000,0.000152067000000 +0.000349599000000,0.000047377000000,0.000062784000000,0.000274932000000,0.000040266000000,0.000370932000000,0.000291524000000,0.000304957000000,0.017455758000000,0.017448251000000,0.000263080000000,0.000090043000000,0.000077796000000,0.000197894000000,0.000151277000000 +0.000361450000000,0.000048562000000,0.000063179000000,0.000335376000000,0.000050932000000,0.000405697000000,0.000264661000000,0.000264265000000,0.017842127000000,0.016489833000000,0.000334191000000,0.000072265000000,0.000076611000000,0.000291129000000,0.000152463000000 +0.000364216000000,0.000047377000000,0.000063574000000,0.000267820000000,0.000040660000000,0.000342093000000,0.000298636000000,0.000296265000000,0.017558079000000,0.016587808000000,0.000274142000000,0.000073846000000,0.000078981000000,0.000183278000000,0.000148512000000 +0.000329846000000,0.000047771000000,0.000082142000000,0.000267821000000,0.000037500000000,0.000426240000000,0.000265450000000,0.000285994000000,0.017639066000000,0.016877783000000,0.000261895000000,0.000072660000000,0.000120462000000,0.000221203000000,0.000148512000000 +0.000370141000000,0.000083722000000,0.000064364000000,0.000291919000000,0.000038290000000,0.000330241000000,0.000267821000000,0.000262685000000,0.018219016000000,0.016845783000000,0.000301005000000,0.000074240000000,0.000079376000000,0.000254389000000,0.000154043000000 +0.000359870000000,0.000065549000000,0.000063574000000,0.000267031000000,0.000039870000000,0.000375277000000,0.000272166000000,0.000333006000000,0.017806572000000,0.017649338000000,0.000262685000000,0.000073450000000,0.000077401000000,0.000197105000000,0.000149697000000 +0.000350784000000,0.000117697000000,0.000063179000000,0.000287574000000,0.000037895000000,0.000357895000000,0.000262685000000,0.000265055000000,0.018085485000000,0.016438079000000,0.000267031000000,0.000075821000000,0.000082142000000,0.000252018000000,0.000199870000000 +0.000353944000000,0.000045006000000,0.000061993000000,0.000273746000000,0.000037894000000,0.000392265000000,0.000304562000000,0.000266241000000,0.017189882000000,0.017483807000000,0.000302981000000,0.000074240000000,0.000078586000000,0.000191574000000,0.000149698000000 +0.000525400000000,0.000047771000000,0.000063179000000,0.000277697000000,0.000037500000000,0.000622981000000,0.000264265000000,0.000300611000000,0.017507511000000,0.017332104000000,0.000263475000000,0.000071870000000,0.000076215000000,0.000255574000000,0.000152067000000 +0.000332611000000,0.000078981000000,0.000060808000000,0.000348018000000,0.000037895000000,0.000381204000000,0.000267030000000,0.000264265000000,0.017377930000000,0.017150375000000,0.000266241000000,0.000073846000000,0.000113746000000,0.000191573000000,0.000148512000000 +0.000382784000000,0.000060808000000,0.000061204000000,0.000263475000000,0.000037895000000,0.000351573000000,0.000624166000000,0.000261895000000,0.017593634000000,0.016606376000000,0.000391870000000,0.000073451000000,0.000082142000000,0.000229894000000,0.000168265000000 +0.000337746000000,0.000045401000000,0.000061994000000,0.000264265000000,0.000037895000000,0.000380018000000,0.000932314000000,0.000301796000000,0.018166869000000,0.017770622000000,0.000270191000000,0.000074240000000,0.000077401000000,0.000248858000000,0.000150092000000 +0.000433352000000,0.000047772000000,0.000087277000000,0.000268215000000,0.000037895000000,0.000333796000000,0.000539623000000,0.000265845000000,0.017840942000000,0.017092301000000,0.000283624000000,0.000088858000000,0.000077006000000,0.000190784000000,0.000150092000000 +0.000339722000000,0.000047377000000,0.000062784000000,0.000267425000000,0.000037895000000,0.000388710000000,0.000327475000000,0.000324314000000,0.017046079000000,0.016639166000000,0.000263475000000,0.000073845000000,0.000082536000000,0.000257944000000,0.000151278000000 +0.000402537000000,0.000048167000000,0.000057252000000,0.000314833000000,0.000037895000000,0.000331426000000,0.000474043000000,0.000283623000000,0.019540497000000,0.018440251000000,0.000355524000000,0.000112562000000,0.000084907000000,0.000408858000000,0.000250438000000 +0.000340512000000,0.000047377000000,0.000095574000000,0.000270586000000,0.000037895000000,0.000364610000000,0.000432956000000,0.000264265000000,0.017715708000000,0.016862375000000,0.000262685000000,0.000075426000000,0.000093994000000,0.000272957000000,0.000148512000000 +0.000417154000000,0.000047376000000,0.000056858000000,0.000269006000000,0.000037500000000,0.000358684000000,0.000287573000000,0.000265450000000,0.017862276000000,0.017074918000000,0.000268611000000,0.000073055000000,0.000078981000000,0.000306932000000,0.000147327000000 +0.000354734000000,0.000047376000000,0.000058043000000,0.000321944000000,0.000054488000000,0.000329450000000,0.000278883000000,0.000267031000000,0.017469980000000,0.016316796000000,0.000333795000000,0.000071475000000,0.000078191000000,0.000226339000000,0.000150883000000 +0.000457055000000,0.000047376000000,0.000060018000000,0.000263080000000,0.000039080000000,0.000382783000000,0.000314042000000,0.000330240000000,0.018939609000000,0.016894376000000,0.000285599000000,0.000073845000000,0.000078192000000,0.000221204000000,0.000149697000000 +0.000344463000000,0.000049352000000,0.000057253000000,0.000295475000000,0.000037895000000,0.000348808000000,0.000285599000000,0.000265845000000,0.018718374000000,0.016854079000000,0.000323130000000,0.000072660000000,0.000077401000000,0.000258734000000,0.000149302000000 +0.000340512000000,0.000046981000000,0.000058438000000,0.000270191000000,0.000039475000000,0.000374487000000,0.000282833000000,0.000264660000000,0.017355412000000,0.016210524000000,0.000367376000000,0.000149697000000,0.000080957000000,0.000220018000000,0.000149302000000 +0.000331425000000,0.000046981000000,0.000059623000000,0.000267426000000,0.000042635000000,0.000331425000000,0.000284018000000,0.000326290000000,0.017643017000000,0.016759264000000,0.000265846000000,0.000075031000000,0.000116117000000,0.000229104000000,0.000152067000000 +0.000329055000000,0.000045006000000,0.000135080000000,0.000351178000000,0.000037500000000,0.000390290000000,0.000283623000000,0.000264661000000,0.017385042000000,0.017189882000000,0.000323920000000,0.000071871000000,0.000077797000000,0.000284018000000,0.000153253000000 +0.000370932000000,0.000047772000000,0.000078981000000,0.000273351000000,0.000037500000000,0.000357894000000,0.000281648000000,0.000264660000000,0.017956301000000,0.017323412000000,0.000262685000000,0.000074240000000,0.000077796000000,0.000227525000000,0.000148117000000 +0.000334981000000,0.000047377000000,0.000061204000000,0.000270981000000,0.000037895000000,0.000383179000000,0.000281647000000,0.000269796000000,0.017828696000000,0.017274425000000,0.000336562000000,0.000071080000000,0.000080562000000,0.000216068000000,0.000148907000000 +0.000795228000000,0.000066340000000,0.000058833000000,0.000299426000000,0.000037895000000,0.000361845000000,0.000278487000000,0.000262685000000,0.017445486000000,0.019585534000000,0.000265845000000,0.000074240000000,0.000080956000000,0.000299821000000,0.000151673000000 +0.000781400000000,0.000047376000000,0.000057253000000,0.000265845000000,0.000037500000000,0.000351969000000,0.000282043000000,0.000299425000000,0.017255066000000,0.017360547000000,0.000270191000000,0.000107821000000,0.000079377000000,0.000212907000000,0.000148907000000 +0.000378833000000,0.000046981000000,0.000057648000000,0.000265055000000,0.000037895000000,0.000343673000000,0.000280462000000,0.000262685000000,0.018027807000000,0.016865141000000,0.000345253000000,0.000071475000000,0.000120067000000,0.000225944000000,0.000152858000000 +0.000327870000000,0.000048562000000,0.000057253000000,0.000573598000000,0.000037895000000,0.000347228000000,0.000320759000000,0.000270191000000,0.017371215000000,0.018331609000000,0.000263870000000,0.000073056000000,0.000079771000000,0.000331821000000,0.000148907000000 +0.000410832000000,0.000045006000000,0.000056858000000,0.000300611000000,0.000037895000000,0.000355524000000,0.000281648000000,0.000451524000000,0.017560054000000,0.017850819000000,0.000269005000000,0.000075031000000,0.000078586000000,0.000193944000000,0.000200661000000 +0.000333795000000,0.000045401000000,0.000060018000000,0.000262290000000,0.000041846000000,0.000331030000000,0.000327475000000,0.000283623000000,0.017371609000000,0.017053585000000,0.000270586000000,0.000072266000000,0.000078191000000,0.000214882000000,0.000150883000000 +0.000331821000000,0.000045006000000,0.000057648000000,0.000277302000000,0.000037500000000,0.000367771000000,0.000278882000000,0.000298635000000,0.017113239000000,0.016684203000000,0.000263080000000,0.000071475000000,0.000078191000000,0.000299821000000,0.000147722000000 +0.000368561000000,0.000047376000000,0.000057648000000,0.000269401000000,0.000037895000000,0.000336957000000,0.000286388000000,0.000262685000000,0.017479461000000,0.016965487000000,0.000346833000000,0.000093203000000,0.000077401000000,0.000233845000000,0.000157994000000 +0.000359870000000,0.000097154000000,0.000058833000000,0.000263080000000,0.000037895000000,0.000443623000000,0.000298636000000,0.000260314000000,0.017301683000000,0.016659314000000,0.000264660000000,0.000073846000000,0.000113747000000,0.000245697000000,0.000150092000000 +0.000423080000000,0.000049747000000,0.000057648000000,0.000315623000000,0.000037895000000,0.000369351000000,0.000284018000000,0.000298635000000,0.017121931000000,0.017213980000000,0.000270191000000,0.000072266000000,0.000083722000000,0.000187623000000,0.000151277000000 +0.000331030000000,0.000053303000000,0.000073451000000,0.000270191000000,0.000038290000000,0.000405697000000,0.000285994000000,0.000267426000000,0.017921140000000,0.017894276000000,0.000348019000000,0.000071475000000,0.000077006000000,0.000321549000000,0.000147327000000 +0.000401351000000,0.000048166000000,0.000059228000000,0.000269796000000,0.000038290000000,0.000334586000000,0.000282833000000,0.000333005000000,0.017471165000000,0.016788499000000,0.000263079000000,0.000074636000000,0.000080957000000,0.000216463000000,0.000150092000000 +0.000348413000000,0.000048561000000,0.000062388000000,0.000302191000000,0.000037499000000,0.000372117000000,0.000278092000000,0.000269006000000,0.017394523000000,0.017685684000000,0.000344462000000,0.000071870000000,0.000079771000000,0.000252018000000,0.000152463000000 +0.000389105000000,0.000048167000000,0.000057648000000,0.000267425000000,0.000106240000000,0.000329055000000,0.000323919000000,0.000265056000000,0.017574276000000,0.016733981000000,0.000270586000000,0.000108216000000,0.000078981000000,0.000213698000000,0.000149697000000 +0.000334586000000,0.000048167000000,0.000061994000000,0.000266636000000,0.000052512000000,0.000376463000000,0.000278487000000,0.000335376000000,0.017154721000000,0.017137733000000,0.000262290000000,0.000073846000000,0.000079376000000,0.000193154000000,0.000148512000000 +0.000369351000000,0.000047772000000,0.000058833000000,0.000310487000000,0.000037895000000,0.000333006000000,0.000293895000000,0.000268610000000,0.017658029000000,0.016888450000000,0.000351179000000,0.000074636000000,0.000079772000000,0.000260709000000,0.000148908000000 +0.000339722000000,0.000050142000000,0.000076216000000,0.000266636000000,0.000037895000000,0.000329450000000,0.000266240000000,0.000264266000000,0.017246770000000,0.016561339000000,0.000265845000000,0.000073846000000,0.000084117000000,0.000182883000000,0.000150487000000 +0.000328660000000,0.000050537000000,0.000058043000000,0.000312067000000,0.000038290000000,0.000325894000000,0.000262685000000,0.000309698000000,0.017415066000000,0.016849338000000,0.000305352000000,0.000071475000000,0.000080956000000,0.000264660000000,0.000152068000000 +0.000391870000000,0.000048166000000,0.000057648000000,0.000319574000000,0.000037895000000,0.000348414000000,0.000297845000000,0.000264661000000,0.017498030000000,0.017136153000000,0.000264660000000,0.000071080000000,0.000076611000000,0.000176561000000,0.000148908000000 +0.000363425000000,0.000050142000000,0.000059228000000,0.000276117000000,0.000037500000000,0.000376068000000,0.000269400000000,0.000263475000000,0.017464844000000,0.016589388000000,0.000263475000000,0.000109401000000,0.000099920000000,0.000238981000000,0.000149698000000 +0.000424265000000,0.000047771000000,0.000058833000000,0.000265450000000,0.000037500000000,0.000365400000000,0.000265055000000,0.000267426000000,0.017260597000000,0.016608351000000,0.000359080000000,0.000074241000000,0.000077796000000,0.000216857000000,0.000202241000000 +0.000326290000000,0.000047771000000,0.000059624000000,0.000267426000000,0.000038290000000,0.000366190000000,0.000302191000000,0.000269796000000,0.017415067000000,0.017098622000000,0.000262684000000,0.000071475000000,0.000080167000000,0.000222389000000,0.000148908000000 +0.000381598000000,0.000047377000000,0.000098339000000,0.000300611000000,0.000037895000000,0.000332216000000,0.000266240000000,0.000301796000000,0.017563609000000,0.017283906000000,0.000266241000000,0.000072661000000,0.000078191000000,0.000236611000000,0.000148512000000 +0.000351969000000,0.000050537000000,0.000057648000000,0.000263870000000,0.000039080000000,0.000365005000000,0.000269005000000,0.000267031000000,0.017088746000000,0.016752153000000,0.000558586000000,0.000071080000000,0.000078191000000,0.000191179000000,0.000154833000000 +0.000382783000000,0.000047771000000,0.000059624000000,0.000284019000000,0.000038290000000,0.000348809000000,0.000504068000000,0.000263080000000,0.017104153000000,0.017272449000000,0.000299031000000,0.000072265000000,0.000078191000000,0.000260315000000,0.000166290000000 +0.000357105000000,0.000047377000000,0.000057648000000,0.000304956000000,0.000038290000000,0.000340907000000,0.000300610000000,0.000344857000000,0.017814078000000,0.016605980000000,0.000265845000000,0.000073845000000,0.000098734000000,0.000217648000000,0.000148907000000 +0.000385944000000,0.000050142000000,0.000057648000000,0.000278883000000,0.000037500000000,0.000487870000000,0.000271771000000,0.000273747000000,0.017758770000000,0.017618918000000,0.000268611000000,0.000073845000000,0.000077401000000,0.000213302000000,0.000150882000000 +0.000350783000000,0.000050537000000,0.000058833000000,0.000269006000000,0.000037895000000,0.000327870000000,0.000267031000000,0.000266240000000,0.017485782000000,0.017173684000000,0.000354339000000,0.000071475000000,0.000085697000000,0.000211327000000,0.000150092000000 +0.000368562000000,0.000048166000000,0.000059623000000,0.000263080000000,0.000037500000000,0.000330241000000,0.000302586000000,0.000263080000000,0.017190277000000,0.017490128000000,0.000271376000000,0.000071475000000,0.000084117000000,0.000217252000000,0.000150882000000 +0.000374882000000,0.000048167000000,0.000096759000000,0.000263870000000,0.000037895000000,0.000331030000000,0.000262685000000,0.000263475000000,0.018243511000000,0.017165387000000,0.000313253000000,0.000074240000000,0.000079772000000,0.000256759000000,0.000149303000000 +0.000348018000000,0.000086488000000,0.000058833000000,0.000301401000000,0.000037895000000,0.000389895000000,0.000269006000000,0.000300610000000,0.017653683000000,0.016526968000000,0.000265450000000,0.000075031000000,0.000080956000000,0.000289944000000,0.000149697000000 +0.000577944000000,0.000050142000000,0.000056858000000,0.000266240000000,0.000037499000000,0.000335376000000,0.000303376000000,0.000268216000000,0.017598770000000,0.017121535000000,0.000263475000000,0.000071475000000,0.000095969000000,0.000189993000000,0.000185253000000 +0.000351969000000,0.000047771000000,0.000058833000000,0.000263870000000,0.000057647000000,0.000398981000000,0.000266636000000,0.000265450000000,0.017585338000000,0.017302474000000,0.000299426000000,0.000074241000000,0.000078191000000,0.000265451000000,0.000147327000000 +0.000353944000000,0.000049747000000,0.000057253000000,0.000302981000000,0.000039080000000,0.000331820000000,0.000284018000000,0.000300611000000,0.017164992000000,0.017088745000000,0.000262684000000,0.000073056000000,0.000078586000000,0.000216462000000,0.000146932000000 +0.000397006000000,0.000050142000000,0.000058438000000,0.000272956000000,0.000038290000000,0.000366191000000,0.000268611000000,0.000264660000000,0.018051511000000,0.016866326000000,0.000260314000000,0.000073845000000,0.000078191000000,0.000220414000000,0.000148512000000 +0.000347623000000,0.000049747000000,0.000059623000000,0.000290340000000,0.000037894000000,0.000371721000000,0.000269006000000,0.000269401000000,0.017408350000000,0.017449041000000,0.000302587000000,0.000071475000000,0.000077796000000,0.000246487000000,0.000186438000000 +0.000352759000000,0.000050142000000,0.000097944000000,0.000265846000000,0.000037894000000,0.000327475000000,0.000314833000000,0.000375277000000,0.017899016000000,0.017301684000000,0.000274537000000,0.000074240000000,0.000079771000000,0.000215673000000,0.000155624000000 +0.000378438000000,0.000047772000000,0.000056858000000,0.000264265000000,0.000037895000000,0.000348809000000,0.000267031000000,0.000263870000000,0.017944449000000,0.016940597000000,0.000265055000000,0.000073846000000,0.000114142000000,0.000246882000000,0.000150883000000 +0.000348413000000,0.000050537000000,0.000056857000000,0.000321944000000,0.000037895000000,0.000346042000000,0.000263475000000,0.000301005000000,0.017238869000000,0.017186326000000,0.000278487000000,0.000109796000000,0.000084117000000,0.000189994000000,0.000149697000000 +0.000352364000000,0.000047771000000,0.000063179000000,0.000270586000000,0.000037500000000,0.000416759000000,0.000406882000000,0.000261105000000,0.017235709000000,0.016660104000000,0.000263080000000,0.000071475000000,0.000080561000000,0.000228314000000,0.000199080000000 +0.000371326000000,0.000047771000000,0.000056858000000,0.000269796000000,0.000037500000000,0.000349599000000,0.000451525000000,0.000264265000000,0.017635906000000,0.017391758000000,0.000308907000000,0.000073451000000,0.000078586000000,0.000192364000000,0.000150092000000 +0.000374487000000,0.000050142000000,0.000059228000000,0.000264265000000,0.000038290000000,0.000376067000000,0.000318784000000,0.000300610000000,0.017066622000000,0.016847363000000,0.000272166000000,0.000073846000000,0.000077796000000,0.000227524000000,0.000148907000000 +0.000351178000000,0.000050537000000,0.000057253000000,0.000276512000000,0.000037895000000,0.000330240000000,0.000314438000000,0.000260710000000,0.017842918000000,0.016811018000000,0.000263870000000,0.000073846000000,0.000078587000000,0.000218043000000,0.000148512000000 +0.000399771000000,0.000050932000000,0.000059228000000,0.000348018000000,0.000037895000000,0.000424265000000,0.000314833000000,0.000264265000000,0.017686869000000,0.016756499000000,0.000305351000000,0.000074636000000,0.000173006000000,0.000223969000000,0.000148512000000 +0.000342092000000,0.000047771000000,0.000058438000000,0.000272956000000,0.000037895000000,0.000330635000000,0.000264265000000,0.000313647000000,0.017389782000000,0.016922820000000,0.000263870000000,0.000071475000000,0.000078191000000,0.000244512000000,0.000150093000000 +0.000383179000000,0.000086487000000,0.000057253000000,0.000277302000000,0.000037895000000,0.000387919000000,0.000266241000000,0.000273352000000,0.017677387000000,0.017737832000000,0.000265845000000,0.000073450000000,0.000079376000000,0.000190389000000,0.000151277000000 +0.000328265000000,0.000048166000000,0.000059623000000,0.000304562000000,0.000037895000000,0.000358685000000,0.000297845000000,0.000263870000000,0.019678768000000,0.016722919000000,0.000327080000000,0.000072265000000,0.000076611000000,0.000240957000000,0.000148512000000 +0.000333401000000,0.000050141000000,0.000058833000000,0.000267425000000,0.000037894000000,0.000353154000000,0.000272167000000,0.000327475000000,0.018616843000000,0.017825140000000,0.000268611000000,0.000075425000000,0.000077401000000,0.000184858000000,0.000205006000000 +0.000351573000000,0.000047771000000,0.000058438000000,0.000265845000000,0.000037894000000,0.000346833000000,0.000318783000000,0.000262290000000,0.017082425000000,0.017394919000000,0.000650635000000,0.000071475000000,0.000078191000000,0.000278092000000,0.000149302000000 +0.000369747000000,0.000051327000000,0.000058833000000,0.000270981000000,0.000037894000000,0.000325499000000,0.000267820000000,0.000299425000000,0.018310276000000,0.016996696000000,0.000335771000000,0.000073845000000,0.000077401000000,0.000212117000000,0.000148907000000 +0.000367376000000,0.000048166000000,0.000058833000000,0.000263870000000,0.000037895000000,0.000359080000000,0.000265846000000,0.000272167000000,0.017592054000000,0.016735166000000,0.000304166000000,0.000073450000000,0.000079376000000,0.000191573000000,0.000149302000000 +0.000331426000000,0.000047772000000,0.000057253000000,0.000317204000000,0.000037895000000,0.000342092000000,0.000314438000000,0.000309697000000,0.017869387000000,0.017299313000000,0.000266240000000,0.000075426000000,0.000082932000000,0.000314043000000,0.000188414000000 +0.000421894000000,0.000048167000000,0.000058438000000,0.000263870000000,0.000074240000000,0.000400166000000,0.000266635000000,0.000272956000000,0.017417832000000,0.017004597000000,0.000263870000000,0.000073450000000,0.000082536000000,0.000194339000000,0.000149697000000 +0.000358290000000,0.000050142000000,0.000056068000000,0.000267821000000,0.000039476000000,0.000331821000000,0.000264265000000,0.000267030000000,0.017807757000000,0.017072943000000,0.000268611000000,0.000071870000000,0.000078586000000,0.000251228000000,0.000151277000000 +0.000372907000000,0.000050142000000,0.000059624000000,0.000417154000000,0.000037895000000,0.000365006000000,0.000266636000000,0.000340512000000,0.017062277000000,0.017736646000000,0.000269006000000,0.000074241000000,0.000131129000000,0.000296660000000,0.000149302000000 +0.000353549000000,0.000047771000000,0.000058833000000,0.000264265000000,0.000037895000000,0.000360660000000,0.000263080000000,0.000264265000000,0.018026621000000,0.016979708000000,0.000305747000000,0.000073845000000,0.000257549000000,0.000201845000000,0.000185252000000 +0.000459425000000,0.000049747000000,0.000057648000000,0.000301006000000,0.000038290000000,0.000445994000000,0.000299821000000,0.000266635000000,0.017078869000000,0.017339214000000,0.000262290000000,0.000073450000000,0.000083722000000,0.000226339000000,0.000152858000000 +0.000328660000000,0.000050142000000,0.000057253000000,0.000262685000000,0.000037500000000,0.000335376000000,0.000274142000000,0.000305747000000,0.018083116000000,0.016732796000000,0.000270586000000,0.000073845000000,0.000077796000000,0.000254389000000,0.000148907000000 +0.000391870000000,0.000052512000000,0.000058833000000,0.000273352000000,0.000037895000000,0.000366191000000,0.000263080000000,0.000263079000000,0.017784449000000,0.019822175000000,0.000305746000000,0.000071870000000,0.000098735000000,0.000294685000000,0.000150882000000 +0.000330635000000,0.000049746000000,0.000058833000000,0.000301006000000,0.000038290000000,0.000327475000000,0.000357104000000,0.000264265000000,0.017183560000000,0.017436005000000,0.000263870000000,0.000074240000000,0.000096760000000,0.000195920000000,0.000233846000000 +0.000351178000000,0.000096364000000,0.000057648000000,0.000310092000000,0.000037895000000,0.000348808000000,0.000267030000000,0.000265450000000,0.017677783000000,0.017677782000000,0.000265451000000,0.000073845000000,0.000090438000000,0.000321549000000,0.000150092000000 +0.000380018000000,0.000050142000000,0.000060413000000,0.000264660000000,0.000037895000000,0.000453104000000,0.000306142000000,0.000263475000000,0.017229782000000,0.017726375000000,0.000319179000000,0.000075031000000,0.000080561000000,0.000238981000000,0.000152858000000 +0.000332610000000,0.000050141000000,0.000057648000000,0.000269401000000,0.000037500000000,0.000354339000000,0.000265450000000,0.000302586000000,0.017333288000000,0.016856055000000,0.000266636000000,0.000073450000000,0.000076611000000,0.000207376000000,0.000150488000000 +0.000397796000000,0.000048561000000,0.000059623000000,0.000262685000000,0.000037895000000,0.000395426000000,0.000263870000000,0.000270982000000,0.017711362000000,0.016558179000000,0.000302982000000,0.000109006000000,0.000121648000000,0.000251228000000,0.000186834000000 +0.000358685000000,0.000050142000000,0.000182488000000,0.000307722000000,0.000037895000000,0.000356315000000,0.000302586000000,0.000265845000000,0.017688449000000,0.017775757000000,0.000261499000000,0.000073846000000,0.000082142000000,0.000214092000000,0.000147327000000 +0.000362635000000,0.000050932000000,0.000113351000000,0.000267820000000,0.000037895000000,0.000412414000000,0.000264266000000,0.000311673000000,0.017143264000000,0.016698425000000,0.000268216000000,0.000071080000000,0.000084512000000,0.000234240000000,0.000149698000000 +0.000349203000000,0.000047376000000,0.000074635000000,0.000265056000000,0.000040266000000,0.000330635000000,0.000303376000000,0.000269006000000,0.017426919000000,0.016820499000000,0.000315228000000,0.000074241000000,0.000080166000000,0.000336956000000,0.000149697000000 +0.000331821000000,0.000048562000000,0.000058833000000,0.000304167000000,0.000037895000000,0.000406487000000,0.000265055000000,0.000301006000000,0.017545041000000,0.017301684000000,0.000263475000000,0.000072266000000,0.000077796000000,0.000193154000000,0.000281252000000 +0.000333401000000,0.000050142000000,0.000058834000000,0.000265056000000,0.000037500000000,0.000349204000000,0.000272956000000,0.000270982000000,0.018138029000000,0.016473635000000,0.000262290000000,0.000070685000000,0.000082537000000,0.000231475000000,0.000151673000000 +0.000331031000000,0.000048166000000,0.000060413000000,0.000266240000000,0.000037895000000,0.000438882000000,0.000302191000000,0.000264265000000,0.017262968000000,0.017530425000000,0.000263870000000,0.000091623000000,0.000077796000000,0.000242537000000,0.000148117000000 +0.000366191000000,0.000050142000000,0.000057648000000,0.000302586000000,0.000039080000000,0.000328660000000,0.000270191000000,0.000301796000000,0.017651708000000,0.017508301000000,0.000264661000000,0.000073056000000,0.000077796000000,0.000233055000000,0.000146537000000 +0.000336561000000,0.000047772000000,0.000056857000000,0.000266241000000,0.000037895000000,0.000389895000000,0.000263475000000,0.000261104000000,0.017671857000000,0.016605586000000,0.000301401000000,0.000071080000000,0.000077796000000,0.000253203000000,0.000148117000000 +0.000365796000000,0.000051327000000,0.000057648000000,0.000263080000000,0.000039080000000,0.000328660000000,0.000334982000000,0.000275327000000,0.017372400000000,0.017212795000000,0.000272561000000,0.000073846000000,0.000077006000000,0.000267820000000,0.000201450000000 +0.000336166000000,0.000050142000000,0.000060019000000,0.000263080000000,0.000081351000000,0.000359080000000,0.000346043000000,0.000316809000000,0.017558868000000,0.016373290000000,0.000260314000000,0.000071871000000,0.000077796000000,0.000246882000000,0.000148907000000 +0.000447968000000,0.000047771000000,0.000060019000000,0.000265451000000,0.000038290000000,0.000351178000000,0.000399771000000,0.000262685000000,0.017330128000000,0.017122721000000,0.000412808000000,0.000072265000000,0.000082932000000,0.000195525000000,0.000149698000000 +0.000346043000000,0.000052513000000,0.000060414000000,0.000301401000000,0.000038290000000,0.000331031000000,0.000276512000000,0.000311278000000,0.017673832000000,0.017103363000000,0.000282438000000,0.000073055000000,0.000094783000000,0.000277302000000,0.000153648000000 +0.000389895000000,0.000051327000000,0.000059229000000,0.000265055000000,0.000037895000000,0.000382784000000,0.000346043000000,0.000263475000000,0.017597190000000,0.016460598000000,0.000281648000000,0.000072265000000,0.000076611000000,0.000197895000000,0.000148907000000 +0.000355129000000,0.000049747000000,0.000057648000000,0.000271771000000,0.000037895000000,0.000329450000000,0.000263080000000,0.000271376000000,0.017245190000000,0.016942573000000,0.000265055000000,0.000073056000000,0.000080167000000,0.000258339000000,0.000148512000000 +0.000436907000000,0.000048167000000,0.000058833000000,0.000303376000000,0.000037895000000,0.000440068000000,0.000264265000000,0.000298240000000,0.017601140000000,0.017541091000000,0.000263475000000,0.000073451000000,0.000080957000000,0.000313648000000,0.000148512000000 +0.000332215000000,0.000047376000000,0.000060413000000,0.000263475000000,0.000037895000000,0.000349599000000,0.000349204000000,0.000266635000000,0.017703066000000,0.016904647000000,0.000309302000000,0.000071871000000,0.000080166000000,0.000177352000000,0.000157204000000 +0.000391080000000,0.000050537000000,0.000059624000000,0.000269401000000,0.000037895000000,0.000366586000000,0.000267030000000,0.000264660000000,0.017524894000000,0.016677882000000,0.000267821000000,0.000071475000000,0.000076216000000,0.000252018000000,0.000152857000000 +0.000330635000000,0.000050537000000,0.000061598000000,0.000336166000000,0.000037895000000,0.000329450000000,0.000265055000000,0.000263870000000,0.017326573000000,0.017072153000000,0.000263870000000,0.000073845000000,0.000114142000000,0.000265055000000,0.000154043000000 +0.000326290000000,0.000233055000000,0.000057253000000,0.000268216000000,0.000038290000000,0.000331030000000,0.000265846000000,0.000300216000000,0.017250326000000,0.017189882000000,0.000337746000000,0.000155228000000,0.000078586000000,0.000265450000000,0.000148907000000 +0.000363426000000,0.000078191000000,0.000057648000000,0.000321944000000,0.000037895000000,0.000660907000000,0.000265450000000,0.000297450000000,0.017593634000000,0.017155116000000,0.000267425000000,0.000075426000000,0.000079771000000,0.000250833000000,0.000152858000000 +0.000336956000000,0.000045401000000,0.000056858000000,0.000271376000000,0.000037895000000,0.000369746000000,0.000347228000000,0.000265055000000,0.017939313000000,0.016606771000000,0.000265055000000,0.000071475000000,0.000080562000000,0.000280858000000,0.000153648000000 +0.000408462000000,0.000046982000000,0.000058833000000,0.000280858000000,0.000039476000000,0.000331030000000,0.000327475000000,0.000263475000000,0.017728350000000,0.016928745000000,0.000260709000000,0.000071475000000,0.000077401000000,0.000238191000000,0.000152463000000 +0.000336167000000,0.000045006000000,0.000057648000000,0.000280857000000,0.000038290000000,0.000387130000000,0.000282043000000,0.000300215000000,0.017250721000000,0.017190672000000,0.000262290000000,0.000071870000000,0.000078191000000,0.000256758000000,0.000152858000000 +0.000391079000000,0.000085697000000,0.000078981000000,0.000270981000000,0.000038685000000,0.000351968000000,0.000282043000000,0.000263080000000,0.017803017000000,0.017038178000000,0.000315623000000,0.000094784000000,0.000095179000000,0.000240166000000,0.000149302000000 +0.000344462000000,0.000047772000000,0.000059624000000,0.000305351000000,0.000037895000000,0.000365401000000,0.000268611000000,0.000265846000000,0.018911163000000,0.017043709000000,0.000265845000000,0.000074636000000,0.000081351000000,0.000216858000000,0.000150093000000 +0.000431376000000,0.000047377000000,0.000059623000000,0.000264265000000,0.000039475000000,0.000370932000000,0.000351179000000,0.000263079000000,0.018835312000000,0.018064942000000,0.000272957000000,0.000072266000000,0.000077796000000,0.000237006000000,0.000149302000000 +0.000335376000000,0.000046982000000,0.000059228000000,0.000266635000000,0.000038290000000,0.000401352000000,0.000265845000000,0.000260710000000,0.017048845000000,0.016769931000000,0.000262684000000,0.000074241000000,0.000077796000000,0.000312857000000,0.000148907000000 +0.000395031000000,0.000047376000000,0.000058043000000,0.000308117000000,0.000038685000000,0.000327475000000,0.000263870000000,0.000297845000000,0.017842523000000,0.017754029000000,0.000262290000000,0.000071476000000,0.000077796000000,0.000220018000000,0.000149302000000 +0.000332610000000,0.000046981000000,0.000057648000000,0.000264266000000,0.000038290000000,0.000369747000000,0.000282438000000,0.000262685000000,0.018790670000000,0.016670770000000,0.000326290000000,0.000074240000000,0.000076611000000,0.000270981000000,0.000154833000000 +0.000337746000000,0.000045401000000,0.000059624000000,0.000262684000000,0.000037895000000,0.000346043000000,0.000269005000000,0.000272167000000,0.017472745000000,0.016657734000000,0.000265450000000,0.000074635000000,0.000112956000000,0.000211327000000,0.000149697000000 +0.000437302000000,0.000047376000000,0.000094389000000,0.000265450000000,0.000106240000000,0.000332610000000,0.000344068000000,0.000348413000000,0.017157487000000,0.017244795000000,0.000265450000000,0.000072660000000,0.000078191000000,0.000233055000000,0.000171426000000 +0.000349203000000,0.000060808000000,0.000058833000000,0.000263870000000,0.000050932000000,0.000383179000000,0.000265846000000,0.000271377000000,0.017655659000000,0.016672746000000,0.000267820000000,0.000071870000000,0.000080957000000,0.000266636000000,0.000150092000000 +0.000399771000000,0.000045796000000,0.000059623000000,0.000359079000000,0.000037895000000,0.000348808000000,0.000267030000000,0.000332611000000,0.017273635000000,0.017044104000000,0.000315623000000,0.000074635000000,0.000076611000000,0.000218438000000,0.000150488000000 +0.000363821000000,0.000045006000000,0.000056857000000,0.000262290000000,0.000038290000000,0.000367376000000,0.000501302000000,0.000266240000000,0.017880448000000,0.017717289000000,0.000328660000000,0.000073055000000,0.000078981000000,0.000237401000000,0.000158783000000 +0.000581894000000,0.000047377000000,0.000058043000000,0.000266636000000,0.000038290000000,0.000332611000000,0.000289549000000,0.000263870000000,0.017758375000000,0.016533290000000,0.000262685000000,0.000071870000000,0.000078191000000,0.000257549000000,0.000184463000000 +0.000340907000000,0.000047377000000,0.000060019000000,0.000304561000000,0.000038290000000,0.000416759000000,0.000300216000000,0.000356710000000,0.017347510000000,0.016811808000000,0.000263475000000,0.000073450000000,0.000113352000000,0.000229499000000,0.000152067000000 +0.000353549000000,0.000047771000000,0.000058833000000,0.000267820000000,0.000037895000000,0.000357104000000,0.000267820000000,0.000278487000000,0.018103263000000,0.017151560000000,0.000316018000000,0.000070685000000,0.000078981000000,0.000317203000000,0.000148513000000 +0.000336956000000,0.000045006000000,0.000075821000000,0.000267031000000,0.000037895000000,0.000420709000000,0.000267821000000,0.000263475000000,0.017402029000000,0.016816153000000,0.000263080000000,0.000074636000000,0.000084512000000,0.000200661000000,0.000149302000000 +0.000391080000000,0.000045006000000,0.000060414000000,0.000317993000000,0.000037895000000,0.000349203000000,0.000283228000000,0.000297450000000,0.019716695000000,0.017178030000000,0.000314833000000,0.000074241000000,0.000080562000000,0.000234635000000,0.000185252000000 +0.000355524000000,0.000082142000000,0.000059228000000,0.000265055000000,0.000037895000000,0.000347623000000,0.000272956000000,0.000262685000000,0.019077485000000,0.016892400000000,0.000265056000000,0.000073846000000,0.000076216000000,0.000183672000000,0.000148907000000 +0.000401352000000,0.000061994000000,0.000057648000000,0.000302191000000,0.000038685000000,0.000332611000000,0.000300611000000,0.000334586000000,0.017573486000000,0.016910573000000,0.000263080000000,0.000072265000000,0.000078191000000,0.000256759000000,0.000148907000000 +0.000337351000000,0.000047771000000,0.000057648000000,0.000262290000000,0.000038685000000,0.000336166000000,0.000266240000000,0.000270586000000,0.018884300000000,0.018311461000000,0.000314833000000,0.000072265000000,0.000117302000000,0.000252413000000,0.000150092000000 +0.000460611000000,0.000044611000000,0.000058834000000,0.000265056000000,0.000039475000000,0.000422290000000,0.000393845000000,0.000264265000000,0.018030572000000,0.016844598000000,0.000264660000000,0.000092808000000,0.000077401000000,0.000199080000000,0.000229500000000 +0.000338142000000,0.000044216000000,0.000095574000000,0.000425845000000,0.000038685000000,0.000347623000000,0.000334981000000,0.000336561000000,0.017536745000000,0.016984054000000,0.000267030000000,0.000074241000000,0.000081746000000,0.000294685000000,0.000149698000000 +0.000399771000000,0.000047377000000,0.000059623000000,0.000264265000000,0.000038289000000,0.000445993000000,0.000264266000000,0.000262290000000,0.017349486000000,0.016912943000000,0.000278487000000,0.000073845000000,0.000078981000000,0.000196709000000,0.000148512000000 +0.000336957000000,0.000103080000000,0.000062389000000,0.000289944000000,0.000037894000000,0.000338141000000,0.000300611000000,0.000354734000000,0.017365289000000,0.017237684000000,0.000267426000000,0.000074241000000,0.000078192000000,0.000329845000000,0.000148908000000 +0.000401351000000,0.000046981000000,0.000058833000000,0.000267821000000,0.000038685000000,0.000470882000000,0.000268611000000,0.000265055000000,0.017436399000000,0.016751363000000,0.000301401000000,0.000071475000000,0.000077796000000,0.000271772000000,0.000184858000000 +0.000362241000000,0.000045006000000,0.000057648000000,0.000262290000000,0.000038685000000,0.000348809000000,0.000265845000000,0.000267425000000,0.017177635000000,0.017507115000000,0.000265055000000,0.000074635000000,0.000135080000000,0.000252018000000,0.000148512000000 +0.000351178000000,0.000045006000000,0.000057648000000,0.000347228000000,0.000060018000000,0.000392660000000,0.000312857000000,0.000351574000000,0.017374375000000,0.017435610000000,0.000265056000000,0.000107821000000,0.000082142000000,0.000230684000000,0.000147327000000 +0.000351178000000,0.000047376000000,0.000060019000000,0.000270981000000,0.000039080000000,0.000363821000000,0.000262685000000,0.000264265000000,0.017419412000000,0.017470375000000,0.000301005000000,0.000071080000000,0.000077401000000,0.000197105000000,0.000148907000000 +0.000329846000000,0.000047376000000,0.000059624000000,0.000297846000000,0.000039475000000,0.000371327000000,0.000265845000000,0.000341697000000,0.017555708000000,0.016474030000000,0.000266636000000,0.000071080000000,0.000079771000000,0.000248068000000,0.000170635000000 +0.000355524000000,0.000045006000000,0.000059228000000,0.000269006000000,0.000037500000000,0.000331031000000,0.000301796000000,0.000266240000000,0.017249140000000,0.016745437000000,0.000264265000000,0.000073450000000,0.000080957000000,0.000202635000000,0.000150488000000 +0.000357499000000,0.000047771000000,0.000059624000000,0.000263475000000,0.000038685000000,0.000454685000000,0.000262685000000,0.000319969000000,0.017687263000000,0.019649929000000,0.000316018000000,0.000071080000000,0.000082537000000,0.000255968000000,0.000151673000000 +0.000421895000000,0.000046981000000,0.000060018000000,0.000334586000000,0.000037895000000,0.000547919000000,0.000264265000000,0.000323525000000,0.017592448000000,0.016900697000000,0.000270586000000,0.000073845000000,0.000079376000000,0.000228315000000,0.000148907000000 +0.000335771000000,0.000046981000000,0.000059623000000,0.000267426000000,0.000038290000000,0.000361451000000,0.000266635000000,0.000262685000000,0.018036103000000,0.017780104000000,0.000263080000000,0.000143771000000,0.000093993000000,0.000216858000000,0.000148512000000 +0.000367376000000,0.000047377000000,0.000059228000000,0.000265450000000,0.000037895000000,0.000354340000000,0.000263870000000,0.000269006000000,0.018401929000000,0.017685684000000,0.000265846000000,0.000073450000000,0.000083327000000,0.000250042000000,0.000146932000000 +0.000331031000000,0.000045401000000,0.000059623000000,0.000268611000000,0.000037895000000,0.000390685000000,0.000312858000000,0.000267820000000,0.017558474000000,0.017493289000000,0.000261894000000,0.000073451000000,0.000077796000000,0.000202636000000,0.000148907000000 +0.000406487000000,0.000045401000000,0.000102290000000,0.000264660000000,0.000041056000000,0.000325500000000,0.000263080000000,0.000274932000000,0.017621684000000,0.017276005000000,0.000300215000000,0.000072266000000,0.000076611000000,0.000225154000000,0.000188019000000 +0.000350783000000,0.000045401000000,0.000059228000000,0.000351178000000,0.000039080000000,0.000368561000000,0.000264265000000,0.000356314000000,0.017234128000000,0.017460893000000,0.000268611000000,0.000075031000000,0.000077006000000,0.000240956000000,0.000151672000000 +0.000335771000000,0.000047771000000,0.000063179000000,0.000265056000000,0.000038290000000,0.000333401000000,0.000337747000000,0.000262685000000,0.017421782000000,0.017619313000000,0.000276907000000,0.000073845000000,0.000077797000000,0.000247277000000,0.000150883000000 +0.000367376000000,0.000047376000000,0.000057252000000,0.000262684000000,0.000038290000000,0.000335376000000,0.000262685000000,0.000265450000000,0.017525288000000,0.017465634000000,0.000301401000000,0.000071476000000,0.000077796000000,0.000229895000000,0.000197895000000 +0.000351574000000,0.000047376000000,0.000058833000000,0.000310882000000,0.000037894000000,0.000336561000000,0.000263870000000,0.000299030000000,0.017280351000000,0.016635610000000,0.000272562000000,0.000073451000000,0.000078191000000,0.000252413000000,0.000185648000000 +0.000333006000000,0.000047772000000,0.000057253000000,0.000289944000000,0.000037894000000,0.000349204000000,0.000280858000000,0.000279673000000,0.017238474000000,0.017030672000000,0.000260710000000,0.000071475000000,0.000078191000000,0.000236611000000,0.000154043000000 +0.000350389000000,0.000045401000000,0.000059228000000,0.000342092000000,0.000037894000000,0.000380808000000,0.000273351000000,0.000548314000000,0.017675806000000,0.016866326000000,0.000397401000000,0.000071870000000,0.000077006000000,0.000225154000000,0.000148512000000 +0.000370931000000,0.000047376000000,0.000095574000000,0.000263475000000,0.000039080000000,0.000334586000000,0.000284018000000,0.000346833000000,0.017301684000000,0.017091511000000,0.000267425000000,0.000074636000000,0.000092414000000,0.000262685000000,0.000152463000000 +0.000357105000000,0.000047771000000,0.000058439000000,0.000263475000000,0.000038290000000,0.000385154000000,0.000268610000000,0.000268215000000,0.017818424000000,0.016775857000000,0.000301401000000,0.000071475000000,0.000077401000000,0.000233450000000,0.000189599000000 +0.000370141000000,0.000045401000000,0.000058438000000,0.000590191000000,0.000038685000000,0.000333796000000,0.000264265000000,0.000266635000000,0.017068203000000,0.016479956000000,0.000270981000000,0.000074241000000,0.000077401000000,0.000198289000000,0.000150092000000 +0.000366191000000,0.000047771000000,0.000059623000000,0.000312463000000,0.000038290000000,0.000387524000000,0.000314043000000,0.000301006000000,0.017977239000000,0.016469290000000,0.000308117000000,0.000073846000000,0.000078191000000,0.000248067000000,0.000150882000000 +0.000404117000000,0.000045796000000,0.000059623000000,0.000268216000000,0.000076216000000,0.000342092000000,0.000266240000000,0.000266635000000,0.017052796000000,0.017201733000000,0.000267426000000,0.000071870000000,0.000078981000000,0.000193944000000,0.000149302000000 +0.000329450000000,0.000045401000000,0.000057648000000,0.000266635000000,0.000037500000000,0.000331030000000,0.000265055000000,0.000265450000000,0.017127462000000,0.016628104000000,0.000265055000000,0.000075426000000,0.000077401000000,0.000226339000000,0.000185253000000 +0.000366981000000,0.000045006000000,0.000058438000000,0.000301006000000,0.000038290000000,0.000357500000000,0.000265450000000,0.000301796000000,0.017683313000000,0.016993930000000,0.000305352000000,0.000074241000000,0.000112562000000,0.000244512000000,0.000149697000000 +0.000413598000000,0.000045006000000,0.000095573000000,0.000266635000000,0.000037895000000,0.000337351000000,0.000264266000000,0.000272957000000,0.017832647000000,0.016943363000000,0.000273746000000,0.000073846000000,0.000077796000000,0.000216463000000,0.000148907000000 +0.000329055000000,0.000045796000000,0.000058833000000,0.000267821000000,0.000037895000000,0.000380018000000,0.000302191000000,0.000267820000000,0.017759165000000,0.016572400000000,0.000262290000000,0.000107821000000,0.000077797000000,0.000249253000000,0.000148117000000 +0.000457845000000,0.000045401000000,0.000057648000000,0.000311277000000,0.000038290000000,0.000348414000000,0.000262289000000,0.000299031000000,0.017652498000000,0.016398969000000,0.000339722000000,0.000075031000000,0.000081746000000,0.000225154000000,0.000189598000000 +0.000412413000000,0.000046982000000,0.000058439000000,0.000262290000000,0.000037894000000,0.000433351000000,0.000267426000000,0.000265450000000,0.017479856000000,0.016709092000000,0.000268216000000,0.000078586000000,0.000078586000000,0.000233450000000,0.000148907000000 +0.000330636000000,0.000065945000000,0.000059623000000,0.000284018000000,0.000038290000000,0.000351573000000,0.000300216000000,0.000260710000000,0.017952350000000,0.016935066000000,0.000297055000000,0.000074240000000,0.000078586000000,0.000191968000000,0.000150092000000 +0.000398586000000,0.000047771000000,0.000056858000000,0.000265846000000,0.000039870000000,0.000407277000000,0.000266635000000,0.000267426000000,0.017124697000000,0.017206473000000,0.000267426000000,0.000074241000000,0.000076610000000,0.000242931000000,0.000153253000000 +0.000331821000000,0.000047771000000,0.000057253000000,0.000352759000000,0.000037895000000,0.000363820000000,0.000264265000000,0.000263080000000,0.017641832000000,0.017031857000000,0.000264660000000,0.000073846000000,0.000078192000000,0.000225944000000,0.000185253000000 +0.000349204000000,0.000047376000000,0.000078191000000,0.000322734000000,0.000039870000000,0.000362636000000,0.000470092000000,0.000300216000000,0.017630374000000,0.016556597000000,0.000342882000000,0.000073846000000,0.000078191000000,0.000188808000000,0.000146932000000 +0.000359475000000,0.000044611000000,0.000058043000000,0.000265846000000,0.000037894000000,0.000346043000000,0.000298240000000,0.000262685000000,0.017149585000000,0.017078079000000,0.000263870000000,0.000077796000000,0.000079771000000,0.000248858000000,0.000150092000000 +0.000338536000000,0.000050141000000,0.000057648000000,0.000270191000000,0.000037894000000,0.000390290000000,0.000508018000000,0.000265056000000,0.017456943000000,0.016925585000000,0.000291920000000,0.000071080000000,0.000078981000000,0.000193549000000,0.000150487000000 +0.000388709000000,0.000045006000000,0.000058833000000,0.000263870000000,0.000037895000000,0.000356314000000,0.000472858000000,0.000346437000000,0.017492498000000,0.016927165000000,0.000263870000000,0.000073056000000,0.000076215000000,0.000238981000000,0.000204216000000 +0.000353154000000,0.000046586000000,0.000057253000000,0.000266636000000,0.000037895000000,0.000357500000000,0.000370932000000,0.000263080000000,0.017096252000000,0.016691314000000,0.000265450000000,0.000075821000000,0.000107031000000,0.000183673000000,0.000178931000000 +0.000395821000000,0.000083327000000,0.000058043000000,0.000301401000000,0.000039080000000,0.000380808000000,0.000354340000000,0.000272956000000,0.018271955000000,0.016829585000000,0.000398191000000,0.000071475000000,0.000080562000000,0.000285994000000,0.000156809000000 +0.000352759000000,0.000046587000000,0.000057253000000,0.000267425000000,0.000037895000000,0.000344067000000,0.000269006000000,0.000267821000000,0.018068498000000,0.016984449000000,0.000378438000000,0.000092019000000,0.000076611000000,0.000309302000000,0.000148512000000 +0.000370537000000,0.000056857000000,0.000057253000000,0.000263475000000,0.000039080000000,0.000357895000000,0.000301401000000,0.000263080000000,0.017859905000000,0.017236104000000,0.000306141000000,0.000073845000000,0.000077796000000,0.000205796000000,0.000163920000000 +0.000331821000000,0.000047772000000,0.000057648000000,0.000299426000000,0.000037895000000,0.000361055000000,0.000263870000000,0.000299425000000,0.017537931000000,0.017359362000000,0.000260710000000,0.000104660000000,0.000076216000000,0.000357894000000,0.000292315000000 +0.000325894000000,0.000046981000000,0.000057253000000,0.000270586000000,0.000038290000000,0.000426240000000,0.000263475000000,0.000270586000000,0.017317486000000,0.017588499000000,0.000265845000000,0.000073055000000,0.000077796000000,0.000193944000000,0.000164315000000 +0.000329055000000,0.000046981000000,0.000057648000000,0.000263870000000,0.000056858000000,0.000383969000000,0.000264660000000,0.000270191000000,0.017686869000000,0.016745042000000,0.000263475000000,0.000074241000000,0.000122043000000,0.000271771000000,0.000258734000000 +0.000330240000000,0.000049747000000,0.000061203000000,0.000267030000000,0.000070290000000,0.000396610000000,0.000264660000000,0.000324709000000,0.017432844000000,0.016602030000000,0.000266241000000,0.000071475000000,0.000076611000000,0.000227919000000,0.000160364000000 +0.000416759000000,0.000067129000000,0.000059623000000,0.000271376000000,0.000040265000000,0.000335377000000,0.000363031000000,0.000266636000000,0.017854770000000,0.017725189000000,0.000307327000000,0.000092808000000,0.000077796000000,0.000207377000000,0.000159178000000 +0.000332215000000,0.000047376000000,0.000058834000000,0.000340512000000,0.000051327000000,0.000386339000000,0.000271771000000,0.000363821000000,0.018428004000000,0.017040548000000,0.000269006000000,0.000074241000000,0.000082142000000,0.000227525000000,0.000158389000000 +0.000378438000000,0.000045006000000,0.000060018000000,0.000280858000000,0.000037895000000,0.000336561000000,0.000262290000000,0.000266635000000,0.017779708000000,0.017145239000000,0.000266240000000,0.000074240000000,0.000078981000000,0.000202241000000,0.000159969000000 +0.000333400000000,0.000045401000000,0.000059623000000,0.000267425000000,0.000037895000000,0.000375277000000,0.000282833000000,0.000265450000000,0.017390573000000,0.017520943000000,0.000312463000000,0.000071475000000,0.000076216000000,0.000235426000000,0.000157599000000 +0.000391080000000,0.000045401000000,0.000060018000000,0.000308907000000,0.000037895000000,0.000333401000000,0.000265845000000,0.000300216000000,0.019734077000000,0.017151560000000,0.000267425000000,0.000074240000000,0.000078191000000,0.000246882000000,0.000158783000000 +0.000377647000000,0.000047771000000,0.000057648000000,0.000264266000000,0.000037895000000,0.000331425000000,0.000298241000000,0.000265056000000,0.017818819000000,0.017156301000000,0.000265055000000,0.000093204000000,0.000078981000000,0.000191573000000,0.000157203000000 +0.000367376000000,0.000045401000000,0.000057253000000,0.000314833000000,0.000037895000000,0.000403722000000,0.000263870000000,0.000265845000000,0.018125781000000,0.017709782000000,0.000301796000000,0.000110587000000,0.000080957000000,0.000290339000000,0.000159574000000 +0.000356709000000,0.000047376000000,0.000060019000000,0.000274932000000,0.000038290000000,0.000365796000000,0.000263080000000,0.000266240000000,0.018947115000000,0.016947709000000,0.000269005000000,0.000073846000000,0.000077796000000,0.000207771000000,0.000158389000000 +0.000336562000000,0.000120858000000,0.000057648000000,0.000268216000000,0.000037894000000,0.000336561000000,0.000334982000000,0.000266240000000,0.018561534000000,0.018307510000000,0.000343672000000,0.000074241000000,0.000080167000000,0.000238981000000,0.000158784000000 +0.000365796000000,0.000048167000000,0.000112561000000,0.000299030000000,0.000038685000000,0.000356315000000,0.000262290000000,0.000334586000000,0.018242720000000,0.017101783000000,0.000274142000000,0.000073845000000,0.000077796000000,0.000237796000000,0.000202636000000 +0.000382784000000,0.000047772000000,0.000110587000000,0.000315228000000,0.000037895000000,0.000431376000000,0.000264660000000,0.000267820000000,0.017467215000000,0.016582277000000,0.000263475000000,0.000073450000000,0.000079771000000,0.000215277000000,0.000157993000000 +0.000328265000000,0.000051327000000,0.000058833000000,0.000269006000000,0.000037895000000,0.000329055000000,0.000301006000000,0.000263080000000,0.017513437000000,0.017279955000000,0.000357895000000,0.000074241000000,0.000081746000000,0.000235425000000,0.000166290000000 +0.000338931000000,0.000047772000000,0.000058043000000,0.000274537000000,0.000038685000000,0.000404512000000,0.000268216000000,0.000299425000000,0.017278770000000,0.016801141000000,0.000265055000000,0.000121253000000,0.000076611000000,0.000192759000000,0.000169055000000 +0.000389895000000,0.000044611000000,0.000093994000000,0.000268610000000,0.000037895000000,0.000333006000000,0.000305746000000,0.000277303000000,0.017156696000000,0.016940597000000,0.000295475000000,0.000072265000000,0.000082932000000,0.000281253000000,0.000219228000000 +0.000360660000000,0.000066340000000,0.000060018000000,0.000299820000000,0.000038290000000,0.000403722000000,0.000267031000000,0.000266636000000,0.017697930000000,0.016455462000000,0.000267425000000,0.000071870000000,0.000077797000000,0.000206586000000,0.000159574000000 +0.000382784000000,0.000057648000000,0.000059623000000,0.000263870000000,0.000037895000000,0.000365400000000,0.000278092000000,0.000264265000000,0.017793140000000,0.016519462000000,0.000266636000000,0.000072660000000,0.000083326000000,0.000225154000000,0.000157598000000 +0.000371721000000,0.000046982000000,0.000057253000000,0.000268215000000,0.000038290000000,0.000411228000000,0.000355920000000,0.000263475000000,0.017426523000000,0.017605881000000,0.000299425000000,0.000073450000000,0.000167475000000,0.000278883000000,0.000155623000000 +0.000490241000000,0.000047376000000,0.000059623000000,0.000298635000000,0.000037895000000,0.000359080000000,0.000266635000000,0.000339722000000,0.017259017000000,0.016640746000000,0.000263870000000,0.000071870000000,0.000092414000000,0.000191178000000,0.000173401000000 +0.000443228000000,0.000045006000000,0.000058833000000,0.000265055000000,0.000057648000000,0.000400166000000,0.000270981000000,0.000270191000000,0.016944549000000,0.016771511000000,0.000261105000000,0.000072661000000,0.000078586000000,0.000230290000000,0.000159178000000 +0.000325894000000,0.000045401000000,0.000057253000000,0.000269796000000,0.000129549000000,0.000338932000000,0.000340116000000,0.000269006000000,0.018021880000000,0.018966868000000,0.000299031000000,0.000074636000000,0.000083722000000,0.000193944000000,0.000160759000000 +0.000337747000000,0.000069895000000,0.000059229000000,0.000265450000000,0.000110587000000,0.000346043000000,0.000331821000000,0.000303376000000,0.017065832000000,0.017164992000000,0.000263475000000,0.000071475000000,0.000084907000000,0.000568462000000,0.000218042000000 +0.000403722000000,0.000052117000000,0.000058833000000,0.000268216000000,0.000128364000000,0.000371721000000,0.000351969000000,0.000274932000000,0.017485387000000,0.018750374000000,0.000270586000000,0.000070685000000,0.000077401000000,0.000229500000000,0.000304166000000 +0.000361055000000,0.000045006000000,0.000057253000000,0.000304957000000,0.000108611000000,0.000398586000000,0.000265846000000,0.000263080000000,0.017887560000000,0.017757585000000,0.000337351000000,0.000073846000000,0.000078191000000,0.000233846000000,0.000221993000000 +0.000367771000000,0.000044611000000,0.000057648000000,0.000274536000000,0.000059623000000,0.000351574000000,0.000267821000000,0.000288759000000,0.017498029000000,0.017151561000000,0.000261499000000,0.000073846000000,0.000079772000000,0.000228315000000,0.000162735000000 +0.000358290000000,0.000047771000000,0.000059228000000,0.000276512000000,0.000040660000000,0.000329845000000,0.000509993000000,0.000266241000000,0.017422177000000,0.016993140000000,0.000320364000000,0.000073845000000,0.000077796000000,0.000198685000000,0.000157994000000 +0.000428611000000,0.000047376000000,0.000057253000000,0.000306931000000,0.000040265000000,0.000343278000000,0.000288759000000,0.000284018000000,0.017410326000000,0.016354721000000,0.000269401000000,0.000078191000000,0.000079771000000,0.000282833000000,0.000159574000000 +0.000338141000000,0.000047377000000,0.000058043000000,0.000273351000000,0.000052512000000,0.000328660000000,0.000265845000000,0.000265451000000,0.017604301000000,0.016616252000000,0.000270191000000,0.000079376000000,0.000080561000000,0.000196710000000,0.000158388000000 +0.000395031000000,0.000045796000000,0.000056857000000,0.000268216000000,0.000037499000000,0.000507623000000,0.000264660000000,0.000263475000000,0.017729140000000,0.017448251000000,0.000306142000000,0.000076216000000,0.000078191000000,0.000241747000000,0.000159574000000 +0.000335376000000,0.000057648000000,0.000056858000000,0.000323525000000,0.000037894000000,0.000333400000000,0.000339722000000,0.000366586000000,0.017373980000000,0.017230967000000,0.000261104000000,0.000078981000000,0.000076611000000,0.000254783000000,0.000162735000000 +0.000333401000000,0.000045006000000,0.000057253000000,0.000283228000000,0.000056857000000,0.000375673000000,0.000273351000000,0.000280067000000,0.017934967000000,0.017413881000000,0.000272956000000,0.000076611000000,0.000083722000000,0.000216858000000,0.000159574000000 +0.000348018000000,0.000047771000000,0.000059623000000,0.000285599000000,0.000040265000000,0.000356709000000,0.000264265000000,0.000292315000000,0.017580202000000,0.017347906000000,0.000260709000000,0.000134685000000,0.000076216000000,0.000215277000000,0.000159574000000 +0.000327870000000,0.000058833000000,0.000059623000000,0.000280067000000,0.000051722000000,0.000365401000000,0.000263475000000,0.000314043000000,0.017026721000000,0.017016449000000,0.000265451000000,0.000075030000000,0.000079772000000,0.000266635000000,0.000158389000000 +0.000374882000000,0.000045006000000,0.000058833000000,0.000300610000000,0.000037894000000,0.000330240000000,0.000267425000000,0.000265450000000,0.017600745000000,0.017243610000000,0.000296660000000,0.000074636000000,0.000078192000000,0.000231080000000,0.000159179000000 +0.000325500000000,0.000045401000000,0.000078191000000,0.000270586000000,0.000037894000000,0.000392265000000,0.000334586000000,0.000302586000000,0.017251115000000,0.016563314000000,0.000265451000000,0.000074240000000,0.000078981000000,0.000192364000000,0.000177352000000 +0.000399771000000,0.000047772000000,0.000075031000000,0.000264660000000,0.000039475000000,0.000332216000000,0.000267031000000,0.000265055000000,0.017376745000000,0.017263757000000,0.000266636000000,0.000073450000000,0.000077006000000,0.000304957000000,0.000159969000000 +0.000332216000000,0.000046981000000,0.000059623000000,0.000308512000000,0.000038290000000,0.000334586000000,0.000270587000000,0.000267821000000,0.017596004000000,0.017225437000000,0.000299425000000,0.000073450000000,0.000078586000000,0.000266240000000,0.000162340000000 +0.000394240000000,0.000065549000000,0.000057648000000,0.000263870000000,0.000037895000000,0.000334191000000,0.000347228000000,0.000285598000000,0.017707412000000,0.017379115000000,0.000261895000000,0.000072265000000,0.000080167000000,0.000216068000000,0.000161549000000 +0.000355129000000,0.000113352000000,0.000058834000000,0.000265055000000,0.000038290000000,0.000328265000000,0.000270981000000,0.000263080000000,0.017195412000000,0.016666425000000,0.000266241000000,0.000072265000000,0.000078587000000,0.000231475000000,0.000193549000000 +0.000432561000000,0.000047771000000,0.000057648000000,0.000306536000000,0.000037500000000,0.000368166000000,0.000280068000000,0.000305747000000,0.017580597000000,0.016826425000000,0.000302191000000,0.000072660000000,0.000096759000000,0.000217647000000,0.000210537000000 +0.000354735000000,0.000047376000000,0.000059228000000,0.000267030000000,0.000037895000000,0.000336956000000,0.000284413000000,0.000263870000000,0.017078079000000,0.016438080000000,0.000278487000000,0.000074241000000,0.000076611000000,0.000215278000000,0.000159574000000 +0.000341302000000,0.000045006000000,0.000077006000000,0.000265451000000,0.000039870000000,0.000365401000000,0.000279277000000,0.000269005000000,0.017385831000000,0.016630474000000,0.000265055000000,0.000074240000000,0.000080957000000,0.000262290000000,0.000158784000000 +0.000331425000000,0.000047376000000,0.000056858000000,0.000265845000000,0.000037895000000,0.000352364000000,0.000339327000000,0.000300216000000,0.017757980000000,0.016972993000000,0.000493401000000,0.000074635000000,0.000099919000000,0.000181303000000,0.000253204000000 +0.000335771000000,0.000097154000000,0.000059623000000,0.000269006000000,0.000038290000000,0.000326290000000,0.000280858000000,0.000267031000000,0.017459313000000,0.016791659000000,0.000263475000000,0.000074241000000,0.000094388000000,0.000230290000000,0.000161154000000 +0.000794833000000,0.000045401000000,0.000059624000000,0.000357105000000,0.000037894000000,0.000329451000000,0.000282043000000,0.000263080000000,0.017608647000000,0.017253091000000,0.000274932000000,0.000107821000000,0.000079376000000,0.000251228000000,0.000161549000000 +0.000368957000000,0.000047771000000,0.000058438000000,0.000263870000000,0.000038290000000,0.000346833000000,0.000281253000000,0.000282833000000,0.017090721000000,0.016506425000000,0.000266635000000,0.000071475000000,0.000127969000000,0.000246883000000,0.000191574000000 +0.000372117000000,0.000047376000000,0.000059623000000,0.000321549000000,0.000038290000000,0.000362636000000,0.000281253000000,0.000264265000000,0.017259017000000,0.016937042000000,0.000301005000000,0.000074241000000,0.000080956000000,0.000210141000000,0.000156413000000 +0.000364216000000,0.000045006000000,0.000057648000000,0.000281253000000,0.000038290000000,0.000331425000000,0.000318389000000,0.000300611000000,0.018058226000000,0.016876597000000,0.000303376000000,0.000071475000000,0.000078587000000,0.000290340000000,0.000157598000000 +0.000333796000000,0.000047772000000,0.000058438000000,0.000265450000000,0.000037500000000,0.000366191000000,0.000297056000000,0.000263475000000,0.017658819000000,0.016812203000000,0.000264660000000,0.000073846000000,0.000078191000000,0.000261499000000,0.000159574000000 +0.000394240000000,0.000045006000000,0.000057253000000,0.000304166000000,0.000073056000000,0.000333796000000,0.000289944000000,0.000265845000000,0.017215165000000,0.016997486000000,0.000302191000000,0.000072265000000,0.000078586000000,0.000193154000000,0.000193549000000 +0.000353154000000,0.000045006000000,0.000059228000000,0.000274932000000,0.000051722000000,0.000401352000000,0.000280857000000,0.000301796000000,0.017903363000000,0.017067017000000,0.000263080000000,0.000138240000000,0.000080167000000,0.000317203000000,0.000159574000000 +0.000328660000000,0.000064759000000,0.000059228000000,0.000271376000000,0.000037895000000,0.000328265000000,0.000280858000000,0.000260710000000,0.018322917000000,0.016663660000000,0.000264660000000,0.000088858000000,0.000113747000000,0.000180512000000,0.000159574000000 +0.000410043000000,0.000045401000000,0.000059623000000,0.000302586000000,0.000037500000000,0.000401352000000,0.000316414000000,0.000261894000000,0.017934177000000,0.016761240000000,0.000269401000000,0.000075425000000,0.000076611000000,0.000211327000000,0.000160364000000 +0.000326289000000,0.000045006000000,0.000058833000000,0.000265055000000,0.000037895000000,0.000364216000000,0.000291129000000,0.000281648000000,0.017272844000000,0.016999066000000,0.000266241000000,0.000071475000000,0.000078191000000,0.000278883000000,0.000157993000000 +0.000336561000000,0.000047772000000,0.000058834000000,0.000266240000000,0.000037895000000,0.000329450000000,0.000287969000000,0.000263475000000,0.017407560000000,0.016776252000000,0.000300611000000,0.000074240000000,0.000077796000000,0.000192759000000,0.000157598000000 +0.000337746000000,0.000049746000000,0.000096364000000,0.000271772000000,0.000038290000000,0.000369747000000,0.000554240000000,0.000299821000000,0.017679363000000,0.017046474000000,0.000263870000000,0.000110191000000,0.000077796000000,0.000255969000000,0.000160364000000 +0.000385944000000,0.000047376000000,0.000057648000000,0.000270981000000,0.000038290000000,0.000334586000000,0.000280463000000,0.000280462000000,0.017751658000000,0.016664845000000,0.000261894000000,0.000074635000000,0.000078191000000,0.000229499000000,0.000160364000000 +0.000348808000000,0.000045006000000,0.000057253000000,0.000308512000000,0.000038290000000,0.000408068000000,0.000278488000000,0.000262290000000,0.017777733000000,0.016615858000000,0.000266636000000,0.000076215000000,0.000096364000000,0.000245302000000,0.000156808000000 +0.000399771000000,0.000119673000000,0.000059624000000,0.000272166000000,0.000037499000000,0.000334190000000,0.000281648000000,0.000299820000000,0.018075609000000,0.017070573000000,0.000265450000000,0.000071870000000,0.000082932000000,0.000213302000000,0.000157599000000 +0.000340117000000,0.000047376000000,0.000057253000000,0.000270191000000,0.000037894000000,0.000386735000000,0.000337746000000,0.000267821000000,0.017224647000000,0.017690424000000,0.000284413000000,0.000073846000000,0.000077401000000,0.000252809000000,0.000156018000000 +0.000392660000000,0.000045401000000,0.000059623000000,0.000466141000000,0.000037894000000,0.000329845000000,0.000281648000000,0.000264660000000,0.017554128000000,0.016524203000000,0.000264660000000,0.000071870000000,0.000082142000000,0.000235425000000,0.000193944000000 +0.000325895000000,0.000045401000000,0.000058833000000,0.000267426000000,0.000037895000000,0.000382388000000,0.000290734000000,0.000523425000000,0.019967163000000,0.017588103000000,0.000266240000000,0.000106636000000,0.000084908000000,0.000211327000000,0.000159179000000 +0.000331031000000,0.000047377000000,0.000095574000000,0.000302586000000,0.000038290000000,0.000329450000000,0.000378043000000,0.000265846000000,0.018211510000000,0.016917684000000,0.000296660000000,0.000071475000000,0.000079772000000,0.000298241000000,0.000157994000000 +0.000347623000000,0.000047377000000,0.000057253000000,0.000263080000000,0.000038290000000,0.000332215000000,0.000282833000000,0.000274931000000,0.018815559000000,0.016619017000000,0.000266635000000,0.000073845000000,0.000125993000000,0.000187228000000,0.000157598000000 +0.000348018000000,0.000044611000000,0.000059228000000,0.000262289000000,0.000037895000000,0.000359870000000,0.000289154000000,0.000265450000000,0.018203214000000,0.016482721000000,0.000270981000000,0.000076216000000,0.000080562000000,0.000263870000000,0.000200265000000 +0.000374487000000,0.000067524000000,0.000057253000000,0.000347228000000,0.000037500000000,0.000334586000000,0.000286388000000,0.000348808000000,0.017648152000000,0.017639856000000,0.000299821000000,0.000072265000000,0.000077797000000,0.000253203000000,0.000166685000000 +0.000342093000000,0.000045006000000,0.000058833000000,0.000265450000000,0.000037500000000,0.000377648000000,0.000376858000000,0.000264265000000,0.017537535000000,0.017178029000000,0.000261104000000,0.000073845000000,0.000077796000000,0.000215673000000,0.000157598000000 +0.000399772000000,0.000045401000000,0.000059624000000,0.000275326000000,0.000037500000000,0.000349599000000,0.000280857000000,0.000280463000000,0.017155116000000,0.016338524000000,0.000272166000000,0.000118092000000,0.000078191000000,0.000224759000000,0.000161154000000 +0.000333401000000,0.000048167000000,0.000058043000000,0.000265450000000,0.000037895000000,0.000367772000000,0.000280463000000,0.000266635000000,0.017740202000000,0.018787905000000,0.000277697000000,0.000072265000000,0.000079772000000,0.000233055000000,0.000220413000000 +0.000369351000000,0.000045006000000,0.000060018000000,0.000264660000000,0.000038290000000,0.000330636000000,0.000278882000000,0.000272561000000,0.017193832000000,0.017205289000000,0.000269401000000,0.000074240000000,0.000078586000000,0.000229105000000,0.000156018000000 +0.000327475000000,0.000045006000000,0.000058833000000,0.000335771000000,0.000055278000000,0.000332610000000,0.000285994000000,0.000345648000000,0.017593239000000,0.017041338000000,0.000303377000000,0.000071475000000,0.000081351000000,0.000246882000000,0.000159574000000 +0.000340117000000,0.000047376000000,0.000056857000000,0.000266240000000,0.000037895000000,0.000359475000000,0.000282833000000,0.000265056000000,0.017261388000000,0.016843413000000,0.000266635000000,0.000073056000000,0.000081352000000,0.000215673000000,0.000164710000000 +0.000352759000000,0.000046981000000,0.000058833000000,0.000268216000000,0.000037895000000,0.000353549000000,0.000282833000000,0.000266240000000,0.018104449000000,0.016852894000000,0.000267426000000,0.000073451000000,0.000078191000000,0.000218833000000,0.000159179000000 +0.000331031000000,0.000052117000000,0.000058833000000,0.000302586000000,0.000037895000000,0.000517104000000,0.000280463000000,0.000336562000000,0.017807363000000,0.016621783000000,0.000301006000000,0.000145351000000,0.000077796000000,0.000201055000000,0.000157993000000 +0.000381203000000,0.000050537000000,0.000057648000000,0.000269006000000,0.000037895000000,0.000329055000000,0.000283624000000,0.000267030000000,0.017063067000000,0.016779413000000,0.000265451000000,0.000071475000000,0.000118092000000,0.000223178000000,0.000164709000000 +0.000329845000000,0.000050142000000,0.000057648000000,0.000262290000000,0.000037895000000,0.000364611000000,0.000278092000000,0.000284018000000,0.017684103000000,0.017584943000000,0.000282043000000,0.000077401000000,0.000079376000000,0.000260314000000,0.000176957000000 +0.000378043000000,0.000051327000000,0.000120463000000,0.000298241000000,0.000038685000000,0.000337747000000,0.000282833000000,0.000268611000000,0.017908894000000,0.016490227000000,0.000263079000000,0.000108216000000,0.000075820000000,0.000214487000000,0.000159179000000 +0.000353944000000,0.000047771000000,0.000061204000000,0.000274932000000,0.000037895000000,0.000371721000000,0.000278883000000,0.000264265000000,0.017347116000000,0.016979314000000,0.000269796000000,0.000073846000000,0.000081351000000,0.000352758000000,0.000157994000000 +0.000430191000000,0.000051327000000,0.000058438000000,0.000342092000000,0.000037895000000,0.000340117000000,0.000282833000000,0.000355129000000,0.017005388000000,0.016537239000000,0.000342092000000,0.000073451000000,0.000076611000000,0.000201845000000,0.000158389000000 +0.000381204000000,0.000047772000000,0.000056858000000,0.000265450000000,0.000037895000000,0.000434537000000,0.000305352000000,0.000265055000000,0.018203214000000,0.019909879000000,0.000261895000000,0.000144562000000,0.000078192000000,0.000237401000000,0.000197104000000 +0.000413993000000,0.000048167000000,0.000060414000000,0.000263475000000,0.000037895000000,0.000330241000000,0.000282833000000,0.000263080000000,0.017378721000000,0.017242425000000,0.000261104000000,0.000072266000000,0.000077796000000,0.000192759000000,0.000163919000000 +0.000355524000000,0.000050142000000,0.000056857000000,0.000361846000000,0.000038685000000,0.000421104000000,0.000280463000000,0.000265450000000,0.017530030000000,0.016570030000000,0.000263870000000,0.000075425000000,0.000078586000000,0.000284809000000,0.000157203000000 +0.000389895000000,0.000047772000000,0.000059228000000,0.000262289000000,0.000037895000000,0.000350389000000,0.000279278000000,0.000267031000000,0.016987610000000,0.018072054000000,0.000306536000000,0.000071080000000,0.000078191000000,0.000240956000000,0.000162339000000 +0.000326290000000,0.000050142000000,0.000058438000000,0.000268611000000,0.000038290000000,0.000332216000000,0.000280067000000,0.000344462000000,0.017805387000000,0.016952054000000,0.000311673000000,0.000071475000000,0.000080562000000,0.000219623000000,0.000196710000000 +0.000370931000000,0.000050142000000,0.000057253000000,0.000263870000000,0.000038290000000,0.000331030000000,0.000282043000000,0.000260315000000,0.018435905000000,0.017124696000000,0.000265846000000,0.000145747000000,0.000078191000000,0.000236611000000,0.000157203000000 +0.000334586000000,0.000046981000000,0.000057648000000,0.000264660000000,0.000037895000000,0.000350388000000,0.000281252000000,0.000266636000000,0.018070868000000,0.016914524000000,0.000263080000000,0.000076216000000,0.000076611000000,0.000179327000000,0.000156019000000 +0.000340117000000,0.000046981000000,0.000057648000000,0.000303376000000,0.000040660000000,0.000346833000000,0.000281253000000,0.000283228000000,0.017881634000000,0.017127066000000,0.000260710000000,0.000071870000000,0.000079771000000,0.000268216000000,0.000161944000000 +0.000451920000000,0.000047771000000,0.000060019000000,0.000262685000000,0.000038290000000,0.000336166000000,0.000293104000000,0.000269006000000,0.017552153000000,0.016485092000000,0.000260710000000,0.000071870000000,0.000229499000000,0.000229105000000,0.000161154000000 +0.000325499000000,0.000048167000000,0.000058043000000,0.000270981000000,0.000037500000000,0.000333796000000,0.000292710000000,0.000345648000000,0.017206079000000,0.017137734000000,0.000303376000000,0.000073846000000,0.000097154000000,0.000210537000000,0.000156019000000 +0.000578734000000,0.000050537000000,0.000059623000000,0.000348808000000,0.000037895000000,0.000331821000000,0.000299426000000,0.000261500000000,0.017774177000000,0.017008943000000,0.000264660000000,0.000071080000000,0.000076611000000,0.000263870000000,0.000156809000000 +0.000372907000000,0.000048166000000,0.000093599000000,0.000265450000000,0.000057648000000,0.000364610000000,0.000270981000000,0.000267426000000,0.018387708000000,0.017147610000000,0.000272166000000,0.000071080000000,0.000116907000000,0.000193944000000,0.000195525000000 +0.000344462000000,0.000050537000000,0.000059228000000,0.000265845000000,0.000037895000000,0.000348808000000,0.000266240000000,0.000313253000000,0.017806177000000,0.017261387000000,0.000316413000000,0.000074635000000,0.000080561000000,0.000244117000000,0.000166290000000 +0.000350783000000,0.000050142000000,0.000057648000000,0.000279673000000,0.000037895000000,0.000418339000000,0.000314833000000,0.000263475000000,0.017503560000000,0.016737932000000,0.000263475000000,0.000072265000000,0.000081747000000,0.000231080000000,0.000159968000000 +0.000382784000000,0.000048167000000,0.000059228000000,0.000264265000000,0.000038290000000,0.000332611000000,0.000273746000000,0.000288364000000,0.018454473000000,0.016779808000000,0.000270191000000,0.000073451000000,0.000077796000000,0.000252413000000,0.000161944000000 +0.000366586000000,0.000047771000000,0.000059624000000,0.000400956000000,0.000037895000000,0.000366981000000,0.000268216000000,0.000265845000000,0.017582177000000,0.017034228000000,0.000442437000000,0.000074636000000,0.000076611000000,0.000224759000000,0.000231475000000 +0.000363030000000,0.000088067000000,0.000058043000000,0.000827227000000,0.000038290000000,0.000346043000000,0.000262685000000,0.000265845000000,0.016987610000000,0.016673141000000,0.000266241000000,0.000073846000000,0.000081747000000,0.000529351000000,0.000158389000000 +0.000400167000000,0.000050932000000,0.000095178000000,0.000573994000000,0.000038290000000,0.000333401000000,0.000263080000000,0.000417154000000,0.017192252000000,0.017138919000000,0.000306537000000,0.000073845000000,0.000127969000000,0.000216067000000,0.000158388000000 +0.000402932000000,0.000057253000000,0.000058833000000,0.000628116000000,0.000037894000000,0.000363425000000,0.000302586000000,0.000296661000000,0.017285881000000,0.016621783000000,0.000270586000000,0.000086882000000,0.000078981000000,0.000302586000000,0.000220809000000 +0.000330635000000,0.000048166000000,0.000056858000000,0.000342092000000,0.000037894000000,0.000354734000000,0.000269401000000,0.000347228000000,0.017872152000000,0.017191067000000,0.000265055000000,0.000076611000000,0.000079376000000,0.000218833000000,0.000159179000000 +0.000390290000000,0.000051722000000,0.000059228000000,0.000425055000000,0.000037894000000,0.000662487000000,0.000271376000000,0.000265450000000,0.018737337000000,0.017212005000000,0.000342092000000,0.000071870000000,0.000077796000000,0.000223968000000,0.000158388000000 +0.000356709000000,0.000050142000000,0.000060809000000,0.000303771000000,0.000037895000000,0.000397796000000,0.000301796000000,0.000301796000000,0.017464054000000,0.017381882000000,0.000263870000000,0.000070685000000,0.000085303000000,0.000237006000000,0.000160364000000 +0.000361846000000,0.000050142000000,0.000059228000000,0.000537253000000,0.000037895000000,0.000351969000000,0.000271376000000,0.000263080000000,0.017069783000000,0.017121931000000,0.000263080000000,0.000073845000000,0.000077006000000,0.000231870000000,0.000195129000000 +0.000325894000000,0.000051722000000,0.000061994000000,0.000288364000000,0.000037500000000,0.000403721000000,0.000263475000000,0.000271376000000,0.017712943000000,0.017134968000000,0.000267030000000,0.000072265000000,0.000096759000000,0.000215277000000,0.000166290000000 +0.000352759000000,0.000050142000000,0.000109006000000,0.000291524000000,0.000037895000000,0.000351574000000,0.000282438000000,0.000301005000000,0.017428893000000,0.016773881000000,0.000263080000000,0.000091228000000,0.000075821000000,0.000316808000000,0.000159574000000 +0.000339327000000,0.000050537000000,0.000063969000000,0.000287574000000,0.000039080000000,0.000359079000000,0.000265055000000,0.000263080000000,0.017881634000000,0.017105338000000,0.000337746000000,0.000073845000000,0.000076216000000,0.000219623000000,0.000157994000000 +0.000330241000000,0.000047772000000,0.000058833000000,0.000293105000000,0.000038290000000,0.000328265000000,0.000336166000000,0.000265846000000,0.018716004000000,0.016344845000000,0.000262290000000,0.000073055000000,0.000078192000000,0.000287574000000,0.000175376000000 +0.000397796000000,0.000048167000000,0.000058043000000,0.000384363000000,0.000037895000000,0.000331426000000,0.000264265000000,0.000302191000000,0.018384547000000,0.017158672000000,0.000265056000000,0.000073450000000,0.000076611000000,0.000287574000000,0.000157204000000 +0.000329055000000,0.000050141000000,0.000061204000000,0.000288759000000,0.000038290000000,0.000388710000000,0.000268216000000,0.000266240000000,0.018369140000000,0.017048054000000,0.000301005000000,0.000075030000000,0.000080957000000,0.000191574000000,0.000162734000000 +0.000423079000000,0.000050142000000,0.000057648000000,0.000289944000000,0.000037895000000,0.000342487000000,0.000301796000000,0.000273746000000,0.017446276000000,0.016852499000000,0.000267426000000,0.000076611000000,0.000159573000000,0.000223179000000,0.000157598000000 +0.000349993000000,0.000051722000000,0.000058043000000,0.000386340000000,0.000038290000000,0.000448364000000,0.000265055000000,0.000270191000000,0.017487758000000,0.016523413000000,0.000263080000000,0.000150093000000,0.000080167000000,0.000240166000000,0.000159179000000 +0.000368166000000,0.000050141000000,0.000074241000000,0.000374092000000,0.000054488000000,0.000349993000000,0.000265450000000,0.000263870000000,0.017547412000000,0.017355808000000,0.000278487000000,0.000228709000000,0.000079771000000,0.000228710000000,0.000156808000000 +0.000354734000000,0.000050142000000,0.000062389000000,0.000282833000000,0.000037895000000,0.000419919000000,0.000265845000000,0.000302586000000,0.017368449000000,0.016448746000000,0.000265846000000,0.000090043000000,0.000077796000000,0.000256759000000,0.000157598000000 +0.000364216000000,0.000050932000000,0.000059228000000,0.000278487000000,0.000037895000000,0.000329450000000,0.000265055000000,0.000264265000000,0.017942474000000,0.017776943000000,0.000304956000000,0.000074240000000,0.000078982000000,0.000214883000000,0.000191969000000 +0.000336561000000,0.000050142000000,0.000059229000000,0.000385944000000,0.000042636000000,0.000420314000000,0.000343277000000,0.000265845000000,0.017151560000000,0.017048054000000,0.000263870000000,0.000073450000000,0.000114537000000,0.000256759000000,0.000157203000000 +0.000337746000000,0.000047772000000,0.000058834000000,0.000288364000000,0.000038290000000,0.000351968000000,0.000290339000000,0.000306537000000,0.018682028000000,0.016928350000000,0.000265450000000,0.000071475000000,0.000078191000000,0.000182488000000,0.000159178000000 +0.000384364000000,0.000047376000000,0.000057648000000,0.000333006000000,0.000038290000000,0.000405302000000,0.000262684000000,0.000263475000000,0.017769436000000,0.017044499000000,0.000498142000000,0.000072660000000,0.000077796000000,0.000331425000000,0.000156808000000 +0.000351969000000,0.000049747000000,0.000056858000000,0.000278883000000,0.000038290000000,0.000331426000000,0.000306537000000,0.000263475000000,0.017233338000000,0.016587413000000,0.000289549000000,0.000073846000000,0.000077796000000,0.000282042000000,0.000192759000000 +0.000404907000000,0.000066735000000,0.000129944000000,0.000284808000000,0.000037895000000,0.000405697000000,0.000271771000000,0.000263870000000,0.019050225000000,0.017095461000000,0.000421104000000,0.000073845000000,0.000087673000000,0.000192759000000,0.000156018000000 +0.000358685000000,0.000049747000000,0.000057253000000,0.000281253000000,0.000038685000000,0.000358290000000,0.000321154000000,0.000263870000000,0.017677782000000,0.017008943000000,0.000268216000000,0.000074241000000,0.000113352000000,0.000327079000000,0.000179327000000 +0.000409252000000,0.000049746000000,0.000058833000000,0.000282438000000,0.000037895000000,0.000412808000000,0.000263080000000,0.000301005000000,0.018288152000000,0.016968647000000,0.000297846000000,0.000075030000000,0.000159969000000,0.000193944000000,0.000155623000000 +0.000333401000000,0.000050142000000,0.000059228000000,0.000314833000000,0.000037895000000,0.000354734000000,0.000352759000000,0.000273352000000,0.017710967000000,0.017127067000000,0.000271376000000,0.000073845000000,0.000082931000000,0.000230290000000,0.000201845000000 +0.000365796000000,0.000050141000000,0.000059623000000,0.000285599000000,0.000037894000000,0.000427820000000,0.000299030000000,0.000268216000000,0.018984251000000,0.017145635000000,0.000263080000000,0.000071475000000,0.000079377000000,0.000295475000000,0.000158783000000 +0.000333796000000,0.000047771000000,0.000057253000000,0.000280462000000,0.000037499000000,0.000350388000000,0.000268611000000,0.000334981000000,0.017871363000000,0.016724499000000,0.000340907000000,0.000073451000000,0.000084117000000,0.000240166000000,0.000158389000000 +0.000339722000000,0.000050536000000,0.000094388000000,0.000280858000000,0.000037895000000,0.000370142000000,0.000262290000000,0.000272562000000,0.017588498000000,0.017225042000000,0.000269005000000,0.000073846000000,0.000081351000000,0.000240562000000,0.000160364000000 +0.000330240000000,0.000050142000000,0.000056858000000,0.000284019000000,0.000038290000000,0.000334981000000,0.000263080000000,0.000265450000000,0.017707411000000,0.016975758000000,0.000267820000000,0.000073055000000,0.000081352000000,0.000201846000000,0.000156808000000 +0.000371722000000,0.000047772000000,0.000076610000000,0.000316808000000,0.000037895000000,0.000339722000000,0.000267821000000,0.000261105000000,0.017650523000000,0.017248746000000,0.000289944000000,0.000110191000000,0.000079376000000,0.000221598000000,0.000156808000000 +0.000387524000000,0.000047771000000,0.000059228000000,0.000282437000000,0.000038290000000,0.000401746000000,0.000298635000000,0.000267030000000,0.017052400000000,0.018884695000000,0.000273352000000,0.000073056000000,0.000080956000000,0.000184463000000,0.000161550000000 +0.000355920000000,0.000047771000000,0.000058833000000,0.000283228000000,0.000037895000000,0.000353549000000,0.000269005000000,0.000301401000000,0.016951660000000,0.016897141000000,0.000300216000000,0.000073846000000,0.000076611000000,0.000321154000000,0.000162340000000 +0.000373697000000,0.000054093000000,0.000060019000000,0.000283228000000,0.000038290000000,0.000422289000000,0.000268611000000,0.000265055000000,0.017933782000000,0.016957585000000,0.000271376000000,0.000073451000000,0.000078191000000,0.000220413000000,0.000159969000000 +0.000335376000000,0.000050537000000,0.000059623000000,0.000282438000000,0.000042241000000,0.000336166000000,0.000301006000000,0.000263870000000,0.017149585000000,0.017421388000000,0.000263870000000,0.000072660000000,0.000080166000000,0.000202241000000,0.000163129000000 +0.000442042000000,0.000047771000000,0.000084512000000,0.000386734000000,0.000074240000000,0.000755327000000,0.000264660000000,0.000318784000000,0.017763115000000,0.017274425000000,0.000418734000000,0.000074240000000,0.000098340000000,0.000267821000000,0.000157993000000 +0.000359080000000,0.000050537000000,0.000057648000000,0.000280858000000,0.000037895000000,0.000386734000000,0.000267031000000,0.000263080000000,0.017356993000000,0.016863561000000,0.000269401000000,0.000125599000000,0.000078192000000,0.000202636000000,0.000176956000000 +0.000387919000000,0.000048167000000,0.000059228000000,0.000316414000000,0.000037895000000,0.000354340000000,0.000280068000000,0.000266240000000,0.017525289000000,0.016737536000000,0.000301401000000,0.000074241000000,0.000079377000000,0.000230290000000,0.000169450000000 +0.000335376000000,0.000051327000000,0.000058439000000,0.000284414000000,0.000037894000000,0.000352364000000,0.000268216000000,0.000297055000000,0.017724005000000,0.017181190000000,0.000273352000000,0.000075030000000,0.000078191000000,0.000283228000000,0.000170636000000 +0.000440067000000,0.000050142000000,0.000057648000000,0.000285204000000,0.000037894000000,0.000376857000000,0.000348413000000,0.000265450000000,0.017107708000000,0.017448251000000,0.000263475000000,0.000074241000000,0.000079376000000,0.000193549000000,0.000162734000000 +0.000363031000000,0.000050932000000,0.000060018000000,0.000317203000000,0.000038290000000,0.000366981000000,0.000264660000000,0.000264265000000,0.018094177000000,0.016881733000000,0.000316413000000,0.000073055000000,0.000077401000000,0.000226735000000,0.000165105000000 +0.000358289000000,0.000048167000000,0.000058834000000,0.000278092000000,0.000038290000000,0.000357499000000,0.000265056000000,0.000317993000000,0.017568350000000,0.016530919000000,0.000264661000000,0.000074241000000,0.000115327000000,0.000248858000000,0.000203031000000 +0.000337351000000,0.000047376000000,0.000075821000000,0.000328660000000,0.000038290000000,0.000357894000000,0.000301401000000,0.000266241000000,0.017226622000000,0.020236990000000,0.000263475000000,0.000108611000000,0.000082141000000,0.000233450000000,0.000171425000000 +0.000334191000000,0.000105055000000,0.000058438000000,0.000280858000000,0.000037500000000,0.000372512000000,0.000262685000000,0.000298635000000,0.017118770000000,0.017170129000000,0.000317599000000,0.000072265000000,0.000077796000000,0.000248463000000,0.000164315000000 +0.000414783000000,0.000067524000000,0.000059229000000,0.000280857000000,0.000040265000000,0.000374487000000,0.000270191000000,0.000262290000000,0.017452203000000,0.016823264000000,0.000266635000000,0.000071870000000,0.000079771000000,0.000263870000000,0.000172611000000 +0.000329056000000,0.000050141000000,0.000060018000000,0.000323129000000,0.000040266000000,0.000357895000000,0.000322340000000,0.000265055000000,0.017462869000000,0.018535461000000,0.000267426000000,0.000073845000000,0.000076611000000,0.000250043000000,0.000172216000000 +0.000397796000000,0.000050141000000,0.000058833000000,0.000290339000000,0.000037895000000,0.000378438000000,0.000269796000000,0.000297845000000,0.018260498000000,0.016892795000000,0.000263475000000,0.000073450000000,0.000077796000000,0.000195130000000,0.000165499000000 +0.000331030000000,0.000050537000000,0.000058833000000,0.000360265000000,0.000038290000000,0.000378438000000,0.000299031000000,0.000262685000000,0.017251510000000,0.016890030000000,0.000266635000000,0.000071475000000,0.000151672000000,0.000267031000000,0.000275722000000 +0.000403326000000,0.000050142000000,0.000060809000000,0.000541204000000,0.000037895000000,0.000351574000000,0.000263475000000,0.000270191000000,0.017368845000000,0.016563314000000,0.000319574000000,0.000071870000000,0.000079772000000,0.000183277000000,0.000189599000000 +0.000360265000000,0.000048166000000,0.000071870000000,0.000316413000000,0.000037895000000,0.000357104000000,0.000265845000000,0.000268611000000,0.018021881000000,0.017205289000000,0.000263080000000,0.000071475000000,0.000079377000000,0.000215673000000,0.000159574000000 +0.000365401000000,0.000047771000000,0.000057648000000,0.000290734000000,0.000037895000000,0.000369351000000,0.000265450000000,0.000272166000000,0.017877683000000,0.017236894000000,0.000265055000000,0.000074240000000,0.000077797000000,0.000291130000000,0.000157598000000 +0.000331425000000,0.000047376000000,0.000059228000000,0.000280858000000,0.000037895000000,0.000372907000000,0.000268611000000,0.000297845000000,0.017292202000000,0.016893586000000,0.000344858000000,0.000071870000000,0.000079772000000,0.000190783000000,0.000163129000000 +0.000360265000000,0.000045401000000,0.000058833000000,0.000288758000000,0.000038290000000,0.000376857000000,0.000298636000000,0.000260315000000,0.017621683000000,0.016678277000000,0.000259919000000,0.000074240000000,0.000080561000000,0.000233450000000,0.000162735000000 +0.000737943000000,0.000048167000000,0.000059228000000,0.000287968000000,0.000037895000000,0.000362240000000,0.000268611000000,0.000261104000000,0.017384252000000,0.016993535000000,0.000265055000000,0.000073055000000,0.000083326000000,0.000191969000000,0.000159574000000 +0.000349599000000,0.000045006000000,0.000057648000000,0.000317599000000,0.000037895000000,0.000345253000000,0.000265450000000,0.000407673000000,0.017641831000000,0.017057931000000,0.000267425000000,0.000107031000000,0.000082142000000,0.000231475000000,0.000161549000000 +0.000332610000000,0.000047771000000,0.000057253000000,0.000281252000000,0.000037895000000,0.000351178000000,0.000326289000000,0.000259920000000,0.017239659000000,0.017172498000000,0.000265056000000,0.000074240000000,0.000078191000000,0.000227130000000,0.000159969000000 +0.000362240000000,0.000077796000000,0.000097549000000,0.000292709000000,0.000056463000000,0.000412018000000,0.000271377000000,0.000300216000000,0.017022770000000,0.017786819000000,0.000305351000000,0.000071475000000,0.000079376000000,0.000212512000000,0.000163129000000 +0.000334586000000,0.000047377000000,0.000074241000000,0.000320759000000,0.000037895000000,0.000346043000000,0.000304562000000,0.000266241000000,0.017890721000000,0.017004993000000,0.000324710000000,0.000071475000000,0.000079376000000,0.000219228000000,0.000159574000000 +0.000402142000000,0.000046982000000,0.000059623000000,0.000295080000000,0.000037895000000,0.000420315000000,0.000263870000000,0.000263870000000,0.017673041000000,0.017291017000000,0.000265450000000,0.000073055000000,0.000082932000000,0.000196314000000,0.000179722000000 +0.000364216000000,0.000047376000000,0.000059624000000,0.000301006000000,0.000038290000000,0.000330636000000,0.000266240000000,0.000315228000000,0.017804201000000,0.016783363000000,0.000424265000000,0.000107821000000,0.000079377000000,0.000248463000000,0.000159969000000 +0.000366191000000,0.000047771000000,0.000058834000000,0.000319573000000,0.000038290000000,0.000368561000000,0.000334191000000,0.000278092000000,0.017116795000000,0.017157091000000,0.000263475000000,0.000076611000000,0.000081352000000,0.000190389000000,0.000160364000000 +0.000353944000000,0.000047376000000,0.000057648000000,0.000316413000000,0.000037895000000,0.000337746000000,0.000360660000000,0.000263475000000,0.017321042000000,0.016829980000000,0.000297055000000,0.000072266000000,0.000080167000000,0.000311673000000,0.000158389000000 +0.000355129000000,0.000047376000000,0.000059229000000,0.000287178000000,0.000037500000000,0.000387129000000,0.000309698000000,0.000277302000000,0.018102869000000,0.016536845000000,0.000267821000000,0.000072265000000,0.000076215000000,0.000210537000000,0.000192759000000 +0.000335771000000,0.000045402000000,0.000057253000000,0.000285599000000,0.000037895000000,0.000348018000000,0.000274141000000,0.000267425000000,0.017228203000000,0.016709486000000,0.000265055000000,0.000074240000000,0.000079771000000,0.000307326000000,0.000157994000000 +0.000348808000000,0.000062784000000,0.000059623000000,0.000315228000000,0.000037895000000,0.000334191000000,0.000263870000000,0.000300215000000,0.017354227000000,0.017038968000000,0.000310092000000,0.000071475000000,0.000113746000000,0.000230290000000,0.000160759000000 +0.000361055000000,0.000047377000000,0.000057252000000,0.000288759000000,0.000038290000000,0.000328265000000,0.000304167000000,0.000269401000000,0.017574672000000,0.017639857000000,0.000270586000000,0.000073055000000,0.000077796000000,0.000201055000000,0.000156808000000 +0.000331821000000,0.000046982000000,0.000058833000000,0.000279673000000,0.000037895000000,0.000350784000000,0.000263870000000,0.000275722000000,0.017809733000000,0.017505141000000,0.000265845000000,0.000071080000000,0.000078587000000,0.000230685000000,0.000193154000000 +0.000364216000000,0.000047376000000,0.000058438000000,0.000285599000000,0.000038290000000,0.000370932000000,0.000263870000000,0.000335771000000,0.017558474000000,0.016762820000000,0.000264266000000,0.000144956000000,0.000081352000000,0.000227129000000,0.000156809000000 +0.000356709000000,0.000046981000000,0.000059624000000,0.000282833000000,0.000037895000000,0.000337351000000,0.000302982000000,0.000265055000000,0.018536251000000,0.016449141000000,0.000270191000000,0.000073450000000,0.000076611000000,0.000210141000000,0.000156413000000 +0.000400956000000,0.000047376000000,0.000130735000000,0.000317598000000,0.000039476000000,0.000430981000000,0.000264265000000,0.000262290000000,0.016986029000000,0.016876993000000,0.000301401000000,0.000071870000000,0.000079376000000,0.000229895000000,0.000159179000000 +0.000333796000000,0.000046981000000,0.000059229000000,0.000284808000000,0.000039080000000,0.000333400000000,0.000261894000000,0.000307722000000,0.017569931000000,0.016547907000000,0.000261500000000,0.000074635000000,0.000146536000000,0.000218043000000,0.000159178000000 +0.000363426000000,0.000047376000000,0.000059624000000,0.000287179000000,0.000037895000000,0.000402142000000,0.000391870000000,0.000271771000000,0.016844993000000,0.017341190000000,0.000272956000000,0.000071080000000,0.000080562000000,0.000212117000000,0.000158389000000 +0.000334981000000,0.000047772000000,0.000057648000000,0.000282833000000,0.000037895000000,0.000339722000000,0.000265055000000,0.000269796000000,0.017254672000000,0.017145634000000,0.000306537000000,0.000073846000000,0.000080166000000,0.000251624000000,0.000157994000000 +0.000356710000000,0.000047376000000,0.000058438000000,0.000287574000000,0.000038290000000,0.000370932000000,0.000319574000000,0.000268611000000,0.017676202000000,0.016679857000000,0.000266240000000,0.000118488000000,0.000075820000000,0.000182092000000,0.000178142000000 +0.000383574000000,0.000044611000000,0.000058834000000,0.000318389000000,0.000038290000000,0.000330635000000,0.000267425000000,0.000264265000000,0.017687264000000,0.016751363000000,0.000298240000000,0.000076611000000,0.000078192000000,0.000305747000000,0.000159573000000 +0.000332216000000,0.000047377000000,0.000057648000000,0.000280463000000,0.000037895000000,0.000331821000000,0.000270981000000,0.000301401000000,0.017428894000000,0.017408350000000,0.000263080000000,0.000073450000000,0.000080166000000,0.000197105000000,0.000159574000000 +0.000363426000000,0.000047376000000,0.000086883000000,0.000278882000000,0.000037895000000,0.000332216000000,0.000338142000000,0.000260709000000,0.017761930000000,0.016772301000000,0.000260710000000,0.000073845000000,0.000178932000000,0.000240957000000,0.000156808000000 +0.000353944000000,0.000044611000000,0.000057648000000,0.000351178000000,0.000074241000000,0.000354734000000,0.000268610000000,0.000287178000000,0.017431659000000,0.017289436000000,0.000308907000000,0.000073845000000,0.000078191000000,0.000233846000000,0.000157598000000 +0.000443228000000,0.000047772000000,0.000058438000000,0.000285994000000,0.000038290000000,0.000511573000000,0.000388314000000,0.000284018000000,0.019531805000000,0.016610326000000,0.000260710000000,0.000072660000000,0.000080561000000,0.000199080000000,0.000160759000000 +0.000327475000000,0.000048562000000,0.000058833000000,0.000483129000000,0.000037895000000,0.000350784000000,0.000269401000000,0.000271376000000,0.018139214000000,0.016952449000000,0.000271376000000,0.000071870000000,0.000080561000000,0.000256759000000,0.000157993000000 +0.000385154000000,0.000047376000000,0.000058833000000,0.000360265000000,0.000037895000000,0.000348808000000,0.000266241000000,0.000359870000000,0.017636300000000,0.017804202000000,0.000264660000000,0.000074636000000,0.000080562000000,0.000197895000000,0.000205796000000 +0.000330240000000,0.000047771000000,0.000058043000000,0.000332216000000,0.000037895000000,0.000340117000000,0.000334981000000,0.000261104000000,0.017471165000000,0.016622178000000,0.000266240000000,0.000072265000000,0.000078192000000,0.000248463000000,0.000158784000000 +0.000385154000000,0.000046982000000,0.000077401000000,0.000285599000000,0.000037500000000,0.000375672000000,0.000262685000000,0.000266636000000,0.018598671000000,0.017183560000000,0.000303772000000,0.000071870000000,0.000183278000000,0.000194339000000,0.000158389000000 +0.000363030000000,0.000048167000000,0.000058833000000,0.000331821000000,0.000040265000000,0.000349203000000,0.000309302000000,0.000303377000000,0.017897041000000,0.017032647000000,0.000265055000000,0.000074241000000,0.000180908000000,0.000293895000000,0.000158783000000 +0.000332611000000,0.000047376000000,0.000059228000000,0.000288364000000,0.000037895000000,0.000403327000000,0.000268611000000,0.000260709000000,0.018414967000000,0.016997881000000,0.000263080000000,0.000071475000000,0.000087277000000,0.000241352000000,0.000192759000000 +0.000343672000000,0.000045006000000,0.000056858000000,0.000285203000000,0.000037895000000,0.000355524000000,0.000266636000000,0.000266241000000,0.017599165000000,0.016877387000000,0.000347623000000,0.000107426000000,0.000081747000000,0.000191969000000,0.000157204000000 +0.000330635000000,0.000047377000000,0.000057648000000,0.000353944000000,0.000038290000000,0.000366981000000,0.000351179000000,0.000263080000000,0.017646967000000,0.017525683000000,0.000271376000000,0.000073846000000,0.000078586000000,0.000289549000000,0.000162735000000 +0.000350784000000,0.000079376000000,0.000057648000000,0.000282043000000,0.000037894000000,0.000334981000000,0.000266635000000,0.000270981000000,0.017466819000000,0.017100992000000,0.000266636000000,0.000072660000000,0.000076216000000,0.000182882000000,0.000157599000000 +0.000364610000000,0.000044611000000,0.000057648000000,0.000318784000000,0.000037499000000,0.000332216000000,0.000265055000000,0.000300611000000,0.017530029000000,0.018351362000000,0.000275722000000,0.000071870000000,0.000081747000000,0.000236611000000,0.000191574000000 +0.000368166000000,0.000047772000000,0.000076216000000,0.000284018000000,0.000037499000000,0.000401352000000,0.000271376000000,0.000315623000000,0.017242029000000,0.017157486000000,0.000264661000000,0.000074240000000,0.000080562000000,0.000238981000000,0.000160364000000 +0.000334586000000,0.000047376000000,0.000059623000000,0.000284019000000,0.000037894000000,0.000358289000000,0.000267821000000,0.000262685000000,0.017516597000000,0.016727264000000,0.000301005000000,0.000071475000000,0.000078191000000,0.000214882000000,0.000157599000000 +0.000390685000000,0.000045006000000,0.000056857000000,0.000344067000000,0.000037499000000,0.000384759000000,0.000321549000000,0.000299030000000,0.018143560000000,0.016991165000000,0.000263080000000,0.000071080000000,0.000080166000000,0.000231475000000,0.000158784000000 +0.000355524000000,0.000045006000000,0.000056858000000,0.000283623000000,0.000037894000000,0.000353154000000,0.000453104000000,0.000263080000000,0.016903857000000,0.016847758000000,0.000305351000000,0.000071080000000,0.000084117000000,0.000250043000000,0.000217253000000 +0.000374092000000,0.000045401000000,0.000056857000000,0.000326290000000,0.000037894000000,0.000378832000000,0.000303771000000,0.000263870000000,0.017229388000000,0.016972202000000,0.000299031000000,0.000075031000000,0.000079772000000,0.000236611000000,0.000150092000000 +0.000332610000000,0.000045006000000,0.000057253000000,0.000283623000000,0.000037499000000,0.000326685000000,0.000266636000000,0.000270981000000,0.017349486000000,0.017452597000000,0.000269401000000,0.000073056000000,0.000077796000000,0.000192364000000,0.000149697000000 +0.000362241000000,0.000073055000000,0.000058833000000,0.000281648000000,0.000037895000000,0.000367376000000,0.000289944000000,0.000263475000000,0.017569141000000,0.016690524000000,0.000269401000000,0.000075426000000,0.000077796000000,0.000285203000000,0.000148907000000 +0.000432561000000,0.000047771000000,0.000128759000000,0.000348413000000,0.000037895000000,0.000325894000000,0.000311672000000,0.000299425000000,0.017802622000000,0.018226917000000,0.000316018000000,0.000074241000000,0.000082932000000,0.000231870000000,0.000186043000000 +0.000370141000000,0.000047376000000,0.000058438000000,0.000280067000000,0.000037895000000,0.000331030000000,0.000264660000000,0.000264265000000,0.017161832000000,0.017411905000000,0.000265451000000,0.000093204000000,0.000078982000000,0.000213302000000,0.000150092000000 +0.000350388000000,0.000046981000000,0.000059623000000,0.000315228000000,0.000092018000000,0.000352364000000,0.000262290000000,0.000263870000000,0.017180795000000,0.017230178000000,0.000302586000000,0.000071475000000,0.000128759000000,0.000296265000000,0.000151277000000 +0.000328265000000,0.000044611000000,0.000057252000000,0.000285203000000,0.000037895000000,0.000348808000000,0.000264265000000,0.000306537000000,0.017321832000000,0.019827706000000,0.000271377000000,0.000073055000000,0.000077401000000,0.000201450000000,0.000148907000000 +0.000370931000000,0.000046981000000,0.000057648000000,0.000278487000000,0.000037895000000,0.000419129000000,0.000265845000000,0.000262685000000,0.017837387000000,0.018022276000000,0.000262684000000,0.000074241000000,0.000077006000000,0.000257944000000,0.000292709000000 +0.000364216000000,0.000044611000000,0.000058833000000,0.000355129000000,0.000037895000000,0.000359475000000,0.000309303000000,0.000263475000000,0.017566769000000,0.018058226000000,0.000301005000000,0.000073055000000,0.000078192000000,0.000281253000000,0.000288364000000 +0.000430981000000,0.000047376000000,0.000058438000000,0.000287179000000,0.000037895000000,0.000373302000000,0.000263475000000,0.000262685000000,0.017704252000000,0.018286177000000,0.000264660000000,0.000074636000000,0.000077401000000,0.000181302000000,0.000674339000000 +0.000346438000000,0.000064364000000,0.000056463000000,0.000319179000000,0.000039475000000,0.000328660000000,0.000264660000000,0.000266636000000,0.017505930000000,0.017929041000000,0.000267425000000,0.000072265000000,0.000107821000000,0.000230290000000,0.000347228000000 +0.000367376000000,0.000047376000000,0.000059624000000,0.000279672000000,0.000038290000000,0.000517499000000,0.000314833000000,0.000309303000000,0.018283806000000,0.018112350000000,0.000302191000000,0.000090438000000,0.000078981000000,0.000254388000000,0.000329056000000 +0.000333401000000,0.000048956000000,0.000057648000000,0.000284808000000,0.000038290000000,0.000355524000000,0.000268216000000,0.000263475000000,0.017355412000000,0.017467610000000,0.000267425000000,0.000071870000000,0.000077006000000,0.000225549000000,0.000188809000000 +0.000367377000000,0.000046191000000,0.000058438000000,0.000565302000000,0.000037895000000,0.000370537000000,0.000267821000000,0.000262685000000,0.018024251000000,0.017833437000000,0.000314043000000,0.000073845000000,0.000081351000000,0.000203425000000,0.000205401000000 +0.000329055000000,0.000044611000000,0.000059623000000,0.000281648000000,0.000037895000000,0.000337747000000,0.000335771000000,0.000412018000000,0.017636695000000,0.017446671000000,0.000261895000000,0.000072265000000,0.000076611000000,0.000325895000000,0.000196709000000 +0.000357894000000,0.000044611000000,0.000062389000000,0.000317598000000,0.000037500000000,0.000403722000000,0.000264660000000,0.000261499000000,0.017778128000000,0.017715313000000,0.000261499000000,0.000074240000000,0.000078191000000,0.000286389000000,0.000172216000000 +0.000374093000000,0.000045006000000,0.000057253000000,0.000295080000000,0.000038290000000,0.000336957000000,0.000299821000000,0.000305352000000,0.017973288000000,0.017664745000000,0.000321549000000,0.000075426000000,0.000166289000000,0.000218438000000,0.000248463000000 +0.000329450000000,0.000047376000000,0.000057253000000,0.000316019000000,0.000037895000000,0.000401746000000,0.000264265000000,0.000267425000000,0.017454177000000,0.017533979000000,0.000275722000000,0.000073055000000,0.000077796000000,0.000229895000000,0.000157598000000 +0.000395821000000,0.000045401000000,0.000058438000000,0.000339327000000,0.000039475000000,0.000331426000000,0.000262289000000,0.000267031000000,0.017384647000000,0.017633536000000,0.000272562000000,0.000073845000000,0.000081747000000,0.000191969000000,0.000159574000000 +0.000333006000000,0.000045401000000,0.000059623000000,0.000483129000000,0.000039080000000,0.000333796000000,0.000301401000000,0.000304166000000,0.018115905000000,0.017684893000000,0.000366191000000,0.000071870000000,0.000078981000000,0.000249648000000,0.000186043000000 +0.000368562000000,0.000047377000000,0.000058833000000,0.000279672000000,0.000037895000000,0.000384364000000,0.000262290000000,0.000268216000000,0.017170128000000,0.017360153000000,0.000265451000000,0.000073845000000,0.000076611000000,0.000216463000000,0.000158389000000 +0.000348808000000,0.000047771000000,0.000058834000000,0.000318389000000,0.000037895000000,0.000332611000000,0.000263475000000,0.000263474000000,0.017630769000000,0.018249436000000,0.000342883000000,0.000071870000000,0.000075821000000,0.000197104000000,0.000157204000000 +0.000438092000000,0.000045006000000,0.000059623000000,0.000316808000000,0.000037894000000,0.000377253000000,0.000333796000000,0.000303377000000,0.017565190000000,0.017320647000000,0.000265845000000,0.000167080000000,0.000114142000000,0.000242932000000,0.000158389000000 +0.000335377000000,0.000047377000000,0.000057253000000,0.000282833000000,0.000037894000000,0.000329055000000,0.000262289000000,0.000264660000000,0.017407165000000,0.017589288000000,0.000267031000000,0.000090043000000,0.000077796000000,0.000277303000000,0.000167475000000 +0.000414783000000,0.000047772000000,0.000057648000000,0.000321944000000,0.000128364000000,0.000405302000000,0.000271771000000,0.000301796000000,0.017883609000000,0.018522029000000,0.000304956000000,0.000073055000000,0.000078191000000,0.000254783000000,0.000175376000000 +0.000359475000000,0.000100314000000,0.000057648000000,0.000280068000000,0.000037500000000,0.000328265000000,0.000271771000000,0.000262685000000,0.017942078000000,0.017684499000000,0.000267426000000,0.000074240000000,0.000079376000000,0.000216858000000,0.000209352000000 +0.000391475000000,0.000046982000000,0.000057253000000,0.000280858000000,0.000038290000000,0.000429401000000,0.000263475000000,0.000264660000000,0.018014770000000,0.017458128000000,0.000301006000000,0.000073450000000,0.000082537000000,0.000199870000000,0.000160364000000 +0.000333005000000,0.000066340000000,0.000077401000000,0.000316808000000,0.000037895000000,0.000357500000000,0.000299030000000,0.000348413000000,0.017833832000000,0.018697436000000,0.000264660000000,0.000073055000000,0.000080167000000,0.000225549000000,0.000163919000000 +0.000353944000000,0.000060414000000,0.000073845000000,0.000282833000000,0.000037895000000,0.000405302000000,0.000265450000000,0.000266636000000,0.017590079000000,0.017526079000000,0.000273352000000,0.000073451000000,0.000077796000000,0.000207772000000,0.000159574000000 +0.000588611000000,0.000045006000000,0.000059623000000,0.000280067000000,0.000037895000000,0.000351574000000,0.000262685000000,0.000261894000000,0.017297733000000,0.018061386000000,0.000265845000000,0.000074241000000,0.000076611000000,0.000263080000000,0.000164314000000 +0.000368562000000,0.000045006000000,0.000116117000000,0.000286389000000,0.000037895000000,0.000402537000000,0.000351179000000,0.000268216000000,0.017413486000000,0.017083215000000,0.000267821000000,0.000075031000000,0.000076611000000,0.000175376000000,0.000156018000000 +0.000355524000000,0.000045796000000,0.000164315000000,0.000278488000000,0.000039080000000,0.000334981000000,0.000266241000000,0.000261895000000,0.017842522000000,0.017795511000000,0.000338142000000,0.000071870000000,0.000082142000000,0.000236611000000,0.000158389000000 +0.000332215000000,0.000049352000000,0.000063179000000,0.000330240000000,0.000037500000000,0.000367376000000,0.000300216000000,0.000361451000000,0.017850819000000,0.017958275000000,0.000261499000000,0.000071080000000,0.000078191000000,0.000250437000000,0.000159179000000 +0.000327080000000,0.000046982000000,0.000059228000000,0.000280463000000,0.000038290000000,0.000357104000000,0.000263080000000,0.000482734000000,0.016853289000000,0.017763906000000,0.000261500000000,0.000109006000000,0.000097944000000,0.000211327000000,0.000161944000000 +0.000351179000000,0.000044611000000,0.000078191000000,0.000283228000000,0.000037895000000,0.000351969000000,0.000263475000000,0.000300611000000,0.017492498000000,0.017436794000000,0.000294685000000,0.000071871000000,0.000078191000000,0.000225549000000,0.000161549000000 +0.000383573000000,0.000047376000000,0.000060019000000,0.000280067000000,0.000037895000000,0.000354734000000,0.000302586000000,0.000262290000000,0.017472350000000,0.017658819000000,0.000263080000000,0.000073846000000,0.000082537000000,0.000276117000000,0.000157598000000 +0.000330636000000,0.000045401000000,0.000059229000000,0.000278487000000,0.000037895000000,0.000368166000000,0.000264265000000,0.000263475000000,0.017319067000000,0.017314325000000,0.000282438000000,0.000073451000000,0.000084117000000,0.000226340000000,0.000157994000000 +0.000438092000000,0.000048957000000,0.000058833000000,0.000328265000000,0.000038290000000,0.000420315000000,0.000264265000000,0.000267031000000,0.017745338000000,0.017706227000000,0.000268610000000,0.000073055000000,0.000078981000000,0.000248067000000,0.000211327000000 +0.000335376000000,0.000067525000000,0.000059623000000,0.000279672000000,0.000037895000000,0.000331425000000,0.000372907000000,0.000266240000000,0.017847264000000,0.018117881000000,0.000270586000000,0.000074241000000,0.000078191000000,0.000248858000000,0.000159574000000 +0.000368561000000,0.000081351000000,0.000059228000000,0.000297845000000,0.000038290000000,0.000365006000000,0.000265845000000,0.000300215000000,0.017245585000000,0.017326177000000,0.000356314000000,0.000110586000000,0.000077796000000,0.000229500000000,0.000157204000000 +0.000333401000000,0.000045006000000,0.000058438000000,0.000280857000000,0.000038290000000,0.000349993000000,0.000304956000000,0.000269401000000,0.018103658000000,0.017761140000000,0.000265846000000,0.000071870000000,0.000077401000000,0.000212512000000,0.000157599000000 +0.000406487000000,0.000045401000000,0.000057648000000,0.000283623000000,0.000038289000000,0.000402932000000,0.000262290000000,0.000273351000000,0.017148795000000,0.017332894000000,0.000284018000000,0.000075426000000,0.000077401000000,0.000261894000000,0.000157203000000 +0.000403721000000,0.000047376000000,0.000060019000000,0.000379623000000,0.000073845000000,0.000355524000000,0.000263475000000,0.000306931000000,0.020831952000000,0.017460894000000,0.000264265000000,0.000071870000000,0.000080562000000,0.000246093000000,0.000156018000000 +0.000368956000000,0.000045401000000,0.000060018000000,0.000279278000000,0.000037894000000,0.000395031000000,0.000304561000000,0.000267031000000,0.017486967000000,0.017500795000000,0.000263475000000,0.000073846000000,0.000078191000000,0.000189993000000,0.000157994000000 +0.000339722000000,0.000045006000000,0.000057648000000,0.000283623000000,0.000038290000000,0.000328661000000,0.000267426000000,0.000267030000000,0.017501189000000,0.017180005000000,0.000301006000000,0.000076611000000,0.000076611000000,0.000243722000000,0.000160364000000 +0.000331820000000,0.000049747000000,0.000057253000000,0.000288364000000,0.000038290000000,0.000331425000000,0.000266635000000,0.000267821000000,0.019862867000000,0.017508301000000,0.000265055000000,0.000107030000000,0.000076611000000,0.000183673000000,0.000159969000000 +0.000348018000000,0.000046982000000,0.000059623000000,0.000287178000000,0.000038290000000,0.000596907000000,0.000501302000000,0.000266240000000,0.017751264000000,0.017438375000000,0.000269796000000,0.000077006000000,0.000112956000000,0.000248067000000,0.000156413000000 +0.000338931000000,0.000047771000000,0.000057253000000,0.000284808000000,0.000037895000000,0.000376858000000,0.000274141000000,0.000301006000000,0.017304844000000,0.017800251000000,0.000708710000000,0.000074240000000,0.000078586000000,0.000197499000000,0.000158783000000 +0.000383969000000,0.000047376000000,0.000095574000000,0.000284018000000,0.000040660000000,0.000334981000000,0.000308512000000,0.000265055000000,0.017933781000000,0.017612597000000,0.000317203000000,0.000072265000000,0.000079376000000,0.000241351000000,0.000156809000000 +0.000353549000000,0.000047376000000,0.000059228000000,0.000281252000000,0.000037500000000,0.000366586000000,0.000262289000000,0.000274142000000,0.017486968000000,0.017287857000000,0.000262290000000,0.000073845000000,0.000079771000000,0.000246092000000,0.000161154000000 +0.000434931000000,0.000044611000000,0.000059229000000,0.000280858000000,0.000037895000000,0.000333006000000,0.000270191000000,0.000304957000000,0.017687263000000,0.017890720000000,0.000260314000000,0.000074635000000,0.000078191000000,0.000216067000000,0.000158784000000 +0.000331821000000,0.000046981000000,0.000057253000000,0.000322339000000,0.000039476000000,0.000337746000000,0.000264660000000,0.000263870000000,0.017454178000000,0.016981289000000,0.000311673000000,0.000107820000000,0.000080562000000,0.000243722000000,0.000159574000000 +0.000430191000000,0.000045006000000,0.000058833000000,0.000282438000000,0.000039080000000,0.000328660000000,0.000265450000000,0.000260315000000,0.017663560000000,0.018295658000000,0.000263870000000,0.000076611000000,0.000078586000000,0.000193154000000,0.000208167000000 +0.000348808000000,0.000047376000000,0.000056858000000,0.000281253000000,0.000037895000000,0.000349599000000,0.000299821000000,0.000367377000000,0.017587708000000,0.018402719000000,0.000266240000000,0.000074240000000,0.000077797000000,0.000253598000000,0.000157994000000 +0.000405302000000,0.000045006000000,0.000058833000000,0.000281253000000,0.000038290000000,0.000376462000000,0.000265055000000,0.000266635000000,0.017019610000000,0.018143955000000,0.000282438000000,0.000071080000000,0.000081747000000,0.000234241000000,0.000156414000000 +0.000332611000000,0.000045796000000,0.000058043000000,0.000282833000000,0.000040265000000,0.000332611000000,0.000263080000000,0.000284413000000,0.017569931000000,0.017664745000000,0.000270191000000,0.000074241000000,0.000119673000000,0.000212907000000,0.000157599000000 +0.000410833000000,0.000045401000000,0.000059623000000,0.000285203000000,0.000038290000000,0.000390289000000,0.000339326000000,0.000269006000000,0.017464844000000,0.017677387000000,0.000299820000000,0.000071475000000,0.000077401000000,0.000246092000000,0.000158784000000 +0.000351969000000,0.000045006000000,0.000056858000000,0.000287969000000,0.000038290000000,0.000334586000000,0.000266240000000,0.000266240000000,0.017116005000000,0.017747709000000,0.000264265000000,0.000073451000000,0.000076216000000,0.000191969000000,0.000165499000000 +0.000458240000000,0.000045006000000,0.000060414000000,0.000267426000000,0.000037894000000,0.000386340000000,0.000272562000000,0.000332216000000,0.017451017000000,0.018040054000000,0.000270981000000,0.000075031000000,0.000076611000000,0.000243327000000,0.000158783000000 +0.001036610000000,0.000045006000000,0.000056858000000,0.000269796000000,0.000038290000000,0.000332610000000,0.000266635000000,0.000264660000000,0.017561634000000,0.017590473000000,0.000311672000000,0.000074635000000,0.000075821000000,0.000190388000000,0.000157994000000 +0.000839079000000,0.000047376000000,0.000059228000000,0.000299821000000,0.000038290000000,0.000360660000000,0.000263080000000,0.000272561000000,0.017986720000000,0.017321437000000,0.000263080000000,0.000073451000000,0.000081352000000,0.000284808000000,0.000161154000000 +0.000410438000000,0.000048167000000,0.000077401000000,0.000267031000000,0.000037895000000,0.000333401000000,0.000306932000000,0.000334586000000,0.017604300000000,0.017476696000000,0.000272562000000,0.000073845000000,0.000114142000000,0.000226339000000,0.000158389000000 +0.000419129000000,0.000063574000000,0.000058833000000,0.000270191000000,0.000057648000000,0.000350388000000,0.000269401000000,0.000265055000000,0.017322622000000,0.019681534000000,0.000261500000000,0.000071475000000,0.000082142000000,0.000212512000000,0.000161154000000 +0.000711870000000,0.000047377000000,0.000059623000000,0.000438882000000,0.000053697000000,0.000389895000000,0.000270191000000,0.000304561000000,0.017399659000000,0.018288942000000,0.000262289000000,0.000073846000000,0.000082536000000,0.000230290000000,0.000157203000000 +0.000518684000000,0.000047377000000,0.000058834000000,0.000272956000000,0.000039080000000,0.000425055000000,0.000315228000000,0.000264660000000,0.017634325000000,0.017171314000000,0.000305746000000,0.000071080000000,0.000079772000000,0.000211327000000,0.000227920000000 +0.000374883000000,0.000047772000000,0.000057253000000,0.000306142000000,0.000037895000000,0.000395030000000,0.000265846000000,0.000261895000000,0.017428893000000,0.018687954000000,0.000269796000000,0.000071475000000,0.000078981000000,0.000209747000000,0.000158784000000 +0.000381203000000,0.000047377000000,0.000058043000000,0.000267820000000,0.000037895000000,0.000330240000000,0.000267030000000,0.000310092000000,0.017850819000000,0.017752449000000,0.000266636000000,0.000073056000000,0.000076611000000,0.000250438000000,0.000160364000000 +0.000374092000000,0.000045006000000,0.000059228000000,0.000268216000000,0.000038290000000,0.000397401000000,0.000266635000000,0.000264660000000,0.017270079000000,0.017491314000000,0.000305351000000,0.000075031000000,0.000125993000000,0.000199080000000,0.000161154000000 +0.000363820000000,0.000047771000000,0.000078191000000,0.000270191000000,0.000058043000000,0.000338536000000,0.000262290000000,0.000266241000000,0.017257042000000,0.017426523000000,0.000307327000000,0.000073845000000,0.000077796000000,0.000218043000000,0.000159968000000 +0.000373302000000,0.000047772000000,0.000061994000000,0.000266636000000,0.000052512000000,0.000364611000000,0.000302586000000,0.000304167000000,0.017979609000000,0.017569140000000,0.000271377000000,0.000071475000000,0.000078982000000,0.000262685000000,0.000157994000000 +0.000350784000000,0.000047376000000,0.000058833000000,0.000336166000000,0.000038290000000,0.000352363000000,0.000264660000000,0.000264660000000,0.017347116000000,0.017440351000000,0.000269401000000,0.000119277000000,0.000082932000000,0.000231080000000,0.000160759000000 +0.000444018000000,0.000045006000000,0.000058043000000,0.000267426000000,0.000040265000000,0.000346833000000,0.000268215000000,0.000262685000000,0.017254671000000,0.018141584000000,0.000265845000000,0.000071870000000,0.000077402000000,0.000211327000000,0.000157599000000 +0.000350388000000,0.000045006000000,0.000058043000000,0.000269006000000,0.000037895000000,0.000353549000000,0.000342883000000,0.000262685000000,0.018076399000000,0.017214376000000,0.000321944000000,0.000073450000000,0.000077402000000,0.000258339000000,0.000166685000000 +0.000413599000000,0.000047376000000,0.000057648000000,0.000313252000000,0.000037895000000,0.000355920000000,0.000320364000000,0.000266635000000,0.017357782000000,0.017602720000000,0.000261895000000,0.000071475000000,0.000131919000000,0.000244117000000,0.000160364000000 +0.000329845000000,0.000044611000000,0.000059623000000,0.000267426000000,0.000038290000000,0.000345648000000,0.000308117000000,0.000299426000000,0.017584153000000,0.017886770000000,0.000266635000000,0.000075426000000,0.000078981000000,0.000191574000000,0.000331030000000 +0.000398191000000,0.000046981000000,0.000057253000000,0.000266240000000,0.000037500000000,0.000329450000000,0.000266240000000,0.000263080000000,0.017973288000000,0.017226227000000,0.000302191000000,0.000074241000000,0.000082537000000,0.000370931000000,0.000172611000000 +0.000351573000000,0.000046981000000,0.000058833000000,0.000282043000000,0.000037895000000,0.000374487000000,0.000270982000000,0.000270586000000,0.017819214000000,0.018081930000000,0.000270981000000,0.000074635000000,0.000083327000000,0.000237796000000,0.000157993000000 +0.000403327000000,0.000065549000000,0.000059228000000,0.000267030000000,0.000037895000000,0.000332215000000,0.000312858000000,0.000315228000000,0.017840943000000,0.017336844000000,0.000265450000000,0.000071475000000,0.000081747000000,0.000218438000000,0.000158784000000 +0.000332611000000,0.000045401000000,0.000056858000000,0.000343672000000,0.000037895000000,0.000388710000000,0.000268610000000,0.000262685000000,0.017572300000000,0.017270868000000,0.000284018000000,0.000073845000000,0.000076216000000,0.000286388000000,0.000163919000000 +0.000363030000000,0.000047376000000,0.000057253000000,0.000303376000000,0.000037894000000,0.000331425000000,0.000264661000000,0.000297846000000,0.017660400000000,0.018156992000000,0.000266241000000,0.000071080000000,0.000114141000000,0.000183277000000,0.000157598000000 +0.000357104000000,0.000045006000000,0.000060018000000,0.000265451000000,0.000038290000000,0.000331426000000,0.000263475000000,0.000264265000000,0.017793536000000,0.017558474000000,0.000304166000000,0.000073845000000,0.000078192000000,0.000234635000000,0.000161944000000 +0.000417154000000,0.000045401000000,0.000057253000000,0.000302981000000,0.000037895000000,0.000351969000000,0.000269401000000,0.000264660000000,0.017624449000000,0.017381881000000,0.000267030000000,0.000074636000000,0.000100710000000,0.000258735000000,0.000158388000000 +0.000357104000000,0.000045006000000,0.000057648000000,0.000272166000000,0.000054487000000,0.000335376000000,0.000306931000000,0.000303771000000,0.017979609000000,0.017268499000000,0.000264265000000,0.000075031000000,0.000077401000000,0.000253993000000,0.000160364000000 +0.000361450000000,0.000050142000000,0.000058833000000,0.000265055000000,0.000038290000000,0.000384759000000,0.000268215000000,0.000263080000000,0.017485782000000,0.018205189000000,0.000300611000000,0.000072265000000,0.000079376000000,0.000223968000000,0.000161549000000 +0.000370931000000,0.000045401000000,0.000059623000000,0.000265846000000,0.000038290000000,0.000349598000000,0.000279673000000,0.000261895000000,0.017539116000000,0.018281831000000,0.000262684000000,0.000074240000000,0.000076611000000,0.000243722000000,0.000159179000000 +0.000370536000000,0.000045006000000,0.000056463000000,0.000263080000000,0.000037895000000,0.000441648000000,0.000300216000000,0.000429401000000,0.018038473000000,0.017138919000000,0.000263080000000,0.000071870000000,0.000079772000000,0.000248857000000,0.000157993000000 +0.000351969000000,0.000047376000000,0.000063179000000,0.000370142000000,0.000038290000000,0.000349204000000,0.000266241000000,0.000263870000000,0.017319462000000,0.017289437000000,0.000324709000000,0.000074635000000,0.000077401000000,0.000191574000000,0.000161154000000 +0.000348018000000,0.000048166000000,0.000058439000000,0.000268216000000,0.000037895000000,0.000400562000000,0.000269401000000,0.000305747000000,0.018479757000000,0.017745338000000,0.000262685000000,0.000073451000000,0.000077796000000,0.000329450000000,0.000147327000000 +0.000349203000000,0.000046981000000,0.000074241000000,0.000271771000000,0.000038290000000,0.000341697000000,0.000347228000000,0.000316413000000,0.018135659000000,0.017707411000000,0.000263475000000,0.000074240000000,0.000077796000000,0.000214882000000,0.000147327000000 +0.000352759000000,0.000045796000000,0.000057648000000,0.000335376000000,0.000038290000000,0.000417944000000,0.000264265000000,0.000260709000000,0.017727165000000,0.017701881000000,0.000269400000000,0.000074240000000,0.000077401000000,0.000248858000000,0.000185253000000 +0.000621005000000,0.000047377000000,0.000057253000000,0.000266241000000,0.000037895000000,0.000371327000000,0.000299031000000,0.000304166000000,0.017715708000000,0.017660400000000,0.000267426000000,0.000073846000000,0.000097945000000,0.000270192000000,0.000149697000000 +0.000454685000000,0.000045401000000,0.000061204000000,0.000284018000000,0.000037895000000,0.000400166000000,0.000265450000000,0.000269401000000,0.017215165000000,0.017512646000000,0.000328265000000,0.000073451000000,0.000079771000000,0.000208561000000,0.000148907000000 +0.000347228000000,0.000046981000000,0.000059228000000,0.000265450000000,0.000038685000000,0.000353944000000,0.000265845000000,0.000263475000000,0.017389783000000,0.018234424000000,0.000266241000000,0.000073451000000,0.000079772000000,0.000197104000000,0.000205005000000 +0.000367376000000,0.000047771000000,0.000058833000000,0.000263080000000,0.000037895000000,0.000408068000000,0.000308907000000,0.000265845000000,0.017458918000000,0.017490918000000,0.000262289000000,0.000073846000000,0.000078586000000,0.000247672000000,0.000198290000000 +0.000358684000000,0.000045006000000,0.000060019000000,0.000304166000000,0.000037895000000,0.000336956000000,0.000268611000000,0.000273352000000,0.017477091000000,0.017922720000000,0.000304956000000,0.000075821000000,0.000077796000000,0.000242932000000,0.000151278000000 +0.000368167000000,0.000047772000000,0.000058438000000,0.000271377000000,0.000037895000000,0.000328660000000,0.000267030000000,0.000299425000000,0.018195312000000,0.018017140000000,0.000263080000000,0.000107820000000,0.000080166000000,0.000223179000000,0.000150487000000 +0.000354735000000,0.000044610000000,0.000059229000000,0.000262685000000,0.000037895000000,0.000331820000000,0.000306932000000,0.000265056000000,0.018347806000000,0.017128646000000,0.000300216000000,0.000073846000000,0.000115722000000,0.000212907000000,0.000182882000000 +0.000358685000000,0.000048167000000,0.000058833000000,0.000435326000000,0.000038290000000,0.000351178000000,0.000269796000000,0.000266241000000,0.017145635000000,0.017334474000000,0.000273351000000,0.000071476000000,0.000079772000000,0.000212907000000,0.000150883000000 +0.000376067000000,0.000047376000000,0.000058833000000,0.000265845000000,0.000037895000000,0.000391475000000,0.000265450000000,0.000299820000000,0.019509287000000,0.017421782000000,0.000265451000000,0.000071870000000,0.000084513000000,0.000215673000000,0.000152067000000 +0.000351574000000,0.000047376000000,0.000057253000000,0.000337351000000,0.000038290000000,0.000343672000000,0.000340907000000,0.000266240000000,0.017711757000000,0.017791165000000,0.000397796000000,0.000072265000000,0.000080561000000,0.000278882000000,0.000150093000000 +0.000359475000000,0.000063179000000,0.000058438000000,0.000270981000000,0.000037895000000,0.000757302000000,0.000266635000000,0.000264265000000,0.018675707000000,0.017676992000000,0.000274142000000,0.000074241000000,0.000079376000000,0.000229500000000,0.000184858000000 +0.000375673000000,0.000067129000000,0.000057253000000,0.000267425000000,0.000037895000000,0.000384759000000,0.000306537000000,0.000626931000000,0.018473831000000,0.017438375000000,0.000268215000000,0.000109796000000,0.000077006000000,0.000180512000000,0.000149302000000 +0.000410833000000,0.000047376000000,0.000071475000000,0.000300216000000,0.000057253000000,0.000353548000000,0.000270191000000,0.000260710000000,0.017969733000000,0.017818424000000,0.000267821000000,0.000073845000000,0.000114932000000,0.000253993000000,0.000148907000000 +0.000421895000000,0.000048957000000,0.000056462000000,0.000269006000000,0.000038289000000,0.000332216000000,0.000262290000000,0.000280067000000,0.017505140000000,0.017358178000000,0.000307722000000,0.000071870000000,0.000082932000000,0.000208561000000,0.000147722000000 +0.000601647000000,0.000047377000000,0.000057253000000,0.000268610000000,0.000037894000000,0.000351179000000,0.000268610000000,0.000263870000000,0.018059016000000,0.017503165000000,0.000298240000000,0.000071870000000,0.000079771000000,0.000240957000000,0.000167870000000 +0.000370537000000,0.000045006000000,0.000058833000000,0.000289944000000,0.000038290000000,0.000360265000000,0.000263475000000,0.000338537000000,0.017862275000000,0.017966967000000,0.000267031000000,0.000072660000000,0.000079772000000,0.000322339000000,0.000159179000000 +0.000350389000000,0.000047772000000,0.000057648000000,0.000263080000000,0.000038290000000,0.000367772000000,0.000310883000000,0.000266240000000,0.017839362000000,0.017154721000000,0.000264660000000,0.000073845000000,0.000076611000000,0.000178932000000,0.000153253000000 +0.000397005000000,0.000061598000000,0.000058438000000,0.000352364000000,0.000038290000000,0.000350783000000,0.000265055000000,0.000264265000000,0.018031757000000,0.018354918000000,0.000311672000000,0.000109796000000,0.000114142000000,0.000237006000000,0.000149302000000 +0.000368166000000,0.000046981000000,0.000059228000000,0.000263475000000,0.000037895000000,0.000393846000000,0.000306932000000,0.000307326000000,0.017875313000000,0.018295658000000,0.000267031000000,0.000073451000000,0.000077401000000,0.000228709000000,0.000148907000000 +0.000370932000000,0.000047377000000,0.000058833000000,0.000268216000000,0.000037500000000,0.000329055000000,0.000339721000000,0.000269006000000,0.017045684000000,0.018086276000000,0.000271376000000,0.000072660000000,0.000077402000000,0.000246488000000,0.000157203000000 +0.000451129000000,0.000047376000000,0.000057253000000,0.000276907000000,0.000038290000000,0.000471672000000,0.000262290000000,0.000265846000000,0.017541881000000,0.017134573000000,0.000265450000000,0.000074241000000,0.000078586000000,0.000182487000000,0.000147327000000 +0.000352759000000,0.000064364000000,0.000059623000000,0.000267426000000,0.000041055000000,0.000346438000000,0.000263870000000,0.000260709000000,0.017491313000000,0.017795905000000,0.000262685000000,0.000073450000000,0.000079771000000,0.000287574000000,0.000150487000000 +0.000379228000000,0.000046587000000,0.000058833000000,0.000266240000000,0.000037895000000,0.000400167000000,0.000266240000000,0.000268611000000,0.017513042000000,0.017218721000000,0.000297450000000,0.000073055000000,0.000079772000000,0.000250833000000,0.000148117000000 +0.000372907000000,0.000045401000000,0.000057253000000,0.000262684000000,0.000039475000000,0.000344857000000,0.000264660000000,0.000301796000000,0.017412696000000,0.017883214000000,0.000264660000000,0.000073845000000,0.000114537000000,0.000180512000000,0.000149697000000 +0.000375277000000,0.000047377000000,0.000058833000000,0.000344462000000,0.000037895000000,0.000402537000000,0.000346438000000,0.000264660000000,0.018225337000000,0.017678967000000,0.000267030000000,0.000074635000000,0.000079377000000,0.000309302000000,0.000149303000000 +0.000354734000000,0.000048562000000,0.000079376000000,0.000264660000000,0.000038290000000,0.000355919000000,0.000267426000000,0.000267426000000,0.017486177000000,0.017684498000000,0.000261500000000,0.000073845000000,0.000081352000000,0.000195129000000,0.000149302000000 +0.000376858000000,0.000044216000000,0.000057252000000,0.000265056000000,0.000038290000000,0.000378043000000,0.000272561000000,0.000430191000000,0.017924696000000,0.018081535000000,0.000263475000000,0.000074241000000,0.000083722000000,0.000251228000000,0.000150092000000 +0.000351574000000,0.000047377000000,0.000058833000000,0.000267820000000,0.000037895000000,0.000349993000000,0.000272956000000,0.000261499000000,0.017392548000000,0.017488548000000,0.000305351000000,0.000071080000000,0.000081352000000,0.000257550000000,0.000149302000000 +0.000349993000000,0.000047376000000,0.000059228000000,0.000263080000000,0.000037895000000,0.000353944000000,0.000282043000000,0.000282438000000,0.017468795000000,0.018940004000000,0.000261500000000,0.000073451000000,0.000081351000000,0.000217648000000,0.000153648000000 +0.000360265000000,0.000047771000000,0.000058833000000,0.000388314000000,0.000037895000000,0.000376858000000,0.000485895000000,0.000267426000000,0.017644202000000,0.017481832000000,0.000265450000000,0.000073451000000,0.000117303000000,0.000218438000000,0.000156414000000 +0.000383968000000,0.000047376000000,0.000060018000000,0.000267821000000,0.000038290000000,0.000332215000000,0.000314043000000,0.000262684000000,0.017577832000000,0.016957980000000,0.000346043000000,0.000073451000000,0.000082932000000,0.000234240000000,0.000151673000000 +0.000348808000000,0.000045401000000,0.000057253000000,0.000346438000000,0.000037895000000,0.000420710000000,0.000302981000000,0.000350388000000,0.017518572000000,0.018889040000000,0.000264660000000,0.000074241000000,0.000079376000000,0.000233845000000,0.000184067000000 +0.000371327000000,0.000047377000000,0.000094784000000,0.000266635000000,0.000037895000000,0.000365006000000,0.000267426000000,0.000263870000000,0.018028992000000,0.018015559000000,0.000264660000000,0.000073451000000,0.000082932000000,0.000221203000000,0.000146932000000 +0.000378437000000,0.000045006000000,0.000058438000000,0.000265450000000,0.000071870000000,0.000419129000000,0.000263080000000,0.000312463000000,0.017334079000000,0.016850524000000,0.000302586000000,0.000073451000000,0.000078191000000,0.000237401000000,0.000147327000000 +0.000355129000000,0.000046586000000,0.000058043000000,0.000440067000000,0.000037895000000,0.000329451000000,0.000265450000000,0.000280858000000,0.017187116000000,0.016853289000000,0.000263870000000,0.000071476000000,0.000080957000000,0.000234241000000,0.000231475000000 +0.000390685000000,0.000046981000000,0.000059228000000,0.000267821000000,0.000037895000000,0.000370537000000,0.000262290000000,0.000263870000000,0.017331708000000,0.016799956000000,0.000299820000000,0.000072661000000,0.000117302000000,0.000201450000000,0.000150882000000 +0.000332610000000,0.000046981000000,0.000059623000000,0.000333401000000,0.000037895000000,0.000332216000000,0.000347228000000,0.000308117000000,0.017624054000000,0.016691313000000,0.000266636000000,0.000111772000000,0.000081351000000,0.000306932000000,0.000150488000000 +0.000369352000000,0.000049747000000,0.000057648000000,0.000267425000000,0.000038290000000,0.000432562000000,0.000265846000000,0.000269006000000,0.018272349000000,0.017106129000000,0.000272956000000,0.000074636000000,0.000077401000000,0.000213302000000,0.000150488000000 +0.000356709000000,0.000046981000000,0.000059623000000,0.000267426000000,0.000038290000000,0.000342882000000,0.000272561000000,0.000263870000000,0.017319461000000,0.017040943000000,0.000311278000000,0.000097944000000,0.000077006000000,0.000285203000000,0.000149302000000 +0.000376067000000,0.000067525000000,0.000079771000000,0.000342092000000,0.000037894000000,0.000383969000000,0.000308907000000,0.000345647000000,0.017734671000000,0.017387017000000,0.000266240000000,0.000073845000000,0.000080562000000,0.000306142000000,0.000146932000000 +0.000357895000000,0.000046981000000,0.000058043000000,0.000262685000000,0.000037895000000,0.000329056000000,0.000266635000000,0.000265055000000,0.017735462000000,0.017078474000000,0.000265846000000,0.000073845000000,0.000078586000000,0.000181302000000,0.000150488000000 +0.000536857000000,0.000047771000000,0.000059228000000,0.000270586000000,0.000038290000000,0.000333006000000,0.000265845000000,0.000261500000000,0.017234918000000,0.016792845000000,0.000703178000000,0.000073451000000,0.000114141000000,0.000221204000000,0.000148907000000 +0.000339722000000,0.000047772000000,0.000057253000000,0.000694487000000,0.000037895000000,0.000402931000000,0.000263475000000,0.000302981000000,0.017998968000000,0.016905437000000,0.000364611000000,0.000087278000000,0.000077006000000,0.000239376000000,0.000181302000000 +0.000412018000000,0.000044611000000,0.000057253000000,0.000319969000000,0.000038290000000,0.000347228000000,0.000265846000000,0.000268610000000,0.017599560000000,0.016844598000000,0.000274932000000,0.000073450000000,0.000078586000000,0.000207376000000,0.000149302000000 +0.000354339000000,0.000047771000000,0.000056858000000,0.000284413000000,0.000038290000000,0.000406487000000,0.000334586000000,0.000302586000000,0.017946819000000,0.016748202000000,0.000275721000000,0.000073846000000,0.000081747000000,0.000235426000000,0.000150487000000 +0.000391870000000,0.000047377000000,0.000056858000000,0.000284808000000,0.000037895000000,0.000360660000000,0.000262290000000,0.000268611000000,0.019269484000000,0.017577832000000,0.000269401000000,0.000071475000000,0.000081351000000,0.000231080000000,0.000149697000000 +0.000331820000000,0.000044611000000,0.000059229000000,0.000285204000000,0.000037895000000,0.000398586000000,0.000265055000000,0.000265055000000,0.017409535000000,0.016635215000000,0.000263080000000,0.000073846000000,0.000078191000000,0.000227129000000,0.000146932000000 +0.000473253000000,0.000060413000000,0.000059623000000,0.000280463000000,0.000038290000000,0.000344462000000,0.000300215000000,0.000312857000000,0.017711758000000,0.017327758000000,0.000318389000000,0.000071475000000,0.000116117000000,0.000184463000000,0.000149302000000 +0.000425845000000,0.000045401000000,0.000059228000000,0.000291524000000,0.000038290000000,0.000387919000000,0.000265055000000,0.000264265000000,0.017322622000000,0.016462178000000,0.000261499000000,0.000110192000000,0.000077006000000,0.000242142000000,0.000150882000000 +0.000640363000000,0.000046981000000,0.000060413000000,0.000281252000000,0.000037895000000,0.000371722000000,0.000266241000000,0.000269401000000,0.017167758000000,0.016546327000000,0.000265056000000,0.000073846000000,0.000078191000000,0.000240562000000,0.000150488000000 +0.000747425000000,0.000047771000000,0.000056858000000,0.000281648000000,0.000037895000000,0.000355525000000,0.000268611000000,0.000326685000000,0.017856745000000,0.017004992000000,0.000336956000000,0.000074241000000,0.000083327000000,0.000179327000000,0.000150488000000 +0.000412018000000,0.000048956000000,0.000057648000000,0.000278487000000,0.000037895000000,0.000333400000000,0.000273747000000,0.000263870000000,0.017440350000000,0.016857635000000,0.000265846000000,0.000074240000000,0.000081747000000,0.000320364000000,0.000221203000000 +0.000422290000000,0.000047376000000,0.000059623000000,0.000284808000000,0.000037895000000,0.000356315000000,0.000352758000000,0.000297055000000,0.017237683000000,0.016809042000000,0.000302191000000,0.000073845000000,0.000084512000000,0.000193154000000,0.000149697000000 +0.000367772000000,0.000047376000000,0.000056858000000,0.000281648000000,0.000073845000000,0.000365401000000,0.000272562000000,0.000266635000000,0.019370621000000,0.017887955000000,0.000264265000000,0.000075031000000,0.000151673000000,0.000239377000000,0.000151278000000 +0.000350388000000,0.000047771000000,0.000056858000000,0.000282833000000,0.000037895000000,0.000334191000000,0.000271376000000,0.000265055000000,0.018079560000000,0.017304844000000,0.000271772000000,0.000165500000000,0.000077796000000,0.000253993000000,0.000234240000000 +0.000367377000000,0.000045006000000,0.000061994000000,0.000317994000000,0.000038290000000,0.000598882000000,0.000282833000000,0.000355129000000,0.018199659000000,0.016549882000000,0.000309697000000,0.000090043000000,0.000078191000000,0.000203426000000,0.000152068000000 +0.000371326000000,0.000045006000000,0.000057648000000,0.000281647000000,0.000037895000000,0.000414784000000,0.000266241000000,0.000266240000000,0.017127066000000,0.016692104000000,0.000265056000000,0.000073055000000,0.000078981000000,0.000231475000000,0.000149303000000 +0.000350784000000,0.000045006000000,0.000058833000000,0.000282438000000,0.000038290000000,0.000358289000000,0.000301401000000,0.000272957000000,0.018115115000000,0.016866326000000,0.000338141000000,0.000073845000000,0.000078586000000,0.000210142000000,0.000147722000000 +0.000709104000000,0.000047377000000,0.000058833000000,0.000289944000000,0.000037895000000,0.000406883000000,0.000270981000000,0.000266636000000,0.017547016000000,0.016790869000000,0.000260315000000,0.000075030000000,0.000077796000000,0.000217648000000,0.000186438000000 +0.000374882000000,0.000045401000000,0.000062784000000,0.000280067000000,0.000037895000000,0.000340116000000,0.000267030000000,0.000265055000000,0.017630770000000,0.016804301000000,0.000262290000000,0.000143376000000,0.000096364000000,0.000182092000000,0.000148512000000 +0.000365400000000,0.000046982000000,0.000099129000000,0.000283228000000,0.000037895000000,0.000382784000000,0.000304956000000,0.000335376000000,0.017533585000000,0.016771116000000,0.000459031000000,0.000075030000000,0.000077796000000,0.000244117000000,0.000148908000000 +0.000389500000000,0.000067130000000,0.000057648000000,0.000318783000000,0.000039081000000,0.000331030000000,0.000265055000000,0.000261500000000,0.017158277000000,0.017231362000000,0.000269006000000,0.000073055000000,0.000077796000000,0.000260710000000,0.000155623000000 +0.000332611000000,0.000045006000000,0.000057253000000,0.000285599000000,0.000037895000000,0.000371326000000,0.000263870000000,0.000262685000000,0.017600350000000,0.016737140000000,0.000346043000000,0.000073845000000,0.000078191000000,0.000205401000000,0.000246487000000 +0.000396611000000,0.000045006000000,0.000057648000000,0.000338536000000,0.000043031000000,0.000336561000000,0.000346833000000,0.000264660000000,0.019256842000000,0.017661584000000,0.000276907000000,0.000073055000000,0.000079377000000,0.000230290000000,0.000148907000000 +0.000352364000000,0.000046981000000,0.000057648000000,0.000285599000000,0.000037895000000,0.000357105000000,0.000266635000000,0.000262685000000,0.018405485000000,0.017256647000000,0.000269796000000,0.000073846000000,0.000079377000000,0.000240561000000,0.000147722000000 +0.000409648000000,0.000046981000000,0.000059624000000,0.000315228000000,0.000037895000000,0.000393451000000,0.000262685000000,0.000298635000000,0.017549388000000,0.016916894000000,0.000358685000000,0.000128759000000,0.000124018000000,0.000228710000000,0.000154043000000 +0.000386339000000,0.000067129000000,0.000057253000000,0.000278487000000,0.000037895000000,0.000334586000000,0.000263870000000,0.000294290000000,0.017752844000000,0.016987609000000,0.000266635000000,0.000071870000000,0.000077796000000,0.000242932000000,0.000151277000000 +0.000407277000000,0.000046982000000,0.000094388000000,0.000265845000000,0.000039870000000,0.000421895000000,0.000273351000000,0.000270981000000,0.018006078000000,0.016928745000000,0.000304166000000,0.000072660000000,0.000076611000000,0.000277697000000,0.000151278000000 +0.000359870000000,0.000044611000000,0.000057253000000,0.000264265000000,0.000038290000000,0.000356710000000,0.000301006000000,0.000296660000000,0.017835017000000,0.017410721000000,0.000263475000000,0.000072660000000,0.000081352000000,0.000242932000000,0.000150488000000 +0.000369352000000,0.000047771000000,0.000060808000000,0.000476808000000,0.000078586000000,0.000383179000000,0.000269006000000,0.000261104000000,0.017491708000000,0.017873338000000,0.000267030000000,0.000072660000000,0.000098734000000,0.000202240000000,0.000188018000000 +0.000359080000000,0.000046981000000,0.000056858000000,0.000262289000000,0.000077006000000,0.000357105000000,0.000263870000000,0.000303771000000,0.017066623000000,0.016826030000000,0.000336167000000,0.000073450000000,0.000078981000000,0.000276117000000,0.000148513000000 +0.000366981000000,0.000047772000000,0.000057252000000,0.000266240000000,0.000054487000000,0.000401351000000,0.000496562000000,0.000268215000000,0.017793535000000,0.016824844000000,0.000267030000000,0.000071870000000,0.000080956000000,0.000263475000000,0.000147327000000 +0.000330635000000,0.000047377000000,0.000060413000000,0.000304166000000,0.000054093000000,0.000327475000000,0.000280068000000,0.000261895000000,0.016855264000000,0.016703561000000,0.000263870000000,0.000071475000000,0.000078981000000,0.000179327000000,0.000150883000000 +0.000333006000000,0.000045401000000,0.000059623000000,0.000270586000000,0.000038290000000,0.000326685000000,0.000303376000000,0.000373697000000,0.017212005000000,0.017153931000000,0.000300215000000,0.000071080000000,0.000078191000000,0.000284018000000,0.000293500000000 +0.000435326000000,0.000047377000000,0.000174192000000,0.000264266000000,0.000037895000000,0.000398586000000,0.000265845000000,0.000264660000000,0.018031362000000,0.016753338000000,0.000266636000000,0.000073450000000,0.000080167000000,0.000178537000000,0.000148907000000 +0.000353944000000,0.000047377000000,0.000135870000000,0.000304167000000,0.000038290000000,0.000355524000000,0.000274537000000,0.000261105000000,0.017457733000000,0.017976844000000,0.000281253000000,0.000071475000000,0.000078191000000,0.000244117000000,0.000148513000000 +0.000353944000000,0.000046982000000,0.000095179000000,0.000269401000000,0.000037895000000,0.000393055000000,0.000263870000000,0.000272167000000,0.017880844000000,0.017293783000000,0.000265055000000,0.000073056000000,0.000077796000000,0.000272167000000,0.000152463000000 +0.000373697000000,0.000044611000000,0.000097944000000,0.000272561000000,0.000037895000000,0.000325499000000,0.000269005000000,0.000265845000000,0.017268893000000,0.017018425000000,0.000260710000000,0.000095574000000,0.000083722000000,0.000191969000000,0.000161945000000 +0.000440858000000,0.000048956000000,0.000078586000000,0.000267820000000,0.000037895000000,0.000423870000000,0.000305351000000,0.000302981000000,0.017251906000000,0.016978128000000,0.000310882000000,0.000097154000000,0.000082536000000,0.000238191000000,0.000147722000000 +0.000351573000000,0.000046981000000,0.000064364000000,0.000263080000000,0.000037895000000,0.000355524000000,0.000262290000000,0.000263080000000,0.017979214000000,0.016942572000000,0.000263080000000,0.000071870000000,0.000076216000000,0.000266240000000,0.000147327000000 +0.000381994000000,0.000045006000000,0.000078981000000,0.000300610000000,0.000037894000000,0.000419919000000,0.000269005000000,0.000266241000000,0.017366079000000,0.017324993000000,0.000314833000000,0.000073846000000,0.000078586000000,0.000255969000000,0.000149698000000 +0.000349204000000,0.000044611000000,0.000069105000000,0.000273747000000,0.000037895000000,0.000332215000000,0.000300611000000,0.000348018000000,0.017410721000000,0.016572005000000,0.000762437000000,0.000076611000000,0.000078586000000,0.000197895000000,0.000167475000000 +0.000356315000000,0.000047772000000,0.000068315000000,0.000270191000000,0.000037895000000,0.000368957000000,0.000269006000000,0.000270981000000,0.017551363000000,0.016969833000000,0.000360661000000,0.000086882000000,0.000076611000000,0.000336166000000,0.000150092000000 +0.000353549000000,0.000047377000000,0.000064759000000,0.000319574000000,0.000037895000000,0.000327080000000,0.000264265000000,0.000263080000000,0.017725980000000,0.017657239000000,0.000267030000000,0.000073450000000,0.000081746000000,0.000237796000000,0.000150882000000 +0.000369351000000,0.000067130000000,0.000134685000000,0.000266240000000,0.000039080000000,0.000350784000000,0.000301796000000,0.000265055000000,0.017815659000000,0.017248351000000,0.000263475000000,0.000071870000000,0.000084117000000,0.000197895000000,0.000153648000000 +0.000378833000000,0.000067130000000,0.000063179000000,0.000266636000000,0.000037499000000,0.000325105000000,0.000267030000000,0.000261894000000,0.016969042000000,0.018020696000000,0.000262290000000,0.000071870000000,0.000080562000000,0.000306932000000,0.000201845000000 +0.000355920000000,0.000045006000000,0.000076216000000,0.000282833000000,0.000040265000000,0.000358685000000,0.000286388000000,0.000342882000000,0.017562424000000,0.019725780000000,0.000260315000000,0.000073451000000,0.000076611000000,0.000196710000000,0.000149698000000 +0.000374882000000,0.000047376000000,0.000063179000000,0.000262685000000,0.000037895000000,0.000649450000000,0.000319179000000,0.000263475000000,0.017590078000000,0.017911264000000,0.000303771000000,0.000073451000000,0.000079771000000,0.000251624000000,0.000150092000000 +0.000351179000000,0.000045796000000,0.000060413000000,0.000305351000000,0.000037895000000,0.000430191000000,0.000267425000000,0.000265845000000,0.017271264000000,0.018313831000000,0.000261500000000,0.000144562000000,0.000076611000000,0.000310093000000,0.000148117000000 +0.000376858000000,0.000047376000000,0.000061204000000,0.000269401000000,0.000037895000000,0.000357499000000,0.000304562000000,0.000352759000000,0.018066128000000,0.017550967000000,0.000264660000000,0.000074635000000,0.000081351000000,0.000211722000000,0.000150488000000 +0.000376858000000,0.000047376000000,0.000132314000000,0.000267821000000,0.000037895000000,0.000335771000000,0.000262290000000,0.000279277000000,0.017488152000000,0.018533091000000,0.000311672000000,0.000074240000000,0.000078191000000,0.000227524000000,0.000154043000000 +0.000379623000000,0.000059229000000,0.000066734000000,0.000419129000000,0.000037895000000,0.000363821000000,0.000270586000000,0.000263475000000,0.017798671000000,0.017947610000000,0.000271771000000,0.000075426000000,0.000079772000000,0.000252413000000,0.000149302000000 +0.000348809000000,0.000047377000000,0.000062388000000,0.000263870000000,0.000038290000000,0.000332611000000,0.000301796000000,0.000272956000000,0.017516992000000,0.017270079000000,0.000265056000000,0.000074241000000,0.000080957000000,0.000244907000000,0.000149698000000 +0.000379623000000,0.000047377000000,0.000062389000000,0.000298635000000,0.000074241000000,0.000365401000000,0.000270191000000,0.000260314000000,0.017117585000000,0.017956301000000,0.000263870000000,0.000074241000000,0.000133895000000,0.000235426000000,0.000149698000000 +0.000427821000000,0.000044215000000,0.000063574000000,0.000262685000000,0.000037895000000,0.000333401000000,0.000267426000000,0.000301796000000,0.017071758000000,0.017044104000000,0.000260710000000,0.000073055000000,0.000167080000000,0.000272167000000,0.000149697000000 +0.000692907000000,0.000046981000000,0.000060414000000,0.000299426000000,0.000037500000000,0.000406487000000,0.000263871000000,0.000262685000000,0.017731115000000,0.017506720000000,0.000299820000000,0.000073450000000,0.000094784000000,0.000218438000000,0.000149697000000 +0.000379623000000,0.000047376000000,0.000060808000000,0.000484709000000,0.000039475000000,0.000326289000000,0.000266240000000,0.000273746000000,0.017383856000000,0.017341980000000,0.000269006000000,0.000072660000000,0.000079772000000,0.000210931000000,0.000188809000000 +0.000365796000000,0.000045401000000,0.000063179000000,0.000321549000000,0.000037895000000,0.000368166000000,0.000346438000000,0.000335771000000,0.018051115000000,0.017371215000000,0.000263870000000,0.000073451000000,0.000077401000000,0.000310093000000,0.000192364000000 +0.000342882000000,0.000045006000000,0.000062783000000,0.000265451000000,0.000037895000000,0.000356709000000,0.000267031000000,0.000262290000000,0.017077684000000,0.017545832000000,0.000301006000000,0.000070290000000,0.000081352000000,0.000214488000000,0.000163130000000 +0.000503277000000,0.000064759000000,0.000060808000000,0.000269795000000,0.000037894000000,0.000365401000000,0.000267425000000,0.000263870000000,0.017374770000000,0.017509091000000,0.000272956000000,0.000132709000000,0.000078981000000,0.000216858000000,0.000399376000000 +0.000331031000000,0.000049352000000,0.000061599000000,0.000317598000000,0.000037894000000,0.000335772000000,0.000308512000000,0.000275326000000,0.017518968000000,0.017245190000000,0.000273746000000,0.000086488000000,0.000077796000000,0.000282437000000,0.000288759000000 +0.000335771000000,0.000045006000000,0.000062784000000,0.000269006000000,0.000037894000000,0.000384363000000,0.000262685000000,0.000266636000000,0.017443905000000,0.017718869000000,0.000273746000000,0.000073845000000,0.000077796000000,0.000197895000000,0.000317994000000 +0.000360660000000,0.000046982000000,0.000063179000000,0.000265846000000,0.000037500000000,0.000325499000000,0.000268216000000,0.000300610000000,0.017443116000000,0.017346720000000,0.000262685000000,0.000072660000000,0.000077796000000,0.000231870000000,0.000158784000000 +0.000373302000000,0.000047772000000,0.000133895000000,0.000299820000000,0.000038290000000,0.000329056000000,0.000264660000000,0.000314833000000,0.017389388000000,0.017701091000000,0.000315228000000,0.000071870000000,0.000078191000000,0.000231080000000,0.000166289000000 +0.000330241000000,0.000047377000000,0.000076611000000,0.000263870000000,0.000039475000000,0.000352759000000,0.000263080000000,0.000267031000000,0.017858326000000,0.017552943000000,0.000263080000000,0.000073845000000,0.000148907000000,0.000225154000000,0.000183673000000 +0.000442437000000,0.000047376000000,0.000063179000000,0.000267425000000,0.000038290000000,0.000329055000000,0.000298636000000,0.000540413000000,0.018080745000000,0.016907413000000,0.000265055000000,0.000074241000000,0.000078191000000,0.000232265000000,0.000150092000000 +0.000343278000000,0.000047772000000,0.000109401000000,0.000280067000000,0.000037895000000,0.000369746000000,0.000266240000000,0.000261500000000,0.017792745000000,0.017129437000000,0.000339326000000,0.000071080000000,0.000081747000000,0.000252413000000,0.000149303000000 +0.000366190000000,0.000046982000000,0.000093204000000,0.000270586000000,0.000037895000000,0.000377253000000,0.000265450000000,0.000278487000000,0.017817239000000,0.017339610000000,0.000269796000000,0.000072660000000,0.000079376000000,0.000249253000000,0.000151277000000 +0.000362240000000,0.000047772000000,0.000062783000000,0.000301006000000,0.000038290000000,0.000423870000000,0.000316019000000,0.000263475000000,0.017831066000000,0.017212795000000,0.000332611000000,0.000073846000000,0.000079376000000,0.000191179000000,0.000185648000000 +0.000334586000000,0.000047377000000,0.000062784000000,0.000265055000000,0.000038290000000,0.000361056000000,0.000270586000000,0.000302586000000,0.017834621000000,0.018361634000000,0.000339721000000,0.000074636000000,0.000075821000000,0.000282043000000,0.000148512000000 +0.000340907000000,0.000046982000000,0.000060414000000,0.000264660000000,0.000037895000000,0.000440068000000,0.000269006000000,0.000267821000000,0.018375855000000,0.017224647000000,0.000265450000000,0.000071870000000,0.000076216000000,0.000197104000000,0.000148907000000 +0.000365006000000,0.000045006000000,0.000062388000000,0.000298635000000,0.000058833000000,0.000333005000000,0.000276512000000,0.000263870000000,0.018156201000000,0.017692400000000,0.000301005000000,0.000108611000000,0.000081351000000,0.000250043000000,0.000150487000000 +0.000425055000000,0.000047377000000,0.000063179000000,0.000269401000000,0.000054092000000,0.000390290000000,0.000269401000000,0.000304956000000,0.017626029000000,0.017631164000000,0.000267425000000,0.000070685000000,0.000080561000000,0.000262685000000,0.000186438000000 +0.000343278000000,0.000044611000000,0.000118093000000,0.000262685000000,0.000038290000000,0.000356709000000,0.000302191000000,0.000266240000000,0.017857535000000,0.017334473000000,0.000267031000000,0.000073845000000,0.000081747000000,0.000180907000000,0.000156018000000 +0.000339722000000,0.000045006000000,0.000062783000000,0.000347228000000,0.000037895000000,0.000326289000000,0.000262685000000,0.000262685000000,0.017238473000000,0.018533880000000,0.000261499000000,0.000071475000000,0.000082141000000,0.000241351000000,0.000150487000000 +0.000356710000000,0.000054883000000,0.000062784000000,0.000268216000000,0.000038290000000,0.000366191000000,0.000265055000000,0.000302191000000,0.017358968000000,0.018955411000000,0.000281253000000,0.000093993000000,0.000081352000000,0.000179327000000,0.000151673000000 +0.000357895000000,0.000047377000000,0.000063179000000,0.000301006000000,0.000037895000000,0.000350784000000,0.000308117000000,0.000263475000000,0.017524103000000,0.017817239000000,0.000320759000000,0.000085697000000,0.000127968000000,0.000272166000000,0.000198685000000 +0.000329055000000,0.000047772000000,0.000060809000000,0.000267030000000,0.000037895000000,0.000427821000000,0.000262289000000,0.000263475000000,0.017699511000000,0.017665930000000,0.000263870000000,0.000110586000000,0.000084117000000,0.000216068000000,0.000148512000000 +0.000434537000000,0.000046981000000,0.000062784000000,0.000263475000000,0.000037499000000,0.000335771000000,0.000267821000000,0.000265451000000,0.017682128000000,0.017252301000000,0.000269006000000,0.000073450000000,0.000078981000000,0.000199080000000,0.000149697000000 +0.000331820000000,0.000047771000000,0.000060414000000,0.000306931000000,0.000038685000000,0.000369351000000,0.000314043000000,0.000270586000000,0.017041734000000,0.017539511000000,0.000299031000000,0.000073845000000,0.000078586000000,0.000321154000000,0.000149697000000 +0.000362636000000,0.000047377000000,0.000060808000000,0.000264265000000,0.000037895000000,0.000336167000000,0.000265055000000,0.000302191000000,0.019287657000000,0.017501190000000,0.000267425000000,0.000073055000000,0.000078191000000,0.000218438000000,0.000220414000000 +0.000355524000000,0.000047377000000,0.000062784000000,0.000275327000000,0.000037895000000,0.000365401000000,0.000311672000000,0.000266241000000,0.018079954000000,0.017842918000000,0.000262684000000,0.000074240000000,0.000078586000000,0.000250043000000,0.000147327000000 +0.000493006000000,0.000103080000000,0.000063178000000,0.000266636000000,0.000038290000000,0.000334191000000,0.000263870000000,0.000263079000000,0.018956596000000,0.017449042000000,0.000270981000000,0.000072265000000,0.000079377000000,0.000216858000000,0.000148512000000 +0.000357894000000,0.000047771000000,0.000062389000000,0.000267426000000,0.000037500000000,0.000333401000000,0.000317993000000,0.000300610000000,0.017803017000000,0.018124202000000,0.000265450000000,0.000073055000000,0.000079376000000,0.000199871000000,0.000148907000000 +0.000589795000000,0.000047377000000,0.000064364000000,0.000304561000000,0.000037895000000,0.000328660000000,0.000410832000000,0.000263080000000,0.017385437000000,0.016995116000000,0.000314438000000,0.000072266000000,0.000077796000000,0.000230289000000,0.000182882000000 +0.000376462000000,0.000044611000000,0.000079772000000,0.000267031000000,0.000037895000000,0.000330241000000,0.000264660000000,0.000265450000000,0.017266128000000,0.017571906000000,0.000273747000000,0.000071870000000,0.000077401000000,0.000219228000000,0.000154438000000 +0.000403327000000,0.000046981000000,0.000063574000000,0.000263870000000,0.000037895000000,0.000384363000000,0.000300216000000,0.000297055000000,0.017586918000000,0.017357387000000,0.000266240000000,0.000071475000000,0.000082536000000,0.000217253000000,0.000149302000000 +0.000332216000000,0.000045401000000,0.000061599000000,0.000299821000000,0.000038685000000,0.000333006000000,0.000261895000000,0.000266636000000,0.017610227000000,0.017705831000000,0.000280462000000,0.000071870000000,0.000079376000000,0.000267031000000,0.000148117000000 +0.000423080000000,0.000047376000000,0.000060808000000,0.000266240000000,0.000037895000000,0.000370142000000,0.000263475000000,0.000270586000000,0.017393733000000,0.017805388000000,0.000272561000000,0.000073845000000,0.000093994000000,0.000195525000000,0.000185253000000 +0.000331821000000,0.000045401000000,0.000061599000000,0.000264265000000,0.000037895000000,0.000331031000000,0.000324709000000,0.000267031000000,0.017250326000000,0.017502375000000,0.000282042000000,0.000074241000000,0.000078587000000,0.000231080000000,0.000148908000000 +0.000401352000000,0.000046587000000,0.000061204000000,0.000310092000000,0.000037895000000,0.000335376000000,0.000266240000000,0.000270982000000,0.017254672000000,0.018008843000000,0.000263080000000,0.000073056000000,0.000083327000000,0.000187228000000,0.000150883000000 +0.000326290000000,0.000045006000000,0.000060414000000,0.000264660000000,0.000037895000000,0.000578734000000,0.000265450000000,0.000351969000000,0.018012004000000,0.017552943000000,0.000271376000000,0.000072265000000,0.000080561000000,0.000257154000000,0.000150487000000 +0.000387129000000,0.000047771000000,0.000059623000000,0.000300215000000,0.000038290000000,0.000365400000000,0.000291524000000,0.000260315000000,0.017515807000000,0.017741782000000,0.000394636000000,0.000071475000000,0.000076216000000,0.000207377000000,0.000229105000000 +0.000351179000000,0.000046587000000,0.000063179000000,0.000265056000000,0.000111377000000,0.000345648000000,0.000270191000000,0.000264265000000,0.017441536000000,0.018123806000000,0.000278487000000,0.000075031000000,0.000099920000000,0.000239377000000,0.000168660000000 +0.000415574000000,0.000045401000000,0.000060809000000,0.000270191000000,0.000073056000000,0.000400957000000,0.000304167000000,0.000301401000000,0.018154227000000,0.017438375000000,0.000267821000000,0.000071871000000,0.000077401000000,0.000266241000000,0.000153648000000 +0.000335771000000,0.000047377000000,0.000063574000000,0.000318389000000,0.000058438000000,0.000350389000000,0.000270191000000,0.000268216000000,0.017535956000000,0.017495659000000,0.000274141000000,0.000074636000000,0.000077401000000,0.000180907000000,0.000227524000000 +0.000348018000000,0.000045006000000,0.000060018000000,0.000268611000000,0.000043426000000,0.000369747000000,0.000314438000000,0.000283623000000,0.017487758000000,0.017482227000000,0.000262289000000,0.000107821000000,0.000077401000000,0.000237796000000,0.000147722000000 +0.000381598000000,0.000062784000000,0.000063179000000,0.000282833000000,0.000052512000000,0.000332216000000,0.000304957000000,0.000269796000000,0.017363708000000,0.017349092000000,0.000316018000000,0.000074636000000,0.000079772000000,0.000201056000000,0.000149698000000 +0.000352364000000,0.000047771000000,0.000062389000000,0.000269401000000,0.000037894000000,0.000328661000000,0.000263080000000,0.000318783000000,0.017778522000000,0.018119856000000,0.000262685000000,0.000072265000000,0.000076611000000,0.000253598000000,0.000154438000000 +0.000387129000000,0.000047377000000,0.000131129000000,0.000270981000000,0.000040661000000,0.000385944000000,0.000262289000000,0.000310488000000,0.017270474000000,0.017249141000000,0.000264265000000,0.000074636000000,0.000117303000000,0.000263080000000,0.000186043000000 +0.000374487000000,0.000047377000000,0.000079377000000,0.000299426000000,0.000037895000000,0.000333006000000,0.000277303000000,0.000274536000000,0.017646572000000,0.017085981000000,0.000299425000000,0.000071870000000,0.000080562000000,0.000179327000000,0.000153648000000 +0.000350388000000,0.000047377000000,0.000061204000000,0.000265055000000,0.000037500000000,0.000389104000000,0.000268215000000,0.000267031000000,0.017377140000000,0.018192547000000,0.000268610000000,0.000073451000000,0.000081352000000,0.000248463000000,0.000150092000000 +0.000370932000000,0.000044611000000,0.000061203000000,0.000269401000000,0.000038290000000,0.000350784000000,0.000298636000000,0.000299426000000,0.017359758000000,0.019322423000000,0.000282043000000,0.000073450000000,0.000077797000000,0.000179722000000,0.000157204000000 +0.000351969000000,0.000047376000000,0.000062784000000,0.000389104000000,0.000037895000000,0.000414388000000,0.000270981000000,0.000264265000000,0.017697140000000,0.018222967000000,0.000270587000000,0.000071475000000,0.000077797000000,0.000324314000000,0.000184858000000 +0.000370537000000,0.000045006000000,0.000062784000000,0.000263870000000,0.000037895000000,0.000336561000000,0.000264265000000,0.000308512000000,0.017168153000000,0.018485682000000,0.000263475000000,0.000073845000000,0.000083327000000,0.000233845000000,0.000149302000000 +0.000408067000000,0.000046981000000,0.000062388000000,0.000299426000000,0.000037895000000,0.000376463000000,0.000658932000000,0.000263870000000,0.017907313000000,0.017562820000000,0.000305746000000,0.000073845000000,0.000191179000000,0.000220809000000,0.000148907000000 +0.000383573000000,0.000047376000000,0.000060808000000,0.000263870000000,0.000037895000000,0.000488660000000,0.000314043000000,0.000262685000000,0.017237288000000,0.018825435000000,0.000263475000000,0.000071475000000,0.000079377000000,0.000246092000000,0.000150883000000 +0.000414388000000,0.000046981000000,0.000063574000000,0.000267426000000,0.000039870000000,0.000543969000000,0.000263475000000,0.000384759000000,0.017838968000000,0.017532794000000,0.000265450000000,0.000071870000000,0.000075425000000,0.000227919000000,0.000225154000000 +0.000355525000000,0.000046981000000,0.000061203000000,0.000302981000000,0.000038289000000,0.000349203000000,0.000262290000000,0.000267425000000,0.017748893000000,0.017940102000000,0.000321549000000,0.000073451000000,0.000081351000000,0.000233055000000,0.000149697000000 +0.000430586000000,0.000047377000000,0.000099129000000,0.000272167000000,0.000037895000000,0.000368561000000,0.000381598000000,0.000262290000000,0.017188301000000,0.017937733000000,0.000264265000000,0.000110191000000,0.000081352000000,0.000213698000000,0.000150487000000 +0.000367771000000,0.000047377000000,0.000061599000000,0.000311672000000,0.000057648000000,0.000333796000000,0.000281252000000,0.000269401000000,0.017656449000000,0.016977734000000,0.000333401000000,0.000073846000000,0.000081351000000,0.000216067000000,0.000150093000000 +0.000414388000000,0.000050537000000,0.000062389000000,0.000272562000000,0.000069895000000,0.000427821000000,0.000289549000000,0.000272167000000,0.018096547000000,0.017709387000000,0.000266635000000,0.000071080000000,0.000079376000000,0.000270586000000,0.000184462000000 +0.000347228000000,0.000047376000000,0.000061203000000,0.000263475000000,0.000051722000000,0.000330635000000,0.000269401000000,0.000317994000000,0.017797091000000,0.017398079000000,0.000269401000000,0.000071870000000,0.000080957000000,0.000198685000000,0.000155623000000 +0.000392265000000,0.000047376000000,0.000063969000000,0.000358290000000,0.000037895000000,0.000371722000000,0.000263870000000,0.000265055000000,0.017637091000000,0.017723214000000,0.000310882000000,0.000070685000000,0.000079771000000,0.000213697000000,0.000152463000000 +0.000370932000000,0.000045006000000,0.000063179000000,0.000269005000000,0.000037895000000,0.000326290000000,0.000308117000000,0.000261894000000,0.017302869000000,0.017895461000000,0.000263870000000,0.000073845000000,0.000078191000000,0.000215278000000,0.000150093000000 +0.000451129000000,0.000045401000000,0.000117303000000,0.000265845000000,0.000037895000000,0.000410438000000,0.000267821000000,0.000314437000000,0.017390177000000,0.017270079000000,0.000269796000000,0.000091228000000,0.000078586000000,0.000224363000000,0.000186438000000 +0.000483920000000,0.000047771000000,0.000060809000000,0.000263475000000,0.000037895000000,0.000471672000000,0.000308907000000,0.000263475000000,0.017116400000000,0.017982375000000,0.000323920000000,0.000071475000000,0.000085302000000,0.000236610000000,0.000148512000000 +0.000385549000000,0.000045006000000,0.000063179000000,0.000270191000000,0.000037895000000,0.000384364000000,0.000266635000000,0.000264660000000,0.017690425000000,0.017368054000000,0.000265055000000,0.000075426000000,0.000079771000000,0.000192364000000,0.000148512000000 +0.000353154000000,0.000045006000000,0.000062388000000,0.000337352000000,0.000038290000000,0.000348808000000,0.000263475000000,0.000381598000000,0.017736251000000,0.017187116000000,0.000263080000000,0.000070685000000,0.000081747000000,0.000235031000000,0.000149302000000 +0.000354734000000,0.000121648000000,0.000063178000000,0.000265845000000,0.000038290000000,0.000384759000000,0.000306141000000,0.000265845000000,0.017339214000000,0.017909684000000,0.000336957000000,0.000073055000000,0.000080561000000,0.000275327000000,0.000184857000000 +0.000348808000000,0.000092019000000,0.000060018000000,0.000267031000000,0.000037895000000,0.000329056000000,0.000265451000000,0.000334982000000,0.017810917000000,0.017248745000000,0.000266240000000,0.000073056000000,0.000080562000000,0.000297055000000,0.000246883000000 +0.000376857000000,0.000047377000000,0.000063179000000,0.000300610000000,0.000039476000000,0.000360661000000,0.000267030000000,0.000263079000000,0.017183165000000,0.017358178000000,0.000318784000000,0.000073845000000,0.000081746000000,0.000463771000000,0.000160759000000 +0.000393450000000,0.000045401000000,0.000060413000000,0.000265055000000,0.000038290000000,0.000355525000000,0.000293105000000,0.000261894000000,0.017312746000000,0.017558869000000,0.000270191000000,0.000101500000000,0.000082142000000,0.000221994000000,0.000184858000000 +0.000372512000000,0.000047772000000,0.000060413000000,0.000262289000000,0.000038290000000,0.000356314000000,0.000264265000000,0.000327870000000,0.018327658000000,0.017344350000000,0.000262685000000,0.000073845000000,0.000240956000000,0.000258734000000,0.000151278000000 +0.000369747000000,0.000047376000000,0.000063574000000,0.000681845000000,0.000038290000000,0.000333006000000,0.000308512000000,0.000265056000000,0.017695165000000,0.018163313000000,0.000326290000000,0.000071475000000,0.000098340000000,0.000193549000000,0.000150487000000 +0.000353154000000,0.000047376000000,0.000061994000000,0.000298241000000,0.000037895000000,0.000359870000000,0.000264660000000,0.000297055000000,0.017081634000000,0.016901881000000,0.000261895000000,0.000073450000000,0.000081747000000,0.000284018000000,0.000149697000000 +0.000355919000000,0.000045401000000,0.000061204000000,0.000266240000000,0.000038290000000,0.000395031000000,0.000270191000000,0.000270191000000,0.018604596000000,0.017377535000000,0.000301795000000,0.000073845000000,0.000112562000000,0.000191179000000,0.000189994000000 +0.000374882000000,0.000045006000000,0.000060808000000,0.000265451000000,0.000038290000000,0.000362240000000,0.000301006000000,0.000265450000000,0.017084005000000,0.017626424000000,0.000267031000000,0.000127969000000,0.000078191000000,0.000216463000000,0.000148117000000 +0.000345648000000,0.000045006000000,0.000080956000000,0.000284808000000,0.000037895000000,0.000365006000000,0.000262685000000,0.000340117000000,0.017329733000000,0.016869092000000,0.000265450000000,0.000073846000000,0.000083722000000,0.000304561000000,0.000148907000000 +0.000370142000000,0.000045401000000,0.000063574000000,0.000283229000000,0.000073846000000,0.000376858000000,0.000263080000000,0.000260314000000,0.017410721000000,0.017398474000000,0.000347228000000,0.000072660000000,0.000080166000000,0.000178142000000,0.000148907000000 +0.000353944000000,0.000046981000000,0.000063969000000,0.000288364000000,0.000038290000000,0.000364611000000,0.000264265000000,0.000267821000000,0.017119561000000,0.017778523000000,0.000264265000000,0.000072661000000,0.000080957000000,0.000257154000000,0.000233845000000 +0.000351969000000,0.000046982000000,0.000063179000000,0.000285599000000,0.000038290000000,0.000334586000000,0.000262685000000,0.000265056000000,0.017411906000000,0.017191462000000,0.000267821000000,0.000073451000000,0.000078191000000,0.000180117000000,0.000148907000000 +0.000359870000000,0.000045006000000,0.000060809000000,0.000284018000000,0.000037895000000,0.000395031000000,0.000300215000000,0.000265450000000,0.017974869000000,0.017513832000000,0.000263079000000,0.000075821000000,0.000128759000000,0.000267425000000,0.000150487000000 +0.000387129000000,0.000086488000000,0.000063969000000,0.000292709000000,0.000037895000000,0.000333006000000,0.000265845000000,0.000321944000000,0.017546622000000,0.016833141000000,0.000266240000000,0.000071870000000,0.000078586000000,0.000225944000000,0.000152068000000 +0.000371327000000,0.000047772000000,0.000080957000000,0.000279278000000,0.000037895000000,0.000415969000000,0.000264265000000,0.000264265000000,0.017759955000000,0.018431165000000,0.000337747000000,0.000073846000000,0.000076611000000,0.000221203000000,0.000210537000000 +0.000354339000000,0.000047772000000,0.000060413000000,0.000290339000000,0.000037895000000,0.000590586000000,0.000344463000000,0.000260315000000,0.017216350000000,0.018382966000000,0.000261105000000,0.000071080000000,0.000084117000000,0.000215277000000,0.000149697000000 +0.000351969000000,0.000044611000000,0.000061204000000,0.000283228000000,0.000038290000000,0.000413599000000,0.000262685000000,0.000344462000000,0.019582769000000,0.017150771000000,0.000264265000000,0.000071080000000,0.000076611000000,0.000198289000000,0.000150093000000 +0.000414784000000,0.000047376000000,0.000061994000000,0.000284018000000,0.000037895000000,0.000331030000000,0.000265845000000,0.000264266000000,0.017402819000000,0.017402424000000,0.000261499000000,0.000074635000000,0.000080167000000,0.000318389000000,0.000149697000000 +0.000348413000000,0.000044611000000,0.000061204000000,0.000280068000000,0.000037895000000,0.000361845000000,0.000263080000000,0.000261895000000,0.018348201000000,0.017477881000000,0.000262290000000,0.000073056000000,0.000133500000000,0.000216858000000,0.000189994000000 +0.000329845000000,0.000047377000000,0.000060809000000,0.000290734000000,0.000037895000000,0.000408067000000,0.000265055000000,0.000304166000000,0.017490918000000,0.017624844000000,0.000339327000000,0.000071871000000,0.000079771000000,0.000209747000000,0.000148512000000 +0.000329055000000,0.000045401000000,0.000098339000000,0.000281252000000,0.000037500000000,0.000397401000000,0.000306536000000,0.000265450000000,0.017677387000000,0.017617732000000,0.000262290000000,0.000073450000000,0.000077796000000,0.000259129000000,0.000150092000000 +0.000370142000000,0.000047772000000,0.000059623000000,0.000283228000000,0.000038290000000,0.000359475000000,0.000263870000000,0.000285994000000,0.016894770000000,0.017747708000000,0.000261895000000,0.000071870000000,0.000078981000000,0.000214883000000,0.000148117000000 +0.000363030000000,0.000047772000000,0.000061204000000,0.000280463000000,0.000037895000000,0.000370932000000,0.000266240000000,0.000266240000000,0.016794030000000,0.017933782000000,0.000302981000000,0.000075426000000,0.000080167000000,0.000227524000000,0.000231475000000 +0.000385154000000,0.000049352000000,0.000075031000000,0.000284414000000,0.000038290000000,0.000382388000000,0.000298635000000,0.000264660000000,0.016686573000000,0.018480942000000,0.000263475000000,0.000073845000000,0.000080562000000,0.000215277000000,0.000148907000000 +0.000361846000000,0.000047376000000,0.000062784000000,0.000280858000000,0.000037895000000,0.000334981000000,0.000267426000000,0.000301006000000,0.017012894000000,0.016977338000000,0.000271772000000,0.000073846000000,0.000114932000000,0.000327870000000,0.000192363000000 +0.000363030000000,0.000047377000000,0.000062389000000,0.000282438000000,0.000037895000000,0.000336561000000,0.000263475000000,0.000265055000000,0.016323116000000,0.017253091000000,0.000282043000000,0.000112167000000,0.000078587000000,0.000212117000000,0.000158783000000 +0.000331425000000,0.000044611000000,0.000099919000000,0.000281648000000,0.000038290000000,0.000338141000000,0.000300216000000,0.000263079000000,0.016780598000000,0.017626029000000,0.000268216000000,0.000073451000000,0.000080167000000,0.000307327000000,0.000377253000000 +0.000366981000000,0.000045401000000,0.000081351000000,0.000282438000000,0.000037895000000,0.000374092000000,0.000263080000000,0.000526980000000,0.017302869000000,0.017475116000000,0.000334981000000,0.000071475000000,0.000080166000000,0.000224759000000,0.000162340000000 +0.000331031000000,0.000116512000000,0.000062389000000,0.000318784000000,0.000039870000000,0.000328661000000,0.000268610000000,0.000264265000000,0.016860795000000,0.018470276000000,0.000261500000000,0.000071475000000,0.000082537000000,0.000216858000000,0.000173401000000 +0.000325500000000,0.000047377000000,0.000061204000000,0.000285993000000,0.000056462000000,0.000424660000000,0.000271771000000,0.000265055000000,0.016464548000000,0.017748103000000,0.000267425000000,0.000071870000000,0.000077401000000,0.000302981000000,0.000157203000000 +0.000331426000000,0.000046981000000,0.000063178000000,0.000279277000000,0.000053697000000,0.000361450000000,0.000266240000000,0.000272167000000,0.017099807000000,0.017367264000000,0.000314833000000,0.000075425000000,0.000176562000000,0.000240166000000,0.000161944000000 +0.000328265000000,0.000045006000000,0.000110586000000,0.000296265000000,0.000037894000000,0.000372117000000,0.000307327000000,0.000305351000000,0.017068202000000,0.017475511000000,0.000265451000000,0.000071080000000,0.000084117000000,0.000191968000000,0.000159179000000 +0.000485104000000,0.000047377000000,0.000063179000000,0.000282043000000,0.000037894000000,0.000357500000000,0.000282438000000,0.000269401000000,0.016799560000000,0.017082425000000,0.000286388000000,0.000073846000000,0.000081352000000,0.000281253000000,0.000159179000000 +0.000361845000000,0.000047377000000,0.000060018000000,0.000279277000000,0.000037895000000,0.000336562000000,0.000263475000000,0.000263475000000,0.016611116000000,0.017769831000000,0.000262684000000,0.000071475000000,0.000095179000000,0.000193549000000,0.000158783000000 +0.000425450000000,0.000048167000000,0.000060809000000,0.000282438000000,0.000037500000000,0.000335771000000,0.000351969000000,0.000299426000000,0.016969437000000,0.017063462000000,0.000265451000000,0.000074240000000,0.000076611000000,0.000225549000000,0.000159179000000 +0.000325895000000,0.000046981000000,0.000063178000000,0.000285203000000,0.000037895000000,0.000333796000000,0.000262685000000,0.000263870000000,0.018129337000000,0.018159758000000,0.000359475000000,0.000071870000000,0.000079376000000,0.000249648000000,0.000161549000000 +0.000384364000000,0.000047377000000,0.000062389000000,0.000301006000000,0.000037500000000,0.000366586000000,0.000269006000000,0.000264265000000,0.016361832000000,0.017356992000000,0.000269400000000,0.000073845000000,0.000083327000000,0.000224364000000,0.000157203000000 +0.000355129000000,0.000047376000000,0.000062784000000,0.000272956000000,0.000037895000000,0.000328265000000,0.000267821000000,0.000301401000000,0.017082820000000,0.017667116000000,0.000271377000000,0.000074240000000,0.000076215000000,0.000246487000000,0.000161550000000 +0.000486290000000,0.000046981000000,0.000063179000000,0.000337746000000,0.000037895000000,0.000474438000000,0.000263475000000,0.000263475000000,0.016927561000000,0.019256448000000,0.000300610000000,0.000109006000000,0.000079376000000,0.000268216000000,0.000157599000000 +0.000334586000000,0.000047377000000,0.000063969000000,0.000266636000000,0.000037895000000,0.000345253000000,0.000309302000000,0.000264265000000,0.016725289000000,0.017761930000000,0.000261500000000,0.000072265000000,0.000077006000000,0.000251228000000,0.000191969000000 +0.000367376000000,0.000045401000000,0.000061204000000,0.000263080000000,0.000038685000000,0.000395820000000,0.000269796000000,0.000271376000000,0.016788894000000,0.017808547000000,0.000260314000000,0.000073845000000,0.000079376000000,0.000191574000000,0.000157993000000 +0.000328660000000,0.000047376000000,0.000062783000000,0.000317598000000,0.000037500000000,0.000359870000000,0.000265450000000,0.000265450000000,0.017078474000000,0.017793536000000,0.000550290000000,0.000074240000000,0.000078191000000,0.000246487000000,0.000159574000000 +0.000367771000000,0.000046586000000,0.000062784000000,0.000262685000000,0.000037895000000,0.000448759000000,0.000415574000000,0.000300611000000,0.016706326000000,0.019206275000000,0.000306536000000,0.000071080000000,0.000078191000000,0.000219624000000,0.000158784000000 +0.000330636000000,0.000080167000000,0.000063179000000,0.000262685000000,0.000039870000000,0.000364216000000,0.000267031000000,0.000264265000000,0.016910573000000,0.018474226000000,0.000270981000000,0.000074636000000,0.000080166000000,0.000194734000000,0.000193154000000 +0.000330635000000,0.000046981000000,0.000099524000000,0.000263870000000,0.000038685000000,0.000376068000000,0.000300611000000,0.000265055000000,0.017598375000000,0.017513832000000,0.000263475000000,0.000109796000000,0.000078586000000,0.000261500000000,0.000157994000000 +0.000372907000000,0.000045006000000,0.000061994000000,0.000269401000000,0.000037499000000,0.000330635000000,0.000268215000000,0.000325499000000,0.016980103000000,0.017470770000000,0.000305351000000,0.000071080000000,0.000076611000000,0.000195525000000,0.000163919000000 +0.000396216000000,0.000044611000000,0.000062388000000,0.000306141000000,0.000038290000000,0.000375672000000,0.000264660000000,0.000267426000000,0.017688449000000,0.017533585000000,0.000262685000000,0.000071475000000,0.000078586000000,0.000230685000000,0.000193154000000 +0.000365401000000,0.000047771000000,0.000060413000000,0.000269401000000,0.000037895000000,0.000327870000000,0.000303771000000,0.000265845000000,0.016893585000000,0.017146030000000,0.000265055000000,0.000074240000000,0.000081352000000,0.000193944000000,0.000158784000000 +0.000328265000000,0.000047771000000,0.000062783000000,0.000268610000000,0.000038290000000,0.000336166000000,0.000263475000000,0.000314438000000,0.016586623000000,0.017037388000000,0.000342092000000,0.000072265000000,0.000078191000000,0.000317598000000,0.000155623000000 +0.000365795000000,0.000046191000000,0.000062388000000,0.000303772000000,0.000086882000000,0.000386339000000,0.000268610000000,0.000277697000000,0.017360943000000,0.017559659000000,0.000264660000000,0.000071870000000,0.000081352000000,0.000301796000000,0.000157993000000 +0.000347228000000,0.000066735000000,0.000062784000000,0.000351969000000,0.000054883000000,0.000346438000000,0.000303376000000,0.000312858000000,0.016587017000000,0.017070177000000,0.000309697000000,0.000071870000000,0.000078191000000,0.000234636000000,0.000193944000000 +0.000327870000000,0.000045006000000,0.000079376000000,0.000318784000000,0.000037500000000,0.000382783000000,0.000269401000000,0.000267821000000,0.017068202000000,0.017383461000000,0.000269401000000,0.000073055000000,0.000081352000000,0.000239376000000,0.000161154000000 +0.000346438000000,0.000045006000000,0.000065944000000,0.000276512000000,0.000037895000000,0.000362241000000,0.000266635000000,0.000265055000000,0.016948499000000,0.017868202000000,0.000266635000000,0.000073845000000,0.000076216000000,0.000195524000000,0.000158388000000 +0.000353549000000,0.000047377000000,0.000061994000000,0.000267426000000,0.000037895000000,0.000367771000000,0.000262685000000,0.000346438000000,0.016940203000000,0.017669881000000,0.000304562000000,0.000072265000000,0.000079772000000,0.000252809000000,0.000157204000000 +0.000388314000000,0.000045401000000,0.000060809000000,0.000526586000000,0.000037895000000,0.000330240000000,0.000267425000000,0.000263475000000,0.017961436000000,0.017742572000000,0.000263080000000,0.000071871000000,0.000080167000000,0.000237401000000,0.000234241000000 +0.000351178000000,0.000048562000000,0.000063179000000,0.000269796000000,0.000037895000000,0.000467722000000,0.000314042000000,0.000302982000000,0.016513141000000,0.016968252000000,0.000265845000000,0.000072660000000,0.000076216000000,0.000214882000000,0.000156018000000 +0.000493401000000,0.000046981000000,0.000062389000000,0.000318784000000,0.000038290000000,0.000331426000000,0.000270191000000,0.000261105000000,0.017402425000000,0.017902573000000,0.000265055000000,0.000073845000000,0.000080167000000,0.000210142000000,0.000160759000000 +0.000357895000000,0.000047771000000,0.000062389000000,0.000266240000000,0.000038290000000,0.000368561000000,0.000265450000000,0.000265845000000,0.016747808000000,0.017923115000000,0.000268216000000,0.000112561000000,0.000077401000000,0.000206586000000,0.000200660000000 +0.000382388000000,0.000118488000000,0.000062389000000,0.000265846000000,0.000040265000000,0.000333006000000,0.000264265000000,0.000301401000000,0.016886474000000,0.017082820000000,0.000301401000000,0.000073450000000,0.000077006000000,0.000212907000000,0.000159573000000 +0.000359080000000,0.000127968000000,0.000062784000000,0.000276907000000,0.000038290000000,0.000329450000000,0.000271376000000,0.000264661000000,0.016423463000000,0.017511066000000,0.000323919000000,0.000073055000000,0.000083722000000,0.000213697000000,0.000158784000000 +0.000437302000000,0.000129154000000,0.000062389000000,0.000285598000000,0.000037894000000,0.000404511000000,0.000308512000000,0.000269400000000,0.017427313000000,0.017331709000000,0.000264660000000,0.000072660000000,0.000082932000000,0.000373302000000,0.000158784000000 +0.000334586000000,0.000049747000000,0.000062784000000,0.000304167000000,0.000037894000000,0.000329846000000,0.000267820000000,0.000268215000000,0.016752943000000,0.017503165000000,0.000301401000000,0.000073450000000,0.000076611000000,0.000226339000000,0.000197104000000 +0.000394636000000,0.000047771000000,0.000061994000000,0.000280462000000,0.000038290000000,0.000377648000000,0.000263475000000,0.000266241000000,0.017144449000000,0.017966177000000,0.000261500000000,0.000072660000000,0.000078587000000,0.000214488000000,0.000157204000000 +0.000361451000000,0.000064364000000,0.000062784000000,0.000265451000000,0.000037895000000,0.000340512000000,0.000333796000000,0.000299425000000,0.018244301000000,0.017388203000000,0.000266241000000,0.000176956000000,0.000077401000000,0.000208562000000,0.000159574000000 +0.000369746000000,0.000045006000000,0.000082142000000,0.000299030000000,0.000039080000000,0.000583870000000,0.000262290000000,0.000262685000000,0.016957191000000,0.017328548000000,0.000312067000000,0.000075426000000,0.000112957000000,0.000202635000000,0.000161549000000 +0.000359475000000,0.000047377000000,0.000062389000000,0.000265450000000,0.000039475000000,0.000343277000000,0.000263475000000,0.000269401000000,0.017379115000000,0.017458523000000,0.000263080000000,0.000087278000000,0.000083722000000,0.000225945000000,0.000178141000000 +0.000362635000000,0.000045006000000,0.000063574000000,0.000270981000000,0.000039475000000,0.000410042000000,0.000266240000000,0.000302981000000,0.018673732000000,0.017296153000000,0.000339722000000,0.000073845000000,0.000078586000000,0.000271771000000,0.000159179000000 +0.000331425000000,0.000047771000000,0.000063179000000,0.000265450000000,0.000038289000000,0.000350784000000,0.000297845000000,0.000264660000000,0.016971413000000,0.017720844000000,0.000266240000000,0.000071475000000,0.000076611000000,0.000183673000000,0.000166685000000 +0.000359870000000,0.000045401000000,0.000063574000000,0.000265055000000,0.000037895000000,0.000413993000000,0.000345648000000,0.000261500000000,0.016999066000000,0.017260992000000,0.000274932000000,0.000071080000000,0.000080956000000,0.000247277000000,0.000160364000000 +0.000397401000000,0.000064364000000,0.000062784000000,0.000336957000000,0.000055277000000,0.000329845000000,0.000270191000000,0.000270191000000,0.016907017000000,0.017414671000000,0.000302981000000,0.000071080000000,0.000081747000000,0.000248858000000,0.000157204000000 +0.000329846000000,0.000047771000000,0.000112561000000,0.000268216000000,0.000038290000000,0.000554240000000,0.000265845000000,0.000266240000000,0.017120746000000,0.017524498000000,0.000265450000000,0.000071870000000,0.000126784000000,0.000218043000000,0.000158784000000 +0.000372117000000,0.000064364000000,0.000060809000000,0.000302191000000,0.000037894000000,0.000330241000000,0.000306537000000,0.000307327000000,0.016978918000000,0.017331313000000,0.000262289000000,0.000071080000000,0.000077006000000,0.000230685000000,0.000157203000000 +0.000340117000000,0.000046981000000,0.000062389000000,0.000266241000000,0.000037894000000,0.000412808000000,0.000263475000000,0.000262684000000,0.016353932000000,0.017358572000000,0.000301796000000,0.000074241000000,0.000076611000000,0.000229499000000,0.000258735000000 +0.000394635000000,0.000044611000000,0.000061599000000,0.000266635000000,0.000037895000000,0.000345253000000,0.000327080000000,0.000264661000000,0.017185141000000,0.017730326000000,0.000261105000000,0.000076611000000,0.000079376000000,0.000234635000000,0.000328661000000 +0.000368562000000,0.000045796000000,0.000061204000000,0.000306932000000,0.000038290000000,0.000421500000000,0.000482339000000,0.000345253000000,0.019482028000000,0.017858720000000,0.000270191000000,0.000073845000000,0.000082142000000,0.000191179000000,0.000182487000000 +0.000436907000000,0.000048167000000,0.000062389000000,0.000269401000000,0.000040660000000,0.000331425000000,0.000313253000000,0.000263870000000,0.017104943000000,0.017637881000000,0.000266240000000,0.000071475000000,0.000077796000000,0.000329055000000,0.000156019000000 +0.000334191000000,0.000047376000000,0.000060809000000,0.000269796000000,0.000038290000000,0.000396216000000,0.000265845000000,0.000262684000000,0.017499610000000,0.017881634000000,0.000260710000000,0.000074241000000,0.000118487000000,0.000180907000000,0.000157994000000 +0.000415968000000,0.000057648000000,0.000181697000000,0.000303376000000,0.000038290000000,0.000356709000000,0.000266635000000,0.000263475000000,0.018294473000000,0.017808153000000,0.000334981000000,0.000075426000000,0.000077796000000,0.000203030000000,0.000157599000000 +0.000371722000000,0.000047376000000,0.000092808000000,0.000267425000000,0.000037895000000,0.000332611000000,0.000265055000000,0.000260314000000,0.017821189000000,0.018051115000000,0.000264265000000,0.000073846000000,0.000077796000000,0.000302191000000,0.000157994000000 +0.000398586000000,0.000047771000000,0.000060019000000,0.000262289000000,0.000037895000000,0.000330241000000,0.000264265000000,0.000322339000000,0.017705832000000,0.017638671000000,0.000266635000000,0.000071871000000,0.000079772000000,0.000217648000000,0.000156018000000 +0.000340512000000,0.000047377000000,0.000062389000000,0.000339722000000,0.000037895000000,0.000332611000000,0.000299031000000,0.000308512000000,0.016462573000000,0.017488548000000,0.000261895000000,0.000072265000000,0.000079771000000,0.000212117000000,0.000159178000000 +0.000358290000000,0.000049351000000,0.000097549000000,0.000265845000000,0.000053303000000,0.000416364000000,0.000270191000000,0.000270191000000,0.016652203000000,0.017141684000000,0.000265055000000,0.000126784000000,0.000076611000000,0.000256364000000,0.000157598000000 +0.000741895000000,0.000045006000000,0.000060808000000,0.000338537000000,0.000068710000000,0.000341698000000,0.000263475000000,0.000267030000000,0.017061881000000,0.017626029000000,0.000303376000000,0.000071870000000,0.000117302000000,0.000238191000000,0.000161154000000 +0.000398981000000,0.000047771000000,0.000060413000000,0.000265055000000,0.000038685000000,0.000417944000000,0.000418734000000,0.000297846000000,0.016902277000000,0.017287857000000,0.000267821000000,0.000073450000000,0.000093599000000,0.000229105000000,0.000234635000000 +0.000349598000000,0.000047772000000,0.000061204000000,0.000262290000000,0.000037895000000,0.000332611000000,0.000266635000000,0.000299030000000,0.017056350000000,0.019084596000000,0.000268216000000,0.000071870000000,0.000079772000000,0.000251228000000,0.000159969000000 +0.000433746000000,0.000061204000000,0.000060018000000,0.000263870000000,0.000038685000000,0.000427425000000,0.000374092000000,0.000263080000000,0.016751758000000,0.017898227000000,0.000304166000000,0.000071870000000,0.000086092000000,0.000214092000000,0.000157204000000 +0.000348808000000,0.000045006000000,0.000063179000000,0.000265055000000,0.000037895000000,0.000360660000000,0.000263870000000,0.000261105000000,0.016764400000000,0.017419807000000,0.000270586000000,0.000071871000000,0.000077796000000,0.000204216000000,0.000206586000000 +0.000370142000000,0.000049351000000,0.000061599000000,0.000351574000000,0.000037500000000,0.000366191000000,0.000265055000000,0.000299426000000,0.017468795000000,0.017495659000000,0.000271376000000,0.000093599000000,0.000080561000000,0.000302586000000,0.000156808000000 +0.000343277000000,0.000047377000000,0.000062389000000,0.000267031000000,0.000092809000000,0.000329845000000,0.000337747000000,0.000260709000000,0.016825635000000,0.017695165000000,0.000279673000000,0.000074240000000,0.000079376000000,0.000243721000000,0.000163524000000 +0.000387129000000,0.000045006000000,0.000061994000000,0.000265450000000,0.000051327000000,0.000350388000000,0.000262290000000,0.000334981000000,0.017033042000000,0.017725980000000,0.000273746000000,0.000074240000000,0.000078191000000,0.000192364000000,0.000158388000000 +0.000325895000000,0.000045006000000,0.000063179000000,0.000306537000000,0.000037895000000,0.000369746000000,0.000302191000000,0.000260315000000,0.016858820000000,0.017425338000000,0.000300216000000,0.000073450000000,0.000077796000000,0.000304166000000,0.000203821000000 +0.000336957000000,0.000084117000000,0.000060808000000,0.000265845000000,0.000037895000000,0.000327870000000,0.000266636000000,0.000264661000000,0.016832351000000,0.017498424000000,0.000261500000000,0.000073450000000,0.000076611000000,0.000214092000000,0.000158389000000 +0.000335771000000,0.000047772000000,0.000063178000000,0.000263080000000,0.000037895000000,0.000397401000000,0.000262685000000,0.000306932000000,0.017246375000000,0.017291017000000,0.000261895000000,0.000074635000000,0.000078191000000,0.000213697000000,0.000157994000000 +0.000357895000000,0.000047771000000,0.000063178000000,0.000266635000000,0.000038685000000,0.000361450000000,0.000351178000000,0.000263080000000,0.016770721000000,0.017437190000000,0.000410043000000,0.000073451000000,0.000113746000000,0.000258734000000,0.000159969000000 +0.000402142000000,0.000045796000000,0.000060809000000,0.000265450000000,0.000037894000000,0.000646684000000,0.000262685000000,0.000265845000000,0.017068992000000,0.020594125000000,0.000312858000000,0.000088463000000,0.000081747000000,0.000225549000000,0.000408067000000 +0.000356315000000,0.000047772000000,0.000062389000000,0.000311278000000,0.000038289000000,0.000366191000000,0.000262685000000,0.000263475000000,0.017389387000000,0.017728350000000,0.000300611000000,0.000074241000000,0.000076611000000,0.000300216000000,0.000173401000000 +0.000366981000000,0.000047772000000,0.000061993000000,0.000265055000000,0.000037894000000,0.000329845000000,0.000300611000000,0.000266635000000,0.017439955000000,0.017607856000000,0.000265451000000,0.000071475000000,0.000078192000000,0.000235425000000,0.000193944000000 +0.000330240000000,0.000047377000000,0.000061993000000,0.000267030000000,0.000037894000000,0.000370537000000,0.000264265000000,0.000288364000000,0.017069388000000,0.018766176000000,0.000270191000000,0.000073846000000,0.000078587000000,0.000237401000000,0.000156809000000 +0.000472858000000,0.000044611000000,0.000062783000000,0.000336166000000,0.000039080000000,0.000359870000000,0.000266636000000,0.000263870000000,0.017146819000000,0.018138819000000,0.000306932000000,0.000073451000000,0.000080166000000,0.000191573000000,0.000162339000000 +0.000498931000000,0.000045006000000,0.000060808000000,0.000265450000000,0.000037895000000,0.000453499000000,0.000267425000000,0.000266240000000,0.016838672000000,0.018393634000000,0.000261894000000,0.000074240000000,0.000097154000000,0.000262685000000,0.000156413000000 +0.000354339000000,0.000047772000000,0.000093993000000,0.000301006000000,0.000037895000000,0.000327870000000,0.000284018000000,0.000347228000000,0.017271659000000,0.017212795000000,0.000265451000000,0.000089253000000,0.000077796000000,0.000246093000000,0.000161154000000 +0.000337747000000,0.000045402000000,0.000060808000000,0.000263080000000,0.000039080000000,0.000328660000000,0.000306537000000,0.000272166000000,0.016816548000000,0.017381487000000,0.000297055000000,0.000073846000000,0.000079772000000,0.000192759000000,0.000161154000000 +0.000543178000000,0.000046981000000,0.000063179000000,0.000275722000000,0.000038290000000,0.000370141000000,0.000264660000000,0.000265055000000,0.016456647000000,0.017872943000000,0.000270981000000,0.000073846000000,0.000078586000000,0.000293895000000,0.000158389000000 +0.000458636000000,0.000045006000000,0.000061994000000,0.000334981000000,0.000037895000000,0.000336561000000,0.000263080000000,0.000313253000000,0.017010918000000,0.017609832000000,0.000267030000000,0.000071475000000,0.000078981000000,0.000184068000000,0.000156808000000 +0.000351573000000,0.000048167000000,0.000062784000000,0.000265845000000,0.000037500000000,0.000369746000000,0.000315623000000,0.000268215000000,0.016788894000000,0.018318967000000,0.000263475000000,0.000074636000000,0.000077401000000,0.000252018000000,0.000156413000000 +0.000393846000000,0.000047377000000,0.000103080000000,0.000266241000000,0.000039081000000,0.000330636000000,0.000266636000000,0.000264265000000,0.016881734000000,0.017722425000000,0.000260709000000,0.000073846000000,0.000079772000000,0.000228315000000,0.000157994000000 +0.000349203000000,0.000047771000000,0.000079376000000,0.000354734000000,0.000037895000000,0.000370142000000,0.000301401000000,0.000279278000000,0.017205684000000,0.017338029000000,0.000334586000000,0.000073055000000,0.000080167000000,0.000257549000000,0.000164710000000 +0.000355129000000,0.000046982000000,0.000061204000000,0.000272956000000,0.000076611000000,0.000331425000000,0.000271772000000,0.000266635000000,0.016918080000000,0.017571116000000,0.000263080000000,0.000073845000000,0.000080166000000,0.000235425000000,0.000159574000000 +0.000371722000000,0.000046981000000,0.000062389000000,0.000334586000000,0.000037895000000,0.000328660000000,0.000267821000000,0.000299030000000,0.016726079000000,0.017434820000000,0.000264265000000,0.000072265000000,0.000077401000000,0.000231870000000,0.000161944000000 +0.000355524000000,0.000045006000000,0.000060809000000,0.000267030000000,0.000037500000000,0.000402932000000,0.000357894000000,0.000266240000000,0.016761240000000,0.017451412000000,0.000282043000000,0.000074241000000,0.000077401000000,0.000247278000000,0.000157993000000 +0.000368166000000,0.000045006000000,0.000060808000000,0.000265450000000,0.000038290000000,0.000361845000000,0.000265450000000,0.000263080000000,0.016705141000000,0.017226227000000,0.000265450000000,0.000072661000000,0.000079771000000,0.000178536000000,0.000156413000000 +0.000376068000000,0.000044611000000,0.000063179000000,0.000299426000000,0.000037895000000,0.000404117000000,0.000278487000000,0.000459425000000,0.016868301000000,0.017307610000000,0.000280858000000,0.000074636000000,0.000077796000000,0.000272167000000,0.000161944000000 +0.000347228000000,0.000047377000000,0.000063179000000,0.000268216000000,0.000038289000000,0.000353944000000,0.000266241000000,0.000267030000000,0.017294178000000,0.018350572000000,0.000262290000000,0.000073055000000,0.000076611000000,0.000227919000000,0.000159178000000 +0.000376462000000,0.000047377000000,0.000063574000000,0.000265845000000,0.000037499000000,0.000390290000000,0.000268611000000,0.000299031000000,0.016481141000000,0.017154326000000,0.000266635000000,0.000072266000000,0.000078981000000,0.000218833000000,0.000157598000000 +0.000384363000000,0.000081351000000,0.000063574000000,0.000270981000000,0.000037895000000,0.000328661000000,0.000385549000000,0.000263080000000,0.017292993000000,0.017358177000000,0.000310487000000,0.000074636000000,0.000080957000000,0.000267821000000,0.000156413000000 +0.000353944000000,0.000047772000000,0.000063179000000,0.000269006000000,0.000037895000000,0.000438487000000,0.000383574000000,0.000267030000000,0.016570029000000,0.017496844000000,0.000269006000000,0.000072660000000,0.000079376000000,0.000218833000000,0.000158784000000 +0.000387129000000,0.000045401000000,0.000063179000000,0.000303376000000,0.000037895000000,0.000358289000000,0.000306932000000,0.000336166000000,0.016954029000000,0.016979709000000,0.000265845000000,0.000071870000000,0.000078191000000,0.000232265000000,0.000159969000000 +0.000375277000000,0.000047377000000,0.000061203000000,0.000267821000000,0.000037895000000,0.000396611000000,0.000265450000000,0.000270586000000,0.016951264000000,0.017515017000000,0.000310883000000,0.000071080000000,0.000077006000000,0.000191179000000,0.000156808000000 +0.000350388000000,0.000046981000000,0.000063179000000,0.000270981000000,0.000037895000000,0.000350784000000,0.000265451000000,0.000370932000000,0.016938623000000,0.017760745000000,0.000262685000000,0.000126784000000,0.000165500000000,0.000244512000000,0.000156018000000 +0.000382389000000,0.000046981000000,0.000062389000000,0.000656957000000,0.000037895000000,0.000335376000000,0.000294684000000,0.000269006000000,0.016625734000000,0.017686079000000,0.000266241000000,0.000073846000000,0.000097944000000,0.000251228000000,0.000159969000000 +0.000351179000000,0.000045401000000,0.000062389000000,0.000279672000000,0.000037895000000,0.000348808000000,0.000265450000000,0.000265055000000,0.017015264000000,0.017688054000000,0.000263080000000,0.000080166000000,0.000081352000000,0.000253203000000,0.000182092000000 +0.000349993000000,0.000045401000000,0.000065550000000,0.000265450000000,0.000041055000000,0.000349993000000,0.000308907000000,0.000333005000000,0.018619609000000,0.017239264000000,0.000263475000000,0.000074241000000,0.000077401000000,0.000673154000000,0.000160759000000 +0.000355524000000,0.000050537000000,0.000069895000000,0.000268611000000,0.000037500000000,0.000386339000000,0.000276117000000,0.000262685000000,0.018140400000000,0.017172894000000,0.000303771000000,0.000071476000000,0.000077797000000,0.000504462000000,0.000157599000000 +0.000355919000000,0.000047377000000,0.000060414000000,0.000302191000000,0.000037895000000,0.000332611000000,0.000265055000000,0.000267821000000,0.016637586000000,0.017653288000000,0.000265451000000,0.000073846000000,0.000094784000000,0.000305747000000,0.000172611000000 +0.000349598000000,0.000045401000000,0.000063969000000,0.000265450000000,0.000037895000000,0.000390290000000,0.000309698000000,0.000263080000000,0.016675907000000,0.017494474000000,0.000263870000000,0.000089648000000,0.000076216000000,0.000257549000000,0.000160759000000 +0.000416759000000,0.000047377000000,0.000068314000000,0.000265845000000,0.000037895000000,0.000332215000000,0.000262685000000,0.000263870000000,0.017183955000000,0.017379906000000,0.000314043000000,0.000072266000000,0.000078981000000,0.000210141000000,0.000164315000000 +0.000352759000000,0.000047772000000,0.000061994000000,0.000277302000000,0.000037895000000,0.000377253000000,0.000265451000000,0.000355130000000,0.017114820000000,0.018070078000000,0.000269005000000,0.000074635000000,0.000079376000000,0.000281648000000,0.000166289000000 +0.000375278000000,0.000047377000000,0.000060808000000,0.000266635000000,0.000076611000000,0.000350389000000,0.000278883000000,0.000265055000000,0.017701091000000,0.017314721000000,0.000267425000000,0.000073055000000,0.000078191000000,0.000231475000000,0.000163130000000 +0.000329451000000,0.000047376000000,0.000063574000000,0.000309697000000,0.000064759000000,0.000422684000000,0.000264266000000,0.000267821000000,0.016869091000000,0.017426128000000,0.000262290000000,0.000073846000000,0.000077796000000,0.000256759000000,0.000157203000000 +0.000330240000000,0.000066339000000,0.000062784000000,0.000273351000000,0.000038685000000,0.000328265000000,0.000300216000000,0.000314043000000,0.016782178000000,0.017189486000000,0.000262685000000,0.000071475000000,0.000078586000000,0.000330636000000,0.000157994000000 +0.000325895000000,0.000047376000000,0.000061204000000,0.000265056000000,0.000038290000000,0.000359475000000,0.000265845000000,0.000261895000000,0.017122721000000,0.017637486000000,0.000350784000000,0.000144562000000,0.000079772000000,0.000191968000000,0.000160364000000 +0.000431772000000,0.000045796000000,0.000061599000000,0.000299820000000,0.000037894000000,0.000333006000000,0.000262685000000,0.000333006000000,0.017079659000000,0.018248250000000,0.000263870000000,0.000074240000000,0.000081746000000,0.000248857000000,0.000193945000000 +0.000506833000000,0.000047771000000,0.000062389000000,0.000267821000000,0.000037894000000,0.000332611000000,0.000302981000000,0.000263870000000,0.019657830000000,0.017911658000000,0.000262685000000,0.000073845000000,0.000085302000000,0.000186438000000,0.000157994000000 +0.000447179000000,0.000047771000000,0.000062784000000,0.000270191000000,0.000037894000000,0.000383179000000,0.000272166000000,0.000262685000000,0.018155017000000,0.018225733000000,0.000300611000000,0.000071475000000,0.000080167000000,0.000234240000000,0.000160363000000 +0.000356709000000,0.000047772000000,0.000063179000000,0.000280858000000,0.000037895000000,0.000385154000000,0.000265451000000,0.000338537000000,0.016545141000000,0.017507906000000,0.000263475000000,0.000071870000000,0.000077796000000,0.000193549000000,0.000165105000000 +0.000374883000000,0.000045006000000,0.000062784000000,0.000263080000000,0.000039080000000,0.000365006000000,0.000363426000000,0.000267425000000,0.017992646000000,0.017484597000000,0.000263080000000,0.000072660000000,0.000079376000000,0.000295080000000,0.000159179000000 +0.000329450000000,0.000045401000000,0.000061204000000,0.000307327000000,0.000037895000000,0.000334586000000,0.000266240000000,0.000266636000000,0.017638276000000,0.017980794000000,0.000320759000000,0.000145747000000,0.000076611000000,0.000259129000000,0.000149302000000 +0.000431376000000,0.000045401000000,0.000060414000000,0.000265055000000,0.000039080000000,0.000420314000000,0.000304166000000,0.000297450000000,0.016874623000000,0.017300893000000,0.000269006000000,0.000076216000000,0.000078586000000,0.000182487000000,0.000155623000000 +0.000365006000000,0.000047771000000,0.000061204000000,0.000270586000000,0.000037894000000,0.000366191000000,0.000266241000000,0.000264265000000,0.016980499000000,0.018167659000000,0.000300215000000,0.000071871000000,0.000113351000000,0.000266635000000,0.000150092000000 +0.000331426000000,0.000044611000000,0.000127969000000,0.000337352000000,0.000038290000000,0.000366981000000,0.000268216000000,0.000301400000000,0.016877387000000,0.017795905000000,0.000261105000000,0.000073846000000,0.000077796000000,0.000190388000000,0.000188413000000 +0.000359870000000,0.000045006000000,0.000063179000000,0.000333400000000,0.000039080000000,0.000348018000000,0.000375277000000,0.000267426000000,0.016828400000000,0.018221782000000,0.000264265000000,0.000073450000000,0.000112957000000,0.000245302000000,0.000148907000000 +0.000367376000000,0.000047376000000,0.000060808000000,0.000334190000000,0.000038290000000,0.000358290000000,0.000268216000000,0.000263870000000,0.016961536000000,0.018424844000000,0.000301796000000,0.000072660000000,0.000079376000000,0.000536068000000,0.000147722000000 +0.000334981000000,0.000047376000000,0.000064364000000,0.000262685000000,0.000037895000000,0.000353549000000,0.000336167000000,0.000334981000000,0.017036202000000,0.017358177000000,0.000269796000000,0.000071475000000,0.000076216000000,0.000506438000000,0.000149303000000 +0.000335771000000,0.000045401000000,0.000060414000000,0.000300216000000,0.000038290000000,0.000327474000000,0.000266635000000,0.000263475000000,0.017311166000000,0.017057931000000,0.000268611000000,0.000073055000000,0.000079377000000,0.000216857000000,0.000186043000000 +0.000351179000000,0.000045401000000,0.000063179000000,0.000265846000000,0.000037895000000,0.000365006000000,0.000263080000000,0.000434537000000,0.017630770000000,0.017618128000000,0.000336166000000,0.000073055000000,0.000082142000000,0.000193945000000,0.000148117000000 +0.000329450000000,0.000045006000000,0.000061599000000,0.000272561000000,0.000037895000000,0.000358289000000,0.000318389000000,0.000264661000000,0.017020795000000,0.017006178000000,0.000266636000000,0.000071870000000,0.000079376000000,0.000287968000000,0.000149302000000 +0.000364216000000,0.000046982000000,0.000065154000000,0.000310883000000,0.000056858000000,0.000382389000000,0.000282438000000,0.000265055000000,0.016464154000000,0.017493684000000,0.000263870000000,0.000071080000000,0.000115327000000,0.000213303000000,0.000153648000000 +0.000330241000000,0.000045006000000,0.000063574000000,0.000262290000000,0.000137846000000,0.000368561000000,0.000316414000000,0.000360660000000,0.016924795000000,0.018274720000000,0.000303376000000,0.000093994000000,0.000079772000000,0.000197500000000,0.000185648000000 +0.000389895000000,0.000047376000000,0.000061598000000,0.000264265000000,0.000075426000000,0.000378833000000,0.000264265000000,0.000264265000000,0.016867512000000,0.017281536000000,0.000264661000000,0.000071870000000,0.000077797000000,0.000252809000000,0.000149302000000 +0.000326290000000,0.000046981000000,0.000062388000000,0.000281253000000,0.000051722000000,0.000329450000000,0.000264265000000,0.000260709000000,0.017495264000000,0.017731511000000,0.000301401000000,0.000073451000000,0.000078587000000,0.000212116000000,0.000152068000000 +0.000331821000000,0.000047376000000,0.000060414000000,0.000312067000000,0.000037895000000,0.000325895000000,0.000314043000000,0.000264660000000,0.017278375000000,0.019441337000000,0.000267820000000,0.000072266000000,0.000077401000000,0.000229894000000,0.000148512000000 +0.000358685000000,0.000045006000000,0.000063179000000,0.000346437000000,0.000038290000000,0.000356710000000,0.000266241000000,0.000261499000000,0.017175264000000,0.018245881000000,0.000263870000000,0.000073450000000,0.000078981000000,0.000260315000000,0.000187228000000 +0.000358290000000,0.000083327000000,0.000058043000000,0.000265451000000,0.000040266000000,0.000338537000000,0.000263080000000,0.000412413000000,0.016828005000000,0.017996596000000,0.000263870000000,0.000074635000000,0.000114537000000,0.000193154000000,0.000148512000000 +0.000356314000000,0.000047376000000,0.000057253000000,0.000270586000000,0.000038685000000,0.000362240000000,0.000285204000000,0.000337747000000,0.016560944000000,0.018664645000000,0.000264660000000,0.000071870000000,0.000076611000000,0.000230685000000,0.000148907000000 +0.000334981000000,0.000047377000000,0.000059624000000,0.000317993000000,0.000037895000000,0.000355525000000,0.000270191000000,0.000302981000000,0.017482621000000,0.018366374000000,0.000381994000000,0.000088857000000,0.000078191000000,0.000268611000000,0.000148907000000 +0.000347228000000,0.000045401000000,0.000056858000000,0.000274142000000,0.000037895000000,0.000369352000000,0.000301006000000,0.000266240000000,0.017004598000000,0.017509486000000,0.000266636000000,0.000072265000000,0.000082142000000,0.000246093000000,0.000185648000000 +0.000353549000000,0.000045006000000,0.000057648000000,0.000308117000000,0.000037500000000,0.000346833000000,0.000266635000000,0.000267820000000,0.016677882000000,0.017244005000000,0.000368956000000,0.000073846000000,0.000080166000000,0.000214093000000,0.000150092000000 +0.000432956000000,0.000045006000000,0.000058833000000,0.000280068000000,0.000037895000000,0.000402142000000,0.000264660000000,0.000263475000000,0.017009338000000,0.017322622000000,0.000280858000000,0.000073451000000,0.000082142000000,0.000242931000000,0.000148907000000 +0.000376463000000,0.000047376000000,0.000057648000000,0.000272561000000,0.000039870000000,0.000399376000000,0.000299821000000,0.000265846000000,0.017450227000000,0.017347510000000,0.000263870000000,0.000071870000000,0.000082142000000,0.000247277000000,0.000150488000000 +0.000347228000000,0.000047376000000,0.000058833000000,0.000262685000000,0.000038290000000,0.000408857000000,0.000265450000000,0.000299426000000,0.016838277000000,0.017321042000000,0.000283228000000,0.000071080000000,0.000079771000000,0.000188019000000,0.000147327000000 +0.000359474000000,0.000045006000000,0.000059623000000,0.000274537000000,0.000037895000000,0.000351969000000,0.000262684000000,0.000261105000000,0.017318277000000,0.017424548000000,0.000263870000000,0.000119277000000,0.000083327000000,0.000259920000000,0.000149697000000 +0.000504463000000,0.000046981000000,0.000057648000000,0.000302191000000,0.000037895000000,0.000333796000000,0.000302981000000,0.000266241000000,0.016785339000000,0.017487758000000,0.000411228000000,0.000074635000000,0.000079771000000,0.000203030000000,0.000150487000000 +0.000328265000000,0.000047376000000,0.000061204000000,0.000265845000000,0.000037895000000,0.000344857000000,0.000263080000000,0.000314438000000,0.016344054000000,0.019019016000000,0.000264265000000,0.000075030000000,0.000076611000000,0.000242536000000,0.000147327000000 +0.000394635000000,0.000045006000000,0.000060018000000,0.000267030000000,0.000037895000000,0.000372512000000,0.000264660000000,0.000263870000000,0.017526869000000,0.017643412000000,0.000263870000000,0.000071475000000,0.000077797000000,0.000259919000000,0.000183672000000 +0.000335772000000,0.000067525000000,0.000057253000000,0.000410833000000,0.000058438000000,0.000338932000000,0.000265450000000,0.000264265000000,0.016761240000000,0.017908103000000,0.000691326000000,0.000074240000000,0.000116118000000,0.000205006000000,0.000150092000000 +0.000426636000000,0.000044611000000,0.000057648000000,0.000356709000000,0.000090438000000,0.000365006000000,0.000262685000000,0.000299821000000,0.016983265000000,0.017602325000000,0.000312067000000,0.000071080000000,0.000082537000000,0.000268611000000,0.000147327000000 +0.000354339000000,0.000047376000000,0.000060018000000,0.000310882000000,0.000041450000000,0.000368166000000,0.000377647000000,0.000263475000000,0.017545042000000,0.017268894000000,0.000261105000000,0.000073450000000,0.000075820000000,0.000204611000000,0.000149302000000 +0.000362635000000,0.000045401000000,0.000057253000000,0.000263870000000,0.000041451000000,0.000357499000000,0.000285204000000,0.000337351000000,0.016623758000000,0.017746128000000,0.000274537000000,0.000073450000000,0.000079377000000,0.000267820000000,0.000185648000000 +0.000356709000000,0.000045006000000,0.000057253000000,0.000272562000000,0.000054093000000,0.000364611000000,0.000267820000000,0.000266635000000,0.016760055000000,0.017764696000000,0.000265450000000,0.000073846000000,0.000077796000000,0.000201846000000,0.000150093000000 +0.000355920000000,0.000045006000000,0.000058438000000,0.000263870000000,0.000040265000000,0.000367376000000,0.000284413000000,0.000262290000000,0.016961536000000,0.017551758000000,0.000264660000000,0.000073056000000,0.000078587000000,0.000261499000000,0.000153648000000 +0.000350389000000,0.000045401000000,0.000057253000000,0.000268215000000,0.000040265000000,0.000380413000000,0.000280858000000,0.000319969000000,0.016978129000000,0.017427709000000,0.000283623000000,0.000078982000000,0.000117303000000,0.000237401000000,0.000152068000000 +0.000334981000000,0.000066340000000,0.000058833000000,0.000300611000000,0.000040660000000,0.000357104000000,0.000313648000000,0.000267031000000,0.017543066000000,0.018030572000000,0.000263870000000,0.000071475000000,0.000079772000000,0.000196709000000,0.000274537000000 +0.000376067000000,0.000077006000000,0.000133499000000,0.000265451000000,0.000040265000000,0.000372907000000,0.000267425000000,0.000263870000000,0.016490622000000,0.017601140000000,0.000261895000000,0.000144956000000,0.000077796000000,0.000257549000000,0.000166290000000 +0.000354339000000,0.000045006000000,0.000058438000000,0.000299821000000,0.000040265000000,0.000345648000000,0.000262290000000,0.000265846000000,0.016434524000000,0.017496449000000,0.000335376000000,0.000071871000000,0.000078586000000,0.000208167000000,0.000148907000000 +0.000436512000000,0.000047376000000,0.000057253000000,0.000310487000000,0.000040265000000,0.000366191000000,0.000303771000000,0.000263870000000,0.017098228000000,0.017369239000000,0.000261895000000,0.000073845000000,0.000079771000000,0.000284018000000,0.000252808000000 +0.000336957000000,0.000049747000000,0.000059228000000,0.000265845000000,0.000040265000000,0.000330240000000,0.000262685000000,0.000307327000000,0.016620203000000,0.017943264000000,0.000263475000000,0.000071475000000,0.000079772000000,0.000253994000000,0.000148117000000 +0.000378042000000,0.000045006000000,0.000059623000000,0.000266240000000,0.000041055000000,0.000348808000000,0.000267031000000,0.000263080000000,0.016810228000000,0.017162622000000,0.000298635000000,0.000073846000000,0.000080561000000,0.000212907000000,0.000155623000000 +0.000358684000000,0.000045006000000,0.000057648000000,0.000262289000000,0.000043030000000,0.000365006000000,0.000283228000000,0.000283623000000,0.017235314000000,0.017205288000000,0.000260710000000,0.000074241000000,0.000076216000000,0.000236215000000,0.000202241000000 +0.000418339000000,0.000045401000000,0.000059623000000,0.000270191000000,0.000094388000000,0.000348808000000,0.000265845000000,0.000354339000000,0.016450327000000,0.017530819000000,0.000271771000000,0.000128759000000,0.000077796000000,0.000209352000000,0.000150092000000 +0.000355524000000,0.000044611000000,0.000077006000000,0.000306141000000,0.000040266000000,0.000365006000000,0.000284018000000,0.000275722000000,0.018094177000000,0.017532399000000,0.000268216000000,0.000073450000000,0.000075821000000,0.000228709000000,0.000150487000000 +0.000365796000000,0.000045006000000,0.000063179000000,0.000264660000000,0.000073451000000,0.000352363000000,0.000263870000000,0.000298635000000,0.017412696000000,0.017459709000000,0.000266240000000,0.000072265000000,0.000076216000000,0.000237006000000,0.000148117000000 +0.000330240000000,0.000047376000000,0.000057253000000,0.000284018000000,0.000053698000000,0.000455870000000,0.000263475000000,0.000263080000000,0.016432549000000,0.017981189000000,0.000304166000000,0.000073451000000,0.000079377000000,0.000201846000000,0.000197895000000 +0.000383968000000,0.000045006000000,0.000059228000000,0.000301006000000,0.000051722000000,0.000999869000000,0.000311672000000,0.000263475000000,0.017204103000000,0.018411412000000,0.000265845000000,0.000073845000000,0.000078586000000,0.000246487000000,0.000150093000000 +0.000329055000000,0.000047771000000,0.000057648000000,0.000265450000000,0.000037500000000,0.000351178000000,0.000270586000000,0.000302981000000,0.016883313000000,0.017979214000000,0.000262684000000,0.000074636000000,0.000077401000000,0.000224364000000,0.000153648000000 +0.000331030000000,0.000047376000000,0.000057253000000,0.000299030000000,0.000038290000000,0.000331426000000,0.000265845000000,0.000263080000000,0.017084005000000,0.016948894000000,0.000351969000000,0.000074240000000,0.000077401000000,0.000241747000000,0.000150093000000 +0.000349598000000,0.000047376000000,0.000057253000000,0.000262290000000,0.000037895000000,0.000398586000000,0.000308117000000,0.000268216000000,0.017399659000000,0.017002623000000,0.000263475000000,0.000075426000000,0.000079376000000,0.000235425000000,0.000182488000000 +0.000339722000000,0.000047377000000,0.000057253000000,0.000265845000000,0.000037895000000,0.000356710000000,0.000264265000000,0.000314043000000,0.017126276000000,0.017675411000000,0.000274536000000,0.000073846000000,0.000077796000000,0.000221599000000,0.000149698000000 +0.000538833000000,0.000047376000000,0.000058043000000,0.000298635000000,0.000038290000000,0.000329450000000,0.000263870000000,0.000278092000000,0.017598375000000,0.017731906000000,0.000262290000000,0.000074241000000,0.000078191000000,0.000226339000000,0.000148117000000 +0.000333401000000,0.000047376000000,0.000059623000000,0.000264660000000,0.000037894000000,0.000381993000000,0.000263475000000,0.000346042000000,0.017445486000000,0.017506326000000,0.000266635000000,0.000073845000000,0.000092413000000,0.000178932000000,0.000148117000000 +0.000385154000000,0.000045006000000,0.000057252000000,0.000272166000000,0.000038290000000,0.000333006000000,0.000264265000000,0.000265845000000,0.017146820000000,0.017804992000000,0.000336562000000,0.000073845000000,0.000077796000000,0.000246883000000,0.000189203000000 +0.000329450000000,0.000117697000000,0.000059228000000,0.000281253000000,0.000037895000000,0.000391475000000,0.000306142000000,0.000261500000000,0.018538226000000,0.017420202000000,0.000265450000000,0.000124808000000,0.000077401000000,0.000193154000000,0.000151278000000 +0.000400561000000,0.000045401000000,0.000057648000000,0.000269006000000,0.000037895000000,0.000347228000000,0.000265845000000,0.000282438000000,0.019329929000000,0.017807362000000,0.000265055000000,0.000071870000000,0.000077796000000,0.000269796000000,0.000150487000000 +0.000349203000000,0.000047377000000,0.000057253000000,0.000299425000000,0.000038290000000,0.000436117000000,0.000262685000000,0.000274537000000,0.018230078000000,0.017528449000000,0.000340116000000,0.000071871000000,0.000079772000000,0.000252018000000,0.000150092000000 +0.000369352000000,0.000047377000000,0.000109796000000,0.000270191000000,0.000039080000000,0.000372117000000,0.000439672000000,0.000305746000000,0.016848153000000,0.017931807000000,0.000271771000000,0.000071871000000,0.000115722000000,0.000191574000000,0.000186833000000 +0.000337351000000,0.000047377000000,0.000062389000000,0.000263475000000,0.000038290000000,0.000368956000000,0.000318784000000,0.000265450000000,0.016852499000000,0.018445782000000,0.000283623000000,0.000074240000000,0.000080562000000,0.000336956000000,0.000152068000000 +0.000329450000000,0.000044610000000,0.000057648000000,0.000301401000000,0.000037895000000,0.000359080000000,0.000301006000000,0.000263870000000,0.017017635000000,0.017874128000000,0.000261500000000,0.000073450000000,0.000077006000000,0.000187624000000,0.000147326000000 +0.000655771000000,0.000046982000000,0.000059623000000,0.000263080000000,0.000037895000000,0.000374093000000,0.000266240000000,0.000301006000000,0.017007759000000,0.018931312000000,0.000264265000000,0.000087672000000,0.000078586000000,0.000235030000000,0.000150882000000 +0.000376462000000,0.000066339000000,0.000062784000000,0.000269401000000,0.000037895000000,0.000900709000000,0.000264660000000,0.000270587000000,0.016859215000000,0.017433634000000,0.000297450000000,0.000071870000000,0.000075426000000,0.000246487000000,0.000150487000000 +0.000342487000000,0.000058043000000,0.000059228000000,0.000269006000000,0.000037895000000,0.000329845000000,0.000353944000000,0.000267426000000,0.017160647000000,0.017289436000000,0.000302191000000,0.000073846000000,0.000076216000000,0.000214488000000,0.000151672000000 +0.000363821000000,0.000055278000000,0.000060019000000,0.000262290000000,0.000037895000000,0.000373697000000,0.000269796000000,0.000288364000000,0.016382771000000,0.017648153000000,0.000267426000000,0.000088858000000,0.000096760000000,0.000227919000000,0.000148907000000 +0.000355129000000,0.000045401000000,0.000058833000000,0.000299031000000,0.000038290000000,0.000338142000000,0.000306536000000,0.000265450000000,0.017000252000000,0.017317486000000,0.000281648000000,0.000076216000000,0.000078586000000,0.000310487000000,0.000147327000000 +0.000410042000000,0.000047376000000,0.000057648000000,0.000270191000000,0.000054488000000,0.000329055000000,0.000270586000000,0.000296265000000,0.017024746000000,0.017350276000000,0.000265055000000,0.000145352000000,0.000078981000000,0.000257549000000,0.000165500000000 +0.000332611000000,0.000045401000000,0.000060018000000,0.000271771000000,0.000043031000000,0.000361055000000,0.000269006000000,0.000265055000000,0.016386327000000,0.017715708000000,0.000304956000000,0.000073846000000,0.000078981000000,0.000191969000000,0.000148907000000 +0.000334981000000,0.000047772000000,0.000059229000000,0.000299821000000,0.000037895000000,0.000326290000000,0.000339327000000,0.000267031000000,0.016993141000000,0.017669091000000,0.000263080000000,0.000071870000000,0.000077796000000,0.000268216000000,0.000150093000000 +0.000350388000000,0.000047376000000,0.000060019000000,0.000265450000000,0.000037500000000,0.000401351000000,0.000495771000000,0.000410043000000,0.016824054000000,0.017868597000000,0.000269795000000,0.000072265000000,0.000076610000000,0.000231475000000,0.000151673000000 +0.000358685000000,0.000080561000000,0.000057648000000,0.000266635000000,0.000037895000000,0.000357895000000,0.000397006000000,0.000278093000000,0.016840252000000,0.017481042000000,0.000506833000000,0.000075821000000,0.000077796000000,0.000213302000000,0.000151277000000 +0.000349993000000,0.000062784000000,0.000082537000000,0.000312463000000,0.000037895000000,0.000382389000000,0.000269796000000,0.000314043000000,0.017370029000000,0.020557385000000,0.000282833000000,0.000071476000000,0.000076611000000,0.000261500000000,0.000156414000000 +0.000366191000000,0.000047771000000,0.000075031000000,0.000267426000000,0.000037895000000,0.000391079000000,0.000316808000000,0.000260710000000,0.016724499000000,0.018946324000000,0.000303377000000,0.000093204000000,0.000078586000000,0.000208956000000,0.000149698000000 +0.000421895000000,0.000047377000000,0.000059228000000,0.000263475000000,0.000037895000000,0.000389500000000,0.000263870000000,0.000263080000000,0.016956796000000,0.017707017000000,0.000265055000000,0.000073846000000,0.000078982000000,0.000218833000000,0.000149302000000 +0.000357105000000,0.000045006000000,0.000059623000000,0.000267031000000,0.000037500000000,0.000357105000000,0.000262290000000,0.000302981000000,0.017233339000000,0.018177930000000,0.000278093000000,0.000073845000000,0.000079376000000,0.000267030000000,0.000148117000000 +0.000376462000000,0.000047772000000,0.000058833000000,0.000270981000000,0.000037895000000,0.000350388000000,0.000299426000000,0.000268215000000,0.016686573000000,0.017552548000000,0.000299031000000,0.000071870000000,0.000076216000000,0.000220018000000,0.000167080000000 +0.000332611000000,0.000083722000000,0.000059623000000,0.000340907000000,0.000038290000000,0.000379623000000,0.000265450000000,0.000266241000000,0.016803116000000,0.017276795000000,0.000267820000000,0.000073845000000,0.000078981000000,0.000224759000000,0.000147722000000 +0.000393055000000,0.000045006000000,0.000093993000000,0.000263870000000,0.000037895000000,0.000353549000000,0.000263080000000,0.000300215000000,0.017010918000000,0.017345930000000,0.000267821000000,0.000075426000000,0.000078587000000,0.000244907000000,0.000148908000000 +0.000357895000000,0.000045796000000,0.000059229000000,0.000265056000000,0.000037895000000,0.000356315000000,0.000334981000000,0.000263870000000,0.016443216000000,0.017708597000000,0.000265846000000,0.000074241000000,0.000077006000000,0.000222388000000,0.000150883000000 +0.000368167000000,0.000047771000000,0.000058833000000,0.000266241000000,0.000038290000000,0.000351178000000,0.000269005000000,0.000263080000000,0.016952054000000,0.017431658000000,0.000264660000000,0.000087673000000,0.000079377000000,0.000208562000000,0.000152068000000 +0.000457055000000,0.000047771000000,0.000056858000000,0.000263870000000,0.000043821000000,0.000374487000000,0.000300216000000,0.000279278000000,0.017271264000000,0.017679758000000,0.000311672000000,0.000072265000000,0.000076216000000,0.000246092000000,0.000149698000000 +0.000391080000000,0.000047376000000,0.000058833000000,0.000353549000000,0.000038290000000,0.000354339000000,0.000269401000000,0.000272561000000,0.017389387000000,0.018179510000000,0.000265450000000,0.000075426000000,0.000077796000000,0.000255969000000,0.000152463000000 +0.000370141000000,0.000044611000000,0.000057253000000,0.000299031000000,0.000037895000000,0.000355129000000,0.000310882000000,0.000301006000000,0.016860400000000,0.017480251000000,0.000263870000000,0.000071475000000,0.000099920000000,0.000179327000000,0.000151673000000 +0.000330240000000,0.000045006000000,0.000058438000000,0.000265845000000,0.000037895000000,0.000382388000000,0.000334191000000,0.000261104000000,0.016713042000000,0.017140499000000,0.000302191000000,0.000071080000000,0.000077006000000,0.000233055000000,0.000150488000000 +0.000328660000000,0.000044611000000,0.000057253000000,0.000282043000000,0.000037895000000,0.000349598000000,0.000270981000000,0.000268216000000,0.017098227000000,0.017198178000000,0.000262290000000,0.000073846000000,0.000080561000000,0.000211327000000,0.000151277000000 +0.000348414000000,0.000045401000000,0.000057253000000,0.000273351000000,0.000038290000000,0.000355524000000,0.000264660000000,0.000308907000000,0.017178819000000,0.017957485000000,0.000263870000000,0.000105056000000,0.000079771000000,0.000223969000000,0.000148907000000 +0.000397006000000,0.000045401000000,0.000058438000000,0.000302191000000,0.000071870000000,0.000365401000000,0.000266635000000,0.000270981000000,0.016962326000000,0.017569931000000,0.000301006000000,0.000073846000000,0.000077796000000,0.000231870000000,0.000152463000000 +0.000334586000000,0.000047376000000,0.000059228000000,0.000267821000000,0.000037500000000,0.000363425000000,0.000264660000000,0.000324709000000,0.016441635000000,0.018164893000000,0.000263870000000,0.000071870000000,0.000082142000000,0.000182488000000,0.000184462000000 +0.000364216000000,0.000047376000000,0.000059623000000,0.000264265000000,0.000038290000000,0.000351178000000,0.000343673000000,0.000351179000000,0.017153930000000,0.017919165000000,0.000267426000000,0.000071475000000,0.000116117000000,0.000257944000000,0.000148512000000 +0.000336166000000,0.000045006000000,0.000057648000000,0.000321944000000,0.000037895000000,0.000349598000000,0.000273352000000,0.000263870000000,0.016821684000000,0.017914819000000,0.000269401000000,0.000074240000000,0.000082932000000,0.000194735000000,0.000147722000000 +0.000389894000000,0.000045401000000,0.000058833000000,0.000279278000000,0.000039870000000,0.000351178000000,0.000267821000000,0.000301796000000,0.016597289000000,0.017635511000000,0.000264660000000,0.000071870000000,0.000077796000000,0.000256759000000,0.000239377000000 +0.000328265000000,0.000047376000000,0.000058438000000,0.000267425000000,0.000037895000000,0.000369746000000,0.000268611000000,0.000261500000000,0.016854079000000,0.017790375000000,0.000299426000000,0.000199870000000,0.000077796000000,0.000229500000000,0.000154042000000 +0.000331030000000,0.000047771000000,0.000059623000000,0.000338141000000,0.000038290000000,0.000348413000000,0.000269006000000,0.000261895000000,0.016725685000000,0.017330524000000,0.000261894000000,0.000107031000000,0.000077796000000,0.000196315000000,0.000148907000000 +0.000525401000000,0.000046191000000,0.000058043000000,0.000268216000000,0.000037894000000,0.000357895000000,0.000359475000000,0.000368956000000,0.017774177000000,0.017420597000000,0.000268610000000,0.000086092000000,0.000077797000000,0.000250043000000,0.000147327000000 +0.000403722000000,0.000045401000000,0.000059624000000,0.000297845000000,0.000039080000000,0.000375277000000,0.000262685000000,0.000265450000000,0.017091116000000,0.017213585000000,0.000334191000000,0.000071080000000,0.000114537000000,0.000197105000000,0.000149697000000 +0.000325895000000,0.000048166000000,0.000056858000000,0.000267426000000,0.000037895000000,0.000404117000000,0.000271376000000,0.000437302000000,0.017172499000000,0.017622078000000,0.000272562000000,0.000072660000000,0.000077006000000,0.000244907000000,0.000149697000000 +0.000445598000000,0.000045401000000,0.000057648000000,0.000267425000000,0.000037895000000,0.000358290000000,0.000302191000000,0.000564512000000,0.017338029000000,0.018091412000000,0.000260710000000,0.000071080000000,0.000076216000000,0.000335376000000,0.000149697000000 +0.000329845000000,0.000047377000000,0.000058043000000,0.000346043000000,0.000038290000000,0.000344067000000,0.000267821000000,0.000308512000000,0.016714623000000,0.017247560000000,0.000272561000000,0.000073846000000,0.000077401000000,0.000255574000000,0.000147327000000 +0.000393845000000,0.000047377000000,0.000076611000000,0.000262685000000,0.000037895000000,0.000365796000000,0.000264660000000,0.000316413000000,0.016430968000000,0.017798671000000,0.000302586000000,0.000073055000000,0.000080561000000,0.000291919000000,0.000148512000000 +0.000329845000000,0.000086487000000,0.000060019000000,0.000262685000000,0.000038290000000,0.000346043000000,0.000456660000000,0.000317203000000,0.017124696000000,0.017243215000000,0.000299425000000,0.000071475000000,0.000076611000000,0.000274932000000,0.000152067000000 +0.000333401000000,0.000045401000000,0.000059623000000,0.000262685000000,0.000038290000000,0.000417548000000,0.000300611000000,0.000266636000000,0.016469685000000,0.017925090000000,0.000262685000000,0.000072266000000,0.000152858000000,0.000226734000000,0.000155623000000 +0.000356314000000,0.000047771000000,0.000060018000000,0.000263475000000,0.000037895000000,0.000389499000000,0.000265450000000,0.000306537000000,0.016840648000000,0.017568350000000,0.000263080000000,0.000108611000000,0.000082931000000,0.000253203000000,0.000153253000000 +0.000361056000000,0.000047377000000,0.000058043000000,0.000317204000000,0.000037895000000,0.000336561000000,0.000264265000000,0.000268611000000,0.017887955000000,0.017398869000000,0.000264265000000,0.000072265000000,0.000078191000000,0.000241352000000,0.000148907000000 +0.000370536000000,0.000047376000000,0.000063574000000,0.000264660000000,0.000037895000000,0.000357105000000,0.000394240000000,0.000269401000000,0.017272449000000,0.017501980000000,0.000264660000000,0.000074240000000,0.000081746000000,0.000212117000000,0.000167870000000 +0.000362241000000,0.000045401000000,0.000057648000000,0.000263080000000,0.000038290000000,0.000327870000000,0.000613104000000,0.000344857000000,0.017133783000000,0.017157486000000,0.000298636000000,0.000073450000000,0.000078586000000,0.000250833000000,0.000152857000000 +0.000407673000000,0.000047771000000,0.000073056000000,0.000306932000000,0.000038290000000,0.000329450000000,0.000297845000000,0.000265845000000,0.016512746000000,0.017464054000000,0.000264660000000,0.000072660000000,0.000116907000000,0.000227524000000,0.000153648000000 +0.000331820000000,0.000044611000000,0.000057648000000,0.000270586000000,0.000037895000000,0.000406882000000,0.000268611000000,0.000269401000000,0.016942178000000,0.017737436000000,0.000269401000000,0.000071080000000,0.000077796000000,0.000211722000000,0.000149697000000 +0.000385154000000,0.000047772000000,0.000059623000000,0.000265451000000,0.000073451000000,0.000346043000000,0.000302587000000,0.000264266000000,0.016857240000000,0.017270473000000,0.000304562000000,0.000073846000000,0.000077796000000,0.000309302000000,0.000224759000000 +0.000329451000000,0.000046981000000,0.000057648000000,0.000604413000000,0.000037500000000,0.000385154000000,0.000272561000000,0.000272166000000,0.016587413000000,0.017843708000000,0.000272166000000,0.000070685000000,0.000079771000000,0.000205796000000,0.000148117000000 +0.000447178000000,0.000046586000000,0.000057253000000,0.000262289000000,0.000038685000000,0.000351573000000,0.000269401000000,0.000335376000000,0.017284301000000,0.017400449000000,0.000261104000000,0.000073056000000,0.000081352000000,0.000230685000000,0.000148512000000 +0.000343673000000,0.000047771000000,0.000058438000000,0.000264265000000,0.000037895000000,0.000376858000000,0.000264265000000,0.000263475000000,0.016849733000000,0.018154621000000,0.000260709000000,0.000071870000000,0.000077005000000,0.000275327000000,0.000151673000000 +0.000378833000000,0.000047376000000,0.000057648000000,0.000262685000000,0.000038290000000,0.000334191000000,0.000265451000000,0.000263871000000,0.016989585000000,0.017675017000000,0.000263870000000,0.000072265000000,0.000159574000000,0.000217252000000,0.000167870000000 +0.000359080000000,0.000045401000000,0.000086487000000,0.000301006000000,0.000037895000000,0.000348413000000,0.000300215000000,0.000333796000000,0.017033832000000,0.018399559000000,0.000302191000000,0.000074241000000,0.000077796000000,0.000238586000000,0.000150092000000 +0.000333006000000,0.000047377000000,0.000058833000000,0.000270982000000,0.000038290000000,0.000338932000000,0.000265450000000,0.000263080000000,0.020384348000000,0.017373980000000,0.000263870000000,0.000109796000000,0.000079772000000,0.000271376000000,0.000152462000000 +0.000426241000000,0.000067130000000,0.000058834000000,0.000268611000000,0.000038290000000,0.000329451000000,0.000265845000000,0.000266241000000,0.017565189000000,0.017535165000000,0.000266241000000,0.000074240000000,0.000078191000000,0.000229895000000,0.000155228000000 +0.000336957000000,0.000047376000000,0.000057648000000,0.000349203000000,0.000041451000000,0.000365006000000,0.000305351000000,0.000319969000000,0.018841238000000,0.017482227000000,0.000299030000000,0.000072265000000,0.000077796000000,0.000253203000000,0.000237796000000 +0.000385154000000,0.000046586000000,0.000059228000000,0.000266241000000,0.000037895000000,0.000330635000000,0.000264660000000,0.000263870000000,0.017501980000000,0.018246670000000,0.000265055000000,0.000075426000000,0.000080166000000,0.000299425000000,0.000149302000000 +0.000366191000000,0.000046981000000,0.000056857000000,0.000264660000000,0.000037895000000,0.000371722000000,0.000267426000000,0.000301401000000,0.017623264000000,0.018209535000000,0.000265845000000,0.000073846000000,0.000117302000000,0.000241747000000,0.000149697000000 +0.000403327000000,0.000045401000000,0.000077401000000,0.000273352000000,0.000037895000000,0.000359870000000,0.000300611000000,0.000266636000000,0.016614277000000,0.017876498000000,0.000263079000000,0.000073846000000,0.000078586000000,0.000188808000000,0.000197895000000 +0.000339327000000,0.000046982000000,0.000056463000000,0.000265451000000,0.000037895000000,0.000380413000000,0.000267425000000,0.000260314000000,0.016928351000000,0.017761536000000,0.000270191000000,0.000072265000000,0.000077796000000,0.000320364000000,0.000151278000000 +0.000385944000000,0.000047377000000,0.000057648000000,0.000304561000000,0.000038290000000,0.000353154000000,0.000262290000000,0.000326685000000,0.016939017000000,0.017357388000000,0.000302586000000,0.000073845000000,0.000080956000000,0.000225944000000,0.000153253000000 +0.000336561000000,0.000047376000000,0.000059229000000,0.000268611000000,0.000038290000000,0.000327080000000,0.000266636000000,0.000278093000000,0.017977238000000,0.017515412000000,0.000266241000000,0.000074635000000,0.000079376000000,0.000194735000000,0.000149697000000 +0.000368561000000,0.000080562000000,0.000056858000000,0.000264265000000,0.000037895000000,0.000363030000000,0.000265055000000,0.000291525000000,0.017858325000000,0.017828696000000,0.000266636000000,0.000072265000000,0.000080167000000,0.000270981000000,0.000221993000000 +0.000329450000000,0.000046982000000,0.000059228000000,0.000267426000000,0.000039871000000,0.000332216000000,0.000344858000000,0.000263475000000,0.017575067000000,0.017541881000000,0.000407277000000,0.000073056000000,0.000111376000000,0.000191178000000,0.000150883000000 +0.000334586000000,0.000046981000000,0.000060808000000,0.000264660000000,0.000037500000000,0.000392660000000,0.000262684000000,0.000269006000000,0.018178325000000,0.018141979000000,0.000265846000000,0.000074241000000,0.000082142000000,0.000257944000000,0.000146932000000 +0.000354339000000,0.000046981000000,0.000057253000000,0.000301795000000,0.000038290000000,0.000329450000000,0.000264265000000,0.000304166000000,0.017632350000000,0.017022375000000,0.000335772000000,0.000072265000000,0.000077006000000,0.000270191000000,0.000148513000000 +0.000354734000000,0.000047377000000,0.000058833000000,0.000267425000000,0.000038290000000,0.000365401000000,0.000301401000000,0.000270981000000,0.017704647000000,0.018195313000000,0.000270191000000,0.000074241000000,0.000079376000000,0.000243327000000,0.000182883000000 +0.000370142000000,0.000047377000000,0.000058833000000,0.000267821000000,0.000038290000000,0.000331030000000,0.000262685000000,0.000261105000000,0.017658819000000,0.019670867000000,0.000269796000000,0.000073846000000,0.000079377000000,0.000227130000000,0.000148512000000 +0.000331425000000,0.000047376000000,0.000058833000000,0.000285599000000,0.000074240000000,0.000411623000000,0.000274141000000,0.000349599000000,0.018873633000000,0.017932201000000,0.000349993000000,0.000071871000000,0.000077401000000,0.000257154000000,0.000150092000000 +0.000418734000000,0.000047376000000,0.000059623000000,0.000267030000000,0.000037894000000,0.000329846000000,0.000262290000000,0.000262290000000,0.017812894000000,0.018787905000000,0.000263870000000,0.000074241000000,0.000080956000000,0.000240166000000,0.000147722000000 +0.000350388000000,0.000069894000000,0.000059228000000,0.000303376000000,0.000037499000000,0.000395425000000,0.000266636000000,0.000262685000000,0.017102177000000,0.017469585000000,0.000263080000000,0.000073451000000,0.000075821000000,0.000193154000000,0.000238586000000 +0.000373302000000,0.000045006000000,0.000058833000000,0.000263475000000,0.000037895000000,0.000372117000000,0.000310487000000,0.000262290000000,0.017709387000000,0.018034128000000,0.000279277000000,0.000073846000000,0.000081351000000,0.000347228000000,0.000147327000000 +0.000336167000000,0.000048562000000,0.000056857000000,0.000268216000000,0.000103870000000,0.000337747000000,0.000262290000000,0.000263080000000,0.017732696000000,0.017947609000000,0.000268611000000,0.000073845000000,0.000078191000000,0.000230290000000,0.000149697000000 +0.000331425000000,0.000054487000000,0.000073055000000,0.000345648000000,0.000053697000000,0.000330240000000,0.000268215000000,0.000336956000000,0.017328548000000,0.017030277000000,0.000368561000000,0.000072265000000,0.000077796000000,0.000213303000000,0.000150488000000 +0.000333006000000,0.000047376000000,0.000057648000000,0.000263870000000,0.000054093000000,0.000328660000000,0.000312462000000,0.000262685000000,0.017405190000000,0.016954820000000,0.000264265000000,0.000074240000000,0.000077006000000,0.000252018000000,0.000184858000000 +0.000332216000000,0.000045401000000,0.000057648000000,0.000272561000000,0.000037500000000,0.000393845000000,0.000267030000000,0.000265055000000,0.017179609000000,0.017569536000000,0.000260710000000,0.000073055000000,0.000110981000000,0.000211327000000,0.000153253000000 +0.000502487000000,0.000047771000000,0.000058043000000,0.000299426000000,0.000038290000000,0.000432167000000,0.000269006000000,0.000301796000000,0.017637486000000,0.018026226000000,0.000314438000000,0.000074241000000,0.000078192000000,0.000306932000000,0.000150093000000 +0.000375673000000,0.000058833000000,0.000057648000000,0.000262685000000,0.000037895000000,0.000368562000000,0.000358290000000,0.000268215000000,0.017242030000000,0.017584943000000,0.000263080000000,0.000071475000000,0.000076611000000,0.000293500000000,0.000149302000000 +0.000419130000000,0.000047376000000,0.000059623000000,0.000267030000000,0.000037895000000,0.000334981000000,0.000290339000000,0.000290735000000,0.017716103000000,0.017329733000000,0.000342487000000,0.000101895000000,0.000078191000000,0.000230685000000,0.000202241000000 +0.000356710000000,0.000047771000000,0.000137450000000,0.000272956000000,0.000037895000000,0.000368167000000,0.000319969000000,0.000748611000000,0.017842128000000,0.017616548000000,0.000264265000000,0.000071080000000,0.000082932000000,0.000338142000000,0.000151277000000 +0.000432956000000,0.000045401000000,0.000062389000000,0.000269401000000,0.000038290000000,0.000327870000000,0.000286783000000,0.000282043000000,0.017579807000000,0.017503560000000,0.000265450000000,0.000073846000000,0.000080561000000,0.000204216000000,0.000148907000000 +0.000351969000000,0.000045401000000,0.000058833000000,0.000302981000000,0.000037895000000,0.000364216000000,0.000265845000000,0.000262289000000,0.017201733000000,0.017431659000000,0.000351178000000,0.000070685000000,0.000078982000000,0.000229895000000,0.000152068000000 +0.000373697000000,0.000046981000000,0.000059624000000,0.000265055000000,0.000037895000000,0.000329056000000,0.000266635000000,0.000318388000000,0.017533190000000,0.017511856000000,0.000269401000000,0.000074635000000,0.000076611000000,0.000203031000000,0.000167475000000 +0.000331426000000,0.000047376000000,0.000057648000000,0.000314043000000,0.000037895000000,0.000348413000000,0.000265450000000,0.000269400000000,0.017349091000000,0.017663955000000,0.000331426000000,0.000106240000000,0.000079771000000,0.000372512000000,0.000148907000000 +0.000397400000000,0.000045006000000,0.000057253000000,0.000300216000000,0.000074241000000,0.000470882000000,0.000304167000000,0.000267030000000,0.018271954000000,0.017822375000000,0.000262290000000,0.000073845000000,0.000078191000000,0.000234240000000,0.000150487000000 +0.000334191000000,0.000083327000000,0.000131129000000,0.000263080000000,0.000037895000000,0.000363426000000,0.000265846000000,0.000297846000000,0.018489633000000,0.017639856000000,0.000260710000000,0.000073845000000,0.000080957000000,0.000221993000000,0.000149302000000 +0.000390685000000,0.000050142000000,0.000057647000000,0.000261895000000,0.000037895000000,0.000402536000000,0.000263475000000,0.000266240000000,0.017566770000000,0.017554128000000,0.000299821000000,0.000071080000000,0.000115327000000,0.000247673000000,0.000408858000000 +0.000329450000000,0.000046981000000,0.000080167000000,0.000269401000000,0.000037895000000,0.000326290000000,0.000301401000000,0.000266241000000,0.017443116000000,0.017725189000000,0.000264660000000,0.000071870000000,0.000077796000000,0.000177352000000,0.000172611000000 +0.000350389000000,0.000047376000000,0.000060414000000,0.000265056000000,0.000038290000000,0.000400956000000,0.000269401000000,0.000268611000000,0.017365684000000,0.018284991000000,0.000262685000000,0.000072661000000,0.000079772000000,0.000261104000000,0.000186833000000 +0.000331426000000,0.000046586000000,0.000057648000000,0.000309302000000,0.000037895000000,0.000359080000000,0.000266240000000,0.000264265000000,0.017722819000000,0.017348696000000,0.000622190000000,0.000073845000000,0.000079377000000,0.000231870000000,0.000148907000000 +0.000378833000000,0.000045401000000,0.000057648000000,0.000264265000000,0.000037500000000,0.000365796000000,0.000404907000000,0.000336956000000,0.017212400000000,0.017836202000000,0.000304956000000,0.000108216000000,0.000080957000000,0.000178537000000,0.000149697000000 +0.000328265000000,0.000066735000000,0.000059624000000,0.000264265000000,0.000038290000000,0.000332611000000,0.000270981000000,0.000283228000000,0.017494869000000,0.017285486000000,0.000266240000000,0.000072661000000,0.000079376000000,0.000244907000000,0.000147327000000 +0.000378438000000,0.000047771000000,0.000070685000000,0.000301401000000,0.000037895000000,0.000433747000000,0.000349598000000,0.000290339000000,0.017769436000000,0.017608647000000,0.000261895000000,0.000072661000000,0.000077796000000,0.000197895000000,0.000183672000000 +0.000421894000000,0.000046982000000,0.000056858000000,0.000269006000000,0.000038290000000,0.000358685000000,0.000270191000000,0.000276512000000,0.017550573000000,0.017885189000000,0.000360660000000,0.000073846000000,0.000080561000000,0.000250438000000,0.000148117000000 +0.000337747000000,0.000046191000000,0.000059228000000,0.000265055000000,0.000039871000000,0.000381598000000,0.000267425000000,0.000281252000000,0.017685683000000,0.017193042000000,0.000267031000000,0.000075821000000,0.000079376000000,0.000231475000000,0.000148907000000 +0.000369351000000,0.000045006000000,0.000062784000000,0.000315228000000,0.000037895000000,0.000351574000000,0.000300611000000,0.000280463000000,0.017976844000000,0.017586128000000,0.000280857000000,0.000073846000000,0.000075821000000,0.000221994000000,0.000148907000000 +0.000331821000000,0.000047771000000,0.000065154000000,0.000263080000000,0.000037895000000,0.000333401000000,0.000265055000000,0.000280858000000,0.017380301000000,0.017415066000000,0.000295870000000,0.000112166000000,0.000077006000000,0.000230290000000,0.000221993000000 +0.000387130000000,0.000052907000000,0.000057648000000,0.000276512000000,0.000037895000000,0.000329055000000,0.000269401000000,0.000281253000000,0.017863461000000,0.017138523000000,0.000263080000000,0.000074241000000,0.000076611000000,0.000193154000000,0.000152067000000 +0.000333795000000,0.000045006000000,0.000095969000000,0.000268611000000,0.000038290000000,0.000330240000000,0.000279278000000,0.000279277000000,0.018239954000000,0.017567560000000,0.000301401000000,0.000074241000000,0.000152463000000,0.000248857000000,0.000151277000000 +0.000329055000000,0.000096364000000,0.000058833000000,0.000262685000000,0.000037895000000,0.000336956000000,0.000267820000000,0.000283623000000,0.018031363000000,0.017342375000000,0.000259919000000,0.000071475000000,0.000098339000000,0.000178537000000,0.000147722000000 +0.000333006000000,0.000045797000000,0.000058833000000,0.000406487000000,0.000039080000000,0.000389104000000,0.000304561000000,0.000280858000000,0.017512647000000,0.017509881000000,0.000262685000000,0.000071475000000,0.000080562000000,0.000371722000000,0.000166685000000 +0.000329451000000,0.000047772000000,0.000058438000000,0.000268611000000,0.000037895000000,0.000706734000000,0.000268215000000,0.000283228000000,0.017193437000000,0.017728350000000,0.000304561000000,0.000073846000000,0.000077005000000,0.000229105000000,0.000154834000000 +0.000722537000000,0.000045006000000,0.000059623000000,0.000274141000000,0.000038290000000,0.000457055000000,0.000269401000000,0.000279673000000,0.017159067000000,0.017335659000000,0.000261895000000,0.000108611000000,0.000079772000000,0.000213697000000,0.000150488000000 +0.000402537000000,0.000044216000000,0.000057253000000,0.000324709000000,0.000038290000000,0.000328265000000,0.000264661000000,0.000320759000000,0.017506721000000,0.017620893000000,0.000268611000000,0.000074240000000,0.000100315000000,0.000284413000000,0.000149697000000 +0.000348413000000,0.000047376000000,0.000060018000000,0.000300611000000,0.000073845000000,0.000422290000000,0.000270191000000,0.000281253000000,0.017496054000000,0.017881634000000,0.000300610000000,0.000072660000000,0.000077796000000,0.000212907000000,0.000149697000000 +0.000395030000000,0.000047377000000,0.000131524000000,0.000265846000000,0.000037895000000,0.000332215000000,0.000319178000000,0.000278882000000,0.018201633000000,0.017359757000000,0.000268611000000,0.000074241000000,0.000076611000000,0.000221994000000,0.000148908000000 +0.000398191000000,0.000067920000000,0.000060018000000,0.000263475000000,0.000037895000000,0.000405302000000,0.000263475000000,0.000280858000000,0.017618918000000,0.017872943000000,0.000302191000000,0.000073450000000,0.000078191000000,0.000214093000000,0.000152858000000 +0.000404117000000,0.000047771000000,0.000057648000000,0.000300216000000,0.000038290000000,0.000351179000000,0.000286389000000,0.000280462000000,0.017472350000000,0.017094672000000,0.000297450000000,0.000073450000000,0.000083327000000,0.000215277000000,0.000150883000000 +0.000332216000000,0.000046982000000,0.000058438000000,0.000263475000000,0.000037895000000,0.000368956000000,0.000299821000000,0.000334586000000,0.017432449000000,0.017345536000000,0.000267030000000,0.000071080000000,0.000079771000000,0.000223179000000,0.000150883000000 +0.000335376000000,0.000045401000000,0.000058438000000,0.000263870000000,0.000037500000000,0.000349598000000,0.000265845000000,0.000298635000000,0.018864941000000,0.018484497000000,0.000302981000000,0.000072660000000,0.000118487000000,0.000212513000000,0.000149303000000 +0.000374092000000,0.000047376000000,0.000059228000000,0.000263870000000,0.000037895000000,0.000329450000000,0.000264265000000,0.000298635000000,0.018161732000000,0.017682128000000,0.000265846000000,0.000073450000000,0.000078586000000,0.000213697000000,0.000146932000000 +0.000332216000000,0.000047772000000,0.000058438000000,0.000265845000000,0.000037894000000,0.000351969000000,0.000313253000000,0.000282438000000,0.018775263000000,0.017889930000000,0.000262289000000,0.000071475000000,0.000080166000000,0.000210142000000,0.000150092000000 +0.000371722000000,0.000048957000000,0.000074241000000,0.000302191000000,0.000040660000000,0.000355129000000,0.000360265000000,0.000280858000000,0.018484498000000,0.017679757000000,0.000335771000000,0.000071080000000,0.000078191000000,0.000223179000000,0.000164314000000 +0.000365796000000,0.000047771000000,0.000057648000000,0.000272166000000,0.000037500000000,0.000371721000000,0.000300216000000,0.000285598000000,0.018102868000000,0.019160843000000,0.000263475000000,0.000073845000000,0.000078192000000,0.000248463000000,0.000152463000000 +0.000408858000000,0.000045402000000,0.000058043000000,0.000273351000000,0.000038685000000,0.000350388000000,0.000274932000000,0.000280463000000,0.018110375000000,0.018028597000000,0.000342487000000,0.000072661000000,0.000078586000000,0.000181698000000,0.000149698000000 +0.000348413000000,0.000045006000000,0.000057253000000,0.000297845000000,0.000037895000000,0.000369352000000,0.000270191000000,0.000282438000000,0.017940893000000,0.017703856000000,0.000264265000000,0.000137451000000,0.000131129000000,0.000216067000000,0.000150092000000 +0.000437302000000,0.000047376000000,0.000057648000000,0.000265450000000,0.000037895000000,0.000348808000000,0.000278488000000,0.000281648000000,0.018012399000000,0.018135263000000,0.000261894000000,0.000074240000000,0.000078586000000,0.000250438000000,0.000187623000000 +0.000333401000000,0.000047772000000,0.000056463000000,0.000353944000000,0.000037895000000,0.000449549000000,0.000267030000000,0.000267426000000,0.017245980000000,0.019109880000000,0.000305747000000,0.000071475000000,0.000079376000000,0.000229104000000,0.000150487000000 +0.000351968000000,0.000045006000000,0.000058438000000,0.000272957000000,0.000037895000000,0.000333796000000,0.000308117000000,0.000263475000000,0.018039263000000,0.017765091000000,0.000261500000000,0.000072660000000,0.000076611000000,0.000244907000000,0.000148907000000 +0.000333006000000,0.000045006000000,0.000073055000000,0.000262289000000,0.000037895000000,0.000385944000000,0.000268611000000,0.000313648000000,0.017216350000000,0.017566375000000,0.000269401000000,0.000071475000000,0.000082537000000,0.000258734000000,0.000153253000000 +0.000362241000000,0.000047772000000,0.000059624000000,0.000336562000000,0.000038290000000,0.000330240000000,0.000266240000000,0.000263870000000,0.017741387000000,0.017893485000000,0.000263475000000,0.000075426000000,0.000078191000000,0.000248463000000,0.000186438000000 +0.000370141000000,0.000048166000000,0.000059623000000,0.000265450000000,0.000037895000000,0.000348018000000,0.000312068000000,0.000265845000000,0.017551758000000,0.017678178000000,0.000264661000000,0.000072265000000,0.000168265000000,0.000191968000000,0.000154834000000 +0.000350784000000,0.000047377000000,0.000058833000000,0.000270191000000,0.000037895000000,0.000333006000000,0.000267821000000,0.000282437000000,0.017183166000000,0.017716498000000,0.000303772000000,0.000074240000000,0.000082537000000,0.000284018000000,0.000151672000000 +0.000408067000000,0.000047377000000,0.000058833000000,0.000301401000000,0.000056858000000,0.000349994000000,0.000265055000000,0.000269006000000,0.018102078000000,0.019577632000000,0.000271376000000,0.000071475000000,0.000078586000000,0.000225549000000,0.000150487000000 +0.000330240000000,0.000045401000000,0.000058833000000,0.000271771000000,0.000054488000000,0.000412413000000,0.000281648000000,0.000304167000000,0.016969437000000,0.018387708000000,0.000263475000000,0.000073055000000,0.000080166000000,0.000197499000000,0.000220808000000 +0.000383574000000,0.000046982000000,0.000058834000000,0.000302981000000,0.000040265000000,0.000402932000000,0.000266241000000,0.000265055000000,0.017563610000000,0.019655460000000,0.000300611000000,0.000071870000000,0.000080166000000,0.000281648000000,0.000150487000000 +0.000328265000000,0.000057648000000,0.000059229000000,0.000275722000000,0.000039080000000,0.000353944000000,0.000270191000000,0.000261894000000,0.017919165000000,0.017996597000000,0.000269796000000,0.000073846000000,0.000115327000000,0.000195919000000,0.000147327000000 +0.000398586000000,0.000047771000000,0.000057648000000,0.000263079000000,0.000037895000000,0.000390290000000,0.000264660000000,0.000309697000000,0.017371214000000,0.018154226000000,0.000264266000000,0.000109796000000,0.000075821000000,0.000243722000000,0.000150092000000 +0.000352759000000,0.000045401000000,0.000057648000000,0.000309302000000,0.000038290000000,0.000365006000000,0.000265845000000,0.000261500000000,0.017488943000000,0.017299708000000,0.000268216000000,0.000074241000000,0.000080166000000,0.000266635000000,0.000165105000000 +0.000326290000000,0.000063574000000,0.000058833000000,0.000269401000000,0.000037894000000,0.000408857000000,0.000309697000000,0.000291525000000,0.017293388000000,0.017330523000000,0.000272561000000,0.000073846000000,0.000077796000000,0.000240956000000,0.000195920000000 +0.000363820000000,0.000047377000000,0.000057648000000,0.000263870000000,0.000037894000000,0.000351573000000,0.000266636000000,0.000428610000000,0.017533585000000,0.017523313000000,0.000302981000000,0.000073846000000,0.000080957000000,0.000216858000000,0.000156413000000 +0.000329846000000,0.000044215000000,0.000113352000000,0.000582289000000,0.000039870000000,0.000412808000000,0.000267425000000,0.000267425000000,0.017874128000000,0.017536350000000,0.000261895000000,0.000074636000000,0.000077797000000,0.000332216000000,0.000148512000000 +0.000368956000000,0.000047377000000,0.000057648000000,0.000265450000000,0.000037895000000,0.000350388000000,0.000333795000000,0.000299030000000,0.017210820000000,0.017679758000000,0.000271771000000,0.000073056000000,0.000078982000000,0.000244907000000,0.000149698000000 +0.000329055000000,0.000047376000000,0.000058438000000,0.000265055000000,0.000037500000000,0.000430191000000,0.000267425000000,0.000265056000000,0.017312746000000,0.017515017000000,0.000300215000000,0.000110586000000,0.000077796000000,0.000177351000000,0.000170636000000 +0.000394240000000,0.000044611000000,0.000059228000000,0.000268215000000,0.000037895000000,0.000476413000000,0.000266636000000,0.000263475000000,0.017773387000000,0.017976449000000,0.000267426000000,0.000074240000000,0.000077401000000,0.000270981000000,0.000147327000000 +0.000417549000000,0.000046982000000,0.000060018000000,0.000301006000000,0.000037895000000,0.000371327000000,0.000267030000000,0.000308907000000,0.017902177000000,0.017823164000000,0.000266635000000,0.000071080000000,0.000078192000000,0.000218043000000,0.000148907000000 +0.000387920000000,0.000081352000000,0.000057648000000,0.000267030000000,0.000037895000000,0.000361055000000,0.000269796000000,0.000263080000000,0.017386227000000,0.017372005000000,0.000269006000000,0.000074241000000,0.000079772000000,0.000213302000000,0.000167870000000 +0.000331030000000,0.000045401000000,0.000057648000000,0.000265055000000,0.000037895000000,0.000372907000000,0.000299821000000,0.000260710000000,0.017824745000000,0.017973289000000,0.000264265000000,0.000072660000000,0.000076611000000,0.000267426000000,0.000150487000000 +0.000397005000000,0.000047771000000,0.000097945000000,0.000351968000000,0.000037895000000,0.000330636000000,0.000268216000000,0.000278882000000,0.017752054000000,0.016909388000000,0.000309697000000,0.000073450000000,0.000077401000000,0.000201450000000,0.000148512000000 +0.000352364000000,0.000045401000000,0.000057648000000,0.000266240000000,0.000037895000000,0.000334191000000,0.000274142000000,0.000264660000000,0.017407955000000,0.017900597000000,0.000267425000000,0.000109796000000,0.000093598000000,0.000223179000000,0.000151278000000 +0.000405302000000,0.000045796000000,0.000058043000000,0.000306142000000,0.000038290000000,0.000334586000000,0.000299426000000,0.000298635000000,0.017062276000000,0.017827511000000,0.000267031000000,0.000073055000000,0.000081747000000,0.000284808000000,0.000154043000000 +0.000326290000000,0.000048166000000,0.000060018000000,0.000265450000000,0.000038290000000,0.000357104000000,0.000267425000000,0.000263080000000,0.017947214000000,0.017552547000000,0.000440067000000,0.000073451000000,0.000078191000000,0.000193549000000,0.000157994000000 +0.000354734000000,0.000047772000000,0.000057253000000,0.000262290000000,0.000058043000000,0.000365796000000,0.000267426000000,0.000272166000000,0.017409140000000,0.017509882000000,0.000299426000000,0.000076216000000,0.000078981000000,0.000237006000000,0.000155228000000 +0.000327475000000,0.000045401000000,0.000058833000000,0.000352364000000,0.000053697000000,0.000332611000000,0.000334190000000,0.000316414000000,0.017203313000000,0.017084795000000,0.000302586000000,0.000073450000000,0.000078191000000,0.000227919000000,0.000148907000000 +0.000331425000000,0.000060414000000,0.000058833000000,0.000263080000000,0.000048957000000,0.000371722000000,0.000265846000000,0.000265846000000,0.018004498000000,0.017669486000000,0.000270191000000,0.000073845000000,0.000097549000000,0.000236610000000,0.000150488000000 +0.000530931000000,0.000047376000000,0.000095573000000,0.000266241000000,0.000054093000000,0.000361450000000,0.000299030000000,0.000269401000000,0.018199658000000,0.018559954000000,0.000279673000000,0.000071475000000,0.000077006000000,0.000283624000000,0.000152463000000 +0.000329451000000,0.000046981000000,0.000057253000000,0.000262289000000,0.000038290000000,0.000395426000000,0.000266636000000,0.000262685000000,0.017757584000000,0.017547017000000,0.000301006000000,0.000073846000000,0.000076216000000,0.000220018000000,0.000149302000000 +0.000375672000000,0.000046981000000,0.000057253000000,0.000266241000000,0.000037895000000,0.000336166000000,0.000344068000000,0.000260314000000,0.017932596000000,0.017077289000000,0.000261499000000,0.000073056000000,0.000079377000000,0.000250043000000,0.000151673000000 +0.000354734000000,0.000047772000000,0.000057253000000,0.000343672000000,0.000038685000000,0.000328660000000,0.000269796000000,0.000308512000000,0.017624844000000,0.018006078000000,0.000263475000000,0.000073845000000,0.000078191000000,0.000175771000000,0.000152463000000 +0.000403327000000,0.000044611000000,0.000060019000000,0.000268611000000,0.000037500000000,0.000329055000000,0.000264660000000,0.000265055000000,0.017597980000000,0.017019610000000,0.000282833000000,0.000071870000000,0.000078191000000,0.000287179000000,0.000150883000000 +0.000342883000000,0.000048957000000,0.000057648000000,0.000265450000000,0.000037500000000,0.000330240000000,0.000346833000000,0.000261895000000,0.017725585000000,0.017200548000000,0.000263475000000,0.000072660000000,0.000160364000000,0.000198685000000,0.000150092000000 +0.000371326000000,0.000047376000000,0.000059229000000,0.000302191000000,0.000037895000000,0.000366586000000,0.000274932000000,0.000317993000000,0.017628005000000,0.017754424000000,0.000312068000000,0.000074241000000,0.000077796000000,0.000320759000000,0.000152067000000 +0.000355130000000,0.000045401000000,0.000056858000000,0.000280858000000,0.000037895000000,0.000338537000000,0.000267426000000,0.000268216000000,0.018387707000000,0.016967462000000,0.000260710000000,0.000129154000000,0.000076216000000,0.000238981000000,0.000199475000000 +0.000394636000000,0.000047377000000,0.000060414000000,0.000268216000000,0.000037894000000,0.000373302000000,0.000301006000000,0.000262290000000,0.017970918000000,0.017917979000000,0.000261104000000,0.000077796000000,0.000078586000000,0.000193549000000,0.000153253000000 +0.000329450000000,0.000045401000000,0.000057252000000,0.000276907000000,0.000037895000000,0.000338142000000,0.000262289000000,0.000265055000000,0.017033832000000,0.017663560000000,0.000263870000000,0.000071871000000,0.000080167000000,0.000259525000000,0.000153253000000 +0.000332215000000,0.000045006000000,0.000057648000000,0.000263475000000,0.000037895000000,0.000478388000000,0.000266241000000,0.000268215000000,0.018402720000000,0.017731511000000,0.000260314000000,0.000072265000000,0.000118487000000,0.000179327000000,0.000150092000000 +0.000368166000000,0.000045006000000,0.000057648000000,0.000301796000000,0.000039080000000,0.000332610000000,0.000270191000000,0.000356315000000,0.017343560000000,0.018204004000000,0.000264265000000,0.000074636000000,0.000090043000000,0.000240956000000,0.000287178000000 +0.000334586000000,0.000045006000000,0.000059228000000,0.000265055000000,0.000038685000000,0.000375277000000,0.000264265000000,0.000304166000000,0.017256251000000,0.017554523000000,0.000268216000000,0.000073846000000,0.000088463000000,0.000231080000000,0.000149302000000 +0.000365006000000,0.000047772000000,0.000058833000000,0.000264265000000,0.000037895000000,0.000333401000000,0.000317993000000,0.000267821000000,0.017608251000000,0.017734671000000,0.000263475000000,0.000072265000000,0.000080561000000,0.000263870000000,0.000150882000000 +0.000363426000000,0.000060808000000,0.000095573000000,0.000350388000000,0.000038290000000,0.000368166000000,0.000269401000000,0.000266240000000,0.017849239000000,0.017614177000000,0.000299820000000,0.000076611000000,0.000079376000000,0.000237401000000,0.000165894000000 +0.000369747000000,0.000047376000000,0.000063574000000,0.000263870000000,0.000037895000000,0.000368562000000,0.000264660000000,0.000262685000000,0.018559954000000,0.017455363000000,0.000265450000000,0.000073845000000,0.000078191000000,0.000210932000000,0.000153648000000 +0.000331425000000,0.000047772000000,0.000062389000000,0.000301401000000,0.000037895000000,0.000358684000000,0.000580314000000,0.000297450000000,0.017754424000000,0.017308399000000,0.000265056000000,0.000072265000000,0.000118883000000,0.000298635000000,0.000148117000000 +0.000388710000000,0.000047377000000,0.000061204000000,0.000267426000000,0.000038290000000,0.000367376000000,0.000263080000000,0.000266240000000,0.017694770000000,0.017638671000000,0.000299821000000,0.000071870000000,0.000078981000000,0.000223574000000,0.000149302000000 +0.000359080000000,0.000047377000000,0.000083327000000,0.000263870000000,0.000072660000000,0.000335376000000,0.000264265000000,0.000262685000000,0.017349486000000,0.017539905000000,0.000271376000000,0.000072661000000,0.000077006000000,0.000218438000000,0.000187228000000 +0.000349993000000,0.000045006000000,0.000151672000000,0.000347623000000,0.000040265000000,0.000396610000000,0.000271771000000,0.000339327000000,0.017153930000000,0.017631165000000,0.000265055000000,0.000071870000000,0.000078191000000,0.000218833000000,0.000152857000000 +0.000332216000000,0.000044611000000,0.000064364000000,0.000266635000000,0.000038685000000,0.000330635000000,0.000298636000000,0.000272166000000,0.020600446000000,0.017565190000000,0.000263870000000,0.000078982000000,0.000078981000000,0.000216463000000,0.000146932000000 +0.000331820000000,0.000083722000000,0.000178142000000,0.000266636000000,0.000037895000000,0.000365796000000,0.000263474000000,0.000273352000000,0.017663955000000,0.017993041000000,0.000269401000000,0.000074241000000,0.000080167000000,0.000235425000000,0.000184858000000 +0.000389895000000,0.000047771000000,0.000109401000000,0.000637203000000,0.000037500000000,0.000329055000000,0.000269796000000,0.000300216000000,0.018338325000000,0.017370029000000,0.000299820000000,0.000073845000000,0.000097549000000,0.000203820000000,0.000148117000000 +0.000329450000000,0.000045006000000,0.000075426000000,0.000312463000000,0.000039080000000,0.000368167000000,0.000311278000000,0.000265451000000,0.018419312000000,0.017502770000000,0.000263475000000,0.000073845000000,0.000201055000000,0.000226340000000,0.000148512000000 +0.000369746000000,0.000045006000000,0.000061204000000,0.000263080000000,0.000037895000000,0.000362636000000,0.000267425000000,0.000268215000000,0.017381486000000,0.018810028000000,0.000260710000000,0.000092413000000,0.000097154000000,0.000241351000000,0.000148512000000 +0.000351178000000,0.000047376000000,0.000142587000000,0.000266636000000,0.000037895000000,0.000351969000000,0.000265055000000,0.000272957000000,0.017373190000000,0.017514622000000,0.000300611000000,0.000071870000000,0.000080956000000,0.000227920000000,0.000185253000000 +0.000547524000000,0.000069895000000,0.000094389000000,0.000304956000000,0.000037500000000,0.000328660000000,0.000280068000000,0.000265056000000,0.017443116000000,0.017375165000000,0.000260709000000,0.000073450000000,0.000116907000000,0.000232660000000,0.000149698000000 +0.000351968000000,0.000045006000000,0.000144166000000,0.000263475000000,0.000037895000000,0.000338141000000,0.000265056000000,0.000300611000000,0.017496449000000,0.017784448000000,0.000260315000000,0.000074241000000,0.000077796000000,0.000208561000000,0.000150093000000 +0.000462981000000,0.000045401000000,0.000062783000000,0.000262290000000,0.000037500000000,0.000373697000000,0.000298636000000,0.000268611000000,0.018168053000000,0.018050325000000,0.000423870000000,0.000074240000000,0.000079377000000,0.000267425000000,0.000147327000000 +0.000337747000000,0.000097154000000,0.000063179000000,0.000263870000000,0.000037895000000,0.000331030000000,0.000262685000000,0.000269796000000,0.017321042000000,0.017707411000000,0.000265055000000,0.000075426000000,0.000120462000000,0.000250043000000,0.000217648000000 +0.000417154000000,0.000045006000000,0.000062784000000,0.000261895000000,0.000038290000000,0.000404117000000,0.000263080000000,0.000350783000000,0.017484597000000,0.017628005000000,0.000353154000000,0.000073451000000,0.000077401000000,0.000180907000000,0.000148512000000 +0.000364215000000,0.000047376000000,0.000063179000000,0.000305351000000,0.000037895000000,0.000334586000000,0.000320759000000,0.000263475000000,0.017342770000000,0.018036893000000,0.000263080000000,0.000073846000000,0.000079377000000,0.000327870000000,0.000149302000000 +0.000430191000000,0.000045006000000,0.000190784000000,0.000263475000000,0.000037500000000,0.000469697000000,0.000272166000000,0.000302586000000,0.017311166000000,0.018368349000000,0.000267425000000,0.000075031000000,0.000116512000000,0.000193154000000,0.000148117000000 +0.000376068000000,0.000047377000000,0.000090833000000,0.000265450000000,0.000038290000000,0.000366981000000,0.000262684000000,0.000266240000000,0.017384646000000,0.017447066000000,0.000353154000000,0.000073451000000,0.000076611000000,0.000253599000000,0.000186438000000 +0.000461005000000,0.000047771000000,0.000092808000000,0.000303376000000,0.000037895000000,0.000432956000000,0.000281648000000,0.000274932000000,0.018056646000000,0.019480448000000,0.000269796000000,0.000071475000000,0.000077796000000,0.000263870000000,0.000150883000000 +0.000326290000000,0.000044611000000,0.000061204000000,0.000266635000000,0.000037895000000,0.000328265000000,0.000269401000000,0.000336957000000,0.017518573000000,0.017361734000000,0.000340907000000,0.000071476000000,0.000081747000000,0.000192364000000,0.000148117000000 +0.000364216000000,0.000072660000000,0.000063969000000,0.000265845000000,0.000037895000000,0.000432561000000,0.000282833000000,0.000269401000000,0.018123411000000,0.018619609000000,0.000262685000000,0.000071080000000,0.000076215000000,0.000254389000000,0.000152858000000 +0.000353549000000,0.000046982000000,0.000061598000000,0.000313253000000,0.000037895000000,0.000327475000000,0.000288364000000,0.000267425000000,0.017390967000000,0.017914029000000,0.000260710000000,0.000107821000000,0.000076611000000,0.000231080000000,0.000184857000000 +0.000421895000000,0.000045006000000,0.000060809000000,0.000267426000000,0.000058834000000,0.000524215000000,0.000262289000000,0.000263475000000,0.017530424000000,0.017767856000000,0.000329450000000,0.000072266000000,0.000112561000000,0.000249253000000,0.000152068000000 +0.000359870000000,0.000044611000000,0.000063179000000,0.000325499000000,0.000054487000000,0.000338142000000,0.000301796000000,0.000271376000000,0.017819610000000,0.017151955000000,0.000266240000000,0.000072265000000,0.000076216000000,0.000194339000000,0.000150092000000 +0.000395820000000,0.000047376000000,0.000063178000000,0.000299821000000,0.000038685000000,0.000369351000000,0.000268611000000,0.000333796000000,0.017363708000000,0.017533980000000,0.000334586000000,0.000075031000000,0.000079772000000,0.000302191000000,0.000167475000000 +0.000329846000000,0.000046586000000,0.000062389000000,0.000265055000000,0.000038290000000,0.000353154000000,0.000264265000000,0.000270191000000,0.017318276000000,0.017244004000000,0.000275327000000,0.000074636000000,0.000079376000000,0.000231870000000,0.000182882000000 +0.000355920000000,0.000045006000000,0.000097944000000,0.000265055000000,0.000038685000000,0.000331820000000,0.000265055000000,0.000286388000000,0.017589683000000,0.017681733000000,0.000263080000000,0.000073845000000,0.000077006000000,0.000200265000000,0.000149697000000 +0.000338931000000,0.000047771000000,0.000063574000000,0.000267426000000,0.000037895000000,0.000337352000000,0.000265845000000,0.000312463000000,0.017593239000000,0.017012894000000,0.000338142000000,0.000107821000000,0.000077796000000,0.000274932000000,0.000150092000000 +0.000346043000000,0.000047376000000,0.000063179000000,0.000314833000000,0.000038685000000,0.000405697000000,0.000312858000000,0.000269796000000,0.017695955000000,0.017346325000000,0.000263870000000,0.000071475000000,0.000077796000000,0.000178932000000,0.000148117000000 +0.000372907000000,0.000045006000000,0.000060809000000,0.000264660000000,0.000037895000000,0.000348413000000,0.000270981000000,0.000270981000000,0.017493288000000,0.018257337000000,0.000338536000000,0.000073055000000,0.000082931000000,0.000257154000000,0.000184463000000 +0.000330240000000,0.000048167000000,0.000060019000000,0.000262685000000,0.000038290000000,0.000352364000000,0.000266240000000,0.000265845000000,0.017518967000000,0.017675017000000,0.000260709000000,0.000075030000000,0.000083722000000,0.000258339000000,0.000149697000000 +0.000418339000000,0.000069500000000,0.000062784000000,0.000368956000000,0.000039080000000,0.000352759000000,0.000355525000000,0.000265451000000,0.017383857000000,0.017570721000000,0.000262685000000,0.000072265000000,0.000078191000000,0.000239771000000,0.000148512000000 +0.000335376000000,0.000045796000000,0.000061994000000,0.000263475000000,0.000038290000000,0.000351573000000,0.000267820000000,0.000299820000000,0.017383461000000,0.017428498000000,0.000347624000000,0.000073845000000,0.000078191000000,0.000234635000000,0.000148512000000 +0.000423080000000,0.000045401000000,0.000063179000000,0.000287574000000,0.000038290000000,0.000416363000000,0.000265845000000,0.000268215000000,0.018012794000000,0.017204894000000,0.000265845000000,0.000109796000000,0.000080166000000,0.000276512000000,0.000151673000000 +0.000357895000000,0.000047376000000,0.000061204000000,0.000266240000000,0.000037895000000,0.000373302000000,0.000283623000000,0.000264660000000,0.017236103000000,0.017577437000000,0.000262685000000,0.000071870000000,0.000080561000000,0.000217253000000,0.000148512000000 +0.000383178000000,0.000045401000000,0.000063179000000,0.000320759000000,0.000038290000000,0.000426635000000,0.000264660000000,0.000657351000000,0.017225437000000,0.017660794000000,0.000280067000000,0.000073056000000,0.000079376000000,0.000231475000000,0.000155228000000 +0.000355525000000,0.000045006000000,0.000064760000000,0.000301401000000,0.000038685000000,0.000362635000000,0.000304956000000,0.000333401000000,0.017739807000000,0.017931412000000,0.000262290000000,0.000071080000000,0.000078191000000,0.000265055000000,0.000148908000000 +0.000380413000000,0.000059228000000,0.000060414000000,0.000269796000000,0.000037895000000,0.000549895000000,0.000274932000000,0.000286388000000,0.018008844000000,0.017822375000000,0.000335771000000,0.000073846000000,0.000077401000000,0.000237006000000,0.000148513000000 +0.000354734000000,0.000047771000000,0.000063574000000,0.000265846000000,0.000038685000000,0.000335376000000,0.000267030000000,0.000262290000000,0.017470375000000,0.017111264000000,0.000261105000000,0.000071870000000,0.000083327000000,0.000213302000000,0.000161944000000 +0.000335376000000,0.000047376000000,0.000079376000000,0.000299821000000,0.000038290000000,0.000478784000000,0.000304167000000,0.000336561000000,0.017555708000000,0.017366474000000,0.000264265000000,0.000156413000000,0.000083327000000,0.000285204000000,0.000149302000000 +0.000570833000000,0.000048166000000,0.000062388000000,0.000262290000000,0.000038290000000,0.000340907000000,0.000268216000000,0.000270191000000,0.017728745000000,0.017424153000000,0.000344463000000,0.000075031000000,0.000114932000000,0.000203425000000,0.000149697000000 +0.000386735000000,0.000046191000000,0.000062784000000,0.000272562000000,0.000037500000000,0.000329845000000,0.000269400000000,0.000266635000000,0.018311066000000,0.017706622000000,0.000267425000000,0.000071870000000,0.000079772000000,0.000232265000000,0.000222783000000 +0.000346437000000,0.000064759000000,0.000061203000000,0.000302191000000,0.000037895000000,0.000333006000000,0.000461795000000,0.000263080000000,0.018435510000000,0.017688054000000,0.000282438000000,0.000073055000000,0.000077796000000,0.000315623000000,0.000171426000000 +0.000362636000000,0.000070685000000,0.000061994000000,0.000265451000000,0.000074241000000,0.000392265000000,0.000302191000000,0.000267426000000,0.017513832000000,0.017624054000000,0.000260709000000,0.000074240000000,0.000079376000000,0.000193944000000,0.000148907000000 +0.000326684000000,0.000049747000000,0.000063179000000,0.000308907000000,0.000037895000000,0.000333795000000,0.000267426000000,0.000332610000000,0.018232448000000,0.017824745000000,0.000263870000000,0.000073846000000,0.000078191000000,0.000246883000000,0.000148512000000 +0.000413993000000,0.000047376000000,0.000063574000000,0.000262290000000,0.000038290000000,0.000367771000000,0.000262685000000,0.000269006000000,0.017834622000000,0.018097733000000,0.000337746000000,0.000110191000000,0.000077796000000,0.000278092000000,0.000165895000000 +0.000340907000000,0.000047377000000,0.000063178000000,0.000268215000000,0.000037895000000,0.000357104000000,0.000350783000000,0.000269796000000,0.017317881000000,0.017954325000000,0.000316808000000,0.000074241000000,0.000112562000000,0.000214487000000,0.000150487000000 +0.000339721000000,0.000047771000000,0.000062784000000,0.000313648000000,0.000037895000000,0.000346833000000,0.000265845000000,0.000297055000000,0.017578226000000,0.018351362000000,0.000329845000000,0.000071475000000,0.000076215000000,0.000253993000000,0.000148907000000 +0.000359080000000,0.000047376000000,0.000061203000000,0.000264265000000,0.000037895000000,0.000336956000000,0.000263475000000,0.000265055000000,0.017370820000000,0.017400844000000,0.000265450000000,0.000074636000000,0.000111377000000,0.000246093000000,0.000153648000000 +0.000329451000000,0.000074240000000,0.000060808000000,0.000308907000000,0.000037895000000,0.000363031000000,0.000301401000000,0.000263080000000,0.018597485000000,0.017673437000000,0.000270982000000,0.000073845000000,0.000083327000000,0.000330240000000,0.000241747000000 +0.000369352000000,0.000046981000000,0.000063574000000,0.000275327000000,0.000037895000000,0.000363425000000,0.000263080000000,0.000263080000000,0.017832647000000,0.017654869000000,0.000532907000000,0.000074240000000,0.000123228000000,0.000193944000000,0.000150092000000 +0.000357895000000,0.000047771000000,0.000060808000000,0.000262685000000,0.000038290000000,0.000423475000000,0.000305746000000,0.000263080000000,0.017633140000000,0.017232943000000,0.000262685000000,0.000128759000000,0.000112957000000,0.000288364000000,0.000148512000000 +0.000387129000000,0.000046981000000,0.000062389000000,0.000298635000000,0.000037500000000,0.000348808000000,0.000265056000000,0.000299820000000,0.017918770000000,0.017703066000000,0.000263475000000,0.000074240000000,0.000080956000000,0.000231080000000,0.000150883000000 +0.000328660000000,0.000045401000000,0.000061204000000,0.000264660000000,0.000038290000000,0.000357105000000,0.000265845000000,0.000265450000000,0.017297338000000,0.017798276000000,0.000260709000000,0.000073450000000,0.000080957000000,0.000310487000000,0.000167870000000 +0.000367376000000,0.000047772000000,0.000063179000000,0.000263080000000,0.000038290000000,0.000364610000000,0.000310092000000,0.000265450000000,0.017781683000000,0.017484598000000,0.000299425000000,0.000074241000000,0.000081747000000,0.000219228000000,0.000152068000000 +0.000336166000000,0.000047376000000,0.000061599000000,0.000308117000000,0.000038290000000,0.000355129000000,0.000305352000000,0.000341697000000,0.017582178000000,0.018306720000000,0.000265450000000,0.000071870000000,0.000077796000000,0.000197105000000,0.000153253000000 +0.000353549000000,0.000047771000000,0.000060808000000,0.000275722000000,0.000038685000000,0.000419524000000,0.000264660000000,0.000262685000000,0.017120746000000,0.017643016000000,0.000272956000000,0.000080167000000,0.000078586000000,0.000297056000000,0.000149697000000 +0.000340117000000,0.000045006000000,0.000063574000000,0.000361450000000,0.000038685000000,0.000331426000000,0.000298636000000,0.000283228000000,0.018040053000000,0.017906128000000,0.000299426000000,0.000094388000000,0.000099919000000,0.000194339000000,0.000216068000000 +0.000327870000000,0.000048957000000,0.000061598000000,0.000300216000000,0.000037895000000,0.000408463000000,0.000262685000000,0.000272956000000,0.016842227000000,0.017627215000000,0.000268215000000,0.000073056000000,0.000079771000000,0.000245697000000,0.000149697000000 +0.000409253000000,0.000047377000000,0.000062388000000,0.000305747000000,0.000037500000000,0.000365796000000,0.000266240000000,0.000263475000000,0.017371214000000,0.017435215000000,0.000265846000000,0.000071871000000,0.000077401000000,0.000286783000000,0.000150487000000 +0.000389105000000,0.000049351000000,0.000063573000000,0.000264661000000,0.000037895000000,0.000375673000000,0.000280462000000,0.000336561000000,0.019418818000000,0.017218721000000,0.000298635000000,0.000073451000000,0.000081746000000,0.000215278000000,0.000151277000000 +0.000419525000000,0.000047376000000,0.000062388000000,0.000263870000000,0.000037895000000,0.000364216000000,0.000267820000000,0.000268216000000,0.017828695000000,0.017755215000000,0.000264265000000,0.000073846000000,0.000078191000000,0.000231475000000,0.000153253000000 +0.000326289000000,0.000047771000000,0.000060413000000,0.000301006000000,0.000038290000000,0.000425450000000,0.000301006000000,0.000263475000000,0.018185831000000,0.017808548000000,0.000261105000000,0.000073846000000,0.000077401000000,0.000250042000000,0.000152463000000 +0.000367376000000,0.000047376000000,0.000060414000000,0.000273351000000,0.000037895000000,0.000360660000000,0.000261895000000,0.000304166000000,0.019103164000000,0.017919955000000,0.000283228000000,0.000109401000000,0.000159574000000,0.000220413000000,0.000150882000000 +0.000350388000000,0.000124018000000,0.000060809000000,0.000274932000000,0.000038290000000,0.000385944000000,0.000263475000000,0.000266635000000,0.017788004000000,0.018024646000000,0.000264661000000,0.000073845000000,0.000080167000000,0.000215278000000,0.000189598000000 +0.000400956000000,0.000047771000000,0.000062389000000,0.000286784000000,0.000056463000000,0.000334586000000,0.000308907000000,0.000341697000000,0.017990671000000,0.017738622000000,0.000331030000000,0.000072266000000,0.000078191000000,0.000317993000000,0.000150092000000 +0.000349598000000,0.000047376000000,0.000060808000000,0.000283623000000,0.000037895000000,0.000344462000000,0.000265055000000,0.000262685000000,0.017113239000000,0.017558079000000,0.000267821000000,0.000071870000000,0.000076611000000,0.000232265000000,0.000151277000000 +0.000358684000000,0.000045006000000,0.000062784000000,0.000304956000000,0.000037895000000,0.000352364000000,0.000262290000000,0.000261499000000,0.017934967000000,0.017227412000000,0.000269006000000,0.000072661000000,0.000078981000000,0.000215673000000,0.000149698000000 +0.000332611000000,0.000047377000000,0.000061598000000,0.000264661000000,0.000037895000000,0.000341697000000,0.000316018000000,0.000299426000000,0.017299313000000,0.018281041000000,0.000348808000000,0.000072266000000,0.000104660000000,0.000256364000000,0.000184463000000 +0.000348808000000,0.000047771000000,0.000062388000000,0.000262684000000,0.000037895000000,0.000373697000000,0.000269006000000,0.000264265000000,0.017069782000000,0.017019610000000,0.000266636000000,0.000076611000000,0.000076611000000,0.000210932000000,0.000152858000000 +0.000365795000000,0.000047771000000,0.000063574000000,0.000280857000000,0.000037895000000,0.000346437000000,0.000287179000000,0.000263475000000,0.017766276000000,0.017494473000000,0.000285598000000,0.000078586000000,0.000077796000000,0.000227129000000,0.000149302000000 +0.000336561000000,0.000046981000000,0.000060413000000,0.000268215000000,0.000037895000000,0.000388315000000,0.000273746000000,0.000263870000000,0.017319857000000,0.018066523000000,0.000263079000000,0.000075426000000,0.000076611000000,0.000294685000000,0.000150487000000 +0.000381598000000,0.000047376000000,0.000097154000000,0.000306932000000,0.000037894000000,0.000348808000000,0.000262290000000,0.000282043000000,0.018177930000000,0.017458128000000,0.000269401000000,0.000073846000000,0.000082141000000,0.000191574000000,0.000177352000000 +0.000334981000000,0.000047376000000,0.000060808000000,0.000267821000000,0.000038289000000,0.000376068000000,0.000302191000000,0.000312462000000,0.018099708000000,0.017383066000000,0.000303376000000,0.000074241000000,0.000081352000000,0.000234240000000,0.000147327000000 +0.000390685000000,0.000045006000000,0.000063574000000,0.000265055000000,0.000037894000000,0.000329055000000,0.000262290000000,0.000266240000000,0.017537140000000,0.019713139000000,0.000264265000000,0.000075426000000,0.000078192000000,0.000216857000000,0.000146932000000 +0.000357500000000,0.000047376000000,0.000063178000000,0.000284019000000,0.000037895000000,0.000331030000000,0.000263080000000,0.000267426000000,0.017750474000000,0.019582373000000,0.000269401000000,0.000074241000000,0.000078586000000,0.000214092000000,0.000148512000000 +0.000369746000000,0.000045401000000,0.000062388000000,0.000267030000000,0.000037895000000,0.000368166000000,0.000301401000000,0.000547524000000,0.017730325000000,0.018106424000000,0.000261894000000,0.000089648000000,0.000077796000000,0.000210932000000,0.000149697000000 +0.000364216000000,0.000045401000000,0.000064759000000,0.000303376000000,0.000037895000000,0.000331821000000,0.000266240000000,0.000280463000000,0.017458128000000,0.017696745000000,0.000261105000000,0.000073845000000,0.000078981000000,0.000302586000000,0.000147722000000 +0.000406487000000,0.000045006000000,0.000062389000000,0.000267031000000,0.000037894000000,0.000376857000000,0.000267426000000,0.000332215000000,0.017783658000000,0.018116696000000,0.000289944000000,0.000071475000000,0.000082142000000,0.000247672000000,0.000150092000000 +0.000346437000000,0.000065154000000,0.000062389000000,0.000265845000000,0.000037894000000,0.000330240000000,0.000262289000000,0.000270981000000,0.017725190000000,0.017619314000000,0.000274142000000,0.000074240000000,0.000079376000000,0.000186438000000,0.000149697000000 +0.000368166000000,0.000047771000000,0.000062389000000,0.000299031000000,0.000037894000000,0.000474437000000,0.000267821000000,0.000301796000000,0.017513832000000,0.017076894000000,0.000263080000000,0.000073451000000,0.000080562000000,0.000231475000000,0.000180907000000 +0.000331031000000,0.000045006000000,0.000065155000000,0.000267031000000,0.000037894000000,0.000344067000000,0.000309302000000,0.000268611000000,0.018151856000000,0.017796696000000,0.000347623000000,0.000073846000000,0.000078191000000,0.000193154000000,0.000146932000000 +0.000402931000000,0.000047376000000,0.000062784000000,0.000265845000000,0.000037499000000,0.000368562000000,0.000264660000000,0.000265450000000,0.017041338000000,0.017526079000000,0.000263475000000,0.000071870000000,0.000079376000000,0.000225549000000,0.000149697000000 +0.000363425000000,0.000047771000000,0.000060809000000,0.000265056000000,0.000044611000000,0.000347623000000,0.000270981000000,0.000299820000000,0.017878079000000,0.017146030000000,0.000261105000000,0.000074241000000,0.000078191000000,0.000244512000000,0.000150487000000 +0.000389500000000,0.000047771000000,0.000063574000000,0.000262684000000,0.000058043000000,0.000376462000000,0.000301796000000,0.000275721000000,0.017127462000000,0.018068893000000,0.000262290000000,0.000111377000000,0.000076611000000,0.000225154000000,0.000163919000000 +0.000338141000000,0.000045006000000,0.000067524000000,0.000300610000000,0.000037895000000,0.000403721000000,0.000284018000000,0.000261500000000,0.017921535000000,0.017183165000000,0.000311672000000,0.000076610000000,0.000076611000000,0.000243326000000,0.000152858000000 +0.000347228000000,0.000045006000000,0.000062389000000,0.000263475000000,0.000037895000000,0.000394635000000,0.000269795000000,0.000304562000000,0.018117486000000,0.017065042000000,0.000299821000000,0.000072265000000,0.000078191000000,0.000190389000000,0.000151278000000 +0.000373697000000,0.000108216000000,0.000063574000000,0.000262685000000,0.000038685000000,0.000328661000000,0.000265451000000,0.000272956000000,0.017106918000000,0.017309980000000,0.000346438000000,0.000071475000000,0.000078192000000,0.000343673000000,0.000150488000000 +0.000359870000000,0.000044611000000,0.000063178000000,0.000314043000000,0.000037894000000,0.000356709000000,0.000265451000000,0.000267030000000,0.018160152000000,0.017196992000000,0.000263870000000,0.000071475000000,0.000077796000000,0.000193944000000,0.000161154000000 +0.000368561000000,0.000046981000000,0.000063969000000,0.000263475000000,0.000038290000000,0.000329846000000,0.000304956000000,0.000265055000000,0.017187116000000,0.018148301000000,0.000312463000000,0.000075030000000,0.000077796000000,0.000228709000000,0.000149303000000 +0.000335771000000,0.000045401000000,0.000060413000000,0.000265055000000,0.000037895000000,0.000331820000000,0.000267031000000,0.000267426000000,0.018057831000000,0.017102573000000,0.000273747000000,0.000071080000000,0.000078586000000,0.000215673000000,0.000149698000000 +0.000400561000000,0.000047376000000,0.000184858000000,0.000297846000000,0.000037895000000,0.000378833000000,0.000320759000000,0.000336956000000,0.018015165000000,0.017397288000000,0.000309302000000,0.000071475000000,0.000094784000000,0.000195524000000,0.000149302000000 +0.000350784000000,0.000045402000000,0.000063179000000,0.000267426000000,0.000037895000000,0.000334586000000,0.000299031000000,0.000267820000000,0.017417832000000,0.017641041000000,0.000270586000000,0.000073846000000,0.000098339000000,0.000253204000000,0.000148907000000 +0.000367771000000,0.000047771000000,0.000084117000000,0.000264265000000,0.000038290000000,0.000460610000000,0.000269796000000,0.000261500000000,0.017304844000000,0.017123116000000,0.000270191000000,0.000071870000000,0.000079377000000,0.000192364000000,0.000148117000000 +0.000334586000000,0.000067524000000,0.000099129000000,0.000457845000000,0.000037895000000,0.000357105000000,0.000266240000000,0.000302586000000,0.017752449000000,0.017807362000000,0.000265450000000,0.000071080000000,0.000079376000000,0.000250833000000,0.000148117000000 +0.000400957000000,0.000047772000000,0.000081352000000,0.000263080000000,0.000038290000000,0.000397006000000,0.000372512000000,0.000266241000000,0.017223066000000,0.017560448000000,0.000261500000000,0.000071475000000,0.000081351000000,0.000226339000000,0.000151278000000 +0.000355919000000,0.000045006000000,0.000063969000000,0.000263474000000,0.000037895000000,0.000338141000000,0.000268610000000,0.000265450000000,0.017977239000000,0.017472351000000,0.000282833000000,0.000071871000000,0.000077796000000,0.000206191000000,0.000154438000000 +0.000349599000000,0.000047376000000,0.000061203000000,0.000268611000000,0.000037895000000,0.000387524000000,0.000314438000000,0.000261104000000,0.017892695000000,0.017970522000000,0.000325500000000,0.000073845000000,0.000076611000000,0.000215278000000,0.000148513000000 +0.000327870000000,0.000045401000000,0.000064364000000,0.000332611000000,0.000037895000000,0.000328265000000,0.000263870000000,0.000267821000000,0.017236104000000,0.017360548000000,0.000269401000000,0.000074240000000,0.000078192000000,0.000214882000000,0.000150093000000 +0.000337351000000,0.000047377000000,0.000063179000000,0.000262685000000,0.000039080000000,0.000331821000000,0.000268611000000,0.000299425000000,0.017526868000000,0.017668301000000,0.000297055000000,0.000102290000000,0.000093599000000,0.000230685000000,0.000148512000000 +0.000374488000000,0.000047772000000,0.000062388000000,0.000267030000000,0.000037895000000,0.000367771000000,0.000311278000000,0.000263475000000,0.017384647000000,0.017727165000000,0.000274932000000,0.000071475000000,0.000078191000000,0.000225549000000,0.000148907000000 +0.000352364000000,0.000049352000000,0.000062784000000,0.000299821000000,0.000037895000000,0.000354339000000,0.000268610000000,0.000269401000000,0.017198573000000,0.017298128000000,0.000316808000000,0.000073055000000,0.000076215000000,0.000216463000000,0.000153253000000 +0.000362240000000,0.000046982000000,0.000063574000000,0.000271772000000,0.000037895000000,0.000329056000000,0.000396610000000,0.000341697000000,0.018285387000000,0.017534375000000,0.000269006000000,0.000071870000000,0.000078586000000,0.000250438000000,0.000154438000000 +0.000326290000000,0.000050537000000,0.000061204000000,0.000263870000000,0.000037895000000,0.000335771000000,0.000263870000000,0.000262290000000,0.018481732000000,0.017509091000000,0.000265055000000,0.000076216000000,0.000077401000000,0.000212907000000,0.000149302000000 +0.000424265000000,0.000047376000000,0.000060809000000,0.000281253000000,0.000037895000000,0.000413598000000,0.000267425000000,0.000271376000000,0.017432449000000,0.017688054000000,0.000301795000000,0.000073846000000,0.000082932000000,0.000217253000000,0.000379228000000 +0.000351968000000,0.000045401000000,0.000061204000000,0.000265450000000,0.000074240000000,0.000412413000000,0.000270191000000,0.000336561000000,0.018658720000000,0.018055461000000,0.000264265000000,0.000109401000000,0.000079771000000,0.000248857000000,0.000167475000000 +0.000369747000000,0.000046981000000,0.000060809000000,0.000302586000000,0.000037895000000,0.000416364000000,0.000275327000000,0.000267030000000,0.018162522000000,0.018024646000000,0.000265055000000,0.000071080000000,0.000076611000000,0.000224759000000,0.000146932000000 +0.000330635000000,0.000045401000000,0.000064364000000,0.000267031000000,0.000037895000000,0.000329055000000,0.000351573000000,0.000303771000000,0.017876499000000,0.017807757000000,0.000269006000000,0.000072265000000,0.000078586000000,0.000248067000000,0.000148512000000 +0.000329055000000,0.000044216000000,0.000112562000000,0.000268611000000,0.000039080000000,0.000523030000000,0.000263475000000,0.000264265000000,0.017169338000000,0.017795511000000,0.000270981000000,0.000071080000000,0.000076611000000,0.000230290000000,0.000148512000000 +0.000415574000000,0.000045401000000,0.000060413000000,0.000350389000000,0.000037499000000,0.000355920000000,0.000264266000000,0.000263080000000,0.017821979000000,0.017211610000000,0.000305746000000,0.000073846000000,0.000076216000000,0.000218833000000,0.000148117000000 +0.000333006000000,0.000047376000000,0.000063179000000,0.000269006000000,0.000037895000000,0.000380414000000,0.000345647000000,0.000318389000000,0.017692399000000,0.017582572000000,0.000263870000000,0.000071475000000,0.000079771000000,0.000210932000000,0.000153648000000 +0.000386339000000,0.000069895000000,0.000062388000000,0.000308117000000,0.000037895000000,0.000338141000000,0.000263870000000,0.000263475000000,0.017818029000000,0.018230868000000,0.000266240000000,0.000074240000000,0.000078586000000,0.000252413000000,0.000148117000000 +0.000329846000000,0.000082537000000,0.000060809000000,0.000264660000000,0.000037895000000,0.000406092000000,0.000336166000000,0.000264265000000,0.017770227000000,0.017516992000000,0.000303771000000,0.000130339000000,0.000078586000000,0.000248067000000,0.000147327000000 +0.000518684000000,0.000047377000000,0.000062389000000,0.000263870000000,0.000037895000000,0.000397005000000,0.000263475000000,0.000308512000000,0.017820794000000,0.018155016000000,0.000270981000000,0.000091228000000,0.000076611000000,0.000179327000000,0.000148907000000 +0.000342092000000,0.000045006000000,0.000062388000000,0.000358290000000,0.000037895000000,0.000401747000000,0.000263475000000,0.000266241000000,0.017365684000000,0.016935066000000,0.000292710000000,0.000073451000000,0.000079376000000,0.000290734000000,0.000152068000000 +0.000372512000000,0.000045006000000,0.000061204000000,0.000272561000000,0.000037895000000,0.000325895000000,0.000351179000000,0.000299426000000,0.017392548000000,0.017354622000000,0.000270586000000,0.000072265000000,0.000078191000000,0.000180907000000,0.000151278000000 +0.000351179000000,0.000064364000000,0.000063179000000,0.000270982000000,0.000037895000000,0.000410043000000,0.000266240000000,0.000264660000000,0.019569731000000,0.017936943000000,0.000268611000000,0.000071870000000,0.000078191000000,0.000253599000000,0.000150092000000 +0.000479178000000,0.000047771000000,0.000061203000000,0.000266241000000,0.000037500000000,0.000330636000000,0.000352364000000,0.000267030000000,0.018510966000000,0.016954820000000,0.000301401000000,0.000071080000000,0.000092019000000,0.000283228000000,0.000146932000000 +0.000331031000000,0.000046191000000,0.000063178000000,0.000263475000000,0.000038685000000,0.000331030000000,0.000268611000000,0.000308907000000,0.017588498000000,0.017970128000000,0.000268215000000,0.000073451000000,0.000076611000000,0.000189994000000,0.000169055000000 +0.000398981000000,0.000044611000000,0.000062388000000,0.000338141000000,0.000037500000000,0.000384364000000,0.000262685000000,0.000260710000000,0.018148696000000,0.016946523000000,0.000355524000000,0.000071870000000,0.000080167000000,0.000243326000000,0.000146932000000 +0.000328660000000,0.000047376000000,0.000080167000000,0.000270586000000,0.000038290000000,0.000354339000000,0.000638388000000,0.000262290000000,0.018060992000000,0.018551658000000,0.000263475000000,0.000073846000000,0.000076611000000,0.000202241000000,0.000149698000000 +0.000402932000000,0.000045401000000,0.000061598000000,0.000263080000000,0.000045401000000,0.000449154000000,0.000318389000000,0.000280858000000,0.017219906000000,0.017851214000000,0.000263870000000,0.000074241000000,0.000082932000000,0.000276512000000,0.000149697000000 +0.000340512000000,0.000047376000000,0.000063969000000,0.000338537000000,0.000037895000000,0.000365006000000,0.000276907000000,0.000260710000000,0.017732696000000,0.017366078000000,0.000345253000000,0.000073845000000,0.000082537000000,0.000220414000000,0.000171031000000 +0.000331821000000,0.000047771000000,0.000063574000000,0.000263870000000,0.000038685000000,0.000448364000000,0.000272561000000,0.000297055000000,0.017410326000000,0.017209634000000,0.000269796000000,0.000074241000000,0.000131525000000,0.000231870000000,0.000148117000000 +0.000391474000000,0.000080167000000,0.000061203000000,0.000321944000000,0.000040266000000,0.000361450000000,0.000340907000000,0.000261500000000,0.017657239000000,0.017297338000000,0.000264660000000,0.000106635000000,0.000077401000000,0.000316809000000,0.000147722000000 +0.000339327000000,0.000047772000000,0.000060808000000,0.000264660000000,0.000037895000000,0.000391475000000,0.000269401000000,0.000270587000000,0.017639461000000,0.017710967000000,0.000309697000000,0.000072265000000,0.000077796000000,0.000203031000000,0.000152858000000 +0.000342488000000,0.000047376000000,0.000067524000000,0.000265845000000,0.000087672000000,0.000348413000000,0.000267820000000,0.000299821000000,0.017400844000000,0.017825140000000,0.000261895000000,0.000074241000000,0.000082537000000,0.000230289000000,0.000147327000000 +0.000350388000000,0.000046981000000,0.000063179000000,0.000311672000000,0.000040265000000,0.000400166000000,0.000266635000000,0.000263870000000,0.017590079000000,0.017797881000000,0.000266240000000,0.000071870000000,0.000079772000000,0.000197104000000,0.000167475000000 +0.000389105000000,0.000047376000000,0.000060809000000,0.000314438000000,0.000052907000000,0.000327870000000,0.000263080000000,0.000262685000000,0.018002128000000,0.017557683000000,0.000261499000000,0.000073055000000,0.000082142000000,0.000223969000000,0.000152068000000 +0.000326685000000,0.000046981000000,0.000063179000000,0.000355129000000,0.000038290000000,0.000399771000000,0.000301796000000,0.000430981000000,0.017409930000000,0.017987906000000,0.000260315000000,0.000074241000000,0.000077006000000,0.000316808000000,0.000152858000000 +0.000419129000000,0.000045401000000,0.000062784000000,0.000450339000000,0.000038290000000,0.000350784000000,0.000276117000000,0.000269006000000,0.017570720000000,0.018763411000000,0.000317598000000,0.000087672000000,0.000076216000000,0.000200660000000,0.000148117000000 +0.000351178000000,0.000049352000000,0.000062389000000,0.000301006000000,0.000038290000000,0.000330240000000,0.000265846000000,0.000332610000000,0.017062276000000,0.018344251000000,0.000269796000000,0.000073846000000,0.000078191000000,0.000226734000000,0.000146932000000 +0.000365796000000,0.000045401000000,0.000060413000000,0.000263870000000,0.000038289000000,0.000328265000000,0.000301401000000,0.000262685000000,0.017997387000000,0.017546227000000,0.000266240000000,0.000071870000000,0.000078587000000,0.000216462000000,0.000147722000000 +0.000348808000000,0.000047772000000,0.000133895000000,0.000264660000000,0.000038290000000,0.000351574000000,0.000263475000000,0.000263475000000,0.017727165000000,0.019329139000000,0.000302191000000,0.000073845000000,0.000134289000000,0.000231079000000,0.000147327000000 +0.000403722000000,0.000045796000000,0.000061994000000,0.000314833000000,0.000037895000000,0.000398981000000,0.000267821000000,0.000335771000000,0.017430869000000,0.018450522000000,0.000264265000000,0.000074636000000,0.000077796000000,0.000270586000000,0.000154043000000 +0.000328660000000,0.000045006000000,0.000063179000000,0.000262290000000,0.000037500000000,0.000328265000000,0.000314833000000,0.000268216000000,0.017411906000000,0.017726770000000,0.000265450000000,0.000075031000000,0.000078191000000,0.000193154000000,0.000148907000000 +0.000395030000000,0.000047376000000,0.000063178000000,0.000263080000000,0.000038290000000,0.000417944000000,0.000263475000000,0.000265055000000,0.017660795000000,0.017376351000000,0.000280068000000,0.000128759000000,0.000078191000000,0.000254389000000,0.000156018000000 +0.000337352000000,0.000048166000000,0.000063179000000,0.000268611000000,0.000037500000000,0.000331820000000,0.000263080000000,0.000269005000000,0.017174079000000,0.017689634000000,0.000267030000000,0.000074240000000,0.000078981000000,0.000277302000000,0.000148907000000 +0.000348808000000,0.000044611000000,0.000060808000000,0.000263080000000,0.000037500000000,0.000630092000000,0.000264660000000,0.000265055000000,0.018237584000000,0.017424943000000,0.000308117000000,0.000071870000000,0.000080957000000,0.000245303000000,0.000150487000000 +0.000407277000000,0.000046981000000,0.000061599000000,0.000302981000000,0.000037895000000,0.000351573000000,0.000281253000000,0.000350783000000,0.017292598000000,0.017789585000000,0.000265450000000,0.000074240000000,0.000169450000000,0.000210536000000,0.000150487000000 +0.000329845000000,0.000047771000000,0.000095969000000,0.000267031000000,0.000037895000000,0.000386734000000,0.000299425000000,0.000263870000000,0.017672251000000,0.017387412000000,0.000266636000000,0.000074240000000,0.000092019000000,0.000261500000000,0.000150488000000 +0.000397796000000,0.000045401000000,0.000077796000000,0.000267820000000,0.000037895000000,0.000362636000000,0.000267426000000,0.000265055000000,0.017454573000000,0.018421683000000,0.000336957000000,0.000073846000000,0.000078981000000,0.000236611000000,0.000148907000000 +0.000343673000000,0.000047772000000,0.000063574000000,0.000304167000000,0.000037895000000,0.000415179000000,0.000265055000000,0.000279277000000,0.017179610000000,0.018661090000000,0.000267425000000,0.000108610000000,0.000082537000000,0.000187228000000,0.000149302000000 +0.000528166000000,0.000045006000000,0.000060809000000,0.000269400000000,0.000037895000000,0.000333796000000,0.000359475000000,0.000260710000000,0.017631165000000,0.018167658000000,0.000263080000000,0.000071870000000,0.000078981000000,0.000273746000000,0.000148512000000 +0.000352364000000,0.000045401000000,0.000062389000000,0.000266240000000,0.000037895000000,0.000371327000000,0.000267426000000,0.000356709000000,0.017394918000000,0.018504251000000,0.000284018000000,0.000073055000000,0.000162339000000,0.000196314000000,0.000148512000000 +0.000368957000000,0.000047376000000,0.000080166000000,0.000266240000000,0.000037895000000,0.000344068000000,0.000265450000000,0.000261895000000,0.017500795000000,0.017114424000000,0.000262685000000,0.000071080000000,0.000082536000000,0.000318784000000,0.000149697000000 +0.000383178000000,0.000044611000000,0.000061994000000,0.000263475000000,0.000054488000000,0.000413598000000,0.000286783000000,0.000264661000000,0.018092991000000,0.017614968000000,0.000307326000000,0.000073450000000,0.000076216000000,0.000312462000000,0.000151673000000 +0.000366586000000,0.000045401000000,0.000061204000000,0.000304166000000,0.000037895000000,0.000330241000000,0.000269796000000,0.000306537000000,0.017476696000000,0.017793535000000,0.000263079000000,0.000074635000000,0.000078981000000,0.000191574000000,0.000150488000000 +0.000367376000000,0.000047376000000,0.000060808000000,0.000266240000000,0.000038290000000,0.000356315000000,0.000306932000000,0.000262685000000,0.017699115000000,0.017509881000000,0.000268216000000,0.000074240000000,0.000078191000000,0.000257944000000,0.000149303000000 +0.000364611000000,0.000045006000000,0.000062784000000,0.000266636000000,0.000037895000000,0.000328265000000,0.000269006000000,0.000294685000000,0.017956696000000,0.017162622000000,0.000410043000000,0.000086488000000,0.000077006000000,0.000231475000000,0.000149698000000 +0.000328660000000,0.000044611000000,0.000063179000000,0.000301006000000,0.000037895000000,0.000334191000000,0.000267030000000,0.000278093000000,0.017395708000000,0.017204104000000,0.000260709000000,0.000073451000000,0.000085302000000,0.000229894000000,0.000151278000000 +0.000371327000000,0.000048167000000,0.000062784000000,0.000267821000000,0.000037895000000,0.000365796000000,0.000321154000000,0.000265846000000,0.017175659000000,0.017584548000000,0.000286389000000,0.000071080000000,0.000082142000000,0.000194340000000,0.000196710000000 +0.000330240000000,0.000047771000000,0.000060808000000,0.000272561000000,0.000037895000000,0.000332216000000,0.000268215000000,0.000358289000000,0.017483017000000,0.017977634000000,0.000263870000000,0.000071870000000,0.000077796000000,0.000293499000000,0.000148117000000 +0.000352758000000,0.000047376000000,0.000060809000000,0.000316413000000,0.000037895000000,0.000377648000000,0.000265055000000,0.000263475000000,0.017796301000000,0.017015660000000,0.000273747000000,0.000073450000000,0.000084117000000,0.000228315000000,0.000149697000000 +0.000365006000000,0.000103080000000,0.000060809000000,0.000269401000000,0.000037895000000,0.000359475000000,0.000264660000000,0.000266241000000,0.018108004000000,0.018109980000000,0.000373302000000,0.000074635000000,0.000078191000000,0.000208166000000,0.000148907000000 +0.000334191000000,0.000081747000000,0.000061204000000,0.000272166000000,0.000037895000000,0.000435327000000,0.000264265000000,0.000280858000000,0.017738226000000,0.017754819000000,0.000269796000000,0.000070290000000,0.000127969000000,0.000278882000000,0.000151673000000 +0.000365401000000,0.000045796000000,0.000062389000000,0.000267030000000,0.000037895000000,0.000334586000000,0.000299030000000,0.000273351000000,0.017428104000000,0.017129042000000,0.000262685000000,0.000074635000000,0.000076611000000,0.000235030000000,0.000150092000000 +0.000331031000000,0.000045006000000,0.000059623000000,0.000266241000000,0.000037895000000,0.000362635000000,0.000265056000000,0.000304167000000,0.017941683000000,0.017705436000000,0.000264265000000,0.000071080000000,0.000076216000000,0.000244117000000,0.000155228000000 +0.000416758000000,0.000046981000000,0.000060809000000,0.000305351000000,0.000039080000000,0.000334586000000,0.000265056000000,0.000266635000000,0.017384647000000,0.017794325000000,0.000268611000000,0.000073450000000,0.000081746000000,0.000309697000000,0.000151278000000 +0.000353549000000,0.000045401000000,0.000063179000000,0.000263870000000,0.000037499000000,0.000337351000000,0.000299821000000,0.000263870000000,0.017924300000000,0.017101387000000,0.000303771000000,0.000072265000000,0.000078192000000,0.000210932000000,0.000150092000000 +0.000406882000000,0.000047376000000,0.000061598000000,0.000263870000000,0.000038685000000,0.000329055000000,0.000301796000000,0.000632068000000,0.017695955000000,0.017825140000000,0.000261499000000,0.000073846000000,0.000080561000000,0.000217648000000,0.000146932000000 +0.000335771000000,0.000045006000000,0.000060413000000,0.000323130000000,0.000037895000000,0.000346043000000,0.000332215000000,0.000281647000000,0.017170918000000,0.017229783000000,0.000262290000000,0.000177747000000,0.000095179000000,0.000285599000000,0.000147722000000 +0.000372511000000,0.000047772000000,0.000061203000000,0.000269401000000,0.000037895000000,0.000395031000000,0.000266636000000,0.000278092000000,0.019805188000000,0.017812498000000,0.000309302000000,0.000160364000000,0.000082142000000,0.000227919000000,0.000149697000000 +0.000336956000000,0.000046982000000,0.000062784000000,0.000317599000000,0.000038290000000,0.000368166000000,0.000266636000000,0.000270586000000,0.017868202000000,0.017799856000000,0.000265845000000,0.000089648000000,0.000078586000000,0.000232661000000,0.000454290000000 +0.000336956000000,0.000047376000000,0.000063179000000,0.000264265000000,0.000039475000000,0.000375277000000,0.000309302000000,0.000301401000000,0.017354622000000,0.018103658000000,0.000265845000000,0.000073450000000,0.000078586000000,0.000272956000000,0.000174981000000 +0.000416759000000,0.000045006000000,0.000060809000000,0.000262289000000,0.000039080000000,0.000363820000000,0.000263475000000,0.000267820000000,0.017399659000000,0.017829486000000,0.000334191000000,0.000071871000000,0.000078586000000,0.000229500000000,0.000182882000000 +0.000330635000000,0.000048167000000,0.000061993000000,0.000315623000000,0.000038290000000,0.000393450000000,0.000274537000000,0.000269006000000,0.017239660000000,0.017627610000000,0.000265451000000,0.000072660000000,0.000079772000000,0.000209352000000,0.000149697000000 +0.000369746000000,0.000047376000000,0.000061599000000,0.000264265000000,0.000055277000000,0.000360265000000,0.000300611000000,0.000305746000000,0.017629979000000,0.017664350000000,0.000300215000000,0.000073845000000,0.000094389000000,0.000334981000000,0.000148117000000 +0.000358290000000,0.000047772000000,0.000062784000000,0.000274932000000,0.000040661000000,0.000365401000000,0.000264660000000,0.000265450000000,0.017695165000000,0.017694375000000,0.000263080000000,0.000071475000000,0.000076611000000,0.000252808000000,0.000148512000000 +0.000383179000000,0.000050537000000,0.000063178000000,0.000302586000000,0.000040660000000,0.000357104000000,0.000269006000000,0.000275326000000,0.018330424000000,0.017316696000000,0.000261895000000,0.000071475000000,0.000077006000000,0.000183672000000,0.000187228000000 +0.000346833000000,0.000050536000000,0.000062389000000,0.000267031000000,0.000038290000000,0.000332216000000,0.000263870000000,0.000261895000000,0.017935362000000,0.017370819000000,0.000351574000000,0.000107821000000,0.000078191000000,0.000321944000000,0.000147722000000 +0.000417944000000,0.000047376000000,0.000063179000000,0.000269006000000,0.000037895000000,0.000348019000000,0.000262684000000,0.000275722000000,0.017349091000000,0.017685684000000,0.000266635000000,0.000074240000000,0.000077796000000,0.000191574000000,0.000156809000000 +0.000354339000000,0.000045401000000,0.000063574000000,0.000263475000000,0.000038290000000,0.000332611000000,0.000388709000000,0.000301796000000,0.020166669000000,0.017622079000000,0.000266240000000,0.000072265000000,0.000114142000000,0.000233845000000,0.000148512000000 +0.000402537000000,0.000067129000000,0.000157203000000,0.000274536000000,0.000038290000000,0.000370537000000,0.000280068000000,0.000266240000000,0.017782869000000,0.018077190000000,0.000264660000000,0.000071870000000,0.000077401000000,0.000261105000000,0.000184857000000 +0.000345253000000,0.000045401000000,0.000061598000000,0.000299426000000,0.000037500000000,0.000335376000000,0.000262685000000,0.000273351000000,0.017127462000000,0.017751263000000,0.000274142000000,0.000074241000000,0.000080562000000,0.000214092000000,0.000150487000000 +0.000393055000000,0.000045401000000,0.000061994000000,0.000265845000000,0.000038290000000,0.000402537000000,0.000269006000000,0.000303771000000,0.018286967000000,0.017078869000000,0.000500907000000,0.000073450000000,0.000079771000000,0.000250043000000,0.000147327000000 +0.000370536000000,0.000045401000000,0.000062784000000,0.000272561000000,0.000037895000000,0.000332215000000,0.000268611000000,0.000296660000000,0.017472350000000,0.018411016000000,0.000275722000000,0.000107821000000,0.000079376000000,0.000250833000000,0.000148512000000 +0.000357104000000,0.000045401000000,0.000060809000000,0.000304166000000,0.000037895000000,0.000371722000000,0.000300216000000,0.000300611000000,0.016857635000000,0.017313140000000,0.000335376000000,0.000072265000000,0.000081352000000,0.000245302000000,0.000194339000000 +0.000370142000000,0.000045006000000,0.000061203000000,0.000263080000000,0.000037894000000,0.000333796000000,0.000269006000000,0.000262290000000,0.016577536000000,0.017172499000000,0.000264660000000,0.000073846000000,0.000123228000000,0.000191574000000,0.000150092000000 +0.000329845000000,0.000045797000000,0.000063574000000,0.000269401000000,0.000037894000000,0.000348413000000,0.000265450000000,0.000263475000000,0.016703561000000,0.017419412000000,0.000266635000000,0.000073846000000,0.000084117000000,0.000338932000000,0.000152067000000 +0.000364610000000,0.000045006000000,0.000063179000000,0.000264265000000,0.000037894000000,0.000418734000000,0.000336166000000,0.000304561000000,0.017332894000000,0.017520153000000,0.000302191000000,0.000077006000000,0.000077796000000,0.000241351000000,0.000150093000000 +0.000329056000000,0.000048166000000,0.000061599000000,0.000267821000000,0.000037895000000,0.000347228000000,0.000269796000000,0.000264265000000,0.016466524000000,0.017992646000000,0.000264661000000,0.000071080000000,0.000078191000000,0.000209352000000,0.000186043000000 +0.000374092000000,0.000045401000000,0.000063179000000,0.000336957000000,0.000038685000000,0.000385944000000,0.000264265000000,0.000265845000000,0.016739116000000,0.017424548000000,0.000260710000000,0.000108215000000,0.000076611000000,0.000298636000000,0.000149698000000 +0.000359080000000,0.000049351000000,0.000062783000000,0.000283228000000,0.000037895000000,0.000335771000000,0.000271376000000,0.000304957000000,0.017278770000000,0.018196497000000,0.000260314000000,0.000071080000000,0.000077796000000,0.000193549000000,0.000149698000000 +0.000363426000000,0.000045006000000,0.000110586000000,0.000274142000000,0.000037895000000,0.000352759000000,0.000265056000000,0.000270191000000,0.016882919000000,0.017595214000000,0.000260710000000,0.000071870000000,0.000154043000000,0.000229500000000,0.000151278000000 +0.000356709000000,0.000046586000000,0.000062784000000,0.000273746000000,0.000038290000000,0.000334191000000,0.000304166000000,0.000303772000000,0.017018819000000,0.017419807000000,0.000307722000000,0.000075821000000,0.000189204000000,0.000315228000000,0.000184858000000 +0.000332215000000,0.000047376000000,0.000064759000000,0.000264661000000,0.000070685000000,0.000350783000000,0.000263079000000,0.000270981000000,0.017047264000000,0.018836497000000,0.000266241000000,0.000073846000000,0.000094784000000,0.000216463000000,0.000148512000000 +0.000438882000000,0.000044611000000,0.000062783000000,0.000312462000000,0.000038290000000,0.000331821000000,0.000264660000000,0.000269401000000,0.016755709000000,0.018162523000000,0.000265845000000,0.000073846000000,0.000078191000000,0.000233450000000,0.000149698000000 +0.000336562000000,0.000047377000000,0.000063178000000,0.000266636000000,0.000038290000000,0.000388709000000,0.000338537000000,0.000300216000000,0.016861190000000,0.018196102000000,0.000302191000000,0.000073845000000,0.000112561000000,0.000284019000000,0.000151278000000 +0.000330636000000,0.000047771000000,0.000061204000000,0.000265845000000,0.000037895000000,0.000327870000000,0.000262289000000,0.000263475000000,0.016531709000000,0.018528350000000,0.000323129000000,0.000071870000000,0.000078191000000,0.000218833000000,0.000193944000000 +0.000353549000000,0.000045006000000,0.000060019000000,0.000317993000000,0.000037895000000,0.000376858000000,0.000265450000000,0.000261499000000,0.016943758000000,0.018376646000000,0.000306536000000,0.000073451000000,0.000076216000000,0.000201845000000,0.000152858000000 +0.000329055000000,0.000045006000000,0.000094389000000,0.000263080000000,0.000037894000000,0.000370931000000,0.000298635000000,0.000346438000000,0.017872548000000,0.017485782000000,0.000268611000000,0.000073450000000,0.000081352000000,0.000294290000000,0.000151673000000 +0.000336957000000,0.000046587000000,0.000127573000000,0.000263475000000,0.000038289000000,0.000367376000000,0.000268611000000,0.000266636000000,0.017558474000000,0.017452203000000,0.000265055000000,0.000071475000000,0.000079772000000,0.000214882000000,0.000148117000000 +0.000362635000000,0.000047376000000,0.000062389000000,0.000301796000000,0.000038685000000,0.000332215000000,0.000284018000000,0.000306142000000,0.017100597000000,0.017563214000000,0.000346438000000,0.000071476000000,0.000084512000000,0.000202636000000,0.000230685000000 +0.000359079000000,0.000046981000000,0.000060018000000,0.000263870000000,0.000038290000000,0.000359475000000,0.000267031000000,0.000263080000000,0.017040548000000,0.018063362000000,0.000267426000000,0.000071475000000,0.000079772000000,0.000323919000000,0.000153253000000 +0.000390684000000,0.000047376000000,0.000060414000000,0.000302191000000,0.000037895000000,0.000333796000000,0.000315623000000,0.000404512000000,0.017142869000000,0.017110474000000,0.000266635000000,0.000090833000000,0.000078982000000,0.000208957000000,0.000148907000000 +0.000371721000000,0.000066734000000,0.000080166000000,0.000266240000000,0.000037895000000,0.000357894000000,0.000334981000000,0.000268216000000,0.016405685000000,0.017532399000000,0.000265845000000,0.000073450000000,0.000079771000000,0.000280067000000,0.000149302000000 +0.000372512000000,0.000047376000000,0.000060809000000,0.000268611000000,0.000037895000000,0.000374883000000,0.000266240000000,0.000262290000000,0.016981684000000,0.018220597000000,0.000265056000000,0.000074636000000,0.000080562000000,0.000249648000000,0.000148117000000 +0.000348413000000,0.000059228000000,0.000062784000000,0.000359475000000,0.000039080000000,0.000330240000000,0.000274142000000,0.000310092000000,0.016947314000000,0.017259412000000,0.000297845000000,0.000073450000000,0.000078191000000,0.000193549000000,0.000147722000000 +0.000328265000000,0.000045401000000,0.000060809000000,0.000266635000000,0.000039080000000,0.000400561000000,0.000265056000000,0.000266241000000,0.016839067000000,0.017751659000000,0.000264265000000,0.000074240000000,0.000079771000000,0.000245302000000,0.000151673000000 +0.000329450000000,0.000047376000000,0.000062388000000,0.000271771000000,0.000037895000000,0.000411623000000,0.000269796000000,0.000268611000000,0.016919265000000,0.017784054000000,0.000261499000000,0.000071475000000,0.000078191000000,0.000374092000000,0.000152462000000 +0.000350389000000,0.000047376000000,0.000060413000000,0.000267425000000,0.000037895000000,0.000364215000000,0.000391475000000,0.000309697000000,0.017593634000000,0.016922820000000,0.000317203000000,0.000071475000000,0.000080561000000,0.000256759000000,0.000150882000000 +0.000325894000000,0.000046981000000,0.000062389000000,0.000269796000000,0.000037895000000,0.000353154000000,0.000397006000000,0.000278882000000,0.016776647000000,0.018332794000000,0.000261499000000,0.000072660000000,0.000078192000000,0.000267425000000,0.000151672000000 +0.000346043000000,0.000047376000000,0.000077402000000,0.000339722000000,0.000037895000000,0.000404512000000,0.000572808000000,0.000264266000000,0.016755314000000,0.017704251000000,0.000262290000000,0.000073846000000,0.000076611000000,0.000237006000000,0.000149697000000 +0.000426240000000,0.000114932000000,0.000062388000000,0.000267031000000,0.000037499000000,0.000341697000000,0.000283623000000,0.000264661000000,0.016713437000000,0.017784448000000,0.000314043000000,0.000071475000000,0.000076216000000,0.000447573000000,0.000148907000000 +0.000347228000000,0.000047376000000,0.000060808000000,0.000273351000000,0.000037894000000,0.000329055000000,0.000350784000000,0.000261894000000,0.016694475000000,0.017623659000000,0.000262685000000,0.000071870000000,0.000077401000000,0.000201056000000,0.000147722000000 +0.000400166000000,0.000047376000000,0.000060809000000,0.000300216000000,0.000037894000000,0.000335376000000,0.000262289000000,0.000307722000000,0.016761634000000,0.017121141000000,0.000301796000000,0.000071080000000,0.000269796000000,0.000257549000000,0.000146932000000 +0.000328660000000,0.000045401000000,0.000063969000000,0.000270191000000,0.000093203000000,0.000328660000000,0.000322339000000,0.000266240000000,0.016837486000000,0.017398474000000,0.000267426000000,0.000111771000000,0.000077006000000,0.000385944000000,0.000147326000000 +0.000452315000000,0.000047771000000,0.000064364000000,0.000263870000000,0.000074636000000,0.000368956000000,0.000279673000000,0.000264265000000,0.017218326000000,0.017385437000000,0.000262684000000,0.000073845000000,0.000079376000000,0.000236216000000,0.000148117000000 +0.000393450000000,0.000082537000000,0.000084512000000,0.000323919000000,0.000055278000000,0.000341697000000,0.000289154000000,0.000314833000000,0.016651413000000,0.017252301000000,0.000305747000000,0.000073056000000,0.000080562000000,0.000221599000000,0.000216858000000 +0.000365006000000,0.000045006000000,0.000062784000000,0.000267426000000,0.000053697000000,0.000361846000000,0.000347623000000,0.000264265000000,0.017303659000000,0.017246771000000,0.000261500000000,0.000073846000000,0.000082537000000,0.000204611000000,0.000149697000000 +0.000349598000000,0.000065154000000,0.000063179000000,0.000301796000000,0.000069499000000,0.000345648000000,0.000264660000000,0.000323525000000,0.016895956000000,0.017639461000000,0.000267031000000,0.000071475000000,0.000112166000000,0.000228315000000,0.000152463000000 +0.000391080000000,0.000071475000000,0.000061204000000,0.000329450000000,0.000037895000000,0.000380018000000,0.000338536000000,0.000336561000000,0.017082030000000,0.017529634000000,0.000302191000000,0.000071870000000,0.000080562000000,0.000193944000000,0.000273351000000 +0.000338932000000,0.000047376000000,0.000060808000000,0.000264265000000,0.000037895000000,0.000351179000000,0.000262290000000,0.000263475000000,0.017250325000000,0.017378326000000,0.000264265000000,0.000110191000000,0.000078586000000,0.000268610000000,0.000147326000000 +0.000334191000000,0.000047771000000,0.000060808000000,0.000263475000000,0.000037895000000,0.000331820000000,0.000265056000000,0.000302586000000,0.016617832000000,0.017525289000000,0.000264660000000,0.000073846000000,0.000078191000000,0.000217252000000,0.000151673000000 +0.000329450000000,0.000047376000000,0.000063178000000,0.000265055000000,0.000038290000000,0.000393055000000,0.000358684000000,0.000273351000000,0.017366869000000,0.018627115000000,0.000281648000000,0.000073450000000,0.000077796000000,0.000210932000000,0.000148117000000 +0.000331426000000,0.000046982000000,0.000062389000000,0.000304562000000,0.000038290000000,0.000346043000000,0.000265846000000,0.000263475000000,0.017937337000000,0.017201733000000,0.000265846000000,0.000074635000000,0.000076611000000,0.000351969000000,0.000184068000000 +0.000424660000000,0.000047772000000,0.000060809000000,0.000262289000000,0.000037895000000,0.000365796000000,0.000274536000000,0.000265450000000,0.016716993000000,0.017477487000000,0.000310882000000,0.000073845000000,0.000077401000000,0.000206191000000,0.000150487000000 +0.000334586000000,0.000047377000000,0.000062784000000,0.000267821000000,0.000039080000000,0.000333006000000,0.000291525000000,0.000263475000000,0.017050820000000,0.017454968000000,0.000265055000000,0.000073846000000,0.000079772000000,0.000238192000000,0.000147327000000 +0.000395821000000,0.000047376000000,0.000061598000000,0.000351179000000,0.000037894000000,0.000449549000000,0.000263080000000,0.000339327000000,0.018998472000000,0.017413881000000,0.000273352000000,0.000073846000000,0.000078587000000,0.000332611000000,0.000151277000000 +0.000329450000000,0.000046981000000,0.000061203000000,0.000264660000000,0.000037894000000,0.000353944000000,0.000347228000000,0.000272956000000,0.016743067000000,0.017131017000000,0.000313253000000,0.000074241000000,0.000075821000000,0.000193154000000,0.000186043000000 +0.000408462000000,0.000047376000000,0.000099129000000,0.000263870000000,0.000037894000000,0.000366586000000,0.000263080000000,0.000262290000000,0.017249536000000,0.017608647000000,0.000264265000000,0.000073055000000,0.000078981000000,0.000314438000000,0.000153252000000 +0.000336957000000,0.000047376000000,0.000062388000000,0.000267031000000,0.000037895000000,0.000338932000000,0.000263080000000,0.000319573000000,0.016445586000000,0.017449437000000,0.000261104000000,0.000073451000000,0.000078586000000,0.000214093000000,0.000150883000000 +0.000366191000000,0.000046982000000,0.000062783000000,0.000262289000000,0.000037895000000,0.000373302000000,0.000360265000000,0.000264265000000,0.017323017000000,0.018287362000000,0.000267821000000,0.000071475000000,0.000092018000000,0.000227524000000,0.000147327000000 +0.000368166000000,0.000047772000000,0.000060413000000,0.000348808000000,0.000038290000000,0.000329845000000,0.000270586000000,0.000262685000000,0.017353437000000,0.017622079000000,0.000265055000000,0.000074635000000,0.000080166000000,0.000252809000000,0.000187228000000 +0.000425845000000,0.000045797000000,0.000062784000000,0.000265450000000,0.000064759000000,0.000362636000000,0.000338141000000,0.000262290000000,0.016877388000000,0.017922325000000,0.000327475000000,0.000073056000000,0.000083327000000,0.000237006000000,0.000147327000000 +0.000331821000000,0.000081747000000,0.000063574000000,0.000288759000000,0.000038290000000,0.000796808000000,0.000263474000000,0.000265055000000,0.017598770000000,0.017364104000000,0.000267426000000,0.000071080000000,0.000078191000000,0.000258339000000,0.000149302000000 +0.000333796000000,0.000045006000000,0.000063178000000,0.000264265000000,0.000037500000000,0.000703573000000,0.000262290000000,0.000329846000000,0.017960251000000,0.017225832000000,0.000265845000000,0.000075031000000,0.000079771000000,0.000282833000000,0.000153647000000 +0.000350388000000,0.000045006000000,0.000060809000000,0.000270191000000,0.000037895000000,0.000397006000000,0.000336167000000,0.000270586000000,0.017610227000000,0.017109288000000,0.000413994000000,0.000078587000000,0.000077796000000,0.000243722000000,0.000184858000000 +0.000328265000000,0.000045401000000,0.000061203000000,0.000333401000000,0.000037895000000,0.000616660000000,0.000263080000000,0.000262290000000,0.019624645000000,0.017998177000000,0.000264660000000,0.000074241000000,0.000113747000000,0.000191179000000,0.000150092000000 +0.000413993000000,0.000048167000000,0.000061204000000,0.000280858000000,0.000037895000000,0.000527771000000,0.000265450000000,0.000298636000000,0.017934177000000,0.017984349000000,0.000299425000000,0.000075030000000,0.000082142000000,0.000267031000000,0.000149698000000 +0.000358290000000,0.000047377000000,0.000063179000000,0.000266240000000,0.000037895000000,0.000328660000000,0.000276907000000,0.000264660000000,0.017244004000000,0.017991856000000,0.000261105000000,0.000073450000000,0.000077401000000,0.000252018000000,0.000151278000000 +0.000399771000000,0.000046981000000,0.000063179000000,0.000321549000000,0.000037895000000,0.000383969000000,0.000263870000000,0.000271376000000,0.018706917000000,0.018451312000000,0.000265451000000,0.000124413000000,0.000082142000000,0.000195524000000,0.000205401000000 +0.000344858000000,0.000047772000000,0.000061203000000,0.000284809000000,0.000039080000000,0.000331821000000,0.000318784000000,0.000297055000000,0.018066522000000,0.017500004000000,0.000302981000000,0.000073845000000,0.000078587000000,0.000330240000000,0.000156413000000 +0.000422289000000,0.000062783000000,0.000096759000000,0.000334586000000,0.000038290000000,0.000331821000000,0.000265845000000,0.000264661000000,0.018102078000000,0.017292202000000,0.000272166000000,0.000071870000000,0.000097549000000,0.000193154000000,0.000153253000000 +0.000358289000000,0.000045401000000,0.000063574000000,0.000266636000000,0.000037894000000,0.000373302000000,0.000334190000000,0.000262289000000,0.017085980000000,0.017857930000000,0.000264660000000,0.000073845000000,0.000076611000000,0.000412413000000,0.000150093000000 +0.000366981000000,0.000045006000000,0.000062389000000,0.000263475000000,0.000038290000000,0.000334981000000,0.000265450000000,0.000263870000000,0.017032252000000,0.017546227000000,0.000302191000000,0.000071080000000,0.000081747000000,0.000182883000000,0.000200265000000 +0.000331030000000,0.000053303000000,0.000060808000000,0.000298635000000,0.000037895000000,0.000357499000000,0.000268611000000,0.000266635000000,0.017674622000000,0.017385436000000,0.000266635000000,0.000071870000000,0.000086487000000,0.000248068000000,0.000150093000000 +0.000360265000000,0.000047377000000,0.000060808000000,0.000268216000000,0.000037895000000,0.000356314000000,0.000336561000000,0.000334981000000,0.017215560000000,0.017348696000000,0.000280857000000,0.000110192000000,0.000079772000000,0.000218833000000,0.000147326000000 +0.000355920000000,0.000045006000000,0.000060809000000,0.000274141000000,0.000038685000000,0.000679870000000,0.000268216000000,0.000280463000000,0.017361338000000,0.018353337000000,0.000264660000000,0.000072265000000,0.000080561000000,0.000185648000000,0.000150883000000 +0.000337746000000,0.000047376000000,0.000061599000000,0.000379623000000,0.000040266000000,0.000360265000000,0.000264660000000,0.000348808000000,0.017624054000000,0.017365288000000,0.000261104000000,0.000074241000000,0.000098734000000,0.000260709000000,0.000241351000000 +0.000384364000000,0.000083327000000,0.000078982000000,0.000263870000000,0.000037895000000,0.000372511000000,0.000565697000000,0.000261500000000,0.017492894000000,0.017200153000000,0.000647475000000,0.000072266000000,0.000077796000000,0.000183278000000,0.000167871000000 +0.000333796000000,0.000047772000000,0.000062784000000,0.000301796000000,0.000038685000000,0.000334191000000,0.000306931000000,0.000266636000000,0.017717684000000,0.019569337000000,0.000264661000000,0.000074241000000,0.000095574000000,0.000293894000000,0.000155228000000 +0.000500907000000,0.000047771000000,0.000062389000000,0.000265450000000,0.000037895000000,0.000331821000000,0.000270191000000,0.000442437000000,0.017182771000000,0.017679363000000,0.000334586000000,0.000073846000000,0.000077797000000,0.000235031000000,0.000148117000000 +0.000340117000000,0.000045401000000,0.000060808000000,0.000265846000000,0.000073846000000,0.000329055000000,0.000267031000000,0.000280068000000,0.017581387000000,0.018589188000000,0.000267820000000,0.000071475000000,0.000078191000000,0.000222784000000,0.000165500000000 +0.000392265000000,0.000047771000000,0.000062388000000,0.000353944000000,0.000038290000000,0.000391080000000,0.000336956000000,0.000316018000000,0.017493684000000,0.017788004000000,0.000263080000000,0.000109401000000,0.000122043000000,0.000276117000000,0.000148117000000 +0.000326289000000,0.000046982000000,0.000062388000000,0.000266636000000,0.000037895000000,0.000354734000000,0.000265055000000,0.000263080000000,0.017344350000000,0.018810028000000,0.000269006000000,0.000074240000000,0.000079772000000,0.000204216000000,0.000147722000000 +0.000383179000000,0.000047377000000,0.000097154000000,0.000264660000000,0.000057648000000,0.000406882000000,0.000263080000000,0.000263870000000,0.017270474000000,0.018083115000000,0.000270586000000,0.000071870000000,0.000077796000000,0.000227919000000,0.000148908000000 +0.000332610000000,0.000044611000000,0.000060808000000,0.000266240000000,0.000054093000000,0.000333401000000,0.000336562000000,0.000354734000000,0.017397684000000,0.017633140000000,0.000300611000000,0.000074241000000,0.000077401000000,0.000262290000000,0.000180117000000 +0.000373303000000,0.000084117000000,0.000062784000000,0.000266241000000,0.000040265000000,0.000400561000000,0.000300216000000,0.000270981000000,0.017683313000000,0.017290227000000,0.000261105000000,0.000071476000000,0.000077006000000,0.000216858000000,0.000146932000000 +0.000329845000000,0.000046981000000,0.000060413000000,0.000467721000000,0.000050932000000,0.000337747000000,0.000270191000000,0.000261105000000,0.017742177000000,0.017381881000000,0.000270586000000,0.000091229000000,0.000077401000000,0.000236216000000,0.000148512000000 +0.000359870000000,0.000047376000000,0.000063178000000,0.000308512000000,0.000038290000000,0.000367771000000,0.000270981000000,0.000265845000000,0.017332103000000,0.017651314000000,0.000307721000000,0.000072661000000,0.000115722000000,0.000243721000000,0.000154043000000 +0.000331426000000,0.000048166000000,0.000067130000000,0.000262685000000,0.000037895000000,0.000329056000000,0.000304561000000,0.000348413000000,0.016782178000000,0.018663460000000,0.000265055000000,0.000073451000000,0.000080957000000,0.000228710000000,0.000165500000000 +0.000353154000000,0.000047772000000,0.000060808000000,0.000262290000000,0.000037895000000,0.000360661000000,0.000262685000000,0.000334586000000,0.018350967000000,0.018065337000000,0.000274536000000,0.000074241000000,0.000079376000000,0.000241351000000,0.000148512000000 +0.000378438000000,0.000047772000000,0.000063574000000,0.000312068000000,0.000041056000000,0.000502882000000,0.000302191000000,0.000267031000000,0.017657634000000,0.017417832000000,0.000312857000000,0.000074635000000,0.000078191000000,0.000260710000000,0.000146932000000 +0.000336562000000,0.000045006000000,0.000062784000000,0.000268610000000,0.000039080000000,0.000442832000000,0.000279277000000,0.000268611000000,0.017595610000000,0.017400844000000,0.000265055000000,0.000074241000000,0.000077796000000,0.000246882000000,0.000150488000000 +0.000387525000000,0.000086882000000,0.000062783000000,0.000263475000000,0.000038290000000,0.000357500000000,0.000278092000000,0.000269401000000,0.017321832000000,0.017061881000000,0.000312067000000,0.000073450000000,0.000076610000000,0.000199475000000,0.000233846000000 +0.000331821000000,0.000045401000000,0.000062784000000,0.000304957000000,0.000037895000000,0.000356314000000,0.000288759000000,0.000272166000000,0.016995511000000,0.017895066000000,0.000262290000000,0.000073451000000,0.000115722000000,0.000304956000000,0.000149698000000 +0.000386734000000,0.000045006000000,0.000063573000000,0.000270586000000,0.000037895000000,0.000351179000000,0.000280857000000,0.000495376000000,0.017777733000000,0.017586918000000,0.000272957000000,0.000074241000000,0.000077796000000,0.000338142000000,0.000148512000000 +0.000417154000000,0.000045006000000,0.000096364000000,0.000267425000000,0.000037895000000,0.000351969000000,0.000289944000000,0.000270586000000,0.017015264000000,0.017688449000000,0.000290734000000,0.000072660000000,0.000077401000000,0.000234241000000,0.000156413000000 +0.000369747000000,0.000046981000000,0.000062784000000,0.000344463000000,0.000037895000000,0.000378833000000,0.000291919000000,0.000319178000000,0.017202523000000,0.017721239000000,0.000266636000000,0.000076610000000,0.000076611000000,0.000249252000000,0.000158389000000 +0.000366191000000,0.000044216000000,0.000062389000000,0.000264660000000,0.000037895000000,0.000384758000000,0.000280068000000,0.000272562000000,0.017578226000000,0.017765881000000,0.000327475000000,0.000073845000000,0.000077796000000,0.000186833000000,0.000188018000000 +0.000454685000000,0.000047376000000,0.000065944000000,0.000299425000000,0.000037894000000,0.000353154000000,0.000286783000000,0.000269796000000,0.017599560000000,0.017268104000000,0.000264265000000,0.000073846000000,0.000079771000000,0.000246093000000,0.000189994000000 +0.000330635000000,0.000047377000000,0.000063179000000,0.000265451000000,0.000037894000000,0.000356710000000,0.000282438000000,0.000334191000000,0.017357783000000,0.017652893000000,0.000263475000000,0.000074241000000,0.000118488000000,0.000249648000000,0.000150092000000 +0.000328660000000,0.000049747000000,0.000061203000000,0.000264661000000,0.000109401000000,0.000356314000000,0.000281648000000,0.000275722000000,0.017270078000000,0.017593634000000,0.000303771000000,0.000073450000000,0.000157993000000,0.000244907000000,0.000148512000000 +0.000347228000000,0.000045006000000,0.000062783000000,0.000304561000000,0.000037895000000,0.000351178000000,0.000279673000000,0.000289154000000,0.017049634000000,0.017769832000000,0.000261500000000,0.000071475000000,0.000077006000000,0.000233845000000,0.000157598000000 +0.000350388000000,0.000053697000000,0.000101500000000,0.000265846000000,0.000038290000000,0.000352364000000,0.000285993000000,0.000263080000000,0.017729931000000,0.017800647000000,0.000307722000000,0.000071080000000,0.000076611000000,0.000230685000000,0.000230290000000 +0.000408067000000,0.000047377000000,0.000078191000000,0.000315623000000,0.000038290000000,0.000367376000000,0.000285993000000,0.000262684000000,0.017243609000000,0.017110474000000,0.000265450000000,0.000073450000000,0.000078191000000,0.000245302000000,0.000148907000000 +0.000346043000000,0.000046982000000,0.000060808000000,0.000305351000000,0.000037895000000,0.000351178000000,0.000285993000000,0.000346438000000,0.017548202000000,0.017835807000000,0.000269796000000,0.000073450000000,0.000077796000000,0.000185647000000,0.000148907000000 +0.000396610000000,0.000045401000000,0.000062389000000,0.000262685000000,0.000037895000000,0.000359079000000,0.000287969000000,0.000263475000000,0.017830276000000,0.017348696000000,0.000352759000000,0.000074240000000,0.000084907000000,0.000329451000000,0.000147327000000 +0.000326684000000,0.000045401000000,0.000062389000000,0.000263475000000,0.000037895000000,0.000351969000000,0.000304167000000,0.000263080000000,0.017468400000000,0.017500005000000,0.000263080000000,0.000075821000000,0.000076611000000,0.000231080000000,0.000150487000000 +0.000366981000000,0.000046982000000,0.000063969000000,0.000266241000000,0.000037895000000,0.000350388000000,0.000280068000000,0.000347623000000,0.017286671000000,0.017518968000000,0.000263080000000,0.000073056000000,0.000081352000000,0.000213302000000,0.000146932000000 +0.000333796000000,0.000047772000000,0.000064364000000,0.000268611000000,0.000037895000000,0.000374487000000,0.000282437000000,0.000264265000000,0.017559659000000,0.017258227000000,0.000282438000000,0.000072265000000,0.000077796000000,0.000267821000000,0.000148117000000 +0.000393450000000,0.000047771000000,0.000063179000000,0.000281252000000,0.000037500000000,0.000457845000000,0.000281648000000,0.000260710000000,0.017955115000000,0.017874918000000,0.000265846000000,0.000073450000000,0.000078982000000,0.000247672000000,0.000149697000000 +0.000332215000000,0.000047376000000,0.000061203000000,0.000267030000000,0.000037895000000,0.000355919000000,0.000287969000000,0.000276117000000,0.018318177000000,0.017767856000000,0.000334981000000,0.000073845000000,0.000081352000000,0.000232660000000,0.000199475000000 +0.000359475000000,0.000046981000000,0.000060808000000,0.000301006000000,0.000037895000000,0.000412808000000,0.000285598000000,0.000266636000000,0.017965782000000,0.017724004000000,0.000264265000000,0.000109796000000,0.000078191000000,0.000367771000000,0.000148908000000 +0.000329845000000,0.000044611000000,0.000063574000000,0.000316018000000,0.000037895000000,0.000370141000000,0.000284413000000,0.000306141000000,0.017565584000000,0.017517782000000,0.000261499000000,0.000071475000000,0.000080561000000,0.000205006000000,0.000149697000000 +0.000331031000000,0.000046981000000,0.000124808000000,0.000263080000000,0.000037895000000,0.000368561000000,0.000279277000000,0.000265846000000,0.017830671000000,0.017493684000000,0.000302981000000,0.000073846000000,0.000076611000000,0.000272957000000,0.000146932000000 +0.000564907000000,0.000046982000000,0.000061203000000,0.000307326000000,0.000037895000000,0.000330240000000,0.000284018000000,0.000269401000000,0.017477091000000,0.017657634000000,0.000263870000000,0.000071080000000,0.000079772000000,0.000225549000000,0.000149697000000 +0.000333006000000,0.000093204000000,0.000062389000000,0.000263870000000,0.000037895000000,0.000394241000000,0.000280068000000,0.000440068000000,0.017217140000000,0.017420992000000,0.000268216000000,0.000072265000000,0.000078587000000,0.000231870000000,0.000147327000000 +0.000383574000000,0.000045401000000,0.000061994000000,0.000287969000000,0.000037895000000,0.000351179000000,0.000282043000000,0.000264265000000,0.017506326000000,0.017622078000000,0.000289549000000,0.000070290000000,0.000078191000000,0.000218043000000,0.000149697000000 +0.000333401000000,0.000047771000000,0.000060414000000,0.000263870000000,0.000037895000000,0.000436511000000,0.000269401000000,0.000337746000000,0.017287856000000,0.017511066000000,0.000264265000000,0.000172610000000,0.000115722000000,0.000305747000000,0.000149697000000 +0.000367772000000,0.000047376000000,0.000063179000000,0.000267030000000,0.000037895000000,0.000399771000000,0.000262685000000,0.000267821000000,0.018254177000000,0.017393338000000,0.000299030000000,0.000075425000000,0.000078982000000,0.000255574000000,0.000227919000000 +0.000366981000000,0.000044216000000,0.000063179000000,0.000354339000000,0.000037894000000,0.000585845000000,0.000301006000000,0.000271376000000,0.018007658000000,0.017932991000000,0.000264660000000,0.000075031000000,0.000078191000000,0.000235821000000,0.000150092000000 +0.000410043000000,0.000045401000000,0.000063178000000,0.000267821000000,0.000080956000000,0.000421499000000,0.000265450000000,0.000267426000000,0.017385436000000,0.017534375000000,0.000269401000000,0.000074240000000,0.000077796000000,0.000297845000000,0.000153253000000 +0.000367771000000,0.000047376000000,0.000062389000000,0.000266636000000,0.000037895000000,0.000365401000000,0.000263870000000,0.000268611000000,0.017611807000000,0.017702672000000,0.000332611000000,0.000072265000000,0.000077796000000,0.000202636000000,0.000148513000000 +0.000390685000000,0.000045796000000,0.000063179000000,0.000262290000000,0.000038290000000,0.000361450000000,0.000440462000000,0.000305352000000,0.019765682000000,0.018166473000000,0.000267425000000,0.000072265000000,0.000080561000000,0.000264265000000,0.000147327000000 +0.000327870000000,0.000047772000000,0.000063179000000,0.000267031000000,0.000037894000000,0.000377648000000,0.000291129000000,0.000262290000000,0.018288942000000,0.017043314000000,0.000348019000000,0.000071475000000,0.000119277000000,0.000246882000000,0.000149697000000 +0.000356709000000,0.000045006000000,0.000059228000000,0.000312462000000,0.000040660000000,0.000331821000000,0.000333401000000,0.000261895000000,0.019000448000000,0.018603806000000,0.000260315000000,0.000075030000000,0.000076216000000,0.000192364000000,0.000148512000000 +0.000358289000000,0.000045006000000,0.000060413000000,0.000268611000000,0.000037895000000,0.000377648000000,0.000274537000000,0.000300610000000,0.017439955000000,0.018347016000000,0.000267030000000,0.000072265000000,0.000077796000000,0.000298636000000,0.000148512000000 +0.000348414000000,0.000045006000000,0.000114142000000,0.000278092000000,0.000037500000000,0.000372512000000,0.000262685000000,0.000265056000000,0.018064547000000,0.017111264000000,0.000340117000000,0.000071870000000,0.000084512000000,0.000195919000000,0.000396610000000 +0.000355920000000,0.000047771000000,0.000061994000000,0.000523030000000,0.000037895000000,0.000398191000000,0.000301796000000,0.000270191000000,0.017114030000000,0.018339510000000,0.000263475000000,0.000074241000000,0.000082931000000,0.000253203000000,0.000169451000000 +0.000330635000000,0.000047771000000,0.000062389000000,0.000284413000000,0.000038290000000,0.000334981000000,0.000272166000000,0.000273747000000,0.017405980000000,0.017470375000000,0.000260710000000,0.000090834000000,0.000077796000000,0.000342093000000,0.000147327000000 +0.000396216000000,0.000047771000000,0.000061204000000,0.000299821000000,0.000037895000000,0.000331425000000,0.000262685000000,0.000268611000000,0.017431263000000,0.017928251000000,0.000301796000000,0.000092018000000,0.000118882000000,0.000548709000000,0.000148907000000 +0.000365400000000,0.000047772000000,0.000063574000000,0.000269796000000,0.000037500000000,0.000346438000000,0.000264661000000,0.000308512000000,0.017189882000000,0.017952350000000,0.000283228000000,0.000071475000000,0.000077796000000,0.000785351000000,0.000148907000000 +0.000384759000000,0.000048166000000,0.000062784000000,0.000263870000000,0.000037895000000,0.000329450000000,0.000316018000000,0.000264265000000,0.017897436000000,0.017752449000000,0.000284808000000,0.000073055000000,0.000076610000000,0.000350388000000,0.000153253000000 +0.000331030000000,0.000047771000000,0.000082932000000,0.000266635000000,0.000038290000000,0.000368956000000,0.000308907000000,0.000265055000000,0.016936647000000,0.017330918000000,0.000460216000000,0.000073846000000,0.000077796000000,0.000362240000000,0.000151673000000 +0.000368166000000,0.000047771000000,0.000063179000000,0.000269401000000,0.000037895000000,0.000330636000000,0.000266240000000,0.000310882000000,0.017609831000000,0.018049140000000,0.000297450000000,0.000072660000000,0.000078586000000,0.000278883000000,0.000150883000000 +0.000331031000000,0.000045006000000,0.000061204000000,0.000305351000000,0.000037895000000,0.000371721000000,0.000261895000000,0.000263080000000,0.017797881000000,0.019497435000000,0.000261895000000,0.000093203000000,0.000077796000000,0.000624562000000,0.000155624000000 +0.000434932000000,0.000045402000000,0.000060018000000,0.000282043000000,0.000037895000000,0.000353944000000,0.000293894000000,0.000265845000000,0.017222672000000,0.018852300000000,0.000265450000000,0.000073450000000,0.000169845000000,0.000227130000000,0.000153253000000 +0.000334191000000,0.000047772000000,0.000061203000000,0.000268216000000,0.000038289000000,0.000353549000000,0.000268611000000,0.000268215000000,0.017573090000000,0.017716498000000,0.000303772000000,0.000071870000000,0.000231870000000,0.000276117000000,0.000148512000000 +0.000329055000000,0.000045401000000,0.000060414000000,0.000306141000000,0.000038290000000,0.000329450000000,0.000301401000000,0.000263870000000,0.017016450000000,0.017352647000000,0.000263080000000,0.000074636000000,0.000257944000000,0.000246882000000,0.000151278000000 +0.000346043000000,0.000045006000000,0.000062389000000,0.000271376000000,0.000038290000000,0.000339326000000,0.000272561000000,0.000309698000000,0.017545437000000,0.017762326000000,0.000268215000000,0.000073055000000,0.000222388000000,0.000205796000000,0.000150093000000 +0.000357105000000,0.000084512000000,0.000185253000000,0.000305747000000,0.000037895000000,0.000495771000000,0.000266240000000,0.000263080000000,0.017585338000000,0.017423363000000,0.000261895000000,0.000074241000000,0.000084117000000,0.000323130000000,0.000149303000000 +0.000395030000000,0.000048166000000,0.000078586000000,0.000265450000000,0.000056463000000,0.000333401000000,0.000350783000000,0.000267821000000,0.017299313000000,0.017400844000000,0.000267031000000,0.000071080000000,0.000083722000000,0.000244117000000,0.000151277000000 +0.000371722000000,0.000047376000000,0.000064364000000,0.000274142000000,0.000054487000000,0.000417549000000,0.000264660000000,0.000345648000000,0.017757979000000,0.017734671000000,0.000301795000000,0.000084512000000,0.000122043000000,0.000230685000000,0.000149697000000 +0.000409252000000,0.000047376000000,0.000063179000000,0.000299030000000,0.000037894000000,0.000348808000000,0.000263080000000,0.000263870000000,0.017471955000000,0.017134178000000,0.000271771000000,0.000072265000000,0.000087278000000,0.000313253000000,0.000150092000000 +0.000357500000000,0.000047376000000,0.000099919000000,0.000262290000000,0.000037894000000,0.000407277000000,0.000301401000000,0.000263080000000,0.017135758000000,0.018113535000000,0.000263870000000,0.000073845000000,0.000084117000000,0.000231871000000,0.000149302000000 +0.000421895000000,0.000045401000000,0.000060414000000,0.000267426000000,0.000038290000000,0.000359870000000,0.000265450000000,0.000276907000000,0.017396498000000,0.017561239000000,0.000333006000000,0.000071475000000,0.000089253000000,0.000270586000000,0.000148117000000 +0.000356314000000,0.000093993000000,0.000061994000000,0.000311277000000,0.000037895000000,0.000371327000000,0.000307721000000,0.000265845000000,0.017509091000000,0.017905732000000,0.000266240000000,0.000071475000000,0.000086883000000,0.000227919000000,0.000186833000000 +0.000369747000000,0.000049746000000,0.000060414000000,0.000268215000000,0.000038290000000,0.000389499000000,0.000270982000000,0.000299821000000,0.017292993000000,0.017391758000000,0.000343277000000,0.000073846000000,0.000088462000000,0.000287179000000,0.000150882000000 +0.000331820000000,0.000047771000000,0.000060414000000,0.000267031000000,0.000037895000000,0.000414389000000,0.000264660000000,0.000267821000000,0.017474721000000,0.017766671000000,0.000266635000000,0.000074636000000,0.000122043000000,0.000314833000000,0.000148512000000 +0.000365006000000,0.000047771000000,0.000063969000000,0.000266241000000,0.000038290000000,0.000356314000000,0.000334191000000,0.000265450000000,0.017812894000000,0.017711362000000,0.000265450000000,0.000073846000000,0.000085303000000,0.000228709000000,0.000153648000000 +0.000351179000000,0.000066340000000,0.000061203000000,0.000268215000000,0.000037500000000,0.000436117000000,0.000263870000000,0.000300216000000,0.017644202000000,0.017499609000000,0.000299426000000,0.000071871000000,0.000089648000000,0.000227524000000,0.000184858000000 +0.000349993000000,0.000047377000000,0.000099129000000,0.000345648000000,0.000038290000000,0.000368956000000,0.000266636000000,0.000307722000000,0.017855955000000,0.017666720000000,0.000265845000000,0.000071475000000,0.000089648000000,0.000260710000000,0.000150882000000 +0.000349203000000,0.000047772000000,0.000062389000000,0.000476413000000,0.000037895000000,0.000365401000000,0.000265451000000,0.000302586000000,0.017722425000000,0.017786819000000,0.000264265000000,0.000071080000000,0.000092413000000,0.000242932000000,0.000148512000000 +0.000348413000000,0.000067524000000,0.000061204000000,0.000344462000000,0.000038290000000,0.000326290000000,0.000267030000000,0.000269401000000,0.017377535000000,0.017334869000000,0.000263870000000,0.000070685000000,0.000099130000000,0.000260314000000,0.000148907000000 +0.000388314000000,0.000047376000000,0.000063574000000,0.000264660000000,0.000038290000000,0.000327870000000,0.000314438000000,0.000265055000000,0.017310376000000,0.017228203000000,0.000271376000000,0.000072266000000,0.000082142000000,0.000201845000000,0.000183278000000 +0.000331820000000,0.000044611000000,0.000060413000000,0.000269796000000,0.000037895000000,0.000380413000000,0.000263475000000,0.000307722000000,0.017803807000000,0.017750474000000,0.000334981000000,0.000075031000000,0.000077796000000,0.000326684000000,0.000149697000000 +0.000439277000000,0.000044610000000,0.000060413000000,0.000366191000000,0.000039080000000,0.000360660000000,0.000266635000000,0.000261895000000,0.017848054000000,0.017175264000000,0.000271376000000,0.000073846000000,0.000080957000000,0.000205401000000,0.000149698000000 +0.000334191000000,0.000044611000000,0.000060018000000,0.000395425000000,0.000037894000000,0.000353154000000,0.000301401000000,0.000263475000000,0.017108893000000,0.017715708000000,0.000265450000000,0.000075030000000,0.000080561000000,0.000225549000000,0.000151277000000 +0.000472068000000,0.000045006000000,0.000063179000000,0.000319178000000,0.000037894000000,0.000372117000000,0.000268216000000,0.000338537000000,0.017586523000000,0.017997387000000,0.000304167000000,0.000077006000000,0.000116117000000,0.000261500000000,0.000167475000000 +0.000338932000000,0.000046981000000,0.000060809000000,0.000347623000000,0.000037894000000,0.000437697000000,0.000269796000000,0.000264660000000,0.017286671000000,0.017307610000000,0.000268216000000,0.000074240000000,0.000077401000000,0.000244512000000,0.000150882000000 +0.000412808000000,0.000046981000000,0.000061204000000,0.000376068000000,0.000037895000000,0.000335771000000,0.000280068000000,0.000273351000000,0.017538721000000,0.017587708000000,0.000269005000000,0.000074241000000,0.000080167000000,0.000259525000000,0.000153648000000 +0.000333401000000,0.000045401000000,0.000062784000000,0.000338537000000,0.000037895000000,0.000372907000000,0.000265055000000,0.000278092000000,0.017497239000000,0.019975064000000,0.000270191000000,0.000076216000000,0.000079771000000,0.000208561000000,0.000152858000000 +0.000420709000000,0.000045006000000,0.000063574000000,0.000368956000000,0.000037895000000,0.000358684000000,0.000283623000000,0.000264660000000,0.017291807000000,0.018763410000000,0.000263475000000,0.000077401000000,0.000079376000000,0.000285994000000,0.000150883000000 +0.000328660000000,0.000047377000000,0.000061993000000,0.000363031000000,0.000109006000000,0.000429795000000,0.000267030000000,0.000299030000000,0.017046869000000,0.018561139000000,0.000333401000000,0.000089253000000,0.000078981000000,0.000204611000000,0.000148512000000 +0.000327870000000,0.000045006000000,0.000133500000000,0.000352364000000,0.000039080000000,0.000329846000000,0.000262290000000,0.000271376000000,0.018256547000000,0.017823164000000,0.000267425000000,0.000071870000000,0.000149697000000,0.000259129000000,0.000151673000000 +0.000333401000000,0.000047771000000,0.000062389000000,0.000352758000000,0.000037895000000,0.000402141000000,0.000298635000000,0.000268611000000,0.017830671000000,0.017504351000000,0.000301401000000,0.000073450000000,0.000082142000000,0.000241351000000,0.000148512000000 +0.000334981000000,0.000045401000000,0.000060808000000,0.000412413000000,0.000037500000000,0.000351969000000,0.000262290000000,0.000283228000000,0.017558079000000,0.017122720000000,0.000286389000000,0.000073450000000,0.000078191000000,0.000193945000000,0.000148117000000 +0.000364611000000,0.000045401000000,0.000062388000000,0.000355920000000,0.000037895000000,0.000411228000000,0.000301400000000,0.000263475000000,0.017405190000000,0.017828301000000,0.000264265000000,0.000072265000000,0.000077401000000,0.000257944000000,0.000150487000000 +0.000348413000000,0.000050537000000,0.000061993000000,0.000406883000000,0.000038685000000,0.000349598000000,0.000306537000000,0.000316413000000,0.017626424000000,0.018565880000000,0.000321154000000,0.000073845000000,0.000080166000000,0.000274932000000,0.000152858000000 +0.000423080000000,0.000062783000000,0.000063574000000,0.000344067000000,0.000037500000000,0.000330635000000,0.000264265000000,0.000315228000000,0.018559559000000,0.017437980000000,0.000263080000000,0.000073056000000,0.000080561000000,0.000491425000000,0.000149697000000 +0.000348018000000,0.000047771000000,0.000079771000000,0.000348018000000,0.000038290000000,0.000353944000000,0.000270191000000,0.000271771000000,0.017439955000000,0.017636695000000,0.000260709000000,0.000071475000000,0.000078191000000,0.000203821000000,0.000154042000000 +0.000430981000000,0.000047376000000,0.000060414000000,0.000282438000000,0.000037895000000,0.000332611000000,0.000263475000000,0.000296660000000,0.017091116000000,0.017259807000000,0.000416364000000,0.000074636000000,0.000081352000000,0.000393451000000,0.000150882000000 +0.000337351000000,0.000047771000000,0.000061599000000,0.000285993000000,0.000038290000000,0.000370142000000,0.000266240000000,0.000267426000000,0.017491314000000,0.017948794000000,0.000284809000000,0.000076216000000,0.000078191000000,0.000293894000000,0.000148512000000 +0.000420315000000,0.000047376000000,0.000062784000000,0.000283228000000,0.000037895000000,0.000357105000000,0.000311672000000,0.000309302000000,0.017338029000000,0.017311560000000,0.000300216000000,0.000072660000000,0.000076215000000,0.000225944000000,0.000149698000000 +0.000335376000000,0.000047377000000,0.000060808000000,0.000398586000000,0.000038290000000,0.000365796000000,0.000262289000000,0.000273747000000,0.017494473000000,0.018060596000000,0.000265450000000,0.000072660000000,0.000080956000000,0.000231475000000,0.000149302000000 +0.000372512000000,0.000047772000000,0.000113351000000,0.000342487000000,0.000037895000000,0.000331425000000,0.000275326000000,0.000260314000000,0.017370819000000,0.017181190000000,0.000265450000000,0.000073055000000,0.000079772000000,0.000227920000000,0.000148908000000 +0.000360265000000,0.000047376000000,0.000078587000000,0.000293499000000,0.000037894000000,0.000828413000000,0.000397401000000,0.000346437000000,0.017594029000000,0.017783658000000,0.000302586000000,0.000073845000000,0.000078191000000,0.000243721000000,0.000150488000000 +0.000335771000000,0.000045401000000,0.000060808000000,0.000325105000000,0.000037894000000,0.000527771000000,0.000268216000000,0.000263870000000,0.017663560000000,0.017429684000000,0.000265055000000,0.000071475000000,0.000079771000000,0.000229500000000,0.000168266000000 +0.000346043000000,0.000047376000000,0.000060808000000,0.000324314000000,0.000037895000000,0.000355524000000,0.000283228000000,0.000263870000000,0.017112449000000,0.018152251000000,0.000262290000000,0.000073845000000,0.000076216000000,0.000274536000000,0.000150882000000 +0.000336956000000,0.000047376000000,0.000063179000000,0.000328660000000,0.000037895000000,0.000771129000000,0.000266240000000,0.000262289000000,0.016860795000000,0.017411511000000,0.000263870000000,0.000091228000000,0.000078587000000,0.000355919000000,0.000155228000000 +0.000715821000000,0.000047377000000,0.000060809000000,0.000361451000000,0.000037895000000,0.000505253000000,0.000352759000000,0.000267426000000,0.019265139000000,0.018697041000000,0.000266635000000,0.000087673000000,0.000080167000000,0.000276907000000,0.000149697000000 +0.000413993000000,0.000045006000000,0.000062784000000,0.000291524000000,0.000037895000000,0.000479968000000,0.000302981000000,0.000311672000000,0.019561435000000,0.018097337000000,0.000299426000000,0.000074240000000,0.000078192000000,0.000235821000000,0.000198290000000 +0.000363821000000,0.000045006000000,0.000063179000000,0.000404117000000,0.000037895000000,0.000354734000000,0.000261895000000,0.000263080000000,0.018557979000000,0.017611412000000,0.000269796000000,0.000073451000000,0.000130734000000,0.000229104000000,0.000149302000000 +0.000368561000000,0.000045006000000,0.000062783000000,0.000698833000000,0.000073845000000,0.000433351000000,0.000263475000000,0.000263475000000,0.018262473000000,0.017987906000000,0.000269401000000,0.000071475000000,0.000077796000000,0.000240957000000,0.000148907000000 +0.000380413000000,0.000049352000000,0.000062783000000,0.000338537000000,0.000037895000000,0.000346833000000,0.000309698000000,0.000336562000000,0.017400054000000,0.017608647000000,0.000299820000000,0.000110586000000,0.000082142000000,0.000227920000000,0.000147327000000 +0.000382388000000,0.000044611000000,0.000062784000000,0.000289549000000,0.000038685000000,0.000442043000000,0.000267030000000,0.000265845000000,0.017605881000000,0.017423757000000,0.000260710000000,0.000073450000000,0.000077006000000,0.000210537000000,0.000222783000000 +0.000358685000000,0.000047376000000,0.000062784000000,0.000292710000000,0.000037895000000,0.000355919000000,0.000349993000000,0.000310092000000,0.017353832000000,0.018594720000000,0.000263870000000,0.000074635000000,0.000082537000000,0.000247672000000,0.000148117000000 +0.000333401000000,0.000047376000000,0.000064759000000,0.000320363000000,0.000037895000000,0.000410833000000,0.000262685000000,0.000260710000000,0.017876103000000,0.017146029000000,0.000336561000000,0.000073845000000,0.000077796000000,0.000305352000000,0.000152463000000 +0.000357894000000,0.000044611000000,0.000063574000000,0.000291129000000,0.000038290000000,0.000340907000000,0.000266636000000,0.000275326000000,0.017603116000000,0.018192547000000,0.000264660000000,0.000071870000000,0.000083722000000,0.000239376000000,0.000148907000000 +0.000340907000000,0.000045401000000,0.000130734000000,0.000319969000000,0.000037895000000,0.000422685000000,0.000266241000000,0.000334191000000,0.017418622000000,0.018035313000000,0.000263475000000,0.000074241000000,0.000083327000000,0.000266635000000,0.000184858000000 +0.000398586000000,0.000045006000000,0.000062783000000,0.000290734000000,0.000037895000000,0.000338932000000,0.000262289000000,0.000260315000000,0.017673042000000,0.017681733000000,0.000261895000000,0.000142981000000,0.000078191000000,0.000203821000000,0.000149697000000 +0.000337746000000,0.000075821000000,0.000063178000000,0.000322734000000,0.000038685000000,0.000332611000000,0.000301401000000,0.000324314000000,0.017595214000000,0.019374571000000,0.000269006000000,0.000075030000000,0.000080957000000,0.000244907000000,0.000147722000000 +0.000365401000000,0.000045401000000,0.000060808000000,0.000286784000000,0.000038685000000,0.000331031000000,0.000263870000000,0.000301401000000,0.017082030000000,0.017603115000000,0.000297846000000,0.000072660000000,0.000080562000000,0.000206586000000,0.000149697000000 +0.000325895000000,0.000048562000000,0.000063178000000,0.000284808000000,0.000038685000000,0.000331425000000,0.000269401000000,0.000270981000000,0.017754029000000,0.017684103000000,0.000261895000000,0.000073845000000,0.000076611000000,0.000266241000000,0.000188018000000 +0.000389500000000,0.000046982000000,0.000062388000000,0.000319574000000,0.000037895000000,0.000400167000000,0.000344068000000,0.000290735000000,0.017578622000000,0.018636597000000,0.000266636000000,0.000073450000000,0.000077006000000,0.000193945000000,0.000151278000000 +0.000325895000000,0.000045401000000,0.000096364000000,0.000287179000000,0.000039080000000,0.000350388000000,0.000272166000000,0.000271376000000,0.017767066000000,0.018082325000000,0.000300611000000,0.000074635000000,0.000081351000000,0.000278883000000,0.000150883000000 +0.000338142000000,0.000047771000000,0.000060808000000,0.000304956000000,0.000037895000000,0.000372117000000,0.000339327000000,0.000284018000000,0.017319066000000,0.017467215000000,0.000265055000000,0.000072266000000,0.000077796000000,0.000270982000000,0.000153253000000 +0.000327080000000,0.000046982000000,0.000063178000000,0.000547919000000,0.000037895000000,0.000356710000000,0.000268611000000,0.000302191000000,0.017638276000000,0.017566375000000,0.000262685000000,0.000072660000000,0.000077796000000,0.000205400000000,0.000167080000000 +0.000350389000000,0.000045006000000,0.000060413000000,0.000285203000000,0.000037895000000,0.000387129000000,0.000271376000000,0.000279673000000,0.018023856000000,0.017275215000000,0.000280067000000,0.000073450000000,0.000077401000000,0.000342882000000,0.000150487000000 +0.000385549000000,0.000080167000000,0.000062784000000,0.000282438000000,0.000037895000000,0.000355524000000,0.000564512000000,0.000287969000000,0.017452992000000,0.017564794000000,0.000263870000000,0.000073055000000,0.000078191000000,0.000195919000000,0.000148117000000 +0.000334191000000,0.000046981000000,0.000067524000000,0.000279672000000,0.000039080000000,0.000391870000000,0.000307722000000,0.000657747000000,0.017287067000000,0.017719264000000,0.000340907000000,0.000071475000000,0.000232265000000,0.000262685000000,0.000152858000000 +0.000446388000000,0.000047771000000,0.000063574000000,0.000282833000000,0.000037499000000,0.000477993000000,0.000369352000000,0.000876215000000,0.017559264000000,0.017084005000000,0.000275721000000,0.000071080000000,0.000231870000000,0.000238191000000,0.000147326000000 +0.000375277000000,0.000047377000000,0.000115327000000,0.000282043000000,0.000037894000000,0.000421895000000,0.000264265000000,0.000370142000000,0.017614967000000,0.017462079000000,0.000280463000000,0.000079376000000,0.000146537000000,0.000216857000000,0.000154043000000 +0.000393450000000,0.000047376000000,0.000060414000000,0.000304956000000,0.000054882000000,0.000380018000000,0.000303771000000,0.000363031000000,0.017240844000000,0.017859115000000,0.000332610000000,0.000072660000000,0.000076611000000,0.000254389000000,0.000152463000000 +0.000334191000000,0.000047377000000,0.000062784000000,0.000280068000000,0.000037895000000,0.000370537000000,0.000263475000000,0.000665252000000,0.017753239000000,0.017635116000000,0.000265055000000,0.000073055000000,0.000078586000000,0.000205796000000,0.000151672000000 +0.000365401000000,0.000045401000000,0.000060808000000,0.000280857000000,0.000037500000000,0.000360660000000,0.000263870000000,0.000316414000000,0.017575857000000,0.017634721000000,0.000260709000000,0.000073450000000,0.000079771000000,0.000254784000000,0.000150882000000 +0.000330240000000,0.000064759000000,0.000061994000000,0.000280858000000,0.000037500000000,0.000355525000000,0.000304956000000,0.000261105000000,0.017805782000000,0.017113240000000,0.000274537000000,0.000074241000000,0.000079771000000,0.000238192000000,0.000206981000000 +0.000328660000000,0.000045006000000,0.000062784000000,0.000286783000000,0.000037895000000,0.000572018000000,0.000265451000000,0.000346043000000,0.017184350000000,0.017600745000000,0.000263870000000,0.000071476000000,0.000082142000000,0.000216462000000,0.000151672000000 +0.000345253000000,0.000046981000000,0.000061994000000,0.000282438000000,0.000037500000000,0.000367771000000,0.000266241000000,0.000266636000000,0.017659215000000,0.017655263000000,0.000312462000000,0.000074241000000,0.000148512000000,0.000242142000000,0.000149302000000 +0.000331425000000,0.000046981000000,0.000062389000000,0.000284413000000,0.000037895000000,0.000366981000000,0.000262684000000,0.000261500000000,0.017928646000000,0.018308695000000,0.000263080000000,0.000071870000000,0.000079376000000,0.000228314000000,0.000188018000000 +0.000366191000000,0.000045401000000,0.000061994000000,0.000287968000000,0.000037895000000,0.000378833000000,0.000267030000000,0.000299821000000,0.017889930000000,0.017286276000000,0.000266240000000,0.000073846000000,0.000079772000000,0.000238981000000,0.000147722000000 +0.000327870000000,0.000047771000000,0.000065549000000,0.000282438000000,0.000038290000000,0.000351573000000,0.000315623000000,0.000263475000000,0.018127757000000,0.017463264000000,0.000299031000000,0.000074635000000,0.000077006000000,0.000230685000000,0.000150487000000 +0.000390290000000,0.000047376000000,0.000060808000000,0.000287573000000,0.000037895000000,0.000349599000000,0.000264265000000,0.000267426000000,0.017316696000000,0.018009633000000,0.000267030000000,0.000073846000000,0.000080562000000,0.000238191000000,0.000148512000000 +0.000338931000000,0.000049352000000,0.000061599000000,0.000282437000000,0.000037895000000,0.000364610000000,0.000264265000000,0.000312463000000,0.017800251000000,0.017681733000000,0.000269796000000,0.000073846000000,0.000078191000000,0.000250833000000,0.000186833000000 +0.000467722000000,0.000060018000000,0.000062784000000,0.000283623000000,0.000038290000000,0.000346043000000,0.000301006000000,0.000264661000000,0.017430869000000,0.017272844000000,0.000300611000000,0.000146536000000,0.000107426000000,0.000218043000000,0.000150882000000 +0.000350784000000,0.000046981000000,0.000112957000000,0.000282438000000,0.000037894000000,0.000411623000000,0.000271772000000,0.000298240000000,0.017310375000000,0.017605881000000,0.000261895000000,0.000071870000000,0.000077796000000,0.000244512000000,0.000150882000000 +0.000391475000000,0.000045006000000,0.000062783000000,0.000287969000000,0.000037499000000,0.000351969000000,0.000267030000000,0.000388709000000,0.017769437000000,0.017569931000000,0.000267821000000,0.000073845000000,0.000080562000000,0.000304561000000,0.000147327000000 +0.000343278000000,0.000045796000000,0.000061994000000,0.000300216000000,0.000037894000000,0.000353549000000,0.000280067000000,0.000402932000000,0.017700696000000,0.017383856000000,0.000262290000000,0.000073845000000,0.000079772000000,0.000250043000000,0.000186043000000 +0.000331821000000,0.000045796000000,0.000060809000000,0.000281252000000,0.000037499000000,0.000372512000000,0.000263475000000,0.000265055000000,0.017587708000000,0.017548202000000,0.000262685000000,0.000072265000000,0.000077796000000,0.000246883000000,0.000147327000000 +0.000401351000000,0.000044611000000,0.000061204000000,0.000287574000000,0.000037894000000,0.000351178000000,0.000318784000000,0.000263080000000,0.018100103000000,0.017416647000000,0.000367771000000,0.000071871000000,0.000081351000000,0.000194735000000,0.000151278000000 +0.000333796000000,0.000045006000000,0.000060809000000,0.000285598000000,0.000037500000000,0.000351179000000,0.000272561000000,0.000320364000000,0.017392548000000,0.017628794000000,0.000323129000000,0.000110587000000,0.000080562000000,0.000234240000000,0.000147722000000 +0.000362240000000,0.000081747000000,0.000062388000000,0.000316413000000,0.000041845000000,0.000357499000000,0.000263870000000,0.000263475000000,0.017913634000000,0.017001832000000,0.000311672000000,0.000073055000000,0.000080562000000,0.000186833000000,0.000149302000000 +0.000331821000000,0.000047377000000,0.000062783000000,0.000283623000000,0.000038290000000,0.000355524000000,0.000304167000000,0.000297450000000,0.018064547000000,0.017261783000000,0.000265846000000,0.000074240000000,0.000080167000000,0.000280463000000,0.000148907000000 +0.000496561000000,0.000047376000000,0.000061993000000,0.000280463000000,0.000056858000000,0.000351179000000,0.000276117000000,0.000272166000000,0.017464449000000,0.017850819000000,0.000263475000000,0.000073450000000,0.000077401000000,0.000256363000000,0.000150882000000 +0.000331426000000,0.000047376000000,0.000063178000000,0.000278488000000,0.000092019000000,0.000374882000000,0.000262685000000,0.000263870000000,0.017640252000000,0.017554523000000,0.000350784000000,0.000074240000000,0.000079771000000,0.000199870000000,0.000152068000000 +0.000402141000000,0.000047376000000,0.000063574000000,0.000285203000000,0.000042241000000,0.000349598000000,0.000263871000000,0.000339722000000,0.018958967000000,0.017424153000000,0.000260709000000,0.000073451000000,0.000156018000000,0.000317203000000,0.000205006000000 +0.000328660000000,0.000047376000000,0.000061203000000,0.000287969000000,0.000052512000000,0.000352364000000,0.000263870000000,0.000270191000000,0.017537931000000,0.018283807000000,0.000264660000000,0.000074241000000,0.000084513000000,0.000176957000000,0.000150092000000 +0.000418339000000,0.000046982000000,0.000062389000000,0.000286388000000,0.000039475000000,0.000356315000000,0.000306142000000,0.000267030000000,0.017870177000000,0.017413486000000,0.000265846000000,0.000073056000000,0.000079772000000,0.000265845000000,0.000148117000000 +0.000328266000000,0.000046982000000,0.000060413000000,0.000297845000000,0.000037894000000,0.000400166000000,0.000269796000000,0.000305352000000,0.017197388000000,0.018127362000000,0.000261895000000,0.000073845000000,0.000099129000000,0.000195524000000,0.000150488000000 +0.000421499000000,0.000085698000000,0.000063968000000,0.000286388000000,0.000037499000000,0.000410043000000,0.000263475000000,0.000267425000000,0.017592449000000,0.017362128000000,0.000317204000000,0.000075426000000,0.000082537000000,0.000250833000000,0.000182883000000 +0.000348413000000,0.000137056000000,0.000062389000000,0.000278487000000,0.000039080000000,0.000677499000000,0.000301005000000,0.000268611000000,0.017349881000000,0.017733881000000,0.000326289000000,0.000071871000000,0.000087277000000,0.000257154000000,0.000150882000000 +0.000332611000000,0.000048166000000,0.000060809000000,0.000334981000000,0.000038290000000,0.000370141000000,0.000263080000000,0.000279278000000,0.017306029000000,0.017343956000000,0.000288759000000,0.000074240000000,0.000088067000000,0.000192759000000,0.000148512000000 +0.000350783000000,0.000045006000000,0.000063179000000,0.000279673000000,0.000040265000000,0.000355130000000,0.000299031000000,0.000260710000000,0.017791560000000,0.017337634000000,0.000270981000000,0.000073846000000,0.000083722000000,0.000258734000000,0.000150883000000 +0.000334586000000,0.000044611000000,0.000062389000000,0.000282438000000,0.000038290000000,0.000374092000000,0.000281253000000,0.000301796000000,0.017240054000000,0.017380696000000,0.000263870000000,0.000073845000000,0.000082537000000,0.000178536000000,0.000184463000000 +0.000374092000000,0.000094389000000,0.000097154000000,0.000279278000000,0.000037895000000,0.000353154000000,0.000269796000000,0.000264660000000,0.017311560000000,0.017262178000000,0.000383969000000,0.000074240000000,0.000087672000000,0.000245697000000,0.000149302000000 +0.000361845000000,0.000045006000000,0.000062388000000,0.000280857000000,0.000037894000000,0.000350389000000,0.000305351000000,0.000263870000000,0.020083706000000,0.017964992000000,0.000260710000000,0.000071475000000,0.000082142000000,0.000209352000000,0.000148907000000 +0.000422290000000,0.000047376000000,0.000062783000000,0.000280462000000,0.000037894000000,0.000387525000000,0.000319969000000,0.000576364000000,0.018322918000000,0.017806572000000,0.000265450000000,0.000074240000000,0.000087278000000,0.000214487000000,0.000149697000000 +0.000357500000000,0.000045006000000,0.000061203000000,0.000285994000000,0.000038290000000,0.000399376000000,0.000267030000000,0.000279277000000,0.018047164000000,0.017472351000000,0.000263475000000,0.000075031000000,0.000084117000000,0.000295080000000,0.000220413000000 +0.000364216000000,0.000047377000000,0.000060413000000,0.000281252000000,0.000039475000000,0.000366191000000,0.000280857000000,0.000302981000000,0.017931017000000,0.017777337000000,0.000263870000000,0.000073450000000,0.000081352000000,0.000221599000000,0.000148907000000 +0.000328660000000,0.000045006000000,0.000062389000000,0.000364215000000,0.000038290000000,0.000330240000000,0.000268216000000,0.000261499000000,0.019858126000000,0.018036103000000,0.000355920000000,0.000124018000000,0.000084513000000,0.000220413000000,0.000150092000000 +0.000350784000000,0.000045006000000,0.000063574000000,0.000315623000000,0.000038290000000,0.000377648000000,0.000302586000000,0.000301796000000,0.018658719000000,0.017863856000000,0.000262685000000,0.000073845000000,0.000082537000000,0.000209746000000,0.000148907000000 +0.000354735000000,0.000047771000000,0.000150487000000,0.000312858000000,0.000037895000000,0.000355920000000,0.000266635000000,0.000262685000000,0.017296153000000,0.017319461000000,0.000261105000000,0.000071475000000,0.000082932000000,0.000246488000000,0.000228710000000 +0.000351968000000,0.000045401000000,0.000061204000000,0.000338142000000,0.000057252000000,0.000429401000000,0.000267426000000,0.000265451000000,0.017549782000000,0.017705437000000,0.000301401000000,0.000074240000000,0.000125598000000,0.000229104000000,0.000150093000000 +0.000380809000000,0.000047377000000,0.000060809000000,0.000400561000000,0.000037895000000,0.000332215000000,0.000299820000000,0.000336166000000,0.017950375000000,0.017865832000000,0.000263870000000,0.000103475000000,0.000087673000000,0.000326685000000,0.000147722000000 +0.000334191000000,0.000050142000000,0.000060809000000,0.000360265000000,0.000038290000000,0.000423870000000,0.000264265000000,0.000263870000000,0.017732301000000,0.017913239000000,0.000263475000000,0.000071870000000,0.000081351000000,0.000291920000000,0.000147722000000 +0.000376857000000,0.000047772000000,0.000061994000000,0.000349203000000,0.000038290000000,0.000330240000000,0.000264660000000,0.000265450000000,0.017763115000000,0.017282720000000,0.000263475000000,0.000071870000000,0.000082931000000,0.000203031000000,0.000193155000000 +0.000331821000000,0.000045796000000,0.000060809000000,0.000693697000000,0.000037895000000,0.000346833000000,0.000279672000000,0.000324709000000,0.017383857000000,0.017191066000000,0.000260709000000,0.000071870000000,0.000084117000000,0.000216067000000,0.000149303000000 +0.000366981000000,0.000044611000000,0.000063574000000,0.000642338000000,0.000038686000000,0.000331820000000,0.000267820000000,0.000269005000000,0.017822770000000,0.019745929000000,0.000299426000000,0.000071870000000,0.000082932000000,0.000247278000000,0.000147722000000 +0.000336562000000,0.000047771000000,0.000060808000000,0.000285203000000,0.000041055000000,0.000334586000000,0.000299821000000,0.000306142000000,0.018016350000000,0.017713733000000,0.000263080000000,0.000071475000000,0.000119673000000,0.000192363000000,0.000150092000000 +0.000605598000000,0.000047377000000,0.000060808000000,0.000302981000000,0.000038290000000,0.000528166000000,0.000276907000000,0.000346438000000,0.017437585000000,0.017080845000000,0.000263870000000,0.000074241000000,0.000084512000000,0.000268216000000,0.000185253000000 +0.000373697000000,0.000050142000000,0.000060413000000,0.000282438000000,0.000039475000000,0.000348413000000,0.000266241000000,0.000288759000000,0.017504746000000,0.017721634000000,0.000346833000000,0.000071870000000,0.000084512000000,0.000214487000000,0.000150487000000 +0.000347624000000,0.000068709000000,0.000062389000000,0.000354734000000,0.000037895000000,0.000372117000000,0.000416363000000,0.000380413000000,0.017780893000000,0.017840152000000,0.000263870000000,0.000073846000000,0.000085697000000,0.000225154000000,0.000149302000000 +0.000326290000000,0.000047377000000,0.000063178000000,0.000287969000000,0.000037500000000,0.000359870000000,0.000267821000000,0.000284808000000,0.017107709000000,0.017086375000000,0.000290339000000,0.000072660000000,0.000082142000000,0.000212512000000,0.000149303000000 +0.000436512000000,0.000045006000000,0.000060809000000,0.000285994000000,0.000037895000000,0.000434932000000,0.000301006000000,0.000270981000000,0.017618128000000,0.016949289000000,0.000265450000000,0.000129154000000,0.000084512000000,0.000215672000000,0.000293500000000 +0.000330241000000,0.000047377000000,0.000061599000000,0.000314043000000,0.000037895000000,0.000358685000000,0.000264265000000,0.000284808000000,0.017558868000000,0.016767166000000,0.000265055000000,0.000071475000000,0.000080956000000,0.000240166000000,0.000177746000000 +0.000424660000000,0.000046981000000,0.000060808000000,0.000289944000000,0.000037895000000,0.000382388000000,0.000274537000000,0.000303376000000,0.017185140000000,0.016684203000000,0.000487474000000,0.000075031000000,0.000081352000000,0.000319969000000,0.000147327000000 +0.000342487000000,0.000044611000000,0.000061993000000,0.000299426000000,0.000038290000000,0.000327080000000,0.000337351000000,0.000279277000000,0.017368054000000,0.017438770000000,0.000283229000000,0.000090833000000,0.000084117000000,0.000299030000000,0.000150092000000 +0.000471277000000,0.000047376000000,0.000061204000000,0.000281648000000,0.000037895000000,0.000438092000000,0.000274932000000,0.000277303000000,0.017394523000000,0.017553733000000,0.000289549000000,0.000074241000000,0.000082932000000,0.000229105000000,0.000148117000000 +0.000331426000000,0.000045401000000,0.000063574000000,0.000352759000000,0.000037895000000,0.000399771000000,0.000266636000000,0.000282438000000,0.018115115000000,0.016885685000000,0.000273747000000,0.000074241000000,0.000081351000000,0.000214487000000,0.000147722000000 +0.000434931000000,0.000044611000000,0.000061203000000,0.000282043000000,0.000038685000000,0.000432166000000,0.000262290000000,0.000279277000000,0.017137338000000,0.016671956000000,0.000304166000000,0.000073055000000,0.000102290000000,0.000253204000000,0.000148907000000 +0.000349203000000,0.000045401000000,0.000061993000000,0.000284018000000,0.000037895000000,0.000352364000000,0.000266635000000,0.000317598000000,0.017953140000000,0.016937042000000,0.000261500000000,0.000075425000000,0.000086487000000,0.000235820000000,0.000151673000000 +0.000380413000000,0.000047771000000,0.000061598000000,0.000297055000000,0.000038290000000,0.000352759000000,0.000306932000000,0.000284413000000,0.017868202000000,0.016755314000000,0.000260314000000,0.000073845000000,0.000084117000000,0.000243722000000,0.000148512000000 +0.000334586000000,0.000047376000000,0.000061598000000,0.000280463000000,0.000038290000000,0.000336167000000,0.000261895000000,0.000288364000000,0.016979709000000,0.017289042000000,0.000305747000000,0.000142981000000,0.000081352000000,0.000193944000000,0.000152463000000 +0.000339326000000,0.000045006000000,0.000064759000000,0.000332216000000,0.000037895000000,0.000348808000000,0.000263079000000,0.000280858000000,0.017283116000000,0.017196202000000,0.000268216000000,0.000074241000000,0.000082932000000,0.000290734000000,0.000148512000000 +0.000361845000000,0.000065154000000,0.000062389000000,0.000284809000000,0.000039476000000,0.000361055000000,0.000299426000000,0.000277302000000,0.018067707000000,0.016912549000000,0.000267426000000,0.000073846000000,0.000081747000000,0.000232265000000,0.000168660000000 +0.000332611000000,0.000045401000000,0.000061994000000,0.000279278000000,0.000039870000000,0.000360660000000,0.000265450000000,0.000279277000000,0.017407561000000,0.017540695000000,0.000302191000000,0.000073056000000,0.000118487000000,0.000210537000000,0.000151278000000 +0.000408068000000,0.000047377000000,0.000059228000000,0.000282437000000,0.000038685000000,0.000365006000000,0.000268611000000,0.000351573000000,0.017731906000000,0.016570425000000,0.000265451000000,0.000071080000000,0.000085302000000,0.000319574000000,0.000148117000000 +0.000337351000000,0.000047377000000,0.000095179000000,0.000284413000000,0.000037500000000,0.000347623000000,0.000302586000000,0.000282437000000,0.017969338000000,0.016588993000000,0.000272166000000,0.000073056000000,0.000085697000000,0.000257549000000,0.000150882000000 +0.000411623000000,0.000047377000000,0.000057648000000,0.000320364000000,0.000039080000000,0.000538833000000,0.000265055000000,0.000282833000000,0.017516992000000,0.017268894000000,0.000281648000000,0.000108216000000,0.000083327000000,0.000275327000000,0.000224759000000 +0.000325500000000,0.000047772000000,0.000057648000000,0.000281253000000,0.000037895000000,0.000360265000000,0.000265451000000,0.000276907000000,0.017797090000000,0.017752449000000,0.000321549000000,0.000074635000000,0.000082932000000,0.000500907000000,0.000151673000000 +0.000365005000000,0.000045006000000,0.000056858000000,0.000283228000000,0.000038290000000,0.000350784000000,0.000263080000000,0.000281648000000,0.017882819000000,0.017337239000000,0.000297845000000,0.000071475000000,0.000084908000000,0.000598092000000,0.000150488000000 +0.000408067000000,0.000047376000000,0.000057253000000,0.000282438000000,0.000038290000000,0.000329055000000,0.000288759000000,0.000278092000000,0.017733486000000,0.016862771000000,0.000270191000000,0.000073450000000,0.000116117000000,0.000262684000000,0.000150883000000 +0.000400561000000,0.000107426000000,0.000057253000000,0.000280462000000,0.000037895000000,0.000443623000000,0.000323919000000,0.000276907000000,0.018327263000000,0.016966276000000,0.000267426000000,0.000071475000000,0.000082537000000,0.000235030000000,0.000187228000000 +0.000352759000000,0.000047376000000,0.000058438000000,0.000402141000000,0.000038290000000,0.000329055000000,0.000267030000000,0.000293500000000,0.017443510000000,0.017870572000000,0.000289154000000,0.000074240000000,0.000081351000000,0.000232265000000,0.000149697000000 +0.000331426000000,0.000048166000000,0.000095178000000,0.000296265000000,0.000037895000000,0.000367377000000,0.000268611000000,0.000285598000000,0.017586128000000,0.016838672000000,0.000263870000000,0.000186043000000,0.000084907000000,0.000220413000000,0.000148512000000 +0.000349203000000,0.000045401000000,0.000058438000000,0.000281253000000,0.000037500000000,0.000351574000000,0.000299426000000,0.000278882000000,0.016958376000000,0.017245980000000,0.000349993000000,0.000192364000000,0.000084512000000,0.000248067000000,0.000146932000000 +0.000326290000000,0.000046981000000,0.000058043000000,0.000282043000000,0.000037895000000,0.000384759000000,0.000265845000000,0.000285598000000,0.017329733000000,0.017419017000000,0.000264265000000,0.000225154000000,0.000086093000000,0.000226339000000,0.000230685000000 +0.000342487000000,0.000044611000000,0.000057253000000,0.000282043000000,0.000037895000000,0.000330240000000,0.000264265000000,0.000280463000000,0.018194128000000,0.016969437000000,0.000264660000000,0.000210141000000,0.000098734000000,0.000233450000000,0.000152067000000 +0.000365006000000,0.000046981000000,0.000058833000000,0.000354734000000,0.000037500000000,0.000386339000000,0.000264660000000,0.000282437000000,0.018127757000000,0.017500794000000,0.000307327000000,0.000157598000000,0.000082537000000,0.000283623000000,0.000150092000000 +0.000425055000000,0.000067920000000,0.000059623000000,0.000279673000000,0.000037895000000,0.000362240000000,0.000267031000000,0.000277302000000,0.017642226000000,0.017246375000000,0.000262685000000,0.000093994000000,0.000088463000000,0.000218043000000,0.000150093000000 +0.000335771000000,0.000045006000000,0.000057253000000,0.000281252000000,0.000037500000000,0.000452709000000,0.000308117000000,0.000287179000000,0.018315411000000,0.016611116000000,0.000265055000000,0.000078191000000,0.000083722000000,0.000252413000000,0.000185253000000 +0.000719376000000,0.000045401000000,0.000093993000000,0.000282833000000,0.000038290000000,0.000330241000000,0.000263870000000,0.000348413000000,0.019005189000000,0.016573191000000,0.000346043000000,0.000075821000000,0.000083722000000,0.000306932000000,0.000151278000000 +0.000396215000000,0.000044611000000,0.000060019000000,0.000288759000000,0.000056858000000,0.000355919000000,0.000262685000000,0.000270981000000,0.017953535000000,0.017178820000000,0.000265846000000,0.000078587000000,0.000082537000000,0.000201055000000,0.000150883000000 +0.000328660000000,0.000045401000000,0.000059228000000,0.000354339000000,0.000059623000000,0.000349994000000,0.000302191000000,0.000433351000000,0.017443511000000,0.016560944000000,0.000309697000000,0.000075821000000,0.000259524000000,0.000266636000000,0.000151278000000 +0.000388315000000,0.000047377000000,0.000059623000000,0.000285599000000,0.000075821000000,0.000329450000000,0.000263475000000,0.000264265000000,0.017639066000000,0.017367659000000,0.000263080000000,0.000076216000000,0.000117697000000,0.000248067000000,0.000162734000000 +0.000326290000000,0.000045401000000,0.000059623000000,0.000355129000000,0.000122043000000,0.000449549000000,0.000285203000000,0.000260314000000,0.018230078000000,0.016905437000000,0.000266635000000,0.000075821000000,0.000081351000000,0.000243327000000,0.000149697000000 +0.000369746000000,0.000047772000000,0.000057647000000,0.000282043000000,0.000108611000000,0.000336166000000,0.000267031000000,0.000472463000000,0.017417832000000,0.016722129000000,0.000302586000000,0.000077401000000,0.000090043000000,0.000228314000000,0.000148512000000 +0.000327080000000,0.000063969000000,0.000059623000000,0.000284413000000,0.000056858000000,0.000377647000000,0.000262685000000,0.000355129000000,0.017702672000000,0.017423757000000,0.000260710000000,0.000078191000000,0.000082932000000,0.000243722000000,0.000241747000000 +0.000331426000000,0.000047376000000,0.000128364000000,0.000293104000000,0.000039870000000,0.000333006000000,0.000316808000000,0.000305351000000,0.017682918000000,0.016843808000000,0.000263870000000,0.000079772000000,0.000080957000000,0.000248463000000,0.000152463000000 +0.000385549000000,0.000047376000000,0.000058833000000,0.000279277000000,0.000040266000000,0.000414783000000,0.000269796000000,0.000261500000000,0.017074918000000,0.016634820000000,0.000297055000000,0.000076216000000,0.000087277000000,0.000204611000000,0.000150883000000 +0.000353944000000,0.000057253000000,0.000057253000000,0.000354734000000,0.000038290000000,0.000328265000000,0.000264660000000,0.000266240000000,0.017475905000000,0.017565980000000,0.000262289000000,0.000078191000000,0.000082142000000,0.000296660000000,0.000155228000000 +0.000372117000000,0.000046981000000,0.000058438000000,0.000298635000000,0.000038290000000,0.000372117000000,0.000308512000000,0.000265846000000,0.019757386000000,0.017537930000000,0.000268216000000,0.000076216000000,0.000083327000000,0.000208561000000,0.000231870000000 +0.000352759000000,0.000045401000000,0.000058833000000,0.000365796000000,0.000037895000000,0.000352364000000,0.000265845000000,0.000264265000000,0.018328054000000,0.017324597000000,0.000304957000000,0.000091623000000,0.000084512000000,0.000523821000000,0.000150882000000 +0.000367771000000,0.000045006000000,0.000058043000000,0.000318784000000,0.000037895000000,0.000331820000000,0.000263475000000,0.000302191000000,0.017914029000000,0.016972203000000,0.000267030000000,0.000079771000000,0.000080957000000,0.000297451000000,0.000150882000000 +0.000357104000000,0.000045401000000,0.000058833000000,0.000282438000000,0.000038290000000,0.000354339000000,0.000268611000000,0.000265055000000,0.018969238000000,0.018616053000000,0.000334191000000,0.000077401000000,0.000082931000000,0.000192364000000,0.000152068000000 +0.000332216000000,0.000047771000000,0.000056858000000,0.000311278000000,0.000039080000000,0.000329055000000,0.000262290000000,0.000275327000000,0.017767461000000,0.017473931000000,0.000261895000000,0.000073845000000,0.000084117000000,0.000284018000000,0.000220808000000 +0.000340512000000,0.000045402000000,0.000058043000000,0.000279278000000,0.000037895000000,0.000368956000000,0.000304956000000,0.000300216000000,0.017982770000000,0.016524598000000,0.000263870000000,0.000073450000000,0.000085302000000,0.000212117000000,0.000150883000000 +0.000333006000000,0.000044611000000,0.000058833000000,0.000355919000000,0.000038290000000,0.000359080000000,0.000264265000000,0.000264265000000,0.017216746000000,0.016814178000000,0.000319179000000,0.000071870000000,0.000083327000000,0.000268610000000,0.000150093000000 +0.000395821000000,0.000045006000000,0.000058833000000,0.000282043000000,0.000070685000000,0.000397006000000,0.000266635000000,0.000265846000000,0.018062177000000,0.017404795000000,0.000267425000000,0.000073846000000,0.000082932000000,0.000192364000000,0.000156018000000 +0.000371326000000,0.000046981000000,0.000058833000000,0.000367771000000,0.000037895000000,0.000332610000000,0.000299030000000,0.000348413000000,0.018335164000000,0.017332103000000,0.000282833000000,0.000071080000000,0.000087673000000,0.000250438000000,0.000218043000000 +0.000389104000000,0.000047377000000,0.000061994000000,0.000285993000000,0.000039871000000,0.000366981000000,0.000265451000000,0.000267821000000,0.017970918000000,0.017450227000000,0.000267031000000,0.000073450000000,0.000083327000000,0.000351969000000,0.000150488000000 +0.000326290000000,0.000047377000000,0.000059624000000,0.000283229000000,0.000037895000000,0.000342488000000,0.000270981000000,0.000296661000000,0.017465239000000,0.017196992000000,0.000273746000000,0.000074240000000,0.000081747000000,0.000214883000000,0.000149697000000 +0.000420710000000,0.000101105000000,0.000057648000000,0.000280858000000,0.000038290000000,0.000329055000000,0.000279672000000,0.000267031000000,0.017843313000000,0.017340004000000,0.000301401000000,0.000071870000000,0.000083327000000,0.000240167000000,0.000150487000000 +0.000343672000000,0.000047376000000,0.000058043000000,0.000282043000000,0.000038290000000,0.000349204000000,0.000271771000000,0.000264265000000,0.017547017000000,0.017014869000000,0.000271771000000,0.000074636000000,0.000084117000000,0.000182488000000,0.000193549000000 +0.000366981000000,0.000045401000000,0.000057253000000,0.000348808000000,0.000037895000000,0.000330635000000,0.000424660000000,0.000299030000000,0.017059906000000,0.016428993000000,0.000301006000000,0.000109796000000,0.000083722000000,0.000294685000000,0.000148117000000 +0.000328265000000,0.000048166000000,0.000057648000000,0.000286388000000,0.000037894000000,0.000392265000000,0.000263475000000,0.000264265000000,0.017772992000000,0.019019016000000,0.000301796000000,0.000074635000000,0.000087673000000,0.000230290000000,0.000150093000000 +0.000346833000000,0.000047376000000,0.000057648000000,0.000287969000000,0.000037895000000,0.000330636000000,0.000352364000000,0.000264660000000,0.017241239000000,0.017452992000000,0.000264265000000,0.000073845000000,0.000084117000000,0.000261895000000,0.000149303000000 +0.000355129000000,0.000044611000000,0.000059228000000,0.000292710000000,0.000037895000000,0.000399771000000,0.000265845000000,0.000308907000000,0.017527263000000,0.017735857000000,0.000339327000000,0.000074635000000,0.000084907000000,0.000230290000000,0.000313253000000 +0.000350389000000,0.000047376000000,0.000059623000000,0.000280463000000,0.000037895000000,0.000329845000000,0.000266240000000,0.000263475000000,0.017693980000000,0.018068893000000,0.000296265000000,0.000074635000000,0.000083327000000,0.000203031000000,0.000219623000000 +0.000365005000000,0.000048956000000,0.000058438000000,0.000427821000000,0.000038290000000,0.000387919000000,0.000336957000000,0.000272957000000,0.017638671000000,0.017394918000000,0.000263080000000,0.000072265000000,0.000086487000000,0.000293500000000,0.000189598000000 +0.000353944000000,0.000046982000000,0.000058438000000,0.000280858000000,0.000037895000000,0.000349203000000,0.000265055000000,0.000291920000000,0.017595609000000,0.016916894000000,0.000303772000000,0.000147327000000,0.000088462000000,0.000256759000000,0.000154043000000 +0.000368166000000,0.000045006000000,0.000058833000000,0.000329055000000,0.000039080000000,0.000645104000000,0.000300215000000,0.000270586000000,0.017665535000000,0.017011709000000,0.000266240000000,0.000073451000000,0.000082932000000,0.000185648000000,0.000148908000000 +0.000353549000000,0.000048166000000,0.000057648000000,0.000282438000000,0.000038290000000,0.000358685000000,0.000270586000000,0.000354339000000,0.017308005000000,0.017011709000000,0.000263080000000,0.000073846000000,0.000083722000000,0.000295080000000,0.000157204000000 +0.000370142000000,0.000047376000000,0.000059624000000,0.000285599000000,0.000039475000000,0.000363821000000,0.000276512000000,0.000278093000000,0.017934177000000,0.017041338000000,0.000262290000000,0.000074240000000,0.000083722000000,0.000195524000000,0.000187623000000 +0.000359870000000,0.000047376000000,0.000059229000000,0.000331030000000,0.000037499000000,0.000388314000000,0.000334586000000,0.000272956000000,0.017108498000000,0.017023955000000,0.000263080000000,0.000074635000000,0.000086488000000,0.000344462000000,0.000149698000000 +0.000442043000000,0.000048562000000,0.000095574000000,0.000281253000000,0.000037895000000,0.000370537000000,0.000262290000000,0.000261499000000,0.017259017000000,0.017033042000000,0.000306537000000,0.000073845000000,0.000083722000000,0.000244907000000,0.000148908000000 +0.000348808000000,0.000047377000000,0.000061204000000,0.000364216000000,0.000037895000000,0.000331820000000,0.000263475000000,0.000265846000000,0.017500004000000,0.017112449000000,0.000262289000000,0.000093993000000,0.000083327000000,0.000184463000000,0.000150092000000 +0.000330635000000,0.000100315000000,0.000056858000000,0.000285599000000,0.000090438000000,0.000380808000000,0.000281253000000,0.000299820000000,0.017215561000000,0.017883609000000,0.000270191000000,0.000071475000000,0.000086882000000,0.000334191000000,0.000148907000000 +0.000350783000000,0.000047376000000,0.000058438000000,0.000284413000000,0.000037895000000,0.000347228000000,0.000262685000000,0.000343672000000,0.017129042000000,0.016650227000000,0.000315623000000,0.000071871000000,0.000081352000000,0.000179327000000,0.000148907000000 +0.000361056000000,0.000047772000000,0.000056857000000,0.000338536000000,0.000037895000000,0.000419129000000,0.000325895000000,0.000405302000000,0.017579412000000,0.017194622000000,0.000265450000000,0.000073451000000,0.000083327000000,0.000334981000000,0.000157203000000 +0.000396215000000,0.000045401000000,0.000059623000000,0.000279277000000,0.000037500000000,0.000352759000000,0.000481153000000,0.000268611000000,0.017166967000000,0.016666030000000,0.000306932000000,0.000073846000000,0.000092413000000,0.000287968000000,0.000149302000000 +0.000335771000000,0.000047771000000,0.000059623000000,0.000352364000000,0.000037895000000,0.000442833000000,0.000307326000000,0.000262290000000,0.018401535000000,0.017093091000000,0.000265055000000,0.000070290000000,0.000084512000000,0.000191969000000,0.000186043000000 +0.000375278000000,0.000047772000000,0.000076216000000,0.000284018000000,0.000038290000000,0.000330635000000,0.000271376000000,0.000356314000000,0.017411906000000,0.017286671000000,0.000263475000000,0.000093994000000,0.000082142000000,0.000209747000000,0.000147327000000 +0.000327870000000,0.000045006000000,0.000059228000000,0.000318388000000,0.000037895000000,0.000365401000000,0.000264265000000,0.000263870000000,0.017912054000000,0.016666820000000,0.000299425000000,0.000071870000000,0.000088462000000,0.000224759000000,0.000150882000000 +0.000456265000000,0.000047771000000,0.000058833000000,0.000285599000000,0.000038290000000,0.000327870000000,0.000267820000000,0.000263475000000,0.017431659000000,0.016553438000000,0.000263079000000,0.000073845000000,0.000083327000000,0.000246488000000,0.000151278000000 +0.000365796000000,0.000047377000000,0.000058439000000,0.000340512000000,0.000040661000000,0.000362240000000,0.000267425000000,0.000263080000000,0.017038177000000,0.016929931000000,0.000265056000000,0.000075821000000,0.000082932000000,0.000195524000000,0.000154833000000 +0.000366586000000,0.000047377000000,0.000057648000000,0.000278487000000,0.000037895000000,0.000338931000000,0.000329846000000,0.000268216000000,0.017212005000000,0.017081240000000,0.000299820000000,0.000071476000000,0.000118092000000,0.000297055000000,0.000148512000000 +0.000337746000000,0.000049351000000,0.000057647000000,0.000280858000000,0.000038290000000,0.000329845000000,0.000265450000000,0.000347623000000,0.017255461000000,0.017215955000000,0.000265845000000,0.000071871000000,0.000082141000000,0.000233451000000,0.000170240000000 +0.000403327000000,0.000045006000000,0.000057648000000,0.000318783000000,0.000037895000000,0.000435326000000,0.000278883000000,0.000269796000000,0.017903363000000,0.017050425000000,0.000270191000000,0.000074241000000,0.000084117000000,0.000217252000000,0.000148907000000 +0.000331820000000,0.000048561000000,0.000093203000000,0.000281648000000,0.000037895000000,0.000329055000000,0.000323129000000,0.000263080000000,0.018094177000000,0.017540301000000,0.000269006000000,0.000075031000000,0.000084512000000,0.000225944000000,0.000149697000000 +0.000333796000000,0.000045401000000,0.000058043000000,0.000282043000000,0.000037895000000,0.000367376000000,0.000265055000000,0.000300611000000,0.017203314000000,0.017635511000000,0.000271376000000,0.000071080000000,0.000082932000000,0.000215673000000,0.000149302000000 +0.000337747000000,0.000047771000000,0.000057253000000,0.000285993000000,0.000039475000000,0.000362241000000,0.000267031000000,0.000263870000000,0.017395314000000,0.016934277000000,0.000307327000000,0.000074241000000,0.000085697000000,0.000507228000000,0.000150488000000 +0.000347623000000,0.000086487000000,0.000058438000000,0.000280463000000,0.000037895000000,0.000369747000000,0.000265450000000,0.000264265000000,0.017573091000000,0.017499214000000,0.000264265000000,0.000071870000000,0.000083327000000,0.000226339000000,0.000149303000000 +0.000401747000000,0.000047377000000,0.000059624000000,0.000329055000000,0.000037895000000,0.000348808000000,0.000276512000000,0.000275722000000,0.017351067000000,0.016929536000000,0.000263870000000,0.000071870000000,0.000080956000000,0.000249253000000,0.000175376000000 +0.000339327000000,0.000047376000000,0.000058438000000,0.000296265000000,0.000038290000000,0.000329845000000,0.000348413000000,0.000271376000000,0.017526473000000,0.016776252000000,0.000306142000000,0.000073845000000,0.000082932000000,0.000265055000000,0.000147722000000 +0.000384759000000,0.000045402000000,0.000059228000000,0.000284808000000,0.000037895000000,0.000332216000000,0.000262685000000,0.000303376000000,0.017716893000000,0.017152745000000,0.000272561000000,0.000071475000000,0.000082537000000,0.000198685000000,0.000151673000000 +0.000337351000000,0.000047772000000,0.000093598000000,0.000279277000000,0.000038290000000,0.000334981000000,0.000265845000000,0.000268215000000,0.017338819000000,0.017417832000000,0.000261500000000,0.000071870000000,0.000086488000000,0.000227525000000,0.000146932000000 +0.000444413000000,0.000047376000000,0.000059228000000,0.000284808000000,0.000090043000000,0.000677895000000,0.000301796000000,0.000265846000000,0.019516003000000,0.017018030000000,0.000268216000000,0.000074240000000,0.000081352000000,0.000315228000000,0.000152068000000 +0.000348018000000,0.000045401000000,0.000059229000000,0.000356710000000,0.000037895000000,0.000344462000000,0.000262290000000,0.000332610000000,0.017613387000000,0.017545042000000,0.000261895000000,0.000071870000000,0.000083722000000,0.000233450000000,0.000148512000000 +0.000352364000000,0.000046191000000,0.000056463000000,0.000280067000000,0.000038686000000,0.000329055000000,0.000272166000000,0.000263080000000,0.017544252000000,0.016777832000000,0.000338536000000,0.000071870000000,0.000083327000000,0.000212117000000,0.000148907000000 +0.000339722000000,0.000047376000000,0.000059623000000,0.000279672000000,0.000037895000000,0.000331425000000,0.000300611000000,0.000263870000000,0.017654473000000,0.016711858000000,0.000354339000000,0.000071475000000,0.000078191000000,0.000233055000000,0.000149302000000 +0.000361845000000,0.000045006000000,0.000058833000000,0.000299031000000,0.000037895000000,0.000403327000000,0.000262685000000,0.000264265000000,0.017513041000000,0.017123116000000,0.000265055000000,0.000109796000000,0.000080561000000,0.000237006000000,0.000152858000000 +0.000351573000000,0.000048166000000,0.000057253000000,0.000281648000000,0.000037895000000,0.000376858000000,0.000348018000000,0.000266635000000,0.017975659000000,0.016791264000000,0.000261105000000,0.000073846000000,0.000078191000000,0.000214488000000,0.000148907000000 +0.000325500000000,0.000048166000000,0.000095574000000,0.000329845000000,0.000039080000000,0.000393450000000,0.000264265000000,0.000339327000000,0.017417437000000,0.017543067000000,0.000268611000000,0.000072661000000,0.000078191000000,0.000262684000000,0.000148907000000 +0.000396610000000,0.000065549000000,0.000057253000000,0.000282438000000,0.000037895000000,0.000334981000000,0.000262290000000,0.000265055000000,0.018209140000000,0.017054375000000,0.000334191000000,0.000071476000000,0.000079772000000,0.000234636000000,0.000150487000000 +0.000332611000000,0.000057648000000,0.000062783000000,0.000284808000000,0.000038290000000,0.000400957000000,0.000306141000000,0.000282438000000,0.017416646000000,0.016816548000000,0.000260709000000,0.000071080000000,0.000080166000000,0.000194734000000,0.000148512000000 +0.000431771000000,0.000047771000000,0.000057253000000,0.000297055000000,0.000072265000000,0.000338141000000,0.000269401000000,0.000267426000000,0.017477486000000,0.016899116000000,0.000269005000000,0.000070685000000,0.000077006000000,0.000309302000000,0.000252018000000 +0.000328265000000,0.000060018000000,0.000057648000000,0.000285993000000,0.000040266000000,0.000415179000000,0.000263870000000,0.000263475000000,0.019413287000000,0.017329338000000,0.000299426000000,0.000128759000000,0.000077797000000,0.000253203000000,0.000150092000000 +0.000368956000000,0.000047771000000,0.000058438000000,0.000301005000000,0.000050932000000,0.000336561000000,0.000266240000000,0.000422290000000,0.017603906000000,0.016865931000000,0.000264265000000,0.000071476000000,0.000078587000000,0.000248068000000,0.000148907000000 +0.000334586000000,0.000047377000000,0.000058438000000,0.000266635000000,0.000037895000000,0.000410833000000,0.000265055000000,0.000318388000000,0.017643412000000,0.017079264000000,0.000265451000000,0.000071080000000,0.000078191000000,0.000246092000000,0.000150883000000 +0.000325895000000,0.000044611000000,0.000058834000000,0.000268611000000,0.000037500000000,0.000334191000000,0.000338537000000,0.000316018000000,0.018794226000000,0.016841042000000,0.000314043000000,0.000070289000000,0.000076611000000,0.000237796000000,0.000167475000000 +0.000364215000000,0.000044216000000,0.000057648000000,0.000301795000000,0.000037895000000,0.000353154000000,0.000263080000000,0.000545153000000,0.018005683000000,0.018087066000000,0.000265450000000,0.000071870000000,0.000080562000000,0.000231475000000,0.000148908000000 +0.000347623000000,0.000062783000000,0.000059623000000,0.000267031000000,0.000038685000000,0.000331030000000,0.000264265000000,0.000378437000000,0.018010819000000,0.017778523000000,0.000297845000000,0.000071475000000,0.000080956000000,0.000216067000000,0.000152858000000 +0.000393055000000,0.000045006000000,0.000059624000000,0.000265845000000,0.000038685000000,0.000348808000000,0.000315623000000,0.000359870000000,0.018698226000000,0.017254276000000,0.000272166000000,0.000074241000000,0.000077401000000,0.000232660000000,0.000153253000000 +0.000349993000000,0.000080956000000,0.000059624000000,0.000353944000000,0.000037894000000,0.000365006000000,0.000272957000000,0.000392265000000,0.017225042000000,0.016948499000000,0.000265055000000,0.000073846000000,0.000082141000000,0.000180117000000,0.000146932000000 +0.000363820000000,0.000045401000000,0.000058833000000,0.000267820000000,0.000039475000000,0.000363821000000,0.000263475000000,0.000267030000000,0.018033732000000,0.017195017000000,0.000336166000000,0.000074241000000,0.000095574000000,0.000304561000000,0.000151277000000 +0.000333006000000,0.000047377000000,0.000077006000000,0.000300215000000,0.000075821000000,0.000393451000000,0.000280463000000,0.000263475000000,0.017162227000000,0.016491808000000,0.000269006000000,0.000071871000000,0.000078192000000,0.000260710000000,0.000148512000000 +0.000327080000000,0.000046587000000,0.000058833000000,0.000263870000000,0.000040265000000,0.000326685000000,0.000268611000000,0.000266636000000,0.017077289000000,0.017572696000000,0.000278093000000,0.000074241000000,0.000077796000000,0.000209747000000,0.000150882000000 +0.000381598000000,0.000047377000000,0.000058833000000,0.000267425000000,0.000052513000000,0.000404907000000,0.000327870000000,0.000283228000000,0.018249041000000,0.016748202000000,0.000274537000000,0.000071870000000,0.000076611000000,0.000265055000000,0.000148512000000 +0.000325895000000,0.000044611000000,0.000059228000000,0.000435327000000,0.000038685000000,0.000331030000000,0.000268215000000,0.000265845000000,0.017549782000000,0.017161832000000,0.000264661000000,0.000072265000000,0.000077006000000,0.000186438000000,0.000149697000000 +0.000378438000000,0.000047377000000,0.000059228000000,0.000264660000000,0.000038290000000,0.000383969000000,0.000267030000000,0.000264265000000,0.017369240000000,0.017468005000000,0.000315623000000,0.000074241000000,0.000081352000000,0.000319574000000,0.000151672000000 +0.000346043000000,0.000045006000000,0.000057253000000,0.000299030000000,0.000037895000000,0.000331425000000,0.000301005000000,0.000337352000000,0.017936548000000,0.017182770000000,0.000266241000000,0.000073450000000,0.000082537000000,0.000252808000000,0.000149302000000 +0.000410042000000,0.000105846000000,0.000059228000000,0.000267030000000,0.000038685000000,0.000351968000000,0.000265055000000,0.000265845000000,0.017556894000000,0.018891411000000,0.000263870000000,0.000071475000000,0.000080562000000,0.000210537000000,0.000149697000000 +0.000360660000000,0.000061599000000,0.000058833000000,0.000264660000000,0.000038290000000,0.000358290000000,0.000265056000000,0.000264660000000,0.017957486000000,0.017952745000000,0.000316808000000,0.000073846000000,0.000081746000000,0.000212907000000,0.000148512000000 +0.000387919000000,0.000044611000000,0.000056463000000,0.000338537000000,0.000039870000000,0.000359870000000,0.000300215000000,0.000261105000000,0.017483017000000,0.017043708000000,0.000261105000000,0.000074241000000,0.000078191000000,0.000259524000000,0.000151278000000 +0.000333006000000,0.000044611000000,0.000057648000000,0.000273747000000,0.000038289000000,0.000334586000000,0.000266241000000,0.000262290000000,0.017990276000000,0.018941583000000,0.000310092000000,0.000074240000000,0.000077401000000,0.000217253000000,0.000148117000000 +0.000372512000000,0.000045006000000,0.000057648000000,0.000262685000000,0.000040660000000,0.000357105000000,0.000264660000000,0.000351178000000,0.017703066000000,0.017465239000000,0.000286783000000,0.000132315000000,0.000080957000000,0.000285599000000,0.000148907000000 +0.000332611000000,0.000044611000000,0.000057648000000,0.000263870000000,0.000040265000000,0.000408857000000,0.000335771000000,0.000260710000000,0.017626029000000,0.016873437000000,0.000271771000000,0.000208956000000,0.000076611000000,0.000233845000000,0.000152463000000 +0.000326289000000,0.000047772000000,0.000059228000000,0.000262290000000,0.000038289000000,0.000328265000000,0.000361451000000,0.000269006000000,0.017440745000000,0.017020005000000,0.000305746000000,0.000124019000000,0.000079772000000,0.000417944000000,0.000150092000000 +0.000434141000000,0.000045006000000,0.000059228000000,0.000298635000000,0.000038290000000,0.000383969000000,0.000263870000000,0.000351574000000,0.017648548000000,0.016792844000000,0.000264660000000,0.000090043000000,0.000082537000000,0.000221993000000,0.000150488000000 +0.000353154000000,0.000047771000000,0.000059229000000,0.000262290000000,0.000038290000000,0.000363426000000,0.000265450000000,0.000267821000000,0.017209240000000,0.017068203000000,0.000265451000000,0.000070685000000,0.000081747000000,0.000215672000000,0.000148907000000 +0.000338536000000,0.000045006000000,0.000058833000000,0.000270586000000,0.000037895000000,0.000805104000000,0.000306142000000,0.000297845000000,0.017458128000000,0.017414672000000,0.000368167000000,0.000074635000000,0.000078191000000,0.000215278000000,0.000150488000000 +0.000332610000000,0.000046982000000,0.000061203000000,0.000302191000000,0.000039080000000,0.000397401000000,0.000267425000000,0.000263870000000,0.017705436000000,0.017191856000000,0.000265450000000,0.000073845000000,0.000081352000000,0.000217253000000,0.000151673000000 +0.000422685000000,0.000044611000000,0.000059623000000,0.000266240000000,0.000037895000000,0.000331426000000,0.000265845000000,0.000265845000000,0.017485387000000,0.017943658000000,0.000346833000000,0.000072265000000,0.000082537000000,0.000258339000000,0.000148117000000 +0.000333401000000,0.000047376000000,0.000058043000000,0.000267820000000,0.000039080000000,0.000366981000000,0.000265450000000,0.000299820000000,0.017651708000000,0.017236104000000,0.000312463000000,0.000071870000000,0.000075821000000,0.000190388000000,0.000148907000000 +0.000469697000000,0.000050932000000,0.000059228000000,0.000272957000000,0.000037895000000,0.000333796000000,0.000320363000000,0.000269401000000,0.017334078000000,0.017233733000000,0.000269401000000,0.000073055000000,0.000079772000000,0.000212117000000,0.000148117000000 +0.000329450000000,0.000083722000000,0.000059228000000,0.000269796000000,0.000106241000000,0.000353944000000,0.000321154000000,0.000265450000000,0.017624844000000,0.017438375000000,0.000726092000000,0.000070685000000,0.000108611000000,0.000285599000000,0.000149303000000 +0.000445994000000,0.000047376000000,0.000060414000000,0.000334586000000,0.000041056000000,0.000334981000000,0.000270191000000,0.000339327000000,0.016954819000000,0.017259807000000,0.000315228000000,0.000071475000000,0.000080956000000,0.000231870000000,0.000150092000000 +0.000327080000000,0.000047376000000,0.000099919000000,0.000262684000000,0.000050932000000,0.000357895000000,0.000267030000000,0.000262685000000,0.017341980000000,0.017853584000000,0.000261895000000,0.000072266000000,0.000114142000000,0.000263870000000,0.000199475000000 +0.000391870000000,0.000046982000000,0.000073055000000,0.000270586000000,0.000038290000000,0.000404117000000,0.000303376000000,0.000312068000000,0.017481436000000,0.017270079000000,0.000264660000000,0.000074241000000,0.000078981000000,0.000227130000000,0.000151673000000 +0.000345647000000,0.000045006000000,0.000059624000000,0.000300611000000,0.000038290000000,0.000340512000000,0.000272956000000,0.000265056000000,0.017208054000000,0.017285881000000,0.000302981000000,0.000073451000000,0.000079772000000,0.000238191000000,0.000147722000000 +0.000428611000000,0.000047376000000,0.000058438000000,0.000265451000000,0.000039475000000,0.000366191000000,0.000263870000000,0.000267031000000,0.017123511000000,0.018402720000000,0.000265056000000,0.000073451000000,0.000078982000000,0.000182092000000,0.000149697000000 +0.000327080000000,0.000044611000000,0.000057253000000,0.000266636000000,0.000037500000000,0.000367376000000,0.000276512000000,0.000300610000000,0.017756795000000,0.017498029000000,0.000265845000000,0.000071871000000,0.000080167000000,0.000265055000000,0.000198685000000 +0.000386339000000,0.000047376000000,0.000059624000000,0.000272167000000,0.000037500000000,0.000365795000000,0.000264660000000,0.000278092000000,0.017365288000000,0.017135363000000,0.000265055000000,0.000071870000000,0.000078981000000,0.000197895000000,0.000148117000000 +0.000355129000000,0.000080166000000,0.000057648000000,0.000267426000000,0.000037895000000,0.000336166000000,0.000304167000000,0.000466932000000,0.018008449000000,0.017399659000000,0.000269401000000,0.000072661000000,0.000117302000000,0.000218438000000,0.000148117000000 +0.000351179000000,0.000047376000000,0.000056858000000,0.000299820000000,0.000037895000000,0.000392660000000,0.000270191000000,0.000340117000000,0.017444696000000,0.017318671000000,0.000317599000000,0.000071476000000,0.000078191000000,0.000251623000000,0.000148512000000 +0.000681450000000,0.000047376000000,0.000057648000000,0.000266240000000,0.000037895000000,0.000336561000000,0.000265055000000,0.000269401000000,0.017249536000000,0.017627214000000,0.000265845000000,0.000071475000000,0.000078191000000,0.000193154000000,0.000256363000000 +0.000389105000000,0.000045401000000,0.000058833000000,0.000270981000000,0.000037895000000,0.000328265000000,0.000360660000000,0.000343673000000,0.017945634000000,0.017680942000000,0.000264265000000,0.000125203000000,0.000076611000000,0.000261104000000,0.000153253000000 +0.000334981000000,0.000045006000000,0.000058438000000,0.000407673000000,0.000037895000000,0.000371721000000,0.000266240000000,0.000263870000000,0.017460893000000,0.017721239000000,0.000316414000000,0.000071080000000,0.000076216000000,0.000265846000000,0.000154833000000 +0.000368956000000,0.000046982000000,0.000056462000000,0.000280067000000,0.000037895000000,0.000357499000000,0.000309698000000,0.000276512000000,0.018267609000000,0.017668696000000,0.000262290000000,0.000071475000000,0.000076215000000,0.000255573000000,0.000184858000000 +0.000333005000000,0.000047376000000,0.000098339000000,0.000294290000000,0.000037895000000,0.000378043000000,0.000262685000000,0.000267030000000,0.017664350000000,0.016955609000000,0.000265055000000,0.000073845000000,0.000159969000000,0.000258340000000,0.000149697000000 +0.000345648000000,0.000129154000000,0.000057253000000,0.000269006000000,0.000038685000000,0.000345648000000,0.000263475000000,0.000274932000000,0.017362918000000,0.017931017000000,0.000272166000000,0.000071475000000,0.000080561000000,0.000206192000000,0.000147327000000 +0.000334587000000,0.000047376000000,0.000061599000000,0.000265451000000,0.000037895000000,0.000368956000000,0.000306536000000,0.000309697000000,0.018574177000000,0.018304349000000,0.000265055000000,0.000074636000000,0.000078981000000,0.000237005000000,0.000150488000000 +0.000347623000000,0.000045401000000,0.000059623000000,0.000347228000000,0.000037895000000,0.000357104000000,0.000263870000000,0.000265056000000,0.018332398000000,0.017352251000000,0.000405697000000,0.000109796000000,0.000079771000000,0.000265451000000,0.000196710000000 +0.000458240000000,0.000045401000000,0.000058438000000,0.000300611000000,0.000037895000000,0.000393055000000,0.000265845000000,0.000263475000000,0.017312350000000,0.017573881000000,0.000264660000000,0.000073450000000,0.000079771000000,0.000232660000000,0.000148513000000 +0.000339722000000,0.000047377000000,0.000058834000000,0.000285204000000,0.000077006000000,0.000336956000000,0.000301401000000,0.000581894000000,0.017486178000000,0.017734276000000,0.000266636000000,0.000088858000000,0.000078586000000,0.000250043000000,0.000153253000000 +0.000361055000000,0.000047377000000,0.000057648000000,0.000263475000000,0.000054092000000,0.000379228000000,0.000265055000000,0.000260709000000,0.017701486000000,0.017771412000000,0.000285599000000,0.000073451000000,0.000162339000000,0.000254783000000,0.000151278000000 +0.000362636000000,0.000049352000000,0.000130339000000,0.000267821000000,0.000040661000000,0.000334586000000,0.000266635000000,0.000312068000000,0.017894275000000,0.017536350000000,0.000265845000000,0.000073451000000,0.000095574000000,0.000321549000000,0.000184068000000 +0.000442832000000,0.000046981000000,0.000060018000000,0.000316808000000,0.000039080000000,0.000330240000000,0.000263870000000,0.000271376000000,0.017302078000000,0.017352252000000,0.000308117000000,0.000074240000000,0.000083722000000,0.000226340000000,0.000147327000000 +0.000349203000000,0.000046981000000,0.000056858000000,0.000267821000000,0.000038290000000,0.000442042000000,0.000269796000000,0.000284018000000,0.017236498000000,0.017416647000000,0.000269796000000,0.000091228000000,0.000076611000000,0.000275327000000,0.000148907000000 +0.000362240000000,0.000047772000000,0.000058043000000,0.000268611000000,0.000041055000000,0.000338537000000,0.000299031000000,0.000263475000000,0.017920350000000,0.018300399000000,0.000263870000000,0.000073846000000,0.000077796000000,0.000219623000000,0.000152858000000 +0.000349598000000,0.000047376000000,0.000058833000000,0.000312068000000,0.000038685000000,0.000421500000000,0.000268216000000,0.000264660000000,0.017290622000000,0.017187906000000,0.000349203000000,0.000070685000000,0.000077796000000,0.000236216000000,0.000186438000000 +0.000390290000000,0.000045006000000,0.000060018000000,0.000268611000000,0.000038290000000,0.000331031000000,0.000263870000000,0.000298635000000,0.017348696000000,0.017881239000000,0.000264660000000,0.000077006000000,0.000081747000000,0.000275722000000,0.000148907000000 +0.000329055000000,0.000047772000000,0.000059623000000,0.000359080000000,0.000038290000000,0.000362636000000,0.000351969000000,0.000267030000000,0.020113731000000,0.017865437000000,0.000279672000000,0.000073450000000,0.000078587000000,0.000185253000000,0.000148117000000 +0.000371327000000,0.000045401000000,0.000058833000000,0.000267031000000,0.000038290000000,0.000334586000000,0.000269006000000,0.000265450000000,0.017999757000000,0.017070178000000,0.000267821000000,0.000072265000000,0.000089648000000,0.000228314000000,0.000153648000000 +0.000332611000000,0.000047376000000,0.000059623000000,0.000270191000000,0.000038290000000,0.000413203000000,0.000265055000000,0.000300215000000,0.018164102000000,0.017917190000000,0.000263870000000,0.000110981000000,0.000078586000000,0.000328660000000,0.000184857000000 +0.000327475000000,0.000083327000000,0.000057253000000,0.000302586000000,0.000038290000000,0.000353549000000,0.000269006000000,0.000269006000000,0.018699016000000,0.017467215000000,0.000347623000000,0.000072265000000,0.000081351000000,0.000243327000000,0.000155623000000 +0.000359870000000,0.000047772000000,0.000058438000000,0.000266636000000,0.000038289000000,0.000393450000000,0.000267426000000,0.000284018000000,0.017877288000000,0.017710573000000,0.000264265000000,0.000072265000000,0.000076216000000,0.000273747000000,0.000150882000000 +0.000345647000000,0.000046981000000,0.000057648000000,0.000289154000000,0.000037894000000,0.000368561000000,0.000307722000000,0.000266240000000,0.017821190000000,0.018236004000000,0.000314043000000,0.000074636000000,0.000079376000000,0.000199870000000,0.000150092000000 +0.000395821000000,0.000045006000000,0.000059623000000,0.000264660000000,0.000037894000000,0.000350784000000,0.000262685000000,0.000262685000000,0.017272449000000,0.017682523000000,0.000265846000000,0.000072266000000,0.000076611000000,0.000247277000000,0.000189203000000 +0.000333796000000,0.000047376000000,0.000078981000000,0.000266636000000,0.000037499000000,0.000334586000000,0.000264660000000,0.000301006000000,0.017228203000000,0.017907313000000,0.000273746000000,0.000071870000000,0.000078191000000,0.000196709000000,0.000149302000000 +0.000422290000000,0.000047771000000,0.000058833000000,0.000319574000000,0.000037895000000,0.000359475000000,0.000315228000000,0.000272561000000,0.017808152000000,0.017724399000000,0.000303376000000,0.000075030000000,0.000079772000000,0.000244117000000,0.000148907000000 +0.000329055000000,0.000058833000000,0.000059623000000,0.000263870000000,0.000037895000000,0.000616660000000,0.000266636000000,0.000262290000000,0.017109684000000,0.017799066000000,0.000263080000000,0.000074635000000,0.000077402000000,0.000198290000000,0.000149697000000 +0.000392660000000,0.000048166000000,0.000059623000000,0.000272561000000,0.000037895000000,0.000434141000000,0.000271377000000,0.000316018000000,0.017372005000000,0.017993041000000,0.000263475000000,0.000073845000000,0.000077796000000,0.000265846000000,0.000217648000000 +0.000348809000000,0.000047771000000,0.000057252000000,0.000344858000000,0.000116512000000,0.000357500000000,0.000372907000000,0.000268216000000,0.017283905000000,0.017331313000000,0.000307722000000,0.000071080000000,0.000077401000000,0.000238191000000,0.000149302000000 +0.000441252000000,0.000046981000000,0.000057253000000,0.000275327000000,0.000037895000000,0.000368166000000,0.000270981000000,0.000269796000000,0.017791560000000,0.017680153000000,0.000266636000000,0.000073846000000,0.000077006000000,0.000192759000000,0.000150093000000 +0.000363821000000,0.000047376000000,0.000059228000000,0.000349203000000,0.000037894000000,0.000358685000000,0.000269400000000,0.000265845000000,0.017681338000000,0.018287757000000,0.000263870000000,0.000072660000000,0.000077796000000,0.000249253000000,0.000148117000000 +0.000374487000000,0.000047377000000,0.000093994000000,0.000269796000000,0.000037894000000,0.000348809000000,0.000262684000000,0.000265055000000,0.017422177000000,0.017799066000000,0.000286784000000,0.000074636000000,0.000078981000000,0.000188809000000,0.000154833000000 +0.000353944000000,0.000045401000000,0.000057253000000,0.000265846000000,0.000038290000000,0.000333005000000,0.000345253000000,0.000327474000000,0.018309485000000,0.020130324000000,0.000265450000000,0.000074636000000,0.000115722000000,0.000296660000000,0.000148907000000 +0.000355524000000,0.000044611000000,0.000057253000000,0.000283228000000,0.000037895000000,0.000351573000000,0.000264265000000,0.000506833000000,0.017577041000000,0.019270275000000,0.000305747000000,0.000073845000000,0.000080956000000,0.000260709000000,0.000151277000000 +0.000331820000000,0.000045401000000,0.000059228000000,0.000268611000000,0.000038290000000,0.000358290000000,0.000270981000000,0.000325895000000,0.017110870000000,0.018419312000000,0.000268610000000,0.000071475000000,0.000077796000000,0.000212512000000,0.000149697000000 +0.000354734000000,0.000100314000000,0.000061598000000,0.000263870000000,0.000037500000000,0.000333006000000,0.000331821000000,0.000272167000000,0.017751659000000,0.019632151000000,0.000263870000000,0.000074635000000,0.000078191000000,0.000225549000000,0.000152462000000 +0.000367771000000,0.000045401000000,0.000058833000000,0.000272166000000,0.000038290000000,0.000389500000000,0.000268215000000,0.000301401000000,0.017589684000000,0.017773782000000,0.000349598000000,0.000073846000000,0.000079377000000,0.000180117000000,0.000151673000000 +0.000333796000000,0.000047772000000,0.000058043000000,0.000264265000000,0.000039475000000,0.000331031000000,0.000335377000000,0.000260314000000,0.017244400000000,0.017185140000000,0.000263080000000,0.000074240000000,0.000080561000000,0.000258339000000,0.000155623000000 +0.000537252000000,0.000047377000000,0.000058043000000,0.000301401000000,0.000037895000000,0.000368562000000,0.000264265000000,0.000282437000000,0.017303659000000,0.016818524000000,0.000262290000000,0.000107426000000,0.000117302000000,0.000235426000000,0.000152067000000 +0.000342487000000,0.000045006000000,0.000057648000000,0.000268216000000,0.000037895000000,0.000331031000000,0.000263475000000,0.000333401000000,0.017379906000000,0.016810228000000,0.000304561000000,0.000071871000000,0.000080167000000,0.000199870000000,0.000162735000000 +0.000377253000000,0.000045401000000,0.000057648000000,0.000267425000000,0.000038290000000,0.000366586000000,0.000308117000000,0.000263870000000,0.017853584000000,0.017492499000000,0.000260709000000,0.000075031000000,0.000078982000000,0.000233055000000,0.000150882000000 +0.000335376000000,0.000047376000000,0.000057253000000,0.000348413000000,0.000037895000000,0.000328660000000,0.000266241000000,0.000355919000000,0.017604696000000,0.016575166000000,0.000337747000000,0.000073451000000,0.000085303000000,0.000213697000000,0.000148512000000 +0.000389894000000,0.000047376000000,0.000058043000000,0.000308117000000,0.000037895000000,0.000407277000000,0.000267821000000,0.000266636000000,0.018058621000000,0.016663659000000,0.000292710000000,0.000073846000000,0.000080166000000,0.000272561000000,0.000148907000000 +0.000329846000000,0.000047377000000,0.000057253000000,0.000312463000000,0.000038290000000,0.000350389000000,0.000279277000000,0.000264265000000,0.017722819000000,0.017009733000000,0.000264265000000,0.000072266000000,0.000081747000000,0.000238191000000,0.000151672000000 +0.000372907000000,0.000047376000000,0.000058834000000,0.000276117000000,0.000038290000000,0.000335771000000,0.000264265000000,0.000278092000000,0.016937437000000,0.016847758000000,0.000297845000000,0.000107821000000,0.000115722000000,0.000182092000000,0.000148908000000 +0.000350388000000,0.000044611000000,0.000059228000000,0.000264660000000,0.000037895000000,0.000399376000000,0.000315228000000,0.000266635000000,0.017273634000000,0.017244400000000,0.000272166000000,0.000071475000000,0.000077006000000,0.000249648000000,0.000148908000000 +0.000347623000000,0.000047376000000,0.000059624000000,0.000624166000000,0.000037895000000,0.000333006000000,0.000262685000000,0.000368561000000,0.017548597000000,0.016931116000000,0.000265846000000,0.000072265000000,0.000078191000000,0.000199079000000,0.000148512000000 +0.000352364000000,0.000045006000000,0.000062784000000,0.000298636000000,0.000037895000000,0.000447969000000,0.000262289000000,0.000260709000000,0.017575857000000,0.016748598000000,0.000264265000000,0.000074241000000,0.000077401000000,0.000227920000000,0.000149303000000 +0.000331030000000,0.000046981000000,0.000058833000000,0.000266635000000,0.000109796000000,0.000363031000000,0.000346833000000,0.000263870000000,0.017187116000000,0.017119561000000,0.000271376000000,0.000072660000000,0.000080561000000,0.000216463000000,0.000149698000000 +0.000388709000000,0.000045401000000,0.000058438000000,0.000265450000000,0.000037895000000,0.000362635000000,0.000268611000000,0.000308117000000,0.017737831000000,0.016478376000000,0.000306537000000,0.000073846000000,0.000076216000000,0.000482339000000,0.000150487000000 +0.000335377000000,0.000081352000000,0.000060018000000,0.000299425000000,0.000039080000000,0.000329845000000,0.000265846000000,0.000264660000000,0.016855660000000,0.016564104000000,0.000269006000000,0.000110191000000,0.000102290000000,0.000254783000000,0.000148907000000 +0.000425845000000,0.000046981000000,0.000130735000000,0.000265056000000,0.000038290000000,0.000385549000000,0.000263475000000,0.000270191000000,0.017455758000000,0.017010128000000,0.000261105000000,0.000071475000000,0.000077005000000,0.000202240000000,0.000149697000000 +0.000359870000000,0.000045006000000,0.000059228000000,0.000264266000000,0.000037895000000,0.000359474000000,0.000269401000000,0.000319574000000,0.017287857000000,0.016573981000000,0.000301401000000,0.000073055000000,0.000077401000000,0.000310487000000,0.000148907000000 +0.000382388000000,0.000047377000000,0.000056463000000,0.000307722000000,0.000038290000000,0.000366981000000,0.000325500000000,0.000260709000000,0.017220301000000,0.016839067000000,0.000266635000000,0.000071475000000,0.000079771000000,0.000191179000000,0.000150882000000 +0.000350783000000,0.000047377000000,0.000059229000000,0.000266241000000,0.000037895000000,0.000331426000000,0.000264265000000,0.000305352000000,0.017399659000000,0.017170919000000,0.000266636000000,0.000072660000000,0.000078191000000,0.000214882000000,0.000148512000000 +0.000329055000000,0.000048167000000,0.000059229000000,0.000266240000000,0.000037895000000,0.000336956000000,0.000265845000000,0.000261895000000,0.016880153000000,0.017151166000000,0.000274537000000,0.000074240000000,0.000078191000000,0.000259524000000,0.000186438000000 +0.000349598000000,0.000047377000000,0.000058043000000,0.000263080000000,0.000038290000000,0.000356314000000,0.000266241000000,0.000264660000000,0.017367659000000,0.017313536000000,0.000268215000000,0.000108216000000,0.000115722000000,0.000196315000000,0.000153253000000 +0.000356315000000,0.000080957000000,0.000076216000000,0.000263870000000,0.000037895000000,0.000329450000000,0.000262289000000,0.000299821000000,0.017603115000000,0.016484302000000,0.000356710000000,0.000071080000000,0.000079771000000,0.000268610000000,0.000156019000000 +0.000426240000000,0.000044611000000,0.000058833000000,0.000266240000000,0.000038290000000,0.000360265000000,0.000343278000000,0.000271376000000,0.017292202000000,0.017401634000000,0.000266241000000,0.000072660000000,0.000078191000000,0.000192759000000,0.000187229000000 +0.000336166000000,0.000045006000000,0.000059228000000,0.000266636000000,0.000038290000000,0.000329845000000,0.000332610000000,0.000278488000000,0.017552153000000,0.017401239000000,0.000279672000000,0.000073450000000,0.000078586000000,0.000376068000000,0.000152067000000 +0.000419129000000,0.000046982000000,0.000058833000000,0.000289154000000,0.000037895000000,0.000391475000000,0.000285599000000,0.000405302000000,0.017979214000000,0.016810622000000,0.000265055000000,0.000071475000000,0.000077005000000,0.000232661000000,0.000150883000000 +0.000341302000000,0.000044611000000,0.000058438000000,0.000267426000000,0.000037895000000,0.000368166000000,0.000268216000000,0.000260709000000,0.017323017000000,0.018676102000000,0.000263870000000,0.000071475000000,0.000078981000000,0.000231475000000,0.000153252000000 +0.000366586000000,0.000044611000000,0.000058833000000,0.000264265000000,0.000037499000000,0.000382783000000,0.000265450000000,0.000312068000000,0.017824745000000,0.016769931000000,0.000301401000000,0.000071080000000,0.000150488000000,0.000256364000000,0.000233451000000 +0.000332611000000,0.000047376000000,0.000133105000000,0.000339722000000,0.000038685000000,0.000326289000000,0.000303772000000,0.000263870000000,0.018047165000000,0.016689733000000,0.000261499000000,0.000071475000000,0.000077401000000,0.000205796000000,0.000147722000000 +0.000419919000000,0.000045401000000,0.000077401000000,0.000267031000000,0.000037895000000,0.000365401000000,0.000269401000000,0.000267031000000,0.018348201000000,0.017464449000000,0.000262685000000,0.000070290000000,0.000078191000000,0.000276117000000,0.000148907000000 +0.000331426000000,0.000044611000000,0.000058833000000,0.000264660000000,0.000042635000000,0.000363821000000,0.000263475000000,0.000431771000000,0.017108499000000,0.017263363000000,0.000302191000000,0.000074636000000,0.000077796000000,0.000202240000000,0.000150487000000 +0.000369351000000,0.000152068000000,0.000058438000000,0.000265055000000,0.000037894000000,0.000357499000000,0.000301401000000,0.000265845000000,0.017249931000000,0.016871857000000,0.000268611000000,0.000074241000000,0.000079771000000,0.000260710000000,0.000185648000000 +0.000329055000000,0.000083327000000,0.000060018000000,0.000263870000000,0.000037894000000,0.000351969000000,0.000268215000000,0.000303772000000,0.017247560000000,0.016892005000000,0.000263475000000,0.000071871000000,0.000101500000000,0.000231870000000,0.000147327000000 +0.000329055000000,0.000047771000000,0.000058043000000,0.000282438000000,0.000076215000000,0.000355525000000,0.000289154000000,0.000265845000000,0.017350276000000,0.016568055000000,0.000346438000000,0.000073056000000,0.000097549000000,0.000222388000000,0.000149697000000 +0.000333006000000,0.000047377000000,0.000095179000000,0.000263870000000,0.000054488000000,0.000436907000000,0.000265845000000,0.000266635000000,0.017560054000000,0.016873437000000,0.000267821000000,0.000074240000000,0.000077401000000,0.000239772000000,0.000150093000000 +0.000328660000000,0.000048167000000,0.000060808000000,0.000265055000000,0.000038685000000,0.000383573000000,0.000264660000000,0.000334191000000,0.018165288000000,0.016795610000000,0.000282043000000,0.000071080000000,0.000082932000000,0.000231080000000,0.000232660000000 +0.000376067000000,0.000134685000000,0.000057253000000,0.000301006000000,0.000038290000000,0.000328265000000,0.000337351000000,0.000266240000000,0.017903362000000,0.017242030000000,0.000267426000000,0.000075031000000,0.000077796000000,0.000235030000000,0.000148908000000 +0.000332215000000,0.000045401000000,0.000059623000000,0.000265055000000,0.000038685000000,0.000336561000000,0.000266636000000,0.000287179000000,0.018004893000000,0.016971807000000,0.000265055000000,0.000074240000000,0.000077797000000,0.000228315000000,0.000150092000000 +0.000404117000000,0.000047376000000,0.000057253000000,0.000265055000000,0.000037895000000,0.000405302000000,0.000278882000000,0.000264660000000,0.017505536000000,0.017285091000000,0.000297450000000,0.000076611000000,0.000077796000000,0.000229499000000,0.000149302000000 +0.000329846000000,0.000045402000000,0.000058834000000,0.000318389000000,0.000037500000000,0.000351179000000,0.000266240000000,0.000260314000000,0.019864052000000,0.017563610000000,0.000264265000000,0.000074241000000,0.000080166000000,0.000246487000000,0.000260315000000 +0.000376462000000,0.000047772000000,0.000059624000000,0.000263475000000,0.000037895000000,0.000390685000000,0.000267821000000,0.000349599000000,0.017487757000000,0.016767166000000,0.000272562000000,0.000110587000000,0.000076216000000,0.000219228000000,0.000148907000000 +0.000341697000000,0.000048167000000,0.000077796000000,0.000340907000000,0.000037895000000,0.000336562000000,0.000301006000000,0.000266635000000,0.020964693000000,0.016741091000000,0.000306931000000,0.000075031000000,0.000076216000000,0.000247277000000,0.000147327000000 +0.000346438000000,0.000067129000000,0.000058439000000,0.000267426000000,0.000037894000000,0.000412808000000,0.000264660000000,0.000267426000000,0.018815164000000,0.016925981000000,0.000269795000000,0.000071080000000,0.000076611000000,0.000265450000000,0.000218437000000 +0.000367376000000,0.000047771000000,0.000057253000000,0.000263080000000,0.000039080000000,0.000331426000000,0.000267031000000,0.000298635000000,0.017399659000000,0.017184350000000,0.000262289000000,0.000074240000000,0.000079377000000,0.000246092000000,0.000148117000000 +0.000329055000000,0.000046981000000,0.000057253000000,0.000302586000000,0.000037895000000,0.000380018000000,0.000303377000000,0.000267821000000,0.017235314000000,0.017897831000000,0.000266240000000,0.000071080000000,0.000080957000000,0.000265055000000,0.000148512000000 +0.000385153000000,0.000047376000000,0.000059228000000,0.000264660000000,0.000037895000000,0.000332216000000,0.000263870000000,0.000270191000000,0.017596794000000,0.017378721000000,0.000269796000000,0.000074240000000,0.000077796000000,0.000190389000000,0.000147327000000 +0.000359870000000,0.000047771000000,0.000058833000000,0.000301006000000,0.000037895000000,0.000358684000000,0.000264660000000,0.000284414000000,0.017375955000000,0.016941388000000,0.000305747000000,0.000076216000000,0.000076216000000,0.000225944000000,0.000184067000000 +0.000468512000000,0.000047376000000,0.000060019000000,0.000269401000000,0.000037895000000,0.000350388000000,0.000304561000000,0.000269006000000,0.017612597000000,0.016678672000000,0.000265450000000,0.000071870000000,0.000079771000000,0.000221203000000,0.000156414000000 +0.000355129000000,0.000066734000000,0.000059623000000,0.000266635000000,0.000037895000000,0.000337747000000,0.000278092000000,0.000299030000000,0.017321041000000,0.016880549000000,0.000267030000000,0.000073450000000,0.000076611000000,0.000242536000000,0.000326685000000 +0.000444018000000,0.000065944000000,0.000060018000000,0.000300216000000,0.000037895000000,0.000365795000000,0.000263475000000,0.000265055000000,0.017310375000000,0.016839462000000,0.000301401000000,0.000074240000000,0.000078191000000,0.000261895000000,0.000393845000000 +0.000334981000000,0.000047771000000,0.000057252000000,0.000265450000000,0.000037895000000,0.000333795000000,0.000295870000000,0.000260710000000,0.017874127000000,0.016749783000000,0.000263870000000,0.000071475000000,0.000083722000000,0.000203425000000,0.000294290000000 +0.000434141000000,0.000047376000000,0.000056858000000,0.000284808000000,0.000038290000000,0.000629697000000,0.000291919000000,0.000558586000000,0.017078869000000,0.017064647000000,0.000267820000000,0.000073846000000,0.000079771000000,0.000263475000000,0.000189599000000 +0.000383574000000,0.000046981000000,0.000058438000000,0.000268610000000,0.000037895000000,0.000341302000000,0.000314043000000,0.000266636000000,0.017070968000000,0.016831561000000,0.000296660000000,0.000071871000000,0.000076215000000,0.000204216000000,0.000148117000000 +0.000362636000000,0.000047376000000,0.000058833000000,0.000265845000000,0.000076610000000,0.000363425000000,0.000262685000000,0.000264265000000,0.017364893000000,0.016610722000000,0.000265451000000,0.000144957000000,0.000082142000000,0.000257549000000,0.000147327000000 +0.000359870000000,0.000047376000000,0.000076215000000,0.000301006000000,0.000065549000000,0.000357500000000,0.000268611000000,0.000263475000000,0.017172894000000,0.017185536000000,0.000272561000000,0.000074636000000,0.000079376000000,0.000244117000000,0.000152067000000 +0.000439672000000,0.000049351000000,0.000058834000000,0.000265055000000,0.000038289000000,0.000366586000000,0.000300610000000,0.000308907000000,0.017282326000000,0.019681139000000,0.000263870000000,0.000072660000000,0.000076611000000,0.000205006000000,0.000241746000000 +0.000339327000000,0.000047376000000,0.000057253000000,0.000262685000000,0.000038290000000,0.000334586000000,0.000262685000000,0.000261500000000,0.017780103000000,0.018693880000000,0.000274537000000,0.000078981000000,0.000076611000000,0.000237401000000,0.000150093000000 +0.000389895000000,0.000118882000000,0.000056858000000,0.000422290000000,0.000037895000000,0.000375672000000,0.000262685000000,0.000264265000000,0.017803017000000,0.018071658000000,0.000302586000000,0.000074636000000,0.000077796000000,0.000190389000000,0.000148907000000 +0.000346042000000,0.000046981000000,0.000058438000000,0.000271376000000,0.000037895000000,0.000361055000000,0.000279673000000,0.000304166000000,0.017685684000000,0.017485782000000,0.000320759000000,0.000093994000000,0.000078191000000,0.000243722000000,0.000152463000000 +0.000378042000000,0.000045006000000,0.000057647000000,0.000311673000000,0.000038290000000,0.000351179000000,0.000300216000000,0.000263475000000,0.017091906000000,0.017564400000000,0.000265055000000,0.000072265000000,0.000079376000000,0.000180907000000,0.000188413000000 +0.000365401000000,0.000047377000000,0.000058833000000,0.000265845000000,0.000037895000000,0.000339722000000,0.000316018000000,0.000262685000000,0.017735066000000,0.017632745000000,0.000651030000000,0.000072265000000,0.000080166000000,0.000282833000000,0.000174587000000 +0.000353154000000,0.000047772000000,0.000056857000000,0.000266240000000,0.000037894000000,0.000330240000000,0.000263080000000,0.000279673000000,0.017541881000000,0.017656844000000,0.000389105000000,0.000074240000000,0.000080167000000,0.000272166000000,0.000150488000000 +0.000380808000000,0.000043820000000,0.000057253000000,0.000267031000000,0.000038290000000,0.000369747000000,0.000265846000000,0.000261104000000,0.017287856000000,0.017503165000000,0.000267426000000,0.000074241000000,0.000115722000000,0.000208956000000,0.000149302000000 +0.000326685000000,0.000047772000000,0.000057253000000,0.000269006000000,0.000037895000000,0.000334981000000,0.000299820000000,0.000263080000000,0.017471561000000,0.017414671000000,0.000267821000000,0.000071870000000,0.000077006000000,0.000274932000000,0.000454290000000 +0.000726092000000,0.000047377000000,0.000058438000000,0.000302586000000,0.000037895000000,0.000404117000000,0.000264660000000,0.000263080000000,0.017499610000000,0.017899017000000,0.000282043000000,0.000073845000000,0.000081747000000,0.000191969000000,0.000165500000000 +0.000363425000000,0.000047376000000,0.000059228000000,0.000272957000000,0.000041450000000,0.000352363000000,0.000266240000000,0.000351574000000,0.017430473000000,0.017110079000000,0.000266635000000,0.000145352000000,0.000080956000000,0.000289944000000,0.000185648000000 +0.000327475000000,0.000047771000000,0.000060413000000,0.000262685000000,0.000038290000000,0.000415574000000,0.000273746000000,0.000299030000000,0.018046770000000,0.017661190000000,0.000297845000000,0.000088462000000,0.000083327000000,0.000233845000000,0.000149302000000 +0.000357500000000,0.000045401000000,0.000063969000000,0.000351573000000,0.000037499000000,0.000328661000000,0.000263475000000,0.000274537000000,0.017520943000000,0.017363314000000,0.000274141000000,0.000074241000000,0.000078586000000,0.000211327000000,0.000151672000000 +0.000376462000000,0.000044611000000,0.000059228000000,0.000268215000000,0.000037894000000,0.000370142000000,0.000308907000000,0.000262684000000,0.017171708000000,0.017049239000000,0.000269796000000,0.000074241000000,0.000120463000000,0.000243327000000,0.000153253000000 +0.000364611000000,0.000044611000000,0.000073846000000,0.000265056000000,0.000037894000000,0.000332215000000,0.000275326000000,0.000264265000000,0.017751658000000,0.017661979000000,0.000275327000000,0.000073846000000,0.000082141000000,0.000203820000000,0.000169450000000 +0.000427031000000,0.000047376000000,0.000057648000000,0.000262685000000,0.000038290000000,0.000325895000000,0.000273746000000,0.000267820000000,0.017168943000000,0.017179610000000,0.000264660000000,0.000093994000000,0.000077796000000,0.000384364000000,0.000147722000000 +0.000332610000000,0.000047376000000,0.000056463000000,0.000263475000000,0.000037895000000,0.000333796000000,0.000302586000000,0.000297450000000,0.017781288000000,0.017300498000000,0.000306536000000,0.000073056000000,0.000081352000000,0.000411228000000,0.000151278000000 +0.000399376000000,0.000116512000000,0.000057648000000,0.000301005000000,0.000038290000000,0.000330241000000,0.000262685000000,0.000267425000000,0.016986819000000,0.017730721000000,0.000272562000000,0.000071870000000,0.000078982000000,0.000212117000000,0.000148512000000 +0.000331820000000,0.000047376000000,0.000057648000000,0.000265846000000,0.000092808000000,0.000385154000000,0.000263080000000,0.000265056000000,0.017260993000000,0.017823560000000,0.000264660000000,0.000071080000000,0.000080956000000,0.000246487000000,0.000147722000000 +0.000370537000000,0.000046981000000,0.000057253000000,0.000266635000000,0.000038290000000,0.000355524000000,0.000262290000000,0.000300215000000,0.017566770000000,0.017502375000000,0.000353944000000,0.000074240000000,0.000092019000000,0.000182093000000,0.000150487000000 +0.000347228000000,0.000047376000000,0.000055673000000,0.000321154000000,0.000038290000000,0.000419524000000,0.000264661000000,0.000267031000000,0.017382276000000,0.017533979000000,0.000270586000000,0.000071476000000,0.000079771000000,0.000229499000000,0.000149698000000 +0.000325895000000,0.000045401000000,0.000057253000000,0.000276907000000,0.000037895000000,0.000328660000000,0.000303772000000,0.000264660000000,0.017452597000000,0.017578622000000,0.000301401000000,0.000073055000000,0.000077401000000,0.000210537000000,0.000147722000000 +0.000362240000000,0.000047377000000,0.000058438000000,0.000262685000000,0.000038290000000,0.000428610000000,0.000302981000000,0.000321154000000,0.017305634000000,0.017488152000000,0.000263475000000,0.000073450000000,0.000080956000000,0.000278882000000,0.000148117000000 +0.000330240000000,0.000047772000000,0.000058043000000,0.000273747000000,0.000037895000000,0.000385153000000,0.000262685000000,0.000265055000000,0.017522128000000,0.017578227000000,0.000265845000000,0.000073450000000,0.000079771000000,0.000322340000000,0.000149697000000 +0.000423474000000,0.000046982000000,0.000059228000000,0.000267030000000,0.000038685000000,0.000374093000000,0.000348018000000,0.000314438000000,0.017061487000000,0.017044894000000,0.000555425000000,0.000071080000000,0.000084117000000,0.000180117000000,0.000147327000000 +0.000385154000000,0.000047376000000,0.000058833000000,0.000303376000000,0.000039475000000,0.000328660000000,0.000266241000000,0.000267425000000,0.017844499000000,0.017560054000000,0.000548709000000,0.000077796000000,0.000079771000000,0.000263080000000,0.000148908000000 +0.000415969000000,0.000045006000000,0.000067524000000,0.000263475000000,0.000037895000000,0.000356709000000,0.000304561000000,0.000274141000000,0.017317486000000,0.017414672000000,0.000268611000000,0.000073451000000,0.000081351000000,0.000178932000000,0.000155228000000 +0.000334586000000,0.000063574000000,0.000082141000000,0.000276512000000,0.000037895000000,0.000370931000000,0.000264265000000,0.000308117000000,0.017869782000000,0.017302474000000,0.000269400000000,0.000109796000000,0.000076611000000,0.000211722000000,0.000168266000000 +0.000434141000000,0.000045006000000,0.000057252000000,0.000347228000000,0.000037895000000,0.000353154000000,0.000267425000000,0.000263870000000,0.016918079000000,0.017450622000000,0.000260314000000,0.000073846000000,0.000079772000000,0.000274142000000,0.000148907000000 +0.000357105000000,0.000047771000000,0.000057253000000,0.000264661000000,0.000038685000000,0.000406092000000,0.000300216000000,0.000263475000000,0.017599955000000,0.017427313000000,0.000264661000000,0.000076611000000,0.000083327000000,0.000178537000000,0.000148907000000 +0.000372117000000,0.000046981000000,0.000057648000000,0.000335376000000,0.000039080000000,0.000328660000000,0.000262290000000,0.000261895000000,0.018220991000000,0.017554128000000,0.000287179000000,0.000075030000000,0.000080167000000,0.000232265000000,0.000148907000000 +0.000337746000000,0.000047771000000,0.000059623000000,0.000270191000000,0.000037895000000,0.000399376000000,0.000265055000000,0.000270191000000,0.017597585000000,0.017594030000000,0.000265055000000,0.000073846000000,0.000076610000000,0.000229104000000,0.000186043000000 +0.000408068000000,0.000098734000000,0.000057253000000,0.000263475000000,0.000037895000000,0.000340512000000,0.000337352000000,0.000311672000000,0.017752054000000,0.017580992000000,0.000263870000000,0.000073055000000,0.000075821000000,0.000246092000000,0.000150883000000 +0.000355919000000,0.000048167000000,0.000060808000000,0.000314438000000,0.000038290000000,0.000441647000000,0.000267426000000,0.000260710000000,0.017825140000000,0.018388498000000,0.000305747000000,0.000130735000000,0.000077006000000,0.000238982000000,0.000148512000000 +0.000365796000000,0.000047772000000,0.000059228000000,0.000263870000000,0.000037895000000,0.000330241000000,0.000314833000000,0.000263870000000,0.017045684000000,0.016898326000000,0.000262289000000,0.000071475000000,0.000080166000000,0.000216858000000,0.000150092000000 +0.000337747000000,0.000044611000000,0.000056858000000,0.000265846000000,0.000037894000000,0.000393055000000,0.000263475000000,0.000321549000000,0.018055065000000,0.017373585000000,0.000445994000000,0.000074240000000,0.000084908000000,0.000234635000000,0.000189599000000 +0.000331426000000,0.000047376000000,0.000057648000000,0.000266240000000,0.000037894000000,0.000335376000000,0.000268216000000,0.000264660000000,0.017517782000000,0.018641732000000,0.000351179000000,0.000071475000000,0.000080957000000,0.000207376000000,0.000147722000000 +0.000331821000000,0.000045006000000,0.000058833000000,0.000265846000000,0.000039080000000,0.000354339000000,0.000314438000000,0.000266240000000,0.017925091000000,0.017655658000000,0.000282043000000,0.000071475000000,0.000184462000000,0.000231475000000,0.000149698000000 +0.000329845000000,0.000045401000000,0.000057253000000,0.000307326000000,0.000112166000000,0.000353944000000,0.000263080000000,0.000274931000000,0.017149980000000,0.017669486000000,0.000286388000000,0.000073845000000,0.000082537000000,0.000237401000000,0.000149697000000 +0.000366191000000,0.000086092000000,0.000058438000000,0.000262290000000,0.000039870000000,0.000372512000000,0.000329450000000,0.000267030000000,0.017409931000000,0.017039363000000,0.000278883000000,0.000108611000000,0.000077796000000,0.000212907000000,0.000186043000000 +0.000336166000000,0.000045006000000,0.000056858000000,0.000267031000000,0.000038290000000,0.000479179000000,0.000267030000000,0.000304562000000,0.019743559000000,0.017143264000000,0.000282437000000,0.000073845000000,0.000077797000000,0.000312857000000,0.000148117000000 +0.000459425000000,0.000046981000000,0.000058439000000,0.000314438000000,0.000037895000000,0.000332215000000,0.000263475000000,0.000265845000000,0.017778128000000,0.017462078000000,0.000295475000000,0.000071080000000,0.000080956000000,0.000214882000000,0.000150487000000 +0.000688166000000,0.000046586000000,0.000060414000000,0.000265056000000,0.000038290000000,0.000372117000000,0.000337351000000,0.000263080000000,0.018587214000000,0.017170129000000,0.000285993000000,0.000071475000000,0.000115327000000,0.000325499000000,0.000149302000000 +0.000335376000000,0.000044611000000,0.000059228000000,0.000269401000000,0.000037895000000,0.000333006000000,0.000262290000000,0.000301006000000,0.017175264000000,0.017624449000000,0.000293500000000,0.000074241000000,0.000077796000000,0.000211327000000,0.000198289000000 +0.000331821000000,0.000047377000000,0.000058438000000,0.000340907000000,0.000038685000000,0.000368167000000,0.000274932000000,0.000265450000000,0.016941388000000,0.017658819000000,0.000280462000000,0.000071475000000,0.000080562000000,0.000236611000000,0.000150488000000 +0.000338932000000,0.000046981000000,0.000056858000000,0.000265055000000,0.000038289000000,0.000334982000000,0.000312463000000,0.000374092000000,0.016764796000000,0.017560844000000,0.000286783000000,0.000092414000000,0.000077401000000,0.000266240000000,0.000150882000000 +0.000328660000000,0.000046981000000,0.000058833000000,0.000267821000000,0.000037895000000,0.000386339000000,0.000265055000000,0.000266635000000,0.017128647000000,0.018322523000000,0.000284808000000,0.000072265000000,0.000078191000000,0.000198290000000,0.000149302000000 +0.000382388000000,0.000117302000000,0.000057648000000,0.000272561000000,0.000037500000000,0.000349203000000,0.000262685000000,0.000271376000000,0.016620993000000,0.017775362000000,0.000278882000000,0.000075426000000,0.000077796000000,0.000271771000000,0.000198685000000 +0.000333796000000,0.000045796000000,0.000093598000000,0.000265450000000,0.000038290000000,0.000377253000000,0.000266636000000,0.000422289000000,0.017240054000000,0.017270869000000,0.000276512000000,0.000071870000000,0.000134290000000,0.000213302000000,0.000149302000000 +0.000369747000000,0.000046586000000,0.000058833000000,0.000306142000000,0.000037895000000,0.000339722000000,0.000266635000000,0.000266240000000,0.016722919000000,0.017518968000000,0.000282043000000,0.000074636000000,0.000076216000000,0.000229499000000,0.000149698000000 +0.000334191000000,0.000047772000000,0.000058833000000,0.000263475000000,0.000037895000000,0.000370141000000,0.000314438000000,0.000299821000000,0.016992351000000,0.017164992000000,0.000278487000000,0.000072266000000,0.000078192000000,0.000239376000000,0.000151278000000 +0.000369351000000,0.000045401000000,0.000057253000000,0.000276117000000,0.000037895000000,0.000348808000000,0.000270191000000,0.000263870000000,0.017284696000000,0.017107709000000,0.000280463000000,0.000090438000000,0.000080957000000,0.000247672000000,0.000186438000000 +0.000337352000000,0.000044611000000,0.000058833000000,0.000302191000000,0.000037895000000,0.000336166000000,0.000263080000000,0.000267426000000,0.017883214000000,0.017200943000000,0.000278488000000,0.000073055000000,0.000077796000000,0.000309302000000,0.000208957000000 +0.000331030000000,0.000047771000000,0.000059623000000,0.000265846000000,0.000037895000000,0.000330635000000,0.000509993000000,0.000299426000000,0.017912053000000,0.018268399000000,0.000289154000000,0.000071476000000,0.000082142000000,0.000231475000000,0.000157598000000 +0.000371722000000,0.000083722000000,0.000059623000000,0.000265845000000,0.000038290000000,0.000326290000000,0.000288759000000,0.000266635000000,0.017833832000000,0.017958671000000,0.000280068000000,0.000073451000000,0.000147326000000,0.000248858000000,0.000151673000000 +0.000329056000000,0.000046982000000,0.000142191000000,0.000352364000000,0.000037895000000,0.000690142000000,0.000298635000000,0.000261500000000,0.017388993000000,0.017351067000000,0.000280857000000,0.000073845000000,0.000114141000000,0.000192759000000,0.000148907000000 +0.000327870000000,0.000053698000000,0.000057648000000,0.000281648000000,0.000056463000000,0.000442438000000,0.000274931000000,0.000304166000000,0.017758374000000,0.017114029000000,0.000284808000000,0.000073845000000,0.000077401000000,0.000229500000000,0.000156018000000 +0.000361846000000,0.000044611000000,0.000058438000000,0.000312462000000,0.000089253000000,0.000356315000000,0.000266635000000,0.000261500000000,0.017302079000000,0.019188892000000,0.000278883000000,0.000107031000000,0.000076611000000,0.000236216000000,0.000171031000000 +0.000350784000000,0.000057648000000,0.000059623000000,0.000267426000000,0.000037894000000,0.000329450000000,0.000270191000000,0.000265451000000,0.017528449000000,0.017700301000000,0.000282438000000,0.000073450000000,0.000078191000000,0.000193549000000,0.000149302000000 +0.000331425000000,0.000045006000000,0.000057253000000,0.000265846000000,0.000037895000000,0.000326290000000,0.000269006000000,0.000260709000000,0.017847659000000,0.017355807000000,0.000322734000000,0.000073846000000,0.000079772000000,0.000231475000000,0.000149697000000 +0.000368561000000,0.000044611000000,0.000059623000000,0.000269006000000,0.000038289000000,0.000345648000000,0.000301796000000,0.000267821000000,0.017408746000000,0.019066423000000,0.000280858000000,0.000072266000000,0.000076611000000,0.000179722000000,0.000148117000000 +0.000359870000000,0.000063178000000,0.000059623000000,0.000265450000000,0.000039080000000,0.000496561000000,0.000266635000000,0.000338537000000,0.018035313000000,0.017491708000000,0.000290735000000,0.000071475000000,0.000078191000000,0.000240166000000,0.000149302000000 +0.000418339000000,0.000047772000000,0.000060018000000,0.000315228000000,0.000037895000000,0.000347623000000,0.000265055000000,0.000261104000000,0.017743363000000,0.018094177000000,0.000269006000000,0.000071475000000,0.000077401000000,0.000231080000000,0.000186833000000 +0.000325499000000,0.000077006000000,0.000060413000000,0.000266241000000,0.000037895000000,0.000393845000000,0.000317204000000,0.000260710000000,0.017270869000000,0.017379511000000,0.000265845000000,0.000110587000000,0.000080562000000,0.000211722000000,0.000149302000000 +0.000386734000000,0.000048957000000,0.000059623000000,0.000263475000000,0.000037895000000,0.000332611000000,0.000275327000000,0.000302191000000,0.018020300000000,0.017417042000000,0.000316808000000,0.000072265000000,0.000077797000000,0.000224759000000,0.000147722000000 +0.000334981000000,0.000045006000000,0.000058043000000,0.000323129000000,0.000037895000000,0.000421894000000,0.000305352000000,0.000261895000000,0.017678573000000,0.017602325000000,0.000260709000000,0.000072265000000,0.000116117000000,0.000196709000000,0.000150093000000 +0.000340512000000,0.000047772000000,0.000057253000000,0.000270586000000,0.000037895000000,0.000331031000000,0.000267821000000,0.000260314000000,0.017450226000000,0.017781288000000,0.000288759000000,0.000073451000000,0.000080562000000,0.000313253000000,0.000171821000000 +0.000333796000000,0.000047376000000,0.000058834000000,0.000284808000000,0.000037895000000,0.000417549000000,0.000268611000000,0.000264660000000,0.018537435000000,0.017449437000000,0.000268611000000,0.000074636000000,0.000076216000000,0.000182093000000,0.000146931000000 +0.000335771000000,0.000047376000000,0.000057648000000,0.000264661000000,0.000038290000000,0.000344067000000,0.000347623000000,0.000265450000000,0.017806967000000,0.017301684000000,0.000270587000000,0.000073846000000,0.000079377000000,0.000250043000000,0.000150487000000 +0.000329055000000,0.000046981000000,0.000095178000000,0.000264265000000,0.000038685000000,0.000428216000000,0.000267426000000,0.000345647000000,0.018264843000000,0.017699116000000,0.000391870000000,0.000074635000000,0.000082142000000,0.000265451000000,0.000150882000000 +0.000332215000000,0.000047771000000,0.000061599000000,0.000410438000000,0.000038290000000,0.000331425000000,0.000274931000000,0.000270586000000,0.017433635000000,0.017592844000000,0.000598882000000,0.000129154000000,0.000080166000000,0.000210142000000,0.000185648000000 +0.000384364000000,0.000047376000000,0.000061599000000,0.000265450000000,0.000037895000000,0.000417154000000,0.000284808000000,0.000263475000000,0.017553337000000,0.017387412000000,0.000299820000000,0.000087672000000,0.000204216000000,0.000229105000000,0.000152067000000 +0.000348018000000,0.000048167000000,0.000058043000000,0.000266241000000,0.000037895000000,0.000360265000000,0.000266635000000,0.000307327000000,0.017712547000000,0.018825831000000,0.000265451000000,0.000075030000000,0.000164709000000,0.000294290000000,0.000153253000000 +0.000367772000000,0.000045006000000,0.000059623000000,0.000272957000000,0.000039871000000,0.000437302000000,0.000285203000000,0.000262684000000,0.017315115000000,0.017860301000000,0.000366981000000,0.000073846000000,0.000076610000000,0.000218438000000,0.000148907000000 +0.000325500000000,0.000045006000000,0.000058833000000,0.000266635000000,0.000037500000000,0.000334586000000,0.000276512000000,0.000264265000000,0.017502375000000,0.017657239000000,0.000281648000000,0.000074241000000,0.000082142000000,0.000235425000000,0.000201845000000 +0.000374092000000,0.000047376000000,0.000057648000000,0.000278487000000,0.000037895000000,0.000334191000000,0.000264265000000,0.000264265000000,0.018017535000000,0.017644202000000,0.000262684000000,0.000107820000000,0.000077006000000,0.000205006000000,0.000147722000000 +0.000325895000000,0.000063969000000,0.000058043000000,0.000276117000000,0.000106636000000,0.000332216000000,0.000307327000000,0.000268216000000,0.017583757000000,0.017106128000000,0.000269401000000,0.000074240000000,0.000077006000000,0.000324710000000,0.000147722000000 +0.000333005000000,0.000049352000000,0.000058043000000,0.000521055000000,0.000037895000000,0.000331030000000,0.000272166000000,0.000310883000000,0.018199263000000,0.017165388000000,0.000267821000000,0.000075031000000,0.000086882000000,0.000333401000000,0.000150882000000 +0.000371327000000,0.000063968000000,0.000058833000000,0.000285598000000,0.000038290000000,0.000406882000000,0.000262685000000,0.000263475000000,0.017469190000000,0.017745733000000,0.000305351000000,0.000075821000000,0.000080562000000,0.000226340000000,0.000184067000000 +0.000326290000000,0.000045006000000,0.000058833000000,0.000312462000000,0.000037895000000,0.000329055000000,0.000359870000000,0.000264265000000,0.017509881000000,0.017191857000000,0.000265056000000,0.000071080000000,0.000083327000000,0.000258339000000,0.000147327000000 +0.000393055000000,0.000049746000000,0.000059623000000,0.000270586000000,0.000038290000000,0.000378042000000,0.000275327000000,0.000423475000000,0.018088646000000,0.017319067000000,0.000275722000000,0.000094388000000,0.000077796000000,0.000214487000000,0.000148512000000 +0.000330241000000,0.000045006000000,0.000057648000000,0.000309697000000,0.000039870000000,0.000356709000000,0.000317204000000,0.000280858000000,0.017509881000000,0.017874127000000,0.000317598000000,0.000123623000000,0.000112167000000,0.000252018000000,0.000150487000000 +0.000368166000000,0.000047377000000,0.000058834000000,0.000265845000000,0.000037895000000,0.000399772000000,0.000266240000000,0.000312857000000,0.017624844000000,0.017279561000000,0.000265451000000,0.000074241000000,0.000078586000000,0.000184857000000,0.000189994000000 +0.000414388000000,0.000044216000000,0.000070290000000,0.000268216000000,0.000038290000000,0.000329450000000,0.000264265000000,0.000269401000000,0.017648943000000,0.017403214000000,0.000266240000000,0.000073846000000,0.000084512000000,0.000268610000000,0.000147327000000 +0.000498537000000,0.000046982000000,0.000058438000000,0.000356315000000,0.000038289000000,0.000344858000000,0.000346042000000,0.000265845000000,0.017441535000000,0.017095856000000,0.000297450000000,0.000071871000000,0.000079377000000,0.000318783000000,0.000150883000000 +0.000349993000000,0.000045006000000,0.000057253000000,0.000270982000000,0.000041845000000,0.000355129000000,0.000267425000000,0.000348018000000,0.018588794000000,0.017072548000000,0.000263080000000,0.000073846000000,0.000078191000000,0.000192364000000,0.000150487000000 +0.000386339000000,0.000048166000000,0.000060018000000,0.000268611000000,0.000037895000000,0.000331426000000,0.000302586000000,0.000268215000000,0.017784054000000,0.017266128000000,0.000270191000000,0.000072265000000,0.000080562000000,0.000392660000000,0.000203821000000 +0.000331426000000,0.000046981000000,0.000058833000000,0.000282043000000,0.000037895000000,0.000440462000000,0.000263870000000,0.000269006000000,0.017235709000000,0.017330919000000,0.000261104000000,0.000088858000000,0.000080561000000,0.000197104000000,0.000167870000000 +0.000412413000000,0.000049351000000,0.000058833000000,0.000263080000000,0.000037895000000,0.000374092000000,0.000267820000000,0.000348808000000,0.017758375000000,0.017138918000000,0.000263080000000,0.000073451000000,0.000079771000000,0.000246488000000,0.000153648000000 +0.000351178000000,0.000048167000000,0.000057648000000,0.000393055000000,0.000037500000000,0.000344858000000,0.000525796000000,0.000262685000000,0.017194622000000,0.017292992000000,0.000302191000000,0.000073845000000,0.000082932000000,0.000229105000000,0.000148117000000 +0.000350388000000,0.000049352000000,0.000058833000000,0.000263870000000,0.000037894000000,0.000362635000000,0.000336561000000,0.000339722000000,0.018035313000000,0.018356893000000,0.000265451000000,0.000073055000000,0.000080561000000,0.000245302000000,0.000150882000000 +0.000336561000000,0.000150487000000,0.000059623000000,0.000274142000000,0.000038289000000,0.000455870000000,0.000268611000000,0.000263870000000,0.017896252000000,0.017858720000000,0.000266635000000,0.000072660000000,0.000077796000000,0.000304167000000,0.000151277000000 +0.000357105000000,0.000101895000000,0.000059624000000,0.000345648000000,0.000037895000000,0.000337747000000,0.000263870000000,0.000260710000000,0.017693980000000,0.017698721000000,0.000310882000000,0.000073056000000,0.000077401000000,0.000213698000000,0.000147327000000 +0.000347623000000,0.000067129000000,0.000058438000000,0.000267821000000,0.000037895000000,0.000385153000000,0.000307327000000,0.000299426000000,0.017977239000000,0.017277190000000,0.000263080000000,0.000095179000000,0.000080167000000,0.000218043000000,0.000146931000000 +0.000358685000000,0.000060414000000,0.000057648000000,0.000269401000000,0.000057648000000,0.000345648000000,0.000266240000000,0.000264265000000,0.017270474000000,0.018253387000000,0.000261894000000,0.000074240000000,0.000078586000000,0.000197500000000,0.000183278000000 +0.000376463000000,0.000047376000000,0.000056858000000,0.000264660000000,0.000074636000000,0.000500117000000,0.000266636000000,0.000273352000000,0.017368844000000,0.017952745000000,0.000277697000000,0.000073450000000,0.000080562000000,0.000706338000000,0.000150487000000 +0.000354734000000,0.000045006000000,0.000095179000000,0.000281648000000,0.000109796000000,0.000699228000000,0.000306931000000,0.000266240000000,0.019736052000000,0.017957880000000,0.000261105000000,0.000073450000000,0.000079377000000,0.000280858000000,0.000150487000000 +0.000398191000000,0.000045006000000,0.000059624000000,0.000304956000000,0.000106635000000,0.000327475000000,0.000272167000000,0.000263080000000,0.017932991000000,0.017772202000000,0.000305746000000,0.000071870000000,0.000077796000000,0.000242932000000,0.000152068000000 +0.000333796000000,0.000045401000000,0.000059623000000,0.000271376000000,0.000127574000000,0.000391079000000,0.000264660000000,0.000303376000000,0.017989485000000,0.017647758000000,0.000278883000000,0.000071870000000,0.000077796000000,0.000238191000000,0.000188413000000 +0.000368561000000,0.000047772000000,0.000059623000000,0.000275326000000,0.000072265000000,0.000357895000000,0.000303376000000,0.000264661000000,0.018642522000000,0.017855560000000,0.000265845000000,0.000069895000000,0.000117302000000,0.000247278000000,0.000147722000000 +0.000349203000000,0.000045006000000,0.000059228000000,0.000262289000000,0.000041451000000,0.000339327000000,0.000264265000000,0.000265055000000,0.018399560000000,0.018259312000000,0.000336562000000,0.000089648000000,0.000079771000000,0.000217252000000,0.000151673000000 +0.000410438000000,0.000046981000000,0.000057648000000,0.000265450000000,0.000087673000000,0.000331031000000,0.000263870000000,0.000340117000000,0.018053090000000,0.017468794000000,0.000276117000000,0.000071871000000,0.000077796000000,0.000214488000000,0.000152067000000 +0.000385549000000,0.000047376000000,0.000059624000000,0.000333400000000,0.000040661000000,0.000329845000000,0.000265450000000,0.000261894000000,0.017196202000000,0.017714523000000,0.000343277000000,0.000074636000000,0.000078586000000,0.000232265000000,0.000198685000000 +0.000344858000000,0.000047771000000,0.000095574000000,0.000267031000000,0.000040265000000,0.000422684000000,0.000262290000000,0.000263475000000,0.017951165000000,0.017521733000000,0.000282042000000,0.000071870000000,0.000081747000000,0.000235426000000,0.000150882000000 +0.000336956000000,0.000083722000000,0.000057253000000,0.000270981000000,0.000037895000000,0.000334981000000,0.000305352000000,0.000266636000000,0.017223462000000,0.017814474000000,0.000299425000000,0.000071475000000,0.000075821000000,0.000199870000000,0.000148512000000 +0.000329845000000,0.000045401000000,0.000057648000000,0.000298635000000,0.000037895000000,0.000413994000000,0.000265451000000,0.000264660000000,0.017181190000000,0.017236104000000,0.000269401000000,0.000075426000000,0.000163130000000,0.000227129000000,0.000150882000000 +0.000396611000000,0.000047771000000,0.000059623000000,0.000262290000000,0.000073845000000,0.000330240000000,0.000270191000000,0.000300611000000,0.017983955000000,0.018696250000000,0.000263870000000,0.000074241000000,0.000077796000000,0.000226339000000,0.000191179000000 +0.000333796000000,0.000047376000000,0.000057648000000,0.000267030000000,0.000038290000000,0.000364215000000,0.000315228000000,0.000263475000000,0.017298918000000,0.017722029000000,0.000318388000000,0.000074241000000,0.000077401000000,0.000225944000000,0.000147327000000 +0.000388709000000,0.000044611000000,0.000058833000000,0.000269006000000,0.000038290000000,0.000335376000000,0.000305747000000,0.000272167000000,0.018360053000000,0.017251115000000,0.000261499000000,0.000073055000000,0.000079771000000,0.000283624000000,0.000149302000000 +0.000334191000000,0.000045006000000,0.000059228000000,0.000262685000000,0.000037895000000,0.000368562000000,0.000316413000000,0.000314043000000,0.017969338000000,0.017781684000000,0.000265846000000,0.000073450000000,0.000077401000000,0.000186833000000,0.000149697000000 +0.000612709000000,0.000046981000000,0.000111377000000,0.000298240000000,0.000038290000000,0.000329055000000,0.000262685000000,0.000268611000000,0.017298128000000,0.017871757000000,0.000340116000000,0.000071080000000,0.000078191000000,0.000247278000000,0.000185252000000 +0.000419524000000,0.000048956000000,0.000062784000000,0.000264265000000,0.000039476000000,0.000333005000000,0.000269796000000,0.000262290000000,0.018053485000000,0.017052400000000,0.000263080000000,0.000071475000000,0.000126784000000,0.000195129000000,0.000147722000000 +0.000370537000000,0.000061599000000,0.000059623000000,0.000265055000000,0.000037895000000,0.000433747000000,0.000351969000000,0.000266241000000,0.017261388000000,0.018999262000000,0.000310092000000,0.000071476000000,0.000078192000000,0.000242537000000,0.000154043000000 +0.000334191000000,0.000047772000000,0.000059624000000,0.000301401000000,0.000037895000000,0.000331425000000,0.000262685000000,0.000265056000000,0.016975759000000,0.019021386000000,0.000272956000000,0.000071475000000,0.000077006000000,0.000242932000000,0.000151672000000 +0.000370141000000,0.000047772000000,0.000056858000000,0.000265055000000,0.000037500000000,0.000389105000000,0.000265845000000,0.000299425000000,0.017107709000000,0.017399264000000,0.000262685000000,0.000073451000000,0.000079376000000,0.000192364000000,0.000184068000000 +0.000357105000000,0.000045401000000,0.000058833000000,0.000265055000000,0.000038290000000,0.000363426000000,0.000271376000000,0.000314438000000,0.017028301000000,0.017774572000000,0.000348413000000,0.000071870000000,0.000078586000000,0.000280858000000,0.000149302000000 +0.000392660000000,0.000047376000000,0.000095574000000,0.000594931000000,0.000037895000000,0.000367771000000,0.000268611000000,0.000265055000000,0.018151461000000,0.018891806000000,0.000260314000000,0.000071870000000,0.000078191000000,0.000194339000000,0.000152067000000 +0.000331425000000,0.000045006000000,0.000057648000000,0.000268611000000,0.000039080000000,0.000349203000000,0.000648265000000,0.000600858000000,0.017887164000000,0.019258027000000,0.000263080000000,0.000071475000000,0.000093994000000,0.000255179000000,0.000150488000000 +0.000384758000000,0.000044611000000,0.000057253000000,0.000265846000000,0.000037895000000,0.000439672000000,0.000265846000000,0.000315228000000,0.017458918000000,0.017134573000000,0.000260710000000,0.000107821000000,0.000077401000000,0.000228709000000,0.000192364000000 +0.000355920000000,0.000080957000000,0.000057253000000,0.000319968000000,0.000039080000000,0.000337746000000,0.000299425000000,0.000264265000000,0.018227708000000,0.017313930000000,0.000266240000000,0.000073846000000,0.000076610000000,0.000244907000000,0.000148512000000 +0.000330241000000,0.000045006000000,0.000060018000000,0.000308512000000,0.000037894000000,0.000392265000000,0.000262685000000,0.000272561000000,0.018437881000000,0.017653684000000,0.000282438000000,0.000072266000000,0.000076611000000,0.000217253000000,0.000156809000000 +0.000398981000000,0.000046191000000,0.000062784000000,0.000268216000000,0.000037499000000,0.000330635000000,0.000264661000000,0.000302191000000,0.018665435000000,0.017439560000000,0.000267426000000,0.000073450000000,0.000079771000000,0.000220413000000,0.000150487000000 +0.000328265000000,0.000046981000000,0.000059624000000,0.000267425000000,0.000054092000000,0.000331821000000,0.000267821000000,0.000368166000000,0.017573486000000,0.017481832000000,0.000265845000000,0.000072265000000,0.000079772000000,0.000244117000000,0.000183673000000 +0.000393845000000,0.000046982000000,0.000095179000000,0.000349599000000,0.000040265000000,0.000423870000000,0.000263475000000,0.000305352000000,0.017528449000000,0.018149880000000,0.000336561000000,0.000071870000000,0.000078191000000,0.000192364000000,0.000150488000000 +0.000354339000000,0.000047377000000,0.000059228000000,0.000265846000000,0.000037500000000,0.000440067000000,0.000304956000000,0.000264265000000,0.017741387000000,0.017506721000000,0.000267426000000,0.000072265000000,0.000078191000000,0.000400166000000,0.000150092000000 +0.000369351000000,0.000047377000000,0.000059623000000,0.000315228000000,0.000037500000000,0.000362240000000,0.000268611000000,0.000264265000000,0.017119165000000,0.018572201000000,0.000266635000000,0.000071475000000,0.000080562000000,0.000234240000000,0.000150092000000 +0.000354734000000,0.000045006000000,0.000057253000000,0.000272166000000,0.000054092000000,0.000348808000000,0.000271771000000,0.000297450000000,0.017113240000000,0.017430079000000,0.000262290000000,0.000076216000000,0.000080167000000,0.000201845000000,0.000169450000000 +0.000367376000000,0.000046982000000,0.000056857000000,0.000268215000000,0.000037894000000,0.000360660000000,0.000314437000000,0.000267821000000,0.017993042000000,0.017397683000000,0.000264265000000,0.000071870000000,0.000079377000000,0.000269796000000,0.000148907000000 +0.000365796000000,0.000047377000000,0.000059228000000,0.000302586000000,0.000037895000000,0.000469302000000,0.000269400000000,0.000265055000000,0.017534770000000,0.017176844000000,0.000310487000000,0.000071870000000,0.000079377000000,0.000213302000000,0.000150487000000 +0.000333796000000,0.000047772000000,0.000058833000000,0.000265845000000,0.000037895000000,0.000421894000000,0.000262290000000,0.000301796000000,0.017639857000000,0.017563610000000,0.000261895000000,0.000073055000000,0.000099130000000,0.000230685000000,0.000148512000000 +0.000360660000000,0.000045006000000,0.000073056000000,0.000266240000000,0.000037895000000,0.000408463000000,0.000268611000000,0.000268216000000,0.017504745000000,0.017337634000000,0.000315623000000,0.000074240000000,0.000079771000000,0.000229499000000,0.000189598000000 +0.000358290000000,0.000047377000000,0.000061599000000,0.000299426000000,0.000037895000000,0.000337746000000,0.000266241000000,0.000264660000000,0.017248745000000,0.017577042000000,0.000269796000000,0.000085302000000,0.000081352000000,0.000245697000000,0.000150487000000 +0.000399376000000,0.000045006000000,0.000059624000000,0.000262290000000,0.000037895000000,0.000418734000000,0.000301401000000,0.000265846000000,0.017498425000000,0.017931016000000,0.000267426000000,0.000073845000000,0.000091623000000,0.000240957000000,0.000151673000000 +0.000362240000000,0.000045796000000,0.000058833000000,0.000263475000000,0.000038290000000,0.000333006000000,0.000265845000000,0.000266241000000,0.017669881000000,0.017763906000000,0.000301401000000,0.000072265000000,0.000078191000000,0.000247672000000,0.000153648000000 +0.000379228000000,0.000047376000000,0.000059624000000,0.000281252000000,0.000038290000000,0.000436907000000,0.000265055000000,0.000300216000000,0.017585338000000,0.017692004000000,0.000262684000000,0.000073451000000,0.000082537000000,0.000228710000000,0.000184858000000 +0.000352759000000,0.000047772000000,0.000060019000000,0.000265055000000,0.000037895000000,0.000331425000000,0.000313648000000,0.000269401000000,0.018117091000000,0.017334474000000,0.000262685000000,0.000071870000000,0.000080562000000,0.000212512000000,0.000154043000000 +0.000374882000000,0.000045006000000,0.000078191000000,0.000301401000000,0.000037895000000,0.000366981000000,0.000271377000000,0.000266240000000,0.017048845000000,0.017705436000000,0.000349599000000,0.000073845000000,0.000081746000000,0.000275327000000,0.000153252000000 +0.000359474000000,0.000047377000000,0.000059228000000,0.000269006000000,0.000038290000000,0.000355920000000,0.000279278000000,0.000301796000000,0.017751659000000,0.017511857000000,0.000357894000000,0.000073055000000,0.000080562000000,0.000244117000000,0.000151278000000 +0.000365006000000,0.000047377000000,0.000058833000000,0.000265451000000,0.000038290000000,0.000351178000000,0.000265056000000,0.000280463000000,0.017775757000000,0.017718473000000,0.000313253000000,0.000072660000000,0.000080956000000,0.000195129000000,0.000243722000000 diff --git a/docs/source/media/bench/lua_bench_graph_base_call_on_derived.png b/docs/source/media/bench/lua_bench_graph_base_call_on_derived.png new file mode 100644 index 00000000..6f73e4ff Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_base_call_on_derived.png differ diff --git a/docs/source/media/bench/lua_bench_graph_base_from_derived.png b/docs/source/media/bench/lua_bench_graph_base_from_derived.png new file mode 100644 index 00000000..41f15622 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_base_from_derived.png differ diff --git a/docs/source/media/bench/lua_bench_graph_c_function.png b/docs/source/media/bench/lua_bench_graph_c_function.png new file mode 100644 index 00000000..4d894429 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_c_function.png differ diff --git a/docs/source/media/bench/lua_bench_graph_c_function_through_lua.png b/docs/source/media/bench/lua_bench_graph_c_function_through_lua.png new file mode 100644 index 00000000..f314765e Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_c_function_through_lua.png differ diff --git a/docs/source/media/bench/lua_bench_graph_get_optional.png b/docs/source/media/bench/lua_bench_graph_get_optional.png new file mode 100644 index 00000000..36460cc0 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_get_optional.png differ diff --git a/docs/source/media/bench/lua_bench_graph_global_get.png b/docs/source/media/bench/lua_bench_graph_global_get.png new file mode 100644 index 00000000..b96b678c Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_global_get.png differ diff --git a/docs/source/media/bench/lua_bench_graph_global_set.png b/docs/source/media/bench/lua_bench_graph_global_set.png new file mode 100644 index 00000000..d746da5c Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_global_set.png differ diff --git a/docs/source/media/bench/lua_bench_graph_lua_function.png b/docs/source/media/bench/lua_bench_graph_lua_function.png new file mode 100644 index 00000000..9818eff2 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_lua_function.png differ diff --git a/docs/source/media/bench/lua_bench_graph_many_userdata_variable_access_(simple).png b/docs/source/media/bench/lua_bench_graph_many_userdata_variable_access_(simple).png new file mode 100644 index 00000000..cb0a733c Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_many_userdata_variable_access_(simple).png differ diff --git a/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access.png b/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access.png new file mode 100644 index 00000000..54142899 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access.png differ diff --git a/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access_last_registered.png b/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access_last_registered.png new file mode 100644 index 00000000..7b8f80a3 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access_last_registered.png differ diff --git a/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access_last_registered_(simple).png b/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access_last_registered_(simple).png new file mode 100644 index 00000000..8b5d8046 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_many_userdata_variables_access_last_registered_(simple).png differ diff --git a/docs/source/media/bench/lua_bench_graph_member_function_calls.png b/docs/source/media/bench/lua_bench_graph_member_function_calls.png new file mode 100644 index 00000000..c9b55525 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_member_function_calls.png differ diff --git a/docs/source/media/bench/lua_bench_graph_member_function_calls_(simple).png b/docs/source/media/bench/lua_bench_graph_member_function_calls_(simple).png new file mode 100644 index 00000000..5889b1a4 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_member_function_calls_(simple).png differ diff --git a/docs/source/media/bench/lua_bench_graph_multi_return.png b/docs/source/media/bench/lua_bench_graph_multi_return.png new file mode 100644 index 00000000..f9958089 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_multi_return.png differ diff --git a/docs/source/media/bench/lua_bench_graph_return_userdata.png b/docs/source/media/bench/lua_bench_graph_return_userdata.png new file mode 100644 index 00000000..60fcb64a Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_return_userdata.png differ diff --git a/docs/source/media/bench/lua_bench_graph_stateful_c_function.png b/docs/source/media/bench/lua_bench_graph_stateful_c_function.png new file mode 100644 index 00000000..2f8a8ef9 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_stateful_c_function.png differ diff --git a/docs/source/media/bench/lua_bench_graph_table_chained_get.png b/docs/source/media/bench/lua_bench_graph_table_chained_get.png new file mode 100644 index 00000000..799b427c Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_table_chained_get.png differ diff --git a/docs/source/media/bench/lua_bench_graph_table_chained_set.png b/docs/source/media/bench/lua_bench_graph_table_chained_set.png new file mode 100644 index 00000000..4f88af90 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_table_chained_set.png differ diff --git a/docs/source/media/bench/lua_bench_graph_table_get.png b/docs/source/media/bench/lua_bench_graph_table_get.png new file mode 100644 index 00000000..474f0042 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_table_get.png differ diff --git a/docs/source/media/bench/lua_bench_graph_table_set.png b/docs/source/media/bench/lua_bench_graph_table_set.png new file mode 100644 index 00000000..b6021870 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_table_set.png differ diff --git a/docs/source/media/bench/lua_bench_graph_userdata_variable_access.png b/docs/source/media/bench/lua_bench_graph_userdata_variable_access.png new file mode 100644 index 00000000..97c1a2a1 Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_userdata_variable_access.png differ diff --git a/docs/source/media/bench/lua_bench_graph_userdata_variable_access_(simple).png b/docs/source/media/bench/lua_bench_graph_userdata_variable_access_(simple).png new file mode 100644 index 00000000..cec63c3f Binary files /dev/null and b/docs/source/media/bench/lua_bench_graph_userdata_variable_access_(simple).png differ diff --git a/docs/source/eevee_code_after.jpg b/docs/source/media/eevee_code_after.jpg similarity index 100% rename from docs/source/eevee_code_after.jpg rename to docs/source/media/eevee_code_after.jpg diff --git a/docs/source/eevee_code_before.jpg b/docs/source/media/eevee_code_before.jpg similarity index 100% rename from docs/source/eevee_code_before.jpg rename to docs/source/media/eevee_code_before.jpg diff --git a/docs/source/sol.png b/docs/source/media/sol.png similarity index 100% rename from docs/source/sol.png rename to docs/source/media/sol.png diff --git a/docs/source/sol.psd b/docs/source/media/sol.psd similarity index 100% rename from docs/source/sol.psd rename to docs/source/media/sol.psd diff --git a/docs/source/mentions.rst b/docs/source/mentions.rst index c016c358..705b60c5 100644 --- a/docs/source/mentions.rst +++ b/docs/source/mentions.rst @@ -9,12 +9,12 @@ Okay, so the features don't convince you, the documentation doesn't convince you `eevee`_ demonstrating the sheer code reduction by using sol2: -.. |before| image:: eevee_code_before.jpg +.. |before| image:: media/eevee_code_before.jpg :target: https://twitter.com/eevee/status/762039984085798913 :alt: Plain C API :align: middle -.. |after| image:: eevee_code_after.jpg +.. |after| image:: media/eevee_code_after.jpg :target: https://twitter.com/eevee/status/762039984085798913 :alt: Now with sol2! :align: middle diff --git a/docs/source/threading.rst b/docs/source/threading.rst index f1b4f3bb..bba2f9e5 100644 --- a/docs/source/threading.rst +++ b/docs/source/threading.rst @@ -1,19 +1,26 @@ threading ========= -Lua has no thread safety. sol2 does not force thread safety bottlenecks anywhere. +Lua has no thread safety. sol does not force thread safety bottlenecks anywhere. Assume any access or any call on Lua affects the whole global state (because it does, in a fair bit of cases). Therefore, every call to a state should be blocked off in C++ with some kind of access control. When you start hitting the same state from multiple threads, race conditions (data or instruction) can happen. Individual Lua coroutines might be able to run on separate C++-created threads without tanking the state utterly, since each Lua coroutine has the capability to run on an independent Lua thread which has its own stack, as well as some other associated bits and pieces that won't quite interfere with the global state. To handle multithreaded environments, it is encouraged to either spawn mutliple Lua states for each thread you are working with and keep inter-state communication to synchronized serialization points. Using coroutines and Lua's threads might also buy you some concurrency and parallelism, but remember that Lua's threading technique is ultimately cooperative and requires explicit yielding and resuming (simplified as function calls for :doc:`sol::coroutine`). +getting the main thread +----------------------- + +Lua 5.1 does not keep a reference to the main thread, therefore the user has to store it themselves. If you create a ``sol::state`` or follow the :ref:`steps for opening up compatibility and default handlers here`, you can work with ``sol::main_thread`` to retrieve you the main thread, given a ``lua_State*`` that is either a full state or a thread: ``lua_state* Lmain = sol::main_thread( Lcoroutine )``; This function will always work in Lua 5.2 and above: in Lua 5.1, if you do not follow the ``sol::state`` instructions and do not pass a fallback ``lua_State*`` to the function, this function may not work properly and return ``nullptr``. + working with multiple Lua threads --------------------------------- -You can mitigate some of the pressure of using coroutines and threading by using the ``lua_xmove`` constructors that sol implements. Simply keep a reference to your ``sol::state_view`` or ``sol::state`` or the target ``lua_State*`` pointer, and pass it into the constructor along with the object you want to copy. For example: +You can mitigate some of the pressure of using coroutines and threading by using the ``lua_xmove`` constructors that sol implements. Simply keep a reference to your ``sol::state_view`` or ``sol::state`` or the target ``lua_State*`` pointer, and pass it into the constructor along with the object you want to copy. -.. codeblock:: cpp +Note that copy and move assignment operators -- when you create a :doc:`sol::reference`-derived type like ``sol::table`` or ``sol::function`` -- also have the ``lua_xmove`` functionality built in: just make sure to initialize your types with ``sol::function f(target_state, sol::lua_nil_t);`` to lock that type onto that thread when using a copy assignment or move assignment operator. Below is an example of using the pinning thread: + +.. code-block:: cpp :caption: transfer from state function :name: state-transfer @@ -62,4 +69,4 @@ You can mitigate some of the pressure of using coroutines and threading by using assert(i == 1); return 0; - } + } diff --git a/docs/source/tutorial/all-the-things.rst b/docs/source/tutorial/all-the-things.rst index 609d5d23..fef90227 100644 --- a/docs/source/tutorial/all-the-things.rst +++ b/docs/source/tutorial/all-the-things.rst @@ -645,7 +645,7 @@ Some more things you can do/read about: * :doc:`the usertypes page<../usertypes>` lists the huge amount of features for functions - :doc:`unique usertype traits<../api/unique_usertype_traits>` allows you to specialize handle/RAII types from other libraries frameworks, like boost and Unreal, to work with Sol. Allows custom smart pointers, custom handles and others * :doc:`the containers page<../containers>` gives full information about handling everything about container-like usertypes - * :doc:`the functions page<../functions.rst>` lists a myriad of features for functions + * :doc:`the functions page<../functions>` lists a myriad of features for functions - :doc:`variadic arguments<../api/variadic_args>` in functions with ``sol::variadic_args``. - also comes with :doc:`variadic_results<../api/variadic_results>` for returning multiple differently-typed arguments - :doc:`this_state<../api/this_state>` to get the current ``lua_State*``, alongside other transparent argument types diff --git a/docs/source/tutorial/existing.rst b/docs/source/tutorial/existing.rst index 3e87919c..fe1948bb 100644 --- a/docs/source/tutorial/existing.rst +++ b/docs/source/tutorial/existing.rst @@ -24,9 +24,10 @@ If you're already using lua and you just want to use ``sol`` in some places, you You may also want to call ``require`` and supply a string of a script file or something that returns an object that you set equal to something in C++. For that, you can use the :ref:`require functionality`. -Remember that Sol can be as lightweight as you want it: almost all of Sol's Lua types take the ``lua_State*`` argument and then a second ``int index`` stack index argument, meaning you can use :doc:`tables<../api/table>`, :doc:`lua functions<../api/function>`, :doc:`coroutines<../api/coroutine>`, and other reference-derived objects that expose the proper constructor for your use. You can also set :doc:`usertypes<../api/usertype>` and other things you need without changing your entire architecture. +Remember that Sol can be as lightweight as you want it: almost all of Sol's Lua types take the ``lua_State*`` argument and then a second ``int index`` stack index argument, meaning you can use :doc:`tables<../api/table>`, :doc:`lua functions<../api/function>`, :doc:`coroutines<../api/coroutine>`, and other reference-derived objects that expose the proper constructor for your use. You can also set :doc:`usertypes<../api/usertype>` and other things you need without changing your entire architecture in one go. Note that you can also make non-standard pointer and reference types with custom reference counting and such also play nice with the system. See :doc:`unique_usertype_traits\<../api/unique_usertype_traits>` to see how! Custom types is also mentioned in the :doc:`customization tutorial`. +There are a few things that creating a ``sol::state`` does for you. You can read about it :ref:`in the sol::state docs` and call those functions directly if you need them. .. _create a DLL that loads some Lua module: https://github.com/ThePhD/sol2/tree/develop/examples/require_dll_example diff --git a/sol/protected_function.hpp b/sol/protected_function.hpp index c7d6bdb9..15f0e7c6 100644 --- a/sol/protected_function.hpp +++ b/sol/protected_function.hpp @@ -31,8 +31,8 @@ namespace sol { namespace detail { - inline const char (&default_handler_name())[11] { - static const char name[11] = "sol.\xF0\x9F\x94\xA9"; + inline const char (&default_handler_name())[9] { + static const char name[9] = "sol.\xF0\x9F\x94\xA9"; return name; } diff --git a/sol/reference.hpp b/sol/reference.hpp index 37b410ae..ec89e910 100644 --- a/sol/reference.hpp +++ b/sol/reference.hpp @@ -187,10 +187,10 @@ namespace sol { deref(); } - reference(reference&& o) noexcept { - luastate = o.luastate; - ref = o.ref; + reference(const reference& o) noexcept : luastate(o.luastate), ref(o.copy()) { + } + reference(reference&& o) noexcept : luastate(o.luastate), ref(o.ref) { o.luastate = nullptr; o.ref = LUA_NOREF; } @@ -199,8 +199,24 @@ namespace sol { if (valid()) { deref(); } - luastate = o.luastate; - ref = o.ref; + if (lua_state() != o.lua_state() && lua_state() != nullptr) { + // different state (different threads???) + if (o.lua_state() != nullptr) { + // both are valid but different? + o.push(lua_state()); + ref = luaL_ref(lua_state(), LUA_REGISTRYINDEX); + return *this; + } + else { + luastate = o.luastate; + ref = o.ref; + } + } + else { + // same state, or this state is nullptr + luastate = o.luastate; + ref = o.ref; + } o.luastate = nullptr; o.ref = LUA_NOREF; @@ -208,14 +224,24 @@ namespace sol { return *this; } - reference(const reference& o) noexcept { - luastate = o.luastate; - ref = o.copy(); - } - reference& operator=(const reference& o) noexcept { + if (valid()) { + deref(); + } + if (lua_state() != o.lua_state() && lua_state() != nullptr) { + // different state (different threads???) + if (o.lua_state() != nullptr) { + // both are valid but different? + o.push(lua_state()); + ref = luaL_ref(lua_state(), LUA_REGISTRYINDEX); + } + else { + luastate = o.luastate; + ref = o.ref; + } + return *this; + } luastate = o.luastate; - deref(); ref = o.copy(); return *this; } diff --git a/sol/stack.hpp b/sol/stack.hpp index 3b2fe08a..b4ccc7a2 100644 --- a/sol/stack.hpp +++ b/sol/stack.hpp @@ -228,6 +228,9 @@ namespace sol { inline void luajit_exception_handler(lua_State* L, int(*handler)(lua_State*, lua_CFunction) = detail::c_trampoline) { #ifdef SOL_LUAJIT + if (L == nullptr) { + return; + } lua_pushlightuserdata(L, (void*)handler); auto pn = pop_n(L, 1); luaJIT_setmode(L, -1, LUAJIT_MODE_WRAPCFUNC | LUAJIT_MODE_ON); @@ -239,6 +242,9 @@ namespace sol { inline void luajit_exception_off(lua_State* L) { #ifdef SOL_LUAJIT + if (L == nullptr) { + return; + } luaJIT_setmode(L, -1, LUAJIT_MODE_WRAPCFUNC | LUAJIT_MODE_OFF); #else (void)L; diff --git a/sol/stack_core.hpp b/sol/stack_core.hpp index 950c96b2..792469df 100644 --- a/sol/stack_core.hpp +++ b/sol/stack_core.hpp @@ -102,6 +102,11 @@ namespace sol { void reserve(std::basic_string& arr, std::size_t hint) { arr.reserve(hint); } + + inline const char(&default_main_thread_name())[9]{ + static const char name[9] = "sol.\xF0\x9F\x93\x8C"; + return name; + } } // detail namespace stack { diff --git a/sol/state.hpp b/sol/state.hpp index d8415a66..b41fecdd 100644 --- a/sol/state.hpp +++ b/sol/state.hpp @@ -23,6 +23,7 @@ #define SOL_STATE_HPP #include "state_view.hpp" +#include "thread.hpp" namespace sol { @@ -70,7 +71,8 @@ namespace sol { state_view(unique_base::get()) { set_panic(panic); lua_CFunction f = c_call; - sol::protected_function::set_default_handler(sol::object(lua_state(), in_place, f)); + protected_function::set_default_handler(sol::object(lua_state(), in_place, f)); + stack::register_main_thread(unique_base::get()); stack::luajit_exception_handler(unique_base::get()); } @@ -78,7 +80,8 @@ namespace sol { state_view(unique_base::get()) { set_panic(panic); lua_CFunction f = c_call; - sol::protected_function::set_default_handler(sol::object(lua_state(), in_place, f)); + protected_function::set_default_handler(sol::object(lua_state(), in_place, f)); + stack::register_main_thread(unique_base::get()); stack::luajit_exception_handler(unique_base::get()); } diff --git a/sol/thread.hpp b/sol/thread.hpp index d5fe41ed..e311daa9 100644 --- a/sol/thread.hpp +++ b/sol/thread.hpp @@ -37,7 +37,6 @@ namespace sol { }; namespace stack { - template <> struct pusher { int push(lua_State*, lua_thread_state lts) { @@ -69,10 +68,28 @@ namespace sol { } }; - } + inline void register_main_thread(lua_State* L) { +#if SOL_LUA_VERSION < 502 + if (L == nullptr) { + lua_pushnil(L); + lua_setglobal(L, detail::default_main_thread_name()); + return; + } + lua_pushthread(L); + lua_setglobal(L, detail::default_main_thread_name()); +#endif + } + } // stack #if SOL_LUA_VERSION < 502 - inline lua_State* main_thread(lua_State*, lua_State* backup_if_unsupported = nullptr) { + inline lua_State* main_thread(lua_State* L, lua_State* backup_if_unsupported = nullptr) { + if (L == nullptr) + return backup_if_unsupported; + lua_getglobal(L, detail::default_main_thread_name()); + auto pp = stack::pop_n(L, 1); + if (type_of(L, -1) == type::thread) { + return lua_tothread(L, -1); + } return backup_if_unsupported; } #else diff --git a/tests/test_coroutines.cpp b/tests/test_coroutines.cpp index 11b42495..57fa0693 100644 --- a/tests/test_coroutines.cpp +++ b/tests/test_coroutines.cpp @@ -3,7 +3,7 @@ #include #include -TEST_CASE("threading/coroutines", "ensure calling a coroutine works") { +TEST_CASE("coroutines/threading", "ensure calling a coroutine works") { const auto& script = R"(counter = 20 function loop() @@ -32,7 +32,7 @@ end REQUIRE(counter == 30); } -TEST_CASE("threading/new thread coroutines", "ensure calling a coroutine works when the work is put on a different thread") { +TEST_CASE("coroutines/new thread coroutines", "ensure calling a coroutine works when the work is put on a different thread") { const auto& script = R"(counter = 20 function loop() @@ -107,3 +107,88 @@ end } } } + +TEST_CASE("coroutines/implicit transfer", "check that copy and move assignment constructors implicitly shift things around") { + const std::string code = R"( +-- main thread - L1 +-- co - L2 +-- co2 - L3 + +x = co_test.new("x") +local co = coroutine.wrap( + function() + local t = co_test.new("t") + local co2 = coroutine.wrap( + function() + local t2 = { "SOME_TABLE" } + t:copy_store(t2) -- t2 = [L3], t.obj = [L2] + end + ) + + co2() + co2 = nil + + collectgarbage() -- t2 ref in t remains valid! + + x:store(t:get()) -- t.obj = [L2], x.obj = [L1] + end +) + +co() +collectgarbage() +collectgarbage() +co = nil +)"; + + struct co_test { + std::string identifier; + sol::reference obj; + + co_test(sol::this_state L, std::string id) : identifier(id), obj(L, sol::lua_nil) { + + } + + void store(sol::table ref) { + obj = std::move(ref); + } + + void copy_store(sol::table ref) { + obj = ref; + } + + sol::reference get() { + return obj; + } + + ~co_test() { + + } + }; + + sol::state lua; + lua.open_libraries(sol::lib::coroutine, sol::lib::base); + + lua.new_usertype("co_test", + sol::constructors(), + "store", &co_test::store, + "copy_store", &co_test::copy_store, + "get", &co_test::get + ); + + + auto r = lua.safe_script(code); + REQUIRE(r.valid()); + + co_test& ct = lua["x"]; + + lua_State* Lmain1 = lua.lua_state(); + lua_State* Lmain2 = sol::main_thread(lua); + lua_State* Lmain3 = ct.get().lua_state(); + REQUIRE(Lmain1 == Lmain2); + REQUIRE(Lmain1 == Lmain3); + + sol::table t = ct.get(); + REQUIRE(t.size() == 1); + std::string s = t[1]; + REQUIRE(s == "SOME_TABLE"); +}